summaryrefslogtreecommitdiff
path: root/tools/nofuzz.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/nofuzz.sh')
-rwxr-xr-xtools/nofuzz.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/nofuzz.sh b/tools/nofuzz.sh
new file mode 100755
index 0000000000..cf0a1ac8aa
--- /dev/null
+++ b/tools/nofuzz.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+## this script should be run from the top-level source dir
+## it remove all fuzzy and obsolte translations and wraps
+## long lines.
+##
+## update .po and .pot files:
+ ./waf i18n_pot
+
+TEMPFILE=`mktemp`
+for file in `git ls-files | grep -e '.po$'`; do
+ cp $file $TEMPFILE
+ msgattrib -o $file --no-fuzzy --no-obsolete $TEMPFILE
+done
+rm $TEMPFILE