Fix import of en-US translations.
This commit is contained in:
parent
63dbf930c8
commit
f92ffbe0d3
1 changed files with 4 additions and 4 deletions
|
|
@ -52,7 +52,7 @@ for entry in config["modules"]:
|
|||
"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 @@ for entry in config["modules"]:
|
|||
"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 @@ mainAction = baseAction | {
|
|||
"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 @@ if allFiles:
|
|||
"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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue