From d2277fc1c721c3fd6d83a708ba703cb431a2b8d2 Mon Sep 17 00:00:00 2001 From: Hasso Tepper Date: Sun, 3 Jan 2016 23:43:03 +0200 Subject: [PATCH] Convert message to single string to ease a translation --- app/src/processing/app/EditorStatus.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/processing/app/EditorStatus.java b/app/src/processing/app/EditorStatus.java index abf8987d2..684b1043f 100644 --- a/app/src/processing/app/EditorStatus.java +++ b/app/src/processing/app/EditorStatus.java @@ -346,9 +346,9 @@ public class EditorStatus extends JPanel { message1 += editor.console.getText(); if (!(PreferencesData.getBoolean("build.verbose"))) { message1 += "\n\n"; - message1 += " " + tr("This report would have more information with") + "\n"; - message1 += " \"" + tr("Show verbose output during compilation") + "\"\n"; - message1 += " " + tr("enabled in File > Preferences.") + "\n"; + message1 += tr(" This report would have more information with\n" + + " \"Show verbose output during compilation\"\n" + + " enabled in File -> Preferences.\n"); } Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard(); StringSelection data = new StringSelection(message1);