We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 531248a commit d2277fcCopy full SHA for d2277fc
app/src/processing/app/EditorStatus.java
@@ -346,9 +346,9 @@ public void keyTyped(KeyEvent event) {
346
message1 += editor.console.getText();
347
if (!(PreferencesData.getBoolean("build.verbose"))) {
348
message1 += "\n\n";
349
- message1 += " " + tr("This report would have more information with") + "\n";
350
- message1 += " \"" + tr("Show verbose output during compilation") + "\"\n";
351
- 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");
352
}
353
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
354
StringSelection data = new StringSelection(message1);
0 commit comments