mirror of
https://github.com/mullvad/mullvadvpn-app.git
synced 2026-03-13 10:22:35 +08:00
Includes: - Add iOS translation pipeline - Fix grammar in text string - Replace "Appstore" with "App store" across the project
79 lines
1.8 KiB
Bash
Executable File
79 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
iOS_LOCALIZATION_DIR="$(cd "$SCRIPT_DIR/../ios/translation" && pwd)"
|
|
cd "$SCRIPT_DIR"
|
|
|
|
# shellcheck disable=SC1091
|
|
source utils/log
|
|
|
|
# shellcheck disable=SC1091
|
|
source utils/localization_utils
|
|
|
|
function main {
|
|
case ${1:-""} in
|
|
upload) upload_to_crowdin ;;
|
|
download) download_from_crowdin ;;
|
|
"")
|
|
echo "Available subcommands: upload and download"
|
|
;;
|
|
*)
|
|
echo "Unknown parameter: $1"
|
|
exit 1
|
|
;;
|
|
esac
|
|
}
|
|
|
|
function update_relay_locations {
|
|
log_header "Retrieving relay locations from server list and updating RelayLocationList.Swift"
|
|
pushd "$iOS_LOCALIZATION_DIR"
|
|
./scripts/fetch-relay-locations.sh
|
|
./scripts/relays-localization.sh
|
|
popd
|
|
}
|
|
|
|
function prepare_localization_strings {
|
|
update_relay_locations
|
|
update_ios_strings export
|
|
commit_changes "Export iOS strings"
|
|
}
|
|
|
|
function upload_to_crowdin {
|
|
ensure_crowdin_api_key
|
|
prepare_localization_strings
|
|
log_header "Uploading iOS translations to Crowdin"
|
|
pushd "$iOS_LOCALIZATION_DIR"
|
|
crowdin upload sources
|
|
crowdin upload translations
|
|
popd
|
|
}
|
|
|
|
function download_from_crowdin {
|
|
ensure_crowdin_api_key
|
|
log_header "Downloading iOS translations from Crowdin"
|
|
pushd "$iOS_LOCALIZATION_DIR"
|
|
crowdin download translations
|
|
popd
|
|
update_ios_strings import
|
|
commit_changes "Import iOS translations"
|
|
}
|
|
|
|
function update_ios_strings {
|
|
if [ $# -ne 1 ] || { [ "$1" != "export" ] && [ "$1" != "import" ]; }; then
|
|
echo "Usage: update_ios_strings [export|import]" >&2
|
|
return 2
|
|
fi
|
|
if [ "$1" = "export" ]; then
|
|
log_header "Extracting strings from iOS source code"
|
|
else
|
|
log_header "Updating strings into iOS source code with new translations"
|
|
fi
|
|
pushd "$iOS_LOCALIZATION_DIR"
|
|
./scripts/localizations.sh "$1"
|
|
popd
|
|
}
|
|
|
|
main "$@"
|