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.

language.h 66KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  1. #ifndef LANGUAGE_H
  2. #define LANGUAGE_H
  3. // NOTE: IF YOU CHANGE THIS FILE / MERGE THIS FILE WITH CHANGES
  4. //
  5. // ==> ALWAYS TRY TO COMPILE MARLIN WITH/WITHOUT "ULTIPANEL" / "ULTRALCD" / "SDSUPPORT" #define IN "Configuration.h"
  6. // ==> ALSO TRY ALL AVAILABLE "LANGUAGE_CHOICE" OPTIONS
  7. // Languages
  8. // 1 English
  9. // 2 Polish
  10. // 3 French
  11. // 4 German
  12. // 5 Spanish
  13. // 6 Russian
  14. // 7 Italian
  15. // 8 Portuguese
  16. // 9 Finnish
  17. // 10 Aragonese
  18. // 11 Dutch
  19. // 12 Catalan
  20. // 13 Basque-Euskera
  21. #ifndef LANGUAGE_CHOICE
  22. #define LANGUAGE_CHOICE 1 // Pick your language from the list above
  23. #endif
  24. #define PROTOCOL_VERSION "1.0"
  25. #if MOTHERBOARD == 7 || MOTHERBOARD == 71 || MOTHERBOARD == 72
  26. #define MACHINE_NAME "Ultimaker"
  27. #define FIRMWARE_URL "http://firmware.ultimaker.com"
  28. #elif MOTHERBOARD == 80
  29. #define MACHINE_NAME "Rumba"
  30. #define FIRMWARE_URL "https://github.com/ErikZalm/Marlin/"
  31. #elif MOTHERBOARD == 77
  32. #define MACHINE_NAME "3Drag"
  33. #define FIRMWARE_URL "http://3dprint.elettronicain.it/"
  34. #elif MOTHERBOARD == 88
  35. #define MACHINE_NAME "Makibox"
  36. #define FIRMWARE_URL "https://github.com/ErikZalm/Marlin/"
  37. #else
  38. #ifdef CUSTOM_MENDEL_NAME
  39. #define MACHINE_NAME CUSTOM_MENDEL_NAME
  40. #else
  41. #define MACHINE_NAME "Mendel"
  42. #endif
  43. // Default firmware set to Mendel
  44. #define FIRMWARE_URL "https://github.com/ErikZalm/Marlin/"
  45. #endif
  46. #ifndef MACHINE_UUID
  47. #define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
  48. #endif
  49. #define STRINGIFY_(n) #n
  50. #define STRINGIFY(n) STRINGIFY_(n)
  51. // Common LCD messages
  52. /* nothing here as of yet */
  53. // Common serial messages
  54. #define MSG_MARLIN "Marlin"
  55. // Serial Console Messages (do not translate those!)
  56. #define MSG_Enqueing "enqueing \""
  57. #define MSG_POWERUP "PowerUp"
  58. #define MSG_EXTERNAL_RESET " External Reset"
  59. #define MSG_BROWNOUT_RESET " Brown out Reset"
  60. #define MSG_WATCHDOG_RESET " Watchdog Reset"
  61. #define MSG_SOFTWARE_RESET " Software Reset"
  62. #define MSG_AUTHOR " | Author: "
  63. #define MSG_CONFIGURATION_VER " Last Updated: "
  64. #define MSG_FREE_MEMORY " Free Memory: "
  65. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  66. #define MSG_OK "ok"
  67. #define MSG_FILE_SAVED "Done saving file."
  68. #define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line: "
  69. #define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line: "
  70. #define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line: "
  71. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line: "
  72. #define MSG_FILE_PRINTED "Done printing file"
  73. #define MSG_BEGIN_FILE_LIST "Begin file list"
  74. #define MSG_END_FILE_LIST "End file list"
  75. #define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
  76. #define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
  77. #define MSG_M200_INVALID_EXTRUDER "M200 Invalid extruder "
  78. #define MSG_M218_INVALID_EXTRUDER "M218 Invalid extruder "
  79. #define MSG_M221_INVALID_EXTRUDER "M221 Invalid extruder "
  80. #define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature"
  81. #define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
  82. #define MSG_HEATING "Heating..."
  83. #define MSG_HEATING_COMPLETE "Heating done."
  84. #define MSG_BED_HEATING "Bed Heating."
  85. #define MSG_BED_DONE "Bed done."
  86. #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"
  87. #define MSG_COUNT_X " Count X: "
  88. #define MSG_ERR_KILLED "Printer halted. kill() called!"
  89. #define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)"
  90. #define MSG_RESEND "Resend: "
  91. #define MSG_UNKNOWN_COMMAND "Unknown command: \""
  92. #define MSG_ACTIVE_EXTRUDER "Active Extruder: "
  93. #define MSG_INVALID_EXTRUDER "Invalid extruder"
  94. #define MSG_X_MIN "x_min: "
  95. #define MSG_X_MAX "x_max: "
  96. #define MSG_Y_MIN "y_min: "
  97. #define MSG_Y_MAX "y_max: "
  98. #define MSG_Z_MIN "z_min: "
  99. #define MSG_Z_MAX "z_max: "
  100. #define MSG_M119_REPORT "Reporting endstop status"
  101. #define MSG_ENDSTOP_HIT "TRIGGERED"
  102. #define MSG_ENDSTOP_OPEN "open"
  103. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  104. #define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
  105. #define MSG_SD_INIT_FAIL "SD init fail"
  106. #define MSG_SD_VOL_INIT_FAIL "volume.init failed"
  107. #define MSG_SD_OPENROOT_FAIL "openRoot failed"
  108. #define MSG_SD_CARD_OK "SD card ok"
  109. #define MSG_SD_WORKDIR_FAIL "workDir open failed"
  110. #define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
  111. #define MSG_SD_FILE_OPENED "File opened: "
  112. #define MSG_SD_SIZE " Size: "
  113. #define MSG_SD_FILE_SELECTED "File selected"
  114. #define MSG_SD_WRITE_TO_FILE "Writing to file: "
  115. #define MSG_SD_PRINTING_BYTE "SD printing byte "
  116. #define MSG_SD_NOT_PRINTING "Not SD printing"
  117. #define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
  118. #define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir: "
  119. #define MSG_STEPPER_TOO_HIGH "Steprate too high: "
  120. #define MSG_ENDSTOPS_HIT "endstops hit: "
  121. #define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
  122. #define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
  123. #define MSG_BABYSTEPPING_X "Babystepping X"
  124. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  125. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  126. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
  127. #if LANGUAGE_CHOICE == 1
  128. // LCD Menu Messages
  129. // Please note these are limited to 17 characters!
  130. #define WELCOME_MSG MACHINE_NAME " ready."
  131. #define MSG_SD_INSERTED "Card inserted"
  132. #define MSG_SD_REMOVED "Card removed"
  133. #define MSG_MAIN "Main"
  134. #define MSG_AUTOSTART "Autostart"
  135. #define MSG_DISABLE_STEPPERS "Disable steppers"
  136. #define MSG_AUTO_HOME "Auto home"
  137. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  138. #define MSG_SET_ORIGIN "Set origin"
  139. #define MSG_PREHEAT_PLA "Preheat PLA"
  140. #define MSG_PREHEAT_PLA0 "Preheat PLA 1"
  141. #define MSG_PREHEAT_PLA1 "Preheat PLA 2"
  142. #define MSG_PREHEAT_PLA2 "Preheat PLA 3"
  143. #define MSG_PREHEAT_PLA012 "Preheat PLA All"
  144. #define MSG_PREHEAT_PLA_BEDONLY "Preheat PLA Bed"
  145. #define MSG_PREHEAT_PLA_SETTINGS "Preheat PLA conf"
  146. #define MSG_PREHEAT_ABS "Preheat ABS"
  147. #define MSG_PREHEAT_ABS0 "Preheat ABS 1"
  148. #define MSG_PREHEAT_ABS1 "Preheat ABS 2"
  149. #define MSG_PREHEAT_ABS2 "Preheat ABS 3"
  150. #define MSG_PREHEAT_ABS012 "Preheat ABS All"
  151. #define MSG_PREHEAT_ABS_BEDONLY "Preheat ABS Bed"
  152. #define MSG_PREHEAT_ABS_SETTINGS "Preheat ABS conf"
  153. #define MSG_COOLDOWN "Cooldown"
  154. #define MSG_SWITCH_PS_ON "Switch power on"
  155. #define MSG_SWITCH_PS_OFF "Switch power off"
  156. #define MSG_EXTRUDE "Extrude"
  157. #define MSG_RETRACT "Retract"
  158. #define MSG_MOVE_AXIS "Move axis"
  159. #define MSG_MOVE_X "Move X"
  160. #define MSG_MOVE_Y "Move Y"
  161. #define MSG_MOVE_Z "Move Z"
  162. #define MSG_MOVE_E "Extruder"
  163. #define MSG_MOVE_E1 "Extruder2"
  164. #define MSG_MOVE_E2 "Extruder3"
  165. #define MSG_MOVE_01MM "Move 0.1mm"
  166. #define MSG_MOVE_1MM "Move 1mm"
  167. #define MSG_MOVE_10MM "Move 10mm"
  168. #define MSG_SPEED "Speed"
  169. #define MSG_NOZZLE "Nozzle"
  170. #define MSG_NOZZLE1 "Nozzle2"
  171. #define MSG_NOZZLE2 "Nozzle3"
  172. #define MSG_BED "Bed"
  173. #define MSG_FAN_SPEED "Fan speed"
  174. #define MSG_FLOW "Flow"
  175. #define MSG_FLOW0 "Flow 0"
  176. #define MSG_FLOW1 "Flow 1"
  177. #define MSG_FLOW2 "Flow 2"
  178. #define MSG_CONTROL "Control"
  179. #define MSG_MIN " \002 Min"
  180. #define MSG_MAX " \002 Max"
  181. #define MSG_FACTOR " \002 Fact"
  182. #define MSG_AUTOTEMP "Autotemp"
  183. #define MSG_ON "On "
  184. #define MSG_OFF "Off"
  185. #define MSG_PID_P "PID-P"
  186. #define MSG_PID_I "PID-I"
  187. #define MSG_PID_D "PID-D"
  188. #define MSG_PID_C "PID-C"
  189. #define MSG_ACC "Accel"
  190. #define MSG_VXY_JERK "Vxy-jerk"
  191. #define MSG_VZ_JERK "Vz-jerk"
  192. #define MSG_VE_JERK "Ve-jerk"
  193. #define MSG_VMAX "Vmax "
  194. #define MSG_X "x"
  195. #define MSG_Y "y"
  196. #define MSG_Z "z"
  197. #define MSG_E "e"
  198. #define MSG_VMIN "Vmin"
  199. #define MSG_VTRAV_MIN "VTrav min"
  200. #define MSG_AMAX "Amax "
  201. #define MSG_A_RETRACT "A-retract"
  202. #define MSG_XSTEPS "Xsteps/mm"
  203. #define MSG_YSTEPS "Ysteps/mm"
  204. #define MSG_ZSTEPS "Zsteps/mm"
  205. #define MSG_ESTEPS "Esteps/mm"
  206. #define MSG_RECTRACT "Rectract"
  207. #define MSG_TEMPERATURE "Temperature"
  208. #define MSG_MOTION "Motion"
  209. #define MSG_CONTRAST "LCD contrast"
  210. #define MSG_STORE_EPROM "Store memory"
  211. #define MSG_LOAD_EPROM "Load memory"
  212. #define MSG_RESTORE_FAILSAFE "Restore failsafe"
  213. #define MSG_REFRESH "Refresh"
  214. #define MSG_WATCH "Info screen"
  215. #define MSG_PREPARE "Prepare"
  216. #define MSG_TUNE "Tune"
  217. #define MSG_PAUSE_PRINT "Pause print"
  218. #define MSG_RESUME_PRINT "Resume print"
  219. #define MSG_STOP_PRINT "Stop print"
  220. #define MSG_CARD_MENU "Print from SD"
  221. #define MSG_NO_CARD "No SD card"
  222. #define MSG_DWELL "Sleep..."
  223. #define MSG_USERWAIT "Wait for user..."
  224. #define MSG_RESUMING "Resuming print"
  225. #define MSG_PRINT_ABORTED "Print aborted"
  226. #define MSG_NO_MOVE "No move."
  227. #define MSG_KILLED "KILLED. "
  228. #define MSG_STOPPED "STOPPED. "
  229. #define MSG_CONTROL_RETRACT "Retract mm"
  230. #define MSG_CONTROL_RETRACT_SWAP "Swap Re.mm"
  231. #define MSG_CONTROL_RETRACTF "Retract V"
  232. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  233. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  234. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "S UnRet+mm"
  235. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet V"
  236. #define MSG_AUTORETRACT "AutoRetr."
  237. #define MSG_FILAMENTCHANGE "Change filament"
  238. #define MSG_INIT_SDCARD "Init. SD card"
  239. #define MSG_CNG_SDCARD "Change SD card"
  240. #define MSG_ZPROBE_OUT "Z probe out. bed"
  241. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  242. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  243. #define MSG_BABYSTEP_X "Babystep X"
  244. #define MSG_BABYSTEP_Y "Babystep Y"
  245. #define MSG_BABYSTEP_Z "Babystep Z"
  246. #define MSG_ENDSTOP_ABORT "Endstop abort"
  247. #endif
  248. #if LANGUAGE_CHOICE == 2
  249. // LCD Menu Messages
  250. // Please note these are limited to 17 characters!
  251. #define WELCOME_MSG MACHINE_NAME " gotowy."
  252. #define MSG_SD_INSERTED "Karta wlozona"
  253. #define MSG_SD_REMOVED "Karta usunieta"
  254. #define MSG_MAIN "Menu glowne"
  255. #define MSG_AUTOSTART "Autostart"
  256. #define MSG_DISABLE_STEPPERS "Wylacz silniki"
  257. #define MSG_AUTO_HOME "Auto. poz. zerowa"
  258. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  259. #define MSG_SET_ORIGIN "Ustaw punkt zero"
  260. #define MSG_PREHEAT_PLA "Rozgrzej PLA"
  261. #define MSG_PREHEAT_PLA0 "Rozgrzej PLA 1"
  262. #define MSG_PREHEAT_PLA1 "Rozgrzej PLA 2"
  263. #define MSG_PREHEAT_PLA2 "Rozgrzej PLA 3"
  264. #define MSG_PREHEAT_PLA012 "Roz. PLA Wszystko"
  265. #define MSG_PREHEAT_PLA_BEDONLY "Rozgrzej PLA Loze"
  266. #define MSG_PREHEAT_PLA_SETTINGS "Ustaw. rozg. PLA"
  267. #define MSG_PREHEAT_ABS "Rozgrzej ABS"
  268. #define MSG_PREHEAT_ABS0 "Rozgrzej ABS 1"
  269. #define MSG_PREHEAT_ABS1 "Rozgrzej ABS 2"
  270. #define MSG_PREHEAT_ABS2 "Rozgrzej ABS 3"
  271. #define MSG_PREHEAT_ABS012 "Roz. ABS Wszystko"
  272. #define MSG_PREHEAT_ABS_BEDONLY "Rozgrzej ABS Loze"
  273. #define MSG_PREHEAT_ABS_SETTINGS "Ustaw. rozg. ABS"
  274. #define MSG_COOLDOWN "Chlodzenie"
  275. #define MSG_SWITCH_PS_ON "Wlacz zasilacz"
  276. #define MSG_SWITCH_PS_OFF "Wylacz zasilacz"
  277. #define MSG_EXTRUDE "Ekstruzja"
  278. #define MSG_RETRACT "Cofanie"
  279. #define MSG_MOVE_AXIS "Ruch osi"
  280. #define MSG_MOVE_X "Przesun w X"
  281. #define MSG_MOVE_Y "Przesun w Y"
  282. #define MSG_MOVE_Z "Przesun w Z"
  283. #define MSG_MOVE_E "Ekstruzja (os E)"
  284. #define MSG_MOVE_E1 "Extruder2"
  285. #define MSG_MOVE_E2 "Extruder3"
  286. #define MSG_MOVE_01MM "Przesuwaj co .1mm"
  287. #define MSG_MOVE_1MM "Przesuwaj co 1mm"
  288. #define MSG_MOVE_10MM "Przesuwaj co 10mm"
  289. #define MSG_SPEED "Predkosc"
  290. #define MSG_NOZZLE "Dysza"
  291. #define MSG_NOZZLE1 "Dysza 2"
  292. #define MSG_NOZZLE2 "Dysza 3"
  293. #define MSG_BED "Loze"
  294. #define MSG_FAN_SPEED "Obroty wiatraka"
  295. #define MSG_FLOW "Przeplyw"
  296. #define MSG_FLOW0 "Przeplyw 0"
  297. #define MSG_FLOW1 "Przeplyw 1"
  298. #define MSG_FLOW2 "Przeplyw 2"
  299. #define MSG_CONTROL "Kontrola"
  300. #define MSG_MIN " \002 Min"
  301. #define MSG_MAX " \002 Max"
  302. #define MSG_FACTOR " \002 Mnoznik"
  303. #define MSG_AUTOTEMP "Auto. temperatura"
  304. #define MSG_ON "Wl. "
  305. #define MSG_OFF "Wyl."
  306. #define MSG_PID_P "PID-P"
  307. #define MSG_PID_I "PID-I"
  308. #define MSG_PID_D "PID-D"
  309. #define MSG_PID_C "PID-C"
  310. #define MSG_ACC "Przyspieszenie"
  311. #define MSG_VXY_JERK "Zryw Vxy"
  312. #define MSG_VZ_JERK "Zryw Vz"
  313. #define MSG_VE_JERK "Zryw Ve"
  314. #define MSG_VMAX "Vmax"
  315. #define MSG_X "x"
  316. #define MSG_Y "y"
  317. #define MSG_Z "z"
  318. #define MSG_E "e"
  319. #define MSG_VMIN "Vmin"
  320. #define MSG_VTRAV_MIN "Vskok min"
  321. #define MSG_AMAX "Amax"
  322. #define MSG_A_RETRACT "A-wycofanie"
  323. #define MSG_XSTEPS "krokiX/mm"
  324. #define MSG_YSTEPS "krokiY/mm"
  325. #define MSG_ZSTEPS "krokiZ/mm"
  326. #define MSG_ESTEPS "krokiE/mm"
  327. #define MSG_RECTRACT "Wycofanie"
  328. #define MSG_TEMPERATURE "Temperatura"
  329. #define MSG_MOTION "Ruch"
  330. #define MSG_CONTRAST "Kontrast LCD"
  331. #define MSG_STORE_EPROM "Zapisz w pamieci"
  332. #define MSG_LOAD_EPROM "Wczytaj z pamieci"
  333. #define MSG_RESTORE_FAILSAFE "Ustaw. fabryczne"
  334. #define MSG_REFRESH "\004Odswiez"
  335. #define MSG_WATCH "Ekran glowny"
  336. #define MSG_PREPARE "Przygotuj"
  337. #define MSG_CONTROL "Ustawienia"
  338. #define MSG_TUNE "Strojenie"
  339. #define MSG_PAUSE_PRINT "Pauza"
  340. #define MSG_RESUME_PRINT "Wznowienie"
  341. #define MSG_STOP_PRINT "Stop"
  342. #define MSG_CARD_MENU "Menu karty SD"
  343. #define MSG_NO_CARD "Brak karty"
  344. #define MSG_DWELL "Uspij..."
  345. #define MSG_USERWAIT "Oczekiwanie..."
  346. #define MSG_RESUMING "Wznawianie druku"
  347. #define MSG_PRINT_ABORTED "Print aborted"
  348. #define MSG_NO_MOVE "Brak ruchu"
  349. #define MSG_KILLED "Ubity. "
  350. #define MSG_STOPPED "Zatrzymany. "
  351. #define MSG_STEPPER_RELEASED "Zwolniony."
  352. #define MSG_CONTROL_RETRACT "Wycofaj mm"
  353. #define MSG_CONTROL_RETRACT_SWAP "Z Wycof. mm"
  354. #define MSG_CONTROL_RETRACTF "Wycofaj V"
  355. #define MSG_CONTROL_RETRACT_ZLIFT "Skok Z mm:"
  356. #define MSG_CONTROL_RETRACT_RECOVER "Cof. wycof. +mm"
  357. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Z Cof. wyc. +mm"
  358. #define MSG_CONTROL_RETRACT_RECOVERF "Cof. wycof. V"
  359. #define MSG_AUTORETRACT "Auto. wycofanie"
  360. #define MSG_FILAMENTCHANGE "Zmien filament"
  361. #define MSG_INIT_SDCARD "Inicjal. karty SD"
  362. #define MSG_CNG_SDCARD "Zmiana karty SD"
  363. #define MSG_ZPROBE_OUT "Sonda Z za lozem"
  364. #define MSG_POSITION_UNKNOWN "Wroc w XY przed Z"
  365. #define MSG_ZPROBE_ZOFFSET "Offset Z"
  366. #define MSG_BABYSTEP_X "Babystep X"
  367. #define MSG_BABYSTEP_Y "Babystep Y"
  368. #define MSG_BABYSTEP_Z "Babystep Z"
  369. #define MSG_ENDSTOP_ABORT "Blad wyl. kranc."
  370. #define MSG_CONTRAST "Kontrast"
  371. #endif
  372. #if LANGUAGE_CHOICE == 3
  373. // LCD Menu Messages
  374. // Please note these are limited to 17 characters!
  375. #define WELCOME_MSG MACHINE_NAME " prete."
  376. #define MSG_SD_INSERTED "Carte inseree"
  377. #define MSG_SD_REMOVED "Carte retiree"
  378. #define MSG_MAIN "Menu principal"
  379. #define MSG_AUTOSTART "Demarrage auto"
  380. #define MSG_DISABLE_STEPPERS "Arreter moteurs"
  381. #define MSG_AUTO_HOME "Home auto."
  382. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  383. #define MSG_SET_ORIGIN "Regler origine"
  384. #define MSG_PREHEAT_PLA " Prechauffage PLA"
  385. #define MSG_PREHEAT_PLA0 "Prechauff. PLA 1"
  386. #define MSG_PREHEAT_PLA1 "Prechauff. PLA 2"
  387. #define MSG_PREHEAT_PLA2 "Prechauff. PLA 3"
  388. #define MSG_PREHEAT_PLA012 "Prech. PLA Tout"
  389. #define MSG_PREHEAT_PLA_BEDONLY "Prech. PLA Plateau"
  390. #define MSG_PREHEAT_PLA_SETTINGS "Regl. prech. PLA"
  391. #define MSG_PREHEAT_ABS "Prechauffage ABS"
  392. #define MSG_PREHEAT_ABS0 "Prechauff. ABS 1"
  393. #define MSG_PREHEAT_ABS1 "Prechauff. ABS 2"
  394. #define MSG_PREHEAT_ABS2 "Prechauff. ABS 3"
  395. #define MSG_PREHEAT_ABS012 "Prech. ABS Tout"
  396. #define MSG_PREHEAT_ABS_BEDONLY "Prech. ABS Plateau"
  397. #define MSG_PREHEAT_ABS_SETTINGS "Regl. prech. ABS"
  398. #define MSG_COOLDOWN "Refroidir"
  399. #define MSG_SWITCH_PS_ON "Allumer alim."
  400. #define MSG_SWITCH_PS_OFF "Eteindre alim."
  401. #define MSG_EXTRUDE "Extrusion"
  402. #define MSG_RETRACT "Retraction"
  403. #define MSG_PREHEAT_PLA "Prechauffage PLA"
  404. #define MSG_PREHEAT_ABS "Prechauffage ABS"
  405. #define MSG_MOVE_AXIS "Deplacer un axe"
  406. #define MSG_MOVE_X "Move X"
  407. #define MSG_MOVE_Y "Move Y"
  408. #define MSG_MOVE_Z "Move Z"
  409. #define MSG_MOVE_E "Extruder"
  410. #define MSG_MOVE_E1 "Extruder2"
  411. #define MSG_MOVE_E2 "Extruder3"
  412. #define MSG_MOVE_01MM "Move 0.1mm"
  413. #define MSG_MOVE_1MM "Move 1mm"
  414. #define MSG_MOVE_10MM "Move 10mm"
  415. #define MSG_SPEED " Vitesse"
  416. #define MSG_NOZZLE "Buse"
  417. #define MSG_NOZZLE1 "Buse2"
  418. #define MSG_NOZZLE2 "Buse3"
  419. #define MSG_BED "Plateau"
  420. #define MSG_FAN_SPEED "Vite. ventilateur"
  421. #define MSG_FLOW "Flux"
  422. #define MSG_FLOW0 "Flux 0"
  423. #define MSG_FLOW1 "Flux 1"
  424. #define MSG_FLOW2 "Flux 2"
  425. #define MSG_CONTROL "Controler"
  426. #define MSG_MIN " \002 Min"
  427. #define MSG_MAX " \002 Max"
  428. #define MSG_FACTOR " \002 Facteur"
  429. #define MSG_AUTOTEMP "Temp. Auto."
  430. #define MSG_ON "Marche "
  431. #define MSG_OFF "Arret"
  432. #define MSG_PID_P "PID-P"
  433. #define MSG_PID_I "PID-I"
  434. #define MSG_PID_D "PID-D"
  435. #define MSG_PID_C "PID-C"
  436. #define MSG_ACC "Accel"
  437. #define MSG_VXY_JERK "Vxy-jerk"
  438. #define MSG_VZ_JERK "Vz-jerk"
  439. #define MSG_VE_JERK "Ve-jerk"
  440. #define MSG_VMAX "Vmax"
  441. #define MSG_X "x"
  442. #define MSG_Y "y"
  443. #define MSG_Z "z"
  444. #define MSG_E "e"
  445. #define MSG_VMIN "Vmin"
  446. #define MSG_VTRAV_MIN "Vdepl min"
  447. #define MSG_AMAX "Amax "
  448. #define MSG_A_RETRACT "A-retract"
  449. #define MSG_XSTEPS "Xpas/mm"
  450. #define MSG_YSTEPS "Ypas/mm"
  451. #define MSG_ZSTEPS "Zpas/mm"
  452. #define MSG_ESTEPS "Epas/mm"
  453. #define MSG_TEMPERATURE "Temperature"
  454. #define MSG_MOTION "Mouvement"
  455. #define MSG_CONTRAST "Contraste LCD"
  456. #define MSG_STORE_EPROM "Sauver config"
  457. #define MSG_LOAD_EPROM "Lire config"
  458. #define MSG_RESTORE_FAILSAFE "Restaurer defauts"
  459. #define MSG_REFRESH "Actualiser"
  460. #define MSG_WATCH "Surveiller"
  461. #define MSG_PREPARE "Preparer"
  462. #define MSG_TUNE "Regler"
  463. #define MSG_PAUSE_PRINT "Interrompre impr."
  464. #define MSG_RESUME_PRINT "Reprendre impr."
  465. #define MSG_STOP_PRINT "Arreter impr."
  466. #define MSG_CARD_MENU "Impr. depuis SD"
  467. #define MSG_NO_CARD "Pas de carte"
  468. #define MSG_DWELL "Repos..."
  469. #define MSG_USERWAIT "Atten. de l'util."
  470. #define MSG_RESUMING "Repri. de l'impr."
  471. #define MSG_PRINT_ABORTED "Print aborted"
  472. #define MSG_NO_MOVE "Aucun mouvement."
  473. #define MSG_KILLED "MORT."
  474. #define MSG_STOPPED "STOPPE."
  475. #define MSG_STEPPER_RELEASED "RELACHE."
  476. #define MSG_CONTROL_RETRACT "Retraction mm"
  477. #define MSG_CONTROL_RETRACT_SWAP "Ech. Retr. mm"
  478. #define MSG_CONTROL_RETRACTF "Retraction V"
  479. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  480. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  481. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Ech. UnRet +mm"
  482. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet V"
  483. #define MSG_AUTORETRACT "Retract. Auto."
  484. #define MSG_FILAMENTCHANGE "Changer filament"
  485. #define MSG_INIT_SDCARD "Init. la carte SD"
  486. #define MSG_CNG_SDCARD "Changer de carte"
  487. #define MSG_ZPROBE_OUT "Z sonde exte. lit"
  488. #define MSG_POSITION_UNKNOWN "Rev. dans XY av.Z"
  489. #define MSG_ZPROBE_ZOFFSET "Offset Z"
  490. #define MSG_BABYSTEP_X "Babystep X"
  491. #define MSG_BABYSTEP_Y "Babystep Y"
  492. #define MSG_BABYSTEP_Z "Babystep Z"
  493. #define MSG_ENDSTOP_ABORT "Butee abandon"
  494. #define MSG_CONTRAST "Contrast"
  495. #endif
  496. #if LANGUAGE_CHOICE == 4
  497. // LCD Menu Messages
  498. // Please note these are limited to 17 characters!
  499. #define WELCOME_MSG MACHINE_NAME " Bereit."
  500. #define MSG_SD_INSERTED "SDKarte erkannt"
  501. #define MSG_SD_REMOVED "SDKarte entfernt"
  502. #define MSG_MAIN "Hauptmenü"
  503. #define MSG_AUTOSTART "Autostart"
  504. #define MSG_DISABLE_STEPPERS "Stepper abschalt."
  505. #define MSG_AUTO_HOME "Auto Nullpunkt"
  506. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  507. #define MSG_SET_ORIGIN "Setze Nullpunkt"
  508. #define MSG_PREHEAT_PLA "Vorwärmen PLA"
  509. #define MSG_PREHEAT_PLA0 "Vorwärmen PLA 1"
  510. #define MSG_PREHEAT_PLA1 "Vorwärmen PLA 2"
  511. #define MSG_PREHEAT_PLA2 "Vorwärmen PLA 3"
  512. #define MSG_PREHEAT_PLA012 "Vorw. PLA Alle"
  513. #define MSG_PREHEAT_PLA_BEDONLY "Vorw. PLA Bett"
  514. #define MSG_PREHEAT_PLA_SETTINGS "Vorwärm. PLA Ein."
  515. #define MSG_PREHEAT_ABS "Vorwärmen ABS"
  516. #define MSG_PREHEAT_ABS0 "Vorwärmen ABS 1"
  517. #define MSG_PREHEAT_ABS1 "Vorwärmen ABS 2"
  518. #define MSG_PREHEAT_ABS2 "Vorwärmen ABS 3"
  519. #define MSG_PREHEAT_ABS012 "Vorw. ABS Alle"
  520. #define MSG_PREHEAT_ABS_BEDONLY "Vorw. ABS Bett"
  521. #define MSG_PREHEAT_ABS_SETTINGS "Vorwärm. ABS Ein."
  522. #define MSG_COOLDOWN "Abkühlen"
  523. #define MSG_SWITCH_PS_ON "Switch Power On"
  524. #define MSG_SWITCH_PS_OFF "Switch Power Off"
  525. #define MSG_EXTRUDE "Extrude"
  526. #define MSG_RETRACT "Retract"
  527. #define MSG_MOVE_AXIS "Achsen bewegen"
  528. #define MSG_MOVE_X "X bewegen"
  529. #define MSG_MOVE_Y "Y bewegen"
  530. #define MSG_MOVE_Z "Z bewegen"
  531. #define MSG_MOVE_E "Extruder"
  532. #define MSG_MOVE_E1 "Extruder2"
  533. #define MSG_MOVE_E2 "Extruder3"
  534. #define MSG_MOVE_01MM "0.1mm bewegen"
  535. #define MSG_MOVE_1MM "1mm bewegen"
  536. #define MSG_MOVE_10MM "10mm bewegen"
  537. #define MSG_SPEED "Geschw"
  538. #define MSG_NOZZLE "Düse"
  539. #define MSG_NOZZLE1 "Düse2"
  540. #define MSG_NOZZLE2 "Düse3"
  541. #define MSG_BED "Bett"
  542. #define MSG_FAN_SPEED "Lüftergeschw."
  543. #define MSG_FLOW "Fluss"
  544. #define MSG_FLOW0 "Fluss 0"
  545. #define MSG_FLOW1 "Fluss 1"
  546. #define MSG_FLOW2 "Fluss 2"
  547. #define MSG_CONTROL "Einstellungen"
  548. #define MSG_MIN "\002 Min"
  549. #define MSG_MAX "\002 Max"
  550. #define MSG_FACTOR "\002 Faktor"
  551. #define MSG_AUTOTEMP "AutoTemp"
  552. #define MSG_ON "Ein"
  553. #define MSG_OFF "Aus"
  554. #define MSG_PID_P "PID-P"
  555. #define MSG_PID_I "PID-I"
  556. #define MSG_PID_D "PID-D"
  557. #define MSG_PID_C "PID-C"
  558. #define MSG_ACC "Acc"
  559. #define MSG_VXY_JERK "Vxy-jerk"
  560. #define MSG_VZ_JERK "Vz-jerk"
  561. #define MSG_VE_JERK "Ve-jerk"
  562. #define MSG_VMAX "Vmax "
  563. #define MSG_X "x"
  564. #define MSG_Y "y"
  565. #define MSG_Z "z"
  566. #define MSG_E "e"
  567. #define MSG_VMIN "Vmin"
  568. #define MSG_VTRAV_MIN "VTrav min"
  569. #define MSG_AMAX "Amax "
  570. #define MSG_A_RETRACT "A-Retract"
  571. #define MSG_XSTEPS "Xsteps/mm"
  572. #define MSG_YSTEPS "Ysteps/mm"
  573. #define MSG_ZSTEPS "Zsteps/mm"
  574. #define MSG_ESTEPS "Esteps/mm"
  575. #define MSG_RECTRACT_WIDE "Rectract"
  576. #define MSG_WATCH "Beobachten"
  577. #define MSG_TEMPERATURE "Temperatur"
  578. #define MSG_MOTION "Bewegung"
  579. #define MSG_CONTRAST "LCD contrast"
  580. #define MSG_STORE_EPROM "EPROM speichern"
  581. #define MSG_LOAD_EPROM "EPROM laden"
  582. #define MSG_RESTORE_FAILSAFE "Standardkonfig."
  583. #define MSG_REFRESH "Aktualisieren"
  584. #define MSG_PREPARE "Vorbereitung"
  585. #define MSG_CONTROL "Einstellungen"
  586. #define MSG_TUNE "Justierung"
  587. #define MSG_PAUSE_PRINT "Druck anhalten"
  588. #define MSG_RESUME_PRINT "Druck fortsetz"
  589. #define MSG_STOP_PRINT "Druck stoppen"
  590. #define MSG_CARD_MENU "SDKarten Menü"
  591. #define MSG_NO_CARD "Keine SDKarte"
  592. #define MSG_DWELL "Warten..."
  593. #define MSG_USERWAIT "Warte auf Nutzer"
  594. #define MSG_RESUMING "Druck fortsetzung"
  595. #define MSG_PRINT_ABORTED "Print aborted"
  596. #define MSG_NO_MOVE "Kein Zug."
  597. #define MSG_KILLED "KILLED"
  598. #define MSG_STOPPED "GESTOPPT"
  599. #define MSG_STEPPER_RELEASED "Stepper frei"
  600. #define MSG_CONTROL_RETRACT "Retract mm"
  601. #define MSG_CONTROL_RETRACT_SWAP "Wechs. Retract mm"
  602. #define MSG_CONTROL_RETRACTF "Retract V"
  603. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  604. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  605. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Wechs. UnRet +mm"
  606. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet V"
  607. #define MSG_AUTORETRACT "AutoRetr."
  608. #define MSG_FILAMENTCHANGE "Filament wechseln"
  609. #define MSG_INIT_SDCARD "Init. SD-Card"
  610. #define MSG_CNG_SDCARD "Change SD-Card"
  611. #define MSG_ZPROBE_OUT "Z probe out. bed"
  612. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  613. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  614. #define MSG_BABYSTEP_X "Babystep X"
  615. #define MSG_BABYSTEP_Y "Babystep Y"
  616. #define MSG_BABYSTEP_Z "Babystep Z"
  617. #define MSG_ENDSTOP_ABORT "Endstop abort"
  618. #define MSG_CONTRAST "Contrast"
  619. #endif
  620. #if LANGUAGE_CHOICE == 5
  621. // LCD Menu Messages
  622. // Please note these are limited to 17 characters!
  623. #define WELCOME_MSG MACHINE_NAME " lista."
  624. #define MSG_SD_INSERTED "Tarjeta colocada"
  625. #define MSG_SD_REMOVED "Tarjeta retirada"
  626. #define MSG_MAIN "Menu principal"
  627. #define MSG_AUTOSTART " Autostart"
  628. #define MSG_DISABLE_STEPPERS "Apagar motores"
  629. #define MSG_AUTO_HOME "Llevar al origen"
  630. #define MSG_SET_HOME_OFFSETS "Ajustar offsets"
  631. #define MSG_SET_ORIGIN "Establecer cero"
  632. #define MSG_PREHEAT_PLA "Precalentar PLA"
  633. #define MSG_PREHEAT_PLA0 "Precalentar PLA 1"
  634. #define MSG_PREHEAT_PLA1 "Precalentar PLA 2"
  635. #define MSG_PREHEAT_PLA2 "Precalentar PLA 3"
  636. #define MSG_PREHEAT_PLA012 "Precal. PLA Todo"
  637. #define MSG_PREHEAT_PLA_BEDONLY "Precal. PLA Base"
  638. #define MSG_PREHEAT_PLA_SETTINGS "Ajustar temp. PLA"
  639. #define MSG_PREHEAT_ABS "Precalentar ABS"
  640. #define MSG_PREHEAT_ABS0 "Precalentar ABS 1"
  641. #define MSG_PREHEAT_ABS1 "Precalentar ABS 2"
  642. #define MSG_PREHEAT_ABS2 "Precalentar ABS 3"
  643. #define MSG_PREHEAT_ABS012 "Precal. ABS Todo"
  644. #define MSG_PREHEAT_ABS_BEDONLY "Precal. ABS Base"
  645. #define MSG_PREHEAT_ABS_SETTINGS "Ajustar temp. ABS"
  646. #define MSG_COOLDOWN "Enfriar"
  647. #define MSG_SWITCH_PS_ON "Encender"
  648. #define MSG_SWITCH_PS_OFF "Apagar"
  649. #define MSG_EXTRUDE "Extruir"
  650. #define MSG_RETRACT "Retraer"
  651. #define MSG_MOVE_AXIS "Mover ejes"
  652. #define MSG_MOVE_X "Mover X"
  653. #define MSG_MOVE_Y "Mover Y"
  654. #define MSG_MOVE_Z "Mover Z"
  655. #define MSG_MOVE_E "Extrusor"
  656. #define MSG_MOVE_E1 "Extrusor2"
  657. #define MSG_MOVE_E2 "Extrusor3"
  658. #define MSG_MOVE_01MM "Mover 0.1mm"
  659. #define MSG_MOVE_1MM "Mover 1mm"
  660. #define MSG_MOVE_10MM "Mover 10mm"
  661. #define MSG_SPEED "Velocidad"
  662. #define MSG_NOZZLE "Nozzle"
  663. #define MSG_NOZZLE1 "Nozzle2"
  664. #define MSG_NOZZLE2 "Nozzle3"
  665. #define MSG_BED "Base"
  666. #define MSG_FAN_SPEED "Ventilador"
  667. #define MSG_FLOW "Flujo"
  668. #define MSG_FLOW0 "Flujo 0"
  669. #define MSG_FLOW1 "Flujo 1"
  670. #define MSG_FLOW2 "Flujo 2"
  671. #define MSG_CONTROL "Control"
  672. #define MSG_MIN "\002 Min"
  673. #define MSG_MAX "\002 Max"
  674. #define MSG_FACTOR "\002 Fact"
  675. #define MSG_AUTOTEMP "Autotemp"
  676. #define MSG_ON "On"
  677. #define MSG_OFF "Off"
  678. #define MSG_PID_P "PID-P"
  679. #define MSG_PID_I "PID-I"
  680. #define MSG_PID_D "PID-D"
  681. #define MSG_PID_C "PID-C"
  682. #define MSG_ACC "Acel"
  683. #define MSG_VXY_JERK "Vxy-jerk"
  684. #define MSG_VZ_JERK "Vz-jerk"
  685. #define MSG_VE_JERK "Ve-jerk"
  686. #define MSG_VMAX "Vmax"
  687. #define MSG_X "x"
  688. #define MSG_Y "y"
  689. #define MSG_Z "z"
  690. #define MSG_E "e"
  691. #define MSG_VMIN "Vmin"
  692. #define MSG_VTRAV_MIN "Vvacio min"
  693. #define MSG_AMAX "Amax"
  694. #define MSG_A_RETRACT "A-retrac."
  695. #define MSG_XSTEPS "X pasos/mm"
  696. #define MSG_YSTEPS "Y pasos/mm"
  697. #define MSG_ZSTEPS "Z pasos/mm"
  698. #define MSG_ESTEPS "E pasos/mm"
  699. #define MSG_RECTRACT "Retraer"
  700. #define MSG_TEMPERATURE "Temperatura"
  701. #define MSG_MOTION "Movimiento"
  702. #define MSG_STORE_EPROM "Guardar memoria"
  703. #define MSG_LOAD_EPROM "Cargar memoria"
  704. #define MSG_RESTORE_FAILSAFE "Rest. de emergen."
  705. #define MSG_REFRESH "Volver a cargar"
  706. #define MSG_WATCH "Monitorizar"
  707. #define MSG_PREPARE "Preparar"
  708. #define MSG_TUNE "Ajustar"
  709. #define MSG_PAUSE_PRINT "Pausar impresion"
  710. #define MSG_RESUME_PRINT "Reanudar impres."
  711. #define MSG_STOP_PRINT "Detener impresion"
  712. #define MSG_CARD_MENU "Menu de SD"
  713. #define MSG_NO_CARD "No hay tarjeta SD"
  714. #define MSG_DWELL "Reposo..."
  715. #define MSG_USERWAIT "Esperando ordenes"
  716. #define MSG_RESUMING "Resumiendo impre."
  717. #define MSG_PRINT_ABORTED "Print aborted"
  718. #define MSG_NO_MOVE "Sin movimiento"
  719. #define MSG_KILLED "PARADA DE EMERG."
  720. #define MSG_STOPPED "PARADA"
  721. #define MSG_CONTROL_RETRACT "Retraer mm"
  722. #define MSG_CONTROL_RETRACT_SWAP "Interc. Retraer mm"
  723. #define MSG_CONTROL_RETRACTF "Retraer V"
  724. #define MSG_CONTROL_RETRACT_ZLIFT "Levantar mm"
  725. #define MSG_CONTROL_RETRACT_RECOVER "DesRet +mm"
  726. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Interc. DesRet +mm"
  727. #define MSG_CONTROL_RETRACT_RECOVERF "DesRet V"
  728. #define MSG_AUTORETRACT "AutoRetr."
  729. #define MSG_FILAMENTCHANGE "Cambiar filamento"
  730. #define MSG_INIT_SDCARD "Iniciando tarjeta"
  731. #define MSG_CNG_SDCARD "Cambiar tarjeta"
  732. #define MSG_RECTRACT_WIDE "Retraer"
  733. #define MSG_TEMPERATURE_WIDE "Temperatura"
  734. #define MSG_TEMPERATURE_RTN "Temperatura"
  735. #define MSG_MAIN_WIDE "Menu principal"
  736. #define MSG_MOTION_WIDE "Movimiento"
  737. #define MSG_PREPARE_ALT "Preparar"
  738. #define MSG_CONTROL_ARROW "Control"
  739. #define MSG_RETRACT_ARROW "Retraer"
  740. #define MSG_STEPPER_RELEASED "Desacoplada."
  741. #define MSG_ZPROBE_OUT "sonda Z fuera"
  742. #define MSG_POSITION_UNKNOWN "Reiniciar X/Y y Z"
  743. #define MSG_ZPROBE_ZOFFSET "Offset Z"
  744. #define MSG_BABYSTEP_X "Babystep X"
  745. #define MSG_BABYSTEP_Y "Babystep Y"
  746. #define MSG_BABYSTEP_Z "Babystep Z"
  747. #define MSG_ENDSTOP_ABORT "Endstop abort"
  748. #define MSG_CONTRAST "Contraste"
  749. #endif
  750. #if LANGUAGE_CHOICE == 6
  751. // LCD Menu Messages
  752. // Please note these are limited to 17 characters!
  753. #define WELCOME_MSG MACHINE_NAME "Готов."
  754. #define MSG_SD_INSERTED "Карта вставлена"
  755. #define MSG_SD_REMOVED "Карта извлечена"
  756. #define MSG_MAIN "Меню \003"
  757. #define MSG_AUTOSTART "Автостарт"
  758. #define MSG_DISABLE_STEPPERS "Выкл. двигатели"
  759. #define MSG_AUTO_HOME "Парковка"
  760. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  761. #define MSG_SET_ORIGIN "Запомнить ноль"
  762. #define MSG_PREHEAT_PLA "Преднагрев PLA"
  763. #define MSG_PREHEAT_PLA0 "Преднагрев PLA0"
  764. #define MSG_PREHEAT_PLA1 "Преднагрев PLA1"
  765. #define MSG_PREHEAT_PLA2 "Преднагрев PLA2"
  766. #define MSG_PREHEAT_PLA012 "Преднаг. PLA все"
  767. #define MSG_PREHEAT_PLA_BEDONLY "Пред. PLA Кровать"
  768. #define MSG_PREHEAT_PLA_SETTINGS "Настройки PLA"
  769. #define MSG_PREHEAT_ABS "Преднагрев ABS"
  770. #define MSG_PREHEAT_ABS0 "Преднагрев ABS0"
  771. #define MSG_PREHEAT_ABS1 "Преднагрев ABS1"
  772. #define MSG_PREHEAT_ABS2 "Преднагрев ABS2"
  773. #define MSG_PREHEAT_ABS012 "Преднаг. ABS все "
  774. #define MSG_PREHEAT_ABS_BEDONLY "Пред. ABS Кровать"
  775. #define MSG_PREHEAT_ABS_SETTINGS "Настройки ABS"
  776. #define MSG_COOLDOWN "Охлаждение"
  777. #define MSG_SWITCH_PS_ON "Switch Power On"
  778. #define MSG_SWITCH_PS_OFF "Switch Power Off"
  779. #define MSG_EXTRUDE "Экструзия"
  780. #define MSG_RETRACT "Откат"
  781. #define MSG_MOVE_AXIS "Движение по осям"
  782. #define MSG_MOVE_X "Move X"
  783. #define MSG_MOVE_Y "Move Y"
  784. #define MSG_MOVE_Z "Move Z"
  785. #define MSG_MOVE_E "Extruder"
  786. #define MSG_MOVE_E1 "Extruder2"
  787. #define MSG_MOVE_E2 "Extruder3"
  788. #define MSG_MOVE_01MM "Move 0.1mm"
  789. #define MSG_MOVE_1MM "Move 1mm"
  790. #define MSG_MOVE_10MM "Move 10mm"
  791. #define MSG_SPEED "Скорость:"
  792. #define MSG_NOZZLE "\002 Фильера:"
  793. #define MSG_NOZZLE1 "\002 Фильера2:"
  794. #define MSG_NOZZLE2 "\002 Фильера3:"
  795. #define MSG_BED "\002 Кровать:"
  796. #define MSG_FAN_SPEED "Куллер:"
  797. #define MSG_FLOW "Поток:"
  798. #define MSG_FLOW0 " Поток0:"
  799. #define MSG_FLOW1 " Поток1:"
  800. #define MSG_FLOW2 " Поток2:"
  801. #define MSG_CONTROL "Настройки \003"
  802. #define MSG_MIN "\002 Минимум:"
  803. #define MSG_MAX "\002 Максимум:"
  804. #define MSG_FACTOR "\002 Фактор:"
  805. #define MSG_AUTOTEMP "Autotemp:"
  806. #define MSG_ON "Вкл. "
  807. #define MSG_OFF "Выкл. "
  808. #define MSG_PID_P "PID-P: "
  809. #define MSG_PID_I "PID-I: "
  810. #define MSG_PID_D "PID-D: "
  811. #define MSG_PID_C "PID-C: "
  812. #define MSG_ACC "Acc:"
  813. #define MSG_VXY_JERK "Vxy-jerk: "
  814. #define MSG_VZ_JERK "Vz-jerk"
  815. #define MSG_VE_JERK "Ve-jerk"
  816. #define MSG_VMAX "Vmax "
  817. #define MSG_X "x:"
  818. #define MSG_Y "y:"
  819. #define MSG_Z "z:"
  820. #define MSG_E "e:"
  821. #define MSG_VMIN "Vmin:"
  822. #define MSG_VTRAV_MIN "VTrav min:"
  823. #define MSG_AMAX "Amax "
  824. #define MSG_A_RETRACT "A-retract:"
  825. #define MSG_XSTEPS "X шаг/mm:"
  826. #define MSG_YSTEPS "Y шаг/mm:"
  827. #define MSG_ZSTEPS "Z шаг/mm:"
  828. #define MSG_ESTEPS "E шаг/mm:"
  829. #define MSG_RECTRACT "Откат подачи \x7E"
  830. #define MSG_TEMPERATURE "Температура \x7E"
  831. #define MSG_MOTION "Скорости \x7E"
  832. #define MSG_CONTRAST "LCD contrast"
  833. #define MSG_STORE_EPROM "Сохранить в EPROM"
  834. #define MSG_LOAD_EPROM "Загруз. из EPROM"
  835. #define MSG_RESTORE_FAILSAFE "Сброс настроек"
  836. #define MSG_REFRESH "\004Обновить"
  837. #define MSG_WATCH "Обзор \003"
  838. #define MSG_PREPARE "Действия \x7E"
  839. #define MSG_TUNE "Настройки \x7E"
  840. #define MSG_PAUSE_PRINT "Продолжить печать"
  841. #define MSG_RESUME_PRINT "возобн. печать"
  842. #define MSG_STOP_PRINT "Остановить печать"
  843. #define MSG_CARD_MENU "Меню карты \x7E"
  844. #define MSG_NO_CARD "Нет карты"
  845. #define MSG_DWELL "Сон..."
  846. #define MSG_USERWAIT "Ожиданиие"
  847. #define MSG_RESUMING "Resuming print"
  848. #define MSG_PRINT_ABORTED "Print aborted"
  849. #define MSG_NO_MOVE "Нет движения."
  850. #define MSG_KILLED "УБИТО."
  851. #define MSG_STOPPED "ОСТАНОВЛЕНО."
  852. #define MSG_CONTROL_RETRACT "Откат mm:"
  853. #define MSG_CONTROL_RETRACT_SWAP "своп Откат mm:"
  854. #define MSG_CONTROL_RETRACTF "Откат V:"
  855. #define MSG_CONTROL_RETRACT_ZLIFT "Прыжок mm:"
  856. #define MSG_CONTROL_RETRACT_RECOVER "Возврат +mm:"
  857. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "своп Возврат +mm:"
  858. #define MSG_CONTROL_RETRACT_RECOVERF "Возврат V:"
  859. #define MSG_AUTORETRACT "АвтоОткат:"
  860. #define MSG_FILAMENTCHANGE "Change filament"
  861. #define MSG_INIT_SDCARD "Init. SD-Card"
  862. #define MSG_CNG_SDCARD "Change SD-Card"
  863. #define MSG_ZPROBE_OUT "Z probe out. bed"
  864. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  865. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  866. #define MSG_BABYSTEP_X "Babystep X"
  867. #define MSG_BABYSTEP_Y "Babystep Y"
  868. #define MSG_BABYSTEP_Z "Babystep Z"
  869. #define MSG_ENDSTOP_ABORT "Endstop abort"
  870. #define MSG_CONTRAST "Contrast"
  871. #endif
  872. #if LANGUAGE_CHOICE == 7
  873. // LCD Menu Messages
  874. // Please note these are limited to 17 characters!
  875. #define WELCOME_MSG MACHINE_NAME " pronto."
  876. #define MSG_SD_INSERTED "SD Card inserita"
  877. #define MSG_SD_REMOVED "SD Card rimossa"
  878. #define MSG_MAIN "Menu principale"
  879. #define MSG_AUTOSTART "Autostart"
  880. #define MSG_DISABLE_STEPPERS "Disabilita Motori"
  881. #define MSG_AUTO_HOME "Auto Home"
  882. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  883. #define MSG_SET_ORIGIN "Imposta Origine"
  884. #define MSG_PREHEAT_PLA "Preriscalda PLA"
  885. #define MSG_PREHEAT_PLA0 "Preriscalda PLA 1"
  886. #define MSG_PREHEAT_PLA1 "Preriscalda PLA 2"
  887. #define MSG_PREHEAT_PLA2 "Preriscalda PLA 3"
  888. #define MSG_PREHEAT_PLA012 "Preris. PLA Tutto"
  889. #define MSG_PREHEAT_PLA_BEDONLY "Preri. PLA Piatto"
  890. #define MSG_PREHEAT_PLA_SETTINGS "Preris. PLA Conf"
  891. #define MSG_PREHEAT_ABS "Preriscalda ABS"
  892. #define MSG_PREHEAT_ABS0 "Preriscalda ABS 1"
  893. #define MSG_PREHEAT_ABS1 "Preriscalda ABS 2"
  894. #define MSG_PREHEAT_ABS2 "Preriscalda ABS 3"
  895. #define MSG_PREHEAT_ABS012 "Preris. ABS Tutto"
  896. #define MSG_PREHEAT_ABS_BEDONLY "Preri. ABS Piatto"
  897. #define MSG_PREHEAT_ABS_SETTINGS "Preris. ABS Conf"
  898. #define MSG_COOLDOWN "Raffredda"
  899. #define MSG_SWITCH_PS_ON "Switch Power On"
  900. #define MSG_SWITCH_PS_OFF "Switch Power Off"
  901. #define MSG_EXTRUDE "Estrudi"
  902. #define MSG_RETRACT "Ritrai"
  903. #define MSG_MOVE_AXIS "Muovi Asse"
  904. #define MSG_MOVE_X "Move X"
  905. #define MSG_MOVE_Y "Move Y"
  906. #define MSG_MOVE_Z "Move Z"
  907. #define MSG_MOVE_E "Extruder"
  908. #define MSG_MOVE_E1 "Extruder2"
  909. #define MSG_MOVE_E2 "Extruder3"
  910. #define MSG_MOVE_01MM "Move 0.1mm"
  911. #define MSG_MOVE_1MM "Move 1mm"
  912. #define MSG_MOVE_10MM "Move 10mm"
  913. #define MSG_SPEED "Velcità"
  914. #define MSG_NOZZLE "Ugello"
  915. #define MSG_NOZZLE1 "Ugello2"
  916. #define MSG_NOZZLE2 "Ugello3"
  917. #define MSG_BED "Piatto"
  918. #define MSG_FAN_SPEED "Ventola"
  919. #define MSG_FLOW "Flusso"
  920. #define MSG_FLOW0 "Flusso 0"
  921. #define MSG_FLOW1 "Flusso 1"
  922. #define MSG_FLOW2 "Flusso 2"
  923. #define MSG_CONTROL "Controllo"
  924. #define MSG_MIN " \002 Min:"
  925. #define MSG_MAX " \002 Max:"
  926. #define MSG_FACTOR " \002 Fact:"
  927. #define MSG_AUTOTEMP "Autotemp"
  928. #define MSG_ON "On "
  929. #define MSG_OFF "Off"
  930. #define MSG_PID_P "PID-P"
  931. #define MSG_PID_I "PID-I"
  932. #define MSG_PID_D "PID-D"
  933. #define MSG_PID_C "PID-C"
  934. #define MSG_ACC "Accel"
  935. #define MSG_VXY_JERK "Vxy-jerk"
  936. #define MSG_VZ_JERK "Vz-jerk"
  937. #define MSG_VE_JERK "Ve-jerk"
  938. #define MSG_VMAX "Vmax"
  939. #define MSG_X "x"
  940. #define MSG_Y "y"
  941. #define MSG_Z "z"
  942. #define MSG_E "e"
  943. #define MSG_VMIN "Vmin"
  944. #define MSG_VTRAV_MIN "VTrav min"
  945. #define MSG_AMAX "Amax"
  946. #define MSG_A_RETRACT "A-retract"
  947. #define MSG_XSTEPS "Xpassi/mm"
  948. #define MSG_YSTEPS "Ypassi/mm"
  949. #define MSG_ZSTEPS "Zpassi/mm"
  950. #define MSG_ESTEPS "Epassi/mm"
  951. #define MSG_RECTRACT "Ritrai"
  952. #define MSG_TEMPERATURE "Temperatura"
  953. #define MSG_MOTION "Movimento"
  954. #define MSG_CONTRAST "LCD contrast"
  955. #define MSG_STORE_EPROM "Salva in EEPROM"
  956. #define MSG_LOAD_EPROM "Carica da EEPROM"
  957. #define MSG_RESTORE_FAILSAFE "Impostaz. default"
  958. #define MSG_REFRESH "Aggiorna"
  959. #define MSG_WATCH "Guarda"
  960. #define MSG_PREPARE "Prepara"
  961. #define MSG_TUNE "Adatta"
  962. #define MSG_PAUSE_PRINT "Pausa"
  963. #define MSG_RESUME_PRINT "Riprendi Stampa"
  964. #define MSG_STOP_PRINT "Arresta Stampa"
  965. #define MSG_CARD_MENU "SD Card Menu"
  966. #define MSG_NO_CARD "No SD Card"
  967. #define MSG_DWELL "Sospensione..."
  968. #define MSG_USERWAIT "Attendi Utente..."
  969. #define MSG_RESUMING "Riprendi Stampa"
  970. #define MSG_PRINT_ABORTED "Print aborted"
  971. #define MSG_NO_MOVE "Nessun Movimento."
  972. #define MSG_KILLED "UCCISO. "
  973. #define MSG_STOPPED "ARRESTATO. "
  974. #define MSG_CONTROL_RETRACT "Ritrai mm"
  975. #define MSG_CONTROL_RETRACT_SWAP "Scamb. Ritrai mm"
  976. #define MSG_CONTROL_RETRACTF "Ritrai V"
  977. #define MSG_CONTROL_RETRACT_ZLIFT "Salta mm"
  978. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  979. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Scamb. UnRet +mm"
  980. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet V"
  981. #define MSG_AUTORETRACT "AutoArretramento"
  982. #define MSG_FILAMENTCHANGE "Cambia filamento"
  983. #define MSG_INIT_SDCARD "Iniz. SD-Card"
  984. #define MSG_CNG_SDCARD "Cambia SD-Card"
  985. #define MSG_ZPROBE_OUT "Z probe out. bed"
  986. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  987. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  988. #define MSG_BABYSTEP_X "Babystep X"
  989. #define MSG_BABYSTEP_Y "Babystep Y"
  990. #define MSG_BABYSTEP_Z "Babystep Z"
  991. #define MSG_ENDSTOP_ABORT "Endstop abort"
  992. #define MSG_CONTRAST "Contrast"
  993. #endif
  994. #if LANGUAGE_CHOICE == 8
  995. // LCD Menu Messages
  996. // Please note these are limited to 17 characters!
  997. #define WELCOME_MSG MACHINE_NAME " pronto."
  998. #define MSG_SD_INSERTED "Cartao inserido"
  999. #define MSG_SD_REMOVED "Cartao removido"
  1000. #define MSG_MAIN " Menu principal \003"
  1001. #define MSG_AUTOSTART "Autostart"
  1002. #define MSG_DISABLE_STEPPERS " Apagar motores"
  1003. #define MSG_AUTO_HOME "Ir para origen"
  1004. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  1005. #define MSG_SET_ORIGIN "Estabelecer orig."
  1006. #define MSG_PREHEAT_PLA "Pre-aquecer PLA"
  1007. #define MSG_PREHEAT_PLA0 " pre-aquecer PLA 1"
  1008. #define MSG_PREHEAT_PLA1 " pre-aquecer PLA 2"
  1009. #define MSG_PREHEAT_PLA2 " pre-aquecer PLA 3"
  1010. #define MSG_PREHEAT_PLA012 " pre-aq. PLA Tudo"
  1011. #define MSG_PREHEAT_PLA_BEDONLY " pre-aq. PLA \002Base"
  1012. #define MSG_PREHEAT_PLA_SETTINGS "PLA setting"
  1013. #define MSG_PREHEAT_ABS "Pre-aquecer ABS"
  1014. #define MSG_PREHEAT_ABS0 " pre-aquecer ABS 1"
  1015. #define MSG_PREHEAT_ABS1 " pre-aquecer ABS 2"
  1016. #define MSG_PREHEAT_ABS2 " pre-aquecer ABS 3"
  1017. #define MSG_PREHEAT_ABS012 " pre-aq. ABS Tudo"
  1018. #define MSG_PREHEAT_ABS_BEDONLY " pre-aq. ABS \002Base"
  1019. #define MSG_PREHEAT_ABS_SETTINGS "ABS setting"
  1020. #define MSG_COOLDOWN "Esfriar"
  1021. #define MSG_SWITCH_PS_ON "Switch Power On"
  1022. #define MSG_SWITCH_PS_OFF "Switch Power Off"
  1023. #define MSG_EXTRUDE "Extrudar"
  1024. #define MSG_RETRACT "Retrair"
  1025. #define MSG_PREHEAT_PLA "Pre-aquecer PLA"
  1026. #define MSG_PREHEAT_ABS "Pre-aquecer ABS"
  1027. #define MSG_MOVE_AXIS "Mover eixo \x7E"
  1028. #define MSG_MOVE_X "Move X"
  1029. #define MSG_MOVE_Y "Move Y"
  1030. #define MSG_MOVE_Z "Move Z"
  1031. #define MSG_MOVE_E "Extruder"
  1032. #define MSG_MOVE_E1 "Extruder2"
  1033. #define MSG_MOVE_E2 "Extruder3"
  1034. #define MSG_MOVE_01MM "Move 0.1mm"
  1035. #define MSG_MOVE_1MM "Move 1mm"
  1036. #define MSG_MOVE_10MM "Move 10mm"
  1037. #define MSG_SPEED "Velocidade:"
  1038. #define MSG_NOZZLE "\002Nozzle:"
  1039. #define MSG_NOZZLE1 "\002Nozzle2:"
  1040. #define MSG_NOZZLE2 "\002Nozzle3:"
  1041. #define MSG_BED "\002Base:"
  1042. #define MSG_FAN_SPEED "Velocidade vento."
  1043. #define MSG_FLOW "Fluxo:"
  1044. #define MSG_FLOW0 "Fluxo0:"
  1045. #define MSG_FLOW1 "Fluxo1:"
  1046. #define MSG_FLOW2 "Fluxo2:"
  1047. #define MSG_CONTROL "Controle \003"
  1048. #define MSG_MIN "\002 Min:"
  1049. #define MSG_MAX "\002 Max:"
  1050. #define MSG_FACTOR "\002 Fact:"
  1051. #define MSG_AUTOTEMP "Autotemp:"
  1052. #define MSG_ON "On "
  1053. #define MSG_OFF "Off"
  1054. #define MSG_PID_P "PID-P: "
  1055. #define MSG_PID_I "PID-I: "
  1056. #define MSG_PID_D "PID-D: "
  1057. #define MSG_PID_C "PID-C: "
  1058. #define MSG_ACC "Acc:"
  1059. #define MSG_VXY_JERK "Vxy-jerk: "
  1060. #define MSG_VZ_JERK "Vz-jerk"
  1061. #define MSG_VE_JERK "Ve-jerk"
  1062. #define MSG_VMAX " Vmax "
  1063. #define MSG_X "x:"
  1064. #define MSG_Y "y:"
  1065. #define MSG_Z "z:"
  1066. #define MSG_E "e:"
  1067. #define MSG_VMIN "Vmin:"
  1068. #define MSG_VTRAV_MIN "VTrav min:"
  1069. #define MSG_AMAX "Amax "
  1070. #define MSG_A_RETRACT "A-retract:"
  1071. #define MSG_XSTEPS "Xpasso/mm:"
  1072. #define MSG_YSTEPS "Ypasso/mm:"
  1073. #define MSG_ZSTEPS "Zpasso/mm:"
  1074. #define MSG_ESTEPS "Epasso/mm:"
  1075. #define MSG_MAIN_WIDE "Menu Principal \003"
  1076. #define MSG_RECTRACT "Retrair"
  1077. #define MSG_TEMPERATURE "Temperatura"
  1078. #define MSG_MOTION "Movimento"
  1079. #define MSG_STORE_EPROM "Guardar memoria"
  1080. #define MSG_LOAD_EPROM "Carregar memoria"
  1081. #define MSG_RESTORE_FAILSAFE "Rest. de emergen."
  1082. #define MSG_REFRESH "\004Recarregar"
  1083. #define MSG_WATCH "Monitorar \003"
  1084. #define MSG_PREPARE "Preparar \x7E"
  1085. #define MSG_PREPARE_ALT "Preparar \003"
  1086. #define MSG_CONTROL_ARROW "Controle \x7E"
  1087. #define MSG_RETRACT_ARROW "Retrair \x7E"
  1088. #define MSG_TUNE "Tune \x7E"
  1089. #define MSG_PAUSE_PRINT "Pausar impressao"
  1090. #define MSG_RESUME_PRINT "Resumir impressao"
  1091. #define MSG_STOP_PRINT "Parar impressao"
  1092. #define MSG_CARD_MENU "Menu cartao SD"
  1093. #define MSG_NO_CARD "Sem cartao SD"
  1094. #define MSG_DWELL "Repouso..."
  1095. #define MSG_USERWAIT "Esperando ordem"
  1096. #define MSG_RESUMING "Resuming print"
  1097. #define MSG_PRINT_ABORTED "Print aborted"
  1098. #define MSG_NO_MOVE "Sem movimento"
  1099. #define MSG_KILLED "PARADA DE EMERG."
  1100. #define MSG_STOPPED "PARADA. "
  1101. #define MSG_STEPPER_RELEASED "Lancado."
  1102. #define MSG_CONTROL_RETRACT " Retrair mm:"
  1103. #define MSG_CONTROL_RETRACT_SWAP "Troca Retrair mm:"
  1104. #define MSG_CONTROL_RETRACTF " Retrair V:"
  1105. #define MSG_CONTROL_RETRACT_ZLIFT " Levantar mm:"
  1106. #define MSG_CONTROL_RETRACT_RECOVER " DesRet +mm:"
  1107. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Troca DesRet +mm:"
  1108. #define MSG_CONTROL_RETRACT_RECOVERF " DesRet V:"
  1109. #define MSG_AUTORETRACT " AutoRetr.:"
  1110. #define MSG_FILAMENTCHANGE "Change filament"
  1111. #define MSG_INIT_SDCARD "Init. SD-Card"
  1112. #define MSG_CNG_SDCARD "Change SD-Card"
  1113. #define MSG_ZPROBE_OUT "Son. fora da mesa"
  1114. #define MSG_POSITION_UNKNOWN "XY antes de Z"
  1115. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1116. #define MSG_BABYSTEP_X "Babystep X"
  1117. #define MSG_BABYSTEP_Y "Babystep Y"
  1118. #define MSG_BABYSTEP_Z "Babystep Z"
  1119. #define MSG_ENDSTOP_ABORT "Endstop abort"
  1120. #define MSG_CONTRAST "Contrast"
  1121. #endif
  1122. #if LANGUAGE_CHOICE == 9
  1123. // LCD Menu Messages
  1124. // Please note these are limited to 17 characters!
  1125. #define WELCOME_MSG MACHINE_NAME " valmis."
  1126. #define MSG_SD_INSERTED "Kortti asetettu"
  1127. #define MSG_SD_REMOVED "Kortti poistettu"
  1128. #define MSG_MAIN "Palaa"
  1129. #define MSG_AUTOSTART "Automaatti"
  1130. #define MSG_DISABLE_STEPPERS "Vapauta moottorit"
  1131. #define MSG_AUTO_HOME "Aja referenssiin"
  1132. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  1133. #define MSG_SET_ORIGIN "Aseta origo"
  1134. #define MSG_PREHEAT_PLA "Esilammita PLA"
  1135. #define MSG_PREHEAT_PLA0 "Esilammita PLA 1"
  1136. #define MSG_PREHEAT_PLA1 "Esilammita PLA 2"
  1137. #define MSG_PREHEAT_PLA2 "Esilammita PLA 3"
  1138. #define MSG_PREHEAT_PLA012 "Esila. PLA Kaikki"
  1139. #define MSG_PREHEAT_PLA_BEDONLY "Esila. PLA Alusta"
  1140. #define MSG_PREHEAT_PLA_SETTINGS "Esilamm. PLA konf"
  1141. #define MSG_PREHEAT_ABS "Esilammita ABS"
  1142. #define MSG_PREHEAT_ABS0 "Esilammita ABS 1"
  1143. #define MSG_PREHEAT_ABS1 "Esilammita ABS 2"
  1144. #define MSG_PREHEAT_ABS2 "Esilammita ABS 3"
  1145. #define MSG_PREHEAT_ABS012 "Esila. ABS Kaikki"
  1146. #define MSG_PREHEAT_ABS_BEDONLY "Esila. ABS Alusta"
  1147. #define MSG_PREHEAT_ABS_SETTINGS "Esilamm. ABS konf"
  1148. #define MSG_COOLDOWN "Jaahdyta"
  1149. #define MSG_SWITCH_PS_ON "Virta paalle"
  1150. #define MSG_SWITCH_PS_OFF "Virta pois"
  1151. #define MSG_EXTRUDE "Pursota"
  1152. #define MSG_RETRACT "Veda takaisin"
  1153. #define MSG_MOVE_AXIS "Liikuta akseleita"
  1154. #define MSG_MOVE_X "Move X"
  1155. #define MSG_MOVE_Y "Move Y"
  1156. #define MSG_MOVE_Z "Move Z"
  1157. #define MSG_MOVE_E "Extruder"
  1158. #define MSG_MOVE_E1 "Extruder2"
  1159. #define MSG_MOVE_E2 "Extruder3"
  1160. #define MSG_MOVE_01MM "Move 0.1mm"
  1161. #define MSG_MOVE_1MM "Move 1mm"
  1162. #define MSG_MOVE_10MM "Move 10mm"
  1163. #define MSG_SPEED "Nopeus"
  1164. #define MSG_NOZZLE "Suutin"
  1165. #define MSG_NOZZLE1 "Suutin2"
  1166. #define MSG_NOZZLE2 "Suutin3"
  1167. #define MSG_BED "Alusta"
  1168. #define MSG_FAN_SPEED "Tuul. nopeus"
  1169. #define MSG_FLOW "Virtaus"
  1170. #define MSG_FLOW0 "Virtaus 0"
  1171. #define MSG_FLOW1 "Virtaus 1"
  1172. #define MSG_FLOW2 "Virtaus 2"
  1173. #define MSG_CONTROL "Kontrolli"
  1174. #define MSG_MIN " \002 Min"
  1175. #define MSG_MAX " \002 Max"
  1176. #define MSG_FACTOR " \002 Kerr"
  1177. #define MSG_AUTOTEMP "Autotemp"
  1178. #define MSG_ON "On "
  1179. #define MSG_OFF "Off"
  1180. #define MSG_PID_P "PID-P"
  1181. #define MSG_PID_I "PID-I"
  1182. #define MSG_PID_D "PID-D"
  1183. #define MSG_PID_C "PID-C"
  1184. #define MSG_ACC "Kiihtyv"
  1185. #define MSG_VXY_JERK "Vxy-jerk"
  1186. #define MSG_VZ_JERK "Vz-jerk"
  1187. #define MSG_VE_JERK "Ve-jerk"
  1188. #define MSG_VMAX "Vmax "
  1189. #define MSG_X "x"
  1190. #define MSG_Y "y"
  1191. #define MSG_Z "z"
  1192. #define MSG_E "e"
  1193. #define MSG_VMIN "Vmin"
  1194. #define MSG_VTRAV_MIN "VLiike min"
  1195. #define MSG_AMAX "Amax "
  1196. #define MSG_A_RETRACT "A-peruuta"
  1197. #define MSG_XSTEPS "Xsteps/mm"
  1198. #define MSG_YSTEPS "Ysteps/mm"
  1199. #define MSG_ZSTEPS "Zsteps/mm"
  1200. #define MSG_ESTEPS "Esteps/mm"
  1201. #define MSG_RECTRACT "Veda takaisin"
  1202. #define MSG_TEMPERATURE "Lampotila"
  1203. #define MSG_MOTION "Liike"
  1204. #define MSG_CONTRAST "LCD contrast"
  1205. #define MSG_STORE_EPROM "Tallenna muistiin"
  1206. #define MSG_LOAD_EPROM "Lataa muistista"
  1207. #define MSG_RESTORE_FAILSAFE "Palauta oletus"
  1208. #define MSG_REFRESH "Paivita"
  1209. #define MSG_WATCH "Seuraa"
  1210. #define MSG_PREPARE "Valmistele"
  1211. #define MSG_TUNE "Saada"
  1212. #define MSG_PAUSE_PRINT "Keskeyta tulostus"
  1213. #define MSG_RESUME_PRINT "Jatka tulostusta"
  1214. #define MSG_STOP_PRINT "Pysayta tulostus"
  1215. #define MSG_CARD_MENU "Korttivalikko"
  1216. #define MSG_NO_CARD "Ei korttia"
  1217. #define MSG_DWELL "Nukkumassa..."
  1218. #define MSG_USERWAIT "Odotet. valintaa"
  1219. #define MSG_RESUMING "Jatke. tulostusta"
  1220. #define MSG_PRINT_ABORTED "Print aborted"
  1221. #define MSG_NO_MOVE "Ei liiketta."
  1222. #define MSG_KILLED "KILLED. "
  1223. #define MSG_STOPPED "STOPPED. "
  1224. #define MSG_CONTROL_RETRACT "Veda mm"
  1225. #define MSG_CONTROL_RETRACT_SWAP "Va. Veda mm"
  1226. #define MSG_CONTROL_RETRACTF "Veda V"
  1227. #define MSG_CONTROL_RETRACT_ZLIFT "Z mm"
  1228. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  1229. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Va. UnRet +mm"
  1230. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet V"
  1231. #define MSG_AUTORETRACT "AutoVeto."
  1232. #define MSG_FILAMENTCHANGE "Change filament"
  1233. #define MSG_INIT_SDCARD "Init. SD-Card"
  1234. #define MSG_CNG_SDCARD "Change SD-Card"
  1235. #define MSG_ZPROBE_OUT "Z probe out. bed"
  1236. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  1237. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1238. #define MSG_BABYSTEP_X "Babystep X"
  1239. #define MSG_BABYSTEP_Y "Babystep Y"
  1240. #define MSG_BABYSTEP_Z "Babystep Z"
  1241. #define MSG_ENDSTOP_ABORT "Endstop abort"
  1242. #endif
  1243. #if LANGUAGE_CHOICE == 10
  1244. // LCD Menu Messages
  1245. // Please note these are limited to 17 characters!
  1246. #define WELCOME_MSG MACHINE_NAME " parada."
  1247. #define MSG_SD_INSERTED "Tarcheta colocada"
  1248. #define MSG_SD_REMOVED "Tarcheta retirada"
  1249. #define MSG_MAIN "Menu prencipal"
  1250. #define MSG_AUTOSTART " Autostart"
  1251. #define MSG_DISABLE_STEPPERS "Amortar motors"
  1252. #define MSG_AUTO_HOME "Levar a l'orichen"
  1253. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  1254. #define MSG_SET_ORIGIN "Establir zero"
  1255. #define MSG_PREHEAT_PLA "Precalentar PLA"
  1256. #define MSG_PREHEAT_PLA0 "Precalentar PLA0"
  1257. #define MSG_PREHEAT_PLA1 "Precalentar PLA1"
  1258. #define MSG_PREHEAT_PLA2 "Precalentar PLA2"
  1259. #define MSG_PREHEAT_PLA012 "Precalentar PLA a"
  1260. #define MSG_PREHEAT_PLA_BEDONLY "Prec. PLA Base"
  1261. #define MSG_PREHEAT_PLA_SETTINGS "Achustar tem. PLA"
  1262. #define MSG_PREHEAT_ABS "Precalentar ABS"
  1263. #define MSG_PREHEAT_ABS0 "Precalentar ABS0"
  1264. #define MSG_PREHEAT_ABS1 "Precalentar ABS1"
  1265. #define MSG_PREHEAT_ABS2 "Precalentar ABS2"
  1266. #define MSG_PREHEAT_ABS012 "Precalentar ABS a"
  1267. #define MSG_PREHEAT_ABS_BEDONLY "Prec. ABS Base"
  1268. #define MSG_PREHEAT_ABS_SETTINGS "Achustar tem. ABS"
  1269. #define MSG_COOLDOWN "Enfriar"
  1270. #define MSG_SWITCH_PS_ON "Enchegar Fuent"
  1271. #define MSG_SWITCH_PS_OFF "Desenchegar Fuent"
  1272. #define MSG_EXTRUDE "Extruir"
  1273. #define MSG_RETRACT "Retraer"
  1274. #define MSG_MOVE_AXIS "Mover Eixes"
  1275. #define MSG_MOVE_X "Move X"
  1276. #define MSG_MOVE_Y "Move Y"
  1277. #define MSG_MOVE_Z "Move Z"
  1278. #define MSG_MOVE_E "Extruder"
  1279. #define MSG_MOVE_E1 "Extruder2"
  1280. #define MSG_MOVE_E2 "Extruder3"
  1281. #define MSG_MOVE_01MM "Move 0.1mm"
  1282. #define MSG_MOVE_1MM "Move 1mm"
  1283. #define MSG_MOVE_10MM "Move 10mm"
  1284. #define MSG_SPEED "Velocidat"
  1285. #define MSG_NOZZLE "Nozzle"
  1286. #define MSG_NOZZLE1 "Nozzle2"
  1287. #define MSG_NOZZLE2 "Nozzle3"
  1288. #define MSG_BED "Base"
  1289. #define MSG_FAN_SPEED "Ixoriador"
  1290. #define MSG_FLOW "Fluxo"
  1291. #define MSG_FLOW0 "Fluxo 0"
  1292. #define MSG_FLOW1 "Fluxo 1"
  1293. #define MSG_FLOW2 "Fluxo 2"
  1294. #define MSG_CONTROL "Control"
  1295. #define MSG_MIN "\002 Min"
  1296. #define MSG_MAX "\002 Max"
  1297. #define MSG_FACTOR "\002 Fact"
  1298. #define MSG_AUTOTEMP "Autotemp"
  1299. #define MSG_ON "On"
  1300. #define MSG_OFF "Off"
  1301. #define MSG_PID_P "PID-P"
  1302. #define MSG_PID_I "PID-I"
  1303. #define MSG_PID_D "PID-D"
  1304. #define MSG_PID_C "PID-C"
  1305. #define MSG_ACC "Acel"
  1306. #define MSG_VXY_JERK "Vxy-jerk"
  1307. #define MSG_VZ_JERK "Vz-jerk"
  1308. #define MSG_VE_JERK "Ves-jerk"
  1309. #define MSG_VMAX "Vmax"
  1310. #define MSG_X "x"
  1311. #define MSG_Y "y"
  1312. #define MSG_Z "z"
  1313. #define MSG_E "y"
  1314. #define MSG_VMIN "Vmin"
  1315. #define MSG_VTRAV_MIN "VTrav min"
  1316. #define MSG_AMAX "Amax"
  1317. #define MSG_A_RETRACT "A-retrac."
  1318. #define MSG_XSTEPS "X trangos/mm"
  1319. #define MSG_YSTEPS "Y trangos/mm"
  1320. #define MSG_ZSTEPS "Z trangos/mm"
  1321. #define MSG_ESTEPS "E trangos/mm"
  1322. #define MSG_RECTRACT "Retraer"
  1323. #define MSG_TEMPERATURE "Temperatura"
  1324. #define MSG_MOTION "Movimiento"
  1325. #define MSG_STORE_EPROM "Alzar Memoria"
  1326. #define MSG_LOAD_EPROM "Cargar Memoria"
  1327. #define MSG_RESTORE_FAILSAFE "Rest. d'emerchen."
  1328. #define MSG_REFRESH "Tornar a cargar"
  1329. #define MSG_WATCH "Monitorizar"
  1330. #define MSG_PREPARE "Preparar"
  1331. #define MSG_TUNE "Achustar"
  1332. #define MSG_PAUSE_PRINT "Pausar impresion"
  1333. #define MSG_RESUME_PRINT "Contin. impresion"
  1334. #define MSG_STOP_PRINT "Detener Impresion"
  1335. #define MSG_CARD_MENU "Menu de SD"
  1336. #define MSG_NO_CARD "No i hai tarcheta"
  1337. #define MSG_DWELL "Reposo..."
  1338. #define MSG_USERWAIT "Asperan. ordines"
  1339. #define MSG_RESUMING "Contin. impresion"
  1340. #define MSG_PRINT_ABORTED "Print aborted"
  1341. #define MSG_NO_MOVE "Sin movimiento"
  1342. #define MSG_KILLED "ATURADA D'EMERCH."
  1343. #define MSG_STOPPED "ATURADA."
  1344. #define MSG_CONTROL_RETRACT "Retraer mm"
  1345. #define MSG_CONTROL_RETRACT_SWAP "Swap Retraer mm"
  1346. #define MSG_CONTROL_RETRACTF "Retraer F"
  1347. #define MSG_CONTROL_RETRACT_ZLIFT "Devantar mm"
  1348. #define MSG_CONTROL_RETRACT_RECOVER "DesRet +mm"
  1349. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Swap DesRet +mm"
  1350. #define MSG_CONTROL_RETRACT_RECOVERF "DesRet F"
  1351. #define MSG_AUTORETRACT "AutoRetr."
  1352. #define MSG_FILAMENTCHANGE "Cambear"
  1353. #define MSG_INIT_SDCARD "Encetan. tarcheta"
  1354. #define MSG_CNG_SDCARD "Cambiar tarcheta"
  1355. #define MSG_RECTRACT_WIDE "Retraer"
  1356. #define MSG_TEMPERATURE_WIDE "Temperatura"
  1357. #define MSG_TEMPERATURE_RTN "Temperatura"
  1358. #define MSG_MAIN_WIDE "Menu Prencipal"
  1359. #define MSG_MOTION_WIDE "Movimiento"
  1360. #define MSG_PREPARE_ALT "Preparar"
  1361. #define MSG_CONTROL_ARROW "Control"
  1362. #define MSG_RETRACT_ARROW "Retraer"
  1363. #define MSG_STEPPER_RELEASED "Desacoplada."
  1364. #define MSG_ZPROBE_OUT "Z probe out. bed"
  1365. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  1366. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1367. #define MSG_BABYSTEP_X "Babystep X"
  1368. #define MSG_BABYSTEP_Y "Babystep Y"
  1369. #define MSG_BABYSTEP_Z "Babystep Z"
  1370. #define MSG_ENDSTOP_ABORT "Endstop abort"
  1371. #define MSG_CONTRAST "Contrast"
  1372. #endif
  1373. #if LANGUAGE_CHOICE == 11 //Dutch
  1374. // LCD Menu Messages
  1375. // Please note these are limited to 17 characters!
  1376. #define WELCOME_MSG MACHINE_NAME " gereed."
  1377. #define MSG_SD_INSERTED "Kaart ingestoken"
  1378. #define MSG_SD_REMOVED "Kaart verwijderd"
  1379. #define MSG_MAIN "Main"
  1380. #define MSG_AUTOSTART "Autostart"
  1381. #define MSG_DISABLE_STEPPERS "Motoren uit"
  1382. #define MSG_AUTO_HOME "Auto home"
  1383. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  1384. #define MSG_SET_ORIGIN "Nulpunt instellen"
  1385. #define MSG_PREHEAT_PLA "PLA voorverwarmen"
  1386. #define MSG_PREHEAT_PLA0 "PLA voorverw. 0"
  1387. #define MSG_PREHEAT_PLA1 "PLA voorverw. 1"
  1388. #define MSG_PREHEAT_PLA2 "PLA voorverw. 2"
  1389. #define MSG_PREHEAT_PLA012 "PLA voorverw. aan"
  1390. #define MSG_PREHEAT_PLA_BEDONLY "PLA voorverw. Bed"
  1391. #define MSG_PREHEAT_PLA_SETTINGS "PLA verw. conf"
  1392. #define MSG_PREHEAT_ABS "ABS voorverwarmen"
  1393. #define MSG_PREHEAT_ABS0 "ABS voorverw. 0"
  1394. #define MSG_PREHEAT_ABS1 "ABS voorverw. 1"
  1395. #define MSG_PREHEAT_ABS2 "ABS voorverw. 2"
  1396. #define MSG_PREHEAT_ABS012 "ABS voorverw. aan"
  1397. #define MSG_PREHEAT_ABS_BEDONLY "ABS voorverw. Bed"
  1398. #define MSG_PREHEAT_ABS_SETTINGS "ABS verw. conf"
  1399. #define MSG_COOLDOWN "Afkoelen"
  1400. #define MSG_SWITCH_PS_ON "Stroom aan"
  1401. #define MSG_SWITCH_PS_OFF "Stroom uit"
  1402. #define MSG_EXTRUDE "Extrude"
  1403. #define MSG_RETRACT "Retract"
  1404. #define MSG_MOVE_AXIS "As verplaatsen"
  1405. #define MSG_MOVE_X "Verplaats X"
  1406. #define MSG_MOVE_Y "Verplaats Y"
  1407. #define MSG_MOVE_Z "Verplaats Z"
  1408. #define MSG_MOVE_E "Extruder"
  1409. #define MSG_MOVE_E1 "Extruder2"
  1410. #define MSG_MOVE_E2 "Extruder3"
  1411. #define MSG_MOVE_01MM "Verplaats 0.1mm"
  1412. #define MSG_MOVE_1MM "Verplaats 1mm"
  1413. #define MSG_MOVE_10MM "Verplaats 10mm"
  1414. #define MSG_SPEED "Snelheid"
  1415. #define MSG_NOZZLE "Nozzle"
  1416. #define MSG_NOZZLE1 "Nozzle2"
  1417. #define MSG_NOZZLE2 "Nozzle3"
  1418. #define MSG_BED "Bed"
  1419. #define MSG_FAN_SPEED "Fan snelheid"
  1420. #define MSG_FLOW "Flow"
  1421. #define MSG_FLOW0 "Flow 0"
  1422. #define MSG_FLOW1 "Flow 1"
  1423. #define MSG_FLOW2 "Flow 2"
  1424. #define MSG_CONTROL "Control"
  1425. #define MSG_MIN " \002 Min"
  1426. #define MSG_MAX " \002 Max"
  1427. #define MSG_FACTOR " \002 Fact"
  1428. #define MSG_AUTOTEMP "Autotemp"
  1429. #define MSG_ON "Aan "
  1430. #define MSG_OFF "Uit"
  1431. #define MSG_PID_P "PID-P"
  1432. #define MSG_PID_I "PID-I"
  1433. #define MSG_PID_D "PID-D"
  1434. #define MSG_PID_C "PID-C"
  1435. #define MSG_ACC "Versn"
  1436. #define MSG_VXY_JERK "Vxy-jerk"
  1437. #define MSG_VZ_JERK "Vz-jerk"
  1438. #define MSG_VE_JERK "Ve-jerk"
  1439. #define MSG_VMAX "Vmax "
  1440. #define MSG_X "x"
  1441. #define MSG_Y "y"
  1442. #define MSG_Z "z"
  1443. #define MSG_E "e"
  1444. #define MSG_VMIN "Vmin"
  1445. #define MSG_VTRAV_MIN "VTrav min"
  1446. #define MSG_AMAX "Amax "
  1447. #define MSG_A_RETRACT "A-retract"
  1448. #define MSG_XSTEPS "Xsteps/mm"
  1449. #define MSG_YSTEPS "Ysteps/mm"
  1450. #define MSG_ZSTEPS "Zsteps/mm"
  1451. #define MSG_ESTEPS "Esteps/mm"
  1452. #define MSG_RECTRACT "Terugtrekken"
  1453. #define MSG_TEMPERATURE "Temperatuur"
  1454. #define MSG_MOTION "Beweging"
  1455. #define MSG_CONTRAST "LCD contrast"
  1456. #define MSG_STORE_EPROM "Geheugen opslaan"
  1457. #define MSG_LOAD_EPROM "Geheugen laden"
  1458. #define MSG_RESTORE_FAILSAFE "Noodstop reset"
  1459. #define MSG_REFRESH "Ververs"
  1460. #define MSG_WATCH "Info scherm"
  1461. #define MSG_PREPARE "Voorbereiden"
  1462. #define MSG_TUNE "Afstellen"
  1463. #define MSG_PAUSE_PRINT "Print pauzeren"
  1464. #define MSG_RESUME_PRINT "Print hervatten"
  1465. #define MSG_STOP_PRINT "Print stoppen"
  1466. #define MSG_CARD_MENU "Print van SD"
  1467. #define MSG_NO_CARD "Geen SD kaart"
  1468. #define MSG_DWELL "Slapen..."
  1469. #define MSG_USERWAIT "Wachten..."
  1470. #define MSG_RESUMING "Print hervatten"
  1471. #define MSG_PRINT_ABORTED "Print aborted"
  1472. #define MSG_NO_MOVE "Geen beweging."
  1473. #define MSG_KILLED "AFGEBROKEN. "
  1474. #define MSG_STOPPED "GESTOPT. "
  1475. #define MSG_CONTROL_RETRACT "Retract mm"
  1476. #define MSG_CONTROL_RETRACT_SWAP "Ruil Retract mm"
  1477. #define MSG_CONTROL_RETRACTF "Retract F"
  1478. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  1479. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  1480. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Ruil UnRet +mm"
  1481. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet F"
  1482. #define MSG_AUTORETRACT "AutoRetr."
  1483. #define MSG_FILAMENTCHANGE "Verv. Filament"
  1484. #define MSG_INIT_SDCARD "Init. SD kaart"
  1485. #define MSG_CNG_SDCARD "Verv. SD card"
  1486. #define MSG_ZPROBE_OUT "Z probe uit. bed"
  1487. #define MSG_POSITION_UNKNOWN "Home X/Y voor Z"
  1488. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1489. #define MSG_BABYSTEP_X "Babystap X"
  1490. #define MSG_BABYSTEP_Y "Babystap Y"
  1491. #define MSG_BABYSTEP_Z "Babystap Z"
  1492. #define MSG_ENDSTOP_ABORT "Endstop afbr."
  1493. #endif
  1494. #if LANGUAGE_CHOICE == 12
  1495. // LCD Menu Messages
  1496. // Please note these are limited to 17 characters!
  1497. #define WELCOME_MSG MACHINE_NAME " preparada."
  1498. #define MSG_SD_INSERTED "SD detectada."
  1499. #define MSG_SD_REMOVED "SD expulsada."
  1500. #define MSG_MAIN "Menu principal"
  1501. #define MSG_AUTOSTART "Inici automatic"
  1502. #define MSG_DISABLE_STEPPERS "Apagar motors"
  1503. #define MSG_AUTO_HOME "Home global"
  1504. #define MSG_SET_ORIGIN "Establir origen"
  1505. #define MSG_PREHEAT_PLA "Preescalfar PLA"
  1506. #define MSG_PREHEAT_PLA0 "Preescalfar PLA 1"
  1507. #define MSG_PREHEAT_PLA1 "Preescalfar PLA 2"
  1508. #define MSG_PREHEAT_PLA2 "Preescalfar PLA 3"
  1509. #define MSG_PREHEAT_PLA012 "Preesc. tot PLA"
  1510. #define MSG_PREHEAT_PLA_BEDONLY "Preesc. llit PLA"
  1511. #define MSG_PREHEAT_PLA_SETTINGS "Configuració PLA"
  1512. #define MSG_PREHEAT_ABS "Preescalfar ABS"
  1513. #define MSG_PREHEAT_ABS0 "Preescalfar ABS 1"
  1514. #define MSG_PREHEAT_ABS1 "Preescalfar ABS 2"
  1515. #define MSG_PREHEAT_ABS2 "Preescalfar ABS 3"
  1516. #define MSG_PREHEAT_ABS012 "Preesc. tot ABS"
  1517. #define MSG_PREHEAT_ABS_BEDONLY "Preesc. llit ABS"
  1518. #define MSG_PREHEAT_ABS_SETTINGS "Configuració ABS"
  1519. #define MSG_COOLDOWN "Refredar"
  1520. #define MSG_SWITCH_PS_ON "Switch power on"
  1521. #define MSG_SWITCH_PS_OFF "Switch power off"
  1522. #define MSG_EXTRUDE "Extruir"
  1523. #define MSG_RETRACT "Refredar"
  1524. #define MSG_MOVE_AXIS "Moure eixos"
  1525. #define MSG_MOVE_X "Moure X"
  1526. #define MSG_MOVE_Y "Moure Y"
  1527. #define MSG_MOVE_Z "Moure Z"
  1528. #define MSG_MOVE_E "Extrusor"
  1529. #define MSG_MOVE_E1 "Extruder2"
  1530. #define MSG_MOVE_E2 "Extruder3"
  1531. #define MSG_MOVE_01MM "Moure 0.1mm"
  1532. #define MSG_MOVE_1MM "Moure 1mm"
  1533. #define MSG_MOVE_10MM "Moure 10mm"
  1534. #define MSG_SPEED "Velocitat"
  1535. #define MSG_NOZZLE "Nozzle"
  1536. #define MSG_NOZZLE1 "Nozzle2"
  1537. #define MSG_NOZZLE2 "Nozzle3"
  1538. #define MSG_BED "Llit"
  1539. #define MSG_FAN_SPEED "Vel. Ventilador"
  1540. #define MSG_FLOW "Fluxe"
  1541. #define MSG_FLOW0 "Fluxe 0"
  1542. #define MSG_FLOW1 "Fluxe 1"
  1543. #define MSG_FLOW2 "Fluxe 2"
  1544. #define MSG_CONTROL "Control"
  1545. #define MSG_MIN " \002 Min"
  1546. #define MSG_MAX " \002 Max"
  1547. #define MSG_FACTOR " \002 Fact"
  1548. #define MSG_AUTOTEMP "Autotemp"
  1549. #define MSG_ON "On "
  1550. #define MSG_OFF "Off"
  1551. #define MSG_PID_P "PID-P"
  1552. #define MSG_PID_I "PID-I"
  1553. #define MSG_PID_D "PID-D"
  1554. #define MSG_PID_C "PID-C"
  1555. #define MSG_ACC "Accel"
  1556. #define MSG_VXY_JERK "Vxy-jerk"
  1557. #define MSG_VZ_JERK "Vz-jerk"
  1558. #define MSG_VE_JERK "Ve-jerk"
  1559. #define MSG_VMAX "Vmax "
  1560. #define MSG_X "x"
  1561. #define MSG_Y "y"
  1562. #define MSG_Z "z"
  1563. #define MSG_E "e"
  1564. #define MSG_VMIN "Vmin"
  1565. #define MSG_VTRAV_MIN "VTrav min"
  1566. #define MSG_AMAX "Amax "
  1567. #define MSG_A_RETRACT "A-retract"
  1568. #define MSG_XSTEPS "Xpassos/mm"
  1569. #define MSG_YSTEPS "Ypassos/mm"
  1570. #define MSG_ZSTEPS "Zpassos/mm"
  1571. #define MSG_ESTEPS "Epassos/mm"
  1572. #define MSG_RECTRACT "Retreure"
  1573. #define MSG_TEMPERATURE "Temperatura"
  1574. #define MSG_MOTION "Moviment"
  1575. #define MSG_CONTRAST "Contrast de LCD"
  1576. #define MSG_STORE_EPROM "Desar a memoria"
  1577. #define MSG_LOAD_EPROM "Carregar de mem."
  1578. #define MSG_RESTORE_FAILSAFE "Rest. emergencia"
  1579. #define MSG_REFRESH "Refrescar"
  1580. #define MSG_WATCH "Pantalla Info."
  1581. #define MSG_PREPARE "Preparar"
  1582. #define MSG_TUNE "Calibrar"
  1583. #define MSG_PAUSE_PRINT "Pausa imp."
  1584. #define MSG_RESUME_PRINT "Reprendre imp."
  1585. #define MSG_STOP_PRINT "Parar inp."
  1586. #define MSG_CARD_MENU "Imprimir de SD"
  1587. #define MSG_NO_CARD "-Sense targeta SD"
  1588. #define MSG_DWELL "Repos..."
  1589. #define MSG_USERWAIT "Esperant usuari.."
  1590. #define MSG_RESUMING "Reprenent imp."
  1591. #define MSG_PRINT_ABORTED "Print aborted"
  1592. #define MSG_NO_MOVE "Sense moviment."
  1593. #define MSG_KILLED "PARADA DE EMERG. "
  1594. #define MSG_STOPPED "ATURAT. "
  1595. #define MSG_CONTROL_RETRACT "Retreure mm"
  1596. #define MSG_CONTROL_RETRACT_SWAP "Swap Retreure mm"
  1597. #define MSG_CONTROL_RETRACTF "Retreure F"
  1598. #define MSG_CONTROL_RETRACT_ZLIFT "Aixecar mm"
  1599. #define MSG_CONTROL_RETRACT_RECOVER "DesRet +mm"
  1600. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Swap DesRet +mm"
  1601. #define MSG_CONTROL_RETRACT_RECOVERF "DesRet F"
  1602. #define MSG_AUTORETRACT "AutoRetr."
  1603. #define MSG_FILAMENTCHANGE "Canviar filament"
  1604. #define MSG_INIT_SDCARD "Iniciant SD"
  1605. #define MSG_CNG_SDCARD "Canviar SD"
  1606. #define MSG_ZPROBE_OUT "Z probe out. bed"
  1607. #define MSG_POSITION_UNKNOWN "Home X/Y abans Z"
  1608. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1609. #define MSG_BABYSTEP_X "Babystep X"
  1610. #define MSG_BABYSTEP_Y "Babystep Y"
  1611. #define MSG_BABYSTEP_Z "Babystep Z"
  1612. #define MSG_ENDSTOP_ABORT "Endstop abort"
  1613. #endif
  1614. //Basque-Euskera
  1615. #if LANGUAGE_CHOICE == 13
  1616. // LCD Menu Messages
  1617. // Please note these are limited to 17 characters!
  1618. #define WELCOME_MSG MACHINE_NAME " prest."
  1619. #define MSG_SD_INSERTED "Txartela sartuta"
  1620. #define MSG_SD_REMOVED "Txartela kenduta"
  1621. #define MSG_MAIN "Menu nagusia"
  1622. #define MSG_AUTOSTART "Auto hasiera"
  1623. #define MSG_DISABLE_STEPPERS "Itzali motoreak"
  1624. #define MSG_AUTO_HOME "Hasierara joan"
  1625. #define MSG_SET_ORIGIN "Hasiera ipini"
  1626. #define MSG_PREHEAT_PLA "Aurreberotu PLA"
  1627. #define MSG_PREHEAT_PLA0 "Aurreberotu PLA1"
  1628. #define MSG_PREHEAT_PLA1 "Aurreberotu PLA2"
  1629. #define MSG_PREHEAT_PLA2 "Aurreberotu PLA3"
  1630. #define MSG_PREHEAT_PLA012 "Berotu PLA Guztia"
  1631. #define MSG_PREHEAT_PLA_BEDONLY "Berotu PLA Ohea"
  1632. #define MSG_PREHEAT_PLA_SETTINGS "Berotu PLA Konfig"
  1633. #define MSG_PREHEAT_ABS "Aurreberotu ABS"
  1634. #define MSG_PREHEAT_ABS0 "Aurreberotu ABS 1"
  1635. #define MSG_PREHEAT_ABS1 "Aurreberotu ABS 2"
  1636. #define MSG_PREHEAT_ABS2 "Aurreberotu ABS 3"
  1637. #define MSG_PREHEAT_ABS012 "Berotu ABS Guztia"
  1638. #define MSG_PREHEAT_ABS_BEDONLY "Berotu ABS Ohea"
  1639. #define MSG_PREHEAT_ABS_SETTINGS "Berotu ABS Konfig"
  1640. #define MSG_COOLDOWN "Hoztu"
  1641. #define MSG_SWITCH_PS_ON "Energia piztu"
  1642. #define MSG_SWITCH_PS_OFF "Energia itzali"
  1643. #define MSG_EXTRUDE "Estruitu"
  1644. #define MSG_RETRACT "Atzera eragin"
  1645. #define MSG_MOVE_AXIS "Ardatzak mugitu"
  1646. #define MSG_MOVE_X "Mugitu X"
  1647. #define MSG_MOVE_Y "Mugitu Y"
  1648. #define MSG_MOVE_Z "Mugitu Z"
  1649. #define MSG_MOVE_E "Estrusorea"
  1650. #define MSG_MOVE_E1 "Estrusorea2"
  1651. #define MSG_MOVE_E2 "Estrusorea3"
  1652. #define MSG_MOVE_01MM "Mugitu 0.1mm"
  1653. #define MSG_MOVE_1MM "Mugitu 1mm"
  1654. #define MSG_MOVE_10MM "Mugitu 10mm"
  1655. #define MSG_SPEED "Abiadura"
  1656. #define MSG_NOZZLE "Pita"
  1657. #define MSG_NOZZLE1 "Pita2"
  1658. #define MSG_NOZZLE2 "Pita3"
  1659. #define MSG_BED "Ohea"
  1660. #define MSG_FAN_SPEED "Haizagailua"
  1661. #define MSG_FLOW "Fluxua"
  1662. #define MSG_FLOW0 "Fluxua 0"
  1663. #define MSG_FLOW1 "Fluxua 1"
  1664. #define MSG_FLOW2 "Fluxua 2"
  1665. #define MSG_CONTROL "Kontrola"
  1666. #define MSG_MIN " \002 Min"
  1667. #define MSG_MAX " \002 Max"
  1668. #define MSG_FACTOR " \002 Faktorea"
  1669. #define MSG_AUTOTEMP "Auto tenperatura"
  1670. #define MSG_ON "On "
  1671. #define MSG_OFF "Off"
  1672. #define MSG_PID_P "PID-P"
  1673. #define MSG_PID_I "PID-I"
  1674. #define MSG_PID_D "PID-D"
  1675. #define MSG_PID_C "PID-C"
  1676. #define MSG_ACC "Azelerazioa"
  1677. #define MSG_VXY_JERK "Vxy-astindua"
  1678. #define MSG_VZ_JERK "Vz-astindua"
  1679. #define MSG_VE_JERK "Ve-astindua"
  1680. #define MSG_VMAX "Vmax "
  1681. #define MSG_X "x"
  1682. #define MSG_Y "y"
  1683. #define MSG_Z "z"
  1684. #define MSG_E "e"
  1685. #define MSG_VMIN "Vmin"
  1686. #define MSG_VTRAV_MIN "VTrav min"
  1687. #define MSG_AMAX "Amax "
  1688. #define MSG_A_RETRACT "A-retrakt"
  1689. #define MSG_XSTEPS "X pausoak/mm"
  1690. #define MSG_YSTEPS "Y pausoak/mm"
  1691. #define MSG_ZSTEPS "Z pausoak/mm"
  1692. #define MSG_ESTEPS "E pausoak/mm"
  1693. #define MSG_RECTRACT "Atzera eragin"
  1694. #define MSG_TEMPERATURE "Tenperatura"
  1695. #define MSG_MOTION "Mugimendua"
  1696. #define MSG_CONTRAST "LCD kontrastea"
  1697. #define MSG_STORE_EPROM "Gorde memoria"
  1698. #define MSG_LOAD_EPROM "Kargatu memoria"
  1699. #define MSG_RESTORE_FAILSAFE "Larri. berriz."
  1700. #define MSG_REFRESH "Berriz kargatu"
  1701. #define MSG_WATCH "Pantaila info"
  1702. #define MSG_PREPARE "Prestatu"
  1703. #define MSG_TUNE "Doitu"
  1704. #define MSG_PAUSE_PRINT "Pausatu inprimak."
  1705. #define MSG_RESUME_PRINT "Jarraitu inprima."
  1706. #define MSG_STOP_PRINT "Gelditu inprima."
  1707. #define MSG_CARD_MENU "SD-tik inprimatu"
  1708. #define MSG_NO_CARD "Ez dago txartelik"
  1709. #define MSG_DWELL "Lo egin..."
  1710. #define MSG_USERWAIT "Aginduak zain..."
  1711. #define MSG_RESUMING "Jarraitzen inpri."
  1712. #define MSG_PRINT_ABORTED "Print aborted"
  1713. #define MSG_NO_MOVE "Mugimendu gabe"
  1714. #define MSG_KILLED "LARRIALDI GELDIA"
  1715. #define MSG_STOPPED "GELDITUTA. "
  1716. #define MSG_CONTROL_RETRACT "Atzera egin mm"
  1717. #define MSG_CONTROL_RETRACT_SWAP "Swap Atzera egin mm"
  1718. #define MSG_CONTROL_RETRACTF "Atzera egin V"
  1719. #define MSG_CONTROL_RETRACT_ZLIFT "Igo mm"
  1720. #define MSG_CONTROL_RETRACT_RECOVER "Atzera egin +mm"
  1721. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Swap Atzera egin +mm"
  1722. #define MSG_CONTROL_RETRACT_RECOVERF "Atzera egin V"
  1723. #define MSG_AUTORETRACT "Atzera egin"
  1724. #define MSG_FILAMENTCHANGE "Aldatu filament."
  1725. #define MSG_INIT_SDCARD "Hasieratu txartela"
  1726. #define MSG_CNG_SDCARD "Aldatu txartela"
  1727. #define MSG_ZPROBE_OUT "Z ohe hasiera"
  1728. #define MSG_POSITION_UNKNOWN "Posizio ezezaguna"
  1729. #define MSG_ZPROBE_ZOFFSET "Z konpentsatu"
  1730. #define MSG_BABYSTEP_X "Babystep X"
  1731. #define MSG_BABYSTEP_Y "Babystep Y"
  1732. #define MSG_BABYSTEP_Z "Babystep Z"
  1733. #define MSG_ENDSTOP_ABORT "Endstop deuseztat"
  1734. #endif
  1735. #endif // ifndef LANGUAGE_H