Add missing Q_DECLARE_TR_FUNCTIONS to Kdbx classes

Remove obsolete Kdbx3XmlWriter header
This commit is contained in:
Janek Bevendorff 2018-01-19 21:14:50 +01:00
parent 0a876c8af9
commit 7a4e74950c
6 changed files with 13 additions and 94 deletions

View file

@ -32,10 +32,12 @@ elif [ "$1" == "update" ]; then
PULL=false
elif [ "$1" != "" ]; then
echo "Unknown command '${1}'"
echo "Usage: $(basename $0) [update|pull|push]"
echo "Usage: $(basename $0) [update|pull|push] [additional tx options]"
exit 1
fi
shift
cd "${BASEDIR}/../.."
if $UPDATE; then
@ -53,12 +55,12 @@ fi
if $PUSH; then
echo "Pushing English source files to Transifex..."
tx push -s
tx push -s $@
echo
fi
if $PULL; then
echo "Pulling translations from Transifex..."
tx pull -af --minimum-perc=40
tx pull -af --minimum-perc=40 $@
echo
fi