Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
daedric7 committed Jan 10, 2025
2 parents d78ee8f + bcec2ef commit f927a17
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ telephoto = "0.14.0"
dependencyAnalysis = "2.6.1"

# DI
dagger = "2.54"
dagger = "2.55"
anvil = "0.4.0"

# Auto service
Expand Down
8 changes: 4 additions & 4 deletions tools/localazy/generateLocalazyConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit f927a17

Please sign in to comment.