Translation sync

This commit is contained in:
Pieter Vander Vennet 2022-05-11 18:39:21 +02:00
parent f971099c81
commit 16dd7399b3
52 changed files with 1105 additions and 935 deletions

View file

@ -230,7 +230,7 @@ class TranslationPart {
if (subparts === null) {
if (neededSubparts.size > 0) {
errors.push({
error: "The translation for " + key + " does not have any subparts, but expected " + Array.from(neededSubparts).join(",") + " . The full translation is " + value,
error: "The translation for " + key + " does not have any subparts, but expected " + Array.from(neededSubparts).map(part => part.part +" (used in "+part.usedByLanguage+")").join(",") + " . The full translation is " + value,
path: path
})
}