mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-08-02 03:26:14 -04:00
Add missing Q_DECLARE_TR_FUNCTIONS to Kdbx classes
Remove obsolete Kdbx3XmlWriter header
This commit is contained in:
parent
0a876c8af9
commit
7a4e74950c
6 changed files with 13 additions and 94 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue