monitoring I18N translations

This commit is contained in:
Federico Fissore 2013-01-23 13:13:01 +01:00
parent 5fd56b5d91
commit 8a8bb44745
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class I18NTest {
for (Map.Entry<String, List<String>> 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();
}