summaryrefslogtreecommitdiff
path: root/utils/update-translations.sh
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-26 12:58:33 +0300
committerAndrew Dolgov <[email protected]>2021-02-26 12:58:33 +0300
commit15cad4a9c07736394768a983dff500da20d8b1c9 (patch)
treead52c7b449dfda9686bcb408d01dad537825f9c1 /utils/update-translations.sh
parent634f1210a6f6f4c30fedec04098f47c7fd385fb0 (diff)
rebase translations, fixing a few JS strings not mached; remove obsolete scripts
Diffstat (limited to 'utils/update-translations.sh')
-rwxr-xr-xutils/update-translations.sh27
1 files changed, 0 insertions, 27 deletions
diff --git a/utils/update-translations.sh b/utils/update-translations.sh
deleted file mode 100755
index 51869986b..000000000
--- a/utils/update-translations.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-TEMPLATE=messages.pot
-
-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'`
-
-xgettext --from-code utf-8 -k__ -kNotify.info -kNotify.error -kNotify.progress -kngettext -L Perl -j -o $TEMPLATE js/*.js `find plugins -iname '*.js'`
-
-xgettext --from-code utf-8 -k__ -kNotify.info -kNotify.error -kNotify.progress -kngettext -L Java -j -o $TEMPLATE js/*.js `find plugins -iname '*.js'`
-
-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
-}
-
-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