mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-02 22:12:23 +00:00
7 lines
163 B
Bash
7 lines
163 B
Bash
|
#!/bin/bash
|
||
|
for lang in `ls -d *.lproj`; do
|
||
|
src="$lang/Localizable.strings"
|
||
|
sort $src | grep -v ^$ | grep -v ^// >tmp.strings
|
||
|
mv tmp.strings $src
|
||
|
done
|