Rename script "updatepot" to "syncpo" (sounds more correct)

This commit is contained in:
Nikita Zlobin 2010-12-27 02:23:34 +05:00
parent fb7138915e
commit a7b9cc4835
1 changed files with 1 additions and 3 deletions

View File

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