remove line number from warnings
This commit is contained in:
parent
6cb3392222
commit
e8288f6525
3 changed files with 11 additions and 11 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -1,4 +1,4 @@
|
||||||
name: Pull Request
|
name: Build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|
|
@ -52,8 +52,8 @@ translations.forEach((t) => {
|
||||||
const value = getNestedProperty(t.values, p);
|
const value = getNestedProperty(t.values, p);
|
||||||
if (value == null || typeof value !== 'string') {
|
if (value == null || typeof value !== 'string') {
|
||||||
console.warn(`${t.lang} is missing a translation at '${p}'`);
|
console.warn(`${t.lang} is missing a translation at '${p}'`);
|
||||||
console.warn(
|
console.log(
|
||||||
`::warning file=compare_translations.js,line=55,col=6::${t.lang} is missing a translation at '${p}'`,
|
`::warning file=compare_translations.js::${t.lang} is missing a translation at '${p}'`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -103,8 +103,8 @@ const validateXML = (xmlString) => {
|
||||||
console.warn(
|
console.warn(
|
||||||
`Missing title translation for code '${codeTitle.textContent}' and locale ${localeIdentifiers[j]}`,
|
`Missing title translation for code '${codeTitle.textContent}' and locale ${localeIdentifiers[j]}`,
|
||||||
);
|
);
|
||||||
console.warn(
|
console.log(
|
||||||
`::warning file=inject_codes.js,line=107,col=10::Missing title translation for code '${codeTitle.textContent}' and locale ${localeIdentifiers[j]}`,
|
`::warning file=inject_codes.js::Missing title translation for code '${codeTitle.textContent}' and locale ${localeIdentifiers[j]}`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -118,8 +118,8 @@ const validateXML = (xmlString) => {
|
||||||
console.warn(
|
console.warn(
|
||||||
`Missing description translation for code '${codeTitle.textContent}' and locale ${localeIdentifiers[j]}`,
|
`Missing description translation for code '${codeTitle.textContent}' and locale ${localeIdentifiers[j]}`,
|
||||||
);
|
);
|
||||||
console.warn(
|
console.log(
|
||||||
`::warning file=inject_codes.js,line=122,col=10::Missing description translation for code '${codeTitle.textContent}' and locale ${localeIdentifiers[j]}`,
|
`::warning file=inject_codes.js::Missing description translation for code '${codeTitle.textContent}' and locale ${localeIdentifiers[j]}`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -136,8 +136,8 @@ const validateXML = (xmlString) => {
|
||||||
console.warn(
|
console.warn(
|
||||||
`Missing source on code '${codeTitle.textContent}' for version ${CODE_VERSIONS[j]}`,
|
`Missing source on code '${codeTitle.textContent}' for version ${CODE_VERSIONS[j]}`,
|
||||||
);
|
);
|
||||||
console.warn(
|
console.log(
|
||||||
`::warning file=inject_codes.js,line=140,col=10::Missing source on code '${codeTitle.textContent}' for version ${CODE_VERSIONS[j]}`,
|
`::warning file=inject_codes.js::Missing source on code '${codeTitle.textContent}' for version ${CODE_VERSIONS[j]}`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -168,8 +168,8 @@ const readTextNode = (node, identifier, lang = null, fallbackLang = null) => {
|
||||||
|
|
||||||
const codeTitle = node.querySelector(`title[lang='en-US']`);
|
const codeTitle = node.querySelector(`title[lang='en-US']`);
|
||||||
console.warn(`No translation found for code '${codeTitle.textContent}' for locale ${lang}`);
|
console.warn(`No translation found for code '${codeTitle.textContent}' for locale ${lang}`);
|
||||||
console.warn(
|
console.log(
|
||||||
`::warning file=inject_codes.js,line=172,col=6::No translation found for code '${codeTitle.textContent}' for locale ${lang}`,
|
`::warning file=inject_codes.js::No translation found for code '${codeTitle.textContent}' for locale ${lang}`,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (!fallbackLang) throw new Error(`No localized ${identifier} found on ${node.textContent}`);
|
if (!fallbackLang) throw new Error(`No localized ${identifier} found on ${node.textContent}`);
|
||||||
|
|
Loading…
Reference in a new issue