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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. /**
  2. * English
  3. *
  4. * LCD Menu Messages
  5. * Se also documentation/LCDLanguageFont.md
  6. *
  7. */
  8. #ifndef LANGUAGE_EN_H
  9. #define LANGUAGE_EN_H
  10. #if DISABLED(MAPPER_NON) && DISABLED(MAPPER_C2C3) && DISABLED(MAPPER_D0D1) && DISABLED(MAPPER_D0D1_MOD) && DISABLED(MAPPER_E382E383)
  11. #define MAPPER_NON // For direct ascii codes
  12. #endif
  13. //#define SIMULATE_ROMFONT //Comment in to see what is seen on the character based displays
  14. #if DISABLED(SIMULATE_ROMFONT) && DISABLED(DISPLAY_CHARSET_ISO10646_1) && DISABLED(DISPLAY_CHARSET_ISO10646_5) && DISABLED(DISPLAY_CHARSET_ISO10646_KANA) && DISABLED(DISPLAY_CHARSET_ISO10646_CN)
  15. #define DISPLAY_CHARSET_ISO10646_1 // use the better font on full graphic displays.
  16. #endif
  17. #ifndef WELCOME_MSG
  18. #define WELCOME_MSG MACHINE_NAME " ready."
  19. #endif
  20. #ifndef MSG_SD_INSERTED
  21. #define MSG_SD_INSERTED "Card inserted"
  22. #endif
  23. #ifndef MSG_SD_REMOVED
  24. #define MSG_SD_REMOVED "Card removed"
  25. #endif
  26. #ifndef MSG_MAIN
  27. #define MSG_MAIN "Main"
  28. #endif
  29. #ifndef MSG_AUTOSTART
  30. #define MSG_AUTOSTART "Autostart"
  31. #endif
  32. #ifndef MSG_DISABLE_STEPPERS
  33. #define MSG_DISABLE_STEPPERS "Disable steppers"
  34. #endif
  35. #ifndef MSG_AUTO_HOME
  36. #define MSG_AUTO_HOME "Auto home"
  37. #endif
  38. #ifndef MSG_LEVEL_BED_HOMING
  39. #define MSG_LEVEL_BED_HOMING "Homing"
  40. #endif
  41. #ifndef MSG_SET_HOME_OFFSETS
  42. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  43. #endif
  44. #ifndef MSG_SET_ORIGIN
  45. #define MSG_SET_ORIGIN "Set origin"
  46. #endif
  47. #ifndef MSG_PREHEAT_PLA
  48. #define MSG_PREHEAT_PLA "Preheat PLA"
  49. #endif
  50. #ifndef MSG_PREHEAT_PLA_N
  51. #define MSG_PREHEAT_PLA_N MSG_PREHEAT_PLA " "
  52. #endif
  53. #ifndef MSG_PREHEAT_PLA_ALL
  54. #define MSG_PREHEAT_PLA_ALL MSG_PREHEAT_PLA " All"
  55. #endif
  56. #ifndef MSG_PREHEAT_PLA_BEDONLY
  57. #define MSG_PREHEAT_PLA_BEDONLY MSG_PREHEAT_PLA " Bed"
  58. #endif
  59. #ifndef MSG_PREHEAT_PLA_SETTINGS
  60. #define MSG_PREHEAT_PLA_SETTINGS MSG_PREHEAT_PLA " conf"
  61. #endif
  62. #ifndef MSG_PREHEAT_ABS
  63. #define MSG_PREHEAT_ABS "Preheat ABS"
  64. #endif
  65. #ifndef MSG_PREHEAT_ABS_N
  66. #define MSG_PREHEAT_ABS_N MSG_PREHEAT_ABS " "
  67. #endif
  68. #ifndef MSG_PREHEAT_ABS_ALL
  69. #define MSG_PREHEAT_ABS_ALL MSG_PREHEAT_ABS " All"
  70. #endif
  71. #ifndef MSG_PREHEAT_ABS_BEDONLY
  72. #define MSG_PREHEAT_ABS_BEDONLY MSG_PREHEAT_ABS " Bed"
  73. #endif
  74. #ifndef MSG_PREHEAT_ABS_SETTINGS
  75. #define MSG_PREHEAT_ABS_SETTINGS MSG_PREHEAT_ABS " conf"
  76. #endif
  77. #ifndef MSG_H1
  78. #define MSG_H1 "1"
  79. #endif
  80. #ifndef MSG_H2
  81. #define MSG_H2 "2"
  82. #endif
  83. #ifndef MSG_H3
  84. #define MSG_H3 "3"
  85. #endif
  86. #ifndef MSG_H4
  87. #define MSG_H4 "4"
  88. #endif
  89. #ifndef MSG_COOLDOWN
  90. #define MSG_COOLDOWN "Cooldown"
  91. #endif
  92. #ifndef MSG_SWITCH_PS_ON
  93. #define MSG_SWITCH_PS_ON "Switch power on"
  94. #endif
  95. #ifndef MSG_SWITCH_PS_OFF
  96. #define MSG_SWITCH_PS_OFF "Switch power off"
  97. #endif
  98. #ifndef MSG_EXTRUDE
  99. #define MSG_EXTRUDE "Extrude"
  100. #endif
  101. #ifndef MSG_RETRACT
  102. #define MSG_RETRACT "Retract"
  103. #endif
  104. #ifndef MSG_MOVE_AXIS
  105. #define MSG_MOVE_AXIS "Move axis"
  106. #endif
  107. #ifndef MSG_LEVEL_BED
  108. #define MSG_LEVEL_BED "Level bed"
  109. #endif
  110. #ifndef MSG_MOVE_X
  111. #define MSG_MOVE_X "Move X"
  112. #endif
  113. #ifndef MSG_MOVE_Y
  114. #define MSG_MOVE_Y "Move Y"
  115. #endif
  116. #ifndef MSG_MOVE_Z
  117. #define MSG_MOVE_Z "Move Z"
  118. #endif
  119. #ifndef MSG_MOVE_E
  120. #define MSG_MOVE_E "Extruder"
  121. #endif
  122. #ifndef MSG_MOVE_E1
  123. #define MSG_MOVE_E1 "1"
  124. #endif
  125. #ifndef MSG_MOVE_E2
  126. #define MSG_MOVE_E2 "2"
  127. #endif
  128. #ifndef MSG_MOVE_E3
  129. #define MSG_MOVE_E3 "3"
  130. #endif
  131. #ifndef MSG_MOVE_E4
  132. #define MSG_MOVE_E4 "4"
  133. #endif
  134. #ifndef MSG_MOVE_01MM
  135. #define MSG_MOVE_01MM "Move 0.1mm"
  136. #endif
  137. #ifndef MSG_MOVE_1MM
  138. #define MSG_MOVE_1MM "Move 1mm"
  139. #endif
  140. #ifndef MSG_MOVE_10MM
  141. #define MSG_MOVE_10MM "Move 10mm"
  142. #endif
  143. #ifndef MSG_SPEED
  144. #define MSG_SPEED "Speed"
  145. #endif
  146. #ifndef MSG_NOZZLE
  147. #define MSG_NOZZLE "Nozzle"
  148. #endif
  149. #ifndef MSG_N1
  150. #define MSG_N1 " 1"
  151. #endif
  152. #ifndef MSG_N2
  153. #define MSG_N2 " 2"
  154. #endif
  155. #ifndef MSG_N3
  156. #define MSG_N3 " 3"
  157. #endif
  158. #ifndef MSG_N4
  159. #define MSG_N4 " 4"
  160. #endif
  161. #ifndef MSG_BED
  162. #define MSG_BED "Bed"
  163. #endif
  164. #ifndef MSG_FAN_SPEED
  165. #define MSG_FAN_SPEED "Fan speed"
  166. #endif
  167. #ifndef MSG_FLOW
  168. #define MSG_FLOW "Flow"
  169. #endif
  170. #ifndef MSG_CONTROL
  171. #define MSG_CONTROL "Control"
  172. #endif
  173. #ifndef MSG_MIN
  174. #define MSG_MIN " " LCD_STR_THERMOMETER " Min"
  175. #endif
  176. #ifndef MSG_MAX
  177. #define MSG_MAX " " LCD_STR_THERMOMETER " Max"
  178. #endif
  179. #ifndef MSG_FACTOR
  180. #define MSG_FACTOR " " LCD_STR_THERMOMETER " Fact"
  181. #endif
  182. #ifndef MSG_AUTOTEMP
  183. #define MSG_AUTOTEMP "Autotemp"
  184. #endif
  185. #ifndef MSG_ON
  186. #define MSG_ON "On "
  187. #endif
  188. #ifndef MSG_OFF
  189. #define MSG_OFF "Off"
  190. #endif
  191. #ifndef MSG_PID_P
  192. #define MSG_PID_P "PID-P"
  193. #endif
  194. #ifndef MSG_PID_I
  195. #define MSG_PID_I "PID-I"
  196. #endif
  197. #ifndef MSG_PID_D
  198. #define MSG_PID_D "PID-D"
  199. #endif
  200. #ifndef MSG_PID_C
  201. #define MSG_PID_C "PID-C"
  202. #endif
  203. #ifndef MSG_E1
  204. #define MSG_E1 " E1"
  205. #endif
  206. #ifndef MSG_E2
  207. #define MSG_E2 " E2"
  208. #endif
  209. #ifndef MSG_E3
  210. #define MSG_E3 " E3"
  211. #endif
  212. #ifndef MSG_E4
  213. #define MSG_E4 " E4"
  214. #endif
  215. #ifndef MSG_ACC
  216. #define MSG_ACC "Accel"
  217. #endif
  218. #ifndef MSG_VXY_JERK
  219. #define MSG_VXY_JERK "Vxy-jerk"
  220. #endif
  221. #ifndef MSG_VZ_JERK
  222. #define MSG_VZ_JERK "Vz-jerk"
  223. #endif
  224. #ifndef MSG_VE_JERK
  225. #define MSG_VE_JERK "Ve-jerk"
  226. #endif
  227. #ifndef MSG_VMAX
  228. #define MSG_VMAX "Vmax "
  229. #endif
  230. #ifndef MSG_X
  231. #define MSG_X "x"
  232. #endif
  233. #ifndef MSG_Y
  234. #define MSG_Y "y"
  235. #endif
  236. #ifndef MSG_Z
  237. #define MSG_Z "z"
  238. #endif
  239. #ifndef MSG_E
  240. #define MSG_E "e"
  241. #endif
  242. #ifndef MSG_VMIN
  243. #define MSG_VMIN "Vmin"
  244. #endif
  245. #ifndef MSG_VTRAV_MIN
  246. #define MSG_VTRAV_MIN "VTrav min"
  247. #endif
  248. #ifndef MSG_AMAX
  249. #define MSG_AMAX "Amax "
  250. #endif
  251. #ifndef MSG_A_RETRACT
  252. #define MSG_A_RETRACT "A-retract"
  253. #endif
  254. #ifndef MSG_A_TRAVEL
  255. #define MSG_A_TRAVEL "A-travel"
  256. #endif
  257. #ifndef MSG_XSTEPS
  258. #define MSG_XSTEPS "Xsteps/mm"
  259. #endif
  260. #ifndef MSG_YSTEPS
  261. #define MSG_YSTEPS "Ysteps/mm"
  262. #endif
  263. #ifndef MSG_ZSTEPS
  264. #define MSG_ZSTEPS "Zsteps/mm"
  265. #endif
  266. #ifndef MSG_ESTEPS
  267. #define MSG_ESTEPS "Esteps/mm"
  268. #endif
  269. #ifndef MSG_TEMPERATURE
  270. #define MSG_TEMPERATURE "Temperature"
  271. #endif
  272. #ifndef MSG_MOTION
  273. #define MSG_MOTION "Motion"
  274. #endif
  275. #ifndef MSG_VOLUMETRIC
  276. #define MSG_VOLUMETRIC "Filament"
  277. #endif
  278. #ifndef MSG_VOLUMETRIC_ENABLED
  279. #define MSG_VOLUMETRIC_ENABLED "E in mm3"
  280. #endif
  281. #ifndef MSG_FILAMENT_DIAM
  282. #define MSG_FILAMENT_DIAM "Fil. Dia."
  283. #endif
  284. #ifndef MSG_DIAM_E1
  285. #define MSG_DIAM_E1 " 1"
  286. #endif
  287. #ifndef MSG_DIAM_E2
  288. #define MSG_DIAM_E2 " 2"
  289. #endif
  290. #ifndef MSG_DIAM_E3
  291. #define MSG_DIAM_E3 " 3"
  292. #endif
  293. #ifndef MSG_DIAM_E4
  294. #define MSG_DIAM_E4 " 4"
  295. #endif
  296. #ifndef MSG_CONTRAST
  297. #define MSG_CONTRAST "LCD contrast"
  298. #endif
  299. #ifndef MSG_STORE_EPROM
  300. #define MSG_STORE_EPROM "Store memory"
  301. #endif
  302. #ifndef MSG_LOAD_EPROM
  303. #define MSG_LOAD_EPROM "Load memory"
  304. #endif
  305. #ifndef MSG_RESTORE_FAILSAFE
  306. #define MSG_RESTORE_FAILSAFE "Restore failsafe"
  307. #endif
  308. #ifndef MSG_REFRESH
  309. #define MSG_REFRESH "Refresh"
  310. #endif
  311. #ifndef MSG_WATCH
  312. #define MSG_WATCH "Info screen"
  313. #endif
  314. #ifndef MSG_PREPARE
  315. #define MSG_PREPARE "Prepare"
  316. #endif
  317. #ifndef MSG_TUNE
  318. #define MSG_TUNE "Tune"
  319. #endif
  320. #ifndef MSG_PAUSE_PRINT
  321. #define MSG_PAUSE_PRINT "Pause print"
  322. #endif
  323. #ifndef MSG_RESUME_PRINT
  324. #define MSG_RESUME_PRINT "Resume print"
  325. #endif
  326. #ifndef MSG_STOP_PRINT
  327. #define MSG_STOP_PRINT "Stop print"
  328. #endif
  329. #ifndef MSG_CARD_MENU
  330. #define MSG_CARD_MENU "Print from SD"
  331. #endif
  332. #ifndef MSG_NO_CARD
  333. #define MSG_NO_CARD "No SD card"
  334. #endif
  335. #ifndef MSG_DWELL
  336. #define MSG_DWELL "Sleep..."
  337. #endif
  338. #ifndef MSG_USERWAIT
  339. #define MSG_USERWAIT "Wait for user..."
  340. #endif
  341. #ifndef MSG_RESUMING
  342. #define MSG_RESUMING "Resuming print"
  343. #endif
  344. #ifndef MSG_PRINT_ABORTED
  345. #define MSG_PRINT_ABORTED "Print aborted"
  346. #endif
  347. #ifndef MSG_NO_MOVE
  348. #define MSG_NO_MOVE "No move."
  349. #endif
  350. #ifndef MSG_KILLED
  351. #define MSG_KILLED "KILLED. "
  352. #endif
  353. #ifndef MSG_STOPPED
  354. #define MSG_STOPPED "STOPPED. "
  355. #endif
  356. #ifndef MSG_CONTROL_RETRACT
  357. #define MSG_CONTROL_RETRACT "Retract mm"
  358. #endif
  359. #ifndef MSG_CONTROL_RETRACT_SWAP
  360. #define MSG_CONTROL_RETRACT_SWAP "Swap Re.mm"
  361. #endif
  362. #ifndef MSG_CONTROL_RETRACTF
  363. #define MSG_CONTROL_RETRACTF "Retract V"
  364. #endif
  365. #ifndef MSG_CONTROL_RETRACT_ZLIFT
  366. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  367. #endif
  368. #ifndef MSG_CONTROL_RETRACT_RECOVER
  369. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  370. #endif
  371. #ifndef MSG_CONTROL_RETRACT_RECOVER_SWAP
  372. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "S UnRet+mm"
  373. #endif
  374. #ifndef MSG_CONTROL_RETRACT_RECOVERF
  375. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet V"
  376. #endif
  377. #ifndef MSG_AUTORETRACT
  378. #define MSG_AUTORETRACT "AutoRetr."
  379. #endif
  380. #ifndef MSG_FILAMENTCHANGE
  381. #define MSG_FILAMENTCHANGE "Change filament"
  382. #endif
  383. #ifndef MSG_INIT_SDCARD
  384. #define MSG_INIT_SDCARD "Init. SD card"
  385. #endif
  386. #ifndef MSG_CNG_SDCARD
  387. #define MSG_CNG_SDCARD "Change SD card"
  388. #endif
  389. #ifndef MSG_ZPROBE_OUT
  390. #define MSG_ZPROBE_OUT "Z probe out. bed"
  391. #endif
  392. #ifndef MSG_POSITION_UNKNOWN
  393. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  394. #endif
  395. #ifndef MSG_ZPROBE_ZOFFSET
  396. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  397. #endif
  398. #ifndef MSG_BABYSTEP_X
  399. #define MSG_BABYSTEP_X "Babystep X"
  400. #endif
  401. #ifndef MSG_BABYSTEP_Y
  402. #define MSG_BABYSTEP_Y "Babystep Y"
  403. #endif
  404. #ifndef MSG_BABYSTEP_Z
  405. #define MSG_BABYSTEP_Z "Babystep Z"
  406. #endif
  407. #ifndef MSG_ENDSTOP_ABORT
  408. #define MSG_ENDSTOP_ABORT "Endstop abort"
  409. #endif
  410. #ifndef MSG_HEATING_FAILED_LCD
  411. #define MSG_HEATING_FAILED_LCD "Heating failed"
  412. #endif
  413. #ifndef MSG_ERR_REDUNDANT_TEMP
  414. #define MSG_ERR_REDUNDANT_TEMP "Err: REDUNDANT TEMP ERROR"
  415. #endif
  416. #ifndef MSG_THERMAL_RUNAWAY
  417. #define MSG_THERMAL_RUNAWAY "THERMAL RUNAWAY"
  418. #endif
  419. #ifndef MSG_ERR_MAXTEMP
  420. #define MSG_ERR_MAXTEMP "Err: MAXTEMP"
  421. #endif
  422. #ifndef MSG_ERR_MINTEMP
  423. #define MSG_ERR_MINTEMP "Err: MINTEMP"
  424. #endif
  425. #ifndef MSG_ERR_MAXTEMP_BED
  426. #define MSG_ERR_MAXTEMP_BED "Err: MAXTEMP BED"
  427. #endif
  428. #ifndef MSG_ERR_MINTEMP_BED
  429. #define MSG_ERR_MINTEMP_BED "Err: MINTEMP BED"
  430. #endif
  431. #ifndef MSG_END_HOUR
  432. #define MSG_END_HOUR "hours"
  433. #endif
  434. #ifndef MSG_END_MINUTE
  435. #define MSG_END_MINUTE "minutes"
  436. #endif
  437. #ifndef MSG_HEATING
  438. #define MSG_HEATING "Heating..."
  439. #endif
  440. #ifndef MSG_HEATING_COMPLETE
  441. #define MSG_HEATING_COMPLETE "Heating done."
  442. #endif
  443. #ifndef MSG_BED_HEATING
  444. #define MSG_BED_HEATING "Bed Heating."
  445. #endif
  446. #ifndef MSG_BED_DONE
  447. #define MSG_BED_DONE "Bed done."
  448. #endif
  449. #ifndef MSG_DELTA_CALIBRATE
  450. #define MSG_DELTA_CALIBRATE "Delta Calibration"
  451. #endif
  452. #ifndef MSG_DELTA_CALIBRATE_X
  453. #define MSG_DELTA_CALIBRATE_X "Calibrate X"
  454. #endif
  455. #ifndef MSG_DELTA_CALIBRATE_Y
  456. #define MSG_DELTA_CALIBRATE_Y "Calibrate Y"
  457. #endif
  458. #ifndef MSG_DELTA_CALIBRATE_Z
  459. #define MSG_DELTA_CALIBRATE_Z "Calibrate Z"
  460. #endif
  461. #ifndef MSG_DELTA_CALIBRATE_CENTER
  462. #define MSG_DELTA_CALIBRATE_CENTER "Calibrate Center"
  463. #endif
  464. #endif // LANGUAGE_EN_H