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

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