Skip to content

Commit d2277fc

Browse files
committed
Convert message to single string to ease a translation
1 parent 531248a commit d2277fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/src/processing/app/EditorStatus.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -346,9 +346,9 @@ public void keyTyped(KeyEvent event) {
346346
message1 += editor.console.getText();
347347
if (!(PreferencesData.getBoolean("build.verbose"))) {
348348
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";
349+
message1 += tr(" This report would have more information with\n" +
350+
" \"Show verbose output during compilation\"\n" +
351+
" enabled in File -> Preferences.\n");
352352
}
353353
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
354354
StringSelection data = new StringSelection(message1);

0 commit comments

Comments
 (0)