X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=utils%2Fupdate-translations.sh;h=b955ac28dd2cb6185e2235ca2bf1d46816f02667;hb=e2b8c9273e09091c235959c25d8e4d8122aa6ca8;hp=25e0e7568ebe4afb21582aecbdee1cb05ed7bff8;hpb=5097bf3db4fcae318903f1b01115f0b2ee4ba484;p=tt-rss.git diff --git a/utils/update-translations.sh b/utils/update-translations.sh index 25e0e756..b955ac28 100755 --- a/utils/update-translations.sh +++ b/utils/update-translations.sh @@ -1,20 +1,16 @@ #!/bin/sh TEMPLATE=messages.pot -./utils/update-schema-translations.sh +xgettext -kT_js_decl -kT_sprintf -k_ngettext:1,2 -kT_ngettext:1,2 -k__ -L PHP -o $TEMPLATE *.php include/*.php `find classes -iname '*.php'` `find plugins -iname '*.php'` -xgettext -kT_js_decl -kT_sprintf -kT_ngettext:1,2 -k__ -L PHP -o $TEMPLATE *.php mobile/*.php include/*.php `find classes -iname '*.php'` `find plugins -iname '*.php'` +xgettext --from-code utf-8 -k__ -knotify_info -knotify_progress -kngettext -L Perl -j -o $TEMPLATE js/*.js `find plugins -iname '*.js'` -xgettext --from-code utf-8 -k__ -L Java -j -o $TEMPLATE js/*.js `find plugins -iname '*.js'` +xgettext --from-code utf-8 -k__ -knotify_info -knotify_progress -kngettext -L Java -j -o $TEMPLATE js/*.js `find plugins -iname '*.js'` update_lang() { if [ -f $1.po ]; then - TMPFILE=/tmp/update-translations.$$ - - msgmerge -o $TMPFILE $1.po $TEMPLATE - mv $TMPFILE $1.po - msgfmt --statistics $1.po - msgfmt -o $1.mo $1.po + msgmerge --no-wrap --width 1 -U $1.po $TEMPLATE + msgfmt --statistics $1.po -o $1.mo else echo "Usage: $0 [-p|]" fi