My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

language_en.h 49KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2019 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. #pragma once
  23. /**
  24. * English
  25. *
  26. * LCD Menu Messages
  27. * See also http://marlinfw.org/docs/development/lcd_language.html
  28. *
  29. */
  30. #define en 1234
  31. #if LCD_LANGUAGE == en
  32. #define NOT_EXTENDED_ISO10646_1_5X7
  33. #endif
  34. #undef en
  35. #ifndef THIS_LANGUAGES_SPECIAL_SYMBOLS
  36. #define THIS_LANGUAGES_SPECIAL_SYMBOLS _UxGT("³")
  37. #endif
  38. #ifdef NOT_EXTENDED_ISO10646_1_5X7
  39. #define MSG_CUBED _UxGT("^3")
  40. #else
  41. #define MSG_CUBED _UxGT("³")
  42. #endif
  43. #ifndef CHARSIZE
  44. #define CHARSIZE 1
  45. #endif
  46. #ifndef WELCOME_MSG
  47. #define WELCOME_MSG MACHINE_NAME _UxGT(" Ready.")
  48. #endif
  49. #ifndef MSG_YES
  50. #define MSG_YES _UxGT("YES")
  51. #endif
  52. #ifndef MSG_NO
  53. #define MSG_NO _UxGT("NO")
  54. #endif
  55. #ifndef MSG_BACK
  56. #define MSG_BACK _UxGT("Back")
  57. #endif
  58. #ifndef MSG_SD_INSERTED
  59. #define MSG_SD_INSERTED _UxGT("Card inserted")
  60. #endif
  61. #ifndef MSG_SD_REMOVED
  62. #define MSG_SD_REMOVED _UxGT("Card removed")
  63. #endif
  64. #ifndef MSG_SD_RELEASED
  65. #define MSG_SD_RELEASED _UxGT("Card released")
  66. #endif
  67. #ifndef MSG_LCD_ENDSTOPS
  68. #define MSG_LCD_ENDSTOPS _UxGT("Endstops") // Max length 8 characters
  69. #endif
  70. #ifndef MSG_LCD_SOFT_ENDSTOPS
  71. #define MSG_LCD_SOFT_ENDSTOPS _UxGT("Soft Endstops")
  72. #endif
  73. #ifndef MSG_MAIN
  74. #define MSG_MAIN _UxGT("Main")
  75. #endif
  76. #ifndef MSG_ADVANCED_SETTINGS
  77. #define MSG_ADVANCED_SETTINGS _UxGT("Advanced Settings")
  78. #endif
  79. #ifndef MSG_CONFIGURATION
  80. #define MSG_CONFIGURATION _UxGT("Configuration")
  81. #endif
  82. #ifndef MSG_AUTOSTART
  83. #define MSG_AUTOSTART _UxGT("Autostart")
  84. #endif
  85. #ifndef MSG_DISABLE_STEPPERS
  86. #define MSG_DISABLE_STEPPERS _UxGT("Disable steppers")
  87. #endif
  88. #ifndef MSG_DEBUG_MENU
  89. #define MSG_DEBUG_MENU _UxGT("Debug Menu")
  90. #endif
  91. #ifndef MSG_PROGRESS_BAR_TEST
  92. #define MSG_PROGRESS_BAR_TEST _UxGT("Progress Bar Test")
  93. #endif
  94. #ifndef MSG_AUTO_HOME
  95. #define MSG_AUTO_HOME _UxGT("Auto home")
  96. #endif
  97. #ifndef MSG_AUTO_HOME_X
  98. #define MSG_AUTO_HOME_X _UxGT("Home X")
  99. #endif
  100. #ifndef MSG_AUTO_HOME_Y
  101. #define MSG_AUTO_HOME_Y _UxGT("Home Y")
  102. #endif
  103. #ifndef MSG_AUTO_HOME_Z
  104. #define MSG_AUTO_HOME_Z _UxGT("Home Z")
  105. #endif
  106. #ifndef MSG_AUTO_Z_ALIGN
  107. #define MSG_AUTO_Z_ALIGN _UxGT("Auto Z-Align")
  108. #endif
  109. #ifndef MSG_LEVEL_BED_HOMING
  110. #define MSG_LEVEL_BED_HOMING _UxGT("Homing XYZ")
  111. #endif
  112. #ifndef MSG_LEVEL_BED_WAITING
  113. #define MSG_LEVEL_BED_WAITING _UxGT("Click to Begin")
  114. #endif
  115. #ifndef MSG_LEVEL_BED_NEXT_POINT
  116. #define MSG_LEVEL_BED_NEXT_POINT _UxGT("Next Point")
  117. #endif
  118. #ifndef MSG_LEVEL_BED_DONE
  119. #define MSG_LEVEL_BED_DONE _UxGT("Leveling Done!")
  120. #endif
  121. #ifndef MSG_Z_FADE_HEIGHT
  122. #define MSG_Z_FADE_HEIGHT _UxGT("Fade Height")
  123. #endif
  124. #ifndef MSG_SET_HOME_OFFSETS
  125. #define MSG_SET_HOME_OFFSETS _UxGT("Set home offsets")
  126. #endif
  127. #ifndef MSG_HOME_OFFSETS_APPLIED
  128. #define MSG_HOME_OFFSETS_APPLIED _UxGT("Offsets applied")
  129. #endif
  130. #ifndef MSG_SET_ORIGIN
  131. #define MSG_SET_ORIGIN _UxGT("Set origin")
  132. #endif
  133. #ifndef MSG_PREHEAT_1
  134. #define MSG_PREHEAT_1 _UxGT("Preheat " PREHEAT_1_LABEL)
  135. #endif
  136. #ifndef MSG_PREHEAT_1_N
  137. #define MSG_PREHEAT_1_N MSG_PREHEAT_1 _UxGT(" ")
  138. #endif
  139. #ifndef MSG_PREHEAT_1_ALL
  140. #define MSG_PREHEAT_1_ALL MSG_PREHEAT_1 _UxGT(" All")
  141. #endif
  142. #ifndef MSG_PREHEAT_1_END
  143. #define MSG_PREHEAT_1_END MSG_PREHEAT_1 _UxGT(" End")
  144. #endif
  145. #ifndef MSG_PREHEAT_1_BEDONLY
  146. #define MSG_PREHEAT_1_BEDONLY MSG_PREHEAT_1 _UxGT(" Bed")
  147. #endif
  148. #ifndef MSG_PREHEAT_1_SETTINGS
  149. #define MSG_PREHEAT_1_SETTINGS MSG_PREHEAT_1 _UxGT(" conf")
  150. #endif
  151. #ifndef MSG_PREHEAT_2
  152. #define MSG_PREHEAT_2 _UxGT("Preheat " PREHEAT_2_LABEL)
  153. #endif
  154. #ifndef MSG_PREHEAT_2_N
  155. #define MSG_PREHEAT_2_N MSG_PREHEAT_2 _UxGT(" ")
  156. #endif
  157. #ifndef MSG_PREHEAT_2_ALL
  158. #define MSG_PREHEAT_2_ALL MSG_PREHEAT_2 _UxGT(" All")
  159. #endif
  160. #ifndef MSG_PREHEAT_2_END
  161. #define MSG_PREHEAT_2_END MSG_PREHEAT_2 _UxGT(" End")
  162. #endif
  163. #ifndef MSG_PREHEAT_2_BEDONLY
  164. #define MSG_PREHEAT_2_BEDONLY MSG_PREHEAT_2 _UxGT(" Bed")
  165. #endif
  166. #ifndef MSG_PREHEAT_2_SETTINGS
  167. #define MSG_PREHEAT_2_SETTINGS MSG_PREHEAT_2 _UxGT(" conf")
  168. #endif
  169. #ifndef MSG_PREHEAT_CUSTOM
  170. #define MSG_PREHEAT_CUSTOM _UxGT("Preheat Custom")
  171. #endif
  172. #ifndef MSG_COOLDOWN
  173. #define MSG_COOLDOWN _UxGT("Cooldown")
  174. #endif
  175. #ifndef MSG_LASER_MENU
  176. #define MSG_LASER_MENU _UxGT("Laser Control")
  177. #endif
  178. #ifndef MSG_LASER_OFF
  179. #define MSG_LASER_OFF _UxGT("Laser Off")
  180. #endif
  181. #ifndef MSG_LASER_ON
  182. #define MSG_LASER_ON _UxGT("Laser On")
  183. #endif
  184. #ifndef MSG_LASER_POWER
  185. #define MSG_LASER_POWER _UxGT("Laser power")
  186. #endif
  187. #ifndef MSG_SPINDLE_MENU
  188. #define MSG_SPINDLE_MENU _UxGT("Spindle Control")
  189. #endif
  190. #ifndef MSG_SPINDLE_OFF
  191. #define MSG_SPINDLE_OFF _UxGT("Spindle Off")
  192. #endif
  193. #ifndef MSG_SPINDLE_ON
  194. #define MSG_SPINDLE_ON _UxGT("Spindle On")
  195. #endif
  196. #ifndef MSG_SPINDLE_POWER
  197. #define MSG_SPINDLE_POWER _UxGT("Spindle power")
  198. #endif
  199. #ifndef MSG_SPINDLE_REVERSE
  200. #define MSG_SPINDLE_REVERSE _UxGT("Spindle Reverse")
  201. #endif
  202. #ifndef MSG_SWITCH_PS_ON
  203. #define MSG_SWITCH_PS_ON _UxGT("Switch power on")
  204. #endif
  205. #ifndef MSG_SWITCH_PS_OFF
  206. #define MSG_SWITCH_PS_OFF _UxGT("Switch power off")
  207. #endif
  208. #ifndef MSG_EXTRUDE
  209. #define MSG_EXTRUDE _UxGT("Extrude")
  210. #endif
  211. #ifndef MSG_RETRACT
  212. #define MSG_RETRACT _UxGT("Retract")
  213. #endif
  214. #ifndef MSG_MOVE_AXIS
  215. #define MSG_MOVE_AXIS _UxGT("Move axis")
  216. #endif
  217. #ifndef MSG_BED_LEVELING
  218. #define MSG_BED_LEVELING _UxGT("Bed Leveling")
  219. #endif
  220. #ifndef MSG_LEVEL_BED
  221. #define MSG_LEVEL_BED _UxGT("Level bed")
  222. #endif
  223. #ifndef MSG_LEVEL_CORNERS
  224. #define MSG_LEVEL_CORNERS _UxGT("Level corners")
  225. #endif
  226. #ifndef MSG_NEXT_CORNER
  227. #define MSG_NEXT_CORNER _UxGT("Next corner")
  228. #endif
  229. #ifndef MSG_EDITING_STOPPED
  230. #define MSG_EDITING_STOPPED _UxGT("Mesh Editing Stopped")
  231. #endif
  232. #ifndef MSG_MESH_X
  233. #define MSG_MESH_X _UxGT("Index X")
  234. #endif
  235. #ifndef MSG_MESH_Y
  236. #define MSG_MESH_Y _UxGT("Index Y")
  237. #endif
  238. #ifndef MSG_MESH_EDIT_Z
  239. #define MSG_MESH_EDIT_Z _UxGT("Z Value")
  240. #endif
  241. #ifndef MSG_USER_MENU
  242. #define MSG_USER_MENU _UxGT("Custom Commands")
  243. #endif
  244. #ifndef MSG_UBL_DOING_G29
  245. #define MSG_UBL_DOING_G29 _UxGT("Doing G29")
  246. #endif
  247. #ifndef MSG_UBL_UNHOMED
  248. #define MSG_UBL_UNHOMED _UxGT("Home XYZ first")
  249. #endif
  250. #ifndef MSG_UBL_TOOLS
  251. #define MSG_UBL_TOOLS _UxGT("UBL Tools")
  252. #endif
  253. #ifndef MSG_UBL_LEVEL_BED
  254. #define MSG_UBL_LEVEL_BED _UxGT("Unified Bed Leveling")
  255. #endif
  256. #ifndef MSG_LCD_PROBING_MESH
  257. #define MSG_LCD_PROBING_MESH _UxGT("Probing point")
  258. #endif
  259. #ifndef MSG_LCD_TILTING_MESH
  260. #define MSG_LCD_TILTING_MESH _UxGT("Tilting point")
  261. #endif
  262. #ifndef MSG_IDEX_MENU
  263. #define MSG_IDEX_MENU _UxGT("IDEX Mode")
  264. #endif
  265. #ifndef MSG_OFFSETS_MENU
  266. #define MSG_OFFSETS_MENU _UxGT("Tool Offsets")
  267. #endif
  268. #ifndef MSG_IDEX_MODE_AUTOPARK
  269. #define MSG_IDEX_MODE_AUTOPARK _UxGT("Auto-Park")
  270. #endif
  271. #ifndef MSG_IDEX_MODE_DUPLICATE
  272. #define MSG_IDEX_MODE_DUPLICATE _UxGT("Duplication")
  273. #endif
  274. #ifndef MSG_IDEX_MODE_MIRRORED_COPY
  275. #define MSG_IDEX_MODE_MIRRORED_COPY _UxGT("Mirrored copy")
  276. #endif
  277. #ifndef MSG_IDEX_MODE_FULL_CTRL
  278. #define MSG_IDEX_MODE_FULL_CTRL _UxGT("Full control")
  279. #endif
  280. #ifndef MSG_X_OFFSET
  281. #define MSG_X_OFFSET _UxGT("2nd nozzle X")
  282. #endif
  283. #ifndef MSG_Y_OFFSET
  284. #define MSG_Y_OFFSET _UxGT("2nd nozzle Y")
  285. #endif
  286. #ifndef MSG_Z_OFFSET
  287. #define MSG_Z_OFFSET _UxGT("2nd nozzle Z")
  288. #endif
  289. #ifndef MSG_UBL_MANUAL_MESH
  290. #define MSG_UBL_MANUAL_MESH _UxGT("Manually Build Mesh")
  291. #endif
  292. #ifndef MSG_UBL_BC_INSERT
  293. #define MSG_UBL_BC_INSERT _UxGT("Place shim & measure")
  294. #endif
  295. #ifndef MSG_UBL_BC_INSERT2
  296. #define MSG_UBL_BC_INSERT2 _UxGT("Measure")
  297. #endif
  298. #ifndef MSG_UBL_BC_REMOVE
  299. #define MSG_UBL_BC_REMOVE _UxGT("Remove & measure bed")
  300. #endif
  301. #ifndef MSG_UBL_MOVING_TO_NEXT
  302. #define MSG_UBL_MOVING_TO_NEXT _UxGT("Moving to next")
  303. #endif
  304. #ifndef MSG_UBL_ACTIVATE_MESH
  305. #define MSG_UBL_ACTIVATE_MESH _UxGT("Activate UBL")
  306. #endif
  307. #ifndef MSG_UBL_DEACTIVATE_MESH
  308. #define MSG_UBL_DEACTIVATE_MESH _UxGT("Deactivate UBL")
  309. #endif
  310. #ifndef MSG_UBL_SET_TEMP_BED
  311. #define MSG_UBL_SET_TEMP_BED _UxGT("Bed Temp")
  312. #endif
  313. #ifndef MSG_UBL_BED_TEMP_CUSTOM
  314. #define MSG_UBL_BED_TEMP_CUSTOM MSG_UBL_SET_TEMP_BED
  315. #endif
  316. #ifndef MSG_UBL_SET_TEMP_HOTEND
  317. #define MSG_UBL_SET_TEMP_HOTEND _UxGT("Hotend Temp")
  318. #endif
  319. #ifndef MSG_UBL_HOTEND_TEMP_CUSTOM
  320. #define MSG_UBL_HOTEND_TEMP_CUSTOM MSG_UBL_SET_TEMP_HOTEND
  321. #endif
  322. #ifndef MSG_UBL_MESH_EDIT
  323. #define MSG_UBL_MESH_EDIT _UxGT("Mesh Edit")
  324. #endif
  325. #ifndef MSG_UBL_EDIT_CUSTOM_MESH
  326. #define MSG_UBL_EDIT_CUSTOM_MESH _UxGT("Edit Custom Mesh")
  327. #endif
  328. #ifndef MSG_UBL_FINE_TUNE_MESH
  329. #define MSG_UBL_FINE_TUNE_MESH _UxGT("Fine Tuning Mesh")
  330. #endif
  331. #ifndef MSG_UBL_DONE_EDITING_MESH
  332. #define MSG_UBL_DONE_EDITING_MESH _UxGT("Done Editing Mesh")
  333. #endif
  334. #ifndef MSG_UBL_BUILD_CUSTOM_MESH
  335. #define MSG_UBL_BUILD_CUSTOM_MESH _UxGT("Build Custom Mesh")
  336. #endif
  337. #ifndef MSG_UBL_BUILD_MESH_MENU
  338. #define MSG_UBL_BUILD_MESH_MENU _UxGT("Build Mesh")
  339. #endif
  340. #ifndef MSG_UBL_BUILD_MESH_M1
  341. #define MSG_UBL_BUILD_MESH_M1 _UxGT("Build Mesh (" PREHEAT_1_LABEL ")")
  342. #endif
  343. #ifndef MSG_UBL_BUILD_MESH_M2
  344. #define MSG_UBL_BUILD_MESH_M2 _UxGT("Build Mesh (" PREHEAT_2_LABEL ")")
  345. #endif
  346. #ifndef MSG_UBL_BUILD_COLD_MESH
  347. #define MSG_UBL_BUILD_COLD_MESH _UxGT("Build Cold Mesh")
  348. #endif
  349. #ifndef MSG_UBL_MESH_HEIGHT_ADJUST
  350. #define MSG_UBL_MESH_HEIGHT_ADJUST _UxGT("Adjust Mesh Height")
  351. #endif
  352. #ifndef MSG_UBL_MESH_HEIGHT_AMOUNT
  353. #define MSG_UBL_MESH_HEIGHT_AMOUNT _UxGT("Height Amount")
  354. #endif
  355. #ifndef MSG_UBL_VALIDATE_MESH_MENU
  356. #define MSG_UBL_VALIDATE_MESH_MENU _UxGT("Validate Mesh")
  357. #endif
  358. #ifndef MSG_UBL_VALIDATE_MESH_M1
  359. #define MSG_UBL_VALIDATE_MESH_M1 _UxGT("Validate Mesh (" PREHEAT_1_LABEL ")")
  360. #endif
  361. #ifndef MSG_UBL_VALIDATE_MESH_M2
  362. #define MSG_UBL_VALIDATE_MESH_M2 _UxGT("Validate Mesh (" PREHEAT_2_LABEL ")")
  363. #endif
  364. #ifndef MSG_UBL_VALIDATE_CUSTOM_MESH
  365. #define MSG_UBL_VALIDATE_CUSTOM_MESH _UxGT("Validate Custom Mesh")
  366. #endif
  367. #ifndef MSG_UBL_CONTINUE_MESH
  368. #define MSG_UBL_CONTINUE_MESH _UxGT("Continue Bed Mesh")
  369. #endif
  370. #ifndef MSG_UBL_MESH_LEVELING
  371. #define MSG_UBL_MESH_LEVELING _UxGT("Mesh Leveling")
  372. #endif
  373. #ifndef MSG_UBL_3POINT_MESH_LEVELING
  374. #define MSG_UBL_3POINT_MESH_LEVELING _UxGT("3-Point Leveling")
  375. #endif
  376. #ifndef MSG_UBL_GRID_MESH_LEVELING
  377. #define MSG_UBL_GRID_MESH_LEVELING _UxGT("Grid Mesh Leveling")
  378. #endif
  379. #ifndef MSG_UBL_MESH_LEVEL
  380. #define MSG_UBL_MESH_LEVEL _UxGT("Level Mesh")
  381. #endif
  382. #ifndef MSG_UBL_SIDE_POINTS
  383. #define MSG_UBL_SIDE_POINTS _UxGT("Side Points")
  384. #endif
  385. #ifndef MSG_UBL_MAP_TYPE
  386. #define MSG_UBL_MAP_TYPE _UxGT("Map Type")
  387. #endif
  388. #ifndef MSG_UBL_OUTPUT_MAP
  389. #define MSG_UBL_OUTPUT_MAP _UxGT("Output Mesh Map")
  390. #endif
  391. #ifndef MSG_UBL_OUTPUT_MAP_HOST
  392. #define MSG_UBL_OUTPUT_MAP_HOST _UxGT("Output for Host")
  393. #endif
  394. #ifndef MSG_UBL_OUTPUT_MAP_CSV
  395. #define MSG_UBL_OUTPUT_MAP_CSV _UxGT("Output for CSV")
  396. #endif
  397. #ifndef MSG_UBL_OUTPUT_MAP_BACKUP
  398. #define MSG_UBL_OUTPUT_MAP_BACKUP _UxGT("Off Printer Backup")
  399. #endif
  400. #ifndef MSG_UBL_INFO_UBL
  401. #define MSG_UBL_INFO_UBL _UxGT("Output UBL Info")
  402. #endif
  403. #ifndef MSG_EDIT_MESH
  404. #define MSG_EDIT_MESH _UxGT("Edit Mesh")
  405. #endif
  406. #ifndef MSG_UBL_FILLIN_AMOUNT
  407. #define MSG_UBL_FILLIN_AMOUNT _UxGT("Fill-in Amount")
  408. #endif
  409. #ifndef MSG_UBL_MANUAL_FILLIN
  410. #define MSG_UBL_MANUAL_FILLIN _UxGT("Manual Fill-in")
  411. #endif
  412. #ifndef MSG_UBL_SMART_FILLIN
  413. #define MSG_UBL_SMART_FILLIN _UxGT("Smart Fill-in")
  414. #endif
  415. #ifndef MSG_UBL_FILLIN_MESH
  416. #define MSG_UBL_FILLIN_MESH _UxGT("Fill-in Mesh")
  417. #endif
  418. #ifndef MSG_UBL_INVALIDATE_ALL
  419. #define MSG_UBL_INVALIDATE_ALL _UxGT("Invalidate All")
  420. #endif
  421. #ifndef MSG_UBL_INVALIDATE_CLOSEST
  422. #define MSG_UBL_INVALIDATE_CLOSEST _UxGT("Invalidate Closest")
  423. #endif
  424. #ifndef MSG_UBL_FINE_TUNE_ALL
  425. #define MSG_UBL_FINE_TUNE_ALL _UxGT("Fine Tune All")
  426. #endif
  427. #ifndef MSG_UBL_FINE_TUNE_CLOSEST
  428. #define MSG_UBL_FINE_TUNE_CLOSEST _UxGT("Fine Tune Closest")
  429. #endif
  430. #ifndef MSG_UBL_STORAGE_MESH_MENU
  431. #define MSG_UBL_STORAGE_MESH_MENU _UxGT("Mesh Storage")
  432. #endif
  433. #ifndef MSG_UBL_STORAGE_SLOT
  434. #define MSG_UBL_STORAGE_SLOT _UxGT("Memory Slot")
  435. #endif
  436. #ifndef MSG_UBL_LOAD_MESH
  437. #define MSG_UBL_LOAD_MESH _UxGT("Load Bed Mesh")
  438. #endif
  439. #ifndef MSG_UBL_SAVE_MESH
  440. #define MSG_UBL_SAVE_MESH _UxGT("Save Bed Mesh")
  441. #endif
  442. #ifndef MSG_MESH_LOADED
  443. #define MSG_MESH_LOADED _UxGT("Mesh %i loaded")
  444. #endif
  445. #ifndef MSG_MESH_SAVED
  446. #define MSG_MESH_SAVED _UxGT("Mesh %i saved")
  447. #endif
  448. #ifndef MSG_NO_STORAGE
  449. #define MSG_NO_STORAGE _UxGT("No storage")
  450. #endif
  451. #ifndef MSG_UBL_SAVE_ERROR
  452. #define MSG_UBL_SAVE_ERROR _UxGT("Err: UBL Save")
  453. #endif
  454. #ifndef MSG_UBL_RESTORE_ERROR
  455. #define MSG_UBL_RESTORE_ERROR _UxGT("Err: UBL Restore")
  456. #endif
  457. #ifndef MSG_UBL_Z_OFFSET_STOPPED
  458. #define MSG_UBL_Z_OFFSET_STOPPED _UxGT("Z-Offset Stopped")
  459. #endif
  460. #ifndef MSG_UBL_STEP_BY_STEP_MENU
  461. #define MSG_UBL_STEP_BY_STEP_MENU _UxGT("Step-By-Step UBL")
  462. #endif
  463. #ifndef MSG_LED_CONTROL
  464. #define MSG_LED_CONTROL _UxGT("LED Control")
  465. #endif
  466. #ifndef MSG_LEDS
  467. #define MSG_LEDS _UxGT("Lights")
  468. #endif
  469. #ifndef MSG_LED_PRESETS
  470. #define MSG_LED_PRESETS _UxGT("Light Presets")
  471. #endif
  472. #ifndef MSG_SET_LEDS_RED
  473. #define MSG_SET_LEDS_RED _UxGT("Red")
  474. #endif
  475. #ifndef MSG_SET_LEDS_ORANGE
  476. #define MSG_SET_LEDS_ORANGE _UxGT("Orange")
  477. #endif
  478. #ifndef MSG_SET_LEDS_YELLOW
  479. #define MSG_SET_LEDS_YELLOW _UxGT("Yellow")
  480. #endif
  481. #ifndef MSG_SET_LEDS_GREEN
  482. #define MSG_SET_LEDS_GREEN _UxGT("Green")
  483. #endif
  484. #ifndef MSG_SET_LEDS_BLUE
  485. #define MSG_SET_LEDS_BLUE _UxGT("Blue")
  486. #endif
  487. #ifndef MSG_SET_LEDS_INDIGO
  488. #define MSG_SET_LEDS_INDIGO _UxGT("Indigo")
  489. #endif
  490. #ifndef MSG_SET_LEDS_VIOLET
  491. #define MSG_SET_LEDS_VIOLET _UxGT("Violet")
  492. #endif
  493. #ifndef MSG_SET_LEDS_WHITE
  494. #define MSG_SET_LEDS_WHITE _UxGT("White")
  495. #endif
  496. #ifndef MSG_SET_LEDS_DEFAULT
  497. #define MSG_SET_LEDS_DEFAULT _UxGT("Default")
  498. #endif
  499. #ifndef MSG_CUSTOM_LEDS
  500. #define MSG_CUSTOM_LEDS _UxGT("Custom Lights")
  501. #endif
  502. #ifndef MSG_INTENSITY_R
  503. #define MSG_INTENSITY_R _UxGT("Red Intensity")
  504. #endif
  505. #ifndef MSG_INTENSITY_G
  506. #define MSG_INTENSITY_G _UxGT("Green Intensity")
  507. #endif
  508. #ifndef MSG_INTENSITY_B
  509. #define MSG_INTENSITY_B _UxGT("Blue Intensity")
  510. #endif
  511. #ifndef MSG_INTENSITY_W
  512. #define MSG_INTENSITY_W _UxGT("White Intensity")
  513. #endif
  514. #ifndef MSG_LED_BRIGHTNESS
  515. #define MSG_LED_BRIGHTNESS _UxGT("Brightness")
  516. #endif
  517. #ifndef MSG_MOVING
  518. #define MSG_MOVING _UxGT("Moving...")
  519. #endif
  520. #ifndef MSG_FREE_XY
  521. #define MSG_FREE_XY _UxGT("Free XY")
  522. #endif
  523. #ifndef MSG_MOVE_X
  524. #define MSG_MOVE_X _UxGT("Move X")
  525. #endif
  526. #ifndef MSG_MOVE_Y
  527. #define MSG_MOVE_Y _UxGT("Move Y")
  528. #endif
  529. #ifndef MSG_MOVE_Z
  530. #define MSG_MOVE_Z _UxGT("Move Z")
  531. #endif
  532. #ifndef MSG_MOVE_E
  533. #define MSG_MOVE_E _UxGT("Extruder")
  534. #endif
  535. #ifndef MSG_HOTEND_TOO_COLD
  536. #define MSG_HOTEND_TOO_COLD _UxGT("Hotend too cold")
  537. #endif
  538. #ifndef MSG_MOVE_01MM
  539. #define MSG_MOVE_01MM _UxGT("Move 0.1mm")
  540. #endif
  541. #ifndef MSG_MOVE_1MM
  542. #define MSG_MOVE_1MM _UxGT("Move 1mm")
  543. #endif
  544. #ifndef MSG_MOVE_10MM
  545. #define MSG_MOVE_10MM _UxGT("Move 10mm")
  546. #endif
  547. #ifndef MSG_SPEED
  548. #define MSG_SPEED _UxGT("Speed")
  549. #endif
  550. #ifndef MSG_BED_Z
  551. #define MSG_BED_Z _UxGT("Bed Z")
  552. #endif
  553. #ifndef MSG_NOZZLE
  554. #define MSG_NOZZLE _UxGT("Nozzle")
  555. #endif
  556. #ifndef MSG_BED
  557. #define MSG_BED _UxGT("Bed")
  558. #endif
  559. #ifndef MSG_CHAMBER
  560. #define MSG_CHAMBER _UxGT("Enclosure")
  561. #endif
  562. #ifndef MSG_FAN_SPEED
  563. #define MSG_FAN_SPEED _UxGT("Fan speed")
  564. #endif
  565. #ifndef MSG_EXTRA_FAN_SPEED
  566. #define MSG_EXTRA_FAN_SPEED _UxGT("Extra fan speed")
  567. #endif
  568. #ifndef MSG_FLOW
  569. #define MSG_FLOW _UxGT("Flow")
  570. #endif
  571. #ifndef MSG_CONTROL
  572. #define MSG_CONTROL _UxGT("Control")
  573. #endif
  574. #ifndef MSG_MIN
  575. #define MSG_MIN _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Min")
  576. #endif
  577. #ifndef MSG_MAX
  578. #define MSG_MAX _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Max")
  579. #endif
  580. #ifndef MSG_FACTOR
  581. #define MSG_FACTOR _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Fact")
  582. #endif
  583. #ifndef MSG_AUTOTEMP
  584. #define MSG_AUTOTEMP _UxGT("Autotemp")
  585. #endif
  586. #ifndef MSG_LCD_ON
  587. #define MSG_LCD_ON _UxGT("On")
  588. #endif
  589. #ifndef MSG_LCD_OFF
  590. #define MSG_LCD_OFF _UxGT("Off")
  591. #endif
  592. #ifndef MSG_PID_P
  593. #define MSG_PID_P _UxGT("PID-P")
  594. #endif
  595. #ifndef MSG_PID_I
  596. #define MSG_PID_I _UxGT("PID-I")
  597. #endif
  598. #ifndef MSG_PID_D
  599. #define MSG_PID_D _UxGT("PID-D")
  600. #endif
  601. #ifndef MSG_PID_C
  602. #define MSG_PID_C _UxGT("PID-C")
  603. #endif
  604. #ifndef MSG_SELECT
  605. #define MSG_SELECT _UxGT("Select")
  606. #endif
  607. #ifndef MSG_ACC
  608. #define MSG_ACC _UxGT("Accel")
  609. #endif
  610. #ifndef MSG_JERK
  611. #define MSG_JERK _UxGT("Jerk")
  612. #endif
  613. #if IS_KINEMATIC
  614. #ifndef MSG_VA_JERK
  615. #define MSG_VA_JERK _UxGT("Va-jerk")
  616. #endif
  617. #ifndef MSG_VB_JERK
  618. #define MSG_VB_JERK _UxGT("Vb-jerk")
  619. #endif
  620. #ifndef MSG_VC_JERK
  621. #define MSG_VC_JERK _UxGT("Vc-jerk")
  622. #endif
  623. #else
  624. #ifndef MSG_VA_JERK
  625. #define MSG_VA_JERK _UxGT("Vx-jerk")
  626. #endif
  627. #ifndef MSG_VB_JERK
  628. #define MSG_VB_JERK _UxGT("Vy-jerk")
  629. #endif
  630. #ifndef MSG_VC_JERK
  631. #define MSG_VC_JERK _UxGT("Vz-jerk")
  632. #endif
  633. #endif
  634. #ifndef MSG_VE_JERK
  635. #define MSG_VE_JERK _UxGT("Ve-jerk")
  636. #endif
  637. #ifndef MSG_JUNCTION_DEVIATION
  638. #define MSG_JUNCTION_DEVIATION _UxGT("Junction Dev")
  639. #endif
  640. #ifndef MSG_VELOCITY
  641. #define MSG_VELOCITY _UxGT("Velocity")
  642. #endif
  643. #ifndef MSG_VMAX
  644. #define MSG_VMAX _UxGT("Vmax ")
  645. #endif
  646. #ifndef MSG_VMIN
  647. #define MSG_VMIN _UxGT("Vmin")
  648. #endif
  649. #ifndef MSG_VTRAV_MIN
  650. #define MSG_VTRAV_MIN _UxGT("VTrav min")
  651. #endif
  652. #ifndef MSG_ACCELERATION
  653. #define MSG_ACCELERATION _UxGT("Acceleration")
  654. #endif
  655. #ifndef MSG_AMAX
  656. #define MSG_AMAX _UxGT("Amax ")
  657. #endif
  658. #ifndef MSG_A_RETRACT
  659. #define MSG_A_RETRACT _UxGT("A-retract")
  660. #endif
  661. #ifndef MSG_A_TRAVEL
  662. #define MSG_A_TRAVEL _UxGT("A-travel")
  663. #endif
  664. #ifndef MSG_STEPS_PER_MM
  665. #define MSG_STEPS_PER_MM _UxGT("Steps/mm")
  666. #endif
  667. #if IS_KINEMATIC
  668. #ifndef MSG_ASTEPS
  669. #define MSG_ASTEPS _UxGT("Asteps/mm")
  670. #endif
  671. #ifndef MSG_BSTEPS
  672. #define MSG_BSTEPS _UxGT("Bsteps/mm")
  673. #endif
  674. #ifndef MSG_CSTEPS
  675. #define MSG_CSTEPS _UxGT("Csteps/mm")
  676. #endif
  677. #else
  678. #ifndef MSG_ASTEPS
  679. #define MSG_ASTEPS _UxGT("Xsteps/mm")
  680. #endif
  681. #ifndef MSG_BSTEPS
  682. #define MSG_BSTEPS _UxGT("Ysteps/mm")
  683. #endif
  684. #ifndef MSG_CSTEPS
  685. #define MSG_CSTEPS _UxGT("Zsteps/mm")
  686. #endif
  687. #endif
  688. #ifndef MSG_ESTEPS
  689. #define MSG_ESTEPS _UxGT("Esteps/mm")
  690. #endif
  691. #ifndef MSG_E1STEPS
  692. #define MSG_E1STEPS _UxGT("E1steps/mm")
  693. #endif
  694. #ifndef MSG_E2STEPS
  695. #define MSG_E2STEPS _UxGT("E2steps/mm")
  696. #endif
  697. #ifndef MSG_E3STEPS
  698. #define MSG_E3STEPS _UxGT("E3steps/mm")
  699. #endif
  700. #ifndef MSG_E4STEPS
  701. #define MSG_E4STEPS _UxGT("E4steps/mm")
  702. #endif
  703. #ifndef MSG_E5STEPS
  704. #define MSG_E5STEPS _UxGT("E5steps/mm")
  705. #endif
  706. #ifndef MSG_E6STEPS
  707. #define MSG_E6STEPS _UxGT("E6steps/mm")
  708. #endif
  709. #ifndef MSG_TEMPERATURE
  710. #define MSG_TEMPERATURE _UxGT("Temperature")
  711. #endif
  712. #ifndef MSG_MOTION
  713. #define MSG_MOTION _UxGT("Motion")
  714. #endif
  715. #ifndef MSG_FILAMENT
  716. #define MSG_FILAMENT _UxGT("Filament")
  717. #endif
  718. #ifndef MSG_VOLUMETRIC_ENABLED
  719. #define MSG_VOLUMETRIC_ENABLED _UxGT("E in mm") MSG_CUBED
  720. #endif
  721. #ifndef MSG_FILAMENT_DIAM
  722. #define MSG_FILAMENT_DIAM _UxGT("Fil. Dia.")
  723. #endif
  724. #ifndef MSG_FILAMENT_UNLOAD
  725. #define MSG_FILAMENT_UNLOAD _UxGT("Unload mm")
  726. #endif
  727. #ifndef MSG_FILAMENT_LOAD
  728. #define MSG_FILAMENT_LOAD _UxGT("Load mm")
  729. #endif
  730. #ifndef MSG_ADVANCE_K
  731. #define MSG_ADVANCE_K _UxGT("Advance K")
  732. #endif
  733. #ifndef MSG_CONTRAST
  734. #define MSG_CONTRAST _UxGT("LCD contrast")
  735. #endif
  736. #ifndef MSG_STORE_EEPROM
  737. #define MSG_STORE_EEPROM _UxGT("Store settings")
  738. #endif
  739. #ifndef MSG_LOAD_EEPROM
  740. #define MSG_LOAD_EEPROM _UxGT("Load settings")
  741. #endif
  742. #ifndef MSG_RESTORE_FAILSAFE
  743. #define MSG_RESTORE_FAILSAFE _UxGT("Restore failsafe")
  744. #endif
  745. #ifndef MSG_INIT_EEPROM
  746. #define MSG_INIT_EEPROM _UxGT("Initialize EEPROM")
  747. #endif
  748. #ifndef MSG_SD_UPDATE
  749. #define MSG_SD_UPDATE _UxGT("SD Update")
  750. #endif
  751. #ifndef MSG_RESET_PRINTER
  752. #define MSG_RESET_PRINTER _UxGT("Reset Printer")
  753. #endif
  754. #ifndef MSG_REFRESH
  755. #define MSG_REFRESH _UxGT("Refresh")
  756. #endif
  757. #ifndef MSG_WATCH
  758. #define MSG_WATCH _UxGT("Info screen")
  759. #endif
  760. #ifndef MSG_PREPARE
  761. #define MSG_PREPARE _UxGT("Prepare")
  762. #endif
  763. #ifndef MSG_TUNE
  764. #define MSG_TUNE _UxGT("Tune")
  765. #endif
  766. #ifndef MSG_START_PRINT
  767. #define MSG_START_PRINT _UxGT("Start print")
  768. #endif
  769. #ifndef MSG_BUTTON_NEXT
  770. #define MSG_BUTTON_NEXT _UxGT("Next")
  771. #endif
  772. #ifndef MSG_BUTTON_INIT
  773. #define MSG_BUTTON_INIT _UxGT("Init")
  774. #endif
  775. #ifndef MSG_BUTTON_STOP
  776. #define MSG_BUTTON_STOP _UxGT("Stop")
  777. #endif
  778. #ifndef MSG_BUTTON_PRINT
  779. #define MSG_BUTTON_PRINT _UxGT("Print")
  780. #endif
  781. #ifndef MSG_BUTTON_RESET
  782. #define MSG_BUTTON_RESET _UxGT("Reset")
  783. #endif
  784. #ifndef MSG_BUTTON_CANCEL
  785. #define MSG_BUTTON_CANCEL _UxGT("Cancel")
  786. #endif
  787. #ifndef MSG_BUTTON_DONE
  788. #define MSG_BUTTON_DONE _UxGT("Done")
  789. #endif
  790. #ifndef MSG_PAUSE_PRINT
  791. #define MSG_PAUSE_PRINT _UxGT("Pause print")
  792. #endif
  793. #ifndef MSG_RESUME_PRINT
  794. #define MSG_RESUME_PRINT _UxGT("Resume print")
  795. #endif
  796. #ifndef MSG_STOP_PRINT
  797. #define MSG_STOP_PRINT _UxGT("Stop print")
  798. #endif
  799. #ifndef MSG_OUTAGE_RECOVERY
  800. #define MSG_OUTAGE_RECOVERY _UxGT("Outage Recovery")
  801. #endif
  802. #ifndef MSG_CARD_MENU
  803. #define MSG_CARD_MENU _UxGT("Print from SD")
  804. #endif
  805. #ifndef MSG_NO_CARD
  806. #define MSG_NO_CARD _UxGT("No SD card")
  807. #endif
  808. #ifndef MSG_DWELL
  809. #define MSG_DWELL _UxGT("Sleep...")
  810. #endif
  811. #ifndef MSG_USERWAIT
  812. #define MSG_USERWAIT _UxGT("Click to resume...")
  813. #endif
  814. #ifndef MSG_PRINT_PAUSED
  815. #define MSG_PRINT_PAUSED _UxGT("Print paused")
  816. #endif
  817. #ifndef MSG_PRINTING
  818. #define MSG_PRINTING _UxGT("Printing...")
  819. #endif
  820. #ifndef MSG_PRINT_ABORTED
  821. #define MSG_PRINT_ABORTED _UxGT("Print aborted")
  822. #endif
  823. #ifndef MSG_NO_MOVE
  824. #define MSG_NO_MOVE _UxGT("No move.")
  825. #endif
  826. #ifndef MSG_KILLED
  827. #define MSG_KILLED _UxGT("KILLED. ")
  828. #endif
  829. #ifndef MSG_STOPPED
  830. #define MSG_STOPPED _UxGT("STOPPED. ")
  831. #endif
  832. #ifndef MSG_CONTROL_RETRACT
  833. #define MSG_CONTROL_RETRACT _UxGT("Retract mm")
  834. #endif
  835. #ifndef MSG_CONTROL_RETRACT_SWAP
  836. #define MSG_CONTROL_RETRACT_SWAP _UxGT("Swap Re.mm")
  837. #endif
  838. #ifndef MSG_CONTROL_RETRACTF
  839. #define MSG_CONTROL_RETRACTF _UxGT("Retract V")
  840. #endif
  841. #ifndef MSG_CONTROL_RETRACT_ZHOP
  842. #define MSG_CONTROL_RETRACT_ZHOP _UxGT("Hop mm")
  843. #endif
  844. #ifndef MSG_CONTROL_RETRACT_RECOVER
  845. #define MSG_CONTROL_RETRACT_RECOVER _UxGT("UnRet mm")
  846. #endif
  847. #ifndef MSG_CONTROL_RETRACT_RECOVER_SWAP
  848. #define MSG_CONTROL_RETRACT_RECOVER_SWAP _UxGT("S UnRet mm")
  849. #endif
  850. #ifndef MSG_CONTROL_RETRACT_RECOVERF
  851. #define MSG_CONTROL_RETRACT_RECOVERF _UxGT("UnRet V")
  852. #endif
  853. #ifndef MSG_CONTROL_RETRACT_RECOVER_SWAPF
  854. #define MSG_CONTROL_RETRACT_RECOVER_SWAPF _UxGT("S UnRet V")
  855. #endif
  856. #ifndef MSG_AUTORETRACT
  857. #define MSG_AUTORETRACT _UxGT("AutoRetr.")
  858. #endif
  859. #ifndef MSG_FILAMENT_SWAP_LENGTH
  860. #define MSG_FILAMENT_SWAP_LENGTH _UxGT("Retract Distance")
  861. #endif
  862. #ifndef MSG_TOOL_CHANGE
  863. #define MSG_TOOL_CHANGE _UxGT("Tool Change")
  864. #endif
  865. #ifndef MSG_TOOL_CHANGE_ZLIFT
  866. #define MSG_TOOL_CHANGE_ZLIFT _UxGT("Z Raise")
  867. #endif
  868. #ifndef MSG_SINGLENOZZLE_PRIME_SPD
  869. #define MSG_SINGLENOZZLE_PRIME_SPD _UxGT("Prime Speed")
  870. #endif
  871. #ifndef MSG_SINGLENOZZLE_RETRACT_SPD
  872. #define MSG_SINGLENOZZLE_RETRACT_SPD _UxGT("Retract Speed")
  873. #endif
  874. #ifndef MSG_NOZZLE_STANDBY
  875. #define MSG_NOZZLE_STANDBY _UxGT("Nozzle Standby")
  876. #endif
  877. #ifndef MSG_FILAMENTCHANGE
  878. #define MSG_FILAMENTCHANGE _UxGT("Change filament")
  879. #endif
  880. #ifndef MSG_FILAMENTLOAD
  881. #define MSG_FILAMENTLOAD _UxGT("Load filament")
  882. #endif
  883. #ifndef MSG_FILAMENTUNLOAD
  884. #define MSG_FILAMENTUNLOAD _UxGT("Unload filament")
  885. #endif
  886. #ifndef MSG_FILAMENTUNLOAD_ALL
  887. #define MSG_FILAMENTUNLOAD_ALL _UxGT("Unload All")
  888. #endif
  889. #ifndef MSG_INIT_SDCARD
  890. #define MSG_INIT_SDCARD _UxGT("Init. SD card")
  891. #endif
  892. #ifndef MSG_CHANGE_SDCARD
  893. #define MSG_CHANGE_SDCARD _UxGT("Change SD card")
  894. #endif
  895. #ifndef MSG_RELEASE_SDCARD
  896. #define MSG_RELEASE_SDCARD _UxGT("Release SD card")
  897. #endif
  898. #ifndef MSG_ZPROBE_OUT
  899. #define MSG_ZPROBE_OUT _UxGT("Z Probe past bed")
  900. #endif
  901. #ifndef MSG_SKEW_FACTOR
  902. #define MSG_SKEW_FACTOR _UxGT("Skew Factor")
  903. #endif
  904. #ifndef MSG_BLTOUCH
  905. #define MSG_BLTOUCH _UxGT("BLTouch")
  906. #endif
  907. #ifndef MSG_BLTOUCH_SELFTEST
  908. #define MSG_BLTOUCH_SELFTEST _UxGT("Cmd: Self-Test")
  909. #endif
  910. #ifndef MSG_BLTOUCH_RESET
  911. #define MSG_BLTOUCH_RESET _UxGT("Cmd: Reset")
  912. #endif
  913. #ifndef MSG_BLTOUCH_STOW
  914. #define MSG_BLTOUCH_STOW _UxGT("Cmd: Stow")
  915. #endif
  916. #ifndef MSG_BLTOUCH_DEPLOY
  917. #define MSG_BLTOUCH_DEPLOY _UxGT("Cmd: Deploy")
  918. #endif
  919. #ifndef MSG_BLTOUCH_SW_MODE
  920. #define MSG_BLTOUCH_SW_MODE _UxGT("Cmd: SW-Mode")
  921. #endif
  922. #ifndef MSG_BLTOUCH_5V_MODE
  923. #define MSG_BLTOUCH_5V_MODE _UxGT("Cmd: 5V-Mode")
  924. #endif
  925. #ifndef MSG_BLTOUCH_OD_MODE
  926. #define MSG_BLTOUCH_OD_MODE _UxGT("Cmd: OD-Mode")
  927. #endif
  928. #ifndef MSG_BLTOUCH_MODE_STORE
  929. #define MSG_BLTOUCH_MODE_STORE _UxGT("Cmd: Mode-Store")
  930. #endif
  931. #ifndef MSG_BLTOUCH_MODE_STORE_5V
  932. #define MSG_BLTOUCH_MODE_STORE_5V _UxGT("Set BLTouch to 5V")
  933. #endif
  934. #ifndef MSG_BLTOUCH_MODE_STORE_OD
  935. #define MSG_BLTOUCH_MODE_STORE_OD _UxGT("Set BLTouch to OD")
  936. #endif
  937. #ifndef MSG_BLTOUCH_MODE_ECHO
  938. #define MSG_BLTOUCH_MODE_ECHO _UxGT("Report Drain")
  939. #endif
  940. #ifndef MSG_BLTOUCH_MODE_CHANGE
  941. #define MSG_BLTOUCH_MODE_CHANGE _UxGT("DANGER: Bad settings can cause damage! Proceed anyway?")
  942. #endif
  943. #ifndef MSG_MANUAL_DEPLOY
  944. #define MSG_MANUAL_DEPLOY _UxGT("Deploy Z-Probe")
  945. #endif
  946. #ifndef MSG_MANUAL_STOW
  947. #define MSG_MANUAL_STOW _UxGT("Stow Z-Probe")
  948. #endif
  949. #ifndef MSG_HOME
  950. #define MSG_HOME _UxGT("Home") // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
  951. #endif
  952. #ifndef MSG_FIRST
  953. #define MSG_FIRST _UxGT("first")
  954. #endif
  955. #ifndef MSG_ZPROBE_ZOFFSET
  956. #define MSG_ZPROBE_ZOFFSET _UxGT("Probe Z Offset")
  957. #endif
  958. #ifndef MSG_BABYSTEP_X
  959. #define MSG_BABYSTEP_X _UxGT("Babystep X")
  960. #endif
  961. #ifndef MSG_BABYSTEP_Y
  962. #define MSG_BABYSTEP_Y _UxGT("Babystep Y")
  963. #endif
  964. #ifndef MSG_BABYSTEP_Z
  965. #define MSG_BABYSTEP_Z _UxGT("Babystep Z")
  966. #endif
  967. #ifndef MSG_BABYSTEP_TOTAL
  968. #define MSG_BABYSTEP_TOTAL _UxGT("Total")
  969. #endif
  970. #ifndef MSG_ENDSTOP_ABORT
  971. #define MSG_ENDSTOP_ABORT _UxGT("Endstop abort")
  972. #endif
  973. #ifndef MSG_HEATING_FAILED_LCD
  974. #define MSG_HEATING_FAILED_LCD _UxGT("Heating failed")
  975. #endif
  976. #ifndef MSG_HEATING_FAILED_LCD_BED
  977. #define MSG_HEATING_FAILED_LCD_BED _UxGT("Bed heating failed")
  978. #endif
  979. #ifndef MSG_HEATING_FAILED_LCD_CHAMBER
  980. #define MSG_HEATING_FAILED_LCD_CHAMBER _UxGT("Chamber heating fail")
  981. #endif
  982. #ifndef MSG_ERR_REDUNDANT_TEMP
  983. #define MSG_ERR_REDUNDANT_TEMP _UxGT("Err: REDUNDANT TEMP")
  984. #endif
  985. #ifndef MSG_THERMAL_RUNAWAY
  986. #define MSG_THERMAL_RUNAWAY _UxGT("THERMAL RUNAWAY")
  987. #endif
  988. #ifndef MSG_THERMAL_RUNAWAY_BED
  989. #define MSG_THERMAL_RUNAWAY_BED _UxGT("BED THERMAL RUNAWAY")
  990. #endif
  991. #ifndef MSG_THERMAL_RUNAWAY_CHAMBER
  992. #define MSG_THERMAL_RUNAWAY_CHAMBER _UxGT("CHAMBER T. RUNAWAY")
  993. #endif
  994. #ifndef MSG_ERR_MAXTEMP
  995. #define MSG_ERR_MAXTEMP _UxGT("Err: MAXTEMP")
  996. #endif
  997. #ifndef MSG_ERR_MINTEMP
  998. #define MSG_ERR_MINTEMP _UxGT("Err: MINTEMP")
  999. #endif
  1000. #ifndef MSG_ERR_MAXTEMP_BED
  1001. #define MSG_ERR_MAXTEMP_BED _UxGT("Err: MAXTEMP BED")
  1002. #endif
  1003. #ifndef MSG_ERR_MINTEMP_BED
  1004. #define MSG_ERR_MINTEMP_BED _UxGT("Err: MINTEMP BED")
  1005. #endif
  1006. #ifndef MSG_ERR_MAXTEMP_CHAMBER
  1007. #define MSG_ERR_MAXTEMP_CHAMBER _UxGT("Err: MAXTEMP CHAMBER")
  1008. #endif
  1009. #ifndef MSG_ERR_MINTEMP_CHAMBER
  1010. #define MSG_ERR_MINTEMP_CHAMBER _UxGT("Err: MINTEMP CHAMBER")
  1011. #endif
  1012. #ifndef MSG_ERR_Z_HOMING
  1013. #define MSG_ERR_Z_HOMING MSG_HOME _UxGT(" ") MSG_X MSG_Y _UxGT(" ") MSG_FIRST
  1014. #endif
  1015. #ifndef MSG_HALTED
  1016. #define MSG_HALTED _UxGT("PRINTER HALTED")
  1017. #endif
  1018. #ifndef MSG_PLEASE_RESET
  1019. #define MSG_PLEASE_RESET _UxGT("Please reset")
  1020. #endif
  1021. #ifndef MSG_SHORT_DAY
  1022. #define MSG_SHORT_DAY _UxGT("d") // One character only
  1023. #endif
  1024. #ifndef MSG_SHORT_HOUR
  1025. #define MSG_SHORT_HOUR _UxGT("h") // One character only
  1026. #endif
  1027. #ifndef MSG_SHORT_MINUTE
  1028. #define MSG_SHORT_MINUTE _UxGT("m") // One character only
  1029. #endif
  1030. #ifndef MSG_HEATING
  1031. #define MSG_HEATING _UxGT("Heating...")
  1032. #endif
  1033. #ifndef MSG_COOLING
  1034. #define MSG_COOLING _UxGT("Cooling...")
  1035. #endif
  1036. #ifndef MSG_BED_HEATING
  1037. #define MSG_BED_HEATING _UxGT("Bed heating...")
  1038. #endif
  1039. #ifndef MSG_BED_COOLING
  1040. #define MSG_BED_COOLING _UxGT("Bed cooling...")
  1041. #endif
  1042. #ifndef MSG_CHAMBER_HEATING
  1043. #define MSG_CHAMBER_HEATING _UxGT("Chamber heating...")
  1044. #endif
  1045. #ifndef MSG_CHAMBER_COOLING
  1046. #define MSG_CHAMBER_COOLING _UxGT("Chamber cooling...")
  1047. #endif
  1048. #ifndef MSG_DELTA_CALIBRATE
  1049. #define MSG_DELTA_CALIBRATE _UxGT("Delta Calibration")
  1050. #endif
  1051. #ifndef MSG_DELTA_CALIBRATE_X
  1052. #define MSG_DELTA_CALIBRATE_X _UxGT("Calibrate X")
  1053. #endif
  1054. #ifndef MSG_DELTA_CALIBRATE_Y
  1055. #define MSG_DELTA_CALIBRATE_Y _UxGT("Calibrate Y")
  1056. #endif
  1057. #ifndef MSG_DELTA_CALIBRATE_Z
  1058. #define MSG_DELTA_CALIBRATE_Z _UxGT("Calibrate Z")
  1059. #endif
  1060. #ifndef MSG_DELTA_CALIBRATE_CENTER
  1061. #define MSG_DELTA_CALIBRATE_CENTER _UxGT("Calibrate Center")
  1062. #endif
  1063. #ifndef MSG_DELTA_SETTINGS
  1064. #define MSG_DELTA_SETTINGS _UxGT("Delta Settings")
  1065. #endif
  1066. #ifndef MSG_DELTA_AUTO_CALIBRATE
  1067. #define MSG_DELTA_AUTO_CALIBRATE _UxGT("Auto Calibration")
  1068. #endif
  1069. #ifndef MSG_DELTA_HEIGHT_CALIBRATE
  1070. #define MSG_DELTA_HEIGHT_CALIBRATE _UxGT("Set Delta Height")
  1071. #endif
  1072. #ifndef MSG_DELTA_Z_OFFSET_CALIBRATE
  1073. #define MSG_DELTA_Z_OFFSET_CALIBRATE _UxGT("Probe Z-offset")
  1074. #endif
  1075. #ifndef MSG_DELTA_DIAG_ROD
  1076. #define MSG_DELTA_DIAG_ROD _UxGT("Diag Rod")
  1077. #endif
  1078. #ifndef MSG_DELTA_HEIGHT
  1079. #define MSG_DELTA_HEIGHT _UxGT("Height")
  1080. #endif
  1081. #ifndef MSG_DELTA_RADIUS
  1082. #define MSG_DELTA_RADIUS _UxGT("Radius")
  1083. #endif
  1084. #ifndef MSG_INFO_MENU
  1085. #define MSG_INFO_MENU _UxGT("About Printer")
  1086. #endif
  1087. #ifndef MSG_INFO_PRINTER_MENU
  1088. #define MSG_INFO_PRINTER_MENU _UxGT("Printer Info")
  1089. #endif
  1090. #ifndef MSG_3POINT_LEVELING
  1091. #define MSG_3POINT_LEVELING _UxGT("3-Point Leveling")
  1092. #endif
  1093. #ifndef MSG_LINEAR_LEVELING
  1094. #define MSG_LINEAR_LEVELING _UxGT("Linear Leveling")
  1095. #endif
  1096. #ifndef MSG_BILINEAR_LEVELING
  1097. #define MSG_BILINEAR_LEVELING _UxGT("Bilinear Leveling")
  1098. #endif
  1099. #ifndef MSG_UBL_LEVELING
  1100. #define MSG_UBL_LEVELING _UxGT("Unified Bed Leveling")
  1101. #endif
  1102. #ifndef MSG_MESH_LEVELING
  1103. #define MSG_MESH_LEVELING _UxGT("Mesh Leveling")
  1104. #endif
  1105. #ifndef MSG_INFO_STATS_MENU
  1106. #define MSG_INFO_STATS_MENU _UxGT("Printer Stats")
  1107. #endif
  1108. #ifndef MSG_INFO_BOARD_MENU
  1109. #define MSG_INFO_BOARD_MENU _UxGT("Board Info")
  1110. #endif
  1111. #ifndef MSG_INFO_THERMISTOR_MENU
  1112. #define MSG_INFO_THERMISTOR_MENU _UxGT("Thermistors")
  1113. #endif
  1114. #ifndef MSG_INFO_EXTRUDERS
  1115. #define MSG_INFO_EXTRUDERS _UxGT("Extruders")
  1116. #endif
  1117. #ifndef MSG_INFO_BAUDRATE
  1118. #define MSG_INFO_BAUDRATE _UxGT("Baud")
  1119. #endif
  1120. #ifndef MSG_INFO_PROTOCOL
  1121. #define MSG_INFO_PROTOCOL _UxGT("Protocol")
  1122. #endif
  1123. #ifndef MSG_CASE_LIGHT
  1124. #define MSG_CASE_LIGHT _UxGT("Case light")
  1125. #endif
  1126. #ifndef MSG_CASE_LIGHT_BRIGHTNESS
  1127. #define MSG_CASE_LIGHT_BRIGHTNESS _UxGT("Light Brightness")
  1128. #endif
  1129. #if LCD_WIDTH >= 20
  1130. #ifndef MSG_INFO_PRINT_COUNT
  1131. #define MSG_INFO_PRINT_COUNT _UxGT("Print Count")
  1132. #endif
  1133. #ifndef MSG_INFO_COMPLETED_PRINTS
  1134. #define MSG_INFO_COMPLETED_PRINTS _UxGT("Completed")
  1135. #endif
  1136. #ifndef MSG_INFO_PRINT_TIME
  1137. #define MSG_INFO_PRINT_TIME _UxGT("Total print time")
  1138. #endif
  1139. #ifndef MSG_INFO_PRINT_LONGEST
  1140. #define MSG_INFO_PRINT_LONGEST _UxGT("Longest job time")
  1141. #endif
  1142. #ifndef MSG_INFO_PRINT_FILAMENT
  1143. #define MSG_INFO_PRINT_FILAMENT _UxGT("Extruded total")
  1144. #endif
  1145. #else
  1146. #ifndef MSG_INFO_PRINT_COUNT
  1147. #define MSG_INFO_PRINT_COUNT _UxGT("Prints")
  1148. #endif
  1149. #ifndef MSG_INFO_COMPLETED_PRINTS
  1150. #define MSG_INFO_COMPLETED_PRINTS _UxGT("Completed")
  1151. #endif
  1152. #ifndef MSG_INFO_PRINT_TIME
  1153. #define MSG_INFO_PRINT_TIME _UxGT("Total")
  1154. #endif
  1155. #ifndef MSG_INFO_PRINT_LONGEST
  1156. #define MSG_INFO_PRINT_LONGEST _UxGT("Longest")
  1157. #endif
  1158. #ifndef MSG_INFO_PRINT_FILAMENT
  1159. #define MSG_INFO_PRINT_FILAMENT _UxGT("Extruded")
  1160. #endif
  1161. #endif
  1162. #ifndef MSG_INFO_MIN_TEMP
  1163. #define MSG_INFO_MIN_TEMP _UxGT("Min Temp")
  1164. #endif
  1165. #ifndef MSG_INFO_MAX_TEMP
  1166. #define MSG_INFO_MAX_TEMP _UxGT("Max Temp")
  1167. #endif
  1168. #ifndef MSG_INFO_PSU
  1169. #define MSG_INFO_PSU _UxGT("PSU")
  1170. #endif
  1171. #ifndef MSG_DRIVE_STRENGTH
  1172. #define MSG_DRIVE_STRENGTH _UxGT("Drive Strength")
  1173. #endif
  1174. #ifndef MSG_DAC_PERCENT
  1175. #define MSG_DAC_PERCENT _UxGT("Driver %")
  1176. #endif
  1177. #ifndef MSG_DAC_EEPROM_WRITE
  1178. #define MSG_DAC_EEPROM_WRITE _UxGT("DAC EEPROM Write")
  1179. #endif
  1180. #ifndef MSG_FILAMENT_CHANGE_HEADER_PAUSE
  1181. #define MSG_FILAMENT_CHANGE_HEADER_PAUSE _UxGT("PRINT PAUSED")
  1182. #endif
  1183. #ifndef MSG_FILAMENT_CHANGE_HEADER_LOAD
  1184. #define MSG_FILAMENT_CHANGE_HEADER_LOAD _UxGT("LOAD FILAMENT")
  1185. #endif
  1186. #ifndef MSG_FILAMENT_CHANGE_HEADER_UNLOAD
  1187. #define MSG_FILAMENT_CHANGE_HEADER_UNLOAD _UxGT("UNLOAD FILAMENT")
  1188. #endif
  1189. #ifndef MSG_FILAMENT_CHANGE_OPTION_HEADER
  1190. #define MSG_FILAMENT_CHANGE_OPTION_HEADER _UxGT("RESUME OPTIONS:")
  1191. #endif
  1192. #ifndef MSG_FILAMENT_CHANGE_OPTION_PURGE
  1193. #define MSG_FILAMENT_CHANGE_OPTION_PURGE _UxGT("Purge more")
  1194. #endif
  1195. #ifndef MSG_FILAMENT_CHANGE_OPTION_RESUME
  1196. #define MSG_FILAMENT_CHANGE_OPTION_RESUME _UxGT("Continue")
  1197. #endif
  1198. #ifndef MSG_FILAMENT_CHANGE_NOZZLE
  1199. #define MSG_FILAMENT_CHANGE_NOZZLE _UxGT(" Nozzle: ")
  1200. #endif
  1201. #ifndef MSG_RUNOUT_SENSOR
  1202. #define MSG_RUNOUT_SENSOR _UxGT("Runout Sensor")
  1203. #endif
  1204. #ifndef MSG_RUNOUT_DISTANCE_MM
  1205. #define MSG_RUNOUT_DISTANCE_MM _UxGT("Runout Dist mm")
  1206. #endif
  1207. #ifndef MSG_ERR_HOMING_FAILED
  1208. #define MSG_ERR_HOMING_FAILED _UxGT("Homing failed")
  1209. #endif
  1210. #ifndef MSG_ERR_PROBING_FAILED
  1211. #define MSG_ERR_PROBING_FAILED _UxGT("Probing failed")
  1212. #endif
  1213. #ifndef MSG_M600_TOO_COLD
  1214. #define MSG_M600_TOO_COLD _UxGT("M600: Too cold")
  1215. #endif
  1216. #ifndef MSG_MMU2_FILAMENT_CHANGE_HEADER
  1217. #define MSG_MMU2_FILAMENT_CHANGE_HEADER _UxGT("FILAMENT CHANGE")
  1218. #endif
  1219. #ifndef MSG_MMU2_CHOOSE_FILAMENT_HEADER
  1220. #define MSG_MMU2_CHOOSE_FILAMENT_HEADER _UxGT("CHOOSE FILAMENT")
  1221. #endif
  1222. #ifndef MSG_MMU2_MENU
  1223. #define MSG_MMU2_MENU _UxGT("MMU")
  1224. #endif
  1225. #ifndef MSG_MMU2_WRONG_FIRMWARE
  1226. #define MSG_MMU2_WRONG_FIRMWARE _UxGT("Update MMU firmware!")
  1227. #endif
  1228. #ifndef MSG_MMU2_NOT_RESPONDING
  1229. #define MSG_MMU2_NOT_RESPONDING _UxGT("MMU needs attention.")
  1230. #endif
  1231. #ifndef MSG_MMU2_RESUME
  1232. #define MSG_MMU2_RESUME _UxGT("Resume print")
  1233. #endif
  1234. #ifndef MSG_MMU2_RESUMING
  1235. #define MSG_MMU2_RESUMING _UxGT("Resuming...")
  1236. #endif
  1237. #ifndef MSG_MMU2_LOAD_FILAMENT
  1238. #define MSG_MMU2_LOAD_FILAMENT _UxGT("Load filament")
  1239. #endif
  1240. #ifndef MSG_MMU2_LOAD_ALL
  1241. #define MSG_MMU2_LOAD_ALL _UxGT("Load all")
  1242. #endif
  1243. #ifndef MSG_MMU2_LOAD_TO_NOZZLE
  1244. #define MSG_MMU2_LOAD_TO_NOZZLE _UxGT("Load to nozzle")
  1245. #endif
  1246. #ifndef MSG_MMU2_EJECT_FILAMENT
  1247. #define MSG_MMU2_EJECT_FILAMENT _UxGT("Eject filament")
  1248. #endif
  1249. #ifndef MSG_MMU2_EJECT_FILAMENT0
  1250. #define MSG_MMU2_EJECT_FILAMENT0 _UxGT("Eject filament 1")
  1251. #endif
  1252. #ifndef MSG_MMU2_EJECT_FILAMENT1
  1253. #define MSG_MMU2_EJECT_FILAMENT1 _UxGT("Eject filament 2")
  1254. #endif
  1255. #ifndef MSG_MMU2_EJECT_FILAMENT2
  1256. #define MSG_MMU2_EJECT_FILAMENT2 _UxGT("Eject filament 3")
  1257. #endif
  1258. #ifndef MSG_MMU2_EJECT_FILAMENT3
  1259. #define MSG_MMU2_EJECT_FILAMENT3 _UxGT("Eject filament 4")
  1260. #endif
  1261. #ifndef MSG_MMU2_EJECT_FILAMENT4
  1262. #define MSG_MMU2_EJECT_FILAMENT4 _UxGT("Eject filament 5")
  1263. #endif
  1264. #ifndef MSG_MMU2_UNLOAD_FILAMENT
  1265. #define MSG_MMU2_UNLOAD_FILAMENT _UxGT("Unload filament")
  1266. #endif
  1267. #ifndef MSG_MMU2_LOADING_FILAMENT
  1268. #define MSG_MMU2_LOADING_FILAMENT _UxGT("Loading fil. %i...")
  1269. #endif
  1270. #ifndef MSG_MMU2_EJECTING_FILAMENT
  1271. #define MSG_MMU2_EJECTING_FILAMENT _UxGT("Ejecting fil. ...")
  1272. #endif
  1273. #ifndef MSG_MMU2_UNLOADING_FILAMENT
  1274. #define MSG_MMU2_UNLOADING_FILAMENT _UxGT("Unloading fil....")
  1275. #endif
  1276. #ifndef MSG_MMU2_ALL
  1277. #define MSG_MMU2_ALL _UxGT("All")
  1278. #endif
  1279. #ifndef MSG_MMU2_FILAMENT0
  1280. #define MSG_MMU2_FILAMENT0 _UxGT("Filament 1")
  1281. #endif
  1282. #ifndef MSG_MMU2_FILAMENT1
  1283. #define MSG_MMU2_FILAMENT1 _UxGT("Filament 2")
  1284. #endif
  1285. #ifndef MSG_MMU2_FILAMENT2
  1286. #define MSG_MMU2_FILAMENT2 _UxGT("Filament 3")
  1287. #endif
  1288. #ifndef MSG_MMU2_FILAMENT3
  1289. #define MSG_MMU2_FILAMENT3 _UxGT("Filament 4")
  1290. #endif
  1291. #ifndef MSG_MMU2_FILAMENT4
  1292. #define MSG_MMU2_FILAMENT4 _UxGT("Filament 5")
  1293. #endif
  1294. #ifndef MSG_MMU2_RESET
  1295. #define MSG_MMU2_RESET _UxGT("Reset MMU")
  1296. #endif
  1297. #ifndef MSG_MMU2_RESETTING
  1298. #define MSG_MMU2_RESETTING _UxGT("Resetting MMU...")
  1299. #endif
  1300. #ifndef MSG_MMU2_EJECT_RECOVER
  1301. #define MSG_MMU2_EJECT_RECOVER _UxGT("Remove, click")
  1302. #endif
  1303. #ifndef MSG_MIX
  1304. #define MSG_MIX _UxGT("Mix")
  1305. #endif
  1306. #ifndef MSG_MIX_COMPONENT
  1307. #define MSG_MIX_COMPONENT _UxGT("Component")
  1308. #endif
  1309. #ifndef MSG_MIXER
  1310. #define MSG_MIXER _UxGT("Mixer")
  1311. #endif
  1312. #ifndef MSG_GRADIENT
  1313. #define MSG_GRADIENT _UxGT("Gradient")
  1314. #endif
  1315. #ifndef MSG_FULL_GRADIENT
  1316. #define MSG_FULL_GRADIENT _UxGT("Full gradient")
  1317. #endif
  1318. #ifndef MSG_TOGGLE_MIX
  1319. #define MSG_TOGGLE_MIX _UxGT("Toggle mix")
  1320. #endif
  1321. #ifndef MSG_CYCLE_MIX
  1322. #define MSG_CYCLE_MIX _UxGT("Cycle mix")
  1323. #endif
  1324. #ifndef MSG_GRADIENT_MIX
  1325. #define MSG_GRADIENT_MIX _UxGT("Gradient mix")
  1326. #endif
  1327. #ifndef MSG_REVERSE_GRADIENT
  1328. #define MSG_REVERSE_GRADIENT _UxGT("Reverse Gradient")
  1329. #endif
  1330. #ifndef MSG_ACTIVE_VTOOL
  1331. #define MSG_ACTIVE_VTOOL _UxGT("Active V-tool")
  1332. #endif
  1333. #ifndef MSG_START_VTOOL
  1334. #define MSG_START_VTOOL _UxGT("Start V-tool")
  1335. #endif
  1336. #ifndef MSG_END_VTOOL
  1337. #define MSG_END_VTOOL _UxGT(" End V-tool")
  1338. #endif
  1339. #ifndef MSG_GRADIENT_ALIAS
  1340. #define MSG_GRADIENT_ALIAS _UxGT("Alias V-tool")
  1341. #endif
  1342. #ifndef MSG_RESET_VTOOLS
  1343. #define MSG_RESET_VTOOLS _UxGT("Reset V-tools")
  1344. #endif
  1345. #ifndef MSG_COMMIT_VTOOL
  1346. #define MSG_COMMIT_VTOOL _UxGT("Commit V-tool Mix")
  1347. #endif
  1348. #ifndef MSG_VTOOLS_RESET
  1349. #define MSG_VTOOLS_RESET _UxGT("V-tools were reset")
  1350. #endif
  1351. #ifndef MSG_START_Z
  1352. #define MSG_START_Z _UxGT("Start Z")
  1353. #endif
  1354. #ifndef MSG_END_Z
  1355. #define MSG_END_Z _UxGT(" End Z")
  1356. #endif
  1357. #ifndef MSG_BRICKOUT
  1358. #define MSG_BRICKOUT _UxGT("Brickout")
  1359. #endif
  1360. #ifndef MSG_INVADERS
  1361. #define MSG_INVADERS _UxGT("Invaders")
  1362. #endif
  1363. #ifndef MSG_SNAKE
  1364. #define MSG_SNAKE _UxGT("Sn4k3")
  1365. #endif
  1366. #ifndef MSG_MAZE
  1367. #define MSG_MAZE _UxGT("Maze")
  1368. #endif
  1369. //
  1370. // Filament Change screens show up to 3 lines on a 4-line display
  1371. // ...or up to 2 lines on a 3-line display
  1372. //
  1373. #if LCD_HEIGHT >= 4
  1374. #ifndef MSG_ADVANCED_PAUSE_WAITING_1
  1375. #define MSG_ADVANCED_PAUSE_WAITING_1 _UxGT("Press button")
  1376. #define MSG_ADVANCED_PAUSE_WAITING_2 _UxGT("to resume print")
  1377. #endif
  1378. #ifndef MSG_PAUSE_PRINT_INIT_1
  1379. #define MSG_PAUSE_PRINT_INIT_1 _UxGT("Parking...")
  1380. #endif
  1381. #ifndef MSG_FILAMENT_CHANGE_INIT_1
  1382. #define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Wait for")
  1383. #define MSG_FILAMENT_CHANGE_INIT_2 _UxGT("filament change")
  1384. #define MSG_FILAMENT_CHANGE_INIT_3 _UxGT("to start")
  1385. #endif
  1386. #ifndef MSG_FILAMENT_CHANGE_INSERT_1
  1387. #define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insert filament")
  1388. #define MSG_FILAMENT_CHANGE_INSERT_2 _UxGT("and press button")
  1389. #define MSG_FILAMENT_CHANGE_INSERT_3 _UxGT("to continue")
  1390. #endif
  1391. #ifndef MSG_FILAMENT_CHANGE_HEAT_1
  1392. #define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Press button")
  1393. #define MSG_FILAMENT_CHANGE_HEAT_2 _UxGT("to heat nozzle")
  1394. #endif
  1395. #ifndef MSG_FILAMENT_CHANGE_HEATING_1
  1396. #define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Nozzle heating")
  1397. #define MSG_FILAMENT_CHANGE_HEATING_2 _UxGT("Please wait...")
  1398. #endif
  1399. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_1
  1400. #define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Wait for")
  1401. #define MSG_FILAMENT_CHANGE_UNLOAD_2 _UxGT("filament unload")
  1402. #endif
  1403. #ifndef MSG_FILAMENT_CHANGE_LOAD_1
  1404. #define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Wait for")
  1405. #define MSG_FILAMENT_CHANGE_LOAD_2 _UxGT("filament load")
  1406. #endif
  1407. #ifndef MSG_FILAMENT_CHANGE_PURGE_1
  1408. #define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Wait for")
  1409. #define MSG_FILAMENT_CHANGE_PURGE_2 _UxGT("filament purge")
  1410. #endif
  1411. #ifndef MSG_FILAMENT_CHANGE_CONT_PURGE_1
  1412. #define MSG_FILAMENT_CHANGE_CONT_PURGE_1 _UxGT("Click to finish")
  1413. #define MSG_FILAMENT_CHANGE_CONT_PURGE_2 _UxGT("filament purge")
  1414. #endif
  1415. #ifndef MSG_FILAMENT_CHANGE_RESUME_1
  1416. #define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Wait for print")
  1417. #define MSG_FILAMENT_CHANGE_RESUME_2 _UxGT("to resume...")
  1418. #endif
  1419. #else // LCD_HEIGHT < 4
  1420. #ifndef MSG_ADVANCED_PAUSE_WAITING_1
  1421. #define MSG_ADVANCED_PAUSE_WAITING_1 _UxGT("Click to continue")
  1422. #endif
  1423. #ifndef MSG_PAUSE_PRINT_INIT_1
  1424. #define MSG_PAUSE_PRINT_INIT_1 _UxGT("Parking...")
  1425. #endif
  1426. #ifndef MSG_FILAMENT_CHANGE_INIT_1
  1427. #define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Please wait...")
  1428. #endif
  1429. #ifndef MSG_FILAMENT_CHANGE_INSERT_1
  1430. #define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insert and Click")
  1431. #endif
  1432. #ifndef MSG_FILAMENT_CHANGE_HEAT_1
  1433. #define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Click to heat")
  1434. #endif
  1435. #ifndef MSG_FILAMENT_CHANGE_HEATING_1
  1436. #define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Heating...")
  1437. #endif
  1438. #ifndef MSG_FILAMENT_CHANGE_UNLOAD_1
  1439. #define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Ejecting...")
  1440. #endif
  1441. #ifndef MSG_FILAMENT_CHANGE_LOAD_1
  1442. #define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Loading...")
  1443. #endif
  1444. #ifndef MSG_FILAMENT_CHANGE_PURGE_1
  1445. #define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Purging...")
  1446. #endif
  1447. #ifndef MSG_FILAMENT_CHANGE_CONT_PURGE_1
  1448. #define MSG_FILAMENT_CHANGE_CONT_PURGE_1 _UxGT("Click to finish")
  1449. #endif
  1450. #ifndef MSG_FILAMENT_CHANGE_RESUME_1
  1451. #define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Resuming...")
  1452. #endif
  1453. #endif // LCD_HEIGHT < 4
  1454. #ifndef MSG_TMC_DRIVERS
  1455. #define MSG_TMC_DRIVERS _UxGT("TMC drivers")
  1456. #endif
  1457. #ifndef MSG_TMC_CURRENT
  1458. #define MSG_TMC_CURRENT _UxGT("Driver current")
  1459. #endif
  1460. #ifndef MSG_TMC_HYBRID_THRS
  1461. #define MSG_TMC_HYBRID_THRS _UxGT("Hybrid threshold")
  1462. #endif
  1463. #ifndef MSG_TMC_HOMING_THRS
  1464. #define MSG_TMC_HOMING_THRS _UxGT("Sensorless homing")
  1465. #endif
  1466. #ifndef MSG_TMC_STEPPING_MODE
  1467. #define MSG_TMC_STEPPING_MODE _UxGT("Stepping mode")
  1468. #endif
  1469. #ifndef MSG_TMC_STEALTH_ENABLED
  1470. #define MSG_TMC_STEALTH_ENABLED _UxGT("StealthChop enabled")
  1471. #endif
  1472. #ifndef MSG_SERVICE_RESET
  1473. #define MSG_SERVICE_RESET _UxGT("Reset")
  1474. #endif
  1475. #ifndef MSG_SERVICE_IN
  1476. #define MSG_SERVICE_IN _UxGT(" in:")
  1477. #endif
  1478. #ifndef MSG_BACKLASH
  1479. #define MSG_BACKLASH _UxGT("Backlash")
  1480. #endif
  1481. #ifndef MSG_BACKLASH_CORRECTION
  1482. #define MSG_BACKLASH_CORRECTION _UxGT("Correction")
  1483. #endif
  1484. #ifndef MSG_BACKLASH_SMOOTHING
  1485. #define MSG_BACKLASH_SMOOTHING _UxGT("Smoothing")
  1486. #endif