My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. <<<<<<< HEAD
  2. #ifndef LANGUAGE_H
  3. #define LANGUAGE_H
  4. // NOTE: IF YOU CHANGE THIS FILE / MERGE THIS FILE WITH CHANGES
  5. //
  6. // ==> ALWAYS TRY TO COMPILE MARLIN WITH/WITHOUT "ULTIPANEL" / "ULTRALCD" / "SDSUPPORT" #define IN "Configuration.h"
  7. // ==> ALSO TRY ALL AVAILABLE "LANGUAGE_CHOICE" OPTIONS
  8. // Languages
  9. // 1 English
  10. // 2 -
  11. // 3 French (Waiting translation)
  12. // 4 German
  13. // 5 Spanish
  14. // 6 Etc
  15. #define LANGUAGE_CHOICE 1 // Pick your language from the list above
  16. #define PROTOCOL_VERSION "1.0"
  17. #if MOTHERBOARD == 7 || MOTHERBOARD == 71
  18. #define MACHINE_NAME "Ultimaker"
  19. #define FIRMWARE_URL "http://firmware.ultimaker.com"
  20. #else
  21. #define MACHINE_NAME "Mendel"
  22. #define FIRMWARE_URL "http://www.mendel-parts.com"
  23. #endif
  24. #define STRINGIFY_(n) #n
  25. #define STRINGIFY(n) STRINGIFY_(n)
  26. #if LANGUAGE_CHOICE == 1
  27. // LCD Menu Messages
  28. #define WELCOME_MSG MACHINE_NAME " Ready."
  29. #define MSG_SD_INSERTED "Card inserted"
  30. #define MSG_SD_REMOVED "Card removed"
  31. #define MSG_MAIN " Main \003"
  32. #define MSG_AUTOSTART " Autostart"
  33. #define MSG_DISABLE_STEPPERS " Disable Steppers"
  34. #define MSG_AUTO_HOME " Auto Home"
  35. #define MSG_SET_ORIGIN " Set Origin"
  36. #define MSG_PREHEAT_PLA " Preheat PLA"
  37. #define MSG_PREHEAT_PLA_SETTINGS " Preheat PLA Setting"
  38. #define MSG_PREHEAT_ABS " Preheat ABS"
  39. #define MSG_PREHEAT_ABS_SETTINGS " Preheat ABS Setting"
  40. #define MSG_COOLDOWN " Cooldown"
  41. #define MSG_EXTRUDE " Extrude"
  42. #define MSG_RETRACT " Retract"
  43. #define MSG_PREHEAT_PLA " Preheat PLA"
  44. #define MSG_PREHEAT_ABS " Preheat ABS"
  45. #define MSG_MOVE_AXIS " Move Axis \x7E"
  46. #define MSG_SPEED " Speed:"
  47. #define MSG_NOZZLE " \002Nozzle:"
  48. #define MSG_NOZZLE1 " \002Nozzle2:"
  49. #define MSG_NOZZLE2 " \002Nozzle3:"
  50. #define MSG_BED " \002Bed:"
  51. #define MSG_FAN_SPEED " Fan speed:"
  52. #define MSG_FLOW " Flow:"
  53. #define MSG_CONTROL " Control \003"
  54. #define MSG_MIN " \002 Min:"
  55. #define MSG_MAX " \002 Max:"
  56. #define MSG_FACTOR " \002 Fact:"
  57. #define MSG_AUTOTEMP " Autotemp:"
  58. #define MSG_ON "On "
  59. #define MSG_OFF "Off"
  60. #define MSG_PID_P " PID-P: "
  61. #define MSG_PID_I " PID-I: "
  62. #define MSG_PID_D " PID-D: "
  63. #define MSG_PID_C " PID-C: "
  64. #define MSG_ACC " Acc:"
  65. #define MSG_VXY_JERK " Vxy-jerk: "
  66. #define MSG_VMAX " Vmax "
  67. #define MSG_X "x:"
  68. #define MSG_Y "y:"
  69. #define MSG_Z "z:"
  70. #define MSG_E "e:"
  71. #define MSG_VMIN " Vmin:"
  72. #define MSG_VTRAV_MIN " VTrav min:"
  73. #define MSG_AMAX " Amax "
  74. #define MSG_A_RETRACT " A-retract:"
  75. #define MSG_XSTEPS " Xsteps/mm:"
  76. #define MSG_YSTEPS " Ysteps/mm:"
  77. #define MSG_ZSTEPS " Zsteps/mm:"
  78. #define MSG_ESTEPS " Esteps/mm:"
  79. #define MSG_MAIN_WIDE " Main \003"
  80. #define MSG_RECTRACT_WIDE " Rectract \x7E"
  81. #define MSG_TEMPERATURE_WIDE " Temperature \x7E"
  82. #define MSG_TEMPERATURE_RTN " Temperature \003"
  83. #define MSG_MOTION_WIDE " Motion \x7E"
  84. #define MSG_STORE_EPROM " Store memory"
  85. #define MSG_LOAD_EPROM " Load memory"
  86. #define MSG_RESTORE_FAILSAFE " Restore Failsafe"
  87. #define MSG_REFRESH "\004Refresh"
  88. #define MSG_WATCH " Watch \003"
  89. #define MSG_PREPARE " Prepare \x7E"
  90. #define MSG_PREPARE_ALT " Prepare \003"
  91. #define MSG_CONTROL_ARROW " Control \x7E"
  92. #define MSG_RETRACT_ARROW " Retract \x7E"
  93. #define MSG_TUNE " Tune \x7E"
  94. #define MSG_PAUSE_PRINT " Pause Print \x7E"
  95. #define MSG_RESUME_PRINT " Resume Print \x7E"
  96. #define MSG_STOP_PRINT " Stop Print \x7E"
  97. #define MSG_CARD_MENU " Card Menu \x7E"
  98. #define MSG_NO_CARD " No Card"
  99. #define MSG_DWELL "Sleep..."
  100. #define MSG_USERWAIT "Wait for user..."
  101. #define MSG_NO_MOVE "No move."
  102. #define MSG_PART_RELEASE "Partial Release"
  103. #define MSG_KILLED "KILLED. "
  104. #define MSG_STOPPED "STOPPED. "
  105. #define MSG_STEPPER_RELEASED "Released."
  106. #define MSG_CONTROL_RETRACT " Retract mm:"
  107. #define MSG_CONTROL_RETRACTF " Retract F:"
  108. #define MSG_CONTROL_RETRACT_ZLIFT " Hop mm:"
  109. #define MSG_CONTROL_RETRACT_RECOVER " UnRet +mm:"
  110. #define MSG_CONTROL_RETRACT_RECOVERF " UnRet F:"
  111. #define MSG_AUTORETRACT " AutoRetr.:"
  112. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Something is wrong in the MenuStructure."
  113. // Serial Console Messages
  114. #define MSG_Enqueing "enqueing \""
  115. #define MSG_POWERUP "PowerUp"
  116. #define MSG_EXTERNAL_RESET " External Reset"
  117. #define MSG_BROWNOUT_RESET " Brown out Reset"
  118. #define MSG_WATCHDOG_RESET " Watchdog Reset"
  119. #define MSG_SOFTWARE_RESET " Software Reset"
  120. #define MSG_MARLIN "Marlin "
  121. #define MSG_AUTHOR " | Author: "
  122. #define MSG_CONFIGURATION_VER " Last Updated: "
  123. #define MSG_FREE_MEMORY " Free Memory: "
  124. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  125. #define MSG_OK "ok"
  126. #define MSG_FILE_SAVED "Done saving file."
  127. #define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line:"
  128. #define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line:"
  129. #define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line:"
  130. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line:"
  131. #define MSG_FILE_PRINTED "Done printing file"
  132. #define MSG_BEGIN_FILE_LIST "Begin file list"
  133. #define MSG_END_FILE_LIST "End file list"
  134. #define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
  135. #define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
  136. #define MSG_ERR_NO_THERMISTORS "No thermistors - no temp"
  137. #define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
  138. #define MSG_HEATING "Heating..."
  139. #define MSG_HEATING_COMPLETE "Heating done."
  140. #define MSG_BED_HEATING "Bed Heating."
  141. #define MSG_BED_DONE "Bed done."
  142. #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) "\n"
  143. #define MSG_COUNT_X " Count X:"
  144. #define MSG_ERR_KILLED "Printer halted. kill() called !!"
  145. #define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart!. (Temperature is reset. Set it before restarting)"
  146. #define MSG_RESEND "Resend:"
  147. #define MSG_UNKNOWN_COMMAND "Unknown command:\""
  148. #define MSG_ACTIVE_EXTRUDER "Active Extruder: "
  149. #define MSG_INVALID_EXTRUDER "Invalid extruder"
  150. #define MSG_X_MIN "x_min: "
  151. #define MSG_X_MAX "x_max: "
  152. #define MSG_Y_MIN "y_min: "
  153. #define MSG_Y_MAX "y_max: "
  154. #define MSG_Z_MIN "z_min: "
  155. #define MSG_Z_MAX "z_max: "
  156. #define MSG_M119_REPORT "Reporting endstop status"
  157. #define MSG_ENDSTOP_HIT "TRIGGERED"
  158. #define MSG_ENDSTOP_OPEN "open"
  159. #define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
  160. #define MSG_SD_INIT_FAIL "SD init fail"
  161. #define MSG_SD_VOL_INIT_FAIL "volume.init failed"
  162. #define MSG_SD_OPENROOT_FAIL "openRoot failed"
  163. #define MSG_SD_CARD_OK "SD card ok"
  164. #define MSG_SD_WORKDIR_FAIL "workDir open failed"
  165. #define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
  166. #define MSG_SD_FILE_OPENED "File opened:"
  167. #define MSG_SD_SIZE " Size:"
  168. #define MSG_SD_FILE_SELECTED "File selected"
  169. #define MSG_SD_WRITE_TO_FILE "Writing to file: "
  170. #define MSG_SD_PRINTING_BYTE "SD printing byte "
  171. #define MSG_SD_NOT_PRINTING "Not SD printing"
  172. #define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
  173. #define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir:"
  174. #define MSG_STEPPER_TO_HIGH "Steprate to high : "
  175. #define MSG_ENDSTOPS_HIT "endstops hit: "
  176. #define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
  177. #define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
  178. #endif
  179. #if LANGUAGE_CHOICE == 4
  180. // LCD Menu Messages
  181. #define WELCOME_MSG MACHINE_NAME " Bereit."
  182. #define MSG_SD_INSERTED "SDKarte erkannt"
  183. #define MSG_SD_REMOVED "SDKarte entfernt"
  184. #define MSG_MAIN " Hauptmneü \003"
  185. #define MSG_AUTOSTART " Autostart"
  186. #define MSG_DISABLE_STEPPERS " Stepper abschalten"
  187. #define MSG_AUTO_HOME " Auto Nullpunkt"
  188. #define MSG_SET_ORIGIN " Setze Nullpunkt"
  189. #define MSG_PREHEAT_PLA " Vorwärmen PLA"
  190. #define MSG_PREHEAT_PLA_SETTINGS " Vorwärmen PLA Einstellungen"
  191. #define MSG_PREHEAT_ABS " Vorwärmen ABS"
  192. #define MSG_PREHEAT_ABS_SETTINGS " Vorwärmen ABS Einstellungen"
  193. #define MSG_COOLDOWN " Abkühlen"
  194. #define MSG_EXTRUDE " Extrude"
  195. #define MSG_RETRACT " Retract"
  196. #define MSG_MOVE_AXIS " Achsen bewegen\x7E"
  197. #define MSG_SPEED " Geschw:"
  198. #define MSG_NOZZLE " \002Düse:"
  199. #define MSG_NOZZLE1 " \002Düse2:"
  200. #define MSG_NOZZLE2 " \002Düse3:"
  201. #define MSG_BED " \002Bett:"
  202. #define MSG_FAN_SPEED " Lüftergeschw.:"
  203. #define MSG_FLOW " Fluß:"
  204. #define MSG_CONTROL " Einstellungen \003"
  205. #define MSG_MIN " \002 Min:"
  206. #define MSG_MAX " \002 Max:"
  207. #define MSG_FACTOR " \002 Faktor:"
  208. #define MSG_AUTOTEMP " AutoTemp:"
  209. #define MSG_ON "Ein "
  210. #define MSG_OFF "Aus "
  211. #define MSG_PID_P " PID-P: "
  212. #define MSG_PID_I " PID-I: "
  213. #define MSG_PID_D " PID-D: "
  214. #define MSG_PID_C " PID-C: "
  215. #define MSG_ACC " Acc:"
  216. #define MSG_VXY_JERK " Vxy-jerk: "
  217. #define MSG_VMAX " Vmax "
  218. #define MSG_X "x:"
  219. #define MSG_Y "y:"
  220. #define MSG_Z "z:"
  221. #define MSG_E "e:"
  222. #define MSG_VMIN " Vmin:"
  223. #define MSG_VTRAV_MIN " VTrav min:"
  224. #define MSG_AMAX " Amax "
  225. #define MSG_A_RETRACT " A-Retract:"
  226. #define MSG_XSTEPS " Xsteps/mm:"
  227. #define MSG_YSTEPS " Ysteps/mm:"
  228. #define MSG_ZSTEPS " Zsteps/mm:"
  229. #define MSG_ESTEPS " Esteps/mm:"
  230. #define MSG_MAIN_WIDE " Hauptmenü \003"
  231. #define MSG_RECTRACT_WIDE " Rectract \x7E"
  232. #define MSG_WATCH " Beobachten \003"
  233. #define MSG_TEMPERATURE_WIDE " Temperatur \x7E"
  234. #define MSG_TEMPERATURE_RTN " Temperatur \003"
  235. #define MSG_MOTION_WIDE " Bewegung \x7E"
  236. #define MSG_STORE_EPROM " EPROM speichern"
  237. #define MSG_LOAD_EPROM " EPROM laden"
  238. #define MSG_RESTORE_FAILSAFE " Standardkonfig."
  239. #define MSG_REFRESH "\004Aktualisieren"
  240. #define MSG_PREPARE " Vorbereitung \x7E"
  241. #define MSG_PREPARE_ALT " Vorbereitung \003"
  242. #define MSG_CONTROL_ARROW " Einstellungen \x7E"
  243. #define MSG_TUNE " Justierung \x7E"
  244. #define MSG_PAUSE_PRINT " Druck anhalten\x7E"
  245. #define MSG_RESUME_PRINT " Druck fortsetz\x7E"
  246. #define MSG_STOP_PRINT " Druck stoppen \x7E"
  247. #define MSG_CARD_MENU " SDKarten Menü \x7E"
  248. #define MSG_NO_CARD " Keine SDKarte"
  249. #define MSG_DWELL "Warten..."
  250. #define MSG_USERWAIT "Warte auf Nutzer..."
  251. #define MSG_NO_MOVE "Kein Zug."
  252. #define MSG_PART_RELEASE "Stepper tlw frei"
  253. #define MSG_KILLED "KILLED"
  254. #define MSG_STOPPED "GESTOPPT"
  255. #define MSG_STEPPER_RELEASED "Stepper frei"
  256. #define MSG_CONTROL_RETRACT " Retract mm:"
  257. #define MSG_CONTROL_RETRACTF " Retract F:"
  258. #define MSG_CONTROL_RETRACT_ZLIFT " Hop mm:"
  259. #define MSG_CONTROL_RETRACT_RECOVER " UnRet +mm:"
  260. #define MSG_CONTROL_RETRACT_RECOVERF " UnRet F:"
  261. #define MSG_AUTORETRACT " AutoRetr.:"
  262. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Fehler in Menüstruktur."
  263. // Serial Console Messages
  264. #define MSG_Enqueing "enqueing \""
  265. #define MSG_POWERUP "PowerUp"
  266. #define MSG_EXTERNAL_RESET " External Reset"
  267. #define MSG_BROWNOUT_RESET " Brown out Reset"
  268. #define MSG_WATCHDOG_RESET " Watchdog Reset"
  269. #define MSG_SOFTWARE_RESET " Software Reset"
  270. #define MSG_MARLIN "Marlin: "
  271. #define MSG_AUTHOR " | Author: "
  272. #define MSG_CONFIGURATION_VER " Last Updated: "
  273. #define MSG_FREE_MEMORY " Free Memory: "
  274. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  275. #define MSG_OK "ok"
  276. #define MSG_FILE_SAVED "Done saving file."
  277. #define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line:"
  278. #define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line:"
  279. #define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line:"
  280. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line:"
  281. #define MSG_FILE_PRINTED "Done printing file"
  282. #define MSG_BEGIN_FILE_LIST "Begin file list"
  283. #define MSG_END_FILE_LIST "End file list"
  284. #define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
  285. #define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
  286. #define MSG_ERR_NO_THERMISTORS "No thermistors - no temp"
  287. #define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
  288. #define MSG_HEATING "Heating..."
  289. #define MSG_HEATING_COMPLETE "Heating done."
  290. #define MSG_BED_HEATING "Bed Heating."
  291. #define MSG_BED_DONE "Bed done."
  292. #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) "\n"
  293. #define MSG_COUNT_X " Count X:"
  294. #define MSG_ERR_KILLED "Printer halted. kill() called !!"
  295. #define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart!"
  296. #define MSG_RESEND "Resend:"
  297. #define MSG_UNKNOWN_COMMAND "Unknown command:\""
  298. #define MSG_ACTIVE_EXTRUDER "Active Extruder: "
  299. #define MSG_INVALID_EXTRUDER "Invalid extruder"
  300. #define MSG_X_MIN "x_min: "
  301. #define MSG_X_MAX "x_max: "
  302. #define MSG_Y_MIN "y_min: "
  303. #define MSG_Y_MAX "y_max: "
  304. #define MSG_Z_MIN "z_min: "
  305. #define MSG_Z_MAX "z_max: "
  306. #define MSG_M119_REPORT "Reporting endstop status"
  307. #define MSG_ENDSTOP_HIT "TRIGGERED"
  308. #define MSG_ENDSTOP_OPEN "open"
  309. #define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
  310. #define MSG_SD_INIT_FAIL "SD init fail"
  311. #define MSG_SD_VOL_INIT_FAIL "volume.init failed"
  312. #define MSG_SD_OPENROOT_FAIL "openRoot failed"
  313. #define MSG_SD_CARD_OK "SD card ok"
  314. #define MSG_SD_WORKDIR_FAIL "workDir open failed"
  315. #define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
  316. #define MSG_SD_FILE_OPENED "File opened:"
  317. #define MSG_SD_SIZE " Size:"
  318. #define MSG_SD_FILE_SELECTED "File selected"
  319. #define MSG_SD_WRITE_TO_FILE "Writing to file: "
  320. #define MSG_SD_PRINTING_BYTE "SD printing byte "
  321. #define MSG_SD_NOT_PRINTING "Not SD printing"
  322. #define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
  323. #define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir:"
  324. #define MSG_STEPPER_TO_HIGH "Steprate to high : "
  325. #define MSG_ENDSTOPS_HIT "endstops hit: "
  326. #define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
  327. #define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
  328. #endif
  329. #if LANGUAGE_CHOICE == 5
  330. // LCD Menu Messages
  331. #define WELCOME_MSG MACHINE_NAME " Lista."
  332. #define MSG_SD_INSERTED "Tarjeta SD Colocada"
  333. #define MSG_SD_REMOVED "Tarjeta SD Retirada"
  334. #define MSG_MAIN " Menu Principal \003"
  335. #define MSG_AUTOSTART " Autostart"
  336. #define MSG_DISABLE_STEPPERS " Apagar Motores"
  337. #define MSG_AUTO_HOME " Llevar Ejes al Cero"
  338. #define MSG_SET_ORIGIN " Establecer Cero"
  339. #define MSG_COOLDOWN " Enfriar"
  340. #define MSG_EXTRUDE " Extruir"
  341. #define MSG_RETRACT " Retraer"
  342. #define MSG_PREHEAT_PLA " Precalentar PLA"
  343. #define MSG_PREHEAT_PLA_SETTINGS " Ajustar temp. PLA"
  344. #define MSG_PREHEAT_ABS " Precalentar ABS"
  345. #define MSG_PREHEAT_ABS_SETTINGS " Ajustar temp. ABS"
  346. #define MSG_MOVE_AXIS " Mover Ejes \x7E"
  347. #define MSG_SPEED " Velocidad:"
  348. #define MSG_NOZZLE " \002Nozzle:"
  349. #define MSG_NOZZLE1 " \002Nozzle2:"
  350. #define MSG_NOZZLE2 " \002Nozzle3:"
  351. #define MSG_BED " \002Base:"
  352. #define MSG_FAN_SPEED " Ventilador:"
  353. #define MSG_FLOW " Flujo:"
  354. #define MSG_CONTROL " Control \003"
  355. #define MSG_MIN " \002 Min:"
  356. #define MSG_MAX " \002 Max:"
  357. #define MSG_FACTOR " \002 Fact:"
  358. #define MSG_AUTOTEMP " Autotemp:"
  359. #define MSG_ON "On "
  360. #define MSG_OFF "Off"
  361. #define MSG_PID_P " PID-P: "
  362. #define MSG_PID_I " PID-I: "
  363. #define MSG_PID_D " PID-D: "
  364. #define MSG_PID_C " PID-C: "
  365. #define MSG_ACC " Acc:"
  366. #define MSG_VXY_JERK " Vxy-jerk: "
  367. #define MSG_VMAX " Vmax "
  368. #define MSG_X "x:"
  369. #define MSG_Y "y:"
  370. #define MSG_Z "z:"
  371. #define MSG_E "e:"
  372. #define MSG_VMIN " Vmin:"
  373. #define MSG_VTRAV_MIN " VTrav min:"
  374. #define MSG_AMAX " Amax "
  375. #define MSG_A_RETRACT " A-retrac.:"
  376. #define MSG_XSTEPS " Xpasos/mm:"
  377. #define MSG_YSTEPS " Ypasos/mm:"
  378. #define MSG_ZSTEPS " Zpasos/mm:"
  379. #define MSG_ESTEPS " Epasos/mm:"
  380. #define MSG_MAIN_WIDE " Menu Principal \003"
  381. #define MSG_RECTRACT_WIDE " Retraer \x7E"
  382. #define MSG_TEMPERATURE_WIDE " Temperatura \x7E"
  383. #define MSG_TEMPERATURE_RTN " Temperatura \003"
  384. #define MSG_MOTION_WIDE " Movimiento \x7E"
  385. #define MSG_STORE_EPROM " Guardar Memoria"
  386. #define MSG_LOAD_EPROM " Cargar Memoria"
  387. #define MSG_RESTORE_FAILSAFE " Rest. de emergencia"
  388. #define MSG_REFRESH "\004Volver a cargar"
  389. #define MSG_WATCH " Monitorizar \003"
  390. #define MSG_PREPARE " Preparar \x7E"
  391. #define MSG_PREPARE_ALT " Preparar \003"
  392. #define MSG_CONTROL_ARROW " Control \x7E"
  393. #define MSG_RETRACT_ARROW " Retraer \x7E"
  394. #define MSG_TUNE " Ajustar \x7E"
  395. #define MSG_PAUSE_PRINT " Pausar Impresion \x7E"
  396. #define MSG_RESUME_PRINT " Reanudar Impresion \x7E"
  397. #define MSG_STOP_PRINT " Detener Impresion \x7E"
  398. #define MSG_CARD_MENU " Menu de SD \x7E"
  399. #define MSG_NO_CARD " No hay Tarjeta SD"
  400. #define MSG_DWELL "Reposo..."
  401. #define MSG_USERWAIT "Esperando Ordenes..."
  402. #define MSG_NO_MOVE "Sin movimiento"
  403. #define MSG_PART_RELEASE "Desacople Parcial"
  404. #define MSG_KILLED "PARADA DE EMERGENCIA. "
  405. #define MSG_STOPPED "PARADA. "
  406. #define MSG_STEPPER_RELEASED "Desacoplada."
  407. #define MSG_CONTROL_RETRACT " Retraer mm:"
  408. #define MSG_CONTROL_RETRACTF " Retraer F:"
  409. #define MSG_CONTROL_RETRACT_ZLIFT " Levantar mm:"
  410. #define MSG_CONTROL_RETRACT_RECOVER " DesRet +mm:"
  411. #define MSG_CONTROL_RETRACT_RECOVERF " DesRet F:"
  412. #define MSG_AUTORETRACT " AutoRetr.:"
  413. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Hay un error en la estructura del menu"
  414. // Serial Console Messages
  415. #define MSG_Enqueing "En cola \""
  416. #define MSG_POWERUP "PowerUp"
  417. #define MSG_EXTERNAL_RESET " Reset Externo"
  418. #define MSG_BROWNOUT_RESET " Reset por Voltaje Incorrecto"
  419. #define MSG_WATCHDOG_RESET " Reset por Bloqueo"
  420. #define MSG_SOFTWARE_RESET " Reset por Software"
  421. #define MSG_MARLIN "Marlin "
  422. #define MSG_AUTHOR " | Autor: "
  423. #define MSG_CONFIGURATION_VER " Ultima actualizacion: "
  424. #define MSG_FREE_MEMORY " Memoria libre: "
  425. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  426. #define MSG_OK "ok"
  427. #define MSG_FILE_SAVED "Guardado."
  428. #define MSG_ERR_LINE_NO "El Numero de Linea no es igual al Ultimo Numero de Linea+1, Ultima Linea:"
  429. #define MSG_ERR_CHECKSUM_MISMATCH "el checksum no coincide, Ultima Linea:"
  430. #define MSG_ERR_NO_CHECKSUM "No se pudo hallar el Checksum con el numero de linea, Ultima Linea:"
  431. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No se hallo el Numero de Linea con el Checksum, Ultima Linea:"
  432. #define MSG_FILE_PRINTED "Impresion terminada"
  433. #define MSG_BEGIN_FILE_LIST "Comienzo de la lista de archivos"
  434. #define MSG_END_FILE_LIST "Fin de la lista de archivos"
  435. #define MSG_M104_INVALID_EXTRUDER "M104 Extrusor Invalido "
  436. #define MSG_M105_INVALID_EXTRUDER "M105 Extrusor Invalido "
  437. #define MSG_ERR_NO_THERMISTORS "No hay termistores - no temp"
  438. #define MSG_M109_INVALID_EXTRUDER "M109 Extrusor Invalido "
  439. #define MSG_HEATING "Calentando..."
  440. #define MSG_HEATING_COMPLETE "Calentamiento Hecho."
  441. #define MSG_BED_HEATING "Calentando la base."
  442. #define MSG_BED_DONE "Base Caliente."
  443. #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) "\n"
  444. #define MSG_COUNT_X " Cuenta X:"
  445. #define MSG_ERR_KILLED "¡¡Impresora Parada con kill()!!"
  446. #define MSG_ERR_STOPPED "¡Impresora parada por errores. Arregle el error y use M999 Para reiniciar!. (La temperatura se reestablece. Ajustela antes de continuar)"
  447. #define MSG_RESEND "Reenviar:"
  448. #define MSG_UNKNOWN_COMMAND "Comando Desconocido:\""
  449. #define MSG_ACTIVE_EXTRUDER "Extrusor Activo: "
  450. #define MSG_INVALID_EXTRUDER "Extrusor Invalido"
  451. #define MSG_X_MIN "x_min: "
  452. #define MSG_X_MAX "x_max: "
  453. #define MSG_Y_MIN "y_min: "
  454. #define MSG_Y_MAX "y_max: "
  455. #define MSG_Z_MIN "z_min: "
  456. #define MSG_M119_REPORT "Comprobando fines de carrera."
  457. #define MSG_ENDSTOP_HIT "PULSADO"
  458. #define MSG_ENDSTOP_OPEN "abierto"
  459. #define MSG_SD_CANT_OPEN_SUBDIR "No se pudo abrir la subcarpeta."
  460. #define MSG_SD_INIT_FAIL "Fallo al iniciar la SD"
  461. #define MSG_SD_VOL_INIT_FAIL "Fallo al montar el volumen"
  462. #define MSG_SD_OPENROOT_FAIL "Fallo al abrir la carpeta raiz"
  463. #define MSG_SD_CARD_OK "Tarjeta SD OK"
  464. #define MSG_SD_WORKDIR_FAIL "Fallo al abrir la carpeta de trabajo"
  465. #define MSG_SD_OPEN_FILE_FAIL "Error al abrir, Archivo: "
  466. #define MSG_SD_FILE_OPENED "Archivo abierto:"
  467. #define MSG_SD_SIZE " Tamaño:"
  468. #define MSG_SD_FILE_SELECTED "Archivo Seleccionado"
  469. #define MSG_SD_WRITE_TO_FILE "Escribiendo en el archivo: "
  470. #define MSG_SD_PRINTING_BYTE "SD imprimiendo el byte "
  471. #define MSG_SD_NOT_PRINTING "No se esta imprimiendo con SD"
  472. #define MSG_SD_ERR_WRITE_TO_FILE "Error al escribir en el archivo"
  473. #define MSG_SD_CANT_ENTER_SUBDIR "No se puede entrar en la carpeta:"
  474. #define MSG_STEPPER_TO_HIGH "Steprate demasiado alto : "
  475. #define MSG_ENDSTOPS_HIT "Se ha tocado el fin de carril: "
  476. #define MSG_ERR_COLD_EXTRUDE_STOP " extrusion fria evitada"
  477. #define MSG_ERR_LONG_EXTRUDE_STOP " extrusion demasiado larga evitada"
  478. #endif
  479. #endif // ifndef LANGUAGE_H
  480. =======
  481. #ifndef LANGUAGE_H
  482. #define LANGUAGE_H
  483. // Languages
  484. // 1 Custom (For you to add your own messages)
  485. // 2 English
  486. // 3 French (Waiting translation)
  487. // 4 German (Waiting translation)
  488. // 5 Spanish
  489. // 6 Etc
  490. #define LANGUAGE_CHOICE 1 // Pick your language from the list above
  491. #define PROTOCOL_VERSION "1.0"
  492. #if MOTHERBOARD == 7 || MOTHERBOARD == 71
  493. #define MACHINE_NAME "Ultimaker"
  494. #define FIRMWARE_URL "http://firmware.ultimaker.com"
  495. #else
  496. #define MACHINE_NAME "Mendel"
  497. #define FIRMWARE_URL "http://www.mendel-parts.com"
  498. #endif
  499. #define STRINGIFY_(n) #n
  500. #define STRINGIFY(n) STRINGIFY_(n)
  501. #if LANGUAGE_CHOICE == 1
  502. // LCD Menu Messages
  503. #define WELCOME_MSG MACHINE_NAME " Ready."
  504. #define MSG_SD_INSERTED "Card inserted"
  505. #define MSG_SD_REMOVED "Card removed"
  506. #define MSG_MAIN " Main \003"
  507. #define MSG_AUTOSTART " Autostart"
  508. #define MSG_DISABLE_STEPPERS " Disable Steppers"
  509. #define MSG_AUTO_HOME " Auto Home"
  510. #define MSG_SET_ORIGIN " Set Origin"
  511. #define MSG_COOLDOWN " Cooldown"
  512. #define MSG_EXTRUDE " Extrude"
  513. #define MSG_PREHEAT_PLA " Preheat PLA"
  514. #define MSG_PREHEAT_ABS " Preheat ABS"
  515. #define MSG_MOVE_AXIS " Move Axis \x7E"
  516. #define MSG_SPEED " Speed:"
  517. #define MSG_NOZZLE " \002Nozzle:"
  518. #define MSG_NOZZLE1 " \002Nozzle2:"
  519. #define MSG_NOZZLE2 " \002Nozzle3:"
  520. #define MSG_BED " \002Bed:"
  521. #define MSG_FAN_SPEED " Fan speed:"
  522. #define MSG_FLOW " Flow:"
  523. #define MSG_CONTROL " Control \003"
  524. #define MSG_MIN " \002 Min:"
  525. #define MSG_MAX " \002 Max:"
  526. #define MSG_FACTOR " \002 Fact:"
  527. #define MSG_AUTOTEMP " Autotemp:"
  528. #define MSG_ON "On "
  529. #define MSG_OFF "Off"
  530. #define MSG_PID_P " PID-P: "
  531. #define MSG_PID_I " PID-I: "
  532. #define MSG_PID_D " PID-D: "
  533. #define MSG_PID_C " PID-C: "
  534. #define MSG_ACC " Acc:"
  535. #define MSG_VXY_JERK " Vxy-jerk: "
  536. #define MSG_VMAX " Vmax "
  537. #define MSG_X "x:"
  538. #define MSG_Y "y:"
  539. #define MSG_Z "z:"
  540. #define MSG_E "e:"
  541. #define MSG_VMIN " Vmin:"
  542. #define MSG_VTRAV_MIN " VTrav min:"
  543. #define MSG_AMAX " Amax "
  544. #define MSG_A_RETRACT " A-retract:"
  545. #define MSG_XSTEPS " Xsteps/mm:"
  546. #define MSG_YSTEPS " Ysteps/mm:"
  547. #define MSG_ZSTEPS " Zsteps/mm:"
  548. #define MSG_ESTEPS " Esteps/mm:"
  549. #define MSG_MAIN_WIDE " Main \003"
  550. #define MSG_RECTRACT_WIDE " Rectract \x7E"
  551. #define MSG_TEMPERATURE_WIDE " Temperature \x7E"
  552. #define MSG_MOTION_WIDE " Motion \x7E"
  553. #define MSG_STORE_EPROM " Store memory"
  554. #define MSG_LOAD_EPROM " Load memory"
  555. #define MSG_RESTORE_FAILSAFE " Restore Failsafe"
  556. #define MSG_REFRESH "\004Refresh"
  557. #define MSG_WATCH " Watch \003"
  558. #define MSG_PREPARE " Prepare \x7E"
  559. #define MSG_PREPARE_ALT " Prepare \003"
  560. #define MSG_CONTROL_ARROW " Control \x7E"
  561. #define MSG_RETRACT_ARROW " Control \x7E"
  562. #define MSG_TUNE " Tune \x7E"
  563. #define MSG_STOP_PRINT " Stop Print \x7E"
  564. #define MSG_CARD_MENU " Card Menu \x7E"
  565. #define MSG_NO_CARD " No Card"
  566. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Something is wrong in the MenuStructure."
  567. #define MSG_DWELL "Sleep..."
  568. #define MSG_USERWAIT "Wait for user..."
  569. #define MSG_NO_MOVE "No move."
  570. #define MSG_PART_RELEASE "Partial Release"
  571. #define MSG_KILLED "KILLED. "
  572. #define MSG_STOPPED "STOPPED. "
  573. #define MSG_PREHEAT_PLA " Preheat PLA"
  574. #define MSG_PREHEAT_ABS " Preheat ABS"
  575. #define MSG_STEPPER_RELEASED "Released."
  576. #define MSG_CONTROL_RETRACT " Retract mm:"
  577. #define MSG_CONTROL_RETRACTF " Retract F:"
  578. #define MSG_CONTROL_RETRACT_ZLIFT " Hop mm:"
  579. #define MSG_CONTROL_RETRACT_RECOVER " UnRet +mm:"
  580. #define MSG_CONTROL_RETRACT_RECOVERF " UnRet F:"
  581. #define MSG_AUTORETRACT " AutoRetr.:"
  582. // Serial Console Messages
  583. #define MSG_Enqueing "enqueing \""
  584. #define MSG_POWERUP "PowerUp"
  585. #define MSG_EXTERNAL_RESET " External Reset"
  586. #define MSG_BROWNOUT_RESET " Brown out Reset"
  587. #define MSG_WATCHDOG_RESET " Watchdog Reset"
  588. #define MSG_SOFTWARE_RESET " Software Reset"
  589. #define MSG_MARLIN "Marlin "
  590. #define MSG_AUTHOR " | Author: "
  591. #define MSG_CONFIGURATION_VER " Last Updated: "
  592. #define MSG_FREE_MEMORY " Free Memory: "
  593. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  594. #define MSG_OK "ok"
  595. #define MSG_FILE_SAVED "Done saving file."
  596. #define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line:"
  597. #define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line:"
  598. #define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line:"
  599. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line:"
  600. #define MSG_FILE_PRINTED "Done printing file"
  601. #define MSG_BEGIN_FILE_LIST "Begin file list"
  602. #define MSG_END_FILE_LIST "End file list"
  603. #define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
  604. #define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
  605. #define MSG_ERR_NO_THERMISTORS "No thermistors - no temp"
  606. #define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
  607. #define MSG_HEATING "Heating..."
  608. #define MSG_HEATING_COMPLETE "Heating done."
  609. #define MSG_BED_HEATING "Bed Heating."
  610. #define MSG_BED_DONE "Bed done."
  611. #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) "\n"
  612. #define MSG_COUNT_X " Count X:"
  613. #define MSG_ERR_KILLED "Printer halted. kill() called !!"
  614. #define MSG_ERR_STOPPED "Printer stopped deu to errors. Fix the error and use M999 to restart!. (Temperature is reset. Set it before restarting)"
  615. #define MSG_RESEND "Resend:"
  616. #define MSG_UNKNOWN_COMMAND "Unknown command:\""
  617. #define MSG_ACTIVE_EXTRUDER "Active Extruder: "
  618. #define MSG_INVALID_EXTRUDER "Invalid extruder"
  619. #define MSG_X_MIN "x_min:"
  620. #define MSG_X_MAX "x_max:"
  621. #define MSG_Y_MIN "y_min:"
  622. #define MSG_Y_MAX "y_max:"
  623. #define MSG_Z_MIN "z_min:"
  624. #define MSG_Z_MAX "z_max:"
  625. #define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
  626. #define MSG_SD_INIT_FAIL "SD init fail"
  627. #define MSG_SD_VOL_INIT_FAIL "volume.init failed"
  628. #define MSG_SD_OPENROOT_FAIL "openRoot failed"
  629. #define MSG_SD_CARD_OK "SD card ok"
  630. #define MSG_SD_WORKDIR_FAIL "workDir open failed"
  631. #define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
  632. #define MSG_SD_FILE_OPENED "File opened:"
  633. #define MSG_SD_SIZE " Size:"
  634. #define MSG_SD_FILE_SELECTED "File selected"
  635. #define MSG_SD_WRITE_TO_FILE "Writing to file: "
  636. #define MSG_SD_PRINTING_BYTE "SD printing byte "
  637. #define MSG_SD_NOT_PRINTING "Not SD printing"
  638. #define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
  639. #define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir:"
  640. #define MSG_STEPPER_TO_HIGH "Steprate to high : "
  641. #define MSG_ENDSTOPS_HIT "endstops hit: "
  642. #define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
  643. #define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
  644. #endif
  645. #if LANGUAGE_CHOICE == 4
  646. // LCD Menu Messages
  647. #define WELCOME_MSG MACHINE_NAME " Ready."
  648. #define MSG_SD_INSERTED "Card inserted"
  649. #define MSG_SD_REMOVED "Card removed"
  650. #define MSG_MAIN " Main \003"
  651. #define MSG_AUTOSTART " Autostart"
  652. #define MSG_DISABLE_STEPPERS " Stepper abschalten"
  653. #define MSG_AUTO_HOME " Auto Heim"
  654. #define MSG_SET_ORIGIN " Position setzen"
  655. #define MSG_PREHEAT_PLA " Aufheizen PLA"
  656. #define MSG_PREHEAT_ABS " Aufheizen ABS"
  657. #define MSG_COOLDOWN " Abkuehlen"
  658. #define MSG_EXTRUDE " Extrude"
  659. #define MSG_PREHEAT_PLA " Preheat PLA"
  660. #define MSG_PREHEAT_ABS " Preheat ABS"
  661. #define MSG_MOVE_AXIS " Move Axis \x7E"
  662. #define MSG_MOVE_AXIS " Achsen verfahren \x7E"
  663. #define MSG_SPEED " Geschw:"
  664. #define MSG_NOZZLE " \002Duese:"
  665. #define MSG_NOZZLE1 " \002Duese2:"
  666. #define MSG_NOZZLE2 " \002Duese3:"
  667. #define MSG_BED " \002Bett:"
  668. #define MSG_FAN_SPEED " Luefter geschw.:"
  669. #define MSG_FLOW " Fluss:"
  670. #define MSG_CONTROL " Kontrolle \003"
  671. #define MSG_MIN " \002 Min:"
  672. #define MSG_MAX " \002 Max:"
  673. #define MSG_FACTOR " \002 Faktor:"
  674. #define MSG_AUTOTEMP " AutoTemp:"
  675. #define MSG_ON "Ein "
  676. #define MSG_OFF "Aus "
  677. #define MSG_PID_P " PID-P: "
  678. #define MSG_PID_I " PID-I: "
  679. #define MSG_PID_D " PID-D: "
  680. #define MSG_PID_C " PID-C: "
  681. #define MSG_ACC " Acc:"
  682. #define MSG_VXY_JERK " Vxy-jerk: "
  683. #define MSG_VMAX " Vmax "
  684. #define MSG_X "x:"
  685. #define MSG_Y "y:"
  686. #define MSG_Z "z:"
  687. #define MSG_E "e:"
  688. #define MSG_VMIN " Vmin:"
  689. #define MSG_VTRAV_MIN " VTrav min:"
  690. #define MSG_AMAX " Amax "
  691. #define MSG_A_RETRACT " A-retract:"
  692. #define MSG_XSTEPS " Xsteps/mm:"
  693. #define MSG_YSTEPS " Ysteps/mm:"
  694. #define MSG_ZSTEPS " Zsteps/mm:"
  695. #define MSG_ESTEPS " Esteps/mm:"
  696. #define MSG_MAIN_WIDE " Main \003"
  697. #define MSG_TEMPERATURE_WIDE " Temperatur \x7E"
  698. #define MSG_MOTION_WIDE " Motion \x7E"
  699. #define MSG_STORE_EPROM " EPROM speichern"
  700. #define MSG_LOAD_EPROM " EPROM laden"
  701. #define MSG_RESTORE_FAILSAFE " Standard Konfig."
  702. #define MSG_REFRESH "\004Refresh"
  703. #define MSG_WATCH " Beobachten \003"
  704. #define MSG_PREPARE " Prepare \x7E"
  705. #define MSG_PREPARE_ALT " Prepare \003"
  706. #define MSG_CONTROL_ARROW " Control \x7E"
  707. #define MSG_TUNE " Tune \x7E"
  708. #define MSG_STOP_PRINT " Druck stoppen \x7E"
  709. #define MSG_CARD_MENU " SDKarten Menue \x7E"
  710. #define MSG_NO_CARD " Keine SDKarte"
  711. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Fehler in der Menuestruktur."
  712. #define MSG_DWELL "DWELL..."
  713. #define MSG_NO_MOVE "No move."
  714. #define MSG_PART_RELEASE "Partial Release"
  715. #define MSG_KILLED "KILLED. "
  716. #define MSG_STOPPED "STOPPED. "
  717. #define MSG_PREHEAT_PLA " Preheat PLA"
  718. #define MSG_PREHEAT_ABS " Preheat ABS"
  719. #define MSG_STEPPER_RELEASED "Released."
  720. // Serial Console Messages
  721. #define MSG_Enqueing "enqueing \""
  722. #define MSG_POWERUP "PowerUp"
  723. #define MSG_EXTERNAL_RESET " External Reset"
  724. #define MSG_BROWNOUT_RESET " Brown out Reset"
  725. #define MSG_WATCHDOG_RESET " Watchdog Reset"
  726. #define MSG_SOFTWARE_RESET " Software Reset"
  727. #define MSG_MARLIN "Marlin: "
  728. #define MSG_AUTHOR " | Author: "
  729. #define MSG_CONFIGURATION_VER " Last Updated: "
  730. #define MSG_FREE_MEMORY " Free Memory: "
  731. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  732. #define MSG_OK "ok"
  733. #define MSG_FILE_SAVED "Done saving file."
  734. #define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line:"
  735. #define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line:"
  736. #define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line:"
  737. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line:"
  738. #define MSG_FILE_PRINTED "Done printing file"
  739. #define MSG_BEGIN_FILE_LIST "Begin file list"
  740. #define MSG_END_FILE_LIST "End file list"
  741. #define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
  742. #define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
  743. #define MSG_ERR_NO_THERMISTORS "No thermistors - no temp"
  744. #define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
  745. #define MSG_HEATING "Heating..."
  746. #define MSG_HEATING_COMPLETE "Heating done."
  747. #define MSG_BED_HEATING "Bed Heating."
  748. #define MSG_BED_DONE "Bed done."
  749. #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) "\n"
  750. #define MSG_COUNT_X " Count X:"
  751. #define MSG_ERR_KILLED "Printer halted. kill() called !!"
  752. #define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart!"
  753. #define MSG_RESEND "Resend:"
  754. #define MSG_UNKNOWN_COMMAND "Unknown command:\""
  755. #define MSG_ACTIVE_EXTRUDER "Active Extruder: "
  756. #define MSG_INVALID_EXTRUDER "Invalid extruder"
  757. #define MSG_X_MIN "x_min:"
  758. #define MSG_X_MAX "x_max:"
  759. #define MSG_Y_MIN "y_min:"
  760. #define MSG_Y_MAX "y_max:"
  761. #define MSG_Z_MIN "z_min:"
  762. #define MSG_Z_MAX "z_max:"
  763. #define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
  764. #define MSG_SD_INIT_FAIL "SD init fail"
  765. #define MSG_SD_VOL_INIT_FAIL "volume.init failed"
  766. #define MSG_SD_OPENROOT_FAIL "openRoot failed"
  767. #define MSG_SD_CARD_OK "SD card ok"
  768. #define MSG_SD_WORKDIR_FAIL "workDir open failed"
  769. #define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
  770. #define MSG_SD_FILE_OPENED "File opened:"
  771. #define MSG_SD_SIZE " Size:"
  772. #define MSG_SD_FILE_SELECTED "File selected"
  773. #define MSG_SD_WRITE_TO_FILE "Writing to file: "
  774. #define MSG_SD_PRINTING_BYTE "SD printing byte "
  775. #define MSG_SD_NOT_PRINTING "Not SD printing"
  776. #define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
  777. #define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir:"
  778. #define MSG_STEPPER_TO_HIGH "Steprate to high : "
  779. #define MSG_ENDSTOPS_HIT "endstops hit: "
  780. #define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
  781. #define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
  782. #endif
  783. #if LANGUAGE_CHOICE == 5
  784. // LCD Menu Messages
  785. #define WELCOME_MSG MACHINE_NAME " Lista."
  786. #define MSG_SD_INSERTED "Tarjeta SD Colocada"
  787. #define MSG_SD_REMOVED "Tarjeta SD Retirada"
  788. #define MSG_MAIN " Menu Principal \003"
  789. #define MSG_AUTOSTART " Autostart"
  790. #define MSG_DISABLE_STEPPERS " Apagar Motores"
  791. #define MSG_AUTO_HOME " Llevar Ejes al Cero"
  792. #define MSG_SET_ORIGIN " Establecer Cero"
  793. #define MSG_COOLDOWN " Enfriar"
  794. #define MSG_EXTRUDE " Extruir"
  795. #define MSG_PREHEAT_PLA " Precalentar PLA"
  796. #define MSG_PREHEAT_ABS " Precalentar ABS"
  797. #define MSG_MOVE_AXIS " Mover Ejes \x7E"
  798. #define MSG_SPEED " Velocidad:"
  799. #define MSG_NOZZLE " \002Nozzle:"
  800. #define MSG_NOZZLE1 " \002Nozzle2:"
  801. #define MSG_NOZZLE2 " \002Nozzle3:"
  802. #define MSG_BED " \002Base:"
  803. #define MSG_FAN_SPEED " Ventilador:"
  804. #define MSG_FLOW " Flujo:"
  805. #define MSG_CONTROL " Control \003"
  806. #define MSG_MIN " \002 Min:"
  807. #define MSG_MAX " \002 Max:"
  808. #define MSG_FACTOR " \002 Fact:"
  809. #define MSG_AUTOTEMP " Autotemp:"
  810. #define MSG_ON "On "
  811. #define MSG_OFF "Off"
  812. #define MSG_PID_P " PID-P: "
  813. #define MSG_PID_I " PID-I: "
  814. #define MSG_PID_D " PID-D: "
  815. #define MSG_PID_C " PID-C: "
  816. #define MSG_ACC " Acc:"
  817. #define MSG_VXY_JERK " Vxy-jerk: "
  818. #define MSG_VMAX " Vmax "
  819. #define MSG_X "x:"
  820. #define MSG_Y "y:"
  821. #define MSG_Z "z:"
  822. #define MSG_E "e:"
  823. #define MSG_VMIN " Vmin:"
  824. #define MSG_VTRAV_MIN " VTrav min:"
  825. #define MSG_AMAX " Amax "
  826. #define MSG_A_RETRACT " A-retrac.:"
  827. #define MSG_XSTEPS " Xpasos/mm:"
  828. #define MSG_YSTEPS " Ypasos/mm:"
  829. #define MSG_ZSTEPS " Zpasos/mm:"
  830. #define MSG_ESTEPS " Epasos/mm:"
  831. #define MSG_MAIN_WIDE " Menu Principal \003"
  832. #define MSG_RECTRACT_WIDE " Retraer \x7E"
  833. #define MSG_TEMPERATURE_WIDE " Temperatura \x7E"
  834. #define MSG_MOTION_WIDE " Movimiento \x7E"
  835. #define MSG_STORE_EPROM " Guardar Memoria"
  836. #define MSG_LOAD_EPROM " Cargar Memoria"
  837. #define MSG_RESTORE_FAILSAFE " Rest. de emergencia"
  838. #define MSG_REFRESH "\004Volver a cargar"
  839. #define MSG_WATCH " Monitorizar \003"
  840. #define MSG_PREPARE " Preparar \x7E"
  841. #define MSG_PREPARE_ALT " Preparar \003"
  842. #define MSG_CONTROL_ARROW " Control \x7E"
  843. #define MSG_RETRACT_ARROW " Control \x7E"
  844. #define MSG_TUNE " Ajustar \x7E"
  845. #define MSG_STOP_PRINT " Detener Impresion \x7E"
  846. #define MSG_CARD_MENU " Menu de SD \x7E"
  847. #define MSG_NO_CARD " No hay Tarjeta SD"
  848. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Hay un error en la estructura del menu"
  849. #define MSG_DWELL "Reposo..."
  850. #define MSG_USERWAIT "Esperando Ordenes..."
  851. #define MSG_NO_MOVE "Sin movimiento"
  852. #define MSG_PART_RELEASE "Desacople Parcial"
  853. #define MSG_KILLED "PARADA DE EMERGENCIA. "
  854. #define MSG_STOPPED "PARADA. "
  855. #define MSG_PREHEAT_PLA " Precalentar PLA"
  856. #define MSG_PREHEAT_ABS " Precalentar ABS"
  857. #define MSG_STEPPER_RELEASED "Desacoplada."
  858. #define MSG_CONTROL_RETRACT " Retraer mm:"
  859. #define MSG_CONTROL_RETRACTF " Retraer F:"
  860. #define MSG_CONTROL_RETRACT_ZLIFT " Levantar mm:"
  861. #define MSG_CONTROL_RETRACT_RECOVER " DesRet +mm:"
  862. #define MSG_CONTROL_RETRACT_RECOVERF " DesRet F:"
  863. #define MSG_AUTORETRACT " AutoRetr.:"
  864. // Serial Console Messages
  865. #define MSG_Enqueing "En cola \""
  866. #define MSG_POWERUP "PowerUp"
  867. #define MSG_EXTERNAL_RESET " Reset Externo"
  868. #define MSG_BROWNOUT_RESET " Reset por Voltaje Incorrecto"
  869. #define MSG_WATCHDOG_RESET " Reset por Bloqueo"
  870. #define MSG_SOFTWARE_RESET " Reset por Software"
  871. #define MSG_MARLIN "Marlin "
  872. #define MSG_AUTHOR " | Autor: "
  873. #define MSG_CONFIGURATION_VER " Ultima actualizacion: "
  874. #define MSG_FREE_MEMORY " Memoria libre: "
  875. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  876. #define MSG_OK "ok"
  877. #define MSG_FILE_SAVED "Guardado."
  878. #define MSG_ERR_LINE_NO "El Numero de Linea no es igual al Ultimo Numero de Linea+1, Ultima Linea:"
  879. #define MSG_ERR_CHECKSUM_MISMATCH "el checksum no coincide, Ultima Linea:"
  880. #define MSG_ERR_NO_CHECKSUM "No se pudo hallar el Checksum con el numero de linea, Ultima Linea:"
  881. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No se hallo el Numero de Linea con el Checksum, Ultima Linea:"
  882. #define MSG_FILE_PRINTED "Impresion terminada"
  883. #define MSG_BEGIN_FILE_LIST "Comienzo de la lista de archivos"
  884. #define MSG_END_FILE_LIST "Fin de la lista de archivos"
  885. #define MSG_M104_INVALID_EXTRUDER "M104 Extrusor Invalido "
  886. #define MSG_M105_INVALID_EXTRUDER "M105 Extrusor Invalido "
  887. #define MSG_ERR_NO_THERMISTORS "No hay termistores - no temp"
  888. #define MSG_M109_INVALID_EXTRUDER "M109 Extrusor Invalido "
  889. #define MSG_HEATING "Calentando..."
  890. #define MSG_HEATING_COMPLETE "Calentamiento Hecho."
  891. #define MSG_BED_HEATING "Calentando la base."
  892. #define MSG_BED_DONE "Base Caliente."
  893. #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) "\n"
  894. #define MSG_COUNT_X " Cuenta X:"
  895. #define MSG_ERR_KILLED "¡¡Impresora Parada con kill()!!"
  896. #define MSG_ERR_STOPPED "¡Impresora parada por errores. Arregle el error y use M999 Para reiniciar!. (La temperatura se reestablece. Ajustela antes de continuar)"
  897. #define MSG_RESEND "Reenviar:"
  898. #define MSG_UNKNOWN_COMMAND "Comando Desconocido:\""
  899. #define MSG_ACTIVE_EXTRUDER "Extrusor Activo: "
  900. #define MSG_INVALID_EXTRUDER "Extrusor Invalido"
  901. #define MSG_X_MIN "x_min:"
  902. #define MSG_X_MAX "x_max:"
  903. #define MSG_Y_MIN "y_min:"
  904. #define MSG_Y_MAX "y_max:"
  905. #define MSG_Z_MIN "z_min:"
  906. #define MSG_Z_MAX "z_max:"
  907. #define MSG_SD_CANT_OPEN_SUBDIR "No se pudo abrir la subcarpeta."
  908. #define MSG_SD_INIT_FAIL "Fallo al iniciar la SD"
  909. #define MSG_SD_VOL_INIT_FAIL "Fallo al montar el volumen"
  910. #define MSG_SD_OPENROOT_FAIL "Fallo al abrir la carpeta raiz"
  911. #define MSG_SD_CARD_OK "Tarjeta SD OK"
  912. #define MSG_SD_WORKDIR_FAIL "Fallo al abrir la carpeta de trabajo"
  913. #define MSG_SD_OPEN_FILE_FAIL "Error al abrir, Archivo: "
  914. #define MSG_SD_FILE_OPENED "Archivo abierto:"
  915. #define MSG_SD_SIZE " Tamaño:"
  916. #define MSG_SD_FILE_SELECTED "Archivo Seleccionado"
  917. #define MSG_SD_WRITE_TO_FILE "Escribiendo en el archivo: "
  918. #define MSG_SD_PRINTING_BYTE "SD imprimiendo el byte "
  919. #define MSG_SD_NOT_PRINTING "No se esta imprimiendo con SD"
  920. #define MSG_SD_ERR_WRITE_TO_FILE "Error al escribir en el archivo"
  921. #define MSG_SD_CANT_ENTER_SUBDIR "No se puede entrar en la carpeta:"
  922. #define MSG_STEPPER_TO_HIGH "Steprate demasiado alto : "
  923. #define MSG_ENDSTOPS_HIT "Se ha tocado el fin de carril: "
  924. #define MSG_ERR_COLD_EXTRUDE_STOP " extrusion fria evitada"
  925. #define MSG_ERR_LONG_EXTRUDE_STOP " extrusion demasiado larga evitada"
  926. #endif
  927. #endif // ifndef LANGUAGE_H
  928. >>>>>>> 6cd150842f6741b75cd7b5911805f307d1dbc2eb