Scripts for quick run lrelease and lupdate.

--HG--
branch : develop
This commit is contained in:
dismine 2014-10-06 21:01:08 +03:00
parent 444ace5356
commit 624eb87a25
2 changed files with 10 additions and 0 deletions

5
scripts/lrelease.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
# Run this script if you want release all translated string in program.
# lrelease doesn't work with recursive *.pro file and without direct pointing to correct *.pro doesn't find anything.
# Please run this script from folder <root_folder>/scripts.
lrelease ../src/app/app.pro

5
scripts/lupdate.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
# Run this script if you want find and update all string in 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.
lupdate ../src/app/app.pro