mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-09 01:12:05 +00:00
7 lines
151 B
Bash
Executable File
7 lines
151 B
Bash
Executable File
#!/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
|