mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-13 10:29:35 +01:00
Convert message to single string to ease a translation
This commit is contained in:
parent
531248a474
commit
d2277fc1c7
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user