From f92ffbe0d37265051d02e3fa892da16a2c194107 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Fri, 10 Jan 2025 15:54:31 +0100 Subject: [PATCH] Fix import of en-US translations. --- tools/localazy/generateLocalazyConfig.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/localazy/generateLocalazyConfig.py b/tools/localazy/generateLocalazyConfig.py index 72769b67ed..bddaf6bc45 100755 --- a/tools/localazy/generateLocalazyConfig.py +++ b/tools/localazy/generateLocalazyConfig.py @@ -52,7 +52,7 @@ def convertModuleToPath(name): "includeKeys": list(map(lambda i: "REGEX:" + i, entry["includeRegex"])), "excludeKeys": list(map(lambda i: "REGEX:" + i, excludeRegex)), "conditions": [ - "equals: ${languageCode}, en | equals: ${file}, content.json" + "equals: ${langAndroidResNoScript}, en | equals: ${file}, content.json" ] } # print(action) @@ -64,7 +64,7 @@ def convertModuleToPath(name): "includeKeys": list(map(lambda i: "REGEX:" + i, entry["includeRegex"])), "excludeKeys": list(map(lambda i: "REGEX:" + i, excludeRegex)), "conditions": [ - "!equals: ${languageCode}, en | equals: ${file}, content.json" + "!equals: ${langAndroidResNoScript}, en | equals: ${file}, content.json" ] } allActions.append(actionTranslation) @@ -75,7 +75,7 @@ def convertModuleToPath(name): "output": "libraries/ui-strings/src/main/res/values/localazy.xml", "excludeKeys": list(map(lambda i: "REGEX:" + i, allRegexToExcludeFromMainModule + regexToAlwaysExclude)), "conditions": [ - "equals: ${languageCode}, en | equals: ${file}, content.json" + "equals: ${langAndroidResNoScript}, en | equals: ${file}, content.json" ] } # print(mainAction) @@ -87,7 +87,7 @@ def convertModuleToPath(name): "output": "libraries/ui-strings/src/main/res/values-${langAndroidResNoScript}/translations.xml", "excludeKeys": list(map(lambda i: "REGEX:" + i, allRegexToExcludeFromMainModule + regexToAlwaysExclude)), "conditions": [ - "!equals: ${languageCode}, en | equals: ${file}, content.json" + "!equals: ${langAndroidResNoScript}, en | equals: ${file}, content.json" ] } allActions.append(mainActionTranslation)