mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-30 22:55:48 +00:00
18 lines
375 B
Bash
Executable File
18 lines
375 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
langs=( en cs de es fi fr it ja nl pl ru uk zh-Hans )
|
|
|
|
for lang in "${langs[@]}"; do
|
|
echo "***"
|
|
echo "***"
|
|
echo "***"
|
|
echo "*** Exporting $lang"
|
|
xcodebuild -exportLocalizations \
|
|
-project ./apps/ios/SimpleX.xcodeproj \
|
|
-localizationPath ./apps/ios/SimpleX\ Localizations \
|
|
-exportLanguage $lang
|
|
sleep 2
|
|
done
|