mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-31 03:16:05 +00:00
* Translated using Weblate (Hungarian) Currently translated at 100.0% (1507 of 1507 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/hu/ * ios: Hungarian translations * Translated using Weblate (German) Currently translated at 99.5% (1730 of 1738 strings) Translation: SimpleX Chat/SimpleX Chat Android Translate-URL: https://hosted.weblate.org/projects/simplex-chat/android/de/ * Translated using Weblate (Spanish) Currently translated at 100.0% (1738 of 1738 strings) Translation: SimpleX Chat/SimpleX Chat Android Translate-URL: https://hosted.weblate.org/projects/simplex-chat/android/es/ * Translated using Weblate (Spanish) Currently translated at 100.0% (1512 of 1512 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/es/ * Translated using Weblate (Dutch) Currently translated at 100.0% (1738 of 1738 strings) Translation: SimpleX Chat/SimpleX Chat Android Translate-URL: https://hosted.weblate.org/projects/simplex-chat/android/nl/ * Translated using Weblate (Dutch) Currently translated at 100.0% (1512 of 1512 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/nl/ * Translated using Weblate (Lithuanian) Currently translated at 100.0% (1738 of 1738 strings) Translation: SimpleX Chat/SimpleX Chat Android Translate-URL: https://hosted.weblate.org/projects/simplex-chat/android/lt/ * Translated using Weblate (Turkish) Currently translated at 100.0% (1512 of 1512 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/tr/ * Translated using Weblate (Turkish) Currently translated at 100.0% (1738 of 1738 strings) Translation: SimpleX Chat/SimpleX Chat Android Translate-URL: https://hosted.weblate.org/projects/simplex-chat/android/tr/ * Translated using Weblate (Hungarian) Currently translated at 100.0% (1512 of 1512 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/hu/ * import/export --------- Co-authored-by: summoner001 <summoner@vivaldi.net> Co-authored-by: M1K4 <oomikaoo@gmail.com> Co-authored-by: No name <CertainBot@users.noreply.hosted.weblate.org> Co-authored-by: Anonimas <Anonimas3@users.noreply.hosted.weblate.org> Co-authored-by: z0rden <kaanpeker196@gmail.com>
19 lines
447 B
Bash
Executable File
19 lines
447 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
langs=( en bg cs de es fi fr hu it ja nl pl ru th tr uk zh-Hans )
|
|
|
|
for lang in "${langs[@]}"; do
|
|
echo "***"
|
|
echo "***"
|
|
echo "***"
|
|
echo "*** Importing $lang"
|
|
xcodebuild -importLocalizations \
|
|
-project ./apps/ios/SimpleX.xcodeproj \
|
|
-localizationPath ./apps/ios/SimpleX\ Localizations/$lang.xcloc \
|
|
-disableAutomaticPackageResolution \
|
|
-skipPackageUpdates
|
|
sleep 10
|
|
done
|