valentina/scripts/lupdate.sh
Roman Telezhynskyi 762b17c940 Seems like command "tx pull --mode=developer --skip" not enough for pulling all
data. Return to old way "tx pull --mode=developer -f -s --skip". ref #314.

--HG--
branch : develop
2016-06-16 16:24:37 +03:00

19 lines
685 B
Bash
Executable file

#!/bin/sh
# Run this script if you want to find and update all strings in the code.
# lupdate doesn't work with recursive *.pro file and without direct pointing to correct *.pro file just update exists strings in code.
# Please, run this script from folder <root_folder>/scripts.
# Download all translations from transifex.com.
tx pull --mode=developer -f -s --skip
# Update local strings
lupdate -recursive ../share/translations/translations.pro
lupdate -recursive ../share/translations/measurements.pro
#clean stale QM files
rm -f -v ../share/translations/*.qm
# force to run qmake
touch -am ../Valentina.pro
echo Done.
echo For updating files run: clean all, qmake, rebuild all.