Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorJanek Bevendorff <janek@jbev.net>2018-01-19 23:14:50 +0300
committerJanek Bevendorff <janek@jbev.net>2018-01-21 17:54:46 +0300
commit7a4e74950c4b536978b1b3cfdeef23a69e895cec (patch)
treeb6c3f680686a10b0986b794a53cf5d80f8cbc64e /share
parent0a876c8af915d6244281d3eea8b375047446e902 (diff)
Add missing Q_DECLARE_TR_FUNCTIONS to Kdbx classes
Remove obsolete Kdbx3XmlWriter header
Diffstat (limited to 'share')
-rwxr-xr-xshare/translations/update.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/share/translations/update.sh b/share/translations/update.sh
index 134d7b996..ed8a69f55 100755
--- a/share/translations/update.sh
+++ b/share/translations/update.sh
@@ -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