mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-01 18:16:17 +00:00
* Translated using Weblate (German) Currently translated at 100.0% (1232 of 1232 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/de/ * Translated using Weblate (French) Currently translated at 100.0% (1358 of 1358 strings) Translation: SimpleX Chat/SimpleX Chat Android Translate-URL: https://hosted.weblate.org/projects/simplex-chat/android/fr/ * Translated using Weblate (French) Currently translated at 100.0% (1232 of 1232 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/fr/ * Translated using Weblate (Italian) Currently translated at 100.0% (1358 of 1358 strings) Translation: SimpleX Chat/SimpleX Chat Android Translate-URL: https://hosted.weblate.org/projects/simplex-chat/android/it/ * Translated using Weblate (Italian) Currently translated at 100.0% (1232 of 1232 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/it/ * Translated using Weblate (Spanish) Currently translated at 100.0% (1358 of 1358 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 99.9% (1231 of 1232 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% (1232 of 1232 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/nl/ * Translated using Weblate (Ukrainian) Currently translated at 100.0% (1358 of 1358 strings) Translation: SimpleX Chat/SimpleX Chat Android Translate-URL: https://hosted.weblate.org/projects/simplex-chat/android/uk/ * Translated using Weblate (Ukrainian) Currently translated at 100.0% (1232 of 1232 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/uk/ * Translated using Weblate (Bulgarian) Currently translated at 51.7% (638 of 1232 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/bg/ * Translated using Weblate (Russian) Currently translated at 100.0% (1358 of 1358 strings) Translation: SimpleX Chat/SimpleX Chat Android Translate-URL: https://hosted.weblate.org/projects/simplex-chat/android/ru/ * Translated using Weblate (Russian) Currently translated at 100.0% (1232 of 1232 strings) Translation: SimpleX Chat/SimpleX Chat iOS Translate-URL: https://hosted.weblate.org/projects/simplex-chat/ios/ru/ * ios: import/export localizations --------- Co-authored-by: mlanp <github@lang.xyz> Co-authored-by: Ophiushi <41908476+ishi-sama@users.noreply.github.com> Co-authored-by: Random <random-r@users.noreply.hosted.weblate.org> Co-authored-by: No name <CertainBot@users.noreply.hosted.weblate.org> Co-authored-by: John m <jvanmanen@gmail.com> Co-authored-by: Maksym Lukashenko <livelmaxim@gmail.com> Co-authored-by: elgratea <weblate@fastmail.com>
19 lines
432 B
Bash
Executable File
19 lines
432 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
langs=( en cs de es fr it ja nl pl ru th 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
|