summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-10-09 18:52:54 +0200
committerAleksander Machniak <alec@alec.pl>2013-10-09 18:52:54 +0200
commit664710294a116a996a8323e412fee2b0df39580d (patch)
treeb35a1cf3ca53fe829d63347f48ef0d36d1b33f05 /bin
parent5251ec3e3815f9a4561d18cd5808769210e09434 (diff)
Adde translation update (from Transifex) and cleanup script
Diffstat (limited to 'bin')
-rwxr-xr-xbin/transifexpull.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/bin/transifexpull.sh b/bin/transifexpull.sh
new file mode 100755
index 000000000..18191e32e
--- /dev/null
+++ b/bin/transifexpull.sh
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+# In 'translator' mode files will contain empty translated texts
+# where translation is not available, we'll remove these later
+
+tx --debug pull -a --mode translator
+
+PWD=`dirname "$0"`
+
+do_clean()
+{
+ echo "Cleaning $1"
+
+ # remove untranslated/empty texts
+ perl -pi -e "s/^\\\$labels\[[^]]+\]\s+=\s+'';\n//g" $1
+ perl -pi -e "s/^\\\$messages\[[^]]+\]\s+=\s+'';\n//g" $1
+ # remove (one-line) comments
+ perl -pi -e "s/^\\/\\/[a-z\s]+//g" $1
+ # remove empty lines (but not in file header)
+ perl -ne 'print if ($. < 21 || length($_) > 1)' $1 > $1.tmp
+ mv $1.tmp $1
+}
+
+# clean up translation files
+for file in $PWD/../program/localization/*/*.inc; do
+ do_clean $file
+done
+for file in $PWD/../plugins/*/localization/*.inc; do
+ do_clean $file
+done