Removed unused string from all lang files

This commit is contained in:
Sergii Pylypenko
2017-06-23 20:03:23 +03:00
parent 5652be7007
commit fb5afa8b0d
56 changed files with 0 additions and 56 deletions

View File

@@ -7,7 +7,6 @@ for f in ../translations/lang/*.txt; do
{ grep -v "^# Android strings" $out ; echo "# Android strings" ; } > $out.new
mv -f $out.new $out
cat $f | grep '^STR' | while read name text; do
[ "$name" = "STR_ABOUT_MENU_SEPARATOR" ] && continue
{ grep -v "^$name\b" $out ; printf "%-64s%s\n" "$name" "$text" ; } > $out.new
mv -f $out.new $out
done