Skip to content

Commit

Permalink
updatepo.sh: Find all files
Browse files Browse the repository at this point in the history
  • Loading branch information
kaeza authored and ShadowNinja committed Sep 30, 2014
1 parent db5aff8 commit 47abe25
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion util/updatepo.sh
Expand Up @@ -48,7 +48,11 @@ cd ..
# directory at the top level. You a recent enough xgettext that supports
# --package-name
potfile=po/minetest.pot
xgettext --package-name=minetest -kN_ -kwgettext -kfgettext -F -n -o $potfile src/*.cpp src/*.h builtin/*.lua
xgettext --package-name=minetest \
-kN_ -kwgettext -kfgettext \
-F -n -o $potfile \
`find src/ -name '*.cpp' -o -name '*.h'` \
`find builtin/ -name '*.lua'`

# Now iterate on all languages and create the po file if missing, or update it
# if it exists already
Expand Down

0 comments on commit 47abe25

Please sign in to comment.