[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot] 2026-01-05 23:36:54 +00:00 committed by GitHub
parent 9a5d3dbca4
commit 1b695488e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@ describe("Check Translations", () => {
while ((match = translationRegex.exec(line)) !== null) {
const key = match.groups.key1 || match.groups.key2;
if (key && !enTranslations[key]) {
const [start, end] = match.groups.key1 ? match.indices.groups.key1 : match.indices.groups.key2;
const [ start, end ] = match.groups.key1 ? match.indices.groups.key1 : match.indices.groups.key2;
missingKeys.push({
filePath,
lineNum: lineNum + 1,