mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-19 01:01:37 +00:00
fix(i18n): type contradiction diagnostics
This commit is contained in:
@@ -957,7 +957,7 @@ export async function syncAndroidAppI18n(options: { check?: boolean } = {}) {
|
||||
`android-app-i18n: contradictions=${catalog.contradictions.length}`,
|
||||
...visible.map(
|
||||
(finding) =>
|
||||
`${finding.locale}: ${JSON.stringify(finding.source)} -> ${JSON.stringify(finding.selected)} (${finding.translations.map(JSON.stringify).join(", ")})`,
|
||||
`${finding.locale}: ${JSON.stringify(finding.source)} -> ${JSON.stringify(finding.selected)} (${finding.translations.map((translation) => JSON.stringify(translation)).join(", ")})`,
|
||||
),
|
||||
...(remaining > 0 ? [`android-app-i18n: ${remaining} more contradictions omitted`] : []),
|
||||
"",
|
||||
|
||||
Reference in New Issue
Block a user