Files
simplex-chat/scripts/ios/export-localizations.sh
2023-09-08 13:21:56 +01:00

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