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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632
  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. #ifndef WELCOME_MSG
  32. #define WELCOME_MSG MACHINE_NAME " ready."
  33. #endif
  34. #ifndef MSG_SD_INSERTED
  35. #define MSG_SD_INSERTED "Card inserted"
  36. #endif
  37. #ifndef MSG_SD_REMOVED
  38. #define MSG_SD_REMOVED "Card removed"
  39. #endif
  40. #ifndef MSG_LCD_ENDSTOPS
  41. #define MSG_LCD_ENDSTOPS "Endstops" // Max length 8 characters
  42. #endif
  43. #ifndef MSG_MAIN
  44. #define MSG_MAIN "Main"
  45. #endif
  46. #ifndef MSG_AUTOSTART
  47. #define MSG_AUTOSTART "Autostart"
  48. #endif
  49. #ifndef MSG_DISABLE_STEPPERS
  50. #define MSG_DISABLE_STEPPERS "Disable steppers"
  51. #endif
  52. #ifndef MSG_AUTO_HOME
  53. #define MSG_AUTO_HOME "Auto home"
  54. #endif
  55. #ifndef MSG_AUTO_HOME_X
  56. #define MSG_AUTO_HOME_X "Home X"
  57. #endif
  58. #ifndef MSG_AUTO_HOME_Y
  59. #define MSG_AUTO_HOME_Y "Home Y"
  60. #endif
  61. #ifndef MSG_AUTO_HOME_Z
  62. #define MSG_AUTO_HOME_Z "Home Z"
  63. #endif
  64. #ifndef MSG_LEVEL_BED_HOMING
  65. #define MSG_LEVEL_BED_HOMING "Homing XYZ"
  66. #endif
  67. #ifndef MSG_LEVEL_BED_WAITING
  68. #define MSG_LEVEL_BED_WAITING "Click to Begin"
  69. #endif
  70. #ifndef MSG_LEVEL_BED_NEXT_POINT
  71. #define MSG_LEVEL_BED_NEXT_POINT "Next Point"
  72. #endif
  73. #ifndef MSG_LEVEL_BED_DONE
  74. #define MSG_LEVEL_BED_DONE "Leveling Done!"
  75. #endif
  76. #ifndef MSG_LEVEL_BED_CANCEL
  77. #define MSG_LEVEL_BED_CANCEL "Cancel"
  78. #endif
  79. #ifndef MSG_SET_HOME_OFFSETS
  80. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  81. #endif
  82. #ifndef MSG_HOME_OFFSETS_APPLIED
  83. #define MSG_HOME_OFFSETS_APPLIED "Offsets applied"
  84. #endif
  85. #ifndef MSG_SET_ORIGIN
  86. #define MSG_SET_ORIGIN "Set origin"
  87. #endif
  88. #ifndef MSG_PREHEAT_1
  89. #define MSG_PREHEAT_1 "Preheat PLA"
  90. #endif
  91. #ifndef MSG_PREHEAT_1_N
  92. #define MSG_PREHEAT_1_N MSG_PREHEAT_1 " "
  93. #endif
  94. #ifndef MSG_PREHEAT_1_ALL
  95. #define MSG_PREHEAT_1_ALL MSG_PREHEAT_1 " All"
  96. #endif
  97. #ifndef MSG_PREHEAT_1_BEDONLY
  98. #define MSG_PREHEAT_1_BEDONLY MSG_PREHEAT_1 " Bed"
  99. #endif
  100. #ifndef MSG_PREHEAT_1_SETTINGS
  101. #define MSG_PREHEAT_1_SETTINGS MSG_PREHEAT_1 " conf"
  102. #endif
  103. #ifndef MSG_PREHEAT_2
  104. #define MSG_PREHEAT_2 "Preheat ABS"
  105. #endif
  106. #ifndef MSG_PREHEAT_2_N
  107. #define MSG_PREHEAT_2_N MSG_PREHEAT_2 " "
  108. #endif
  109. #ifndef MSG_PREHEAT_2_ALL
  110. #define MSG_PREHEAT_2_ALL MSG_PREHEAT_2 " All"
  111. #endif
  112. #ifndef MSG_PREHEAT_2_BEDONLY
  113. #define MSG_PREHEAT_2_BEDONLY MSG_PREHEAT_2 " Bed"
  114. #endif
  115. #ifndef MSG_PREHEAT_2_SETTINGS
  116. #define MSG_PREHEAT_2_SETTINGS MSG_PREHEAT_2 " conf"
  117. #endif
  118. #ifndef MSG_COOLDOWN
  119. #define MSG_COOLDOWN "Cooldown"
  120. #endif
  121. #ifndef MSG_SWITCH_PS_ON
  122. #define MSG_SWITCH_PS_ON "Switch power on"
  123. #endif
  124. #ifndef MSG_SWITCH_PS_OFF
  125. #define MSG_SWITCH_PS_OFF "Switch power off"
  126. #endif
  127. #ifndef MSG_EXTRUDE
  128. #define MSG_EXTRUDE "Extrude"
  129. #endif
  130. #ifndef MSG_RETRACT
  131. #define MSG_RETRACT "Retract"
  132. #endif
  133. #ifndef MSG_MOVE_AXIS
  134. #define MSG_MOVE_AXIS "Move axis"
  135. #endif
  136. #ifndef MSG_LEVEL_BED
  137. #define MSG_LEVEL_BED "Level bed"
  138. #endif
  139. #ifndef MSG_MOVE_X
  140. #define MSG_MOVE_X "Move X"
  141. #endif
  142. #ifndef MSG_MOVE_Y
  143. #define MSG_MOVE_Y "Move Y"
  144. #endif
  145. #ifndef MSG_MOVE_Z
  146. #define MSG_MOVE_Z "Move Z"
  147. #endif
  148. #ifndef MSG_MOVE_E
  149. #define MSG_MOVE_E "Extruder"
  150. #endif
  151. #ifndef MSG_MOVE_01MM
  152. #define MSG_MOVE_01MM "Move 0.1mm"
  153. #endif
  154. #ifndef MSG_MOVE_1MM
  155. #define MSG_MOVE_1MM "Move 1mm"
  156. #endif
  157. #ifndef MSG_MOVE_10MM
  158. #define MSG_MOVE_10MM "Move 10mm"
  159. #endif
  160. #ifndef MSG_SPEED
  161. #define MSG_SPEED "Speed"
  162. #endif
  163. #ifndef MSG_BED_Z
  164. #define MSG_BED_Z "Bed Z"
  165. #endif
  166. #ifndef MSG_NOZZLE
  167. #define MSG_NOZZLE "Nozzle"
  168. #endif
  169. #ifndef MSG_BED
  170. #define MSG_BED "Bed"
  171. #endif
  172. #ifndef MSG_FAN_SPEED
  173. #define MSG_FAN_SPEED "Fan speed"
  174. #endif
  175. #ifndef MSG_FLOW
  176. #define MSG_FLOW "Flow"
  177. #endif
  178. #ifndef MSG_CONTROL
  179. #define MSG_CONTROL "Control"
  180. #endif
  181. #ifndef MSG_MIN
  182. #define MSG_MIN " " LCD_STR_THERMOMETER " Min"
  183. #endif
  184. #ifndef MSG_MAX
  185. #define MSG_MAX " " LCD_STR_THERMOMETER " Max"
  186. #endif
  187. #ifndef MSG_FACTOR
  188. #define MSG_FACTOR " " LCD_STR_THERMOMETER " Fact"
  189. #endif
  190. #ifndef MSG_AUTOTEMP
  191. #define MSG_AUTOTEMP "Autotemp"
  192. #endif
  193. #ifndef MSG_ON
  194. #define MSG_ON "On "
  195. #endif
  196. #ifndef MSG_OFF
  197. #define MSG_OFF "Off"
  198. #endif
  199. #ifndef MSG_PID_P
  200. #define MSG_PID_P "PID-P"
  201. #endif
  202. #ifndef MSG_PID_I
  203. #define MSG_PID_I "PID-I"
  204. #endif
  205. #ifndef MSG_PID_D
  206. #define MSG_PID_D "PID-D"
  207. #endif
  208. #ifndef MSG_PID_C
  209. #define MSG_PID_C "PID-C"
  210. #endif
  211. #ifndef MSG_SELECT
  212. #define MSG_SELECT "Select"
  213. #endif
  214. #ifndef MSG_ACC
  215. #define MSG_ACC "Accel"
  216. #endif
  217. #ifndef MSG_VX_JERK
  218. #define MSG_VX_JERK "Vx-jerk"
  219. #endif
  220. #ifndef MSG_VY_JERK
  221. #define MSG_VY_JERK "Vy-jerk"
  222. #endif
  223. #ifndef MSG_VZ_JERK
  224. #define MSG_VZ_JERK "Vz-jerk"
  225. #endif
  226. #ifndef MSG_VE_JERK
  227. #define MSG_VE_JERK "Ve-jerk"
  228. #endif
  229. #ifndef MSG_VMAX
  230. #define MSG_VMAX "Vmax "
  231. #endif
  232. #ifndef MSG_VMIN
  233. #define MSG_VMIN "Vmin"
  234. #endif
  235. #ifndef MSG_VTRAV_MIN
  236. #define MSG_VTRAV_MIN "VTrav min"
  237. #endif
  238. #ifndef MSG_AMAX
  239. #define MSG_AMAX "Amax "
  240. #endif
  241. #ifndef MSG_A_RETRACT
  242. #define MSG_A_RETRACT "A-retract"
  243. #endif
  244. #ifndef MSG_A_TRAVEL
  245. #define MSG_A_TRAVEL "A-travel"
  246. #endif
  247. #ifndef MSG_XSTEPS
  248. #define MSG_XSTEPS "Xsteps/mm"
  249. #endif
  250. #ifndef MSG_YSTEPS
  251. #define MSG_YSTEPS "Ysteps/mm"
  252. #endif
  253. #ifndef MSG_ZSTEPS
  254. #define MSG_ZSTEPS "Zsteps/mm"
  255. #endif
  256. #ifndef MSG_ESTEPS
  257. #define MSG_ESTEPS "Esteps/mm"
  258. #endif
  259. #ifndef MSG_TEMPERATURE
  260. #define MSG_TEMPERATURE "Temperature"
  261. #endif
  262. #ifndef MSG_MOTION
  263. #define MSG_MOTION "Motion"
  264. #endif
  265. #ifndef MSG_VOLUMETRIC
  266. #define MSG_VOLUMETRIC "Filament"
  267. #endif
  268. #ifndef MSG_VOLUMETRIC_ENABLED
  269. #define MSG_VOLUMETRIC_ENABLED "E in mm3"
  270. #endif
  271. #ifndef MSG_FILAMENT_DIAM
  272. #define MSG_FILAMENT_DIAM "Fil. Dia."
  273. #endif
  274. #ifndef MSG_CONTRAST
  275. #define MSG_CONTRAST "LCD contrast"
  276. #endif
  277. #ifndef MSG_STORE_EPROM
  278. #define MSG_STORE_EPROM "Store memory"
  279. #endif
  280. #ifndef MSG_LOAD_EPROM
  281. #define MSG_LOAD_EPROM "Load memory"
  282. #endif
  283. #ifndef MSG_RESTORE_FAILSAFE
  284. #define MSG_RESTORE_FAILSAFE "Restore failsafe"
  285. #endif
  286. #ifndef MSG_REFRESH
  287. #define MSG_REFRESH "Refresh"
  288. #endif
  289. #ifndef MSG_WATCH
  290. #define MSG_WATCH "Info screen"
  291. #endif
  292. #ifndef MSG_PREPARE
  293. #define MSG_PREPARE "Prepare"
  294. #endif
  295. #ifndef MSG_TUNE
  296. #define MSG_TUNE "Tune"
  297. #endif
  298. #ifndef MSG_PAUSE_PRINT
  299. #define MSG_PAUSE_PRINT "Pause print"
  300. #endif
  301. #ifndef MSG_RESUME_PRINT
  302. #define MSG_RESUME_PRINT "Resume print"
  303. #endif
  304. #ifndef MSG_STOP_PRINT
  305. #define MSG_STOP_PRINT "Stop print"
  306. #endif
  307. #ifndef MSG_CARD_MENU
  308. #define MSG_CARD_MENU "Print from SD"
  309. #endif
  310. #ifndef MSG_NO_CARD
  311. #define MSG_NO_CARD "No SD card"
  312. #endif
  313. #ifndef MSG_DWELL
  314. #define MSG_DWELL "Sleep..."
  315. #endif
  316. #ifndef MSG_USERWAIT
  317. #define MSG_USERWAIT "Wait for user..."
  318. #endif
  319. #ifndef MSG_RESUMING
  320. #define MSG_RESUMING "Resuming print"
  321. #endif
  322. #ifndef MSG_PRINT_ABORTED
  323. #define MSG_PRINT_ABORTED "Print aborted"
  324. #endif
  325. #ifndef MSG_NO_MOVE
  326. #define MSG_NO_MOVE "No move."
  327. #endif
  328. #ifndef MSG_KILLED
  329. #define MSG_KILLED "KILLED. "
  330. #endif
  331. #ifndef MSG_STOPPED
  332. #define MSG_STOPPED "STOPPED. "
  333. #endif
  334. #ifndef MSG_CONTROL_RETRACT
  335. #define MSG_CONTROL_RETRACT "Retract mm"
  336. #endif
  337. #ifndef MSG_CONTROL_RETRACT_SWAP
  338. #define MSG_CONTROL_RETRACT_SWAP "Swap Re.mm"
  339. #endif
  340. #ifndef MSG_CONTROL_RETRACTF
  341. #define MSG_CONTROL_RETRACTF "Retract V"
  342. #endif
  343. #ifndef MSG_CONTROL_RETRACT_ZLIFT
  344. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  345. #endif
  346. #ifndef MSG_CONTROL_RETRACT_RECOVER
  347. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  348. #endif
  349. #ifndef MSG_CONTROL_RETRACT_RECOVER_SWAP
  350. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "S UnRet+mm"
  351. #endif
  352. #ifndef MSG_CONTROL_RETRACT_RECOVERF
  353. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet V"
  354. #endif
  355. #ifndef MSG_AUTORETRACT
  356. #define MSG_AUTORETRACT "AutoRetr."
  357. #endif
  358. #ifndef MSG_FILAMENTCHANGE
  359. #define MSG_FILAMENTCHANGE "Change filament"
  360. #endif
  361. #ifndef MSG_INIT_SDCARD
  362. #define MSG_INIT_SDCARD "Init. SD card"
  363. #endif
  364. #ifndef MSG_CNG_SDCARD
  365. #define MSG_CNG_SDCARD "Change SD card"
  366. #endif
  367. #ifndef MSG_ZPROBE_OUT
  368. #define MSG_ZPROBE_OUT "Z probe out. bed"
  369. #endif
  370. #ifndef MSG_BLTOUCH_SELFTEST
  371. #define MSG_BLTOUCH_SELFTEST "BLTouch Self-Test"
  372. #endif
  373. #ifndef MSG_BLTOUCH_RESET
  374. #define MSG_BLTOUCH_RESET "Reset BLTouch"
  375. #endif
  376. #ifndef MSG_HOME
  377. #define MSG_HOME "Home" // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
  378. #endif
  379. #ifndef MSG_FIRST
  380. #define MSG_FIRST "first"
  381. #endif
  382. #ifndef MSG_ZPROBE_ZOFFSET
  383. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  384. #endif
  385. #ifndef MSG_BABYSTEP_X
  386. #define MSG_BABYSTEP_X "Babystep X"
  387. #endif
  388. #ifndef MSG_BABYSTEP_Y
  389. #define MSG_BABYSTEP_Y "Babystep Y"
  390. #endif
  391. #ifndef MSG_BABYSTEP_Z
  392. #define MSG_BABYSTEP_Z "Babystep Z"
  393. #endif
  394. #ifndef MSG_ENDSTOP_ABORT
  395. #define MSG_ENDSTOP_ABORT "Endstop abort"
  396. #endif
  397. #ifndef MSG_HEATING_FAILED_LCD
  398. #define MSG_HEATING_FAILED_LCD "Heating failed"
  399. #endif
  400. #ifndef MSG_ERR_REDUNDANT_TEMP
  401. #define MSG_ERR_REDUNDANT_TEMP "Err: REDUNDANT TEMP"
  402. #endif
  403. #ifndef MSG_THERMAL_RUNAWAY
  404. #define MSG_THERMAL_RUNAWAY "THERMAL RUNAWAY"
  405. #endif
  406. #ifndef MSG_ERR_MAXTEMP
  407. #define MSG_ERR_MAXTEMP "Err: MAXTEMP"
  408. #endif
  409. #ifndef MSG_ERR_MINTEMP
  410. #define MSG_ERR_MINTEMP "Err: MINTEMP"
  411. #endif
  412. #ifndef MSG_ERR_MAXTEMP_BED
  413. #define MSG_ERR_MAXTEMP_BED "Err: MAXTEMP BED"
  414. #endif
  415. #ifndef MSG_ERR_MINTEMP_BED
  416. #define MSG_ERR_MINTEMP_BED "Err: MINTEMP BED"
  417. #endif
  418. #ifndef MSG_ERR_Z_HOMING
  419. #define MSG_ERR_Z_HOMING "G28 Z Forbidden"
  420. #endif
  421. #ifndef MSG_HALTED
  422. #define MSG_HALTED "PRINTER HALTED"
  423. #endif
  424. #ifndef MSG_PLEASE_RESET
  425. #define MSG_PLEASE_RESET "Please reset"
  426. #endif
  427. #ifndef MSG_SHORT_DAY
  428. #define MSG_SHORT_DAY "d" // One character only
  429. #endif
  430. #ifndef MSG_SHORT_HOUR
  431. #define MSG_SHORT_HOUR "h" // One character only
  432. #endif
  433. #ifndef MSG_SHORT_MINUTE
  434. #define MSG_SHORT_MINUTE "m" // One character only
  435. #endif
  436. #ifndef MSG_HEATING
  437. #define MSG_HEATING "Heating..."
  438. #endif
  439. #ifndef MSG_HEATING_COMPLETE
  440. #define MSG_HEATING_COMPLETE "Heating done."
  441. #endif
  442. #ifndef MSG_BED_HEATING
  443. #define MSG_BED_HEATING "Bed Heating."
  444. #endif
  445. #ifndef MSG_BED_DONE
  446. #define MSG_BED_DONE "Bed done."
  447. #endif
  448. #ifndef MSG_DELTA_CALIBRATE
  449. #define MSG_DELTA_CALIBRATE "Delta Calibration"
  450. #endif
  451. #ifndef MSG_DELTA_CALIBRATE_X
  452. #define MSG_DELTA_CALIBRATE_X "Calibrate X"
  453. #endif
  454. #ifndef MSG_DELTA_CALIBRATE_Y
  455. #define MSG_DELTA_CALIBRATE_Y "Calibrate Y"
  456. #endif
  457. #ifndef MSG_DELTA_CALIBRATE_Z
  458. #define MSG_DELTA_CALIBRATE_Z "Calibrate Z"
  459. #endif
  460. #ifndef MSG_DELTA_CALIBRATE_CENTER
  461. #define MSG_DELTA_CALIBRATE_CENTER "Calibrate Center"
  462. #endif
  463. #ifndef MSG_INFO_MENU
  464. #define MSG_INFO_MENU "About Printer"
  465. #endif
  466. #ifndef MSG_INFO_PRINTER_MENU
  467. #define MSG_INFO_PRINTER_MENU "Printer Info"
  468. #endif
  469. #ifndef MSG_INFO_STATS_MENU
  470. #define MSG_INFO_STATS_MENU "Printer Stats"
  471. #endif
  472. #ifndef MSG_INFO_BOARD_MENU
  473. #define MSG_INFO_BOARD_MENU "Board Info"
  474. #endif
  475. #ifndef MSG_INFO_THERMISTOR_MENU
  476. #define MSG_INFO_THERMISTOR_MENU "Thermistors"
  477. #endif
  478. #ifndef MSG_INFO_EXTRUDERS
  479. #define MSG_INFO_EXTRUDERS "Extruders"
  480. #endif
  481. #ifndef MSG_INFO_BAUDRATE
  482. #define MSG_INFO_BAUDRATE "Baud"
  483. #endif
  484. #ifndef MSG_INFO_PROTOCOL
  485. #define MSG_INFO_PROTOCOL "Protocol"
  486. #endif
  487. #if LCD_WIDTH > 19
  488. #ifndef MSG_INFO_PRINT_COUNT
  489. #define MSG_INFO_PRINT_COUNT "Print Count"
  490. #endif
  491. #ifndef MSG_INFO_COMPLETED_PRINTS
  492. #define MSG_INFO_COMPLETED_PRINTS "Completed"
  493. #endif
  494. #ifndef MSG_INFO_PRINT_TIME
  495. #define MSG_INFO_PRINT_TIME "Total print time"
  496. #endif
  497. #ifndef MSG_INFO_PRINT_LONGEST
  498. #define MSG_INFO_PRINT_LONGEST "Longest job time"
  499. #endif
  500. #ifndef MSG_INFO_PRINT_FILAMENT
  501. #define MSG_INFO_PRINT_FILAMENT "Extruded total"
  502. #endif
  503. #else
  504. #ifndef MSG_INFO_PRINT_COUNT
  505. #define MSG_INFO_PRINT_COUNT "Prints"
  506. #endif
  507. #ifndef MSG_INFO_COMPLETED_PRINTS
  508. #define MSG_INFO_COMPLETED_PRINTS "Completed"
  509. #endif
  510. #ifndef MSG_INFO_PRINT_TIME
  511. #define MSG_INFO_PRINT_TIME "Total"
  512. #endif
  513. #ifndef MSG_INFO_PRINT_LONGEST
  514. #define MSG_INFO_PRINT_LONGEST "Longest"
  515. #endif
  516. #ifndef MSG_INFO_PRINT_FILAMENT
  517. #define MSG_INFO_PRINT_FILAMENT "Extruded"
  518. #endif
  519. #endif
  520. #ifndef MSG_INFO_MIN_TEMP
  521. #define MSG_INFO_MIN_TEMP "Min Temp"
  522. #endif
  523. #ifndef MSG_INFO_MAX_TEMP
  524. #define MSG_INFO_MAX_TEMP "Max Temp"
  525. #endif
  526. #ifndef MSG_INFO_PSU
  527. #define MSG_INFO_PSU "Power Supply"
  528. #endif
  529. #ifndef MSG_DRIVE_STRENGTH
  530. #define MSG_DRIVE_STRENGTH "Drive Strength"
  531. #endif
  532. #ifndef MSG_DAC_PERCENT
  533. #define MSG_DAC_PERCENT "Driver %"
  534. #endif
  535. #ifndef MSG_DAC_EEPROM_WRITE
  536. #define MSG_DAC_EEPROM_WRITE "DAC EEPROM Write"
  537. #endif
  538. #ifndef MSG_FILAMENT_CHANGE_HEADER
  539. #define MSG_FILAMENT_CHANGE_HEADER "CHANGE FILAMENT"
  540. #endif
  541. #ifndef MSG_FILAMENT_CHANGE_OPTION_HEADER
  542. #define MSG_FILAMENT_CHANGE_OPTION_HEADER "CHANGE OPTIONS:"
  543. #endif
  544. #ifndef MSG_FILAMENT_CHANGE_OPTION_EXTRUDE
  545. #define MSG_FILAMENT_CHANGE_OPTION_EXTRUDE "Extrude more"
  546. #endif
  547. #ifndef MSG_FILAMENT_CHANGE_OPTION_RESUME
  548. #define MSG_FILAMENT_CHANGE_OPTION_RESUME "Resume print"
  549. #endif
  550. #if LCD_HEIGHT >= 4
  551. #ifndef MSG_FILAMENT_CHANGE_INIT_1
  552. #define MSG_FILAMENT_CHANGE_INIT_1 "Wait for start"
  553. #endif
  554. #ifndef MSG_FILAMENT_CHANGE_INIT_2
  555. #define MSG_FILAMENT_CHANGE_INIT_2 "of the filament"
  556. #endif
  557. #ifndef MSG_FILAMENT_CHANGE_INIT_3
  558. #define MSG_FILAMENT_CHANGE_INIT_3 "change"
  559. #endif
  560. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_1
  561. #define MSG_FILAMENT_CHANGE_UNLOAD_1 "Wait for"
  562. #endif
  563. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_2
  564. #define MSG_FILAMENT_CHANGE_UNLOAD_2 "filament unload"
  565. #endif
  566. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_3
  567. #define MSG_FILAMENT_CHANGE_UNLOAD_3 ""
  568. #endif
  569. #ifndef MSG_FILAMENT_CHANGE_INSERT_1
  570. #define MSG_FILAMENT_CHANGE_INSERT_1 "Insert filament"
  571. #endif
  572. #ifndef MSG_FILAMENT_CHANGE_INSERT_2
  573. #define MSG_FILAMENT_CHANGE_INSERT_2 "and press button"
  574. #endif
  575. #ifndef MSG_FILAMENT_CHANGE_INSERT_3
  576. #define MSG_FILAMENT_CHANGE_INSERT_3 "to continue..."
  577. #endif
  578. #ifndef MSG_FILAMENT_CHANGE_LOAD_1
  579. #define MSG_FILAMENT_CHANGE_LOAD_1 "Wait for"
  580. #endif
  581. #ifndef MSG_FILAMENT_CHANGE_LOAD_2
  582. #define MSG_FILAMENT_CHANGE_LOAD_2 "filament load"
  583. #endif
  584. #ifndef MSG_FILAMENT_CHANGE_LOAD_3
  585. #define MSG_FILAMENT_CHANGE_LOAD_3 ""
  586. #endif
  587. #ifndef MSG_FILAMENT_CHANGE_EXTRUDE_1
  588. #define MSG_FILAMENT_CHANGE_EXTRUDE_1 "Wait for"
  589. #endif
  590. #ifndef MSG_FILAMENT_CHANGE_EXTRUDE_2
  591. #define MSG_FILAMENT_CHANGE_EXTRUDE_2 "filament extrude"
  592. #endif
  593. #ifndef MSG_FILAMENT_CHANGE_EXTRUDE_3
  594. #define MSG_FILAMENT_CHANGE_EXTRUDE_3 ""
  595. #endif
  596. #ifndef MSG_FILAMENT_CHANGE_RESUME_1
  597. #define MSG_FILAMENT_CHANGE_RESUME_1 "Wait for print"
  598. #endif
  599. #ifndef MSG_FILAMENT_CHANGE_RESUME_2
  600. #define MSG_FILAMENT_CHANGE_RESUME_2 "to resume"
  601. #endif
  602. #ifndef MSG_FILAMENT_CHANGE_RESUME_3
  603. #define MSG_FILAMENT_CHANGE_RESUME_3 ""
  604. #endif
  605. #else // LCD_HEIGHT < 4
  606. #ifndef MSG_FILAMENT_CHANGE_INIT_1
  607. #define MSG_FILAMENT_CHANGE_INIT_1 "Please wait..."
  608. #endif
  609. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_1
  610. #define MSG_FILAMENT_CHANGE_UNLOAD_1 "Ejecting..."
  611. #endif
  612. #ifndef MSG_FILAMENT_CHANGE_INSERT_1
  613. #define MSG_FILAMENT_CHANGE_INSERT_1 "Insert and Click"
  614. #endif
  615. #ifndef MSG_FILAMENT_CHANGE_LOAD_1
  616. #define MSG_FILAMENT_CHANGE_LOAD_1 "Loading..."
  617. #endif
  618. #ifndef MSG_FILAMENT_CHANGE_EXTRUDE_1
  619. #define MSG_FILAMENT_CHANGE_EXTRUDE_1 "Extruding..."
  620. #endif
  621. #ifndef MSG_FILAMENT_CHANGE_RESUME_1
  622. #define MSG_FILAMENT_CHANGE_RESUME_1 "Resuming..."
  623. #endif
  624. #endif // LCD_HEIGHT < 4
  625. #endif // LANGUAGE_EN_H