eb0d259f16
--HG-- branch : develop
16 lines
602 B
Bash
Executable File
16 lines
602 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 last translations from transifex.com.
|
|
tx pull --mode=developer
|
|
|
|
# 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
|