ttrss/utils/update-translations.sh

26 lines
711 B
Bash
Raw Normal View History

2007-03-05 09:37:13 +01:00
#!/bin/sh
TEMPLATE=messages.pot
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'`
2007-03-05 09:37:13 +01:00
xgettext --from-code utf-8 -k__ -knotify_info -knotify_progress -kngettext -L Perl -j -o $TEMPLATE js/*.js `find plugins -iname '*.js'`
2007-03-05 10:50:25 +01:00
update_lang() {
2007-03-05 09:37:13 +01:00
if [ -f $1.po ]; then
msgmerge --no-wrap --width 1 -U $1.po $TEMPLATE
msgfmt --statistics $1.po -o $1.mo
2007-03-05 09:37:13 +01:00
else
echo "Usage: $0 [-p|<basename>]"
fi
2007-03-05 10:50:25 +01:00
}
LANGS=`find locale -name 'messages.po'`
for lang in $LANGS; do
echo Updating $lang...
PO_BASENAME=`echo $lang | sed s/.po//`
update_lang $PO_BASENAME
done
2010-02-18 14:07:49 +01:00
#./utils/update-js-translations.sh