Convert message to single string to ease a translation

This commit is contained in:
Hasso Tepper 2016-01-03 23:43:03 +02:00 committed by Hasso Tepper
parent 531248a474
commit d2277fc1c7
1 changed files with 3 additions and 3 deletions

View File

@ -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);