From 624eb87a253930250841503107a3474b3d3b0618 Mon Sep 17 00:00:00 2001 From: dismine Date: Mon, 6 Oct 2014 21:01:08 +0300 Subject: [PATCH] Scripts for quick run lrelease and lupdate. --HG-- branch : develop --- scripts/lrelease.sh | 5 +++++ scripts/lupdate.sh | 5 +++++ 2 files changed, 10 insertions(+) create mode 100755 scripts/lrelease.sh create mode 100755 scripts/lupdate.sh diff --git a/scripts/lrelease.sh b/scripts/lrelease.sh new file mode 100755 index 000000000..737c09a8b --- /dev/null +++ b/scripts/lrelease.sh @@ -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 /scripts. +lrelease ../src/app/app.pro diff --git a/scripts/lupdate.sh b/scripts/lupdate.sh new file mode 100755 index 000000000..44f58be85 --- /dev/null +++ b/scripts/lupdate.sh @@ -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 /scripts. +lupdate ../src/app/app.pro