mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-09 01:12:05 +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
|