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 88KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103
  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. #ifndef LANGUAGE_CHOICE
  20. #define LANGUAGE_CHOICE 1 // Pick your language from the list above
  21. #endif
  22. #define PROTOCOL_VERSION "1.0"
  23. #if MOTHERBOARD == 7 || MOTHERBOARD == 71 || MOTHERBOARD == 72
  24. #define MACHINE_NAME "Ultimaker"
  25. #define FIRMWARE_URL "http://firmware.ultimaker.com"
  26. #elif MOTHERBOARD == 80
  27. #define MACHINE_NAME "Rumba"
  28. #define FIRMWARE_URL "https://github.com/ErikZalm/Marlin/"
  29. #elif MOTHERBOARD == 77
  30. #define MACHINE_NAME "3Drag"
  31. #define FIRMWARE_URL "http://3dprint.elettronicain.it/"
  32. #else
  33. #ifdef CUSTOM_MENDEL_NAME
  34. #define MACHINE_NAME CUSTOM_MENDEL_NAME
  35. #else
  36. #define MACHINE_NAME "Mendel"
  37. #endif
  38. // Default firmware set to Mendel
  39. #define FIRMWARE_URL "https://github.com/ErikZalm/Marlin/"
  40. #endif
  41. #ifndef MACHINE_UUID
  42. #define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
  43. #endif
  44. #define STRINGIFY_(n) #n
  45. #define STRINGIFY(n) STRINGIFY_(n)
  46. // Common LCD messages
  47. /* nothing here as of yet */
  48. // Common serial messages
  49. #define MSG_MARLIN "Marlin"
  50. #if LANGUAGE_CHOICE == 1
  51. // LCD Menu Messages
  52. // Please note these are limited to 17 characters!
  53. #define WELCOME_MSG MACHINE_NAME " ready."
  54. #define MSG_SD_INSERTED "Card inserted"
  55. #define MSG_SD_REMOVED "Card removed"
  56. #define MSG_MAIN "Main"
  57. #define MSG_AUTOSTART "Autostart"
  58. #define MSG_DISABLE_STEPPERS "Disable steppers"
  59. #define MSG_AUTO_HOME "Auto home"
  60. #define MSG_SET_ORIGIN "Set origin"
  61. #define MSG_PREHEAT_PLA "Preheat PLA"
  62. #define MSG_PREHEAT_PLA_SETTINGS "Preheat PLA conf"
  63. #define MSG_PREHEAT_ABS "Preheat ABS"
  64. #define MSG_PREHEAT_ABS_SETTINGS "Preheat ABS conf"
  65. #define MSG_COOLDOWN "Cooldown"
  66. #define MSG_SWITCH_PS_ON "Switch power on"
  67. #define MSG_SWITCH_PS_OFF "Switch power off"
  68. #define MSG_EXTRUDE "Extrude"
  69. #define MSG_RETRACT "Retract"
  70. #define MSG_MOVE_AXIS "Move axis"
  71. #define MSG_MOVE_X "Move X"
  72. #define MSG_MOVE_Y "Move Y"
  73. #define MSG_MOVE_Z "Move Z"
  74. #define MSG_MOVE_E "Extruder"
  75. #define MSG_MOVE_01MM "Move 0.1mm"
  76. #define MSG_MOVE_1MM "Move 1mm"
  77. #define MSG_MOVE_10MM "Move 10mm"
  78. #define MSG_SPEED "Speed"
  79. #define MSG_NOZZLE "Nozzle"
  80. #define MSG_NOZZLE1 "Nozzle2"
  81. #define MSG_NOZZLE2 "Nozzle3"
  82. #define MSG_BED "Bed"
  83. #define MSG_FAN_SPEED "Fan speed"
  84. #define MSG_FLOW "Flow"
  85. #define MSG_CONTROL "Control"
  86. #define MSG_MIN " \002 Min"
  87. #define MSG_MAX " \002 Max"
  88. #define MSG_FACTOR " \002 Fact"
  89. #define MSG_AUTOTEMP "Autotemp"
  90. #define MSG_ON "On "
  91. #define MSG_OFF "Off"
  92. #define MSG_PID_P "PID-P"
  93. #define MSG_PID_I "PID-I"
  94. #define MSG_PID_D "PID-D"
  95. #define MSG_PID_C "PID-C"
  96. #define MSG_ACC "Accel"
  97. #define MSG_VXY_JERK "Vxy-jerk"
  98. #define MSG_VZ_JERK "Vz-jerk"
  99. #define MSG_VE_JERK "Ve-jerk"
  100. #define MSG_VMAX "Vmax "
  101. #define MSG_X "x"
  102. #define MSG_Y "y"
  103. #define MSG_Z "z"
  104. #define MSG_E "e"
  105. #define MSG_VMIN "Vmin"
  106. #define MSG_VTRAV_MIN "VTrav min"
  107. #define MSG_AMAX "Amax "
  108. #define MSG_A_RETRACT "A-retract"
  109. #define MSG_XSTEPS "Xsteps/mm"
  110. #define MSG_YSTEPS "Ysteps/mm"
  111. #define MSG_ZSTEPS "Zsteps/mm"
  112. #define MSG_ESTEPS "Esteps/mm"
  113. #define MSG_RECTRACT "Rectract"
  114. #define MSG_TEMPERATURE "Temperature"
  115. #define MSG_MOTION "Motion"
  116. #define MSG_CONTRAST "LCD contrast"
  117. #define MSG_STORE_EPROM "Store memory"
  118. #define MSG_LOAD_EPROM "Load memory"
  119. #define MSG_RESTORE_FAILSAFE "Restore failsafe"
  120. #define MSG_REFRESH "Refresh"
  121. #define MSG_WATCH "Info screen"
  122. #define MSG_PREPARE "Prepare"
  123. #define MSG_TUNE "Tune"
  124. #define MSG_PAUSE_PRINT "Pause print"
  125. #define MSG_RESUME_PRINT "Resume print"
  126. #define MSG_STOP_PRINT "Stop print"
  127. #define MSG_CARD_MENU "Print from SD"
  128. #define MSG_NO_CARD "No SD card"
  129. #define MSG_DWELL "Sleep..."
  130. #define MSG_USERWAIT "Wait for user..."
  131. #define MSG_RESUMING "Resuming print"
  132. #define MSG_NO_MOVE "No move."
  133. #define MSG_KILLED "KILLED. "
  134. #define MSG_STOPPED "STOPPED. "
  135. #define MSG_CONTROL_RETRACT "Retract mm"
  136. #define MSG_CONTROL_RETRACTF "Retract F"
  137. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  138. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  139. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet F"
  140. #define MSG_AUTORETRACT "AutoRetr."
  141. #define MSG_FILAMENTCHANGE "Change filament"
  142. #define MSG_INIT_SDCARD "Init. SD card"
  143. #define MSG_CNG_SDCARD "Change SD card"
  144. #define MSG_ZPROBE_OUT "Z probe out. bed"
  145. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  146. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  147. #define MSG_BABYSTEP_X "Babystep X"
  148. #define MSG_BABYSTEP_Y "Babystep Y"
  149. #define MSG_BABYSTEP_Z "Babystep Z"
  150. #define MSG_ENDSTOP_ABORT "Endstop abort"
  151. // Serial Console Messages
  152. #define MSG_Enqueing "enqueing \""
  153. #define MSG_POWERUP "PowerUp"
  154. #define MSG_EXTERNAL_RESET " External Reset"
  155. #define MSG_BROWNOUT_RESET " Brown out Reset"
  156. #define MSG_WATCHDOG_RESET " Watchdog Reset"
  157. #define MSG_SOFTWARE_RESET " Software Reset"
  158. #define MSG_AUTHOR " | Author: "
  159. #define MSG_CONFIGURATION_VER " Last Updated: "
  160. #define MSG_FREE_MEMORY " Free Memory: "
  161. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  162. #define MSG_OK "ok"
  163. #define MSG_FILE_SAVED "Done saving file."
  164. #define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line: "
  165. #define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line: "
  166. #define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line: "
  167. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line: "
  168. #define MSG_FILE_PRINTED "Done printing file"
  169. #define MSG_BEGIN_FILE_LIST "Begin file list"
  170. #define MSG_END_FILE_LIST "End file list"
  171. #define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
  172. #define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
  173. #define MSG_M200_INVALID_EXTRUDER "M200 Invalid extruder "
  174. #define MSG_M218_INVALID_EXTRUDER "M218 Invalid extruder "
  175. #define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature"
  176. #define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
  177. #define MSG_HEATING "Heating..."
  178. #define MSG_HEATING_COMPLETE "Heating done."
  179. #define MSG_BED_HEATING "Bed Heating."
  180. #define MSG_BED_DONE "Bed done."
  181. #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"
  182. #define MSG_COUNT_X " Count X: "
  183. #define MSG_ERR_KILLED "Printer halted. kill() called!"
  184. #define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)"
  185. #define MSG_RESEND "Resend: "
  186. #define MSG_UNKNOWN_COMMAND "Unknown command: \""
  187. #define MSG_ACTIVE_EXTRUDER "Active Extruder: "
  188. #define MSG_INVALID_EXTRUDER "Invalid extruder"
  189. #define MSG_X_MIN "x_min: "
  190. #define MSG_X_MAX "x_max: "
  191. #define MSG_Y_MIN "y_min: "
  192. #define MSG_Y_MAX "y_max: "
  193. #define MSG_Z_MIN "z_min: "
  194. #define MSG_Z_MAX "z_max: "
  195. #define MSG_M119_REPORT "Reporting endstop status"
  196. #define MSG_ENDSTOP_HIT "TRIGGERED"
  197. #define MSG_ENDSTOP_OPEN "open"
  198. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  199. #define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
  200. #define MSG_SD_INIT_FAIL "SD init fail"
  201. #define MSG_SD_VOL_INIT_FAIL "volume.init failed"
  202. #define MSG_SD_OPENROOT_FAIL "openRoot failed"
  203. #define MSG_SD_CARD_OK "SD card ok"
  204. #define MSG_SD_WORKDIR_FAIL "workDir open failed"
  205. #define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
  206. #define MSG_SD_FILE_OPENED "File opened: "
  207. #define MSG_SD_SIZE " Size: "
  208. #define MSG_SD_FILE_SELECTED "File selected"
  209. #define MSG_SD_WRITE_TO_FILE "Writing to file: "
  210. #define MSG_SD_PRINTING_BYTE "SD printing byte "
  211. #define MSG_SD_NOT_PRINTING "Not SD printing"
  212. #define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
  213. #define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir: "
  214. #define MSG_STEPPER_TOO_HIGH "Steprate too high: "
  215. #define MSG_ENDSTOPS_HIT "endstops hit: "
  216. #define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
  217. #define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
  218. #define MSG_BABYSTEPPING_X "Babystepping X"
  219. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  220. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  221. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
  222. #endif
  223. #if LANGUAGE_CHOICE == 2
  224. // LCD Menu Messages
  225. // Please note these are limited to 17 characters!
  226. #define WELCOME_MSG MACHINE_NAME " gotowy."
  227. #define MSG_SD_INSERTED "Karta wlozona"
  228. #define MSG_SD_REMOVED "Karta usunieta"
  229. #define MSG_MAIN "Menu glowne"
  230. #define MSG_AUTOSTART "Autostart"
  231. #define MSG_DISABLE_STEPPERS "Wylacz silniki"
  232. #define MSG_AUTO_HOME "Auto. poz. zerowa"
  233. #define MSG_SET_ORIGIN "Ustaw punkt zero"
  234. #define MSG_PREHEAT_PLA "Rozgrzej PLA"
  235. #define MSG_PREHEAT_PLA_SETTINGS "Ustaw. rozg. PLA"
  236. #define MSG_PREHEAT_ABS "Rozgrzej ABS"
  237. #define MSG_PREHEAT_ABS_SETTINGS "Ustaw. rozg. ABS"
  238. #define MSG_COOLDOWN "Chlodzenie"
  239. #define MSG_SWITCH_PS_ON "Wlacz zasilacz"
  240. #define MSG_SWITCH_PS_OFF "Wylacz zasilacz"
  241. #define MSG_EXTRUDE "Ekstruzja"
  242. #define MSG_RETRACT "Cofanie"
  243. #define MSG_MOVE_AXIS "Ruch osi"
  244. #define MSG_MOVE_X "Przesun w X"
  245. #define MSG_MOVE_Y "Przesun w Y"
  246. #define MSG_MOVE_Z "Przesun w Z"
  247. #define MSG_MOVE_E "Ekstruzja (os E)"
  248. #define MSG_MOVE_01MM "Przesuwaj co .1mm"
  249. #define MSG_MOVE_1MM "Przesuwaj co 1mm"
  250. #define MSG_MOVE_10MM "Przesuwaj co 10mm"
  251. #define MSG_SPEED "Predkosc"
  252. #define MSG_NOZZLE "Dysza"
  253. #define MSG_NOZZLE1 "Dysza 2"
  254. #define MSG_NOZZLE2 "Dysza 3"
  255. #define MSG_BED "Loze"
  256. #define MSG_FAN_SPEED "Obroty wiatraka"
  257. #define MSG_FLOW "Przeplyw"
  258. #define MSG_CONTROL "Kontrola"
  259. #define MSG_MIN " \002 Min"
  260. #define MSG_MAX " \002 Max"
  261. #define MSG_FACTOR " \002 Mnoznik"
  262. #define MSG_AUTOTEMP "Auto. temperatura"
  263. #define MSG_ON "Wl. "
  264. #define MSG_OFF "Wyl."
  265. #define MSG_PID_P "PID-P"
  266. #define MSG_PID_I "PID-I"
  267. #define MSG_PID_D "PID-D"
  268. #define MSG_PID_C "PID-C"
  269. #define MSG_ACC "Przyspieszenie"
  270. #define MSG_VXY_JERK "Zryw Vxy"
  271. #define MSG_VZ_JERK "Zryw Vz"
  272. #define MSG_VE_JERK "Zryw Ve"
  273. #define MSG_VMAX "Vmax"
  274. #define MSG_X "x"
  275. #define MSG_Y "y"
  276. #define MSG_Z "z"
  277. #define MSG_E "e"
  278. #define MSG_VMIN "Vmin"
  279. #define MSG_VTRAV_MIN "Vskok min"
  280. #define MSG_AMAX "Amax"
  281. #define MSG_A_RETRACT "A-wycofanie"
  282. #define MSG_XSTEPS "krokiX/mm"
  283. #define MSG_YSTEPS "krokiY/mm"
  284. #define MSG_ZSTEPS "krokiZ/mm"
  285. #define MSG_ESTEPS "krokiE/mm"
  286. #define MSG_RECTRACT "Wycofanie"
  287. #define MSG_TEMPERATURE "Temperatura"
  288. #define MSG_MOTION "Ruch"
  289. #define MSG_CONTRAST "Kontrast LCD"
  290. #define MSG_STORE_EPROM "Zapisz w pamieci"
  291. #define MSG_LOAD_EPROM "Wczytaj z pamieci"
  292. #define MSG_RESTORE_FAILSAFE "Ustaw. fabryczne"
  293. #define MSG_REFRESH "\004Odswiez"
  294. #define MSG_WATCH "Ekran glowny"
  295. #define MSG_PREPARE "Przygotuj"
  296. #define MSG_CONTROL "Ustawienia"
  297. #define MSG_TUNE "Strojenie"
  298. #define MSG_PAUSE_PRINT "Pauza"
  299. #define MSG_RESUME_PRINT "Wznowienie"
  300. #define MSG_STOP_PRINT "Stop"
  301. #define MSG_CARD_MENU "Menu karty SD"
  302. #define MSG_NO_CARD "Brak karty"
  303. #define MSG_DWELL "Uspij..."
  304. #define MSG_USERWAIT "Oczekiwanie..."
  305. #define MSG_RESUMING "Wznawianie druku"
  306. #define MSG_NO_MOVE "Brak ruchu"
  307. #define MSG_KILLED "Ubity. "
  308. #define MSG_STOPPED "Zatrzymany. "
  309. #define MSG_STEPPER_RELEASED "Zwolniony."
  310. #define MSG_CONTROL_RETRACT "Wycofaj mm"
  311. #define MSG_CONTROL_RETRACTF "Wycofaj F"
  312. #define MSG_CONTROL_RETRACT_ZLIFT "Skok Z mm:"
  313. #define MSG_CONTROL_RETRACT_RECOVER "Cof. wycof. +mm"
  314. #define MSG_CONTROL_RETRACT_RECOVERF "Cof. wycof. F"
  315. #define MSG_AUTORETRACT "Auto. wycofanie"
  316. #define MSG_FILAMENTCHANGE "Zmien filament"
  317. #define MSG_INIT_SDCARD "Inicjal. karty SD"
  318. #define MSG_CNG_SDCARD "Zmiana karty SD"
  319. #define MSG_ZPROBE_OUT "Sonda Z za lozem"
  320. #define MSG_POSITION_UNKNOWN "Wroc w XY przed Z"
  321. #define MSG_ZPROBE_ZOFFSET "Offset Z"
  322. #define MSG_BABYSTEP_X "Babystep X"
  323. #define MSG_BABYSTEP_Y "Babystep Y"
  324. #define MSG_BABYSTEP_Z "Babystep Z"
  325. #define MSG_ENDSTOP_ABORT "Blad wyl. kranc."
  326. #define MSG_CONTRAST "Kontrast"
  327. // Serial Console Messages
  328. #define MSG_Enqueing "Kolejkowanie \""
  329. #define MSG_POWERUP "Zasilanie wlaczone"
  330. #define MSG_EXTERNAL_RESET " Reset (zewnetrzny)"
  331. #define MSG_BROWNOUT_RESET " Reset (spadek napiecia)"
  332. #define MSG_WATCHDOG_RESET " Reset (watchdog)"
  333. #define MSG_SOFTWARE_RESET " Reset (programowy)"
  334. #define MSG_AUTHOR " | Autor: "
  335. #define MSG_CONFIGURATION_VER " Ostatnia aktualizacja: "
  336. #define MSG_FREE_MEMORY " Wolna pamiec: "
  337. #define MSG_PLANNER_BUFFER_BYTES " Bufor planisty krokow (w bajtach): "
  338. #define MSG_OK "OK"
  339. #define MSG_FILE_SAVED "Plik zapisany."
  340. #define MSG_ERR_LINE_NO "Numer linijki nie jest ostatnim numerem linijki+1; ostatnia linijka:"
  341. #define MSG_ERR_CHECKSUM_MISMATCH "Niezgodna suma kontrolna; ostatnia linijka: "
  342. #define MSG_ERR_NO_CHECKSUM "Brak sumy kontrolnej w linijce; ostatnia linijka:"
  343. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "Brak numery linijki przy sumie kontrolnej; ostatnia linijka:"
  344. #define MSG_FILE_PRINTED "Ukonczono wydruk z pliku"
  345. #define MSG_BEGIN_FILE_LIST "Start listy plikow"
  346. #define MSG_END_FILE_LIST "Koniec listy plikow"
  347. #define MSG_M104_INVALID_EXTRUDER "M104 Niepoprawny ekstruder "
  348. #define MSG_M105_INVALID_EXTRUDER "M105 Niepoprawny ekstruder "
  349. #define MSG_M200_INVALID_EXTRUDER "M200 Niepoprawny ekstruder "
  350. #define MSG_M218_INVALID_EXTRUDER "M218 Niepoprawny ekstruder "
  351. #define MSG_ERR_NO_THERMISTORS "Brak termistorow - brak temperatury :("
  352. #define MSG_M109_INVALID_EXTRUDER "M109 Niepoprawny ekstruder "
  353. #define MSG_HEATING "Nagrzewanie ekstrudera..."
  354. #define MSG_HEATING_COMPLETE "Nagrzewanie ekstrudera zakonczone."
  355. #define MSG_BED_HEATING "Nagrzewanie loza..."
  356. #define MSG_BED_DONE "Nagrzewanie loza zakonczone."
  357. #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"
  358. #define MSG_COUNT_X " Licznik X: "
  359. #define MSG_ERR_KILLED "Drukarka zatrzymana. Wywolano kill()"
  360. #define MSG_ERR_STOPPED "Drukarka zatrzymana z powodu bledu. Usun problem i zrestartuj drukartke komenda M999. (temperatura zostala zresetowana; ustaw temperature po restarcie)"
  361. #define MSG_RESEND "Wyslij ponownie: "
  362. #define MSG_UNKNOWN_COMMAND "Nieznane polecenie: \""
  363. #define MSG_ACTIVE_EXTRUDER "Aktywny ekstruder: "
  364. #define MSG_INVALID_EXTRUDER "Niepoprawny ekstruder"
  365. #define MSG_X_MIN "x_min: "
  366. #define MSG_X_MAX "x_max: "
  367. #define MSG_Y_MIN "y_min: "
  368. #define MSG_Y_MAX "y_max: "
  369. #define MSG_Z_MIN "z_min: "
  370. #define MSG_Z_MAX "z_max: "
  371. #define MSG_M119_REPORT "Zgloszenie statusu wylacznikow krancowych"
  372. #define MSG_ENDSTOP_HIT "Wyzwolony"
  373. #define MSG_ENDSTOP_OPEN "Otwarty"
  374. #define MSG_HOTEND_OFFSET "Offsety dysz:"
  375. #define MSG_SD_CANT_OPEN_SUBDIR "Nie mozna otworzyc podkatalogu"
  376. #define MSG_SD_INIT_FAIL "Blad inicjalizacji karty SD"
  377. #define MSG_SD_VOL_INIT_FAIL "Blad inizjalizacji wolumenu"
  378. #define MSG_SD_OPENROOT_FAIL "Blad odczytywania katalogu glownego"
  379. #define MSG_SD_CARD_OK "Karta SD zainicjalizowana"
  380. #define MSG_SD_WORKDIR_FAIL "Blad odczytywania katalogu roboczego"
  381. #define MSG_SD_OPEN_FILE_FAIL "Nie mozna otworzyc pliku: "
  382. #define MSG_SD_FILE_OPENED "Otwarto plik:"
  383. #define MSG_SD_SIZE " Rozmiar:"
  384. #define MSG_SD_FILE_SELECTED "Wybrano plik"
  385. #define MSG_SD_WRITE_TO_FILE "Zapisywanie do pliku: "
  386. #define MSG_SD_PRINTING_BYTE "Drukowanie z karty SD, bajt "
  387. #define MSG_SD_NOT_PRINTING "Nie trwa drukowanie z karty SD"
  388. #define MSG_SD_ERR_WRITE_TO_FILE "Wystapil blad podczas zapisu do pliku"
  389. #define MSG_SD_CANT_ENTER_SUBDIR "Nie mozna odczytac podkatalogu: "
  390. #define MSG_STEPPER_TOO_HIGH "Za duza czestotliwosc krokow: "
  391. #define MSG_ENDSTOPS_HIT "Wylacznik krancowy zostal wyzwolony na pozycji: "
  392. #define MSG_ERR_COLD_EXTRUDE_STOP " uniemozliwiono zimna ekstruzje"
  393. #define MSG_ERR_LONG_EXTRUDE_STOP " uniemozliwiono zbyt dluga ekstruzje"
  394. #define MSG_BABYSTEPPING_X "Babystepping w osi X"
  395. #define MSG_BABYSTEPPING_Y "Babystepping w osi Y"
  396. #define MSG_BABYSTEPPING_Z "Babystepping w osi Z"
  397. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
  398. #endif
  399. #if LANGUAGE_CHOICE == 3
  400. // LCD Menu Messages
  401. // Please note these are limited to 17 characters!
  402. #define WELCOME_MSG MACHINE_NAME " prete."
  403. #define MSG_SD_INSERTED "Carte inseree"
  404. #define MSG_SD_REMOVED "Carte retiree"
  405. #define MSG_MAIN "Menu principal"
  406. #define MSG_AUTOSTART "Demarrage auto"
  407. #define MSG_DISABLE_STEPPERS "Arreter moteurs"
  408. #define MSG_AUTO_HOME "Home auto."
  409. #define MSG_SET_ORIGIN "Regler origine"
  410. #define MSG_PREHEAT_PLA " Prechauffage PLA"
  411. #define MSG_PREHEAT_PLA_SETTINGS " Regl. prech. PLA"
  412. #define MSG_PREHEAT_ABS "Prechauffage ABS"
  413. #define MSG_PREHEAT_ABS_SETTINGS "Regl. prech. ABS"
  414. #define MSG_COOLDOWN "Refroidir"
  415. #define MSG_SWITCH_PS_ON "Allumer alim."
  416. #define MSG_SWITCH_PS_OFF "Eteindre alim."
  417. #define MSG_EXTRUDE "Extrusion"
  418. #define MSG_RETRACT "Retraction"
  419. #define MSG_PREHEAT_PLA "Prechauffage PLA"
  420. #define MSG_PREHEAT_ABS "Prechauffage ABS"
  421. #define MSG_MOVE_AXIS "Deplacer un axe"
  422. #define MSG_MOVE_X "Move X"
  423. #define MSG_MOVE_Y "Move Y"
  424. #define MSG_MOVE_Z "Move Z"
  425. #define MSG_MOVE_E "Extruder"
  426. #define MSG_MOVE_01MM "Move 0.1mm"
  427. #define MSG_MOVE_1MM "Move 1mm"
  428. #define MSG_MOVE_10MM "Move 10mm"
  429. #define MSG_SPEED " Vitesse"
  430. #define MSG_NOZZLE "Buse"
  431. #define MSG_NOZZLE1 "Buse2"
  432. #define MSG_NOZZLE2 "Buse3"
  433. #define MSG_BED "Plateau"
  434. #define MSG_FAN_SPEED "Vite. ventilateur"
  435. #define MSG_FLOW "Flux"
  436. #define MSG_CONTROL "Controler"
  437. #define MSG_MIN " \002 Min"
  438. #define MSG_MAX " \002 Max"
  439. #define MSG_FACTOR " \002 Facteur"
  440. #define MSG_AUTOTEMP "Temp. Auto."
  441. #define MSG_ON "Marche "
  442. #define MSG_OFF "Arret"
  443. #define MSG_PID_P "PID-P"
  444. #define MSG_PID_I "PID-I"
  445. #define MSG_PID_D "PID-D"
  446. #define MSG_PID_C "PID-C"
  447. #define MSG_ACC "Accel"
  448. #define MSG_VXY_JERK "Vxy-jerk"
  449. #define MSG_VZ_JERK "Vz-jerk"
  450. #define MSG_VE_JERK "Ve-jerk"
  451. #define MSG_VMAX "Vmax"
  452. #define MSG_X "x"
  453. #define MSG_Y "y"
  454. #define MSG_Z "z"
  455. #define MSG_E "e"
  456. #define MSG_VMIN "Vmin"
  457. #define MSG_VTRAV_MIN "Vdepl min"
  458. #define MSG_AMAX "Amax "
  459. #define MSG_A_RETRACT "A-retract"
  460. #define MSG_XSTEPS "Xpas/mm"
  461. #define MSG_YSTEPS "Ypas/mm"
  462. #define MSG_ZSTEPS "Zpas/mm"
  463. #define MSG_ESTEPS "Epas/mm"
  464. #define MSG_TEMPERATURE "Temperature"
  465. #define MSG_MOTION "Mouvement"
  466. #define MSG_CONTRAST "Contraste LCD"
  467. #define MSG_STORE_EPROM "Sauver config"
  468. #define MSG_LOAD_EPROM "Lire config"
  469. #define MSG_RESTORE_FAILSAFE "Restaurer defauts"
  470. #define MSG_REFRESH "Actualiser"
  471. #define MSG_WATCH "Surveiller"
  472. #define MSG_PREPARE "Preparer"
  473. #define MSG_TUNE "Regler"
  474. #define MSG_PAUSE_PRINT "Interrompre impr."
  475. #define MSG_RESUME_PRINT "Reprendre impr."
  476. #define MSG_STOP_PRINT "Arreter impr."
  477. #define MSG_CARD_MENU "Impr. depuis SD"
  478. #define MSG_NO_CARD "Pas de carte"
  479. #define MSG_DWELL "Repos..."
  480. #define MSG_USERWAIT "Atten. de l'util."
  481. #define MSG_RESUMING "Repri. de l'impr."
  482. #define MSG_NO_MOVE "Aucun mouvement."
  483. #define MSG_KILLED "MORT."
  484. #define MSG_STOPPED "STOPPE."
  485. #define MSG_STEPPER_RELEASED "RELACHE."
  486. #define MSG_CONTROL_RETRACT "Retraction mm"
  487. #define MSG_CONTROL_RETRACTF "Retraction F"
  488. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  489. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  490. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet F"
  491. #define MSG_AUTORETRACT "Retract. Auto."
  492. #define MSG_FILAMENTCHANGE "Changer filament"
  493. #define MSG_INIT_SDCARD "Init. la carte SD"
  494. #define MSG_CNG_SDCARD "Changer de carte"
  495. #define MSG_ZPROBE_OUT "Z sonde exte. lit"
  496. #define MSG_POSITION_UNKNOWN "Rev. dans XY av.Z"
  497. #define MSG_ZPROBE_ZOFFSET "Offset Z"
  498. #define MSG_BABYSTEP_X "Babystep X"
  499. #define MSG_BABYSTEP_Y "Babystep Y"
  500. #define MSG_BABYSTEP_Z "Babystep Z"
  501. #define MSG_ENDSTOP_ABORT "Butee abandon"
  502. #define MSG_CONTRAST "Contrast"
  503. // Serial Console Messages
  504. #define MSG_Enqueing "Mise en tampon \""
  505. #define MSG_POWERUP "Allumage"
  506. #define MSG_EXTERNAL_RESET " RAZ Externe"
  507. #define MSG_BROWNOUT_RESET " RAZ defaut alim."
  508. #define MSG_WATCHDOG_RESET " RAZ Watchdog"
  509. #define MSG_SOFTWARE_RESET " RAZ logicielle"
  510. #define MSG_AUTHOR " | Auteur: "
  511. #define MSG_CONFIGURATION_VER " Derniere MaJ: "
  512. #define MSG_FREE_MEMORY " Memoire libre: "
  513. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  514. #define MSG_OK "ok"
  515. #define MSG_FILE_SAVED "Fichier enregistre."
  516. #define MSG_ERR_LINE_NO "Le numero de ligne n'est pas la derniere ligne + 1, derniere ligne: "
  517. #define MSG_ERR_CHECKSUM_MISMATCH "Erreur somme de controle, derniere ligne: "
  518. #define MSG_ERR_NO_CHECKSUM "Pas de somme de controle avec le numero de ligne, derniere ligne: "
  519. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "Pas de numero de ligne avec somme de controle, derniere ligne: "
  520. #define MSG_FILE_PRINTED "Impression terminee"
  521. #define MSG_BEGIN_FILE_LIST "Debut de la liste de fichiers"
  522. #define MSG_END_FILE_LIST "Fin de la liste de fichiers"
  523. #define MSG_M104_INVALID_EXTRUDER "M104 Extruder invalide"
  524. #define MSG_M105_INVALID_EXTRUDER "M105 Extruder invalide"
  525. #define MSG_M200_INVALID_EXTRUDER "M200 Extruder invalide"
  526. #define MSG_M218_INVALID_EXTRUDER "M218 Extruder invalide"
  527. #define MSG_ERR_NO_THERMISTORS "Pas de thermistor, pas de temperature"
  528. #define MSG_M109_INVALID_EXTRUDER "M109 Extruder invalide "
  529. #define MSG_HEATING "En chauffe..."
  530. #define MSG_HEATING_COMPLETE "Chauffe terminee."
  531. #define MSG_BED_HEATING "Chauffe du lit."
  532. #define MSG_BED_DONE "Chauffe du lit terminee."
  533. #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"
  534. #define MSG_COUNT_X " Compteur X: "
  535. #define MSG_ERR_KILLED "Impression arretee. kill() appelee!"
  536. #define MSG_ERR_STOPPED "Impression arretee a cause d'erreurs. Corriger les erreurs et utiliser M999 pour la reprendre. (Temperature remise a zero. Reactivez la apres redemarrage)"
  537. #define MSG_RESEND "Renvoie: "
  538. #define MSG_UNKNOWN_COMMAND "Commande inconnue: \""
  539. #define MSG_ACTIVE_EXTRUDER "Extrudeur actif: "
  540. #define MSG_INVALID_EXTRUDER "Extrudeur invalide"
  541. #define MSG_X_MIN "x_min: "
  542. #define MSG_X_MAX "x_max: "
  543. #define MSG_Y_MIN "y_min: "
  544. #define MSG_Y_MAX "y_max: "
  545. #define MSG_Z_MIN "z_min: "
  546. #define MSG_Z_MAX "z_max: "
  547. #define MSG_M119_REPORT "Affichage du status des fin de course"
  548. #define MSG_ENDSTOP_HIT "DECLENCHE"
  549. #define MSG_ENDSTOP_OPEN "OUVERT"
  550. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  551. #define MSG_SD_CANT_OPEN_SUBDIR "Impossible d'ouvrir le sous-repertoire"
  552. #define MSG_SD_INIT_FAIL "Echec de l'initialisation de la SD"
  553. #define MSG_SD_VOL_INIT_FAIL "Echec de volume.init"
  554. #define MSG_SD_OPENROOT_FAIL "Echec openRoot"
  555. #define MSG_SD_CARD_OK "Carte SD Ok"
  556. #define MSG_SD_WORKDIR_FAIL "Echec d'ouverture workDir"
  557. #define MSG_SD_OPEN_FILE_FAIL "Echec d'ouverture, Fichier: "
  558. #define MSG_SD_FILE_OPENED "Fichier ouvert: "
  559. #define MSG_SD_SIZE " Taille: "
  560. #define MSG_SD_FILE_SELECTED "Fichier selectionne"
  561. #define MSG_SD_WRITE_TO_FILE "Ecriture dans le fichier: "
  562. #define MSG_SD_PRINTING_BYTE "Octet impression SD "
  563. #define MSG_SD_NOT_PRINTING "Pas d'impression SD"
  564. #define MSG_SD_ERR_WRITE_TO_FILE "Erreur d'ecriture dans le fichier"
  565. #define MSG_SD_CANT_ENTER_SUBDIR "Impossible d'entrer dans le sous-repertoire: "
  566. #define MSG_STEPPER_TOO_HIGH "Steprate trop eleve: "
  567. #define MSG_ENDSTOPS_HIT "Fin de course atteint: "
  568. #define MSG_ERR_COLD_EXTRUDE_STOP " Extrusion a froid evitee"
  569. #define MSG_ERR_LONG_EXTRUDE_STOP " Extrusion longue evitee"
  570. #define MSG_BABYSTEPPING_X "Babystepping X"
  571. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  572. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  573. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
  574. #endif
  575. #if LANGUAGE_CHOICE == 4
  576. // LCD Menu Messages
  577. // Please note these are limited to 17 characters!
  578. #define WELCOME_MSG MACHINE_NAME " Bereit."
  579. #define MSG_SD_INSERTED "SDKarte erkannt"
  580. #define MSG_SD_REMOVED "SDKarte entfernt"
  581. #define MSG_MAIN "Hauptmenü"
  582. #define MSG_AUTOSTART "Autostart"
  583. #define MSG_DISABLE_STEPPERS "Stepper abschalt."
  584. #define MSG_AUTO_HOME "Auto Nullpunkt"
  585. #define MSG_SET_ORIGIN "Setze Nullpunkt"
  586. #define MSG_PREHEAT_PLA "Vorwärmen PLA"
  587. #define MSG_PREHEAT_PLA_SETTINGS "Vorwärm. PLA Ein."
  588. #define MSG_PREHEAT_ABS "Vorwärmen ABS"
  589. #define MSG_PREHEAT_ABS_SETTINGS "Vorwärm. ABS Ein."
  590. #define MSG_COOLDOWN "Abkühlen"
  591. #define MSG_SWITCH_PS_ON "Switch Power On"
  592. #define MSG_SWITCH_PS_OFF "Switch Power Off"
  593. #define MSG_EXTRUDE "Extrude"
  594. #define MSG_RETRACT "Retract"
  595. #define MSG_MOVE_AXIS "Achsen bewegen"
  596. #define MSG_MOVE_X "X bewegen"
  597. #define MSG_MOVE_Y "Y bewegen"
  598. #define MSG_MOVE_Z "Z bewegen"
  599. #define MSG_MOVE_E "Extruder"
  600. #define MSG_MOVE_01MM "0.1mm bewegen"
  601. #define MSG_MOVE_1MM "1mm bewegen"
  602. #define MSG_MOVE_10MM "10mm bewegen"
  603. #define MSG_SPEED "Geschw"
  604. #define MSG_NOZZLE "Düse"
  605. #define MSG_NOZZLE1 "Düse2"
  606. #define MSG_NOZZLE2 "Düse3"
  607. #define MSG_BED "Bett"
  608. #define MSG_FAN_SPEED "Lüftergeschw."
  609. #define MSG_FLOW "Fluss"
  610. #define MSG_CONTROL "Einstellungen"
  611. #define MSG_MIN "\002 Min"
  612. #define MSG_MAX "\002 Max"
  613. #define MSG_FACTOR "\002 Faktor"
  614. #define MSG_AUTOTEMP "AutoTemp"
  615. #define MSG_ON "Ein"
  616. #define MSG_OFF "Aus"
  617. #define MSG_PID_P "PID-P"
  618. #define MSG_PID_I "PID-I"
  619. #define MSG_PID_D "PID-D"
  620. #define MSG_PID_C "PID-C"
  621. #define MSG_ACC "Acc"
  622. #define MSG_VXY_JERK "Vxy-jerk"
  623. #define MSG_VZ_JERK "Vz-jerk"
  624. #define MSG_VE_JERK "Ve-jerk"
  625. #define MSG_VMAX "Vmax "
  626. #define MSG_X "x"
  627. #define MSG_Y "y"
  628. #define MSG_Z "z"
  629. #define MSG_E "e"
  630. #define MSG_VMIN "Vmin"
  631. #define MSG_VTRAV_MIN "VTrav min"
  632. #define MSG_AMAX "Amax "
  633. #define MSG_A_RETRACT "A-Retract"
  634. #define MSG_XSTEPS "Xsteps/mm"
  635. #define MSG_YSTEPS "Ysteps/mm"
  636. #define MSG_ZSTEPS "Zsteps/mm"
  637. #define MSG_ESTEPS "Esteps/mm"
  638. #define MSG_RECTRACT_WIDE "Rectract"
  639. #define MSG_WATCH "Beobachten"
  640. #define MSG_TEMPERATURE "Temperatur"
  641. #define MSG_MOTION "Bewegung"
  642. #define MSG_CONTRAST "LCD contrast"
  643. #define MSG_STORE_EPROM "EPROM speichern"
  644. #define MSG_LOAD_EPROM "EPROM laden"
  645. #define MSG_RESTORE_FAILSAFE "Standardkonfig."
  646. #define MSG_REFRESH "Aktualisieren"
  647. #define MSG_PREPARE "Vorbereitung"
  648. #define MSG_CONTROL "Einstellungen"
  649. #define MSG_TUNE "Justierung"
  650. #define MSG_PAUSE_PRINT "Druck anhalten"
  651. #define MSG_RESUME_PRINT "Druck fortsetz"
  652. #define MSG_STOP_PRINT "Druck stoppen"
  653. #define MSG_CARD_MENU "SDKarten Menü"
  654. #define MSG_NO_CARD "Keine SDKarte"
  655. #define MSG_DWELL "Warten..."
  656. #define MSG_USERWAIT "Warte auf Nutzer"
  657. #define MSG_RESUMING "Druck fortsetzung"
  658. #define MSG_NO_MOVE "Kein Zug."
  659. #define MSG_KILLED "KILLED"
  660. #define MSG_STOPPED "GESTOPPT"
  661. #define MSG_STEPPER_RELEASED "Stepper frei"
  662. #define MSG_CONTROL_RETRACT "Retract mm"
  663. #define MSG_CONTROL_RETRACTF "Retract F"
  664. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  665. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  666. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet F"
  667. #define MSG_AUTORETRACT "AutoRetr."
  668. #define MSG_FILAMENTCHANGE "Filament wechseln"
  669. #define MSG_INIT_SDCARD "Init. SD-Card"
  670. #define MSG_CNG_SDCARD "Change SD-Card"
  671. #define MSG_ZPROBE_OUT "Z probe out. bed"
  672. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  673. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  674. #define MSG_BABYSTEP_X "Babystep X"
  675. #define MSG_BABYSTEP_Y "Babystep Y"
  676. #define MSG_BABYSTEP_Z "Babystep Z"
  677. #define MSG_ENDSTOP_ABORT "Endstop abort"
  678. #define MSG_CONTRAST "Contrast"
  679. // Serial Console Messages
  680. #define MSG_Enqueing "enqueing \""
  681. #define MSG_POWERUP "PowerUp"
  682. #define MSG_EXTERNAL_RESET " External Reset"
  683. #define MSG_BROWNOUT_RESET " Brown out Reset"
  684. #define MSG_WATCHDOG_RESET " Watchdog Reset"
  685. #define MSG_SOFTWARE_RESET " Software Reset"
  686. #define MSG_AUTHOR " | Author: "
  687. #define MSG_CONFIGURATION_VER " Last Updated: "
  688. #define MSG_FREE_MEMORY " Free Memory: "
  689. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  690. #define MSG_OK "ok"
  691. #define MSG_FILE_SAVED "Done saving file."
  692. #define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line:"
  693. #define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line:"
  694. #define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line:"
  695. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line:"
  696. #define MSG_FILE_PRINTED "Done printing file"
  697. #define MSG_BEGIN_FILE_LIST "Begin file list"
  698. #define MSG_END_FILE_LIST "End file list"
  699. #define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
  700. #define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
  701. #define MSG_M200_INVALID_EXTRUDER "M200 Invalid extruder "
  702. #define MSG_M218_INVALID_EXTRUDER "M218 Invalid extruder "
  703. #define MSG_ERR_NO_THERMISTORS "No thermistors - no temp"
  704. #define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
  705. #define MSG_HEATING "Heating..."
  706. #define MSG_HEATING_COMPLETE "Heating done."
  707. #define MSG_BED_HEATING "Bed Heating."
  708. #define MSG_BED_DONE "Bed done."
  709. #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"
  710. #define MSG_COUNT_X " Count X:"
  711. #define MSG_ERR_KILLED "Printer halted. kill() called !!"
  712. #define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart!"
  713. #define MSG_RESEND "Resend:"
  714. #define MSG_UNKNOWN_COMMAND "Unknown command:\""
  715. #define MSG_ACTIVE_EXTRUDER "Active Extruder: "
  716. #define MSG_INVALID_EXTRUDER "Invalid extruder"
  717. #define MSG_X_MIN "x_min: "
  718. #define MSG_X_MAX "x_max: "
  719. #define MSG_Y_MIN "y_min: "
  720. #define MSG_Y_MAX "y_max: "
  721. #define MSG_Z_MIN "z_min: "
  722. #define MSG_Z_MAX "z_max: "
  723. #define MSG_M119_REPORT "Reporting endstop status"
  724. #define MSG_ENDSTOP_HIT "TRIGGERED"
  725. #define MSG_ENDSTOP_OPEN "open"
  726. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  727. #define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
  728. #define MSG_SD_INIT_FAIL "SD init fail"
  729. #define MSG_SD_VOL_INIT_FAIL "volume.init failed"
  730. #define MSG_SD_OPENROOT_FAIL "openRoot failed"
  731. #define MSG_SD_CARD_OK "SD card ok"
  732. #define MSG_SD_WORKDIR_FAIL "workDir open failed"
  733. #define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
  734. #define MSG_SD_FILE_OPENED "File opened:"
  735. #define MSG_SD_SIZE " Size:"
  736. #define MSG_SD_FILE_SELECTED "File selected"
  737. #define MSG_SD_WRITE_TO_FILE "Writing to file: "
  738. #define MSG_SD_PRINTING_BYTE "SD printing byte "
  739. #define MSG_SD_NOT_PRINTING "Not SD printing"
  740. #define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
  741. #define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir:"
  742. #define MSG_STEPPER_TOO_HIGH "Steprate too high : "
  743. #define MSG_ENDSTOPS_HIT "endstops hit: "
  744. #define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
  745. #define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
  746. #define MSG_BABYSTEPPING_X "Babystepping X"
  747. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  748. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  749. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
  750. #endif
  751. #if LANGUAGE_CHOICE == 5
  752. // LCD Menu Messages
  753. // Please note these are limited to 17 characters!
  754. #define WELCOME_MSG MACHINE_NAME " lista."
  755. #define MSG_SD_INSERTED "Tarjeta colocada"
  756. #define MSG_SD_REMOVED "Tarjeta retirada"
  757. #define MSG_MAIN "Menu principal"
  758. #define MSG_AUTOSTART " Autostart"
  759. #define MSG_DISABLE_STEPPERS "Apagar motores"
  760. #define MSG_AUTO_HOME "Llevar al origen"
  761. #define MSG_SET_ORIGIN "Establecer cero"
  762. #define MSG_PREHEAT_PLA "Precalentar PLA"
  763. #define MSG_PREHEAT_PLA_SETTINGS "Ajustar temp. PLA"
  764. #define MSG_PREHEAT_ABS "Precalentar ABS"
  765. #define MSG_PREHEAT_ABS_SETTINGS "Ajustar temp. ABS"
  766. #define MSG_COOLDOWN "Enfriar"
  767. #define MSG_SWITCH_PS_ON "Switch Power On"
  768. #define MSG_SWITCH_PS_OFF "Switch Power Off"
  769. #define MSG_EXTRUDE "Extruir"
  770. #define MSG_RETRACT "Retraer"
  771. #define MSG_MOVE_AXIS "Mover ejes"
  772. #define MSG_MOVE_X "Move X"
  773. #define MSG_MOVE_Y "Move Y"
  774. #define MSG_MOVE_Z "Move Z"
  775. #define MSG_MOVE_E "Extruder"
  776. #define MSG_MOVE_01MM "Move 0.1mm"
  777. #define MSG_MOVE_1MM "Move 1mm"
  778. #define MSG_MOVE_10MM "Move 10mm"
  779. #define MSG_SPEED "Velocidad"
  780. #define MSG_NOZZLE "Nozzle"
  781. #define MSG_NOZZLE1 "Nozzle2"
  782. #define MSG_NOZZLE2 "Nozzle3"
  783. #define MSG_BED "Base"
  784. #define MSG_FAN_SPEED "Ventilador"
  785. #define MSG_FLOW "Flujo"
  786. #define MSG_CONTROL "Control"
  787. #define MSG_MIN "\002 Min"
  788. #define MSG_MAX "\002 Max"
  789. #define MSG_FACTOR "\002 Fact"
  790. #define MSG_AUTOTEMP "Autotemp"
  791. #define MSG_ON "On"
  792. #define MSG_OFF "Off"
  793. #define MSG_PID_P "PID-P"
  794. #define MSG_PID_I "PID-I"
  795. #define MSG_PID_D "PID-D"
  796. #define MSG_PID_C "PID-C"
  797. #define MSG_ACC "Acel"
  798. #define MSG_VXY_JERK "Vxy-jerk"
  799. #define MSG_VZ_JERK "Vz-jerk"
  800. #define MSG_VE_JERK "Ve-jerk"
  801. #define MSG_VMAX "Vmax"
  802. #define MSG_X "x"
  803. #define MSG_Y "y"
  804. #define MSG_Z "z"
  805. #define MSG_E "e"
  806. #define MSG_VMIN "Vmin"
  807. #define MSG_VTRAV_MIN "VTrav min"
  808. #define MSG_AMAX "Amax"
  809. #define MSG_A_RETRACT "A-retrac."
  810. #define MSG_XSTEPS "X pasos/mm"
  811. #define MSG_YSTEPS "Y pasos/mm"
  812. #define MSG_ZSTEPS "Z pasos/mm"
  813. #define MSG_ESTEPS "E pasos/mm"
  814. #define MSG_RECTRACT "Retraer"
  815. #define MSG_TEMPERATURE "Temperatura"
  816. #define MSG_MOTION "Movimiento"
  817. #define MSG_STORE_EPROM "Guardar memoria"
  818. #define MSG_LOAD_EPROM "Cargar memoria"
  819. #define MSG_RESTORE_FAILSAFE "Rest. de emergen."
  820. #define MSG_REFRESH "Volver a cargar"
  821. #define MSG_WATCH "Monitorizar"
  822. #define MSG_PREPARE "Preparar"
  823. #define MSG_TUNE "Ajustar"
  824. #define MSG_PAUSE_PRINT "Pausar impresion"
  825. #define MSG_RESUME_PRINT "Reanudar impres."
  826. #define MSG_STOP_PRINT "Detener impresion"
  827. #define MSG_CARD_MENU "Menu de SD"
  828. #define MSG_NO_CARD "No hay tarjeta SD"
  829. #define MSG_DWELL "Reposo..."
  830. #define MSG_USERWAIT "Esperando ordenes"
  831. #define MSG_RESUMING "Resumiendo impre."
  832. #define MSG_NO_MOVE "Sin movimiento"
  833. #define MSG_KILLED "PARADA DE EMERG."
  834. #define MSG_STOPPED "PARADA"
  835. #define MSG_CONTROL_RETRACT "Retraer mm"
  836. #define MSG_CONTROL_RETRACTF "Retraer F"
  837. #define MSG_CONTROL_RETRACT_ZLIFT "Levantar mm"
  838. #define MSG_CONTROL_RETRACT_RECOVER "DesRet +mm"
  839. #define MSG_CONTROL_RETRACT_RECOVERF "DesRet F"
  840. #define MSG_AUTORETRACT "AutoRetr."
  841. #define MSG_FILAMENTCHANGE "Change filament"
  842. #define MSG_INIT_SDCARD "Iniciando tarjeta"
  843. #define MSG_CNG_SDCARD "Cambiar tarjeta"
  844. #define MSG_RECTRACT_WIDE "Retraer"
  845. #define MSG_TEMPERATURE_WIDE "Temperatura"
  846. #define MSG_TEMPERATURE_RTN "Temperatura"
  847. #define MSG_MAIN_WIDE "Menu principal"
  848. #define MSG_MOTION_WIDE "Movimiento"
  849. #define MSG_PREPARE_ALT "Preparar"
  850. #define MSG_CONTROL_ARROW "Control"
  851. #define MSG_RETRACT_ARROW "Retraer"
  852. #define MSG_STEPPER_RELEASED "Desacoplada."
  853. #define MSG_ZPROBE_OUT "Z probe out. bed"
  854. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  855. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  856. #define MSG_BABYSTEP_X "Babystep X"
  857. #define MSG_BABYSTEP_Y "Babystep Y"
  858. #define MSG_BABYSTEP_Z "Babystep Z"
  859. #define MSG_ENDSTOP_ABORT "Endstop abort"
  860. #define MSG_CONTRAST "Contrast"
  861. // Serial Console Messages
  862. #define MSG_Enqueing "En cola \""
  863. #define MSG_POWERUP "PowerUp"
  864. #define MSG_EXTERNAL_RESET " Reset Externo"
  865. #define MSG_BROWNOUT_RESET " Reset por Voltaje Incorrecto"
  866. #define MSG_WATCHDOG_RESET " Reset por Bloqueo"
  867. #define MSG_SOFTWARE_RESET " Reset por Software"
  868. #define MSG_AUTHOR " | Autor: "
  869. #define MSG_CONFIGURATION_VER " Ultima actualizacion: "
  870. #define MSG_FREE_MEMORY " Memoria libre: "
  871. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  872. #define MSG_OK "ok"
  873. #define MSG_FILE_SAVED "Guardado."
  874. #define MSG_ERR_LINE_NO "El Numero de Linea no es igual al Ultimo Numero de Linea+1, Ultima Linea:"
  875. #define MSG_ERR_CHECKSUM_MISMATCH "el checksum no coincide, Ultima Linea:"
  876. #define MSG_ERR_NO_CHECKSUM "No se pudo hallar el Checksum con el numero de linea, Ultima Linea:"
  877. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No se hallo el Numero de Linea con el Checksum, Ultima Linea:"
  878. #define MSG_FILE_PRINTED "Impresion terminada"
  879. #define MSG_BEGIN_FILE_LIST "Comienzo de la lista de archivos"
  880. #define MSG_END_FILE_LIST "Fin de la lista de archivos"
  881. #define MSG_M104_INVALID_EXTRUDER "M104 Extrusor Invalido "
  882. #define MSG_M105_INVALID_EXTRUDER "M105 Extrusor Invalido "
  883. #define MSG_M200_INVALID_EXTRUDER "M200 Extrusor Invalido "
  884. #define MSG_M218_INVALID_EXTRUDER "M218 Extrusor Invalido "
  885. #define MSG_ERR_NO_THERMISTORS "No hay termistores - no temp"
  886. #define MSG_M109_INVALID_EXTRUDER "M109 Extrusor Invalido "
  887. #define MSG_HEATING "Calentando..."
  888. #define MSG_HEATING_COMPLETE "Calentamiento Hecho."
  889. #define MSG_BED_HEATING "Calentando la base."
  890. #define MSG_BED_DONE "Base Caliente."
  891. #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"
  892. #define MSG_COUNT_X " Cuenta X:"
  893. #define MSG_ERR_KILLED "¡¡Impresora Parada con kill()!!"
  894. #define MSG_ERR_STOPPED "¡Impresora parada por errores. Arregle el error y use M999 Para reiniciar!. (La temperatura se reestablece. Ajustela antes de continuar)"
  895. #define MSG_RESEND "Reenviar:"
  896. #define MSG_UNKNOWN_COMMAND "Comando Desconocido:\""
  897. #define MSG_ACTIVE_EXTRUDER "Extrusor Activo: "
  898. #define MSG_INVALID_EXTRUDER "Extrusor Invalido"
  899. #define MSG_X_MIN "x_min: "
  900. #define MSG_X_MAX "x_max: "
  901. #define MSG_Y_MIN "y_min: "
  902. #define MSG_Y_MAX "y_max: "
  903. #define MSG_Z_MIN "z_min: "
  904. #define MSG_Z_MAX "z_max: "
  905. #define MSG_M119_REPORT "Comprobando fines de carrera."
  906. #define MSG_ENDSTOP_HIT "PULSADO"
  907. #define MSG_ENDSTOP_OPEN "abierto"
  908. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  909. #define MSG_SD_CANT_OPEN_SUBDIR "No se pudo abrir la subcarpeta."
  910. #define MSG_SD_INIT_FAIL "Fallo al iniciar la SD"
  911. #define MSG_SD_VOL_INIT_FAIL "Fallo al montar el volumen"
  912. #define MSG_SD_OPENROOT_FAIL "Fallo al abrir la carpeta raiz"
  913. #define MSG_SD_CARD_OK "Tarjeta SD OK"
  914. #define MSG_SD_WORKDIR_FAIL "Fallo al abrir la carpeta de trabajo"
  915. #define MSG_SD_OPEN_FILE_FAIL "Error al abrir, Archivo: "
  916. #define MSG_SD_FILE_OPENED "Archivo abierto:"
  917. #define MSG_SD_SIZE " Tamaño:"
  918. #define MSG_SD_FILE_SELECTED "Archivo Seleccionado"
  919. #define MSG_SD_WRITE_TO_FILE "Escribiendo en el archivo: "
  920. #define MSG_SD_PRINTING_BYTE "SD imprimiendo el byte "
  921. #define MSG_SD_NOT_PRINTING "No se esta imprimiendo con SD"
  922. #define MSG_SD_ERR_WRITE_TO_FILE "Error al escribir en el archivo"
  923. #define MSG_SD_CANT_ENTER_SUBDIR "No se puede abrir la carpeta:"
  924. #define MSG_STEPPER_TOO_HIGH "Steprate demasiado alto : "
  925. #define MSG_ENDSTOPS_HIT "Se ha tocado el fin de carril: "
  926. #define MSG_ERR_COLD_EXTRUDE_STOP " extrusion fria evitada"
  927. #define MSG_ERR_LONG_EXTRUDE_STOP " extrusion demasiado larga evitada"
  928. #define MSG_BABYSTEPPING_X "Babystepping X"
  929. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  930. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  931. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
  932. #endif
  933. #if LANGUAGE_CHOICE == 6
  934. // LCD Menu Messages
  935. // Please note these are limited to 17 characters!
  936. #define WELCOME_MSG MACHINE_NAME " Готов."
  937. #define MSG_SD_INSERTED "Карта вставлена"
  938. #define MSG_SD_REMOVED "Карта извлечена"
  939. #define MSG_MAIN "Меню \003"
  940. #define MSG_AUTOSTART "Автостарт"
  941. #define MSG_DISABLE_STEPPERS "Выкл. двигатели"
  942. #define MSG_AUTO_HOME "Парковка"
  943. #define MSG_SET_ORIGIN "Запомнить ноль"
  944. #define MSG_PREHEAT_PLA "Преднагрев PLA"
  945. #define MSG_PREHEAT_PLA_SETTINGS "Настройки PLA"
  946. #define MSG_PREHEAT_ABS "Преднагрев ABS"
  947. #define MSG_PREHEAT_ABS_SETTINGS "Настройки ABS"
  948. #define MSG_COOLDOWN "Охлаждение"
  949. #define MSG_SWITCH_PS_ON "Switch Power On"
  950. #define MSG_SWITCH_PS_OFF "Switch Power Off"
  951. #define MSG_EXTRUDE "Экструзия"
  952. #define MSG_RETRACT "Откат"
  953. #define MSG_MOVE_AXIS "Движение по осям"
  954. #define MSG_MOVE_X "Move X"
  955. #define MSG_MOVE_Y "Move Y"
  956. #define MSG_MOVE_Z "Move Z"
  957. #define MSG_MOVE_E "Extruder"
  958. #define MSG_MOVE_01MM "Move 0.1mm"
  959. #define MSG_MOVE_1MM "Move 1mm"
  960. #define MSG_MOVE_10MM "Move 10mm"
  961. #define MSG_SPEED "Скорость:"
  962. #define MSG_NOZZLE "\002 Фильера:"
  963. #define MSG_NOZZLE1 "\002 Фильера2:"
  964. #define MSG_NOZZLE2 "\002 Фильера3:"
  965. #define MSG_BED "\002 Кровать:"
  966. #define MSG_FAN_SPEED "Куллер:"
  967. #define MSG_FLOW "Поток:"
  968. #define MSG_CONTROL "Настройки \003"
  969. #define MSG_MIN "\002 Минимум:"
  970. #define MSG_MAX "\002 Максимум:"
  971. #define MSG_FACTOR "\002 Фактор:"
  972. #define MSG_AUTOTEMP "Autotemp:"
  973. #define MSG_ON "Вкл. "
  974. #define MSG_OFF "Выкл. "
  975. #define MSG_PID_P "PID-P: "
  976. #define MSG_PID_I "PID-I: "
  977. #define MSG_PID_D "PID-D: "
  978. #define MSG_PID_C "PID-C: "
  979. #define MSG_ACC "Acc:"
  980. #define MSG_VXY_JERK "Vxy-jerk: "
  981. #define MSG_VZ_JERK "Vz-jerk"
  982. #define MSG_VE_JERK "Ve-jerk"
  983. #define MSG_VMAX "Vmax "
  984. #define MSG_X "x:"
  985. #define MSG_Y "y:"
  986. #define MSG_Z "z:"
  987. #define MSG_E "e:"
  988. #define MSG_VMIN "Vmin:"
  989. #define MSG_VTRAV_MIN "VTrav min:"
  990. #define MSG_AMAX "Amax "
  991. #define MSG_A_RETRACT "A-retract:"
  992. #define MSG_XSTEPS "X шаг/mm:"
  993. #define MSG_YSTEPS "Y шаг/mm:"
  994. #define MSG_ZSTEPS "Z шаг/mm:"
  995. #define MSG_ESTEPS "E шаг/mm:"
  996. #define MSG_RECTRACT "Откат подачи \x7E"
  997. #define MSG_TEMPERATURE "Температура \x7E"
  998. #define MSG_MOTION "Скорости \x7E"
  999. #define MSG_CONTRAST "LCD contrast"
  1000. #define MSG_STORE_EPROM "Сохранить в EPROM"
  1001. #define MSG_LOAD_EPROM "Загруз. из EPROM"
  1002. #define MSG_RESTORE_FAILSAFE "Сброс настроек"
  1003. #define MSG_REFRESH "\004Обновить"
  1004. #define MSG_WATCH "Обзор \003"
  1005. #define MSG_PREPARE "Действия \x7E"
  1006. #define MSG_TUNE "Настройки \x7E"
  1007. #define MSG_RESUME_PRINT "Продолжить печать"
  1008. #define MSG_RESUME_PRINT "Продолжить печать"
  1009. #define MSG_STOP_PRINT "Остановить печать"
  1010. #define MSG_CARD_MENU "Меню карты \x7E"
  1011. #define MSG_NO_CARD "Нет карты"
  1012. #define MSG_DWELL "Сон..."
  1013. #define MSG_USERWAIT "Ожиданиие"
  1014. #define MSG_RESUMING "Resuming print"
  1015. #define MSG_NO_MOVE "Нет движения."
  1016. #define MSG_KILLED "УБИТО."
  1017. #define MSG_STOPPED "ОСТАНОВЛЕНО."
  1018. #define MSG_CONTROL_RETRACT "Откат mm:"
  1019. #define MSG_CONTROL_RETRACTF "Откат F:"
  1020. #define MSG_CONTROL_RETRACT_ZLIFT "Прыжок mm:"
  1021. #define MSG_CONTROL_RETRACT_RECOVER "Возврат +mm:"
  1022. #define MSG_CONTROL_RETRACT_RECOVERF "Возврат F:"
  1023. #define MSG_AUTORETRACT "АвтоОткат:"
  1024. #define MSG_FILAMENTCHANGE "Change filament"
  1025. #define MSG_INIT_SDCARD "Init. SD-Card"
  1026. #define MSG_CNG_SDCARD "Change SD-Card"
  1027. #define MSG_ZPROBE_OUT "Z probe out. bed"
  1028. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  1029. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1030. #define MSG_BABYSTEP_X "Babystep X"
  1031. #define MSG_BABYSTEP_Y "Babystep Y"
  1032. #define MSG_BABYSTEP_Z "Babystep Z"
  1033. #define MSG_ENDSTOP_ABORT "Endstop abort"
  1034. #define MSG_CONTRAST "Contrast"
  1035. // Serial Console Messages
  1036. #define MSG_Enqueing "Запланировано \""
  1037. #define MSG_POWERUP "Включение питания"
  1038. #define MSG_EXTERNAL_RESET " Внешний сброс"
  1039. #define MSG_BROWNOUT_RESET " Brown out сброс"
  1040. #define MSG_WATCHDOG_RESET " Watchdog сброс"
  1041. #define MSG_SOFTWARE_RESET " программный сброс"
  1042. #define MSG_AUTHOR " | Автор: "
  1043. #define MSG_CONFIGURATION_VER " Последнее обновление: "
  1044. #define MSG_FREE_MEMORY " Памяти свободно: "
  1045. #define MSG_PLANNER_BUFFER_BYTES " Буффер очереди команд Bytes: "
  1046. #define MSG_OK "ok"
  1047. #define MSG_FILE_SAVED "Файл записан."
  1048. #define MSG_ERR_LINE_NO "Номен строки это не последняя строка+1, последняя строка:"
  1049. #define MSG_ERR_CHECKSUM_MISMATCH "контрольная сумма не совпадает, последняя строка:"
  1050. #define MSG_ERR_NO_CHECKSUM "нет контрольной суммы для строки, последняя строка:"
  1051. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "нет строки для контрольной суммы, последняя строка:"
  1052. #define MSG_FILE_PRINTED "Печать файла завершена"
  1053. #define MSG_BEGIN_FILE_LIST "Список файлов"
  1054. #define MSG_END_FILE_LIST "Конец списка файлов"
  1055. #define MSG_M104_INVALID_EXTRUDER "M104 ошибка экструдера "
  1056. #define MSG_M105_INVALID_EXTRUDER "M105 ошибка экструдера "
  1057. #define MSG_M200_INVALID_EXTRUDER "M200 ошибка экструдера "
  1058. #define MSG_M218_INVALID_EXTRUDER "M218 ошибка экструдера "
  1059. #define MSG_ERR_NO_THERMISTORS "Нет термистра - нет температуры"
  1060. #define MSG_M109_INVALID_EXTRUDER "M109 ошибка экструдера "
  1061. #define MSG_HEATING "Нагрев... "
  1062. #define MSG_HEATING_COMPLETE "Наргето. "
  1063. #define MSG_BED_HEATING "Нагрев стола... "
  1064. #define MSG_BED_DONE "Стол нагрет. "
  1065. #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"
  1066. #define MSG_COUNT_X " Count X:"
  1067. #define MSG_ERR_KILLED "Принтер остановлен. вызов kill() !!"
  1068. #define MSG_ERR_STOPPED "Ошибка принтера, останов. Устраните неисправность и используйте M999 для перезагрузки!. (Температура недоступна. Проверьте датчики)"
  1069. #define MSG_RESEND "Переотправка:"
  1070. #define MSG_UNKNOWN_COMMAND "Неизвестная команда:\""
  1071. #define MSG_ACTIVE_EXTRUDER "Активный экструдер: "
  1072. #define MSG_INVALID_EXTRUDER "Ошибка экструдера"
  1073. #define MSG_X_MIN "x_min:"
  1074. #define MSG_X_MAX "x_max:"
  1075. #define MSG_Y_MIN "y_min:"
  1076. #define MSG_Y_MAX "y_max:"
  1077. #define MSG_Z_MIN "z_min:"
  1078. #define MSG_Z_MAX "z_max:"
  1079. #define MSG_M119_REPORT "Статус концевиков"
  1080. #define MSG_ENDSTOP_HIT "Срабатывание концевика"
  1081. #define MSG_ENDSTOP_OPEN "Концевик освобожден"
  1082. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  1083. #define MSG_SD_CANT_OPEN_SUBDIR "Не открыть папку"
  1084. #define MSG_SD_INIT_FAIL "Ошибка инициализации SD"
  1085. #define MSG_SD_VOL_INIT_FAIL "Ошибка инициализации раздела"
  1086. #define MSG_SD_OPENROOT_FAIL "Не прочесть содержимое корня"
  1087. #define MSG_SD_CARD_OK "SD карта в порядке"
  1088. #define MSG_SD_WORKDIR_FAIL "не открыть рабочую папку"
  1089. #define MSG_SD_OPEN_FILE_FAIL "Ошибка чтения, файл: "
  1090. #define MSG_SD_FILE_OPENED "Файл открыт:"
  1091. #define MSG_SD_SIZE " Размер:"
  1092. #define MSG_SD_FILE_SELECTED "Файл выбран"
  1093. #define MSG_SD_WRITE_TO_FILE "Запись в файл: "
  1094. #define MSG_SD_PRINTING_BYTE "SD печать byte "
  1095. #define MSG_SD_NOT_PRINTING "нет SD печати"
  1096. #define MSG_SD_ERR_WRITE_TO_FILE "ошибка записи в файл"
  1097. #define MSG_SD_CANT_ENTER_SUBDIR "Не зайти в папку:"
  1098. #define MSG_STEPPER_TOO_HIGH "Частота шагов очень высока : "
  1099. #define MSG_ENDSTOPS_HIT "концевик сработал: "
  1100. #define MSG_ERR_COLD_EXTRUDE_STOP " защита холодной экструзии"
  1101. #define MSG_ERR_LONG_EXTRUDE_STOP " защита превышения длинны экструзии"
  1102. #define MSG_BABYSTEPPING_X "Babystepping X"
  1103. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  1104. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  1105. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
  1106. #endif
  1107. #if LANGUAGE_CHOICE == 7
  1108. // LCD Menu Messages
  1109. // Please note these are limited to 17 characters!
  1110. #define WELCOME_MSG MACHINE_NAME " pronto."
  1111. #define MSG_SD_INSERTED "SD Card inserita"
  1112. #define MSG_SD_REMOVED "SD Card rimossa"
  1113. #define MSG_MAIN "Menu principale"
  1114. #define MSG_AUTOSTART "Autostart"
  1115. #define MSG_DISABLE_STEPPERS "Disabilita Motori"
  1116. #define MSG_AUTO_HOME "Auto Home"
  1117. #define MSG_SET_ORIGIN "Imposta Origine"
  1118. #define MSG_PREHEAT_PLA "Preriscalda PLA"
  1119. #define MSG_PREHEAT_PLA_SETTINGS "Preris. PLA Conf"
  1120. #define MSG_PREHEAT_ABS "Preriscalda ABS"
  1121. #define MSG_PREHEAT_ABS_SETTINGS "Preris. ABS Conf"
  1122. #define MSG_COOLDOWN "Raffredda"
  1123. #define MSG_SWITCH_PS_ON "Switch Power On"
  1124. #define MSG_SWITCH_PS_OFF "Switch Power Off"
  1125. #define MSG_EXTRUDE "Estrudi"
  1126. #define MSG_RETRACT "Ritrai"
  1127. #define MSG_MOVE_AXIS "Muovi Asse"
  1128. #define MSG_MOVE_X "Move X"
  1129. #define MSG_MOVE_Y "Move Y"
  1130. #define MSG_MOVE_Z "Move Z"
  1131. #define MSG_MOVE_E "Extruder"
  1132. #define MSG_MOVE_01MM "Move 0.1mm"
  1133. #define MSG_MOVE_1MM "Move 1mm"
  1134. #define MSG_MOVE_10MM "Move 10mm"
  1135. #define MSG_SPEED "Velcità"
  1136. #define MSG_NOZZLE "Ugello"
  1137. #define MSG_NOZZLE1 "Ugello2"
  1138. #define MSG_NOZZLE2 "Ugello3"
  1139. #define MSG_BED "Piatto"
  1140. #define MSG_FAN_SPEED "Ventola"
  1141. #define MSG_FLOW "Flusso"
  1142. #define MSG_CONTROL "Controllo"
  1143. #define MSG_MIN " \002 Min:"
  1144. #define MSG_MAX " \002 Max:"
  1145. #define MSG_FACTOR " \002 Fact:"
  1146. #define MSG_AUTOTEMP "Autotemp"
  1147. #define MSG_ON "On "
  1148. #define MSG_OFF "Off"
  1149. #define MSG_PID_P "PID-P"
  1150. #define MSG_PID_I "PID-I"
  1151. #define MSG_PID_D "PID-D"
  1152. #define MSG_PID_C "PID-C"
  1153. #define MSG_ACC "Accel"
  1154. #define MSG_VXY_JERK "Vxy-jerk"
  1155. #define MSG_VZ_JERK "Vz-jerk"
  1156. #define MSG_VE_JERK "Ve-jerk"
  1157. #define MSG_VMAX "Vmax"
  1158. #define MSG_X "x"
  1159. #define MSG_Y "y"
  1160. #define MSG_Z "z"
  1161. #define MSG_E "e"
  1162. #define MSG_VMIN "Vmin"
  1163. #define MSG_VTRAV_MIN "VTrav min"
  1164. #define MSG_AMAX "Amax"
  1165. #define MSG_A_RETRACT "A-retract"
  1166. #define MSG_XSTEPS "Xpassi/mm"
  1167. #define MSG_YSTEPS "Ypassi/mm"
  1168. #define MSG_ZSTEPS "Zpassi/mm"
  1169. #define MSG_ESTEPS "Epassi/mm"
  1170. #define MSG_RECTRACT "Ritrai"
  1171. #define MSG_TEMPERATURE "Temperatura"
  1172. #define MSG_MOTION "Movimento"
  1173. #define MSG_CONTRAST "LCD contrast"
  1174. #define MSG_STORE_EPROM "Salva in EEPROM"
  1175. #define MSG_LOAD_EPROM "Carica da EEPROM"
  1176. #define MSG_RESTORE_FAILSAFE "Impostaz. default"
  1177. #define MSG_REFRESH "Aggiorna"
  1178. #define MSG_WATCH "Guarda"
  1179. #define MSG_PREPARE "Prepara"
  1180. #define MSG_TUNE "Adatta"
  1181. #define MSG_PAUSE_PRINT "Pausa"
  1182. #define MSG_RESUME_PRINT "Riprendi Stampa"
  1183. #define MSG_STOP_PRINT "Arresta Stampa"
  1184. #define MSG_CARD_MENU "SD Card Menu"
  1185. #define MSG_NO_CARD "No SD Card"
  1186. #define MSG_DWELL "Sospensione..."
  1187. #define MSG_USERWAIT "Attendi Utente..."
  1188. #define MSG_RESUMING "Riprendi Stampa"
  1189. #define MSG_NO_MOVE "Nessun Movimento."
  1190. #define MSG_KILLED "UCCISO. "
  1191. #define MSG_STOPPED "ARRESTATO. "
  1192. #define MSG_CONTROL_RETRACT "Ritrai mm"
  1193. #define MSG_CONTROL_RETRACTF "Ritrai F"
  1194. #define MSG_CONTROL_RETRACT_ZLIFT "Salta mm"
  1195. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  1196. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet F"
  1197. #define MSG_AUTORETRACT "AutoArretramento"
  1198. #define MSG_FILAMENTCHANGE "Cambia filamento"
  1199. #define MSG_INIT_SDCARD "Iniz. SD-Card"
  1200. #define MSG_CNG_SDCARD "Cambia SD-Card"
  1201. #define MSG_ZPROBE_OUT "Z probe out. bed"
  1202. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  1203. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1204. #define MSG_BABYSTEP_X "Babystep X"
  1205. #define MSG_BABYSTEP_Y "Babystep Y"
  1206. #define MSG_BABYSTEP_Z "Babystep Z"
  1207. #define MSG_ENDSTOP_ABORT "Endstop abort"
  1208. #define MSG_CONTRAST "Contrast"
  1209. // Serial Console Messages
  1210. #define MSG_Enqueing "accodamento \""
  1211. #define MSG_POWERUP "Accensione"
  1212. #define MSG_EXTERNAL_RESET " Reset Esterno"
  1213. #define MSG_BROWNOUT_RESET " Brown out Reset"
  1214. #define MSG_WATCHDOG_RESET " Watchdog Reset"
  1215. #define MSG_SOFTWARE_RESET " Software Reset"
  1216. #define MSG_AUTHOR " | Autore: "
  1217. #define MSG_CONFIGURATION_VER " Ultimo Aggiornamento: "
  1218. #define MSG_FREE_MEMORY " Memoria Libera: "
  1219. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  1220. #define MSG_OK "ok"
  1221. #define MSG_FILE_SAVED "File Salvato."
  1222. #define MSG_ERR_LINE_NO "Il Numero della Linea non corrisponde al Numero dell'Ultima Linea+1, Ultima Linea: "
  1223. #define MSG_ERR_CHECKSUM_MISMATCH "checksum non corrispondente, Ultima Linea: "
  1224. #define MSG_ERR_NO_CHECKSUM "Nessun Checksum con Numero di Linea, Ultima Linea: "
  1225. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "Nessun Numero di Linea con Checksum, Ultima Linea: "
  1226. #define MSG_FILE_PRINTED "File stampato"
  1227. #define MSG_BEGIN_FILE_LIST "Inizio Lista File"
  1228. #define MSG_END_FILE_LIST "Fine Lista File"
  1229. #define MSG_M104_INVALID_EXTRUDER "M104 Estrusore non valido "
  1230. #define MSG_M105_INVALID_EXTRUDER "M105 Estrusore non valido "
  1231. #define MSG_M200_INVALID_EXTRUDER "M200 Estrusore non valido "
  1232. #define MSG_M218_INVALID_EXTRUDER "M218 Estrusore non valido "
  1233. #define MSG_ERR_NO_THERMISTORS "Nessun Termistore - nessuna temperatura"
  1234. #define MSG_M109_INVALID_EXTRUDER "M109 Estrusore non valido "
  1235. #define MSG_HEATING "Riscaldamento..."
  1236. #define MSG_HEATING_COMPLETE "Stampante Calda."
  1237. #define MSG_BED_HEATING "Riscaldamento Piatto."
  1238. #define MSG_BED_DONE "Piatto Pronto."
  1239. #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"
  1240. #define MSG_COUNT_X " Calcola X: "
  1241. #define MSG_ERR_KILLED "Stampante Calda. kill() chiamata !!"
  1242. #define MSG_ERR_STOPPED "Stampante fermata a causa di errori. Risolvi l'errore e usa M999 per ripartire!. (Reset temperatura. Impostala prima di ripartire)"
  1243. #define MSG_RESEND "Reinviato:"
  1244. #define MSG_UNKNOWN_COMMAND "Comando sconosciuto: \""
  1245. #define MSG_ACTIVE_EXTRUDER "Attiva Estrusore: "
  1246. #define MSG_INVALID_EXTRUDER "Estrusore non valido"
  1247. #define MSG_X_MIN "x_min: "
  1248. #define MSG_X_MAX "x_max: "
  1249. #define MSG_Y_MIN "y_min: "
  1250. #define MSG_Y_MAX "y_max: "
  1251. #define MSG_Z_MIN "z_min: "
  1252. #define MSG_Z_MAX "z_max: "
  1253. #define MSG_M119_REPORT "Segnalazione stato degli endstop"
  1254. #define MSG_ENDSTOP_HIT "INNESCATO"
  1255. #define MSG_ENDSTOP_OPEN "aperto"
  1256. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  1257. #define MSG_SD_CANT_OPEN_SUBDIR "Impossibile aprire sottocartella"
  1258. #define MSG_SD_INIT_FAIL "Fallita Inizializzazione SD"
  1259. #define MSG_SD_VOL_INIT_FAIL "Fallito il montaggio del Volume"
  1260. #define MSG_SD_OPENROOT_FAIL "Fallita l'apertura Cartella Principale"
  1261. #define MSG_SD_CARD_OK "SD card ok"
  1262. #define MSG_SD_WORKDIR_FAIL "Fallita l'apertura Cartella di Lavoro"
  1263. #define MSG_SD_OPEN_FILE_FAIL "Fallita l'apertura del File: "
  1264. #define MSG_SD_FILE_OPENED "File aperto: "
  1265. #define MSG_SD_SIZE " Dimensione: "
  1266. #define MSG_SD_FILE_SELECTED "File selezionato"
  1267. #define MSG_SD_WRITE_TO_FILE "Scrittura su file: "
  1268. #define MSG_SD_PRINTING_BYTE "Si sta scrivendo il byte su SD "
  1269. #define MSG_SD_NOT_PRINTING "Non si sta scrivendo su SD"
  1270. #define MSG_SD_ERR_WRITE_TO_FILE "Errore nella scrittura su file"
  1271. #define MSG_SD_CANT_ENTER_SUBDIR "Impossibile entrare nella sottocartella: "
  1272. #define MSG_STEPPER_TOO_HIGH "Steprate troppo alto: "
  1273. #define MSG_ENDSTOPS_HIT "Raggiunto il fondo carrello: "
  1274. #define MSG_ERR_COLD_EXTRUDE_STOP " prevenuta estrusione fredda"
  1275. #define MSG_ERR_LONG_EXTRUDE_STOP " prevenuta estrusione troppo lunga"
  1276. #define MSG_BABYSTEPPING_X "Babystepping X"
  1277. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  1278. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  1279. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Qualcosa non va in MenuStructure."
  1280. #endif
  1281. #if LANGUAGE_CHOICE == 8
  1282. // LCD Menu Messages
  1283. // Please note these are limited to 17 characters!
  1284. #define WELCOME_MSG MACHINE_NAME " pronto."
  1285. #define MSG_SD_INSERTED "Cartao inserido"
  1286. #define MSG_SD_REMOVED "Cartao removido"
  1287. #define MSG_MAIN " Menu principal \003"
  1288. #define MSG_AUTOSTART "Autostart"
  1289. #define MSG_DISABLE_STEPPERS " Apagar motores"
  1290. #define MSG_AUTO_HOME "Ir para origen"
  1291. #define MSG_SET_ORIGIN "Estabelecer orig."
  1292. #define MSG_PREHEAT_PLA "Pre-aquecer PLA"
  1293. #define MSG_PREHEAT_PLA_SETTINGS "PLA setting"
  1294. #define MSG_PREHEAT_ABS "Pre-aquecer ABS"
  1295. #define MSG_PREHEAT_ABS_SETTINGS "ABS setting"
  1296. #define MSG_COOLDOWN "Esfriar"
  1297. #define MSG_SWITCH_PS_ON "Switch Power On"
  1298. #define MSG_SWITCH_PS_OFF "Switch Power Off"
  1299. #define MSG_EXTRUDE "Extrudar"
  1300. #define MSG_RETRACT "Retrair"
  1301. #define MSG_PREHEAT_PLA "Pre-aquecer PLA"
  1302. #define MSG_PREHEAT_ABS "Pre-aquecer ABS"
  1303. #define MSG_MOVE_AXIS "Mover eixo \x7E"
  1304. #define MSG_MOVE_X "Move X"
  1305. #define MSG_MOVE_Y "Move Y"
  1306. #define MSG_MOVE_Z "Move Z"
  1307. #define MSG_MOVE_E "Extruder"
  1308. #define MSG_MOVE_01MM "Move 0.1mm"
  1309. #define MSG_MOVE_1MM "Move 1mm"
  1310. #define MSG_MOVE_10MM "Move 10mm"
  1311. #define MSG_SPEED "Velocidade:"
  1312. #define MSG_NOZZLE "\002Nozzle:"
  1313. #define MSG_NOZZLE1 "\002Nozzle2:"
  1314. #define MSG_NOZZLE2 "\002Nozzle3:"
  1315. #define MSG_BED "\002Base:"
  1316. #define MSG_FAN_SPEED "Velocidade vento."
  1317. #define MSG_FLOW "Fluxo:"
  1318. #define MSG_CONTROL "Controle \003"
  1319. #define MSG_MIN "\002 Min:"
  1320. #define MSG_MAX "\002 Max:"
  1321. #define MSG_FACTOR "\002 Fact:"
  1322. #define MSG_AUTOTEMP "Autotemp:"
  1323. #define MSG_ON "On "
  1324. #define MSG_OFF "Off"
  1325. #define MSG_PID_P "PID-P: "
  1326. #define MSG_PID_I "PID-I: "
  1327. #define MSG_PID_D "PID-D: "
  1328. #define MSG_PID_C "PID-C: "
  1329. #define MSG_ACC "Acc:"
  1330. #define MSG_VXY_JERK "Vxy-jerk: "
  1331. #define MSG_VZ_JERK "Vz-jerk"
  1332. #define MSG_VE_JERK "Ve-jerk"
  1333. #define MSG_VMAX " Vmax "
  1334. #define MSG_X "x:"
  1335. #define MSG_Y "y:"
  1336. #define MSG_Z "z:"
  1337. #define MSG_E "e:"
  1338. #define MSG_VMIN "Vmin:"
  1339. #define MSG_VTRAV_MIN "VTrav min:"
  1340. #define MSG_AMAX "Amax "
  1341. #define MSG_A_RETRACT "A-retract:"
  1342. #define MSG_XSTEPS "Xpasso/mm:"
  1343. #define MSG_YSTEPS "Ypasso/mm:"
  1344. #define MSG_ZSTEPS "Zpasso/mm:"
  1345. #define MSG_ESTEPS "Epasso/mm:"
  1346. #define MSG_MAIN_WIDE "Menu Principal \003"
  1347. #define MSG_RECTRACT "Retrair"
  1348. #define MSG_TEMPERATURE "Temperatura"
  1349. #define MSG_MOTION "Movimento"
  1350. #define MSG_STORE_EPROM "Guardar memoria"
  1351. #define MSG_LOAD_EPROM "Carregar memoria"
  1352. #define MSG_RESTORE_FAILSAFE "Rest. de emergen."
  1353. #define MSG_REFRESH "\004Recarregar"
  1354. #define MSG_WATCH "Monitorar \003"
  1355. #define MSG_PREPARE "Preparar \x7E"
  1356. #define MSG_PREPARE_ALT "Preparar \003"
  1357. #define MSG_CONTROL_ARROW "Controle \x7E"
  1358. #define MSG_RETRACT_ARROW "Retrair \x7E"
  1359. #define MSG_TUNE "Tune \x7E"
  1360. #define MSG_PAUSE_PRINT "Pausar impressao"
  1361. #define MSG_RESUME_PRINT "Resumir impressao"
  1362. #define MSG_STOP_PRINT "Parar impressao"
  1363. #define MSG_CARD_MENU "Menu cartao SD"
  1364. #define MSG_NO_CARD "Sem cartao SD"
  1365. #define MSG_DWELL "Repouso..."
  1366. #define MSG_USERWAIT "Esperando ordem"
  1367. #define MSG_RESUMING "Resuming print"
  1368. #define MSG_NO_MOVE "Sem movimento"
  1369. #define MSG_KILLED "PARADA DE EMERG."
  1370. #define MSG_STOPPED "PARADA. "
  1371. #define MSG_STEPPER_RELEASED "Lancado."
  1372. #define MSG_CONTROL_RETRACT " Retrair mm:"
  1373. #define MSG_CONTROL_RETRACTF " Retrair F:"
  1374. #define MSG_CONTROL_RETRACT_ZLIFT " Levantar mm:"
  1375. #define MSG_CONTROL_RETRACT_RECOVER " DesRet +mm:"
  1376. #define MSG_CONTROL_RETRACT_RECOVERF " DesRet F:"
  1377. #define MSG_AUTORETRACT " AutoRetr.:"
  1378. #define MSG_FILAMENTCHANGE "Change filament"
  1379. #define MSG_INIT_SDCARD "Init. SD-Card"
  1380. #define MSG_CNG_SDCARD "Change SD-Card"
  1381. #define MSG_ZPROBE_OUT "Son. fora da mesa"
  1382. #define MSG_POSITION_UNKNOWN "XY antes de Z"
  1383. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1384. #define MSG_BABYSTEP_X "Babystep X"
  1385. #define MSG_BABYSTEP_Y "Babystep Y"
  1386. #define MSG_BABYSTEP_Z "Babystep Z"
  1387. #define MSG_ENDSTOP_ABORT "Endstop abort"
  1388. #define MSG_CONTRAST "Contrast"
  1389. // Serial Console Messages
  1390. #define MSG_Enqueing "enqueing \""
  1391. #define MSG_POWERUP "PowerUp"
  1392. #define MSG_EXTERNAL_RESET " Reset Externo"
  1393. #define MSG_BROWNOUT_RESET " Reset por voltagem incorreta"
  1394. #define MSG_WATCHDOG_RESET " Reset por Bloqueio"
  1395. #define MSG_SOFTWARE_RESET " Reset por Software"
  1396. #define MSG_AUTHOR " | Author: "
  1397. #define MSG_CONFIGURATION_VER " Ultima atualizacao: "
  1398. #define MSG_FREE_MEMORY " memoria Livre: "
  1399. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  1400. #define MSG_OK "ok"
  1401. #define MSG_FILE_SAVED "Guardado."
  1402. #define MSG_ERR_LINE_NO "O Numero da linha Nao e igual ao ultimo Numero da linha+1, Ultima linha:"
  1403. #define MSG_ERR_CHECKSUM_MISMATCH "O checksum Nao coincide, Ultima linha:"
  1404. #define MSG_ERR_NO_CHECKSUM "Nao foi possivel encontrar o checksum com o numero da linha, Ultima linha :"
  1405. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "Nao ha o numero da linha com o checksum, Ultima linha:"
  1406. #define MSG_FILE_PRINTED "Impressao terminada"
  1407. #define MSG_BEGIN_FILE_LIST "Começo da lista de arquivos"
  1408. #define MSG_END_FILE_LIST "Fim da lista de arquivos"
  1409. #define MSG_M104_INVALID_EXTRUDER "M104 Extrusor inválido "
  1410. #define MSG_M105_INVALID_EXTRUDER "M105 Extrusor inválido "
  1411. #define MSG_M200_INVALID_EXTRUDER "M200 Extrusor inválido "
  1412. #define MSG_M218_INVALID_EXTRUDER "M218 Extrusor inválido "
  1413. #define MSG_ERR_NO_THERMISTORS "Nao ha termistor - no temp"
  1414. #define MSG_M109_INVALID_EXTRUDER "M109 Extrusor inválido "
  1415. #define MSG_HEATING "Aquecendo..."
  1416. #define MSG_HEATING_COMPLETE "Aquecido."
  1417. #define MSG_BED_HEATING "Aquecendo a Base."
  1418. #define MSG_BED_DONE "Base quente."
  1419. #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"
  1420. #define MSG_COUNT_X " Conta X:"
  1421. #define MSG_ERR_KILLED "Impressora parada com kill() !!"
  1422. #define MSG_ERR_STOPPED "Impressora parada por erros. Coserte o erro e use M999 para recomeçar!. (Temperatura reiniciada. Ajuste antes de recomeçar)"
  1423. #define MSG_RESEND "Reenviar:"
  1424. #define MSG_UNKNOWN_COMMAND "Comando desconhecido:\""
  1425. #define MSG_ACTIVE_EXTRUDER "Extrusor ativo: "
  1426. #define MSG_INVALID_EXTRUDER "Extrusor invalido"
  1427. #define MSG_X_MIN "x_min: "
  1428. #define MSG_X_MAX "x_max: "
  1429. #define MSG_Y_MIN "y_min: "
  1430. #define MSG_Y_MAX "y_max: "
  1431. #define MSG_Z_MIN "z_min: "
  1432. #define MSG_Z_MAX "z_max: "
  1433. #define MSG_M119_REPORT "Relatando estado do ponto final"
  1434. #define MSG_ENDSTOP_HIT "PULSADO"
  1435. #define MSG_ENDSTOP_OPEN "Aberto"
  1436. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  1437. #define MSG_SD_CANT_OPEN_SUBDIR "Nao pode abrir sub diretorio"
  1438. #define MSG_SD_INIT_FAIL "Falha ao iniciar SD"
  1439. #define MSG_SD_VOL_INIT_FAIL "Falha ao montar volume"
  1440. #define MSG_SD_OPENROOT_FAIL "Falha ao abrir diretorio raiz"
  1441. #define MSG_SD_CARD_OK "cartao SD ok"
  1442. #define MSG_SD_WORKDIR_FAIL "Falha ao abrir diretorio de trabalho"
  1443. #define MSG_SD_OPEN_FILE_FAIL "Erro ao abrir, Arquivo: "
  1444. #define MSG_SD_FILE_OPENED "Arquivo aberto:"
  1445. #define MSG_SD_SIZE " Size:"
  1446. #define MSG_SD_FILE_SELECTED "Arquivo selecionado"
  1447. #define MSG_SD_WRITE_TO_FILE "Escrevendo no arquivo: "
  1448. #define MSG_SD_PRINTING_BYTE "SD imprimindo o byte "
  1449. #define MSG_SD_NOT_PRINTING "Nao esta se imprimindo com o SD"
  1450. #define MSG_SD_ERR_WRITE_TO_FILE "Erro ao escrever no arquivo"
  1451. #define MSG_SD_CANT_ENTER_SUBDIR "Nao pode abrir o sub diretorio:"
  1452. #define MSG_STEPPER_TOO_HIGH "Steprate muito alto : "
  1453. #define MSG_ENDSTOPS_HIT "O ponto final foi tocado: "
  1454. #define MSG_ERR_COLD_EXTRUDE_STOP " Extrusao a frio evitada"
  1455. #define MSG_ERR_LONG_EXTRUDE_STOP " Extrusao muito larga evitada"
  1456. #define MSG_BABYSTEPPING_X "Babystepping X"
  1457. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  1458. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  1459. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Algo esta errado na estrutura do Menu."
  1460. #endif
  1461. #if LANGUAGE_CHOICE == 9
  1462. // LCD Menu Messages
  1463. // Please note these are limited to 17 characters!
  1464. #define WELCOME_MSG MACHINE_NAME " valmis."
  1465. #define MSG_SD_INSERTED "Kortti asetettu"
  1466. #define MSG_SD_REMOVED "Kortti poistettu"
  1467. #define MSG_MAIN "Palaa"
  1468. #define MSG_AUTOSTART "Automaatti"
  1469. #define MSG_DISABLE_STEPPERS "Vapauta moottorit"
  1470. #define MSG_AUTO_HOME "Aja referenssiin"
  1471. #define MSG_SET_ORIGIN "Aseta origo"
  1472. #define MSG_PREHEAT_PLA "Esilammita PLA"
  1473. #define MSG_PREHEAT_PLA_SETTINGS "Esilamm. PLA konf"
  1474. #define MSG_PREHEAT_ABS "Esilammita ABS"
  1475. #define MSG_PREHEAT_ABS_SETTINGS "Esilamm. ABS konf"
  1476. #define MSG_COOLDOWN "Jaahdyta"
  1477. #define MSG_SWITCH_PS_ON "Switch Power On"
  1478. #define MSG_SWITCH_PS_OFF "Switch Power Off"
  1479. #define MSG_EXTRUDE "Pursota"
  1480. #define MSG_RETRACT "Veda takaisin"
  1481. #define MSG_MOVE_AXIS "Liikuta akseleita"
  1482. #define MSG_MOVE_X "Move X"
  1483. #define MSG_MOVE_Y "Move Y"
  1484. #define MSG_MOVE_Z "Move Z"
  1485. #define MSG_MOVE_E "Extruder"
  1486. #define MSG_MOVE_01MM "Move 0.1mm"
  1487. #define MSG_MOVE_1MM "Move 1mm"
  1488. #define MSG_MOVE_10MM "Move 10mm"
  1489. #define MSG_SPEED "Nopeus"
  1490. #define MSG_NOZZLE "Suutin"
  1491. #define MSG_NOZZLE1 "Suutin2"
  1492. #define MSG_NOZZLE2 "Suutin3"
  1493. #define MSG_BED "Alusta"
  1494. #define MSG_FAN_SPEED "Tuul. nopeus"
  1495. #define MSG_FLOW "Virtaus"
  1496. #define MSG_CONTROL "Kontrolli"
  1497. #define MSG_MIN " \002 Min"
  1498. #define MSG_MAX " \002 Max"
  1499. #define MSG_FACTOR " \002 Kerr"
  1500. #define MSG_AUTOTEMP "Autotemp"
  1501. #define MSG_ON "On "
  1502. #define MSG_OFF "Off"
  1503. #define MSG_PID_P "PID-P"
  1504. #define MSG_PID_I "PID-I"
  1505. #define MSG_PID_D "PID-D"
  1506. #define MSG_PID_C "PID-C"
  1507. #define MSG_ACC "Kiihtyv"
  1508. #define MSG_VXY_JERK "Vxy-jerk"
  1509. #define MSG_VZ_JERK "Vz-jerk"
  1510. #define MSG_VE_JERK "Ve-jerk"
  1511. #define MSG_VMAX "Vmax "
  1512. #define MSG_X "x"
  1513. #define MSG_Y "y"
  1514. #define MSG_Z "z"
  1515. #define MSG_E "e"
  1516. #define MSG_VMIN "Vmin"
  1517. #define MSG_VTRAV_MIN "VLiike min"
  1518. #define MSG_AMAX "Amax "
  1519. #define MSG_A_RETRACT "A-peruuta"
  1520. #define MSG_XSTEPS "Xsteps/mm"
  1521. #define MSG_YSTEPS "Ysteps/mm"
  1522. #define MSG_ZSTEPS "Zsteps/mm"
  1523. #define MSG_ESTEPS "Esteps/mm"
  1524. #define MSG_RECTRACT "Veda takaisin"
  1525. #define MSG_TEMPERATURE "Lampotila"
  1526. #define MSG_MOTION "Liike"
  1527. #define MSG_CONTRAST "LCD contrast"
  1528. #define MSG_STORE_EPROM "Tallenna muistiin"
  1529. #define MSG_LOAD_EPROM "Lataa muistista"
  1530. #define MSG_RESTORE_FAILSAFE "Palauta oletus"
  1531. #define MSG_REFRESH "Paivita"
  1532. #define MSG_WATCH "Seuraa"
  1533. #define MSG_PREPARE "Valmistele"
  1534. #define MSG_TUNE "Saada"
  1535. #define MSG_PAUSE_PRINT "Keskeyta tulostus"
  1536. #define MSG_RESUME_PRINT "Jatka tulostusta"
  1537. #define MSG_STOP_PRINT "Pysayta tulostus"
  1538. #define MSG_CARD_MENU "Korttivalikko"
  1539. #define MSG_NO_CARD "Ei korttia"
  1540. #define MSG_DWELL "Nukkumassa..."
  1541. #define MSG_USERWAIT "Odotet. valintaa"
  1542. #define MSG_RESUMING "Jatke. tulostusta"
  1543. #define MSG_NO_MOVE "Ei liiketta."
  1544. #define MSG_KILLED "KILLED. "
  1545. #define MSG_STOPPED "STOPPED. "
  1546. #define MSG_CONTROL_RETRACT "Veda mm"
  1547. #define MSG_CONTROL_RETRACTF "Veda F"
  1548. #define MSG_CONTROL_RETRACT_ZLIFT "Z mm"
  1549. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  1550. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet F"
  1551. #define MSG_AUTORETRACT "AutoVeto."
  1552. #define MSG_FILAMENTCHANGE "Change filament"
  1553. #define MSG_INIT_SDCARD "Init. SD-Card"
  1554. #define MSG_CNG_SDCARD "Change SD-Card"
  1555. #define MSG_ZPROBE_OUT "Z probe out. bed"
  1556. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  1557. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1558. #define MSG_BABYSTEP_X "Babystep X"
  1559. #define MSG_BABYSTEP_Y "Babystep Y"
  1560. #define MSG_BABYSTEP_Z "Babystep Z"
  1561. #define MSG_ENDSTOP_ABORT "Endstop abort"
  1562. #define MSG_CONTRAST "Contrast"
  1563. // Serial Console Messages
  1564. #define MSG_Enqueing "jonoon \""
  1565. #define MSG_POWERUP "Kaynnistys"
  1566. #define MSG_EXTERNAL_RESET " Ulkoinen Reset"
  1567. #define MSG_BROWNOUT_RESET " Alajannite Reset"
  1568. #define MSG_WATCHDOG_RESET " Vahtikoira Reset"
  1569. #define MSG_SOFTWARE_RESET " Ohjelmisto Reset"
  1570. #define MSG_AUTHOR " | Author: "
  1571. #define MSG_CONFIGURATION_VER " Paivitetty viimeksi: "
  1572. #define MSG_FREE_MEMORY " Vapaata muistia: "
  1573. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  1574. #define MSG_OK "ok"
  1575. #define MSG_FILE_SAVED "Tiedosto tallennettu."
  1576. #define MSG_ERR_LINE_NO "Rivinumero ei ole Viimeisin rivi+1, Viimeisin rivi: "
  1577. #define MSG_ERR_CHECKSUM_MISMATCH "Tarkistesummassa virhe, Viimeisin rivi: "
  1578. #define MSG_ERR_NO_CHECKSUM "Rivilla ei tarkistesummaa, Viimeisin rivi: "
  1579. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "Ei rivinumeroa tarkistesumman kanssa, Viimeisin rivi: "
  1580. #define MSG_FILE_PRINTED "Tiedoston tulostus valmis"
  1581. #define MSG_BEGIN_FILE_LIST "Tiedostolistauksen alku"
  1582. #define MSG_END_FILE_LIST "Tiedostolistauksen loppu"
  1583. #define MSG_M104_INVALID_EXTRUDER "M104 Virheellinen suutin "
  1584. #define MSG_M105_INVALID_EXTRUDER "M105 Virheellinen suutin "
  1585. #define MSG_M200_INVALID_EXTRUDER "M200 Virheellinen suutin "
  1586. #define MSG_M218_INVALID_EXTRUDER "M218 Virheellinen suutin "
  1587. #define MSG_ERR_NO_THERMISTORS "Ei termistoreja - ei lampotiloja"
  1588. #define MSG_M109_INVALID_EXTRUDER "M109 Virheellinen suutin "
  1589. #define MSG_HEATING "Lammitan..."
  1590. #define MSG_HEATING_COMPLETE "Lammitys valmis."
  1591. #define MSG_BED_HEATING "Alusta lampiaa."
  1592. #define MSG_BED_DONE "Alusta valmis."
  1593. #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"
  1594. #define MSG_COUNT_X " Laskuri X: "
  1595. #define MSG_ERR_KILLED "Tulostin pysaytetty. kill():ia kutsuttu!"
  1596. #define MSG_ERR_STOPPED "Tulostin pysaytetty virheiden vuoksi. Korjaa virheet ja kayta M999 kaynnistaaksesi uudelleen. (Lampotila nollattiin. Aseta lampotila sen jalkeen kun jatkat.)"
  1597. #define MSG_RESEND "Uudelleenlahetys: "
  1598. #define MSG_UNKNOWN_COMMAND "Tuntematon komento: \""
  1599. #define MSG_ACTIVE_EXTRUDER "Aktiivinen suutin: "
  1600. #define MSG_INVALID_EXTRUDER "Virheellinen suutin"
  1601. #define MSG_X_MIN "x_min: "
  1602. #define MSG_X_MAX "x_max: "
  1603. #define MSG_Y_MIN "y_min: "
  1604. #define MSG_Y_MAX "y_max: "
  1605. #define MSG_Z_MIN "z_min: "
  1606. #define MSG_Z_MAX "z_max: "
  1607. #define MSG_M119_REPORT "Rajakytkimien tilaraportti"
  1608. #define MSG_ENDSTOP_HIT "AKTIIVISENA"
  1609. #define MSG_ENDSTOP_OPEN "avoinna"
  1610. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  1611. #define MSG_SD_CANT_OPEN_SUBDIR "Alihakemistoa ei voitu avata"
  1612. #define MSG_SD_INIT_FAIL "SD alustus epaonnistui"
  1613. #define MSG_SD_VOL_INIT_FAIL "volume.init epaonnistui"
  1614. #define MSG_SD_OPENROOT_FAIL "openRoot epaonnistui"
  1615. #define MSG_SD_CARD_OK "SD kortti ok"
  1616. #define MSG_SD_WORKDIR_FAIL "workDir open epaonnistui"
  1617. #define MSG_SD_OPEN_FILE_FAIL "avaus epaonnistui, Tiedosto: "
  1618. #define MSG_SD_FILE_OPENED "Tiedosto avattu: "
  1619. #define MSG_SD_SIZE " Koko: "
  1620. #define MSG_SD_FILE_SELECTED "Tiedosto valittu"
  1621. #define MSG_SD_WRITE_TO_FILE "Kirjoitetaan tiedostoon: "
  1622. #define MSG_SD_PRINTING_BYTE "SD tulostus byte "
  1623. #define MSG_SD_NOT_PRINTING "Ei SD tulostus"
  1624. #define MSG_SD_ERR_WRITE_TO_FILE "virhe kirjoitettaessa tiedostoon"
  1625. #define MSG_SD_CANT_ENTER_SUBDIR "Alihakemistoon ei voitu siirtya: "
  1626. #define MSG_STEPPER_TOO_HIGH "Askellustaajuus liian suuri: "
  1627. #define MSG_ENDSTOPS_HIT "paatyrajat aktivoitu: "
  1628. #define MSG_ERR_COLD_EXTRUDE_STOP " kylmana pursotus estetty"
  1629. #define MSG_ERR_LONG_EXTRUDE_STOP " liian pitka pursotus estetty"
  1630. #define MSG_BABYSTEPPING_X "Babystepping X"
  1631. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  1632. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  1633. #define MSG_ENDSTOP_ABORT "Endstop abort"
  1634. #define MSG_CONTRAST "Contrast"
  1635. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
  1636. #endif
  1637. #if LANGUAGE_CHOICE == 10
  1638. // LCD Menu Messages
  1639. // Please note these are limited to 17 characters!
  1640. #define WELCOME_MSG MACHINE_NAME " parada."
  1641. #define MSG_SD_INSERTED "Tarcheta colocada"
  1642. #define MSG_SD_REMOVED "Tarcheta retirada"
  1643. #define MSG_MAIN "Menu prencipal"
  1644. #define MSG_AUTOSTART " Autostart"
  1645. #define MSG_DISABLE_STEPPERS "Amortar motors"
  1646. #define MSG_AUTO_HOME "Levar a l'orichen"
  1647. #define MSG_SET_ORIGIN "Establir zero"
  1648. #define MSG_PREHEAT_PLA "Precalentar PLA"
  1649. #define MSG_PREHEAT_PLA_SETTINGS "Achustar tem. PLA"
  1650. #define MSG_PREHEAT_ABS "Precalentar ABS"
  1651. #define MSG_PREHEAT_ABS_SETTINGS "Achustar tem. ABS"
  1652. #define MSG_COOLDOWN "Enfriar"
  1653. #define MSG_SWITCH_PS_ON "Enchegar Fuent"
  1654. #define MSG_SWITCH_PS_OFF "Desenchegar Fuent"
  1655. #define MSG_EXTRUDE "Extruir"
  1656. #define MSG_RETRACT "Retraer"
  1657. #define MSG_MOVE_AXIS "Mover Eixes"
  1658. #define MSG_MOVE_X "Move X"
  1659. #define MSG_MOVE_Y "Move Y"
  1660. #define MSG_MOVE_Z "Move Z"
  1661. #define MSG_MOVE_E "Extruder"
  1662. #define MSG_MOVE_01MM "Move 0.1mm"
  1663. #define MSG_MOVE_1MM "Move 1mm"
  1664. #define MSG_MOVE_10MM "Move 10mm"
  1665. #define MSG_SPEED "Velocidat"
  1666. #define MSG_NOZZLE "Nozzle"
  1667. #define MSG_NOZZLE1 "Nozzle2"
  1668. #define MSG_NOZZLE2 "Nozzle3"
  1669. #define MSG_BED "Base"
  1670. #define MSG_FAN_SPEED "Ixoriador"
  1671. #define MSG_FLOW "Fluxo"
  1672. #define MSG_CONTROL "Control"
  1673. #define MSG_MIN "\002 Min"
  1674. #define MSG_MAX "\002 Max"
  1675. #define MSG_FACTOR "\002 Fact"
  1676. #define MSG_AUTOTEMP "Autotemp"
  1677. #define MSG_ON "On"
  1678. #define MSG_OFF "Off"
  1679. #define MSG_PID_P "PID-P"
  1680. #define MSG_PID_I "PID-I"
  1681. #define MSG_PID_D "PID-D"
  1682. #define MSG_PID_C "PID-C"
  1683. #define MSG_ACC "Acel"
  1684. #define MSG_VXY_JERK "Vxy-jerk"
  1685. #define MSG_VZ_JERK "Vz-jerk"
  1686. #define MSG_VE_JERK "Ves-jerk"
  1687. #define MSG_VMAX "Vmax"
  1688. #define MSG_X "x"
  1689. #define MSG_Y "y"
  1690. #define MSG_Z "z"
  1691. #define MSG_E "y"
  1692. #define MSG_VMIN "Vmin"
  1693. #define MSG_VTRAV_MIN "VTrav min"
  1694. #define MSG_AMAX "Amax"
  1695. #define MSG_A_RETRACT "A-retrac."
  1696. #define MSG_XSTEPS "X trangos/mm"
  1697. #define MSG_YSTEPS "Y trangos/mm"
  1698. #define MSG_ZSTEPS "Z trangos/mm"
  1699. #define MSG_ESTEPS "E trangos/mm"
  1700. #define MSG_RECTRACT "Retraer"
  1701. #define MSG_TEMPERATURE "Temperatura"
  1702. #define MSG_MOTION "Movimiento"
  1703. #define MSG_STORE_EPROM "Alzar Memoria"
  1704. #define MSG_LOAD_EPROM "Cargar Memoria"
  1705. #define MSG_RESTORE_FAILSAFE "Rest. d'emerchen."
  1706. #define MSG_REFRESH "Tornar a cargar"
  1707. #define MSG_WATCH "Monitorizar"
  1708. #define MSG_PREPARE "Preparar"
  1709. #define MSG_TUNE "Achustar"
  1710. #define MSG_PAUSE_PRINT "Pausar impresion"
  1711. #define MSG_RESUME_PRINT "Contin. impresion"
  1712. #define MSG_STOP_PRINT "Detener Impresion"
  1713. #define MSG_CARD_MENU "Menu de SD"
  1714. #define MSG_NO_CARD "No i hai tarcheta"
  1715. #define MSG_DWELL "Reposo..."
  1716. #define MSG_USERWAIT "Asperan. ordines"
  1717. #define MSG_RESUMING "Contin. impresion"
  1718. #define MSG_NO_MOVE "Sin movimiento"
  1719. #define MSG_KILLED "ATURADA D'EMERCH."
  1720. #define MSG_STOPPED "ATURADA."
  1721. #define MSG_CONTROL_RETRACT "Retraer mm"
  1722. #define MSG_CONTROL_RETRACTF "Retraer F"
  1723. #define MSG_CONTROL_RETRACT_ZLIFT "Devantar mm"
  1724. #define MSG_CONTROL_RETRACT_RECOVER "DesRet +mm"
  1725. #define MSG_CONTROL_RETRACT_RECOVERF "DesRet F"
  1726. #define MSG_AUTORETRACT "AutoRetr."
  1727. #define MSG_FILAMENTCHANGE "Cambear"
  1728. #define MSG_INIT_SDCARD "Encetan. tarcheta"
  1729. #define MSG_CNG_SDCARD "Cambiar tarcheta"
  1730. #define MSG_RECTRACT_WIDE "Retraer"
  1731. #define MSG_TEMPERATURE_WIDE "Temperatura"
  1732. #define MSG_TEMPERATURE_RTN "Temperatura"
  1733. #define MSG_MAIN_WIDE "Menu Prencipal"
  1734. #define MSG_MOTION_WIDE "Movimiento"
  1735. #define MSG_PREPARE_ALT "Preparar"
  1736. #define MSG_CONTROL_ARROW "Control"
  1737. #define MSG_RETRACT_ARROW "Retraer"
  1738. #define MSG_STEPPER_RELEASED "Desacoplada."
  1739. #define MSG_ZPROBE_OUT "Z probe out. bed"
  1740. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  1741. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1742. #define MSG_BABYSTEP_X "Babystep X"
  1743. #define MSG_BABYSTEP_Y "Babystep Y"
  1744. #define MSG_BABYSTEP_Z "Babystep Z"
  1745. #define MSG_ENDSTOP_ABORT "Endstop abort"
  1746. #define MSG_CONTRAST "Contrast"
  1747. // Serial Console Messages
  1748. #define MSG_Enqueing "En coda \""
  1749. #define MSG_POWERUP "PowerUp"
  1750. #define MSG_EXTERNAL_RESET " Reset Externo"
  1751. #define MSG_BROWNOUT_RESET " Reset por Voltaje Incorrecto"
  1752. #define MSG_WATCHDOG_RESET " Reset por Bloqueo"
  1753. #define MSG_SOFTWARE_RESET " Reset por Software"
  1754. #define MSG_AUTHOR " | Autor: "
  1755. #define MSG_CONFIGURATION_VER " Zaguer esvielle: "
  1756. #define MSG_FREE_MEMORY " Memoria libre: "
  1757. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  1758. #define MSG_OK "ok"
  1759. #define MSG_FILE_SAVED "Guardau."
  1760. #define MSG_ERR_LINE_NO "O Numero de Linea no ye igual a l'Ultimo Numero de Linea+1, Ultima Linea:"
  1761. #define MSG_ERR_CHECKSUM_MISMATCH "o checksum no coincide, Ultima Linea:"
  1762. #define MSG_ERR_NO_CHECKSUM "No se podió trobar o Checksum con o numero de linea, Ultima Linea:"
  1763. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No se trobo o Numero de Linea con o Checksum, Ultima Linea:"
  1764. #define MSG_FILE_PRINTED "Impresion rematada"
  1765. #define MSG_BEGIN_FILE_LIST "Prencipio d'a lista de fichero"
  1766. #define MSG_END_FILE_LIST "Fin d'a lista de fichero"
  1767. #define MSG_M104_INVALID_EXTRUDER "M104 Extrusor Invalido "
  1768. #define MSG_M105_INVALID_EXTRUDER "M105 Extrusor Invalido "
  1769. #define MSG_M200_INVALID_EXTRUDER "M200 Extrusor Invalido "
  1770. #define MSG_M218_INVALID_EXTRUDER "M218 Extrusor Invalido "
  1771. #define MSG_ERR_NO_THERMISTORS "No i hai termistores - no temp"
  1772. #define MSG_M109_INVALID_EXTRUDER "M109 Extrusor Invalido "
  1773. #define MSG_HEATING "Calentando..."
  1774. #define MSG_HEATING_COMPLETE "Calentamiento Feito."
  1775. #define MSG_BED_HEATING "Calentando la base."
  1776. #define MSG_BED_DONE "Base Calient."
  1777. #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"
  1778. #define MSG_COUNT_X " Cuenta X:"
  1779. #define MSG_ERR_KILLED "Impresora Aturada con kill()!!"
  1780. #define MSG_ERR_STOPPED "Impresora aturada por errors. Apanye a error y use M999 Ta reiniciar!. (a temperatura se reestablece. Ajustela antes de continar)"
  1781. #define MSG_RESEND "Reninviar:"
  1782. #define MSG_UNKNOWN_COMMAND "Comando Desconoixiu:\""
  1783. #define MSG_ACTIVE_EXTRUDER "Extrusor Activo: "
  1784. #define MSG_INVALID_EXTRUDER "Extrusor Invalido"
  1785. #define MSG_X_MIN "x_min: "
  1786. #define MSG_X_MAX "x_max: "
  1787. #define MSG_Y_MIN "y_min: "
  1788. #define MSG_Y_MAX "y_max: "
  1789. #define MSG_Z_MIN "z_min: "
  1790. #define MSG_Z_MAX "z_max: "
  1791. #define MSG_M119_REPORT "Comprobando fins de corrida."
  1792. #define MSG_ENDSTOP_HIT "PULSAU"
  1793. #define MSG_ENDSTOP_OPEN "ubierto"
  1794. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  1795. #define MSG_SD_CANT_OPEN_SUBDIR "No se podió ubrir a subcarpeta."
  1796. #define MSG_SD_INIT_FAIL "Fallo en encetar a SD"
  1797. #define MSG_SD_VOL_INIT_FAIL "Fallo en amontar o volumen"
  1798. #define MSG_SD_OPENROOT_FAIL "Fallo en ubrir a carpeta raiz"
  1799. #define MSG_SD_CARD_OK "Tarcheta SD OK"
  1800. #define MSG_SD_WORKDIR_FAIL "Fallo en ubrir a carpeta de treballo"
  1801. #define MSG_SD_OPEN_FILE_FAIL "Error en ubrir, Fichero: "
  1802. #define MSG_SD_FILE_OPENED "Fichero ubierto:"
  1803. #define MSG_SD_SIZE " Grandaria:"
  1804. #define MSG_SD_FILE_SELECTED "Fichero Seleccionau"
  1805. #define MSG_SD_WRITE_TO_FILE "Escribindo en o fichero: "
  1806. #define MSG_SD_PRINTING_BYTE "SD imprentando o byte "
  1807. #define MSG_SD_NOT_PRINTING "No se ye imprentando con SD"
  1808. #define MSG_SD_ERR_WRITE_TO_FILE "Error en escribir en o fichero"
  1809. #define MSG_SD_CANT_ENTER_SUBDIR "No se puede ubrir a carpeta:"
  1810. #define MSG_STEPPER_TOO_HIGH "Steprate masiau alto : "
  1811. #define MSG_ENDSTOPS_HIT "S'ha tocau a fin de carril: "
  1812. #define MSG_ERR_COLD_EXTRUDE_STOP " extrusion fria privada"
  1813. #define MSG_ERR_LONG_EXTRUDE_STOP " extrusion masiau larga privada"
  1814. #define MSG_BABYSTEPPING_X "Babystepping X"
  1815. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  1816. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  1817. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
  1818. #endif
  1819. #if LANGUAGE_CHOICE == 11 //Dutch
  1820. // LCD Menu Messages
  1821. // Please note these are limited to 17 characters!
  1822. #define WELCOME_MSG MACHINE_NAME " gereed."
  1823. #define MSG_SD_INSERTED "Kaart ingestoken"
  1824. #define MSG_SD_REMOVED "Kaart verwijderd"
  1825. #define MSG_MAIN "Main"
  1826. #define MSG_AUTOSTART "Autostart"
  1827. #define MSG_DISABLE_STEPPERS "Motoren uit"
  1828. #define MSG_AUTO_HOME "Auto home"
  1829. #define MSG_SET_ORIGIN "Nulpunt instellen"
  1830. #define MSG_PREHEAT_PLA "PLA voorverwarmen"
  1831. #define MSG_PREHEAT_PLA_SETTINGS "PLA verw. conf"
  1832. #define MSG_PREHEAT_ABS "ABS voorverwarmen"
  1833. #define MSG_PREHEAT_ABS_SETTINGS "ABS verw. conf"
  1834. #define MSG_COOLDOWN "Afkoelen"
  1835. #define MSG_SWITCH_PS_ON "Stroom aan"
  1836. #define MSG_SWITCH_PS_OFF "Stroom uit"
  1837. #define MSG_EXTRUDE "Extrude"
  1838. #define MSG_RETRACT "Retract"
  1839. #define MSG_MOVE_AXIS "As verplaatsen"
  1840. #define MSG_MOVE_X "Verplaats X"
  1841. #define MSG_MOVE_Y "Verplaats Y"
  1842. #define MSG_MOVE_Z "Verplaats Z"
  1843. #define MSG_MOVE_E "Extruder"
  1844. #define MSG_MOVE_01MM "Verplaats 0.1mm"
  1845. #define MSG_MOVE_1MM "Verplaats 1mm"
  1846. #define MSG_MOVE_10MM "Verplaats 10mm"
  1847. #define MSG_SPEED "Snelheid"
  1848. #define MSG_NOZZLE "Nozzle"
  1849. #define MSG_NOZZLE1 "Nozzle2"
  1850. #define MSG_NOZZLE2 "Nozzle3"
  1851. #define MSG_BED "Bed"
  1852. #define MSG_FAN_SPEED "Fan snelheid"
  1853. #define MSG_FLOW "Flow"
  1854. #define MSG_CONTROL "Control"
  1855. #define MSG_MIN " \002 Min"
  1856. #define MSG_MAX " \002 Max"
  1857. #define MSG_FACTOR " \002 Fact"
  1858. #define MSG_AUTOTEMP "Autotemp"
  1859. #define MSG_ON "Aan "
  1860. #define MSG_OFF "Uit"
  1861. #define MSG_PID_P "PID-P"
  1862. #define MSG_PID_I "PID-I"
  1863. #define MSG_PID_D "PID-D"
  1864. #define MSG_PID_C "PID-C"
  1865. #define MSG_ACC "Versn"
  1866. #define MSG_VXY_JERK "Vxy-jerk"
  1867. #define MSG_VZ_JERK "Vz-jerk"
  1868. #define MSG_VE_JERK "Ve-jerk"
  1869. #define MSG_VMAX "Vmax "
  1870. #define MSG_X "x"
  1871. #define MSG_Y "y"
  1872. #define MSG_Z "z"
  1873. #define MSG_E "e"
  1874. #define MSG_VMIN "Vmin"
  1875. #define MSG_VTRAV_MIN "VTrav min"
  1876. #define MSG_AMAX "Amax "
  1877. #define MSG_A_RETRACT "A-retract"
  1878. #define MSG_XSTEPS "Xsteps/mm"
  1879. #define MSG_YSTEPS "Ysteps/mm"
  1880. #define MSG_ZSTEPS "Zsteps/mm"
  1881. #define MSG_ESTEPS "Esteps/mm"
  1882. #define MSG_RECTRACT "Terugtrekken"
  1883. #define MSG_TEMPERATURE "Temperatuur"
  1884. #define MSG_MOTION "Beweging"
  1885. #define MSG_CONTRAST "LCD contrast"
  1886. #define MSG_STORE_EPROM "Geheugen opslaan"
  1887. #define MSG_LOAD_EPROM "Geheugen laden"
  1888. #define MSG_RESTORE_FAILSAFE "Noodstop reset"
  1889. #define MSG_REFRESH "Ververs"
  1890. #define MSG_WATCH "Info scherm"
  1891. #define MSG_PREPARE "Voorbereiden"
  1892. #define MSG_TUNE "Afstellen"
  1893. #define MSG_PAUSE_PRINT "Print pauzeren"
  1894. #define MSG_RESUME_PRINT "Print hervatten"
  1895. #define MSG_STOP_PRINT "Print stoppen"
  1896. #define MSG_CARD_MENU "Print van SD"
  1897. #define MSG_NO_CARD "Geen SD kaart"
  1898. #define MSG_DWELL "Slapen..."
  1899. #define MSG_USERWAIT "Wachten..."
  1900. #define MSG_RESUMING "Print hervatten"
  1901. #define MSG_NO_MOVE "Geen beweging."
  1902. #define MSG_KILLED "AFGEBROKEN. "
  1903. #define MSG_STOPPED "GESTOPT. "
  1904. #define MSG_CONTROL_RETRACT "Retract mm"
  1905. #define MSG_CONTROL_RETRACTF "Retract F"
  1906. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  1907. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  1908. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet F"
  1909. #define MSG_AUTORETRACT "AutoRetr."
  1910. #define MSG_FILAMENTCHANGE "Verv. Filament"
  1911. #define MSG_INIT_SDCARD "Init. SD kaart"
  1912. #define MSG_CNG_SDCARD "Verv. SD card"
  1913. #define MSG_ZPROBE_OUT "Z probe uit. bed"
  1914. #define MSG_POSITION_UNKNOWN "Home X/Y voor Z"
  1915. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  1916. #define MSG_BABYSTEP_X "Babystap X"
  1917. #define MSG_BABYSTEP_Y "Babystap Y"
  1918. #define MSG_BABYSTEP_Z "Babystap Z"
  1919. #define MSG_ENDSTOP_ABORT "Endstop afbr."
  1920. // Serial Console Messages
  1921. #define MSG_Enqueing "enqueing \""
  1922. #define MSG_POWERUP "Opstarten"
  1923. #define MSG_EXTERNAL_RESET " Externe Reset"
  1924. #define MSG_BROWNOUT_RESET " Lage voedingsspanning Reset"
  1925. #define MSG_WATCHDOG_RESET " Watchdog Reset"
  1926. #define MSG_SOFTWARE_RESET " Software Reset"
  1927. #define MSG_AUTHOR " | Auteur: "
  1928. #define MSG_CONFIGURATION_VER " Laatst bijgewerkt: "
  1929. #define MSG_FREE_MEMORY " Vrij Geheugen: "
  1930. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  1931. #define MSG_OK "ok"
  1932. #define MSG_FILE_SAVED "Bestand opslaan voltooid."
  1933. #define MSG_ERR_LINE_NO "Regelnummer is niet het laatste regelnummer+1, Laatste regel: "
  1934. #define MSG_ERR_CHECKSUM_MISMATCH "Checksum fout, Laatste regel: "
  1935. #define MSG_ERR_NO_CHECKSUM "Regel zonder checksum, Laatste regel: "
  1936. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "Geen regelnummer met checksum, Laatste regel: "
  1937. #define MSG_FILE_PRINTED "Bestand afdrukken klaar"
  1938. #define MSG_BEGIN_FILE_LIST "Begin bestandslijst"
  1939. #define MSG_END_FILE_LIST "Einde bestandslijst"
  1940. #define MSG_M104_INVALID_EXTRUDER "M104 Ongeldige extruder "
  1941. #define MSG_M105_INVALID_EXTRUDER "M105 Ongeldige extruder "
  1942. #define MSG_M200_INVALID_EXTRUDER "M200 Ongeldige extruder "
  1943. #define MSG_M218_INVALID_EXTRUDER "M218 Ongeldige extruder "
  1944. #define MSG_ERR_NO_THERMISTORS "Geen thermistors - geen temperatuur"
  1945. #define MSG_M109_INVALID_EXTRUDER "M109 Ongeldige extruder "
  1946. #define MSG_HEATING "Opwarmen..."
  1947. #define MSG_HEATING_COMPLETE "Opwarmen klaar."
  1948. #define MSG_BED_HEATING "Bed opwarmen."
  1949. #define MSG_BED_DONE "Bed klaar."
  1950. #define MSG_M115_REPORT "FIRMWARE_NAME:Marlin V1; Sprinter/grbl mashup voor gen6 FIRMWARE_URL:" FIRMWARE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n"
  1951. #define MSG_COUNT_X " Aantal X: "
  1952. #define MSG_ERR_KILLED "Printer stopgezet. kill() aangeroepen!"
  1953. #define MSG_ERR_STOPPED "Printer gestopt vanwege fouten. Los de fout op en gebruik M999 om opnieuw te starten. (Temperatuur is gereset, stel deze opnieuw in na herstart)"
  1954. #define MSG_RESEND "Opnieuw sturen: "
  1955. #define MSG_UNKNOWN_COMMAND "Onbekend commando: \""
  1956. #define MSG_ACTIVE_EXTRUDER "Actieve Extruder: "
  1957. #define MSG_INVALID_EXTRUDER "Ongeldige extruder"
  1958. #define MSG_X_MIN "x_min: "
  1959. #define MSG_X_MAX "x_max: "
  1960. #define MSG_Y_MIN "y_min: "
  1961. #define MSG_Y_MAX "y_max: "
  1962. #define MSG_Z_MIN "z_min: "
  1963. #define MSG_Z_MAX "z_max: "
  1964. #define MSG_M119_REPORT "Eindstop statusrapportage:"
  1965. #define MSG_ENDSTOP_HIT "GERAAKT"
  1966. #define MSG_ENDSTOP_OPEN "open"
  1967. #define MSG_HOTEND_OFFSET "Hotend afwijking:"
  1968. #define MSG_SD_CANT_OPEN_SUBDIR "Kan subdirectory niet openen"
  1969. #define MSG_SD_INIT_FAIL "SD initialiseren mislukt"
  1970. #define MSG_SD_VOL_INIT_FAIL "volume.init mislukt"
  1971. #define MSG_SD_OPENROOT_FAIL "openRoot mislukt"
  1972. #define MSG_SD_CARD_OK "SD kaart ok"
  1973. #define MSG_SD_WORKDIR_FAIL "workDir openen mislukt"
  1974. #define MSG_SD_OPEN_FILE_FAIL "Openen mislukt, bestand: "
  1975. #define MSG_SD_FILE_OPENED "Bestand geopend: "
  1976. #define MSG_SD_SIZE " Grootte: "
  1977. #define MSG_SD_FILE_SELECTED "Bestanden geselecteerd:"
  1978. #define MSG_SD_WRITE_TO_FILE "Schrijven naar bestand: "
  1979. #define MSG_SD_PRINTING_BYTE "SD printen byte: "
  1980. #define MSG_SD_NOT_PRINTING "Niet SD printen"
  1981. #define MSG_SD_ERR_WRITE_TO_FILE "Fout tijdens het schrijven naar bestand:"
  1982. #define MSG_SD_CANT_ENTER_SUBDIR "Kan subdirectory niet in: "
  1983. #define MSG_STEPPER_TOO_HIGH "stapsnelheid te hoog:"
  1984. #define MSG_ENDSTOPS_HIT "endstops geraakt: "
  1985. #define MSG_ERR_COLD_EXTRUDE_STOP " Koude extrusie voorkomen"
  1986. #define MSG_ERR_LONG_EXTRUDE_STOP " te lange extrusie voorkomen"
  1987. #define MSG_BABYSTEPPING_X "Babystepping X"
  1988. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  1989. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  1990. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Fout in menustructuur"
  1991. #endif
  1992. #endif // ifndef LANGUAGE_H