Fixes to translation update script.

This commit is contained in:
Diego Martínez 2017-02-25 20:38:17 -03:00
parent 122d1a83cc
commit 5f00db5d95
1 changed files with 10 additions and 6 deletions

View File

@ -9,15 +9,19 @@ fi
mkdir -p locale;
echo "Generating template..." >&2;
xgettext --from-code=UTF-8 -kS -kNS:1,2 -k_ \
-o locale/template.pot "$@" \
xgettext --from-code=UTF-8 \
--keyword=S \
--keyword=NS:1,2 \
--keyword=N_ \
--add-comments='Translators:' \
--add-location=file \
-o locale/template.pot \
"$@" \
|| exit;
cd locale;
for file in *.po; do
find locale -name '*.po' -type f | while read -r file; do
echo "Updating $file..." >&2;
msgmerge --update "$file" template.pot;
msgmerge --update "$file" locale/template.pot;
done
echo "DONE!" >&2;