Update translation doc page, add comment for missing entries, fix verifyMessages task

This commit is contained in:
ljacqu
2023-06-21 12:12:34 +02:00
parent df6931d4b1
commit f24d6c5b5f
4 changed files with 31 additions and 21 deletions
@@ -36,4 +36,12 @@ public class MigraterYamlFileResource extends YamlFileResource {
}
return singleQuoteYaml;
}
// Because we set the YAML object to put strings in single quotes, this method by default uses that YAML object
// and also puts all paths as single quotes. Override to just always return the same string since we know those
// are only message names (so never any conflicting strings like "true" or "0").
@Override
protected String escapePathElementIfNeeded(String path) {
return path;
}
}