From 6956087114f99413f09e0fb1174c1f5e9bd0b476 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Mon, 20 Feb 2023 19:09:28 +0100 Subject: [PATCH] [android] Fixed missing Traditional Chinese localization Signed-off-by: Alexander Borsuk --- android/gradle.properties | 2 +- tools/unix/generate_localizations.sh | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/android/gradle.properties b/android/gradle.properties index 5f249e8b1e..0c7e7033e8 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -9,4 +9,4 @@ android.useAndroidX=true android.enableJetifier=true android.native.buildOutput=verbose # Autogenerated by tools/unix/generate_localizations.sh -supportedLocalizations=ar,be,bg,ca,cs,da,de,el,en,en_GB,es,es_MX,et,eu,fa,fi,fr,fr_CA,he,hi,hu,id,in,it,ja,ko,mr,nb,ne,nl,pl,pt,pt_BR,ro,ru,sk,sv,sw,th,tr,uk,vi,zh_Hans,zh_Hant +supportedLocalizations=ar,be,bg,ca,cs,da,de,el,en,en_GB,es,es_MX,et,eu,fa,fi,fr,fr_CA,he,hi,hu,id,in,it,ja,ko,mr,nb,ne,nl,pl,pt,pt_BR,ro,ru,sk,sv,sw,th,tr,uk,vi,zh,zh_HK,zh_MO,zh_TW diff --git a/tools/unix/generate_localizations.sh b/tools/unix/generate_localizations.sh index 32dcca1283..1ddad7fe53 100755 --- a/tools/unix/generate_localizations.sh +++ b/tools/unix/generate_localizations.sh @@ -68,6 +68,9 @@ cat "$STRINGS_PATH"/{strings,types_strings}.txt> "$MERGED_FILE" # Generate list of languages and add list in gradle.properties to be used in build.gradle in resConfig SUPPORTED_LOCALIZATIONS="supportedLocalizations="$(sed -nEe "s/ +([a-zA-Z]{2}(-[a-zA-Z]{2,})?) = .*$/\1/p" "data/strings/strings.txt" | sort -u | tr '\n' ',' | sed -e 's/-/_/g' -e 's/,$//') +# Chinese locales should correspond to Android codes. +SUPPORTED_LOCALIZATIONS=${SUPPORTED_LOCALIZATIONS/zh_Hans/zh} +SUPPORTED_LOCALIZATIONS=${SUPPORTED_LOCALIZATIONS/zh_Hant/zh_HK,zh_MO,zh_TW} GRADLE_PROPERTIES="$OMIM_PATH/android/gradle.properties" if [ "$SUPPORTED_LOCALIZATIONS" != "$(grep supportedLocalizations "$GRADLE_PROPERTIES")" ]; then sed -i .bak 's/supportedLocalizations.*/'"$SUPPORTED_LOCALIZATIONS"'/' "$GRADLE_PROPERTIES"