My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

language_en.h 33KB

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