Skip to content

Commit 8b914ec

Browse files
committed
Readd translatable strings
Fixes arduino#5757
1 parent f757ba1 commit 8b914ec

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

arduino-core/src/cc/arduino/Compiler.java

+25
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,31 @@ public class Compiler implements MessageConsumer {
9696
tr("Warning: platform.txt from core '{0}' misses property '{1}', using default value '{2}'. Consider upgrading this core.");
9797
tr("Warning: platform.txt from core '{0}' contains deprecated {1}, automatically converted to {2}. Consider upgrading this core.");
9898
tr("WARNING: Spurious {0} folder in '{1}' library");
99+
tr("Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} bytes.");
100+
tr("Couldn't determine program size: {0}");
101+
tr("Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes for local variables. Maximum is {1} bytes.");
102+
tr("Global variables use {0} bytes of dynamic memory.");
103+
tr("Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing it.");
104+
tr("Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing your footprint.");
105+
tr("Low memory available, stability problems may occur.");
106+
tr("An error occurred while verifying the sketch");
107+
tr("An error occurred while verifying/uploading the sketch");
108+
tr("Can't find the sketch in the specified path");
109+
tr("Done compiling");
110+
tr("Done uploading");
111+
tr("Error while uploading");
112+
tr("Error while verifying");
113+
tr("Error while verifying/uploading");
114+
tr("Mode not supported");
115+
tr("Multiple files not supported");
116+
tr("No command line parameters found");
117+
tr("No parameters");
118+
tr("No sketch");
119+
tr("No sketchbook");
120+
tr("Only --verify, --upload or --get-pref are supported");
121+
tr("Sketchbook path not defined");
122+
tr("The --upload option supports only one file at a time");
123+
tr("Verifying and uploading...");
99124
}
100125

101126
enum BuilderAction {

0 commit comments

Comments
 (0)