My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

language_en.h 54KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. /**
  24. * English
  25. *
  26. * LCD Menu Messages
  27. * See also https://marlinfw.org/docs/development/lcd_language.html
  28. *
  29. * Substitutions are applied for the following characters when used in menu items titles:
  30. *
  31. * $ displays an inserted string
  32. * = displays '0'....'10' for indexes 0 - 10
  33. * ~ displays '1'....'11' for indexes 0 - 10
  34. * * displays 'E1'...'E11' for indexes 0 - 10 (By default. Uses LCD_FIRST_TOOL)
  35. * @ displays an axis name such as XYZUVW, or E for an extruder
  36. */
  37. #define en 1234
  38. #if LCD_LANGUAGE == en
  39. #define NOT_EXTENDED_ISO10646_1_5X7
  40. #endif
  41. #undef en
  42. #define MEDIA_TYPE_EN "Media"
  43. namespace Language_en {
  44. constexpr uint8_t CHARSIZE = 2;
  45. LSTR LANGUAGE = _UxGT("English");
  46. // These strings should be translated
  47. LSTR WELCOME_MSG = MACHINE_NAME _UxGT(" Ready.");
  48. LSTR MSG_YES = _UxGT("YES");
  49. LSTR MSG_NO = _UxGT("NO");
  50. LSTR MSG_HIGH = _UxGT("HIGH");
  51. LSTR MSG_LOW = _UxGT("LOW");
  52. LSTR MSG_BACK = _UxGT("Back");
  53. LSTR MSG_ERROR = _UxGT("Error");
  54. LSTR MSG_MEDIA_ABORTING = _UxGT("Aborting...");
  55. LSTR MSG_MEDIA_INSERTED = MEDIA_TYPE_EN _UxGT(" Inserted");
  56. LSTR MSG_MEDIA_REMOVED = MEDIA_TYPE_EN _UxGT(" Removed");
  57. LSTR MSG_MEDIA_WAITING = _UxGT("Waiting for ") MEDIA_TYPE_EN;
  58. LSTR MSG_MEDIA_INIT_FAIL = MEDIA_TYPE_EN _UxGT(" Init Fail");
  59. LSTR MSG_MEDIA_READ_ERROR = MEDIA_TYPE_EN _UxGT(" read error");
  60. LSTR MSG_MEDIA_USB_REMOVED = _UxGT("USB device removed");
  61. LSTR MSG_MEDIA_USB_FAILED = _UxGT("USB start failed");
  62. LSTR MSG_KILL_SUBCALL_OVERFLOW = _UxGT("Subcall Overflow");
  63. LSTR MSG_LCD_ENDSTOPS = _UxGT("Endstops"); // Max length 8 characters
  64. LSTR MSG_LCD_SOFT_ENDSTOPS = _UxGT("Soft Endstops");
  65. LSTR MSG_MAIN = _UxGT("Main");
  66. LSTR MSG_ADVANCED_SETTINGS = _UxGT("Advanced Settings");
  67. LSTR MSG_TOOLBAR_SETUP = _UxGT("Toolbar Setup");
  68. LSTR MSG_OPTION_DISABLED = _UxGT("Option Disabled");
  69. LSTR MSG_CONFIGURATION = _UxGT("Configuration");
  70. LSTR MSG_RUN_AUTO_FILES = _UxGT("Run Auto Files");
  71. LSTR MSG_DISABLE_STEPPERS = _UxGT("Disable Steppers");
  72. LSTR MSG_DEBUG_MENU = _UxGT("Debug Menu");
  73. LSTR MSG_PROGRESS_BAR_TEST = _UxGT("Progress Bar Test");
  74. LSTR MSG_HOMING = _UxGT("Homing");
  75. LSTR MSG_AUTO_HOME = _UxGT("Auto Home");
  76. LSTR MSG_AUTO_HOME_A = _UxGT("Home @");
  77. LSTR MSG_AUTO_HOME_X = _UxGT("Home X");
  78. LSTR MSG_AUTO_HOME_Y = _UxGT("Home Y");
  79. LSTR MSG_AUTO_HOME_Z = _UxGT("Home Z");
  80. LSTR MSG_FILAMENT_SET = _UxGT("Filament Settings");
  81. LSTR MSG_FILAMENT_MAN = _UxGT("Filament Management");
  82. LSTR MSG_MANUAL_LEVELING = _UxGT("Manual Leveling");
  83. LSTR MSG_LEVBED_FL = _UxGT("Front Left");
  84. LSTR MSG_LEVBED_FR = _UxGT("Front Right");
  85. LSTR MSG_LEVBED_C = _UxGT("Center");
  86. LSTR MSG_LEVBED_BL = _UxGT("Back Left");
  87. LSTR MSG_LEVBED_BR = _UxGT("Back Right");
  88. LSTR MSG_MANUAL_MESH = _UxGT("Manual Mesh");
  89. LSTR MSG_AUTO_MESH = _UxGT("Auto Build Mesh");
  90. LSTR MSG_AUTO_Z_ALIGN = _UxGT("Auto Z-Align");
  91. LSTR MSG_ITERATION = _UxGT("G34 Iteration: %i");
  92. LSTR MSG_DECREASING_ACCURACY = _UxGT("Accuracy Decreasing!");
  93. LSTR MSG_ACCURACY_ACHIEVED = _UxGT("Accuracy Achieved");
  94. LSTR MSG_LEVEL_BED_HOMING = _UxGT("Homing XYZ");
  95. LSTR MSG_LEVEL_BED_WAITING = _UxGT("Click to Begin");
  96. LSTR MSG_LEVEL_BED_NEXT_POINT = _UxGT("Next Point");
  97. LSTR MSG_LEVEL_BED_DONE = _UxGT("Leveling Done!");
  98. LSTR MSG_Z_FADE_HEIGHT = _UxGT("Fade Height");
  99. LSTR MSG_SET_HOME_OFFSETS = _UxGT("Set Home Offsets");
  100. LSTR MSG_HOME_OFFSET_X = _UxGT("Home Offset X");
  101. LSTR MSG_HOME_OFFSET_Y = _UxGT("Home Offset Y");
  102. LSTR MSG_HOME_OFFSET_Z = _UxGT("Home Offset Z");
  103. LSTR MSG_HOME_OFFSETS_APPLIED = _UxGT("Offsets Applied");
  104. LSTR MSG_TRAMMING_WIZARD = _UxGT("Tramming Wizard");
  105. LSTR MSG_SELECT_ORIGIN = _UxGT("Select Origin");
  106. LSTR MSG_LAST_VALUE_SP = _UxGT("Last value ");
  107. #if HAS_PREHEAT
  108. LSTR MSG_PREHEAT_1 = _UxGT("Preheat ") PREHEAT_1_LABEL;
  109. LSTR MSG_PREHEAT_1_H = _UxGT("Preheat ") PREHEAT_1_LABEL " ~";
  110. LSTR MSG_PREHEAT_1_END = _UxGT("Preheat ") PREHEAT_1_LABEL _UxGT(" End");
  111. LSTR MSG_PREHEAT_1_END_E = _UxGT("Preheat ") PREHEAT_1_LABEL _UxGT(" End ~");
  112. LSTR MSG_PREHEAT_1_ALL = _UxGT("Preheat ") PREHEAT_1_LABEL _UxGT(" All");
  113. LSTR MSG_PREHEAT_1_BEDONLY = _UxGT("Preheat ") PREHEAT_1_LABEL _UxGT(" Bed");
  114. LSTR MSG_PREHEAT_1_SETTINGS = _UxGT("Preheat ") PREHEAT_1_LABEL _UxGT(" Conf");
  115. #ifdef PREHEAT_2_LABEL
  116. LSTR MSG_PREHEAT_2 = _UxGT("Preheat ") PREHEAT_2_LABEL;
  117. LSTR MSG_PREHEAT_2_SETTINGS = _UxGT("Preheat ") PREHEAT_2_LABEL _UxGT(" Conf");
  118. #endif
  119. #ifdef PREHEAT_3_LABEL
  120. LSTR MSG_PREHEAT_3 = _UxGT("Preheat ") PREHEAT_3_LABEL;
  121. LSTR MSG_PREHEAT_3_SETTINGS = _UxGT("Preheat ") PREHEAT_3_LABEL _UxGT(" Conf");
  122. #endif
  123. LSTR MSG_PREHEAT_M = _UxGT("Preheat $");
  124. LSTR MSG_PREHEAT_M_H = _UxGT("Preheat $ ~");
  125. LSTR MSG_PREHEAT_M_END = _UxGT("Preheat $ End");
  126. LSTR MSG_PREHEAT_M_END_E = _UxGT("Preheat $ End ~");
  127. LSTR MSG_PREHEAT_M_ALL = _UxGT("Preheat $ All");
  128. LSTR MSG_PREHEAT_M_BEDONLY = _UxGT("Preheat $ Bed");
  129. LSTR MSG_PREHEAT_M_SETTINGS = _UxGT("Preheat $ Conf");
  130. #endif
  131. LSTR MSG_PREHEAT_CUSTOM = _UxGT("Preheat Custom");
  132. LSTR MSG_COOLDOWN = _UxGT("Cooldown");
  133. LSTR MSG_CUTTER_FREQUENCY = _UxGT("Frequency");
  134. LSTR MSG_LASER_MENU = _UxGT("Laser Control");
  135. LSTR MSG_SPINDLE_MENU = _UxGT("Spindle Control");
  136. LSTR MSG_LASER_POWER = _UxGT("Laser Power");
  137. LSTR MSG_SPINDLE_POWER = _UxGT("Spindle Pwr");
  138. LSTR MSG_LASER_TOGGLE = _UxGT("Toggle Laser");
  139. LSTR MSG_LASER_EVAC_TOGGLE = _UxGT("Toggle Blower");
  140. LSTR MSG_LASER_ASSIST_TOGGLE = _UxGT("Air Assist");
  141. LSTR MSG_LASER_PULSE_MS = _UxGT("Test Pulse ms");
  142. LSTR MSG_LASER_FIRE_PULSE = _UxGT("Fire Pulse");
  143. LSTR MSG_FLOWMETER_FAULT = _UxGT("Coolant Flow Fault");
  144. LSTR MSG_SPINDLE_TOGGLE = _UxGT("Toggle Spindle");
  145. LSTR MSG_SPINDLE_EVAC_TOGGLE = _UxGT("Toggle Vacuum");
  146. LSTR MSG_SPINDLE_FORWARD = _UxGT("Spindle Forward");
  147. LSTR MSG_SPINDLE_REVERSE = _UxGT("Spindle Reverse");
  148. LSTR MSG_SWITCH_PS_ON = _UxGT("Switch Power On");
  149. LSTR MSG_SWITCH_PS_OFF = _UxGT("Switch Power Off");
  150. LSTR MSG_EXTRUDE = _UxGT("Extrude");
  151. LSTR MSG_RETRACT = _UxGT("Retract");
  152. LSTR MSG_MOVE_AXIS = _UxGT("Move Axis");
  153. LSTR MSG_BED_LEVELING = _UxGT("Bed Leveling");
  154. LSTR MSG_LEVEL_BED = _UxGT("Level Bed");
  155. LSTR MSG_BED_TRAMMING = _UxGT("Bed Tramming");
  156. LSTR MSG_BED_TRAMMING_MANUAL = _UxGT("Manual Tramming");
  157. LSTR MSG_BED_TRAMMING_RAISE = _UxGT("Adjust bed until the probe triggers.");
  158. LSTR MSG_BED_TRAMMING_IN_RANGE = _UxGT("Corners within tolerance. Bed trammed.");
  159. LSTR MSG_BED_TRAMMING_GOOD_POINTS = _UxGT("Good Points: ");
  160. LSTR MSG_BED_TRAMMING_LAST_Z = _UxGT("Last Z: ");
  161. LSTR MSG_NEXT_CORNER = _UxGT("Next Corner");
  162. LSTR MSG_MESH_EDITOR = _UxGT("Mesh Editor");
  163. LSTR MSG_MESH_VIEWER = _UxGT("Mesh Viewer");
  164. LSTR MSG_EDIT_MESH = _UxGT("Edit Mesh");
  165. LSTR MSG_MESH_VIEW = _UxGT("View Mesh");
  166. LSTR MSG_EDITING_STOPPED = _UxGT("Mesh Editing Stopped");
  167. LSTR MSG_NO_VALID_MESH = _UxGT("No valid mesh");
  168. LSTR MSG_ACTIVATE_MESH = _UxGT("Activate Leveling");
  169. LSTR MSG_PROBING_POINT = _UxGT("Probing Point");
  170. LSTR MSG_MESH_X = _UxGT("Index X");
  171. LSTR MSG_MESH_Y = _UxGT("Index Y");
  172. LSTR MSG_MESH_INSET = _UxGT("Mesh Inset");
  173. LSTR MSG_MESH_MIN_X = _UxGT("Mesh X Minimum");
  174. LSTR MSG_MESH_MAX_X = _UxGT("Mesh X Maximum");
  175. LSTR MSG_MESH_MIN_Y = _UxGT("Mesh Y Minimum");
  176. LSTR MSG_MESH_MAX_Y = _UxGT("Mesh Y Maximum");
  177. LSTR MSG_MESH_AMAX = _UxGT("Maximize Area");
  178. LSTR MSG_MESH_CENTER = _UxGT("Center Area");
  179. LSTR MSG_MESH_EDIT_Z = _UxGT("Z Value");
  180. LSTR MSG_MESH_CANCEL = _UxGT("Mesh cancelled");
  181. LSTR MSG_CUSTOM_COMMANDS = _UxGT("Custom Commands");
  182. LSTR MSG_M48_TEST = _UxGT("M48 Probe Test");
  183. LSTR MSG_M48_POINT = _UxGT("M48 Point");
  184. LSTR MSG_M48_OUT_OF_BOUNDS = _UxGT("Probe out of bounds");
  185. LSTR MSG_M48_DEVIATION = _UxGT("Deviation");
  186. LSTR MSG_IDEX_MENU = _UxGT("IDEX Mode");
  187. LSTR MSG_OFFSETS_MENU = _UxGT("Tool Offsets");
  188. LSTR MSG_IDEX_MODE_AUTOPARK = _UxGT("Auto-Park");
  189. LSTR MSG_IDEX_MODE_DUPLICATE = _UxGT("Duplication");
  190. LSTR MSG_IDEX_MODE_MIRRORED_COPY = _UxGT("Mirrored Copy");
  191. LSTR MSG_IDEX_MODE_FULL_CTRL = _UxGT("Full Control");
  192. LSTR MSG_IDEX_DUPE_GAP = _UxGT("Duplicate X-Gap");
  193. LSTR MSG_HOTEND_OFFSET_Z = _UxGT("2nd Nozzle Z");
  194. LSTR MSG_HOTEND_OFFSET_A = _UxGT("2nd Nozzle @");
  195. LSTR MSG_UBL_DOING_G29 = _UxGT("Doing G29");
  196. LSTR MSG_UBL_TOOLS = _UxGT("UBL Tools");
  197. LSTR MSG_UBL_LEVEL_BED = _UxGT("Unified Bed Leveling");
  198. LSTR MSG_LCD_TILTING_MESH = _UxGT("Tilting Point");
  199. LSTR MSG_UBL_TILT_MESH = _UxGT("Tilt Mesh");
  200. LSTR MSG_UBL_TILTING_GRID = _UxGT("Tilting Grid Size");
  201. LSTR MSG_UBL_MESH_TILTED = _UxGT("Mesh Tilted");
  202. LSTR MSG_UBL_MANUAL_MESH = _UxGT("Manually Build Mesh");
  203. LSTR MSG_UBL_MESH_WIZARD = _UxGT("UBL Mesh Wizard");
  204. LSTR MSG_UBL_BC_INSERT = _UxGT("Place Shim & Measure");
  205. LSTR MSG_UBL_BC_INSERT2 = _UxGT("Measure");
  206. LSTR MSG_UBL_BC_REMOVE = _UxGT("Remove & Measure Bed");
  207. LSTR MSG_UBL_MOVING_TO_NEXT = _UxGT("Moving to next");
  208. LSTR MSG_UBL_ACTIVATE_MESH = _UxGT("Activate UBL");
  209. LSTR MSG_UBL_DEACTIVATE_MESH = _UxGT("Deactivate UBL");
  210. LSTR MSG_UBL_SET_TEMP_BED = _UxGT("Bed Temp");
  211. LSTR MSG_UBL_BED_TEMP_CUSTOM = _UxGT("Bed Temp");
  212. LSTR MSG_UBL_SET_TEMP_HOTEND = _UxGT("Hotend Temp");
  213. LSTR MSG_UBL_HOTEND_TEMP_CUSTOM = _UxGT("Hotend Temp");
  214. LSTR MSG_UBL_MESH_EDIT = _UxGT("Mesh Edit");
  215. LSTR MSG_UBL_EDIT_CUSTOM_MESH = _UxGT("Edit Custom Mesh");
  216. LSTR MSG_UBL_FINE_TUNE_MESH = _UxGT("Fine Tuning Mesh");
  217. LSTR MSG_UBL_DONE_EDITING_MESH = _UxGT("Done Editing Mesh");
  218. LSTR MSG_UBL_BUILD_CUSTOM_MESH = _UxGT("Build Custom Mesh");
  219. LSTR MSG_UBL_BUILD_MESH_MENU = _UxGT("Build Mesh");
  220. LSTR MSG_UBL_BUILD_MESH_M = _UxGT("Build Mesh ($)");
  221. LSTR MSG_UBL_BUILD_COLD_MESH = _UxGT("Build Cold Mesh");
  222. LSTR MSG_UBL_MESH_HEIGHT_ADJUST = _UxGT("Adjust Mesh Height");
  223. LSTR MSG_UBL_MESH_HEIGHT_AMOUNT = _UxGT("Height Amount");
  224. LSTR MSG_UBL_VALIDATE_MESH_MENU = _UxGT("Validate Mesh");
  225. LSTR MSG_UBL_VALIDATE_MESH_M = _UxGT("Validate Mesh ($)");
  226. LSTR MSG_UBL_VALIDATE_CUSTOM_MESH = _UxGT("Validate Custom Mesh");
  227. LSTR MSG_G26_HEATING_BED = _UxGT("G26 Heating Bed");
  228. LSTR MSG_G26_HEATING_NOZZLE = _UxGT("G26 Heating Nozzle");
  229. LSTR MSG_G26_MANUAL_PRIME = _UxGT("Manual priming...");
  230. LSTR MSG_G26_FIXED_LENGTH = _UxGT("Fixed Length Prime");
  231. LSTR MSG_G26_PRIME_DONE = _UxGT("Done Priming");
  232. LSTR MSG_G26_CANCELED = _UxGT("G26 Canceled");
  233. LSTR MSG_G26_LEAVING = _UxGT("Leaving G26");
  234. LSTR MSG_UBL_CONTINUE_MESH = _UxGT("Continue Bed Mesh");
  235. LSTR MSG_UBL_MESH_LEVELING = _UxGT("Mesh Leveling");
  236. LSTR MSG_UBL_3POINT_MESH_LEVELING = _UxGT("3-Point Leveling");
  237. LSTR MSG_UBL_GRID_MESH_LEVELING = _UxGT("Grid Mesh Leveling");
  238. LSTR MSG_UBL_MESH_LEVEL = _UxGT("Level Mesh");
  239. LSTR MSG_UBL_SIDE_POINTS = _UxGT("Side Points");
  240. LSTR MSG_UBL_MAP_TYPE = _UxGT("Map Type");
  241. LSTR MSG_UBL_OUTPUT_MAP = _UxGT("Output Mesh Map");
  242. LSTR MSG_UBL_OUTPUT_MAP_HOST = _UxGT("Output for Host");
  243. LSTR MSG_UBL_OUTPUT_MAP_CSV = _UxGT("Output for CSV");
  244. LSTR MSG_UBL_OUTPUT_MAP_BACKUP = _UxGT("Off Printer Backup");
  245. LSTR MSG_UBL_INFO_UBL = _UxGT("Output UBL Info");
  246. LSTR MSG_UBL_FILLIN_AMOUNT = _UxGT("Fill-in Amount");
  247. LSTR MSG_UBL_MANUAL_FILLIN = _UxGT("Manual Fill-in");
  248. LSTR MSG_UBL_SMART_FILLIN = _UxGT("Smart Fill-in");
  249. LSTR MSG_UBL_FILLIN_MESH = _UxGT("Fill-in Mesh");
  250. LSTR MSG_UBL_MESH_FILLED = _UxGT("Missing Points Filled");
  251. LSTR MSG_UBL_MESH_INVALID = _UxGT("Invalid Mesh");
  252. LSTR MSG_UBL_INVALIDATE_ALL = _UxGT("Invalidate All");
  253. LSTR MSG_UBL_INVALIDATE_CLOSEST = _UxGT("Invalidate Closest");
  254. LSTR MSG_UBL_FINE_TUNE_ALL = _UxGT("Fine Tune All");
  255. LSTR MSG_UBL_FINE_TUNE_CLOSEST = _UxGT("Fine Tune Closest");
  256. LSTR MSG_UBL_STORAGE_MESH_MENU = _UxGT("Mesh Storage");
  257. LSTR MSG_UBL_STORAGE_SLOT = _UxGT("Memory Slot");
  258. LSTR MSG_UBL_LOAD_MESH = _UxGT("Load Bed Mesh");
  259. LSTR MSG_UBL_SAVE_MESH = _UxGT("Save Bed Mesh");
  260. LSTR MSG_UBL_INVALID_SLOT = _UxGT("First Select a Mesh Slot");
  261. LSTR MSG_MESH_LOADED = _UxGT("Mesh %i Loaded");
  262. LSTR MSG_MESH_SAVED = _UxGT("Mesh %i Saved");
  263. LSTR MSG_UBL_NO_STORAGE = _UxGT("No Storage");
  264. LSTR MSG_UBL_SAVE_ERROR = _UxGT("Err: UBL Save");
  265. LSTR MSG_UBL_RESTORE_ERROR = _UxGT("Err: UBL Restore");
  266. LSTR MSG_UBL_Z_OFFSET = _UxGT("Z-Offset: ");
  267. LSTR MSG_UBL_Z_OFFSET_STOPPED = _UxGT("Z-Offset Stopped");
  268. LSTR MSG_UBL_STEP_BY_STEP_MENU = _UxGT("Step-By-Step UBL");
  269. LSTR MSG_UBL_1_BUILD_COLD_MESH = _UxGT("1. Build Cold Mesh");
  270. LSTR MSG_UBL_2_SMART_FILLIN = _UxGT("2. Smart Fill-in");
  271. LSTR MSG_UBL_3_VALIDATE_MESH_MENU = _UxGT("3. Validate Mesh");
  272. LSTR MSG_UBL_4_FINE_TUNE_ALL = _UxGT("4. Fine Tune All");
  273. LSTR MSG_UBL_5_VALIDATE_MESH_MENU = _UxGT("5. Validate Mesh");
  274. LSTR MSG_UBL_6_FINE_TUNE_ALL = _UxGT("6. Fine Tune All");
  275. LSTR MSG_UBL_7_SAVE_MESH = _UxGT("7. Save Bed Mesh");
  276. LSTR MSG_LED_CONTROL = _UxGT("LED Control");
  277. LSTR MSG_LEDS = _UxGT("Lights");
  278. LSTR MSG_LED_PRESETS = _UxGT("Light Presets");
  279. LSTR MSG_SET_LEDS_RED = _UxGT("Red");
  280. LSTR MSG_SET_LEDS_ORANGE = _UxGT("Orange");
  281. LSTR MSG_SET_LEDS_YELLOW = _UxGT("Yellow");
  282. LSTR MSG_SET_LEDS_GREEN = _UxGT("Green");
  283. LSTR MSG_SET_LEDS_BLUE = _UxGT("Blue");
  284. LSTR MSG_SET_LEDS_INDIGO = _UxGT("Indigo");
  285. LSTR MSG_SET_LEDS_VIOLET = _UxGT("Violet");
  286. LSTR MSG_SET_LEDS_WHITE = _UxGT("White");
  287. LSTR MSG_SET_LEDS_DEFAULT = _UxGT("Default");
  288. LSTR MSG_LED_CHANNEL_N = _UxGT("Channel =");
  289. LSTR MSG_LEDS2 = _UxGT("Lights #2");
  290. LSTR MSG_NEO2_PRESETS = _UxGT("Light #2 Presets");
  291. LSTR MSG_NEO2_BRIGHTNESS = _UxGT("Brightness");
  292. LSTR MSG_CUSTOM_LEDS = _UxGT("Custom Lights");
  293. LSTR MSG_INTENSITY_R = _UxGT("Red Intensity");
  294. LSTR MSG_INTENSITY_G = _UxGT("Green Intensity");
  295. LSTR MSG_INTENSITY_B = _UxGT("Blue Intensity");
  296. LSTR MSG_INTENSITY_W = _UxGT("White Intensity");
  297. LSTR MSG_LED_BRIGHTNESS = _UxGT("Brightness");
  298. LSTR MSG_MOVING = _UxGT("Moving...");
  299. LSTR MSG_FREE_XY = _UxGT("Free XY");
  300. LSTR MSG_MOVE_X = _UxGT("Move X"); // Used by draw_edit_screen
  301. LSTR MSG_MOVE_Y = _UxGT("Move Y");
  302. LSTR MSG_MOVE_Z = _UxGT("Move Z");
  303. LSTR MSG_MOVE_N = _UxGT("Move @");
  304. LSTR MSG_MOVE_E = _UxGT("Move Extruder");
  305. LSTR MSG_MOVE_EN = _UxGT("Move *");
  306. LSTR MSG_HOTEND_TOO_COLD = _UxGT("Hotend too cold");
  307. LSTR MSG_MOVE_N_MM = _UxGT("Move $mm");
  308. LSTR MSG_MOVE_01MM = _UxGT("Move 0.1mm");
  309. LSTR MSG_MOVE_1MM = _UxGT("Move 1mm");
  310. LSTR MSG_MOVE_10MM = _UxGT("Move 10mm");
  311. LSTR MSG_MOVE_100MM = _UxGT("Move 100mm");
  312. LSTR MSG_MOVE_0001IN = _UxGT("Move 0.001in");
  313. LSTR MSG_MOVE_001IN = _UxGT("Move 0.01in");
  314. LSTR MSG_MOVE_01IN = _UxGT("Move 0.1in");
  315. LSTR MSG_MOVE_1IN = _UxGT("Move 1.0in");
  316. LSTR MSG_SPEED = _UxGT("Speed");
  317. LSTR MSG_BED_Z = _UxGT("Bed Z");
  318. LSTR MSG_NOZZLE = _UxGT("Nozzle");
  319. LSTR MSG_NOZZLE_N = _UxGT("Nozzle ~");
  320. LSTR MSG_NOZZLE_PARKED = _UxGT("Nozzle Parked");
  321. LSTR MSG_NOZZLE_STANDBY = _UxGT("Nozzle Standby");
  322. LSTR MSG_BED = _UxGT("Bed");
  323. LSTR MSG_CHAMBER = _UxGT("Enclosure");
  324. LSTR MSG_COOLER = _UxGT("Laser Coolant");
  325. LSTR MSG_COOLER_TOGGLE = _UxGT("Toggle Cooler");
  326. LSTR MSG_FLOWMETER_SAFETY = _UxGT("Flow Safety");
  327. LSTR MSG_LASER = _UxGT("Laser");
  328. LSTR MSG_FAN_SPEED = _UxGT("Fan Speed");
  329. LSTR MSG_FAN_SPEED_N = _UxGT("Fan Speed ~");
  330. LSTR MSG_STORED_FAN_N = _UxGT("Stored Fan ~");
  331. LSTR MSG_EXTRA_FAN_SPEED = _UxGT("Extra Fan Speed");
  332. LSTR MSG_EXTRA_FAN_SPEED_N = _UxGT("Extra Fan Speed ~");
  333. LSTR MSG_CONTROLLER_FAN = _UxGT("Controller Fan");
  334. LSTR MSG_CONTROLLER_FAN_IDLE_SPEED = _UxGT("Idle Speed");
  335. LSTR MSG_CONTROLLER_FAN_AUTO_ON = _UxGT("Auto Mode");
  336. LSTR MSG_CONTROLLER_FAN_SPEED = _UxGT("Active Speed");
  337. LSTR MSG_CONTROLLER_FAN_DURATION = _UxGT("Idle Period");
  338. LSTR MSG_FLOW = _UxGT("Flow");
  339. LSTR MSG_FLOW_N = _UxGT("Flow ~");
  340. LSTR MSG_CONTROL = _UxGT("Control");
  341. LSTR MSG_MIN = " " LCD_STR_THERMOMETER _UxGT(" Min");
  342. LSTR MSG_MAX = " " LCD_STR_THERMOMETER _UxGT(" Max");
  343. LSTR MSG_FACTOR = " " LCD_STR_THERMOMETER _UxGT(" Fact");
  344. LSTR MSG_AUTOTEMP = _UxGT("Autotemp");
  345. LSTR MSG_LCD_ON = _UxGT("On");
  346. LSTR MSG_LCD_OFF = _UxGT("Off");
  347. LSTR MSG_PID_AUTOTUNE = _UxGT("PID Autotune");
  348. LSTR MSG_PID_AUTOTUNE_E = _UxGT("PID Autotune *");
  349. LSTR MSG_PID_CYCLE = _UxGT("PID Cycles");
  350. LSTR MSG_PID_AUTOTUNE_DONE = _UxGT("PID tuning done");
  351. LSTR MSG_PID_AUTOTUNE_FAILED = _UxGT("PID Autotune failed!");
  352. LSTR MSG_BAD_EXTRUDER_NUM = _UxGT("Bad extruder.");
  353. LSTR MSG_TEMP_TOO_HIGH = _UxGT("Temperature too high.");
  354. LSTR MSG_TIMEOUT = _UxGT("Timeout.");
  355. LSTR MSG_PID_BAD_EXTRUDER_NUM = _UxGT("Autotune failed! Bad extruder.");
  356. LSTR MSG_PID_TEMP_TOO_HIGH = _UxGT("Autotune failed! Temperature too high.");
  357. LSTR MSG_PID_TIMEOUT = _UxGT("Autotune failed! Timeout.");
  358. LSTR MSG_MPC_MEASURING_AMBIENT = _UxGT("Testing heat loss");
  359. LSTR MSG_MPC_AUTOTUNE = _UxGT("MPC Autotune");
  360. LSTR MSG_MPC_EDIT = _UxGT("Edit * MPC");
  361. LSTR MSG_MPC_POWER_E = _UxGT("Power *");
  362. LSTR MSG_MPC_BLOCK_HEAT_CAPACITY_E = _UxGT("Block C *");
  363. LSTR MSG_SENSOR_RESPONSIVENESS_E = _UxGT("Sensor res *");
  364. LSTR MSG_MPC_AMBIENT_XFER_COEFF_E = _UxGT("Ambient h *");
  365. LSTR MSG_MPC_AMBIENT_XFER_COEFF_FAN_E = _UxGT("Amb. h fan *");
  366. LSTR MSG_SELECT = _UxGT("Select");
  367. LSTR MSG_SELECT_E = _UxGT("Select *");
  368. LSTR MSG_ACC = _UxGT("Accel");
  369. LSTR MSG_JERK = _UxGT("Jerk");
  370. LSTR MSG_VA_JERK = _UxGT("Max ") STR_A _UxGT(" Jerk");
  371. LSTR MSG_VB_JERK = _UxGT("Max ") STR_B _UxGT(" Jerk");
  372. LSTR MSG_VC_JERK = _UxGT("Max ") STR_C _UxGT(" Jerk");
  373. LSTR MSG_VN_JERK = _UxGT("Max @ Jerk");
  374. LSTR MSG_VE_JERK = _UxGT("Max E Jerk");
  375. LSTR MSG_JUNCTION_DEVIATION = _UxGT("Junction Dev");
  376. LSTR MSG_MAX_SPEED = _UxGT("Max Speed (mm/s)");
  377. LSTR MSG_VMAX_A = _UxGT("Max ") STR_A _UxGT(" Speed");
  378. LSTR MSG_VMAX_B = _UxGT("Max ") STR_B _UxGT(" Speed");
  379. LSTR MSG_VMAX_C = _UxGT("Max ") STR_C _UxGT(" Speed");
  380. LSTR MSG_VMAX_N = _UxGT("Max @ Speed");
  381. LSTR MSG_VMAX_E = _UxGT("Max E Speed");
  382. LSTR MSG_VMAX_EN = _UxGT("Max * Speed");
  383. LSTR MSG_VMIN = _UxGT("Min Velocity");
  384. LSTR MSG_VTRAV_MIN = _UxGT("Min Travel Speed");
  385. LSTR MSG_ACCELERATION = _UxGT("Acceleration");
  386. LSTR MSG_AMAX_A = _UxGT("Max ") STR_A _UxGT(" Accel");
  387. LSTR MSG_AMAX_B = _UxGT("Max ") STR_B _UxGT(" Accel");
  388. LSTR MSG_AMAX_C = _UxGT("Max ") STR_C _UxGT(" Accel");
  389. LSTR MSG_AMAX_N = _UxGT("Max @ Accel");
  390. LSTR MSG_AMAX_E = _UxGT("Max E Accel");
  391. LSTR MSG_AMAX_EN = _UxGT("Max * Accel");
  392. LSTR MSG_A_RETRACT = _UxGT("Retract Accel");
  393. LSTR MSG_A_TRAVEL = _UxGT("Travel Accel");
  394. LSTR MSG_INPUT_SHAPING = _UxGT("Input Shaping");
  395. LSTR MSG_SHAPING_X_FREQ = STR_X _UxGT(" frequency");
  396. LSTR MSG_SHAPING_Y_FREQ = STR_Y _UxGT(" frequency");
  397. LSTR MSG_SHAPING_X_ZETA = STR_X _UxGT(" damping");
  398. LSTR MSG_SHAPING_Y_ZETA = STR_Y _UxGT(" damping");
  399. LSTR MSG_XY_FREQUENCY_LIMIT = _UxGT("XY Freq Limit");
  400. LSTR MSG_XY_FREQUENCY_FEEDRATE = _UxGT("Min FR Factor");
  401. LSTR MSG_STEPS_PER_MM = _UxGT("Steps/mm");
  402. LSTR MSG_A_STEPS = STR_A _UxGT(" Steps/mm");
  403. LSTR MSG_B_STEPS = STR_B _UxGT(" Steps/mm");
  404. LSTR MSG_C_STEPS = STR_C _UxGT(" Steps/mm");
  405. LSTR MSG_N_STEPS = _UxGT("@ steps/mm");
  406. LSTR MSG_E_STEPS = _UxGT("E steps/mm");
  407. LSTR MSG_EN_STEPS = _UxGT("* Steps/mm");
  408. LSTR MSG_TEMPERATURE = _UxGT("Temperature");
  409. LSTR MSG_MOTION = _UxGT("Motion");
  410. LSTR MSG_FILAMENT = _UxGT("Filament");
  411. LSTR MSG_VOLUMETRIC_ENABLED = _UxGT("E in mm") SUPERSCRIPT_THREE;
  412. LSTR MSG_VOLUMETRIC_LIMIT = _UxGT("E Limit in mm") SUPERSCRIPT_THREE;
  413. LSTR MSG_VOLUMETRIC_LIMIT_E = _UxGT("E Limit *");
  414. LSTR MSG_FILAMENT_DIAM = _UxGT("Fil. Dia.");
  415. LSTR MSG_FILAMENT_DIAM_E = _UxGT("Fil. Dia. *");
  416. LSTR MSG_FILAMENT_UNLOAD = _UxGT("Unload mm");
  417. LSTR MSG_FILAMENT_LOAD = _UxGT("Load mm");
  418. LSTR MSG_SEGMENTS_PER_SECOND = _UxGT("Segments/Sec");
  419. LSTR MSG_DRAW_MIN_X = _UxGT("Draw Min X");
  420. LSTR MSG_DRAW_MAX_X = _UxGT("Draw Max X");
  421. LSTR MSG_DRAW_MIN_Y = _UxGT("Draw Min Y");
  422. LSTR MSG_DRAW_MAX_Y = _UxGT("Draw Max Y");
  423. LSTR MSG_MAX_BELT_LEN = _UxGT("Max Belt Len");
  424. LSTR MSG_ADVANCE_K = _UxGT("Advance K");
  425. LSTR MSG_ADVANCE_K_E = _UxGT("Advance K *");
  426. LSTR MSG_CONTRAST = _UxGT("LCD Contrast");
  427. LSTR MSG_BRIGHTNESS = _UxGT("LCD Brightness");
  428. LSTR MSG_SCREEN_TIMEOUT = _UxGT("LCD Timeout (m)");
  429. LSTR MSG_BRIGHTNESS_OFF = _UxGT("Backlight Off");
  430. LSTR MSG_STORE_EEPROM = _UxGT("Store Settings");
  431. LSTR MSG_LOAD_EEPROM = _UxGT("Load Settings");
  432. LSTR MSG_RESTORE_DEFAULTS = _UxGT("Restore Defaults");
  433. LSTR MSG_INIT_EEPROM = _UxGT("Initialize EEPROM");
  434. LSTR MSG_ERR_EEPROM_CRC = _UxGT("EEPROM CRC Error");
  435. LSTR MSG_ERR_EEPROM_INDEX = _UxGT("EEPROM Index Error");
  436. LSTR MSG_ERR_EEPROM_VERSION = _UxGT("EEPROM Version Error");
  437. LSTR MSG_SETTINGS_STORED = _UxGT("Settings Stored");
  438. LSTR MSG_MEDIA_UPDATE = MEDIA_TYPE_EN _UxGT(" Update");
  439. LSTR MSG_RESET_PRINTER = _UxGT("Reset Printer");
  440. LSTR MSG_REFRESH = LCD_STR_REFRESH _UxGT("Refresh");
  441. LSTR MSG_INFO_SCREEN = _UxGT("Info Screen");
  442. LSTR MSG_INFO_MACHINENAME = _UxGT("Machine Name");
  443. LSTR MSG_INFO_SIZE = _UxGT("Size");
  444. LSTR MSG_INFO_FWVERSION = _UxGT("Firmware Version");
  445. LSTR MSG_INFO_BUILD = _UxGT("Build Datetime");
  446. LSTR MSG_PREPARE = _UxGT("Prepare");
  447. LSTR MSG_TUNE = _UxGT("Tune");
  448. LSTR MSG_POWER_MONITOR = _UxGT("Power monitor");
  449. LSTR MSG_CURRENT = _UxGT("Current");
  450. LSTR MSG_VOLTAGE = _UxGT("Voltage");
  451. LSTR MSG_POWER = _UxGT("Power");
  452. LSTR MSG_START_PRINT = _UxGT("Start Print");
  453. LSTR MSG_BUTTON_NEXT = _UxGT("Next");
  454. LSTR MSG_BUTTON_INIT = _UxGT("Init");
  455. LSTR MSG_BUTTON_STOP = _UxGT("Stop");
  456. LSTR MSG_BUTTON_PRINT = _UxGT("Print");
  457. LSTR MSG_BUTTON_RESET = _UxGT("Reset");
  458. LSTR MSG_BUTTON_IGNORE = _UxGT("Ignore");
  459. LSTR MSG_BUTTON_CANCEL = _UxGT("Cancel");
  460. LSTR MSG_BUTTON_CONFIRM = _UxGT("Confirm");
  461. LSTR MSG_BUTTON_CONTINUE = _UxGT("Continue");
  462. LSTR MSG_BUTTON_DONE = _UxGT("Done");
  463. LSTR MSG_BUTTON_BACK = _UxGT("Back");
  464. LSTR MSG_BUTTON_PROCEED = _UxGT("Proceed");
  465. LSTR MSG_BUTTON_SKIP = _UxGT("Skip");
  466. LSTR MSG_BUTTON_INFO = _UxGT("Info");
  467. LSTR MSG_BUTTON_LEVEL = _UxGT("Level");
  468. LSTR MSG_BUTTON_PAUSE = _UxGT("Pause");
  469. LSTR MSG_BUTTON_RESUME = _UxGT("Resume");
  470. LSTR MSG_BUTTON_ADVANCED = _UxGT("Advanced");
  471. LSTR MSG_BUTTON_SAVE = _UxGT("Save");
  472. LSTR MSG_BUTTON_PURGE = _UxGT("Purge");
  473. LSTR MSG_PAUSING = _UxGT("Pausing...");
  474. LSTR MSG_PAUSE_PRINT = _UxGT("Pause Print");
  475. LSTR MSG_ADVANCED_PAUSE = _UxGT("Advanced Pause");
  476. LSTR MSG_RESUME_PRINT = _UxGT("Resume Print");
  477. LSTR MSG_STOP_PRINT = _UxGT("Stop Print");
  478. LSTR MSG_OUTAGE_RECOVERY = _UxGT("Power Outage");
  479. #if LCD_WIDTH >= 20 || HAS_DWIN_E3V2
  480. LSTR MSG_HOST_START_PRINT = _UxGT("Start Host Print");
  481. LSTR MSG_PRINTING_OBJECT = _UxGT("Printing Object");
  482. LSTR MSG_CANCEL_OBJECT = _UxGT("Cancel Object");
  483. LSTR MSG_CANCEL_OBJECT_N = _UxGT("Cancel Object =");
  484. LSTR MSG_CONTINUE_PRINT_JOB = _UxGT("Continue Print Job");
  485. LSTR MSG_MEDIA_MENU = _UxGT("Print from ") MEDIA_TYPE_EN;
  486. LSTR MSG_TURN_OFF = _UxGT("Turn off the printer");
  487. LSTR MSG_END_LOOPS = _UxGT("End Repeat Loops");
  488. #else
  489. LSTR MSG_HOST_START_PRINT = _UxGT("Host Start");
  490. LSTR MSG_PRINTING_OBJECT = _UxGT("Print Obj");
  491. LSTR MSG_CANCEL_OBJECT = _UxGT("Cancel Obj");
  492. LSTR MSG_CANCEL_OBJECT_N = _UxGT("Cancel Obj =");
  493. LSTR MSG_CONTINUE_PRINT_JOB = _UxGT("Continue Job");
  494. LSTR MSG_MEDIA_MENU = MEDIA_TYPE_EN _UxGT(" Print");
  495. LSTR MSG_TURN_OFF = _UxGT("Turn off now");
  496. LSTR MSG_END_LOOPS = _UxGT("End Loops");
  497. #endif
  498. LSTR MSG_NO_MEDIA = _UxGT("No ") MEDIA_TYPE_EN;
  499. LSTR MSG_DWELL = _UxGT("Sleep...");
  500. LSTR MSG_USERWAIT = _UxGT("Click to Resume...");
  501. LSTR MSG_PRINT_PAUSED = _UxGT("Print Paused");
  502. LSTR MSG_PRINTING = _UxGT("Printing...");
  503. LSTR MSG_STOPPING = _UxGT("Stopping...");
  504. LSTR MSG_REMAINING_TIME = _UxGT("Remaining");
  505. LSTR MSG_PRINT_ABORTED = _UxGT("Print Aborted");
  506. LSTR MSG_PRINT_DONE = _UxGT("Print Done");
  507. LSTR MSG_PRINTER_KILLED = _UxGT("Printer killed!");
  508. LSTR MSG_NO_MOVE = _UxGT("No Move.");
  509. LSTR MSG_KILLED = _UxGT("KILLED. ");
  510. LSTR MSG_STOPPED = _UxGT("STOPPED. ");
  511. LSTR MSG_FWRETRACT = _UxGT("Firmware Retract");
  512. LSTR MSG_CONTROL_RETRACT = _UxGT("Retract mm");
  513. LSTR MSG_CONTROL_RETRACT_SWAP = _UxGT("Swap Re.mm");
  514. LSTR MSG_CONTROL_RETRACTF = _UxGT("Retract V");
  515. LSTR MSG_CONTROL_RETRACT_ZHOP = _UxGT("Hop mm");
  516. LSTR MSG_CONTROL_RETRACT_RECOVER = _UxGT("Unretr. mm");
  517. LSTR MSG_CONTROL_RETRACT_RECOVER_SWAP = _UxGT("S Unretr. mm");
  518. LSTR MSG_CONTROL_RETRACT_RECOVERF = _UxGT("Unretract V");
  519. LSTR MSG_CONTROL_RETRACT_RECOVER_SWAPF = _UxGT("S UnRet V");
  520. LSTR MSG_AUTORETRACT = _UxGT("Auto-Retract");
  521. LSTR MSG_FILAMENT_SWAP_LENGTH = _UxGT("Swap Length");
  522. LSTR MSG_FILAMENT_SWAP_EXTRA = _UxGT("Swap Extra");
  523. LSTR MSG_FILAMENT_PURGE_LENGTH = _UxGT("Purge Length");
  524. LSTR MSG_TOOL_CHANGE = _UxGT("Tool Change");
  525. LSTR MSG_TOOL_CHANGE_ZLIFT = _UxGT("Z Raise");
  526. LSTR MSG_SINGLENOZZLE_PRIME_SPEED = _UxGT("Prime Speed");
  527. LSTR MSG_SINGLENOZZLE_WIPE_RETRACT = _UxGT("Wipe Retract");
  528. LSTR MSG_SINGLENOZZLE_RETRACT_SPEED = _UxGT("Retract Speed");
  529. LSTR MSG_FILAMENT_PARK_ENABLED = _UxGT("Park Head");
  530. LSTR MSG_SINGLENOZZLE_UNRETRACT_SPEED = _UxGT("Recover Speed");
  531. LSTR MSG_SINGLENOZZLE_FAN_SPEED = _UxGT("Fan Speed");
  532. LSTR MSG_SINGLENOZZLE_FAN_TIME = _UxGT("Fan Time");
  533. LSTR MSG_TOOL_MIGRATION_ON = _UxGT("Auto ON");
  534. LSTR MSG_TOOL_MIGRATION_OFF = _UxGT("Auto OFF");
  535. LSTR MSG_TOOL_MIGRATION = _UxGT("Tool Migration");
  536. LSTR MSG_TOOL_MIGRATION_AUTO = _UxGT("Auto-migration");
  537. LSTR MSG_TOOL_MIGRATION_END = _UxGT("Last Extruder");
  538. LSTR MSG_TOOL_MIGRATION_SWAP = _UxGT("Migrate to *");
  539. LSTR MSG_FILAMENTCHANGE = _UxGT("Change Filament");
  540. LSTR MSG_FILAMENTCHANGE_E = _UxGT("Change Filament *");
  541. LSTR MSG_FILAMENTLOAD = _UxGT("Load Filament");
  542. LSTR MSG_FILAMENTLOAD_E = _UxGT("Load *");
  543. LSTR MSG_FILAMENTUNLOAD = _UxGT("Unload Filament");
  544. LSTR MSG_FILAMENTUNLOAD_E = _UxGT("Unload *");
  545. LSTR MSG_FILAMENTUNLOAD_ALL = _UxGT("Unload All");
  546. LSTR MSG_ATTACH_MEDIA = _UxGT("Attach ") MEDIA_TYPE_EN;
  547. LSTR MSG_CHANGE_MEDIA = _UxGT("Change ") MEDIA_TYPE_EN;
  548. LSTR MSG_RELEASE_MEDIA = _UxGT("Release ") MEDIA_TYPE_EN;
  549. LSTR MSG_ZPROBE_OUT = _UxGT("Z Probe Past Bed");
  550. LSTR MSG_SKEW_FACTOR = _UxGT("Skew Factor");
  551. LSTR MSG_BLTOUCH = _UxGT("BLTouch");
  552. LSTR MSG_BLTOUCH_SELFTEST = _UxGT("Self-Test");
  553. LSTR MSG_BLTOUCH_RESET = _UxGT("Reset");
  554. LSTR MSG_BLTOUCH_STOW = _UxGT("Stow");
  555. LSTR MSG_BLTOUCH_DEPLOY = _UxGT("Deploy");
  556. LSTR MSG_BLTOUCH_SW_MODE = _UxGT("SW-Mode");
  557. LSTR MSG_BLTOUCH_SPEED_MODE = _UxGT("High Speed");
  558. LSTR MSG_BLTOUCH_5V_MODE = _UxGT("5V-Mode");
  559. LSTR MSG_BLTOUCH_OD_MODE = _UxGT("OD-Mode");
  560. LSTR MSG_BLTOUCH_MODE_STORE = _UxGT("Mode-Store");
  561. LSTR MSG_BLTOUCH_MODE_STORE_5V = _UxGT("Set BLTouch to 5V");
  562. LSTR MSG_BLTOUCH_MODE_STORE_OD = _UxGT("Set BLTouch to OD");
  563. LSTR MSG_BLTOUCH_MODE_ECHO = _UxGT("Report Drain");
  564. LSTR MSG_BLTOUCH_MODE_CHANGE = _UxGT("DANGER: Bad settings can cause damage! Proceed anyway?");
  565. LSTR MSG_TOUCHMI_PROBE = _UxGT("TouchMI");
  566. LSTR MSG_TOUCHMI_INIT = _UxGT("Init TouchMI");
  567. LSTR MSG_TOUCHMI_ZTEST = _UxGT("Z Offset Test");
  568. LSTR MSG_TOUCHMI_SAVE = _UxGT("Save");
  569. LSTR MSG_MANUAL_DEPLOY_TOUCHMI = _UxGT("Deploy TouchMI");
  570. LSTR MSG_MANUAL_DEPLOY = _UxGT("Deploy Z-Probe");
  571. LSTR MSG_MANUAL_STOW = _UxGT("Stow Z-Probe");
  572. LSTR MSG_HOME_FIRST = _UxGT("Home %s%s%s First");
  573. LSTR MSG_ZPROBE_SETTINGS = _UxGT("Probe Settings");
  574. LSTR MSG_ZPROBE_OFFSETS = _UxGT("Probe Offsets");
  575. LSTR MSG_ZPROBE_XOFFSET = _UxGT("Probe X Offset");
  576. LSTR MSG_ZPROBE_YOFFSET = _UxGT("Probe Y Offset");
  577. LSTR MSG_ZPROBE_ZOFFSET = _UxGT("Probe Z Offset");
  578. LSTR MSG_ZPROBE_MARGIN = _UxGT("Probe Margin");
  579. LSTR MSG_Z_FEED_RATE = _UxGT("Z Feed Rate");
  580. LSTR MSG_ENABLE_HS_MODE = _UxGT("Enable HS mode");
  581. LSTR MSG_MOVE_NOZZLE_TO_BED = _UxGT("Move Nozzle to Bed");
  582. LSTR MSG_BABYSTEP_X = _UxGT("Babystep X");
  583. LSTR MSG_BABYSTEP_Y = _UxGT("Babystep Y");
  584. LSTR MSG_BABYSTEP_Z = _UxGT("Babystep Z");
  585. LSTR MSG_BABYSTEP_N = _UxGT("Babystep @");
  586. LSTR MSG_BABYSTEP_TOTAL = _UxGT("Total");
  587. LSTR MSG_ENDSTOP_ABORT = _UxGT("Endstop Abort");
  588. LSTR MSG_HEATING_FAILED_LCD = _UxGT("Heating Failed");
  589. LSTR MSG_ERR_REDUNDANT_TEMP = _UxGT("Err: REDUNDANT TEMP");
  590. LSTR MSG_THERMAL_RUNAWAY = _UxGT("THERMAL RUNAWAY");
  591. LSTR MSG_TEMP_MALFUNCTION = _UxGT("TEMP MALFUNCTION");
  592. LSTR MSG_THERMAL_RUNAWAY_BED = _UxGT("BED THERMAL RUNAWAY");
  593. LSTR MSG_THERMAL_RUNAWAY_CHAMBER = _UxGT("CHAMBER T. RUNAWAY");
  594. LSTR MSG_THERMAL_RUNAWAY_COOLER = _UxGT("Cooler Runaway");
  595. LSTR MSG_COOLING_FAILED = _UxGT("Cooling Failed");
  596. LSTR MSG_ERR_MAXTEMP = _UxGT("Err: MAXTEMP");
  597. LSTR MSG_ERR_MINTEMP = _UxGT("Err: MINTEMP");
  598. LSTR MSG_HALTED = _UxGT("PRINTER HALTED");
  599. LSTR MSG_PLEASE_WAIT = _UxGT("Please wait...");
  600. LSTR MSG_PLEASE_RESET = _UxGT("Please Reset");
  601. LSTR MSG_PREHEATING = _UxGT("Preheating...");
  602. LSTR MSG_HEATING = _UxGT("Heating...");
  603. LSTR MSG_COOLING = _UxGT("Cooling...");
  604. LSTR MSG_BED_HEATING = _UxGT("Bed Heating...");
  605. LSTR MSG_BED_COOLING = _UxGT("Bed Cooling...");
  606. LSTR MSG_PROBE_HEATING = _UxGT("Probe Heating...");
  607. LSTR MSG_PROBE_COOLING = _UxGT("Probe Cooling...");
  608. LSTR MSG_CHAMBER_HEATING = _UxGT("Chamber Heating...");
  609. LSTR MSG_CHAMBER_COOLING = _UxGT("Chamber Cooling...");
  610. LSTR MSG_LASER_COOLING = _UxGT("Laser Cooling...");
  611. LSTR MSG_DELTA_CALIBRATE = _UxGT("Delta Calibration");
  612. LSTR MSG_DELTA_CALIBRATE_X = _UxGT("Calibrate X");
  613. LSTR MSG_DELTA_CALIBRATE_Y = _UxGT("Calibrate Y");
  614. LSTR MSG_DELTA_CALIBRATE_Z = _UxGT("Calibrate Z");
  615. LSTR MSG_DELTA_CALIBRATE_CENTER = _UxGT("Calibrate Center");
  616. LSTR MSG_DELTA_SETTINGS = _UxGT("Delta Settings");
  617. LSTR MSG_DELTA_AUTO_CALIBRATE = _UxGT("Auto Calibration");
  618. LSTR MSG_DELTA_DIAG_ROD = _UxGT("Diag Rod");
  619. LSTR MSG_DELTA_HEIGHT = _UxGT("Height");
  620. LSTR MSG_DELTA_RADIUS = _UxGT("Radius");
  621. LSTR MSG_INFO_MENU = _UxGT("About Printer");
  622. LSTR MSG_INFO_PRINTER_MENU = _UxGT("Printer Info");
  623. LSTR MSG_3POINT_LEVELING = _UxGT("3-Point Leveling");
  624. LSTR MSG_LINEAR_LEVELING = _UxGT("Linear Leveling");
  625. LSTR MSG_BILINEAR_LEVELING = _UxGT("Bilinear Leveling");
  626. LSTR MSG_UBL_LEVELING = _UxGT("Unified Bed Leveling");
  627. LSTR MSG_MESH_LEVELING = _UxGT("Mesh Leveling");
  628. LSTR MSG_MESH_DONE = _UxGT("Mesh probing done");
  629. LSTR MSG_INFO_STATS_MENU = _UxGT("Printer Stats");
  630. LSTR MSG_INFO_BOARD_MENU = _UxGT("Board Info");
  631. LSTR MSG_INFO_THERMISTOR_MENU = _UxGT("Thermistors");
  632. LSTR MSG_INFO_EXTRUDERS = _UxGT("Extruders");
  633. LSTR MSG_INFO_BAUDRATE = _UxGT("Baud");
  634. LSTR MSG_INFO_PROTOCOL = _UxGT("Protocol");
  635. LSTR MSG_INFO_RUNAWAY_OFF = _UxGT("Runaway Watch: OFF");
  636. LSTR MSG_INFO_RUNAWAY_ON = _UxGT("Runaway Watch: ON");
  637. LSTR MSG_HOTEND_IDLE_TIMEOUT = _UxGT("Hotend Idle Timeout");
  638. LSTR MSG_FAN_SPEED_FAULT = _UxGT("Fan speed fault");
  639. LSTR MSG_CASE_LIGHT = _UxGT("Case Light");
  640. LSTR MSG_CASE_LIGHT_BRIGHTNESS = _UxGT("Light Brightness");
  641. LSTR MSG_KILL_EXPECTED_PRINTER = _UxGT("INCORRECT PRINTER");
  642. LSTR MSG_COLORS_GET = _UxGT("Get Color");
  643. LSTR MSG_COLORS_SELECT = _UxGT("Select Colors");
  644. LSTR MSG_COLORS_APPLIED = _UxGT("Colors applied");
  645. LSTR MSG_COLORS_RED = _UxGT("Red");
  646. LSTR MSG_COLORS_GREEN = _UxGT("Green");
  647. LSTR MSG_COLORS_BLUE = _UxGT("Blue");
  648. LSTR MSG_COLORS_WHITE = _UxGT("White");
  649. LSTR MSG_UI_LANGUAGE = _UxGT("UI Language");
  650. LSTR MSG_SOUND_ENABLE = _UxGT("Enable sound");
  651. LSTR MSG_LOCKSCREEN = _UxGT("Lock Screen");
  652. LSTR MSG_LOCKSCREEN_LOCKED = _UxGT("Printer is Locked,");
  653. LSTR MSG_LOCKSCREEN_UNLOCK = _UxGT("Scroll to unlock.");
  654. LSTR MSG_PLEASE_WAIT_REBOOT = _UxGT("Please wait until reboot.");
  655. #if LCD_WIDTH >= 20 || HAS_DWIN_E3V2
  656. LSTR MSG_MEDIA_NOT_INSERTED = _UxGT("No media inserted.");
  657. LSTR MSG_PLEASE_PREHEAT = _UxGT("Please preheat the hot end.");
  658. LSTR MSG_INFO_PRINT_COUNT_RESET = _UxGT("Reset Print Count");
  659. LSTR MSG_INFO_PRINT_COUNT = _UxGT("Print Count");
  660. LSTR MSG_INFO_PRINT_TIME = _UxGT("Print Time");
  661. LSTR MSG_INFO_PRINT_LONGEST = _UxGT("Longest Job Time");
  662. LSTR MSG_INFO_PRINT_FILAMENT = _UxGT("Extruded Total");
  663. #else
  664. LSTR MSG_MEDIA_NOT_INSERTED = _UxGT("No Media");
  665. LSTR MSG_PLEASE_PREHEAT = _UxGT("Please Preheat");
  666. LSTR MSG_INFO_PRINT_COUNT = _UxGT("Prints");
  667. LSTR MSG_INFO_PRINT_TIME = _UxGT("Total");
  668. LSTR MSG_INFO_PRINT_LONGEST = _UxGT("Longest");
  669. LSTR MSG_INFO_PRINT_FILAMENT = _UxGT("Extruded");
  670. #endif
  671. LSTR MSG_INFO_COMPLETED_PRINTS = _UxGT("Completed");
  672. LSTR MSG_INFO_MIN_TEMP = _UxGT("Min Temp");
  673. LSTR MSG_INFO_MAX_TEMP = _UxGT("Max Temp");
  674. LSTR MSG_INFO_PSU = _UxGT("PSU");
  675. LSTR MSG_DRIVE_STRENGTH = _UxGT("Drive Strength");
  676. LSTR MSG_DAC_PERCENT_N = _UxGT("@ Driver %");
  677. LSTR MSG_ERROR_TMC = _UxGT("TMC CONNECTION ERROR");
  678. LSTR MSG_DAC_EEPROM_WRITE = _UxGT("DAC EEPROM Write");
  679. LSTR MSG_FILAMENT_CHANGE_HEADER = _UxGT("FILAMENT CHANGE");
  680. LSTR MSG_FILAMENT_CHANGE_HEADER_PAUSE = _UxGT("PRINT PAUSED");
  681. LSTR MSG_FILAMENT_CHANGE_HEADER_LOAD = _UxGT("LOAD FILAMENT");
  682. LSTR MSG_FILAMENT_CHANGE_HEADER_UNLOAD = _UxGT("UNLOAD FILAMENT");
  683. LSTR MSG_FILAMENT_CHANGE_OPTION_HEADER = _UxGT("RESUME OPTIONS:");
  684. LSTR MSG_FILAMENT_CHANGE_OPTION_PURGE = _UxGT("Purge more");
  685. LSTR MSG_FILAMENT_CHANGE_OPTION_RESUME = _UxGT("Continue");
  686. LSTR MSG_FILAMENT_CHANGE_PURGE_CONTINUE = _UxGT("Purge or Continue?");
  687. LSTR MSG_FILAMENT_CHANGE_NOZZLE = _UxGT(" Nozzle: ");
  688. LSTR MSG_RUNOUT_SENSOR = _UxGT("Runout Sensor");
  689. LSTR MSG_RUNOUT_DISTANCE_MM = _UxGT("Runout Dist mm");
  690. LSTR MSG_RUNOUT_ENABLE = _UxGT("Enable Runout");
  691. LSTR MSG_RUNOUT_ACTIVE = _UxGT("Runout Active");
  692. LSTR MSG_INVERT_EXTRUDER = _UxGT("Invert Extruder");
  693. LSTR MSG_EXTRUDER_MIN_TEMP = _UxGT("Extruder Min Temp.");
  694. LSTR MSG_FANCHECK = _UxGT("Fan Tacho Check");
  695. LSTR MSG_KILL_HOMING_FAILED = _UxGT("Homing Failed");
  696. LSTR MSG_LCD_PROBING_FAILED = _UxGT("Probing Failed");
  697. LSTR MSG_MMU2_CHOOSE_FILAMENT_HEADER = _UxGT("CHOOSE FILAMENT");
  698. LSTR MSG_MMU2_MENU = _UxGT("MMU");
  699. LSTR MSG_KILL_MMU2_FIRMWARE = _UxGT("Update MMU Firmware!");
  700. LSTR MSG_MMU2_NOT_RESPONDING = _UxGT("MMU Needs Attention.");
  701. LSTR MSG_MMU2_RESUME = _UxGT("MMU Resume");
  702. LSTR MSG_MMU2_RESUMING = _UxGT("MMU Resuming...");
  703. LSTR MSG_MMU2_LOAD_FILAMENT = _UxGT("MMU Load");
  704. LSTR MSG_MMU2_LOAD_ALL = _UxGT("MMU Load All");
  705. LSTR MSG_MMU2_LOAD_TO_NOZZLE = _UxGT("MMU Load to Nozzle");
  706. LSTR MSG_MMU2_EJECT_FILAMENT = _UxGT("MMU Eject");
  707. LSTR MSG_MMU2_EJECT_FILAMENT_N = _UxGT("MMU Eject ~");
  708. LSTR MSG_MMU2_UNLOAD_FILAMENT = _UxGT("MMU Unload");
  709. LSTR MSG_MMU2_LOADING_FILAMENT = _UxGT("Loading Fil. %i...");
  710. LSTR MSG_MMU2_EJECTING_FILAMENT = _UxGT("Ejecting Fil. ...");
  711. LSTR MSG_MMU2_UNLOADING_FILAMENT = _UxGT("Unloading Fil....");
  712. LSTR MSG_MMU2_ALL = _UxGT("All");
  713. LSTR MSG_MMU2_FILAMENT_N = _UxGT("Filament ~");
  714. LSTR MSG_MMU2_RESET = _UxGT("Reset MMU");
  715. LSTR MSG_MMU2_RESETTING = _UxGT("MMU Resetting...");
  716. LSTR MSG_MMU2_EJECT_RECOVER = _UxGT("Remove, click");
  717. LSTR MSG_MIX = _UxGT("Mix");
  718. LSTR MSG_MIX_COMPONENT_N = _UxGT("Component =");
  719. LSTR MSG_MIXER = _UxGT("Mixer");
  720. LSTR MSG_GRADIENT = _UxGT("Gradient");
  721. LSTR MSG_FULL_GRADIENT = _UxGT("Full Gradient");
  722. LSTR MSG_TOGGLE_MIX = _UxGT("Toggle Mix");
  723. LSTR MSG_CYCLE_MIX = _UxGT("Cycle Mix");
  724. LSTR MSG_GRADIENT_MIX = _UxGT("Gradient Mix");
  725. LSTR MSG_REVERSE_GRADIENT = _UxGT("Reverse Gradient");
  726. LSTR MSG_ACTIVE_VTOOL = _UxGT("Active V-tool");
  727. LSTR MSG_START_VTOOL = _UxGT("Start V-tool");
  728. LSTR MSG_END_VTOOL = _UxGT(" End V-tool");
  729. LSTR MSG_GRADIENT_ALIAS = _UxGT("Alias V-tool");
  730. LSTR MSG_RESET_VTOOLS = _UxGT("Reset V-tools");
  731. LSTR MSG_COMMIT_VTOOL = _UxGT("Commit V-tool Mix");
  732. LSTR MSG_VTOOLS_RESET = _UxGT("V-tools Were Reset");
  733. LSTR MSG_START_Z = _UxGT("Start Z:");
  734. LSTR MSG_END_Z = _UxGT(" End Z:");
  735. LSTR MSG_GAMES = _UxGT("Games");
  736. LSTR MSG_BRICKOUT = _UxGT("Brickout");
  737. LSTR MSG_INVADERS = _UxGT("Invaders");
  738. LSTR MSG_SNAKE = _UxGT("Sn4k3");
  739. LSTR MSG_MAZE = _UxGT("Maze");
  740. LSTR MSG_BAD_PAGE = _UxGT("Bad page index");
  741. LSTR MSG_BAD_PAGE_SPEED = _UxGT("Bad page speed");
  742. LSTR MSG_EDIT_PASSWORD = _UxGT("Edit Password");
  743. LSTR MSG_LOGIN_REQUIRED = _UxGT("Login Required");
  744. LSTR MSG_PASSWORD_SETTINGS = _UxGT("Password Settings");
  745. LSTR MSG_ENTER_DIGIT = _UxGT("Enter Digit");
  746. LSTR MSG_CHANGE_PASSWORD = _UxGT("Set/Edit Password");
  747. LSTR MSG_REMOVE_PASSWORD = _UxGT("Remove Password");
  748. LSTR MSG_PASSWORD_SET = _UxGT("Password is ");
  749. LSTR MSG_START_OVER = _UxGT("Start Over");
  750. LSTR MSG_REMINDER_SAVE_SETTINGS = _UxGT("Remember to Save!");
  751. LSTR MSG_PASSWORD_REMOVED = _UxGT("Password Removed");
  752. //
  753. // Filament Change screens show up to 3 lines on a 4-line display
  754. // ...or up to 2 lines on a 3-line display
  755. //
  756. #if LCD_HEIGHT >= 4
  757. LSTR MSG_ADVANCED_PAUSE_WAITING = _UxGT(MSG_2_LINE("Press Button", "to resume print"));
  758. LSTR MSG_PAUSE_PRINT_PARKING = _UxGT(MSG_1_LINE("Parking..."));
  759. LSTR MSG_FILAMENT_CHANGE_INIT = _UxGT(MSG_3_LINE("Wait for", "filament change", "to start"));
  760. LSTR MSG_FILAMENT_CHANGE_INSERT = _UxGT(MSG_3_LINE("Insert filament", "and press button", "to continue"));
  761. LSTR MSG_FILAMENT_CHANGE_HEAT = _UxGT(MSG_2_LINE("Press button", "to heat nozzle"));
  762. LSTR MSG_FILAMENT_CHANGE_HEATING = _UxGT(MSG_2_LINE("Nozzle heating", "Please wait..."));
  763. LSTR MSG_FILAMENT_CHANGE_UNLOAD = _UxGT(MSG_2_LINE("Wait for", "filament unload"));
  764. LSTR MSG_FILAMENT_CHANGE_LOAD = _UxGT(MSG_2_LINE("Wait for", "filament load"));
  765. LSTR MSG_FILAMENT_CHANGE_PURGE = _UxGT(MSG_2_LINE("Wait for", "filament purge"));
  766. LSTR MSG_FILAMENT_CHANGE_CONT_PURGE = _UxGT(MSG_2_LINE("Click to finish", "filament purge"));
  767. LSTR MSG_FILAMENT_CHANGE_RESUME = _UxGT(MSG_2_LINE("Wait for print", "to resume..."));
  768. #else
  769. LSTR MSG_ADVANCED_PAUSE_WAITING = _UxGT(MSG_1_LINE("Click to continue"));
  770. LSTR MSG_PAUSE_PRINT_PARKING = _UxGT(MSG_1_LINE("Parking..."));
  771. LSTR MSG_FILAMENT_CHANGE_INIT = _UxGT(MSG_1_LINE("Please wait..."));
  772. LSTR MSG_FILAMENT_CHANGE_INSERT = _UxGT(MSG_1_LINE("Insert and Click"));
  773. LSTR MSG_FILAMENT_CHANGE_HEAT = _UxGT(MSG_1_LINE("Click to heat"));
  774. LSTR MSG_FILAMENT_CHANGE_HEATING = _UxGT(MSG_1_LINE("Heating..."));
  775. LSTR MSG_FILAMENT_CHANGE_UNLOAD = _UxGT(MSG_1_LINE("Ejecting..."));
  776. LSTR MSG_FILAMENT_CHANGE_LOAD = _UxGT(MSG_1_LINE("Loading..."));
  777. LSTR MSG_FILAMENT_CHANGE_PURGE = _UxGT(MSG_1_LINE("Purging..."));
  778. LSTR MSG_FILAMENT_CHANGE_CONT_PURGE = _UxGT(MSG_1_LINE("Click to finish"));
  779. LSTR MSG_FILAMENT_CHANGE_RESUME = _UxGT(MSG_1_LINE("Resuming..."));
  780. #endif
  781. LSTR MSG_TMC_DRIVERS = _UxGT("TMC Drivers");
  782. LSTR MSG_TMC_CURRENT = _UxGT("Driver Current");
  783. LSTR MSG_TMC_HYBRID_THRS = _UxGT("Hybrid Threshold");
  784. LSTR MSG_TMC_HOMING_THRS = _UxGT("Sensorless Homing");
  785. LSTR MSG_TMC_STEPPING_MODE = _UxGT("Stepping Mode");
  786. LSTR MSG_TMC_STEALTH_ENABLED = _UxGT("StealthChop Enabled");
  787. LSTR MSG_SERVICE_RESET = _UxGT("Reset");
  788. LSTR MSG_SERVICE_IN = _UxGT(" in:");
  789. LSTR MSG_BACKLASH = _UxGT("Backlash");
  790. LSTR MSG_BACKLASH_CORRECTION = _UxGT("Correction");
  791. LSTR MSG_BACKLASH_SMOOTHING = _UxGT("Smoothing");
  792. LSTR MSG_LEVEL_X_AXIS = _UxGT("Level X Axis");
  793. LSTR MSG_AUTO_CALIBRATE = _UxGT("Auto Calibrate");
  794. #if ENABLED(TOUCH_UI_FTDI_EVE)
  795. LSTR MSG_HEATER_TIMEOUT = _UxGT("Idle timeout, temperature decreased. Press Okay to reheat and again to resume.");
  796. #else
  797. LSTR MSG_HEATER_TIMEOUT = _UxGT("Heater Timeout");
  798. #endif
  799. LSTR MSG_REHEAT = _UxGT("Reheat");
  800. LSTR MSG_REHEATING = _UxGT("Reheating...");
  801. LSTR MSG_REHEATDONE = _UxGT("Reheat Done");
  802. LSTR MSG_PROBE_WIZARD = _UxGT("Z Probe Wizard");
  803. LSTR MSG_PROBE_WIZARD_PROBING = _UxGT("Probing Z Reference");
  804. LSTR MSG_PROBE_WIZARD_MOVING = _UxGT("Moving to Probing Pos");
  805. LSTR MSG_XATC = _UxGT("X-Twist Wizard");
  806. LSTR MSG_XATC_DONE = _UxGT("X-Twist Wizard Done!");
  807. LSTR MSG_XATC_UPDATE_Z_OFFSET = _UxGT("Update Probe Z-Offset to ");
  808. LSTR MSG_SOUND = _UxGT("Sound");
  809. LSTR MSG_TOP_LEFT = _UxGT("Top Left");
  810. LSTR MSG_BOTTOM_LEFT = _UxGT("Bottom Left");
  811. LSTR MSG_TOP_RIGHT = _UxGT("Top Right");
  812. LSTR MSG_BOTTOM_RIGHT = _UxGT("Bottom Right");
  813. LSTR MSG_CALIBRATION_COMPLETED = _UxGT("Calibration Completed");
  814. LSTR MSG_CALIBRATION_FAILED = _UxGT("Calibration Failed");
  815. LSTR MSG_DRIVER_BACKWARD = _UxGT(" driver backward");
  816. LSTR MSG_SD_CARD = _UxGT("SD Card");
  817. LSTR MSG_USB_DISK = _UxGT("USB Disk");
  818. LSTR MSG_HOST_SHUTDOWN = _UxGT("Host Shutdown");
  819. // These strings can be the same in all languages
  820. LSTR MSG_MARLIN = _UxGT("Marlin");
  821. LSTR MSG_SHORT_DAY = _UxGT("d"); // One character only
  822. LSTR MSG_SHORT_HOUR = _UxGT("h"); // One character only
  823. LSTR MSG_SHORT_MINUTE = _UxGT("m"); // One character only
  824. LSTR MSG_PID_P = _UxGT("PID-P");
  825. LSTR MSG_PID_P_E = _UxGT("PID-P *");
  826. LSTR MSG_PID_I = _UxGT("PID-I");
  827. LSTR MSG_PID_I_E = _UxGT("PID-I *");
  828. LSTR MSG_PID_D = _UxGT("PID-D");
  829. LSTR MSG_PID_D_E = _UxGT("PID-D *");
  830. LSTR MSG_PID_C = _UxGT("PID-C");
  831. LSTR MSG_PID_C_E = _UxGT("PID-C *");
  832. LSTR MSG_PID_F = _UxGT("PID-F");
  833. LSTR MSG_PID_F_E = _UxGT("PID-F *");
  834. LSTR MSG_BACKLASH_N = _UxGT("@");
  835. }
  836. #if FAN_COUNT == 1
  837. #define MSG_FIRST_FAN_SPEED MSG_FAN_SPEED
  838. #define MSG_EXTRA_FIRST_FAN_SPEED MSG_EXTRA_FAN_SPEED
  839. #else
  840. #define MSG_FIRST_FAN_SPEED MSG_FAN_SPEED_N
  841. #define MSG_EXTRA_FIRST_FAN_SPEED MSG_EXTRA_FAN_SPEED_N
  842. #endif