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