#!/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