summaryrefslogtreecommitdiff
path: root/utils/rebase-translations.sh
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rebase-translations.sh')
-rwxr-xr-xutils/rebase-translations.sh35
1 files changed, 35 insertions, 0 deletions
diff --git a/utils/rebase-translations.sh b/utils/rebase-translations.sh
new file mode 100755
index 000000000..2bc42c7eb
--- /dev/null
+++ b/utils/rebase-translations.sh
@@ -0,0 +1,35 @@
+#!/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'`
+
+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
+
+update_lang() {
+ if [ -f $1.po ]; then
+ msgmerge --no-wrap --width 1 -U $1.po $TEMPLATE
+ msgfmt --statistics $1.po -o $1.mo
+ else
+ echo "Usage: $0 [-p|<basename>]"
+ fi
+}
+
+compile_po() {
+ msgfmt --statistics $1.po -o $1.mo
+}
+
+LANGS=`find locale -name 'messages.po'`
+
+for lang in $LANGS; do
+ echo Updating $lang...
+ PO_BASENAME=`echo $lang | sed s/.po//`
+ compile_po $PO_BASENAME
+done