summaryrefslogtreecommitdiffstats
path: root/i18n
diff options
context:
space:
mode:
Diffstat (limited to 'i18n')
-rw-r--r--i18n/update_translations.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/i18n/update_translations.sh b/i18n/update_translations.sh
new file mode 100644
index 0000000..5bd0140
--- /dev/null
+++ b/i18n/update_translations.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+POFILE=$1
+
+pylupdate5 qml/mageiawelcome.py -ts py.ts
+lupdate mageiawelcome.pro -ts qml.ts
+
+lconvert -i py.ts qml.ts -o po/mageiawelcome.pot
+
+rm -rf py.ts qml.ts mageiawelcome.ts
+
+if [[ $POFILE == "" ]]; then
+ for i in po/*.po
+ do
+ echo -n $i": "
+ msgmerge --backup=none --update $i po/mageiawelcome.pot && \
+ msgfmt -o /dev/null --statistics --check $i
+ pofile=${i#*/}
+ locale=${pofile%.*}
+ lconvert $i -o i18n/mageiawelcome_$locale.ts
+ done
+else
+ echo -n $1".po: "
+ msgmerge --backup=none --update po/$1.po po/mageiawelcome.pot && \
+ msgfmt -o /dev/null --statistics --check po/$1.po
+ lconvert po/$1.po -o i18n/mageiawelcome_$1.ts
+fi