Fix updatepot script

This commit is contained in:
Nikita Zlobin 2010-12-21 04:38:29 +05:00
parent 75cba89b1b
commit a0f84c2cbd
1 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,8 @@ POTFILE="po/gladish.pot"
xgettext --keyword=_ -o "$POTFILE" gui/*.c gui/*.cpp
xgettext -j -L Glade -o "$POTFILE" gui/gladish.ui
for PO_FILE in "`ls -1 po/*.po`"; do
PO_FILES=("`ls po/*.po`")
for PO_FILE in $PO_FILES; do
msgmerge -U "$PO_FILE" "$POTFILE"
done