Fix l10n scripts not to garbage headers.
This commit is contained in:
parent
c9c1a143e3
commit
e5abf36d22
2 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,9 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
LC_ALL=C
|
||||||
|
LANG=C
|
||||||
|
LANGUAGE=C
|
||||||
|
|
||||||
BASENAME=`basename $0`
|
BASENAME=`basename $0`
|
||||||
TMPFILE="/tmp/$BASENAME-$$.tmp"
|
TMPFILE="/tmp/$BASENAME-$$.tmp"
|
||||||
OUTFILE="include/localized_schema.php"
|
OUTFILE="include/localized_schema.php"
|
||||||
|
|
|
@ -3,18 +3,14 @@ TEMPLATE=messages.pot
|
||||||
|
|
||||||
./utils/update-schema-translations.sh
|
./utils/update-schema-translations.sh
|
||||||
|
|
||||||
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 -kT_js_decl -kT_sprintf -kT_ngettext:1,2 -k__ -L PHP -o $TEMPLATE *.php include/*.php `find classes -iname '*.php'` `find plugins -iname '*.php'`
|
||||||
|
|
||||||
xgettext --from-code utf-8 -k__ -L Java -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'`
|
||||||
|
|
||||||
update_lang() {
|
update_lang() {
|
||||||
if [ -f $1.po ]; then
|
if [ -f $1.po ]; then
|
||||||
TMPFILE=/tmp/update-translations.$$
|
msgmerge --no-wrap --width 1 -U $1.po $TEMPLATE
|
||||||
|
msgfmt --statistics $1.po -o $1.mo
|
||||||
msgmerge -o $TMPFILE $1.po $TEMPLATE
|
|
||||||
mv $TMPFILE $1.po
|
|
||||||
msgfmt --statistics $1.po
|
|
||||||
msgfmt -o $1.mo $1.po
|
|
||||||
else
|
else
|
||||||
echo "Usage: $0 [-p|<basename>]"
|
echo "Usage: $0 [-p|<basename>]"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue