mirror of
https://github.com/snikket-im/snikket-ios.git
synced 2025-10-26 11:18:09 +00:00
8 lines
287 B
Bash
Executable File
8 lines
287 B
Bash
Executable File
if ! test -d Snikket/tmp.strings; then
|
|
mkdir Snikket/tmp.strings;
|
|
fi
|
|
|
|
find ./Snikket -name "*.swift" -print0 | xargs -0 genstrings -o Snikket/tmp.strings
|
|
iconv -f utf-16 -t utf-8 Snikket/tmp.strings/Localizable.strings > Snikket/en.lproj/Localizable.strings
|
|
rm -rf Snikket/tmp.strings
|