Skip to content

Commit 8a8bb44

Browse files
committed
monitoring I18N translations
1 parent 5fd56b5 commit 8a8bb44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/test/processing/app/I18NTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void ensureEveryTranslationIsComplete() throws Exception {
6363
for (Map.Entry<String, List<String>> entry : missingTranslationsPerFile.entrySet()) {
6464
System.out.println("Following translations in file " + entry.getKey() + " are missing:");
6565
for (String key : entry.getValue()) {
66-
System.out.println("==> '" + key + "'");
66+
System.out.println("==> '" + key.replaceAll("\n", "\\\\n").replaceAll(" ", "\\\\ ") + "'");
6767
}
6868
System.out.println();
6969
}

0 commit comments

Comments
 (0)