aboutsummaryrefslogtreecommitdiff
path: root/update_ts.sh
diff options
context:
space:
mode:
Diffstat (limited to 'update_ts.sh')
-rwxr-xr-xupdate_ts.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/update_ts.sh b/update_ts.sh
deleted file mode 100755
index 28e0ec785..000000000
--- a/update_ts.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-for file in `find . -name "*.pro"`
-do
- ts_pro=`cat $file | grep TRANSLATIONS`
- if [ "$ts_pro" ]
- then
- lupdate -no-obsolete $file
- fi
-
-done
-