Update l10n for message format

This commit is contained in:
2016-06-09 19:19:35 -04:00
parent 3ac978bdc1
commit 2dbdf55694
3 changed files with 5 additions and 4 deletions

View File

@@ -1,2 +1,2 @@
CommandProvider.unrecognized=Unrecognized command '{0}'
ConsoleApplication.cmd.failed=The command '{0}' failed due to :
CommandProvider.unrecognized=Unrecognized command "{0}"
ConsoleApplication.cmd.failed=The command "{0}" failed due to :

View File

@@ -76,7 +76,7 @@ public class ConsoleApplicationTest {
final PipedInputStream snk = new PipedInputStream();
PrintStream out = new PrintStream(new PipedOutputStream(snk));
final ConsoleTestApplication app = new ConsoleTestApplication(
new SystemConsoleManager(out, in));
new SystemConsoleManager(System.out, in));
Thread th = new Thread(new Runnable() {
@Override
@@ -93,6 +93,7 @@ public class ConsoleApplicationTest {
public void run() {
try (PrintWriter writer = new PrintWriter(src, true)) {
writer.println("test");
writer.println("toto");
writer.println("long");
writer.println("exit");
}