Skip to content

Instantly share code, notes, and snippets.

@Hailong
Forked from elebescond/gist:1433137
Created September 6, 2017 18:34
Show Gist options
  • Save Hailong/2f0b4dfc983dab2b73358716eb7d1220 to your computer and use it in GitHub Desktop.
Save Hailong/2f0b4dfc983dab2b73358716eb7d1220 to your computer and use it in GitHub Desktop.
Generate a pot template from a wordpress theme - xgettext
find . -iname "*.php" > /tmp/my_theme_file_list.txt
# new template
xgettext --from-code=utf-8 -d my_theme -f /tmp/my_theme_file_list.txt --keyword=__ -o languages/my_theme.pot
# update template
xgettext --from-code=utf-8 -d my_theme -j -f /tmp/my_theme_file_list.txt --keyword=__ -o languages/my_theme.pot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment