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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826
  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_END
  107. #define MSG_PREHEAT_1_END MSG_PREHEAT_1 _UxGT(" End")
  108. #endif
  109. #ifndef MSG_PREHEAT_1_BEDONLY
  110. #define MSG_PREHEAT_1_BEDONLY MSG_PREHEAT_1 _UxGT(" Bed")
  111. #endif
  112. #ifndef MSG_PREHEAT_1_SETTINGS
  113. #define MSG_PREHEAT_1_SETTINGS MSG_PREHEAT_1 _UxGT(" conf")
  114. #endif
  115. #ifndef MSG_PREHEAT_2
  116. #define MSG_PREHEAT_2 _UxGT("Preheat ABS")
  117. #endif
  118. #ifndef MSG_PREHEAT_2_N
  119. #define MSG_PREHEAT_2_N MSG_PREHEAT_2 _UxGT(" ")
  120. #endif
  121. #ifndef MSG_PREHEAT_2_ALL
  122. #define MSG_PREHEAT_2_ALL MSG_PREHEAT_2 _UxGT(" All")
  123. #endif
  124. #ifndef MSG_PREHEAT_2_END
  125. #define MSG_PREHEAT_2_END MSG_PREHEAT_2 _UxGT(" End")
  126. #endif
  127. #ifndef MSG_PREHEAT_2_BEDONLY
  128. #define MSG_PREHEAT_2_BEDONLY MSG_PREHEAT_2 _UxGT(" Bed")
  129. #endif
  130. #ifndef MSG_PREHEAT_2_SETTINGS
  131. #define MSG_PREHEAT_2_SETTINGS MSG_PREHEAT_2 _UxGT(" conf")
  132. #endif
  133. #ifndef MSG_COOLDOWN
  134. #define MSG_COOLDOWN _UxGT("Cooldown")
  135. #endif
  136. #ifndef MSG_SWITCH_PS_ON
  137. #define MSG_SWITCH_PS_ON _UxGT("Switch power on")
  138. #endif
  139. #ifndef MSG_SWITCH_PS_OFF
  140. #define MSG_SWITCH_PS_OFF _UxGT("Switch power off")
  141. #endif
  142. #ifndef MSG_EXTRUDE
  143. #define MSG_EXTRUDE _UxGT("Extrude")
  144. #endif
  145. #ifndef MSG_RETRACT
  146. #define MSG_RETRACT _UxGT("Retract")
  147. #endif
  148. #ifndef MSG_MOVE_AXIS
  149. #define MSG_MOVE_AXIS _UxGT("Move axis")
  150. #endif
  151. #ifndef MSG_LEVEL_BED
  152. #define MSG_LEVEL_BED _UxGT("Level bed")
  153. #endif
  154. #if ENABLED(AUTO_BED_LEVELING_UBL)
  155. #ifndef MSG_UBL_UNHOMED
  156. #define MSG_UBL_UNHOMED _UxGT("Home XYZ first")
  157. #endif
  158. #ifndef MSG_UBL_TOOLS
  159. #define MSG_UBL_TOOLS _UxGT("UBL Tools")
  160. #endif
  161. #ifndef MSG_UBL_LEVEL_BED
  162. #define MSG_UBL_LEVEL_BED _UxGT("Unified Bed Leveling")
  163. #endif
  164. #ifndef MSG_UBL_ACTIVATE_MESH
  165. #define MSG_UBL_ACTIVATE_MESH _UxGT("Activate UBL")
  166. #endif
  167. #ifndef MSG_UBL_DEACTIVATE_MESH
  168. #define MSG_UBL_DEACTIVATE_MESH _UxGT("Deactivate UBL")
  169. #endif
  170. #ifndef MSG_UBL_CUSTOM_BED_TEMP
  171. #define MSG_UBL_CUSTOM_BED_TEMP _UxGT("Bed Temp")
  172. #endif
  173. #ifndef MSG_UBL_SET_BED_TEMP
  174. #define MSG_UBL_SET_BED_TEMP _UxGT("Bed Temp")
  175. #endif
  176. #ifndef MSG_UBL_CUSTOM_HOTEND_TEMP
  177. #define MSG_UBL_CUSTOM_HOTEND_TEMP _UxGT("Hotend Temp")
  178. #endif
  179. #ifndef MSG_UBL_SET_HOTEND_TEMP
  180. #define MSG_UBL_SET_HOTEND_TEMP _UxGT("Hotend Temp")
  181. #endif
  182. #ifndef MSG_UBL_EDIT_CUSTOM_MESH
  183. #define MSG_UBL_EDIT_CUSTOM_MESH _UxGT("Edit Custom Mesh")
  184. #endif
  185. #ifndef MSG_UBL_BUILD_CUSTOM_MESH
  186. #define MSG_UBL_BUILD_CUSTOM_MESH _UxGT("Build Custom Mesh")
  187. #endif
  188. #ifndef MSG_UBL_BUILD_MESH_MENU
  189. #define MSG_UBL_BUILD_MESH_MENU _UxGT("Build Mesh")
  190. #endif
  191. #ifndef MSG_UBL_BUILD_PLA_MESH
  192. #define MSG_UBL_BUILD_PLA_MESH _UxGT("Build PLA Mesh")
  193. #endif
  194. #ifndef MSG_UBL_BUILD_ABS_MESH
  195. #define MSG_UBL_BUILD_ABS_MESH _UxGT("Build ABS Mesh")
  196. #endif
  197. #ifndef MSG_UBL_BUILD_COLD_MESH
  198. #define MSG_UBL_BUILD_COLD_MESH _UxGT("Build Cold Mesh")
  199. #endif
  200. #ifndef MSG_UBL_MESH_HEIGHT_ADJUST
  201. #define MSG_UBL_MESH_HEIGHT_ADJUST _UxGT("Adjust Mesh Height")
  202. #endif
  203. #ifndef MSG_UBL_MESH_HEIGHT_AMOUNT
  204. #define MSG_UBL_MESH_HEIGHT_AMOUNT _UxGT("Height Amount")
  205. #endif
  206. #ifndef MSG_UBL_VALIDATE_MESH_MENU
  207. #define MSG_UBL_VALIDATE_MESH_MENU _UxGT("Validate Mesh")
  208. #endif
  209. #ifndef MSG_UBL_VALIDATE_PLA_MESH
  210. #define MSG_UBL_VALIDATE_PLA_MESH _UxGT("Validate PLA Mesh")
  211. #endif
  212. #ifndef MSG_UBL_VALIDATE_ABS_MESH
  213. #define MSG_UBL_VALIDATE_ABS_MESH _UxGT("Validate ABS Mesh")
  214. #endif
  215. #ifndef MSG_UBL_VALIDATE_CUSTOM_MESH
  216. #define MSG_UBL_VALIDATE_CUSTOM_MESH _UxGT("Validate Custom Mesh")
  217. #endif
  218. #ifndef MSG_UBL_CONTINUE_MESH
  219. #define MSG_UBL_CONTINUE_MESH _UxGT("Continue Bed Mesh")
  220. #endif
  221. #ifndef MSG_UBL_MESH_LEVELING
  222. #define MSG_UBL_MESH_LEVELING _UxGT("Mesh Leveling")
  223. #endif
  224. #ifndef MSG_UBL_3POINT_MESH_LEVELING
  225. #define MSG_UBL_3POINT_MESH_LEVELING _UxGT("3-Point Leveling")
  226. #endif
  227. #ifndef MSG_UBL_GRID_MESH_LEVELING
  228. #define MSG_UBL_GRID_MESH_LEVELING _UxGT("Grid Mesh Leveling")
  229. #endif
  230. #ifndef MSG_UBL_MESH_LEVEL
  231. #define MSG_UBL_MESH_LEVEL _UxGT("Level Mesh")
  232. #endif
  233. #ifndef MSG_UBL_SIDE_POINTS
  234. #define MSG_UBL_SIDE_POINTS _UxGT("Side Points")
  235. #endif
  236. #ifndef MSG_UBL_MAP_TYPE
  237. #define MSG_UBL_MAP_TYPE _UxGT("Map Type")
  238. #endif
  239. #ifndef MSG_UBL_OUTPUT_MAP
  240. #define MSG_UBL_OUTPUT_MAP _UxGT("Output Mesh Map")
  241. #endif
  242. #ifndef MSG_UBL_OUTPUT_MAP_HOST
  243. #define MSG_UBL_OUTPUT_MAP_HOST _UxGT("Output for Host")
  244. #endif
  245. #ifndef MSG_UBL_OUTPUT_MAP_CSV
  246. #define MSG_UBL_OUTPUT_MAP_CSV _UxGT("Output for CSV")
  247. #endif
  248. #ifndef MSG_UBL_INFO_UBL
  249. #define MSG_UBL_INFO_UBL _UxGT("Output UBL Info")
  250. #endif
  251. #ifndef MSG_UBL_EDIT_MESH_MENU
  252. #define MSG_UBL_EDIT_MESH_MENU _UxGT("Edit Mesh")
  253. #endif
  254. #ifndef MSG_UBL_FILLIN_AMOUNT
  255. #define MSG_UBL_FILLIN_AMOUNT _UxGT("Fill-in Amount")
  256. #endif
  257. #ifndef MSG_UBL_MANUAL_FILLIN
  258. #define MSG_UBL_MANUAL_FILLIN _UxGT("Manual Fill-in")
  259. #endif
  260. #ifndef MSG_UBL_SMART_FILLIN
  261. #define MSG_UBL_SMART_FILLIN _UxGT("Smart Fill-in")
  262. #endif
  263. #ifndef MSG_UBL_FILLIN_MESH
  264. #define MSG_UBL_FILLIN_MESH _UxGT("Fill-in Mesh")
  265. #endif
  266. #ifndef MSG_UBL_INVALIDATE_ALL
  267. #define MSG_UBL_INVALIDATE_ALL _UxGT("Invalidate All")
  268. #endif
  269. #ifndef MSG_UBL_INVALIDATE_CLOSEST
  270. #define MSG_UBL_INVALIDATE_CLOSEST _UxGT("Invalidate Closest")
  271. #endif
  272. #ifndef MSG_UBL_FINE_TUNE_ALL
  273. #define MSG_UBL_FINE_TUNE_ALL _UxGT("Fine Tune All")
  274. #endif
  275. #ifndef MSG_UBL_FINE_TUNE_CLOSEST
  276. #define MSG_UBL_FINE_TUNE_CLOSEST _UxGT("Fine Tune Closest")
  277. #endif
  278. #ifndef MSG_UBL_STORAGE_MESH_MENU
  279. #define MSG_UBL_STORAGE_MESH_MENU _UxGT("Mesh Storage")
  280. #endif
  281. #ifndef MSG_UBL_STORAGE_SLOT
  282. #define MSG_UBL_STORAGE_SLOT _UxGT("Memory Slot")
  283. #endif
  284. #ifndef MSG_UBL_LOAD_MESH
  285. #define MSG_UBL_LOAD_MESH _UxGT("Load Bed Mesh")
  286. #endif
  287. #ifndef MSG_UBL_SAVE_MESH
  288. #define MSG_UBL_SAVE_MESH _UxGT("Save Bed Mesh")
  289. #endif
  290. #endif // AUTO_BED_LEVELING_UBL
  291. #ifndef MSG_MOVING
  292. #define MSG_MOVING _UxGT("Moving...")
  293. #endif
  294. #ifndef MSG_FREE_XY
  295. #define MSG_FREE_XY _UxGT("Free XY")
  296. #endif
  297. #ifndef MSG_MOVE_X
  298. #define MSG_MOVE_X _UxGT("Move X")
  299. #endif
  300. #ifndef MSG_MOVE_Y
  301. #define MSG_MOVE_Y _UxGT("Move Y")
  302. #endif
  303. #ifndef MSG_MOVE_Z
  304. #define MSG_MOVE_Z _UxGT("Move Z")
  305. #endif
  306. #ifndef MSG_MOVE_E
  307. #define MSG_MOVE_E _UxGT("Extruder")
  308. #endif
  309. #ifndef MSG_MOVE_01MM
  310. #define MSG_MOVE_01MM _UxGT("Move 0.1mm")
  311. #endif
  312. #ifndef MSG_MOVE_1MM
  313. #define MSG_MOVE_1MM _UxGT("Move 1mm")
  314. #endif
  315. #ifndef MSG_MOVE_10MM
  316. #define MSG_MOVE_10MM _UxGT("Move 10mm")
  317. #endif
  318. #ifndef MSG_SPEED
  319. #define MSG_SPEED _UxGT("Speed")
  320. #endif
  321. #ifndef MSG_BED_Z
  322. #define MSG_BED_Z _UxGT("Bed Z")
  323. #endif
  324. #ifndef MSG_NOZZLE
  325. #define MSG_NOZZLE _UxGT("Nozzle")
  326. #endif
  327. #ifndef MSG_BED
  328. #define MSG_BED _UxGT("Bed")
  329. #endif
  330. #ifndef MSG_FAN_SPEED
  331. #define MSG_FAN_SPEED _UxGT("Fan speed")
  332. #endif
  333. #ifndef MSG_FLOW
  334. #define MSG_FLOW _UxGT("Flow")
  335. #endif
  336. #ifndef MSG_CONTROL
  337. #define MSG_CONTROL _UxGT("Control")
  338. #endif
  339. #ifndef MSG_MIN
  340. #define MSG_MIN _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Min")
  341. #endif
  342. #ifndef MSG_MAX
  343. #define MSG_MAX _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Max")
  344. #endif
  345. #ifndef MSG_FACTOR
  346. #define MSG_FACTOR _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Fact")
  347. #endif
  348. #ifndef MSG_AUTOTEMP
  349. #define MSG_AUTOTEMP _UxGT("Autotemp")
  350. #endif
  351. #ifndef MSG_ON
  352. #define MSG_ON _UxGT("On ")
  353. #endif
  354. #ifndef MSG_OFF
  355. #define MSG_OFF _UxGT("Off")
  356. #endif
  357. #ifndef MSG_PID_P
  358. #define MSG_PID_P _UxGT("PID-P")
  359. #endif
  360. #ifndef MSG_PID_I
  361. #define MSG_PID_I _UxGT("PID-I")
  362. #endif
  363. #ifndef MSG_PID_D
  364. #define MSG_PID_D _UxGT("PID-D")
  365. #endif
  366. #ifndef MSG_PID_C
  367. #define MSG_PID_C _UxGT("PID-C")
  368. #endif
  369. #ifndef MSG_SELECT
  370. #define MSG_SELECT _UxGT("Select")
  371. #endif
  372. #ifndef MSG_ACC
  373. #define MSG_ACC _UxGT("Accel")
  374. #endif
  375. #ifndef MSG_VX_JERK
  376. #define MSG_VX_JERK _UxGT("Vx-jerk")
  377. #endif
  378. #ifndef MSG_VY_JERK
  379. #define MSG_VY_JERK _UxGT("Vy-jerk")
  380. #endif
  381. #ifndef MSG_VZ_JERK
  382. #define MSG_VZ_JERK _UxGT("Vz-jerk")
  383. #endif
  384. #ifndef MSG_VE_JERK
  385. #define MSG_VE_JERK _UxGT("Ve-jerk")
  386. #endif
  387. #ifndef MSG_VMAX
  388. #define MSG_VMAX _UxGT("Vmax ")
  389. #endif
  390. #ifndef MSG_VMIN
  391. #define MSG_VMIN _UxGT("Vmin")
  392. #endif
  393. #ifndef MSG_VTRAV_MIN
  394. #define MSG_VTRAV_MIN _UxGT("VTrav min")
  395. #endif
  396. #ifndef MSG_AMAX
  397. #define MSG_AMAX _UxGT("Amax ")
  398. #endif
  399. #ifndef MSG_A_RETRACT
  400. #define MSG_A_RETRACT _UxGT("A-retract")
  401. #endif
  402. #ifndef MSG_A_TRAVEL
  403. #define MSG_A_TRAVEL _UxGT("A-travel")
  404. #endif
  405. #ifndef MSG_XSTEPS
  406. #define MSG_XSTEPS _UxGT("Xsteps/mm")
  407. #endif
  408. #ifndef MSG_YSTEPS
  409. #define MSG_YSTEPS _UxGT("Ysteps/mm")
  410. #endif
  411. #ifndef MSG_ZSTEPS
  412. #define MSG_ZSTEPS _UxGT("Zsteps/mm")
  413. #endif
  414. #ifndef MSG_ESTEPS
  415. #define MSG_ESTEPS _UxGT("Esteps/mm")
  416. #endif
  417. #ifndef MSG_E1STEPS
  418. #define MSG_E1STEPS _UxGT("E1steps/mm")
  419. #endif
  420. #ifndef MSG_E2STEPS
  421. #define MSG_E2STEPS _UxGT("E2steps/mm")
  422. #endif
  423. #ifndef MSG_E3STEPS
  424. #define MSG_E3STEPS _UxGT("E3steps/mm")
  425. #endif
  426. #ifndef MSG_E4STEPS
  427. #define MSG_E4STEPS _UxGT("E4steps/mm")
  428. #endif
  429. #ifndef MSG_E5STEPS
  430. #define MSG_E5STEPS _UxGT("E5steps/mm")
  431. #endif
  432. #ifndef MSG_TEMPERATURE
  433. #define MSG_TEMPERATURE _UxGT("Temperature")
  434. #endif
  435. #ifndef MSG_MOTION
  436. #define MSG_MOTION _UxGT("Motion")
  437. #endif
  438. #ifndef MSG_FILAMENT
  439. #define MSG_FILAMENT _UxGT("Filament")
  440. #endif
  441. #ifndef MSG_VOLUMETRIC_ENABLED
  442. #define MSG_VOLUMETRIC_ENABLED _UxGT("E in mm3")
  443. #endif
  444. #ifndef MSG_FILAMENT_DIAM
  445. #define MSG_FILAMENT_DIAM _UxGT("Fil. Dia.")
  446. #endif
  447. #ifndef MSG_ADVANCE_K
  448. #define MSG_ADVANCE_K _UxGT("Advance K")
  449. #endif
  450. #ifndef MSG_CONTRAST
  451. #define MSG_CONTRAST _UxGT("LCD contrast")
  452. #endif
  453. #ifndef MSG_STORE_EEPROM
  454. #define MSG_STORE_EEPROM _UxGT("Store settings")
  455. #endif
  456. #ifndef MSG_LOAD_EEPROM
  457. #define MSG_LOAD_EEPROM _UxGT("Load settings")
  458. #endif
  459. #ifndef MSG_RESTORE_FAILSAFE
  460. #define MSG_RESTORE_FAILSAFE _UxGT("Restore failsafe")
  461. #endif
  462. #ifndef MSG_INIT_EEPROM
  463. #define MSG_INIT_EEPROM _UxGT("Initialize EEPROM")
  464. #endif
  465. #ifndef MSG_REFRESH
  466. #define MSG_REFRESH _UxGT("Refresh")
  467. #endif
  468. #ifndef MSG_WATCH
  469. #define MSG_WATCH _UxGT("Info screen")
  470. #endif
  471. #ifndef MSG_PREPARE
  472. #define MSG_PREPARE _UxGT("Prepare")
  473. #endif
  474. #ifndef MSG_TUNE
  475. #define MSG_TUNE _UxGT("Tune")
  476. #endif
  477. #ifndef MSG_PAUSE_PRINT
  478. #define MSG_PAUSE_PRINT _UxGT("Pause print")
  479. #endif
  480. #ifndef MSG_RESUME_PRINT
  481. #define MSG_RESUME_PRINT _UxGT("Resume print")
  482. #endif
  483. #ifndef MSG_STOP_PRINT
  484. #define MSG_STOP_PRINT _UxGT("Stop print")
  485. #endif
  486. #ifndef MSG_CARD_MENU
  487. #define MSG_CARD_MENU _UxGT("Print from SD")
  488. #endif
  489. #ifndef MSG_NO_CARD
  490. #define MSG_NO_CARD _UxGT("No SD card")
  491. #endif
  492. #ifndef MSG_DWELL
  493. #define MSG_DWELL _UxGT("Sleep...")
  494. #endif
  495. #ifndef MSG_USERWAIT
  496. #define MSG_USERWAIT _UxGT("Click to resume...")
  497. #endif
  498. #ifndef MSG_RESUMING
  499. #define MSG_RESUMING _UxGT("Resuming print")
  500. #endif
  501. #ifndef MSG_PRINT_ABORTED
  502. #define MSG_PRINT_ABORTED _UxGT("Print aborted")
  503. #endif
  504. #ifndef MSG_NO_MOVE
  505. #define MSG_NO_MOVE _UxGT("No move.")
  506. #endif
  507. #ifndef MSG_KILLED
  508. #define MSG_KILLED _UxGT("KILLED. ")
  509. #endif
  510. #ifndef MSG_STOPPED
  511. #define MSG_STOPPED _UxGT("STOPPED. ")
  512. #endif
  513. #ifndef MSG_CONTROL_RETRACT
  514. #define MSG_CONTROL_RETRACT _UxGT("Retract mm")
  515. #endif
  516. #ifndef MSG_CONTROL_RETRACT_SWAP
  517. #define MSG_CONTROL_RETRACT_SWAP _UxGT("Swap Re.mm")
  518. #endif
  519. #ifndef MSG_CONTROL_RETRACTF
  520. #define MSG_CONTROL_RETRACTF _UxGT("Retract V")
  521. #endif
  522. #ifndef MSG_CONTROL_RETRACT_ZLIFT
  523. #define MSG_CONTROL_RETRACT_ZLIFT _UxGT("Hop mm")
  524. #endif
  525. #ifndef MSG_CONTROL_RETRACT_RECOVER
  526. #define MSG_CONTROL_RETRACT_RECOVER _UxGT("UnRet mm")
  527. #endif
  528. #ifndef MSG_CONTROL_RETRACT_RECOVER_SWAP
  529. #define MSG_CONTROL_RETRACT_RECOVER_SWAP _UxGT("S UnRet mm")
  530. #endif
  531. #ifndef MSG_CONTROL_RETRACT_RECOVERF
  532. #define MSG_CONTROL_RETRACT_RECOVERF _UxGT("UnRet V")
  533. #endif
  534. #ifndef MSG_AUTORETRACT
  535. #define MSG_AUTORETRACT _UxGT("AutoRetr.")
  536. #endif
  537. #ifndef MSG_FILAMENTCHANGE
  538. #define MSG_FILAMENTCHANGE _UxGT("Change filament")
  539. #endif
  540. #ifndef MSG_INIT_SDCARD
  541. #define MSG_INIT_SDCARD _UxGT("Init. SD card")
  542. #endif
  543. #ifndef MSG_CNG_SDCARD
  544. #define MSG_CNG_SDCARD _UxGT("Change SD card")
  545. #endif
  546. #ifndef MSG_ZPROBE_OUT
  547. #define MSG_ZPROBE_OUT _UxGT("Z probe out. bed")
  548. #endif
  549. #ifndef MSG_BLTOUCH
  550. #define MSG_BLTOUCH _UxGT("BLTouch")
  551. #endif
  552. #ifndef MSG_BLTOUCH_SELFTEST
  553. #define MSG_BLTOUCH_SELFTEST _UxGT("BLTouch Self-Test")
  554. #endif
  555. #ifndef MSG_BLTOUCH_RESET
  556. #define MSG_BLTOUCH_RESET _UxGT("Reset BLTouch")
  557. #endif
  558. #ifndef MSG_BLTOUCH_DEPLOY
  559. #define MSG_BLTOUCH_DEPLOY _UxGT("Deploy BLTouch")
  560. #endif
  561. #ifndef MSG_BLTOUCH_STOW
  562. #define MSG_BLTOUCH_STOW _UxGT("Stow BLTouch")
  563. #endif
  564. #ifndef MSG_HOME
  565. #define MSG_HOME _UxGT("Home") // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
  566. #endif
  567. #ifndef MSG_FIRST
  568. #define MSG_FIRST _UxGT("first")
  569. #endif
  570. #ifndef MSG_ZPROBE_ZOFFSET
  571. #define MSG_ZPROBE_ZOFFSET _UxGT("Z Offset")
  572. #endif
  573. #ifndef MSG_BABYSTEP_X
  574. #define MSG_BABYSTEP_X _UxGT("Babystep X")
  575. #endif
  576. #ifndef MSG_BABYSTEP_Y
  577. #define MSG_BABYSTEP_Y _UxGT("Babystep Y")
  578. #endif
  579. #ifndef MSG_BABYSTEP_Z
  580. #define MSG_BABYSTEP_Z _UxGT("Babystep Z")
  581. #endif
  582. #ifndef MSG_ENDSTOP_ABORT
  583. #define MSG_ENDSTOP_ABORT _UxGT("Endstop abort")
  584. #endif
  585. #ifndef MSG_HEATING_FAILED_LCD
  586. #define MSG_HEATING_FAILED_LCD _UxGT("Heating failed")
  587. #endif
  588. #ifndef MSG_ERR_REDUNDANT_TEMP
  589. #define MSG_ERR_REDUNDANT_TEMP _UxGT("Err: REDUNDANT TEMP")
  590. #endif
  591. #ifndef MSG_THERMAL_RUNAWAY
  592. #define MSG_THERMAL_RUNAWAY _UxGT("THERMAL RUNAWAY")
  593. #endif
  594. #ifndef MSG_ERR_MAXTEMP
  595. #define MSG_ERR_MAXTEMP _UxGT("Err: MAXTEMP")
  596. #endif
  597. #ifndef MSG_ERR_MINTEMP
  598. #define MSG_ERR_MINTEMP _UxGT("Err: MINTEMP")
  599. #endif
  600. #ifndef MSG_ERR_MAXTEMP_BED
  601. #define MSG_ERR_MAXTEMP_BED _UxGT("Err: MAXTEMP BED")
  602. #endif
  603. #ifndef MSG_ERR_MINTEMP_BED
  604. #define MSG_ERR_MINTEMP_BED _UxGT("Err: MINTEMP BED")
  605. #endif
  606. #ifndef MSG_ERR_Z_HOMING
  607. #define MSG_ERR_Z_HOMING _UxGT("G28 Z Forbidden")
  608. #endif
  609. #ifndef MSG_HALTED
  610. #define MSG_HALTED _UxGT("PRINTER HALTED")
  611. #endif
  612. #ifndef MSG_PLEASE_RESET
  613. #define MSG_PLEASE_RESET _UxGT("Please reset")
  614. #endif
  615. #ifndef MSG_SHORT_DAY
  616. #define MSG_SHORT_DAY _UxGT("d") // One character only
  617. #endif
  618. #ifndef MSG_SHORT_HOUR
  619. #define MSG_SHORT_HOUR _UxGT("h") // One character only
  620. #endif
  621. #ifndef MSG_SHORT_MINUTE
  622. #define MSG_SHORT_MINUTE _UxGT("m") // One character only
  623. #endif
  624. #ifndef MSG_HEATING
  625. #define MSG_HEATING _UxGT("Heating...")
  626. #endif
  627. #ifndef MSG_HEATING_COMPLETE
  628. #define MSG_HEATING_COMPLETE _UxGT("Heating done.")
  629. #endif
  630. #ifndef MSG_BED_HEATING
  631. #define MSG_BED_HEATING _UxGT("Bed Heating.")
  632. #endif
  633. #ifndef MSG_BED_DONE
  634. #define MSG_BED_DONE _UxGT("Bed done.")
  635. #endif
  636. #ifndef MSG_DELTA_CALIBRATE
  637. #define MSG_DELTA_CALIBRATE _UxGT("Delta Calibration")
  638. #endif
  639. #ifndef MSG_DELTA_CALIBRATE_X
  640. #define MSG_DELTA_CALIBRATE_X _UxGT("Calibrate X")
  641. #endif
  642. #ifndef MSG_DELTA_CALIBRATE_Y
  643. #define MSG_DELTA_CALIBRATE_Y _UxGT("Calibrate Y")
  644. #endif
  645. #ifndef MSG_DELTA_CALIBRATE_Z
  646. #define MSG_DELTA_CALIBRATE_Z _UxGT("Calibrate Z")
  647. #endif
  648. #ifndef MSG_DELTA_CALIBRATE_CENTER
  649. #define MSG_DELTA_CALIBRATE_CENTER _UxGT("Calibrate Center")
  650. #endif
  651. #ifndef MSG_DELTA_AUTO_CALIBRATE
  652. #define MSG_DELTA_AUTO_CALIBRATE _UxGT("Auto Calibration")
  653. #endif
  654. #ifndef MSG_DELTA_HEIGHT_CALIBRATE
  655. #define MSG_DELTA_HEIGHT_CALIBRATE _UxGT("Set Delta Height")
  656. #endif
  657. #ifndef MSG_INFO_MENU
  658. #define MSG_INFO_MENU _UxGT("About Printer")
  659. #endif
  660. #ifndef MSG_INFO_PRINTER_MENU
  661. #define MSG_INFO_PRINTER_MENU _UxGT("Printer Info")
  662. #endif
  663. #ifndef MSG_INFO_STATS_MENU
  664. #define MSG_INFO_STATS_MENU _UxGT("Printer Stats")
  665. #endif
  666. #ifndef MSG_INFO_BOARD_MENU
  667. #define MSG_INFO_BOARD_MENU _UxGT("Board Info")
  668. #endif
  669. #ifndef MSG_INFO_THERMISTOR_MENU
  670. #define MSG_INFO_THERMISTOR_MENU _UxGT("Thermistors")
  671. #endif
  672. #ifndef MSG_INFO_EXTRUDERS
  673. #define MSG_INFO_EXTRUDERS _UxGT("Extruders")
  674. #endif
  675. #ifndef MSG_INFO_BAUDRATE
  676. #define MSG_INFO_BAUDRATE _UxGT("Baud")
  677. #endif
  678. #ifndef MSG_INFO_PROTOCOL
  679. #define MSG_INFO_PROTOCOL _UxGT("Protocol")
  680. #endif
  681. #ifndef MSG_LIGHTS_ON
  682. #define MSG_LIGHTS_ON _UxGT("Case light on")
  683. #endif
  684. #ifndef MSG_LIGHTS_OFF
  685. #define MSG_LIGHTS_OFF _UxGT("Case light off")
  686. #endif
  687. #if LCD_WIDTH >= 20
  688. #ifndef MSG_INFO_PRINT_COUNT
  689. #define MSG_INFO_PRINT_COUNT _UxGT("Print Count")
  690. #endif
  691. #ifndef MSG_INFO_COMPLETED_PRINTS
  692. #define MSG_INFO_COMPLETED_PRINTS _UxGT("Completed")
  693. #endif
  694. #ifndef MSG_INFO_PRINT_TIME
  695. #define MSG_INFO_PRINT_TIME _UxGT("Total print time")
  696. #endif
  697. #ifndef MSG_INFO_PRINT_LONGEST
  698. #define MSG_INFO_PRINT_LONGEST _UxGT("Longest job time")
  699. #endif
  700. #ifndef MSG_INFO_PRINT_FILAMENT
  701. #define MSG_INFO_PRINT_FILAMENT _UxGT("Extruded total")
  702. #endif
  703. #else
  704. #ifndef MSG_INFO_PRINT_COUNT
  705. #define MSG_INFO_PRINT_COUNT _UxGT("Prints")
  706. #endif
  707. #ifndef MSG_INFO_COMPLETED_PRINTS
  708. #define MSG_INFO_COMPLETED_PRINTS _UxGT("Completed")
  709. #endif
  710. #ifndef MSG_INFO_PRINT_TIME
  711. #define MSG_INFO_PRINT_TIME _UxGT("Total")
  712. #endif
  713. #ifndef MSG_INFO_PRINT_LONGEST
  714. #define MSG_INFO_PRINT_LONGEST _UxGT("Longest")
  715. #endif
  716. #ifndef MSG_INFO_PRINT_FILAMENT
  717. #define MSG_INFO_PRINT_FILAMENT _UxGT("Extruded")
  718. #endif
  719. #endif
  720. #ifndef MSG_INFO_MIN_TEMP
  721. #define MSG_INFO_MIN_TEMP _UxGT("Min Temp")
  722. #endif
  723. #ifndef MSG_INFO_MAX_TEMP
  724. #define MSG_INFO_MAX_TEMP _UxGT("Max Temp")
  725. #endif
  726. #ifndef MSG_INFO_PSU
  727. #define MSG_INFO_PSU _UxGT("Power Supply")
  728. #endif
  729. #ifndef MSG_DRIVE_STRENGTH
  730. #define MSG_DRIVE_STRENGTH _UxGT("Drive Strength")
  731. #endif
  732. #ifndef MSG_DAC_PERCENT
  733. #define MSG_DAC_PERCENT _UxGT("Driver %")
  734. #endif
  735. #ifndef MSG_DAC_EEPROM_WRITE
  736. #define MSG_DAC_EEPROM_WRITE _UxGT("DAC EEPROM Write")
  737. #endif
  738. #ifndef MSG_FILAMENT_CHANGE_HEADER
  739. #define MSG_FILAMENT_CHANGE_HEADER _UxGT("CHANGE FILAMENT")
  740. #endif
  741. #ifndef MSG_FILAMENT_CHANGE_OPTION_HEADER
  742. #define MSG_FILAMENT_CHANGE_OPTION_HEADER _UxGT("CHANGE OPTIONS:")
  743. #endif
  744. #ifndef MSG_FILAMENT_CHANGE_OPTION_EXTRUDE
  745. #define MSG_FILAMENT_CHANGE_OPTION_EXTRUDE _UxGT("Extrude more")
  746. #endif
  747. #ifndef MSG_FILAMENT_CHANGE_OPTION_RESUME
  748. #define MSG_FILAMENT_CHANGE_OPTION_RESUME _UxGT("Resume print")
  749. #endif
  750. #ifndef MSG_FILAMENT_CHANGE_MINTEMP
  751. #define MSG_FILAMENT_CHANGE_MINTEMP _UxGT("Minimum Temp is ")
  752. #endif
  753. #ifndef MSG_FILAMENT_CHANGE_NOZZLE
  754. #define MSG_FILAMENT_CHANGE_NOZZLE _UxGT(" Nozzle: ")
  755. #endif
  756. //
  757. // Filament Change screens show up to 3 lines on a 4-line display
  758. // ...or up to 2 lines on a 3-line display
  759. //
  760. #if LCD_HEIGHT >= 4
  761. #ifndef MSG_FILAMENT_CHANGE_INIT_1
  762. #define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Wait for start")
  763. #define MSG_FILAMENT_CHANGE_INIT_2 _UxGT("of the filament")
  764. #define MSG_FILAMENT_CHANGE_INIT_3 _UxGT("change")
  765. #endif
  766. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_1
  767. #define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Wait for")
  768. #define MSG_FILAMENT_CHANGE_UNLOAD_2 _UxGT("filament unload")
  769. #endif
  770. #ifndef MSG_FILAMENT_CHANGE_INSERT_1
  771. #define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insert filament")
  772. #define MSG_FILAMENT_CHANGE_INSERT_2 _UxGT("and press button")
  773. #define MSG_FILAMENT_CHANGE_INSERT_3 _UxGT("to continue...")
  774. #endif
  775. #ifndef MSG_FILAMENT_CHANGE_HEAT_1
  776. #define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Press button to")
  777. #define MSG_FILAMENT_CHANGE_HEAT_2 _UxGT("heat nozzle.")
  778. #endif
  779. #ifndef MSG_FILAMENT_CHANGE_HEATING_1
  780. #define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Heating nozzle")
  781. #define MSG_FILAMENT_CHANGE_HEATING_2 _UxGT("Please wait...")
  782. #endif
  783. #ifndef MSG_FILAMENT_CHANGE_LOAD_1
  784. #define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Wait for")
  785. #define MSG_FILAMENT_CHANGE_LOAD_2 _UxGT("filament load")
  786. #endif
  787. #ifndef MSG_FILAMENT_CHANGE_EXTRUDE_1
  788. #define MSG_FILAMENT_CHANGE_EXTRUDE_1 _UxGT("Wait for")
  789. #define MSG_FILAMENT_CHANGE_EXTRUDE_2 _UxGT("filament extrude")
  790. #endif
  791. #ifndef MSG_FILAMENT_CHANGE_RESUME_1
  792. #define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Wait for print")
  793. #define MSG_FILAMENT_CHANGE_RESUME_2 _UxGT("to resume")
  794. #endif
  795. #else // LCD_HEIGHT < 4
  796. #ifndef MSG_FILAMENT_CHANGE_INIT_1
  797. #define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Please wait...")
  798. #endif
  799. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_1
  800. #define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Ejecting...")
  801. #endif
  802. #ifndef MSG_FILAMENT_CHANGE_INSERT_1
  803. #define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insert and Click")
  804. #endif
  805. #ifndef MSG_FILAMENT_CHANGE_HEATING_1
  806. #define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Heating...")
  807. #endif
  808. #ifndef MSG_FILAMENT_CHANGE_LOAD_1
  809. #define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Loading...")
  810. #endif
  811. #ifndef MSG_FILAMENT_CHANGE_EXTRUDE_1
  812. #define MSG_FILAMENT_CHANGE_EXTRUDE_1 _UxGT("Extruding...")
  813. #endif
  814. #ifndef MSG_FILAMENT_CHANGE_RESUME_1
  815. #define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Resuming...")
  816. #endif
  817. #endif // LCD_HEIGHT < 4
  818. #endif // LANGUAGE_EN_H