diff --git a/app/test/processing/app/I18NTest.java b/app/test/processing/app/I18NTest.java index d4c48f016..cfa511c33 100644 --- a/app/test/processing/app/I18NTest.java +++ b/app/test/processing/app/I18NTest.java @@ -63,7 +63,7 @@ public class I18NTest { for (Map.Entry> entry : missingTranslationsPerFile.entrySet()) { System.out.println("Following translations in file " + entry.getKey() + " are missing:"); for (String key : entry.getValue()) { - System.out.println("==> '" + key + "'"); + System.out.println("==> '" + key.replaceAll("\n", "\\\\n").replaceAll(" ", "\\\\ ") + "'"); } System.out.println(); }