Setting for a compact vertical toolbar, no implementation yet

This commit is contained in:
Sergii Pylypenko
2017-06-23 19:46:19 +03:00
parent 7b6bfad6c1
commit 2a9275900a
5 changed files with 13 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ 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