From 27ddddc0906388b726f3abaf8b54e02ea09590db Mon Sep 17 00:00:00 2001 From: Papoteur Date: Sat, 15 Dec 2018 22:24:21 +0100 Subject: Update translation catalog, add script --- i18n/update_translations.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 i18n/update_translations.sh (limited to 'i18n/update_translations.sh') 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 -- cgit v1.2.1