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_en.h 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
  4. *
  5. * Based on Sprinter and grbl.
  6. * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
  7. *
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * English
  24. *
  25. * LCD Menu Messages
  26. * See also https://github.com/MarlinFirmware/Marlin/wiki/LCD-Language
  27. *
  28. */
  29. #ifndef LANGUAGE_EN_H
  30. #define LANGUAGE_EN_H
  31. //#define SIMULATE_ROMFONT //Comment in to see what is seen on the character based displays
  32. #if DISABLED(SIMULATE_ROMFONT) && DISABLED(DISPLAY_CHARSET_ISO10646_1) && DISABLED(DISPLAY_CHARSET_ISO10646_5) && DISABLED(DISPLAY_CHARSET_ISO10646_KANA) && DISABLED(DISPLAY_CHARSET_ISO10646_GREEK) && DISABLED(DISPLAY_CHARSET_ISO10646_CN)
  33. #define DISPLAY_CHARSET_ISO10646_1 // use the better font on full graphic displays.
  34. #endif
  35. #ifndef WELCOME_MSG
  36. #define WELCOME_MSG MACHINE_NAME " ready."
  37. #endif
  38. #ifndef MSG_SD_INSERTED
  39. #define MSG_SD_INSERTED "Card inserted"
  40. #endif
  41. #ifndef MSG_SD_REMOVED
  42. #define MSG_SD_REMOVED "Card removed"
  43. #endif
  44. #ifndef MSG_LCD_ENDSTOPS
  45. #define MSG_LCD_ENDSTOPS "Endstops" // Max length 8 characters
  46. #endif
  47. #ifndef MSG_MAIN
  48. #define MSG_MAIN "Main"
  49. #endif
  50. #ifndef MSG_AUTOSTART
  51. #define MSG_AUTOSTART "Autostart"
  52. #endif
  53. #ifndef MSG_DISABLE_STEPPERS
  54. #define MSG_DISABLE_STEPPERS "Disable steppers"
  55. #endif
  56. #ifndef MSG_AUTO_HOME
  57. #define MSG_AUTO_HOME "Auto home"
  58. #endif
  59. #ifndef MSG_AUTO_HOME_X
  60. #define MSG_AUTO_HOME_X "Home X"
  61. #endif
  62. #ifndef MSG_AUTO_HOME_Y
  63. #define MSG_AUTO_HOME_Y "Home Y"
  64. #endif
  65. #ifndef MSG_AUTO_HOME_Z
  66. #define MSG_AUTO_HOME_Z "Home Z"
  67. #endif
  68. #ifndef MSG_LEVEL_BED_HOMING
  69. #define MSG_LEVEL_BED_HOMING "Homing XYZ"
  70. #endif
  71. #ifndef MSG_LEVEL_BED_WAITING
  72. #define MSG_LEVEL_BED_WAITING "Click to Begin"
  73. #endif
  74. #ifndef MSG_LEVEL_BED_NEXT_POINT
  75. #define MSG_LEVEL_BED_NEXT_POINT "Next Point"
  76. #endif
  77. #ifndef MSG_LEVEL_BED_DONE
  78. #define MSG_LEVEL_BED_DONE "Leveling Done!"
  79. #endif
  80. #ifndef MSG_LEVEL_BED_CANCEL
  81. #define MSG_LEVEL_BED_CANCEL "Cancel"
  82. #endif
  83. #ifndef MSG_SET_HOME_OFFSETS
  84. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  85. #endif
  86. #ifndef MSG_HOME_OFFSETS_APPLIED
  87. #define MSG_HOME_OFFSETS_APPLIED "Offsets applied"
  88. #endif
  89. #ifndef MSG_SET_ORIGIN
  90. #define MSG_SET_ORIGIN "Set origin"
  91. #endif
  92. #ifndef MSG_PREHEAT_1
  93. #define MSG_PREHEAT_1 "Preheat PLA"
  94. #endif
  95. #ifndef MSG_PREHEAT_1_N
  96. #define MSG_PREHEAT_1_N MSG_PREHEAT_1 " "
  97. #endif
  98. #ifndef MSG_PREHEAT_1_ALL
  99. #define MSG_PREHEAT_1_ALL MSG_PREHEAT_1 " All"
  100. #endif
  101. #ifndef MSG_PREHEAT_1_BEDONLY
  102. #define MSG_PREHEAT_1_BEDONLY MSG_PREHEAT_1 " Bed"
  103. #endif
  104. #ifndef MSG_PREHEAT_1_SETTINGS
  105. #define MSG_PREHEAT_1_SETTINGS MSG_PREHEAT_1 " conf"
  106. #endif
  107. #ifndef MSG_PREHEAT_2
  108. #define MSG_PREHEAT_2 "Preheat ABS"
  109. #endif
  110. #ifndef MSG_PREHEAT_2_N
  111. #define MSG_PREHEAT_2_N MSG_PREHEAT_2 " "
  112. #endif
  113. #ifndef MSG_PREHEAT_2_ALL
  114. #define MSG_PREHEAT_2_ALL MSG_PREHEAT_2 " All"
  115. #endif
  116. #ifndef MSG_PREHEAT_2_BEDONLY
  117. #define MSG_PREHEAT_2_BEDONLY MSG_PREHEAT_2 " Bed"
  118. #endif
  119. #ifndef MSG_PREHEAT_2_SETTINGS
  120. #define MSG_PREHEAT_2_SETTINGS MSG_PREHEAT_2 " conf"
  121. #endif
  122. #ifndef MSG_H1
  123. #define MSG_H1 "1"
  124. #endif
  125. #ifndef MSG_H2
  126. #define MSG_H2 "2"
  127. #endif
  128. #ifndef MSG_H3
  129. #define MSG_H3 "3"
  130. #endif
  131. #ifndef MSG_H4
  132. #define MSG_H4 "4"
  133. #endif
  134. #ifndef MSG_COOLDOWN
  135. #define MSG_COOLDOWN "Cooldown"
  136. #endif
  137. #ifndef MSG_SWITCH_PS_ON
  138. #define MSG_SWITCH_PS_ON "Switch power on"
  139. #endif
  140. #ifndef MSG_SWITCH_PS_OFF
  141. #define MSG_SWITCH_PS_OFF "Switch power off"
  142. #endif
  143. #ifndef MSG_EXTRUDE
  144. #define MSG_EXTRUDE "Extrude"
  145. #endif
  146. #ifndef MSG_RETRACT
  147. #define MSG_RETRACT "Retract"
  148. #endif
  149. #ifndef MSG_MOVE_AXIS
  150. #define MSG_MOVE_AXIS "Move axis"
  151. #endif
  152. #ifndef MSG_LEVEL_BED
  153. #define MSG_LEVEL_BED "Level bed"
  154. #endif
  155. #ifndef MSG_MOVE_X
  156. #define MSG_MOVE_X "Move X"
  157. #endif
  158. #ifndef MSG_MOVE_Y
  159. #define MSG_MOVE_Y "Move Y"
  160. #endif
  161. #ifndef MSG_MOVE_Z
  162. #define MSG_MOVE_Z "Move Z"
  163. #endif
  164. #ifndef MSG_MOVE_E
  165. #define MSG_MOVE_E "Extruder"
  166. #endif
  167. #ifndef MSG_MOVE_E1
  168. #define MSG_MOVE_E1 "1"
  169. #endif
  170. #ifndef MSG_MOVE_E2
  171. #define MSG_MOVE_E2 "2"
  172. #endif
  173. #ifndef MSG_MOVE_E3
  174. #define MSG_MOVE_E3 "3"
  175. #endif
  176. #ifndef MSG_MOVE_E4
  177. #define MSG_MOVE_E4 "4"
  178. #endif
  179. #ifndef MSG_MOVE_01MM
  180. #define MSG_MOVE_01MM "Move 0.1mm"
  181. #endif
  182. #ifndef MSG_MOVE_1MM
  183. #define MSG_MOVE_1MM "Move 1mm"
  184. #endif
  185. #ifndef MSG_MOVE_10MM
  186. #define MSG_MOVE_10MM "Move 10mm"
  187. #endif
  188. #ifndef MSG_SPEED
  189. #define MSG_SPEED "Speed"
  190. #endif
  191. #ifndef MSG_BED_Z
  192. #define MSG_BED_Z "Bed Z"
  193. #endif
  194. #ifndef MSG_NOZZLE
  195. #define MSG_NOZZLE "Nozzle"
  196. #endif
  197. #ifndef MSG_N1
  198. #define MSG_N1 " 1"
  199. #endif
  200. #ifndef MSG_N2
  201. #define MSG_N2 " 2"
  202. #endif
  203. #ifndef MSG_N3
  204. #define MSG_N3 " 3"
  205. #endif
  206. #ifndef MSG_N4
  207. #define MSG_N4 " 4"
  208. #endif
  209. #ifndef MSG_BED
  210. #define MSG_BED "Bed"
  211. #endif
  212. #ifndef MSG_FAN_SPEED
  213. #define MSG_FAN_SPEED "Fan speed"
  214. #endif
  215. #ifndef MSG_FLOW
  216. #define MSG_FLOW "Flow"
  217. #endif
  218. #ifndef MSG_CONTROL
  219. #define MSG_CONTROL "Control"
  220. #endif
  221. #ifndef MSG_MIN
  222. #define MSG_MIN " " LCD_STR_THERMOMETER " Min"
  223. #endif
  224. #ifndef MSG_MAX
  225. #define MSG_MAX " " LCD_STR_THERMOMETER " Max"
  226. #endif
  227. #ifndef MSG_FACTOR
  228. #define MSG_FACTOR " " LCD_STR_THERMOMETER " Fact"
  229. #endif
  230. #ifndef MSG_AUTOTEMP
  231. #define MSG_AUTOTEMP "Autotemp"
  232. #endif
  233. #ifndef MSG_ON
  234. #define MSG_ON "On "
  235. #endif
  236. #ifndef MSG_OFF
  237. #define MSG_OFF "Off"
  238. #endif
  239. #ifndef MSG_PID_P
  240. #define MSG_PID_P "PID-P"
  241. #endif
  242. #ifndef MSG_PID_I
  243. #define MSG_PID_I "PID-I"
  244. #endif
  245. #ifndef MSG_PID_D
  246. #define MSG_PID_D "PID-D"
  247. #endif
  248. #ifndef MSG_PID_C
  249. #define MSG_PID_C "PID-C"
  250. #endif
  251. #ifndef MSG_E1
  252. #define MSG_E1 " E1"
  253. #endif
  254. #ifndef MSG_E2
  255. #define MSG_E2 " E2"
  256. #endif
  257. #ifndef MSG_E3
  258. #define MSG_E3 " E3"
  259. #endif
  260. #ifndef MSG_E4
  261. #define MSG_E4 " E4"
  262. #endif
  263. #ifndef MSG_ACC
  264. #define MSG_ACC "Accel"
  265. #endif
  266. #ifndef MSG_VXY_JERK
  267. #define MSG_VXY_JERK "Vxy-jerk"
  268. #endif
  269. #ifndef MSG_VZ_JERK
  270. #define MSG_VZ_JERK "Vz-jerk"
  271. #endif
  272. #ifndef MSG_VE_JERK
  273. #define MSG_VE_JERK "Ve-jerk"
  274. #endif
  275. #ifndef MSG_VMAX
  276. #define MSG_VMAX "Vmax "
  277. #endif
  278. #ifndef MSG_X
  279. #define MSG_X "X"
  280. #endif
  281. #ifndef MSG_Y
  282. #define MSG_Y "Y"
  283. #endif
  284. #ifndef MSG_Z
  285. #define MSG_Z "Z"
  286. #endif
  287. #ifndef MSG_E
  288. #define MSG_E "E"
  289. #endif
  290. #ifndef MSG_VMIN
  291. #define MSG_VMIN "Vmin"
  292. #endif
  293. #ifndef MSG_VTRAV_MIN
  294. #define MSG_VTRAV_MIN "VTrav min"
  295. #endif
  296. #ifndef MSG_AMAX
  297. #define MSG_AMAX "Amax "
  298. #endif
  299. #ifndef MSG_A_RETRACT
  300. #define MSG_A_RETRACT "A-retract"
  301. #endif
  302. #ifndef MSG_A_TRAVEL
  303. #define MSG_A_TRAVEL "A-travel"
  304. #endif
  305. #ifndef MSG_XSTEPS
  306. #define MSG_XSTEPS "Xsteps/mm"
  307. #endif
  308. #ifndef MSG_YSTEPS
  309. #define MSG_YSTEPS "Ysteps/mm"
  310. #endif
  311. #ifndef MSG_ZSTEPS
  312. #define MSG_ZSTEPS "Zsteps/mm"
  313. #endif
  314. #ifndef MSG_ESTEPS
  315. #define MSG_ESTEPS "Esteps/mm"
  316. #endif
  317. #ifndef MSG_TEMPERATURE
  318. #define MSG_TEMPERATURE "Temperature"
  319. #endif
  320. #ifndef MSG_MOTION
  321. #define MSG_MOTION "Motion"
  322. #endif
  323. #ifndef MSG_VOLUMETRIC
  324. #define MSG_VOLUMETRIC "Filament"
  325. #endif
  326. #ifndef MSG_VOLUMETRIC_ENABLED
  327. #define MSG_VOLUMETRIC_ENABLED "E in mm3"
  328. #endif
  329. #ifndef MSG_FILAMENT_DIAM
  330. #define MSG_FILAMENT_DIAM "Fil. Dia."
  331. #endif
  332. #ifndef MSG_DIAM_E1
  333. #define MSG_DIAM_E1 " 1"
  334. #endif
  335. #ifndef MSG_DIAM_E2
  336. #define MSG_DIAM_E2 " 2"
  337. #endif
  338. #ifndef MSG_DIAM_E3
  339. #define MSG_DIAM_E3 " 3"
  340. #endif
  341. #ifndef MSG_DIAM_E4
  342. #define MSG_DIAM_E4 " 4"
  343. #endif
  344. #ifndef MSG_CONTRAST
  345. #define MSG_CONTRAST "LCD contrast"
  346. #endif
  347. #ifndef MSG_STORE_EPROM
  348. #define MSG_STORE_EPROM "Store memory"
  349. #endif
  350. #ifndef MSG_LOAD_EPROM
  351. #define MSG_LOAD_EPROM "Load memory"
  352. #endif
  353. #ifndef MSG_RESTORE_FAILSAFE
  354. #define MSG_RESTORE_FAILSAFE "Restore failsafe"
  355. #endif
  356. #ifndef MSG_REFRESH
  357. #define MSG_REFRESH "Refresh"
  358. #endif
  359. #ifndef MSG_WATCH
  360. #define MSG_WATCH "Info screen"
  361. #endif
  362. #ifndef MSG_PREPARE
  363. #define MSG_PREPARE "Prepare"
  364. #endif
  365. #ifndef MSG_TUNE
  366. #define MSG_TUNE "Tune"
  367. #endif
  368. #ifndef MSG_PAUSE_PRINT
  369. #define MSG_PAUSE_PRINT "Pause print"
  370. #endif
  371. #ifndef MSG_RESUME_PRINT
  372. #define MSG_RESUME_PRINT "Resume print"
  373. #endif
  374. #ifndef MSG_STOP_PRINT
  375. #define MSG_STOP_PRINT "Stop print"
  376. #endif
  377. #ifndef MSG_CARD_MENU
  378. #define MSG_CARD_MENU "Print from SD"
  379. #endif
  380. #ifndef MSG_NO_CARD
  381. #define MSG_NO_CARD "No SD card"
  382. #endif
  383. #ifndef MSG_DWELL
  384. #define MSG_DWELL "Sleep..."
  385. #endif
  386. #ifndef MSG_USERWAIT
  387. #define MSG_USERWAIT "Wait for user..."
  388. #endif
  389. #ifndef MSG_RESUMING
  390. #define MSG_RESUMING "Resuming print"
  391. #endif
  392. #ifndef MSG_PRINT_ABORTED
  393. #define MSG_PRINT_ABORTED "Print aborted"
  394. #endif
  395. #ifndef MSG_NO_MOVE
  396. #define MSG_NO_MOVE "No move."
  397. #endif
  398. #ifndef MSG_KILLED
  399. #define MSG_KILLED "KILLED. "
  400. #endif
  401. #ifndef MSG_STOPPED
  402. #define MSG_STOPPED "STOPPED. "
  403. #endif
  404. #ifndef MSG_CONTROL_RETRACT
  405. #define MSG_CONTROL_RETRACT "Retract mm"
  406. #endif
  407. #ifndef MSG_CONTROL_RETRACT_SWAP
  408. #define MSG_CONTROL_RETRACT_SWAP "Swap Re.mm"
  409. #endif
  410. #ifndef MSG_CONTROL_RETRACTF
  411. #define MSG_CONTROL_RETRACTF "Retract V"
  412. #endif
  413. #ifndef MSG_CONTROL_RETRACT_ZLIFT
  414. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  415. #endif
  416. #ifndef MSG_CONTROL_RETRACT_RECOVER
  417. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  418. #endif
  419. #ifndef MSG_CONTROL_RETRACT_RECOVER_SWAP
  420. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "S UnRet+mm"
  421. #endif
  422. #ifndef MSG_CONTROL_RETRACT_RECOVERF
  423. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet V"
  424. #endif
  425. #ifndef MSG_AUTORETRACT
  426. #define MSG_AUTORETRACT "AutoRetr."
  427. #endif
  428. #ifndef MSG_FILAMENTCHANGE
  429. #define MSG_FILAMENTCHANGE "Change filament"
  430. #endif
  431. #ifndef MSG_INIT_SDCARD
  432. #define MSG_INIT_SDCARD "Init. SD card"
  433. #endif
  434. #ifndef MSG_CNG_SDCARD
  435. #define MSG_CNG_SDCARD "Change SD card"
  436. #endif
  437. #ifndef MSG_ZPROBE_OUT
  438. #define MSG_ZPROBE_OUT "Z probe out. bed"
  439. #endif
  440. #ifndef MSG_HOME
  441. #define MSG_HOME "Home" // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
  442. #endif
  443. #ifndef MSG_FIRST
  444. #define MSG_FIRST "first"
  445. #endif
  446. #ifndef MSG_ZPROBE_ZOFFSET
  447. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  448. #endif
  449. #ifndef MSG_BABYSTEP_X
  450. #define MSG_BABYSTEP_X "Babystep X"
  451. #endif
  452. #ifndef MSG_BABYSTEP_Y
  453. #define MSG_BABYSTEP_Y "Babystep Y"
  454. #endif
  455. #ifndef MSG_BABYSTEP_Z
  456. #define MSG_BABYSTEP_Z "Babystep Z"
  457. #endif
  458. #ifndef MSG_ENDSTOP_ABORT
  459. #define MSG_ENDSTOP_ABORT "Endstop abort"
  460. #endif
  461. #ifndef MSG_HEATING_FAILED_LCD
  462. #define MSG_HEATING_FAILED_LCD "Heating failed"
  463. #endif
  464. #ifndef MSG_ERR_REDUNDANT_TEMP
  465. #define MSG_ERR_REDUNDANT_TEMP "Err: REDUNDANT TEMP"
  466. #endif
  467. #ifndef MSG_THERMAL_RUNAWAY
  468. #define MSG_THERMAL_RUNAWAY "THERMAL RUNAWAY"
  469. #endif
  470. #ifndef MSG_ERR_MAXTEMP
  471. #define MSG_ERR_MAXTEMP "Err: MAXTEMP"
  472. #endif
  473. #ifndef MSG_ERR_MINTEMP
  474. #define MSG_ERR_MINTEMP "Err: MINTEMP"
  475. #endif
  476. #ifndef MSG_ERR_MAXTEMP_BED
  477. #define MSG_ERR_MAXTEMP_BED "Err: MAXTEMP BED"
  478. #endif
  479. #ifndef MSG_ERR_MINTEMP_BED
  480. #define MSG_ERR_MINTEMP_BED "Err: MINTEMP BED"
  481. #endif
  482. #ifndef MSG_HALTED
  483. #define MSG_HALTED "PRINTER HALTED"
  484. #endif
  485. #ifndef MSG_PLEASE_RESET
  486. #define MSG_PLEASE_RESET "Please reset"
  487. #endif
  488. #ifndef MSG_END_DAY
  489. #define MSG_END_DAY "days"
  490. #endif
  491. #ifndef MSG_END_HOUR
  492. #define MSG_END_HOUR "hours"
  493. #endif
  494. #ifndef MSG_END_MINUTE
  495. #define MSG_END_MINUTE "minutes"
  496. #endif
  497. #ifndef MSG_PRINT_TIME
  498. #define MSG_PRINT_TIME "Print time"
  499. #endif
  500. #ifndef MSG_HEATING
  501. #define MSG_HEATING "Heating..."
  502. #endif
  503. #ifndef MSG_HEATING_COMPLETE
  504. #define MSG_HEATING_COMPLETE "Heating done."
  505. #endif
  506. #ifndef MSG_BED_HEATING
  507. #define MSG_BED_HEATING "Bed Heating."
  508. #endif
  509. #ifndef MSG_BED_DONE
  510. #define MSG_BED_DONE "Bed done."
  511. #endif
  512. #ifndef MSG_DELTA_CALIBRATE
  513. #define MSG_DELTA_CALIBRATE "Delta Calibration"
  514. #endif
  515. #ifndef MSG_DELTA_CALIBRATE_X
  516. #define MSG_DELTA_CALIBRATE_X "Calibrate X"
  517. #endif
  518. #ifndef MSG_DELTA_CALIBRATE_Y
  519. #define MSG_DELTA_CALIBRATE_Y "Calibrate Y"
  520. #endif
  521. #ifndef MSG_DELTA_CALIBRATE_Z
  522. #define MSG_DELTA_CALIBRATE_Z "Calibrate Z"
  523. #endif
  524. #ifndef MSG_DELTA_CALIBRATE_CENTER
  525. #define MSG_DELTA_CALIBRATE_CENTER "Calibrate Center"
  526. #endif
  527. #ifndef MSG_INFO_MENU
  528. #define MSG_INFO_MENU "About Printer"
  529. #endif
  530. #ifndef MSG_INFO_PRINTER_MENU
  531. #define MSG_INFO_PRINTER_MENU "Printer Info"
  532. #endif
  533. #ifndef MSG_INFO_STATS_MENU
  534. #define MSG_INFO_STATS_MENU "Printer Stats"
  535. #endif
  536. #ifndef MSG_INFO_BOARD_MENU
  537. #define MSG_INFO_BOARD_MENU "Board Info"
  538. #endif
  539. #ifndef MSG_INFO_THERMISTOR_MENU
  540. #define MSG_INFO_THERMISTOR_MENU "Thermistors"
  541. #endif
  542. #ifndef MSG_INFO_EXTRUDERS
  543. #define MSG_INFO_EXTRUDERS "Extruders"
  544. #endif
  545. #ifndef MSG_INFO_BAUDRATE
  546. #define MSG_INFO_BAUDRATE "Baud"
  547. #endif
  548. #ifndef MSG_INFO_PROTOCOL
  549. #define MSG_INFO_PROTOCOL "Protocol"
  550. #endif
  551. #if LCD_WIDTH > 19
  552. #ifndef MSG_INFO_PRINT_COUNT
  553. #define MSG_INFO_PRINT_COUNT "Print Count"
  554. #endif
  555. #ifndef MSG_INFO_COMPLETED_PRINTS
  556. #define MSG_INFO_COMPLETED_PRINTS "Completed "
  557. #endif
  558. #ifndef MSG_INFO_PRINT_TIME
  559. #define MSG_INFO_PRINT_TIME "Total Time "
  560. #endif
  561. #else
  562. #ifndef MSG_INFO_PRINT_COUNT
  563. #define MSG_INFO_PRINT_COUNT "Prints "
  564. #endif
  565. #ifndef MSG_INFO_COMPLETED_PRINTS
  566. #define MSG_INFO_COMPLETED_PRINTS "Completed"
  567. #endif
  568. #ifndef MSG_INFO_PRINT_TIME
  569. #define MSG_INFO_PRINT_TIME "Duration "
  570. #endif
  571. #endif
  572. #ifndef MSG_INFO_MIN_TEMP
  573. #define MSG_INFO_MIN_TEMP "Min Temp"
  574. #endif
  575. #ifndef MSG_INFO_MAX_TEMP
  576. #define MSG_INFO_MAX_TEMP "Max Temp"
  577. #endif
  578. #ifndef MSG_INFO_PSU
  579. #define MSG_INFO_PSU "Power Supply"
  580. #endif
  581. #ifndef MSG_FILAMENT_CHANGE_HEADER
  582. #define MSG_FILAMENT_CHANGE_HEADER "CHANGE FILAMENT"
  583. #endif
  584. #ifndef MSG_FILAMENT_CHANGE_OPTION_HEADER
  585. #define MSG_FILAMENT_CHANGE_OPTION_HEADER "CHANGE OPTIONS:"
  586. #endif
  587. #ifndef MSG_FILAMENT_CHANGE_OPTION_EXTRUDE
  588. #define MSG_FILAMENT_CHANGE_OPTION_EXTRUDE "Extrude more"
  589. #endif
  590. #ifndef MSG_FILAMENT_CHANGE_OPTION_RESUME
  591. #define MSG_FILAMENT_CHANGE_OPTION_RESUME "Resume print"
  592. #endif
  593. #if LCD_HEIGHT >= 4
  594. #ifndef MSG_FILAMENT_CHANGE_INIT_1
  595. #define MSG_FILAMENT_CHANGE_INIT_1 "Wait for start"
  596. #endif
  597. #ifndef MSG_FILAMENT_CHANGE_INIT_2
  598. #define MSG_FILAMENT_CHANGE_INIT_2 "of the filament"
  599. #endif
  600. #ifndef MSG_FILAMENT_CHANGE_INIT_3
  601. #define MSG_FILAMENT_CHANGE_INIT_3 "change"
  602. #endif
  603. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_1
  604. #define MSG_FILAMENT_CHANGE_UNLOAD_1 "Wait for"
  605. #endif
  606. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_2
  607. #define MSG_FILAMENT_CHANGE_UNLOAD_2 "filament unload"
  608. #endif
  609. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_3
  610. #define MSG_FILAMENT_CHANGE_UNLOAD_3 ""
  611. #endif
  612. #ifndef MSG_FILAMENT_CHANGE_INSERT_1
  613. #define MSG_FILAMENT_CHANGE_INSERT_1 "Insert filament"
  614. #endif
  615. #ifndef MSG_FILAMENT_CHANGE_INSERT_2
  616. #define MSG_FILAMENT_CHANGE_INSERT_2 "and press button"
  617. #endif
  618. #ifndef MSG_FILAMENT_CHANGE_INSERT_3
  619. #define MSG_FILAMENT_CHANGE_INSERT_3 "to continue..."
  620. #endif
  621. #ifndef MSG_FILAMENT_CHANGE_LOAD_1
  622. #define MSG_FILAMENT_CHANGE_LOAD_1 "Wait for"
  623. #endif
  624. #ifndef MSG_FILAMENT_CHANGE_LOAD_2
  625. #define MSG_FILAMENT_CHANGE_LOAD_2 "filament load"
  626. #endif
  627. #ifndef MSG_FILAMENT_CHANGE_LOAD_3
  628. #define MSG_FILAMENT_CHANGE_LOAD_3 ""
  629. #endif
  630. #ifndef MSG_FILAMENT_CHANGE_EXTRUDE_1
  631. #define MSG_FILAMENT_CHANGE_EXTRUDE_1 "Wait for"
  632. #endif
  633. #ifndef MSG_FILAMENT_CHANGE_EXTRUDE_2
  634. #define MSG_FILAMENT_CHANGE_EXTRUDE_2 "filament extrude"
  635. #endif
  636. #ifndef MSG_FILAMENT_CHANGE_EXTRUDE_3
  637. #define MSG_FILAMENT_CHANGE_EXTRUDE_3 ""
  638. #endif
  639. #ifndef MSG_FILAMENT_CHANGE_RESUME_1
  640. #define MSG_FILAMENT_CHANGE_RESUME_1 "Wait for print"
  641. #endif
  642. #ifndef MSG_FILAMENT_CHANGE_RESUME_2
  643. #define MSG_FILAMENT_CHANGE_RESUME_2 "to resume"
  644. #endif
  645. #ifndef MSG_FILAMENT_CHANGE_RESUME_3
  646. #define MSG_FILAMENT_CHANGE_RESUME_3 ""
  647. #endif
  648. #else // LCD_HEIGHT < 4
  649. #ifndef MSG_FILAMENT_CHANGE_INIT_1
  650. #define MSG_FILAMENT_CHANGE_INIT_1 "Please wait..."
  651. #endif
  652. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_1
  653. #define MSG_FILAMENT_CHANGE_UNLOAD_1 "Ejecting..."
  654. #endif
  655. #ifndef MSG_FILAMENT_CHANGE_INSERT_1
  656. #define MSG_FILAMENT_CHANGE_INSERT_1 "Insert and Click"
  657. #endif
  658. #ifndef MSG_FILAMENT_CHANGE_LOAD_1
  659. #define MSG_FILAMENT_CHANGE_LOAD_1 "Loading..."
  660. #endif
  661. #ifndef MSG_FILAMENT_CHANGE_EXTRUDE_1
  662. #define MSG_FILAMENT_CHANGE_EXTRUDE_1 "Extruding..."
  663. #endif
  664. #ifndef MSG_FILAMENT_CHANGE_RESUME_1
  665. #define MSG_FILAMENT_CHANGE_RESUME_1 "Resuming..."
  666. #endif
  667. #endif // LCD_HEIGHT < 4
  668. #endif // LANGUAGE_EN_H