|
@@ -0,0 +1,228 @@
|
|
1
|
+#ifndef LANGUAGE_H
|
|
2
|
+#define LANGUAGE_H
|
|
3
|
+
|
|
4
|
+#include "Configuration.h"
|
|
5
|
+
|
|
6
|
+#define LANGUAGE_CONCAT(M) #M
|
|
7
|
+#define GENERATE_LANGUAGE_INCLUDE(M) LANGUAGE_CONCAT(language_##M.h)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+// NOTE: IF YOU CHANGE LANGUAGE FILES OR MERGE A FILE WITH CHANGES
|
|
11
|
+//
|
|
12
|
+// ==> ALWAYS TRY TO COMPILE MARLIN WITH/WITHOUT "ULTIPANEL" / "ULTRALCD" / "SDSUPPORT" #define IN "Configuration.h"
|
|
13
|
+// ==> ALSO TRY ALL AVAILABLE LANGUAGE OPTIONS
|
|
14
|
+
|
|
15
|
+// Languages
|
|
16
|
+// en English
|
|
17
|
+// pl Polish
|
|
18
|
+// fr French
|
|
19
|
+// de German
|
|
20
|
+// es Spanish
|
|
21
|
+// ru Russian
|
|
22
|
+// it Italian
|
|
23
|
+// pt Portuguese
|
|
24
|
+// pt-br Portuguese (Brazil)
|
|
25
|
+// fi Finnish
|
|
26
|
+// an Aragonese
|
|
27
|
+// nl Dutch
|
|
28
|
+// ca Catalan
|
|
29
|
+// eu Basque-Euskera
|
|
30
|
+
|
|
31
|
+#ifndef LANGUAGE_INCLUDE
|
|
32
|
+ // pick your language from the list above
|
|
33
|
+ #define LANGUAGE_INCLUDE GENERATE_LANGUAGE_INCLUDE(en)
|
|
34
|
+#endif
|
|
35
|
+
|
|
36
|
+#define PROTOCOL_VERSION "1.0"
|
|
37
|
+#define FIRMWARE_URL "https://github.com/MarlinFirmware/Marlin"
|
|
38
|
+
|
|
39
|
+#if MB(ULTIMAKER)|| MB(ULTIMAKER_OLD)|| MB(ULTIMAIN_2)
|
|
40
|
+ #define MACHINE_NAME "Ultimaker"
|
|
41
|
+ #define FIRMWARE_URL "http://firmware.ultimaker.com"
|
|
42
|
+#elif MB(RUMBA)
|
|
43
|
+ #define MACHINE_NAME "Rumba"
|
|
44
|
+#elif MB(3DRAG)
|
|
45
|
+ #define MACHINE_NAME "3Drag"
|
|
46
|
+ #define FIRMWARE_URL "http://3dprint.elettronicain.it/"
|
|
47
|
+#elif MB(K8200)
|
|
48
|
+ #define MACHINE_NAME "K8200"
|
|
49
|
+#elif MB(5DPRINT)
|
|
50
|
+ #define MACHINE_NAME "Makibox"
|
|
51
|
+#elif MB(SAV_MKI)
|
|
52
|
+ #define MACHINE_NAME "SAV MkI"
|
|
53
|
+ #define FIRMWARE_URL "https://github.com/fmalpartida/Marlin/tree/SAV-MkI-config"
|
|
54
|
+#elif MB(WITBOX)
|
|
55
|
+ #define MACHINE_NAME "WITBOX"
|
|
56
|
+ #define FIRMWARE_URL "http://www.bq.com/gb/downloads-witbox.html"
|
|
57
|
+#elif MB(HEPHESTOS)
|
|
58
|
+ #define MACHINE_NAME "HEPHESTOS"
|
|
59
|
+ #define FIRMWARE_URL "http://www.bq.com/gb/downloads-prusa-i3-hephestos.html"
|
|
60
|
+#else // Default firmware set to Mendel
|
|
61
|
+ #define MACHINE_NAME "Mendel"
|
|
62
|
+#endif
|
|
63
|
+
|
|
64
|
+#ifdef CUSTOM_MENDEL_NAME
|
|
65
|
+ #define MACHINE_NAME CUSTOM_MENDEL_NAME
|
|
66
|
+#endif
|
|
67
|
+
|
|
68
|
+#ifndef MACHINE_UUID
|
|
69
|
+ #define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
|
|
70
|
+#endif
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+#define STRINGIFY_(n) #n
|
|
74
|
+#define STRINGIFY(n) STRINGIFY_(n)
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+// Common LCD messages
|
|
78
|
+
|
|
79
|
+ /* nothing here yet */
|
|
80
|
+
|
|
81
|
+// Common serial messages
|
|
82
|
+#define MSG_MARLIN "Marlin"
|
|
83
|
+
|
|
84
|
+// Serial Console Messages (do not translate those!)
|
|
85
|
+
|
|
86
|
+#define MSG_Enqueing "enqueing \""
|
|
87
|
+#define MSG_POWERUP "PowerUp"
|
|
88
|
+#define MSG_EXTERNAL_RESET " External Reset"
|
|
89
|
+#define MSG_BROWNOUT_RESET " Brown out Reset"
|
|
90
|
+#define MSG_WATCHDOG_RESET " Watchdog Reset"
|
|
91
|
+#define MSG_SOFTWARE_RESET " Software Reset"
|
|
92
|
+#define MSG_AUTHOR " | Author: "
|
|
93
|
+#define MSG_CONFIGURATION_VER " Last Updated: "
|
|
94
|
+#define MSG_FREE_MEMORY " Free Memory: "
|
|
95
|
+#define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
|
|
96
|
+#define MSG_OK "ok"
|
|
97
|
+#define MSG_FILE_SAVED "Done saving file."
|
|
98
|
+#define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line: "
|
|
99
|
+#define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line: "
|
|
100
|
+#define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line: "
|
|
101
|
+#define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line: "
|
|
102
|
+#define MSG_FILE_PRINTED "Done printing file"
|
|
103
|
+#define MSG_BEGIN_FILE_LIST "Begin file list"
|
|
104
|
+#define MSG_END_FILE_LIST "End file list"
|
|
105
|
+#define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
|
|
106
|
+#define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
|
|
107
|
+#define MSG_M200_INVALID_EXTRUDER "M200 Invalid extruder "
|
|
108
|
+#define MSG_M218_INVALID_EXTRUDER "M218 Invalid extruder "
|
|
109
|
+#define MSG_M221_INVALID_EXTRUDER "M221 Invalid extruder "
|
|
110
|
+#define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature"
|
|
111
|
+#define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
|
|
112
|
+#define MSG_HEATING "Heating..."
|
|
113
|
+#define MSG_HEATING_COMPLETE "Heating done."
|
|
114
|
+#define MSG_BED_HEATING "Bed Heating."
|
|
115
|
+#define MSG_BED_DONE "Bed done."
|
|
116
|
+#define MSG_M115_REPORT "FIRMWARE_NAME:Marlin V1; Sprinter/grbl mashup for gen6 FIRMWARE_URL:" FIRMWARE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n"
|
|
117
|
+#define MSG_COUNT_X " Count X: "
|
|
118
|
+#define MSG_ERR_KILLED "Printer halted. kill() called!"
|
|
119
|
+#define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)"
|
|
120
|
+#define MSG_RESEND "Resend: "
|
|
121
|
+#define MSG_UNKNOWN_COMMAND "Unknown command: \""
|
|
122
|
+#define MSG_ACTIVE_EXTRUDER "Active Extruder: "
|
|
123
|
+#define MSG_INVALID_EXTRUDER "Invalid extruder"
|
|
124
|
+#define MSG_X_MIN "x_min: "
|
|
125
|
+#define MSG_X_MAX "x_max: "
|
|
126
|
+#define MSG_Y_MIN "y_min: "
|
|
127
|
+#define MSG_Y_MAX "y_max: "
|
|
128
|
+#define MSG_Z_MIN "z_min: "
|
|
129
|
+#define MSG_Z_MAX "z_max: "
|
|
130
|
+#define MSG_M119_REPORT "Reporting endstop status"
|
|
131
|
+#define MSG_ENDSTOP_HIT "TRIGGERED"
|
|
132
|
+#define MSG_ENDSTOP_OPEN "open"
|
|
133
|
+#define MSG_HOTEND_OFFSET "Hotend offsets:"
|
|
134
|
+
|
|
135
|
+#define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
|
|
136
|
+#define MSG_SD_INIT_FAIL "SD init fail"
|
|
137
|
+#define MSG_SD_VOL_INIT_FAIL "volume.init failed"
|
|
138
|
+#define MSG_SD_OPENROOT_FAIL "openRoot failed"
|
|
139
|
+#define MSG_SD_CARD_OK "SD card ok"
|
|
140
|
+#define MSG_SD_WORKDIR_FAIL "workDir open failed"
|
|
141
|
+#define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
|
|
142
|
+#define MSG_SD_FILE_OPENED "File opened: "
|
|
143
|
+#define MSG_SD_SIZE " Size: "
|
|
144
|
+#define MSG_SD_FILE_SELECTED "File selected"
|
|
145
|
+#define MSG_SD_WRITE_TO_FILE "Writing to file: "
|
|
146
|
+#define MSG_SD_PRINTING_BYTE "SD printing byte "
|
|
147
|
+#define MSG_SD_NOT_PRINTING "Not SD printing"
|
|
148
|
+#define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
|
|
149
|
+#define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir: "
|
|
150
|
+
|
|
151
|
+#define MSG_STEPPER_TOO_HIGH "Steprate too high: "
|
|
152
|
+#define MSG_ENDSTOPS_HIT "endstops hit: "
|
|
153
|
+#define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
|
|
154
|
+#define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
|
|
155
|
+#define MSG_BABYSTEPPING_X "Babystepping X"
|
|
156
|
+#define MSG_BABYSTEPPING_Y "Babystepping Y"
|
|
157
|
+#define MSG_BABYSTEPPING_Z "Babystepping Z"
|
|
158
|
+#define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
|
|
159
|
+
|
|
160
|
+#define MSG_ERR_EEPROM_WRITE "Error writing to EEPROM!"
|
|
161
|
+
|
|
162
|
+// LCD Menu Messages
|
|
163
|
+
|
|
164
|
+// Add your own character. Reference: https://github.com/MarlinFirmware/Marlin/pull/1434 photos
|
|
165
|
+// and https://www.sparkfun.com/datasheets/LCD/HD44780.pdf page 17-18
|
|
166
|
+#ifdef DOGLCD
|
|
167
|
+ #define STR_Ae "\304" // 'Ä' U8glib
|
|
168
|
+ #define STR_ae "\344" // 'ä'
|
|
169
|
+ #define STR_Oe "\326" // 'Ö'
|
|
170
|
+ #define STR_oe STR_Oe // 'ö'
|
|
171
|
+ #define STR_Ue "\334" // 'Ü'
|
|
172
|
+ #define STR_ue STR_Ue // 'ü'
|
|
173
|
+ #define STR_sz "\337" // 'ß'
|
|
174
|
+ #define STR_h2 "\262" // '²'
|
|
175
|
+ #define STR_h3 "\263" // '³'
|
|
176
|
+ #define STR_Deg "\260" // '°'
|
|
177
|
+ #define STR_THERMOMETER "\377"
|
|
178
|
+#else
|
|
179
|
+ #ifdef DISPLAY_CHARSET_HD44780_JAPAN // HD44780 ROM Code: A00 (Japan)
|
|
180
|
+ #define STR_ae "\xe1"
|
|
181
|
+ #define STR_Ae STR_ae
|
|
182
|
+ #define STR_oe "\357"
|
|
183
|
+ #define STR_Oe STR_oe
|
|
184
|
+ #define STR_ue "\365"
|
|
185
|
+ #define STR_Ue STR_ue
|
|
186
|
+ #define STR_sz "\342"
|
|
187
|
+ #define STR_h2 "2"
|
|
188
|
+ #define STR_h3 "3"
|
|
189
|
+ #define STR_Deg "\271"
|
|
190
|
+ #define STR_THERMOMETER "\002"
|
|
191
|
+ #endif
|
|
192
|
+ #ifdef DISPLAY_CHARSET_HD44780_WESTERN // HD44780 ROM Code: A02 (Western)
|
|
193
|
+ #define STR_Ae "\216"
|
|
194
|
+ #define STR_ae "\204"
|
|
195
|
+ #define STR_Oe "\211"
|
|
196
|
+ #define STR_oe "\204"
|
|
197
|
+ #define STR_Ue "\212"
|
|
198
|
+ #define STR_ue "\201"
|
|
199
|
+ #define STR_sz "\160"
|
|
200
|
+ #define STR_h2 "\262"
|
|
201
|
+ #define STR_h3 "\263"
|
|
202
|
+ #define STR_Deg "\337"
|
|
203
|
+ #define STR_THERMOMETER "\002"
|
|
204
|
+ #endif
|
|
205
|
+#endif
|
|
206
|
+/*
|
|
207
|
+#define TESTSTRING000 "\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017"
|
|
208
|
+#define TESTSTRING020 "\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037"
|
|
209
|
+#define TESTSTRING040 "\040\041\042\043\044\045\046\047\050\051\052\053\054\055\056\057"
|
|
210
|
+#define TESTSTRING060 "\060\061\062\063\064\065\066\067\070\071\072\073\074\075\076\077"
|
|
211
|
+#define TESTSTRING100 "\100\101\102\103\104\105\106\107\110\111\112\113\114\115\116\117"
|
|
212
|
+#define TESTSTRING120 "\120\121\122\123\124\125\126\127\130\131\132\133\134\135\136\137"
|
|
213
|
+#define TESTSTRING140 "\140\141\142\143\144\145\146\147\150\151\152\153\154\155\156\157"
|
|
214
|
+#define TESTSTRING160 "\160\161\162\163\164\165\166\167\170\171\172\173\174\175\176\177"
|
|
215
|
+#define TESTSTRING200 "\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217"
|
|
216
|
+#define TESTSTRING220 "\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237"
|
|
217
|
+#define TESTSTRING240 "\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257"
|
|
218
|
+#define TESTSTRING260 "\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277"
|
|
219
|
+#define TESTSTRING300 "\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317"
|
|
220
|
+#define TESTSTRING320 "\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337"
|
|
221
|
+#define TESTSTRING340 "\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357"
|
|
222
|
+#define TESTSTRING360 "\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377"
|
|
223
|
+*/
|
|
224
|
+
|
|
225
|
+#include LANGUAGE_INCLUDE
|
|
226
|
+#include "language_en.h"
|
|
227
|
+
|
|
228
|
+#endif //__LANGUAGE_H
|