mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-02 14:02:11 +00:00
1942b82ebb
Simplify development and maintenance immensely by making this a monorepository: - Convert PassepartoutKit and VPN bindings to local packages - OpenVPN/OpenSSL - WireGuard/Go - Make PassepartoutKit available via - Source submodule for production (private) - [Binary XCFramework for development](https://github.com/passepartoutvpn/passepartoutkit) - Add PassepartoutKit Demo in root - Deploy package later
7 lines
163 B
Bash
Executable File
7 lines
163 B
Bash
Executable File
#!/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
|