diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-10-10 19:21:14 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-10-10 19:21:14 +0200 |
commit | 4136174517d426dcec74304ce004b4c845f075f5 (patch) | |
tree | 0dacb02a42c09463fab55e77949492d7be7383d8 /bin/transifexpull.sh | |
parent | 63573c931224d9496ab92027e94543dd9f7d9d36 (diff) |
Clean up translations once again, this time remove untranslated strings for all langs
Diffstat (limited to 'bin/transifexpull.sh')
-rwxr-xr-x | bin/transifexpull.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/transifexpull.sh b/bin/transifexpull.sh index 8cd99f4f2..ce25f6fc1 100755 --- a/bin/transifexpull.sh +++ b/bin/transifexpull.sh @@ -22,7 +22,7 @@ do_clean() # remove (one-line) comments perl -pi -e "s/^\\/\\/.*//" $1 # remove empty lines (but not in file header) - perl -ne 'print if ($. < 21 || length($_) > 1)' $1 > $1.tmp + perl -ne 'print if ($. < 18 || length($_) > 1)' $1 > $1.tmp mv $1.tmp $1 } |