]> git.wh0rd.org - tt-rss.git/blob - utils/update-translations.sh
use Perl instead of Java as a base language for JS files; rebase translations
[tt-rss.git] / utils / update-translations.sh
1 #!/bin/sh
2 TEMPLATE=messages.pot
3
4 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'`
5
6 xgettext --from-code utf-8 -k__ -knotify_info -knotify_progress -kngettext -L Perl -j -o $TEMPLATE js/*.js `find plugins -iname '*.js'`
7
8 update_lang() {
9 if [ -f $1.po ]; then
10 msgmerge --no-wrap --width 1 -U $1.po $TEMPLATE
11 msgfmt --statistics $1.po -o $1.mo
12 else
13 echo "Usage: $0 [-p|<basename>]"
14 fi
15 }
16
17 LANGS=`find locale -name 'messages.po'`
18
19 for lang in $LANGS; do
20 echo Updating $lang...
21 PO_BASENAME=`echo $lang | sed s/.po//`
22 update_lang $PO_BASENAME
23 done
24
25 #./utils/update-js-translations.sh