We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fd56b5 commit 8a8bb44Copy full SHA for 8a8bb44
app/test/processing/app/I18NTest.java
@@ -63,7 +63,7 @@ public void ensureEveryTranslationIsComplete() throws Exception {
63
for (Map.Entry<String, List<String>> entry : missingTranslationsPerFile.entrySet()) {
64
System.out.println("Following translations in file " + entry.getKey() + " are missing:");
65
for (String key : entry.getValue()) {
66
- System.out.println("==> '" + key + "'");
+ System.out.println("==> '" + key.replaceAll("\n", "\\\\n").replaceAll(" ", "\\\\ ") + "'");
67
}
68
System.out.println();
69
0 commit comments