Ignore special in script

This commit is contained in:
Pieter Vander Vennet 2024-03-12 14:17:18 +01:00
parent 853e8dcb3c
commit 4fcea3afea

View file

@ -342,6 +342,9 @@ function isTranslation(tr: any): boolean {
if (tr["#"] === "no-translations") {
return false
}
if (tr["special"]) {
return false
}
for (const key in tr) {
if (typeof tr[key] !== "string") {
return false