ttrss/utils/rebase-translations.sh

36 lines
936 B
Bash
Raw Normal View History

2007-03-05 09:37:13 +01:00
#!/bin/sh
TEMPLATE=messages.pot
xgettext -kT_sprintf -kT_nsprintf:1,2 -k_ngettext:1,2 -kT_ngettext:1,2 -k__ \
-L PHP -o $TEMPLATE *.php `find classes plugins include -iname '*.php'`
2007-03-05 09:37:13 +01:00
2021-02-26 11:07:31 +01:00
xgettext --from-code utf-8 -k__ -kNotify.info -kNotify.error -kNotify.progress \
-kngettext:1,2 -L Java -j -o $TEMPLATE `find js plugins -iname '*.js'`
xgettext --from-code utf-8 -k__ -kNotify.info -kNotify.error -kNotify.progress \
-kngettext:1,2 -L JavaScript -j -o $TEMPLATE `find js plugins -iname '*.js'`
# leave weblate to deal with .po/.mo files
exit 0
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
}
2021-02-26 11:26:31 +01:00
compile_po() {
msgfmt --statistics $1.po -o $1.mo
}
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//`
2021-02-26 11:26:31 +01:00
compile_po $PO_BASENAME
2007-03-05 10:50:25 +01:00
done