mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 05:25:56 +00:00
unify update_daemon, update_feeds and update_feedbrowser into update.php; move update.php to db-updater.php
This commit is contained in:
29
utils/update-translations.sh
Executable file
29
utils/update-translations.sh
Executable file
@@ -0,0 +1,29 @@
|
||||
#!/bin/sh
|
||||
TEMPLATE=messages.pot
|
||||
|
||||
xgettext -kT_js_decl -kT_sprintf -kT_ngettext:1,2 -k__ -L PHP -o $TEMPLATE *.php modules/*.php help/*.php mobile/*.php
|
||||
|
||||
xgettext --from-code utf-8 -k__ -L Java -j -o $TEMPLATE *.js
|
||||
|
||||
update_lang() {
|
||||
if [ -f $1.po ]; then
|
||||
TMPFILE=/tmp/update-translations.$$
|
||||
|
||||
msgmerge -o $TMPFILE $1.po $TEMPLATE
|
||||
mv $TMPFILE $1.po
|
||||
msgfmt --statistics $1.po
|
||||
msgfmt -o $1.mo $1.po
|
||||
else
|
||||
echo "Usage: $0 [-p|<basename>]"
|
||||
fi
|
||||
}
|
||||
|
||||
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
|
||||
|
||||
#./utils/update-js-translations.sh
|
||||
Reference in New Issue
Block a user