My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

language_en.h 31KB

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