You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
895 B
Bash
28 lines
895 B
Bash
18 years ago
|
#!/bin/sh
|
||
|
TEMPLATE=messages.pot
|
||
|
|
||
4 years ago
|
xgettext -kT_js_decl -kT_sprintf -kT_nsprintf:1,2 -k_ngettext:1,2 -kT_ngettext:1,2 -k__ -L PHP -o $TEMPLATE *.php include/*.php `find classes -iname '*.php'` `find plugins -iname '*.php'`
|
||
18 years ago
|
|
||
6 years ago
|
xgettext --from-code utf-8 -k__ -kNotify.info -kNotify.error -kNotify.progress -kngettext -L Perl -j -o $TEMPLATE js/*.js `find plugins -iname '*.js'`
|
||
16 years ago
|
|
||
6 years ago
|
xgettext --from-code utf-8 -k__ -kNotify.info -kNotify.error -kNotify.progress -kngettext -L Java -j -o $TEMPLATE js/*.js `find plugins -iname '*.js'`
|
||
10 years ago
|
|
||
18 years ago
|
update_lang() {
|
||
18 years ago
|
if [ -f $1.po ]; then
|
||
12 years ago
|
msgmerge --no-wrap --width 1 -U $1.po $TEMPLATE
|
||
|
msgfmt --statistics $1.po -o $1.mo
|
||
18 years ago
|
else
|
||
|
echo "Usage: $0 [-p|<basename>]"
|
||
|
fi
|
||
18 years ago
|
}
|
||
|
|
||
|
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
|
||
16 years ago
|
|
||
15 years ago
|
#./utils/update-js-translations.sh
|