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_ko_KR.h 25KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  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. * Korean
  24. *
  25. * LCD Menu Messages
  26. * See also http://marlinfw.org/docs/development/lcd_language.html
  27. *
  28. */
  29. #ifndef LANGUAGE_KO_KR_H
  30. #define LANGUAGE_KO_KR_H
  31. #define CHARSIZE 1
  32. #define WELCOME_MSG MACHINE_NAME _UxGT(" 준비.")
  33. #define MSG_BACK _UxGT("뒤로")
  34. #define MSG_SD_INSERTED _UxGT("카드 삽입됨")
  35. #define MSG_SD_REMOVED _UxGT("카드 제거됨")
  36. #define MSG_LCD_ENDSTOPS _UxGT("엔드스탑")
  37. #define MSG_LCD_SOFT_ENDSTOPS _UxGT("소프트 엔드스탑")
  38. #define MSG_MAIN _UxGT("뒤로")
  39. #define MSG_ADVANCED_SETTINGS _UxGT("고급 설정")
  40. #define MSG_CONFIGURATION _UxGT("설정")
  41. #define MSG_AUTOSTART _UxGT("자동 시작")
  42. #define MSG_DISABLE_STEPPERS _UxGT("모터 정지")
  43. #define MSG_DEBUG_MENU _UxGT("디버깅 메뉴")
  44. #define MSG_PROGRESS_BAR_TEST _UxGT("프로그레스바 테스트")
  45. #define MSG_AUTO_HOME _UxGT("오토홈")
  46. #define MSG_AUTO_HOME_X _UxGT("X 홈으로")
  47. #define MSG_AUTO_HOME_Y _UxGT("Y 홈으로")
  48. #define MSG_AUTO_HOME_Z _UxGT("Z 홈으로")
  49. #define MSG_TMC_Z_CALIBRATION _UxGT("Z 캘리브레이션")
  50. #define MSG_LEVEL_BED_HOMING _UxGT("XYZ 홈으로")
  51. #define MSG_LEVEL_BED_WAITING _UxGT("누르면 시작합니다")
  52. #define MSG_LEVEL_BED_NEXT_POINT _UxGT("다음 Point")
  53. #define MSG_LEVEL_BED_DONE _UxGT("레벨링 완료!")
  54. #define MSG_Z_FADE_HEIGHT _UxGT("Fade Height")
  55. #define MSG_SET_HOME_OFFSETS _UxGT("Set home offsets")
  56. #define MSG_HOME_OFFSETS_APPLIED _UxGT("Offsets applied")
  57. #define MSG_SET_ORIGIN _UxGT("Set origin")
  58. #define MSG_PREHEAT_1 _UxGT("예열하기 - PLA")
  59. #define MSG_PREHEAT_1_N MSG_PREHEAT_1 _UxGT(" ")
  60. #define MSG_PREHEAT_1_ALL MSG_PREHEAT_1 _UxGT(" 모두")
  61. #define MSG_PREHEAT_1_END MSG_PREHEAT_1 _UxGT(" 노즐만")
  62. #define MSG_PREHEAT_1_BEDONLY MSG_PREHEAT_1 _UxGT(" 베드만")
  63. #define MSG_PREHEAT_1_SETTINGS MSG_PREHEAT_1 _UxGT(" conf")
  64. #define MSG_PREHEAT_2 _UxGT("예열하기 - ABS")
  65. #define MSG_PREHEAT_2_N MSG_PREHEAT_2 _UxGT(" ")
  66. #define MSG_PREHEAT_2_ALL MSG_PREHEAT_2 _UxGT(" 모두")
  67. #define MSG_PREHEAT_2_END MSG_PREHEAT_2 _UxGT(" 노즐만")
  68. #define MSG_PREHEAT_2_BEDONLY MSG_PREHEAT_2 _UxGT(" 베드만")
  69. #define MSG_PREHEAT_2_SETTINGS MSG_PREHEAT_2 _UxGT(" conf")
  70. #define MSG_PREHEAT_CUSTOM _UxGT("Custom 예열")
  71. #define MSG_COOLDOWN _UxGT("식히기")
  72. #define MSG_SWITCH_PS_ON _UxGT("스위치 전원 켜기")
  73. #define MSG_SWITCH_PS_OFF _UxGT("스위치 전원 끄기")
  74. #define MSG_EXTRUDE _UxGT("밀어내기")
  75. #define MSG_RETRACT _UxGT("당기기")
  76. #define MSG_MOVE_AXIS _UxGT("축 이동")
  77. #define MSG_BED_LEVELING _UxGT("베드 레벨링")
  78. #define MSG_LEVEL_BED _UxGT("Level bed")
  79. #define MSG_LEVEL_CORNERS _UxGT("Level corners")
  80. #define MSG_NEXT_CORNER _UxGT("Next corner")
  81. #define MSG_EDITING_STOPPED _UxGT("Mesh Editing Stopped")
  82. #define MSG_USER_MENU _UxGT("Custom User Commands")
  83. #define MSG_UBL_DOING_G29 _UxGT("오토레벨링 하기")
  84. #define MSG_UBL_UNHOMED _UxGT("Home XYZ first")
  85. #define MSG_UBL_TOOLS _UxGT("UBL Tools")
  86. #define MSG_UBL_LEVEL_BED _UxGT("Unified Bed Leveling")
  87. #define MSG_IDEX_MENU _UxGT("IDEX Mode")
  88. #define MSG_IDEX_MODE_AUTOPARK _UxGT("Auto-Park")
  89. #define MSG_IDEX_MODE_DUPLICATE _UxGT("Duplication")
  90. #define MSG_IDEX_MODE_SCALED_COPY _UxGT("Scaled copy")
  91. #define MSG_IDEX_MODE_FULL_CTRL _UxGT("Full control")
  92. #define MSG_IDEX_X_OFFSET _UxGT("2nd nozzle X")
  93. #define MSG_IDEX_Y_OFFSET _UxGT("2nd nozzle Y")
  94. #define MSG_IDEX_Z_OFFSET _UxGT("2nd nozzle Z")
  95. #define MSG_IDEX_SAVE_OFFSETS _UxGT("Save Offsets")
  96. #define MSG_UBL_MANUAL_MESH _UxGT("Manually Build Mesh")
  97. #define MSG_UBL_BC_INSERT _UxGT("Place shim & measure")
  98. #define MSG_UBL_BC_INSERT2 _UxGT("Measure")
  99. #define MSG_UBL_BC_REMOVE _UxGT("Remove & measure bed")
  100. #define MSG_UBL_MOVING_TO_NEXT _UxGT("Moving to next")
  101. #define MSG_UBL_ACTIVATE_MESH _UxGT("Activate UBL")
  102. #define MSG_UBL_DEACTIVATE_MESH _UxGT("Deactivate UBL")
  103. #define MSG_UBL_SET_BED_TEMP _UxGT("Bed Temp")
  104. #define MSG_UBL_CUSTOM_BED_TEMP MSG_UBL_SET_BED_TEMP
  105. #define MSG_UBL_SET_HOTEND_TEMP _UxGT("Hotend Temp")
  106. #define MSG_UBL_CUSTOM_HOTEND_TEMP MSG_UBL_SET_HOTEND_TEMP
  107. #define MSG_UBL_MESH_EDIT _UxGT("Mesh Edit")
  108. #define MSG_UBL_EDIT_CUSTOM_MESH _UxGT("Edit Custom Mesh")
  109. #define MSG_UBL_FINE_TUNE_MESH _UxGT("Fine Tuning Mesh")
  110. #define MSG_UBL_DONE_EDITING_MESH _UxGT("Done Editing Mesh")
  111. #define MSG_UBL_BUILD_CUSTOM_MESH _UxGT("Build Custom Mesh")
  112. #define MSG_UBL_BUILD_MESH_MENU _UxGT("Build Mesh")
  113. #define MSG_UBL_BUILD_PLA_MESH _UxGT("Build PLA Mesh")
  114. #define MSG_UBL_BUILD_ABS_MESH _UxGT("Build ABS Mesh")
  115. #define MSG_UBL_BUILD_COLD_MESH _UxGT("Build Cold Mesh")
  116. #define MSG_UBL_MESH_HEIGHT_ADJUST _UxGT("Adjust Mesh Height")
  117. #define MSG_UBL_MESH_HEIGHT_AMOUNT _UxGT("Height Amount")
  118. #define MSG_UBL_VALIDATE_MESH_MENU _UxGT("Validate Mesh")
  119. #define MSG_UBL_VALIDATE_PLA_MESH _UxGT("Validate PLA Mesh")
  120. #define MSG_UBL_VALIDATE_ABS_MESH _UxGT("Validate ABS Mesh")
  121. #define MSG_UBL_VALIDATE_CUSTOM_MESH _UxGT("Validate Custom Mesh")
  122. #define MSG_UBL_CONTINUE_MESH _UxGT("Continue Bed Mesh")
  123. #define MSG_UBL_MESH_LEVELING _UxGT("Mesh Leveling")
  124. #define MSG_UBL_3POINT_MESH_LEVELING _UxGT("3-Point Leveling")
  125. #define MSG_UBL_GRID_MESH_LEVELING _UxGT("Grid Mesh Leveling")
  126. #define MSG_UBL_MESH_LEVEL _UxGT("Level Mesh")
  127. #define MSG_UBL_SIDE_POINTS _UxGT("Side Points")
  128. #define MSG_UBL_MAP_TYPE _UxGT("Map Type")
  129. #define MSG_UBL_OUTPUT_MAP _UxGT("Output Mesh Map")
  130. #define MSG_UBL_OUTPUT_MAP_HOST _UxGT("Output for Host")
  131. #define MSG_UBL_OUTPUT_MAP_CSV _UxGT("Output for CSV")
  132. #define MSG_UBL_OUTPUT_MAP_BACKUP _UxGT("Off Printer Backup")
  133. #define MSG_UBL_INFO_UBL _UxGT("Output UBL Info")
  134. #define MSG_UBL_EDIT_MESH_MENU _UxGT("Edit Mesh")
  135. #define MSG_UBL_FILLIN_AMOUNT _UxGT("Fill-in Amount")
  136. #define MSG_UBL_MANUAL_FILLIN _UxGT("Manual Fill-in")
  137. #define MSG_UBL_SMART_FILLIN _UxGT("Smart Fill-in")
  138. #define MSG_UBL_FILLIN_MESH _UxGT("Fill-in Mesh")
  139. #define MSG_UBL_INVALIDATE_ALL _UxGT("Invalidate All")
  140. #define MSG_UBL_INVALIDATE_CLOSEST _UxGT("Invalidate Closest")
  141. #define MSG_UBL_FINE_TUNE_ALL _UxGT("Fine Tune All")
  142. #define MSG_UBL_FINE_TUNE_CLOSEST _UxGT("Fine Tune Closest")
  143. #define MSG_UBL_STORAGE_MESH_MENU _UxGT("Mesh Storage")
  144. #define MSG_UBL_STORAGE_SLOT _UxGT("Memory Slot")
  145. #define MSG_UBL_LOAD_MESH _UxGT("Load Bed Mesh")
  146. #define MSG_UBL_SAVE_MESH _UxGT("Save Bed Mesh")
  147. #define MSG_MESH_LOADED _UxGT("Mesh %i loaded")
  148. #define MSG_MESH_SAVED _UxGT("Mesh %i saved")
  149. #define MSG_NO_STORAGE _UxGT("No storage")
  150. #define MSG_UBL_SAVE_ERROR _UxGT("Err: UBL Save")
  151. #define MSG_UBL_RESTORE_ERROR _UxGT("Err: UBL Restore")
  152. #define MSG_UBL_Z_OFFSET_STOPPED _UxGT("Z-Offset Stopped")
  153. #define MSG_UBL_STEP_BY_STEP_MENU _UxGT("Step-By-Step UBL")
  154. #define MSG_LED_CONTROL _UxGT("LED Control")
  155. #define MSG_LEDS _UxGT("Lights")
  156. #define MSG_LED_PRESETS _UxGT("Light Presets")
  157. #define MSG_SET_LEDS_RED _UxGT("Red")
  158. #define MSG_SET_LEDS_ORANGE _UxGT("Orange")
  159. #define MSG_SET_LEDS_YELLOW _UxGT("Yellow")
  160. #define MSG_SET_LEDS_GREEN _UxGT("Green")
  161. #define MSG_SET_LEDS_BLUE _UxGT("Blue")
  162. #define MSG_SET_LEDS_INDIGO _UxGT("Indigo")
  163. #define MSG_SET_LEDS_VIOLET _UxGT("Violet")
  164. #define MSG_SET_LEDS_WHITE _UxGT("White")
  165. #define MSG_SET_LEDS_DEFAULT _UxGT("Default")
  166. #define MSG_CUSTOM_LEDS _UxGT("Custom Lights")
  167. #define MSG_INTENSITY_R _UxGT("Red Intensity")
  168. #define MSG_INTENSITY_G _UxGT("Green Intensity")
  169. #define MSG_INTENSITY_B _UxGT("Blue Intensity")
  170. #define MSG_INTENSITY_W _UxGT("White Intensity")
  171. #define MSG_LED_BRIGHTNESS _UxGT("Brightness")
  172. #define MSG_MOVING _UxGT("Moving...")
  173. #define MSG_FREE_XY _UxGT("Free XY")
  174. #define MSG_MOVE_X _UxGT("Move X")
  175. #define MSG_MOVE_Y _UxGT("Move Y")
  176. #define MSG_MOVE_Z _UxGT("Move Z")
  177. #define MSG_MOVE_E _UxGT("Extruder")
  178. #define MSG_MOVE_01MM _UxGT("Move 0.1mm")
  179. #define MSG_MOVE_1MM _UxGT("Move 1mm")
  180. #define MSG_MOVE_10MM _UxGT("Move 10mm")
  181. #define MSG_SPEED _UxGT("Speed")
  182. #define MSG_BED_Z _UxGT("Bed Z")
  183. #define MSG_NOZZLE _UxGT("노즐")
  184. #define MSG_BED _UxGT("베드")
  185. #define MSG_FAN_SPEED _UxGT("펜 속도")
  186. #define MSG_EXTRA_FAN_SPEED _UxGT("엑스트라 펜 속도")
  187. #define MSG_FLOW _UxGT("Flow")
  188. #define MSG_CONTROL _UxGT("Control")
  189. #define MSG_MIN _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Min")
  190. #define MSG_MAX _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Max")
  191. #define MSG_FACTOR _UxGT(" ") LCD_STR_THERMOMETER _UxGT(" Fact")
  192. #define MSG_AUTOTEMP _UxGT("Autotemp")
  193. #define MSG_ON _UxGT("On ")
  194. #define MSG_OFF _UxGT("Off")
  195. #define MSG_PID_P _UxGT("PID-P")
  196. #define MSG_PID_I _UxGT("PID-I")
  197. #define MSG_PID_D _UxGT("PID-D")
  198. #define MSG_PID_C _UxGT("PID-C")
  199. #define MSG_SELECT _UxGT("Select")
  200. #define MSG_ACC _UxGT("Accel")
  201. #define MSG_JERK _UxGT("Jerk")
  202. #if IS_KINEMATIC
  203. #define MSG_VA_JERK _UxGT("Va-jerk")
  204. #define MSG_VB_JERK _UxGT("Vb-jerk")
  205. #define MSG_VC_JERK _UxGT("Vc-jerk")
  206. #else
  207. #define MSG_VA_JERK _UxGT("Vx-jerk")
  208. #define MSG_VB_JERK _UxGT("Vy-jerk")
  209. #define MSG_VC_JERK _UxGT("Vz-jerk")
  210. #endif
  211. #define MSG_VE_JERK _UxGT("Ve-jerk")
  212. #define MSG_JUNCTION_DEVIATION _UxGT("Junction Dev")
  213. #define MSG_VELOCITY _UxGT("Velocity")
  214. #define MSG_VMAX _UxGT("Vmax ")
  215. #define MSG_VMIN _UxGT("Vmin")
  216. #define MSG_VTRAV_MIN _UxGT("VTrav min")
  217. #define MSG_ACCELERATION _UxGT("Acceleration")
  218. #define MSG_AMAX _UxGT("Amax ")
  219. #define MSG_A_RETRACT _UxGT("A-retract")
  220. #define MSG_A_TRAVEL _UxGT("A-travel")
  221. #define MSG_STEPS_PER_MM _UxGT("Steps/mm")
  222. #if IS_KINEMATIC
  223. #define MSG_ASTEPS _UxGT("Asteps/mm")
  224. #define MSG_BSTEPS _UxGT("Bsteps/mm")
  225. #define MSG_CSTEPS _UxGT("Csteps/mm")
  226. #else
  227. #define MSG_ASTEPS _UxGT("Xsteps/mm")
  228. #define MSG_BSTEPS _UxGT("Ysteps/mm")
  229. #define MSG_CSTEPS _UxGT("Zsteps/mm")
  230. #endif
  231. #define MSG_ESTEPS _UxGT("Esteps/mm")
  232. #define MSG_E1STEPS _UxGT("E1steps/mm")
  233. #define MSG_E2STEPS _UxGT("E2steps/mm")
  234. #define MSG_E3STEPS _UxGT("E3steps/mm")
  235. #define MSG_E4STEPS _UxGT("E4steps/mm")
  236. #define MSG_E5STEPS _UxGT("E5steps/mm")
  237. #define MSG_E6STEPS _UxGT("E6steps/mm")
  238. #define MSG_TEMPERATURE _UxGT("온도")
  239. #define MSG_MOTION _UxGT("동작")
  240. #define MSG_FILAMENT _UxGT("Filament")
  241. #define MSG_VOLUMETRIC_ENABLED _UxGT("E in mm3")
  242. #define MSG_FILAMENT_DIAM _UxGT("Fil. Dia.")
  243. #define MSG_FILAMENT_UNLOAD _UxGT("Unload mm")
  244. #define MSG_FILAMENT_LOAD _UxGT("Load mm")
  245. #define MSG_ADVANCE_K _UxGT("Advance K")
  246. #define MSG_CONTRAST _UxGT("LCD contrast")
  247. #define MSG_STORE_EEPROM _UxGT("설정 저장하기")
  248. #define MSG_LOAD_EEPROM _UxGT("설정 읽어오기")
  249. #define MSG_RESTORE_FAILSAFE _UxGT("설정 되돌리기")
  250. #define MSG_INIT_EEPROM _UxGT("EEPROM 초기화")
  251. #define MSG_REFRESH _UxGT("새로고침")
  252. #define MSG_WATCH _UxGT("처음으로")
  253. #define MSG_PREPARE _UxGT("준비하기")
  254. #define MSG_TUNE _UxGT("Tune")
  255. #define MSG_PAUSE_PRINT _UxGT("일시정지")
  256. #define MSG_RESUME_PRINT _UxGT("재시작")
  257. #define MSG_STOP_PRINT _UxGT("출력중지")
  258. #define MSG_POWER_LOSS_RECOVERY _UxGT("Power-Loss Recovery")
  259. #define MSG_CARD_MENU _UxGT("SD 카드출력")
  260. #define MSG_NO_CARD _UxGT("SD 카드없음")
  261. #define MSG_DWELL _UxGT("슬립모드...")
  262. #define MSG_USERWAIT _UxGT("Click to resume...")
  263. #define MSG_PRINT_PAUSED _UxGT("일시 정지됨")
  264. #define MSG_PRINTING _UxGT("출력중...")
  265. #define MSG_PRINT_ABORTED _UxGT("취소됨")
  266. #define MSG_NO_MOVE _UxGT("No move.")
  267. #define MSG_KILLED _UxGT("죽음. ")
  268. #define MSG_STOPPED _UxGT("멈춤. ")
  269. #define MSG_CONTROL_RETRACT _UxGT("Retract mm")
  270. #define MSG_CONTROL_RETRACT_SWAP _UxGT("Swap Re.mm")
  271. #define MSG_CONTROL_RETRACTF _UxGT("Retract V")
  272. #define MSG_CONTROL_RETRACT_ZLIFT _UxGT("Hop mm")
  273. #define MSG_CONTROL_RETRACT_RECOVER _UxGT("UnRet mm")
  274. #define MSG_CONTROL_RETRACT_RECOVER_SWAP _UxGT("S UnRet mm")
  275. #define MSG_CONTROL_RETRACT_RECOVERF _UxGT("UnRet V")
  276. #define MSG_CONTROL_RETRACT_RECOVER_SWAPF _UxGT("S UnRet V")
  277. #define MSG_AUTORETRACT _UxGT("AutoRetr.")
  278. #define MSG_FILAMENTCHANGE _UxGT("Change filament")
  279. #define MSG_FILAMENTLOAD _UxGT("Load filament")
  280. #define MSG_FILAMENTUNLOAD _UxGT("Unload filament")
  281. #define MSG_FILAMENTUNLOAD_ALL _UxGT("Unload All")
  282. #define MSG_INIT_SDCARD _UxGT("Init. SD card")
  283. #define MSG_CNG_SDCARD _UxGT("Change SD card")
  284. #define MSG_ZPROBE_OUT _UxGT("Z Probe past bed")
  285. #define MSG_SKEW_FACTOR _UxGT("Skew Factor")
  286. #define MSG_BLTOUCH _UxGT("BLTouch")
  287. #define MSG_BLTOUCH_SELFTEST _UxGT("BLTouch Self-Test")
  288. #define MSG_BLTOUCH_RESET _UxGT("Reset BLTouch")
  289. #define MSG_BLTOUCH_DEPLOY _UxGT("Deploy BLTouch")
  290. #define MSG_BLTOUCH_STOW _UxGT("Stow BLTouch")
  291. #define MSG_MANUAL_DEPLOY _UxGT("Deploy Z-Probe")
  292. #define MSG_MANUAL_STOW _UxGT("Stow Z-Probe")
  293. #define MSG_HOME _UxGT("Home") // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
  294. #define MSG_FIRST _UxGT("first")
  295. #define MSG_ZPROBE_ZOFFSET _UxGT("Probe Z Offset")
  296. #define MSG_BABYSTEP_X _UxGT("Babystep X")
  297. #define MSG_BABYSTEP_Y _UxGT("Babystep Y")
  298. #define MSG_BABYSTEP_Z _UxGT("Babystep Z")
  299. #define MSG_ENDSTOP_ABORT _UxGT("Endstop abort")
  300. #define MSG_HEATING_FAILED_LCD _UxGT("Heating failed")
  301. #define MSG_HEATING_FAILED_LCD_BED _UxGT("Bed heating failed")
  302. #define MSG_ERR_REDUNDANT_TEMP _UxGT("Err: REDUNDANT TEMP")
  303. #define MSG_THERMAL_RUNAWAY _UxGT("THERMAL RUNAWAY")
  304. #define MSG_THERMAL_RUNAWAY_BED _UxGT("BED THERMAL RUNAWAY")
  305. #define MSG_ERR_MAXTEMP _UxGT("Err: MAXTEMP")
  306. #define MSG_ERR_MINTEMP _UxGT("Err: MINTEMP")
  307. #define MSG_ERR_MAXTEMP_BED _UxGT("Err: MAXTEMP BED")
  308. #define MSG_ERR_MINTEMP_BED _UxGT("Err: MINTEMP BED")
  309. #define MSG_ERR_Z_HOMING MSG_HOME _UxGT(" ") MSG_X MSG_Y _UxGT(" ") MSG_FIRST
  310. #define MSG_HALTED _UxGT("PRINTER HALTED")
  311. #define MSG_PLEASE_RESET _UxGT("Please reset")
  312. #define MSG_SHORT_DAY _UxGT("d") // One character only
  313. #define MSG_SHORT_HOUR _UxGT("h") // One character only
  314. #define MSG_SHORT_MINUTE _UxGT("m") // One character only
  315. #define MSG_HEATING _UxGT("Heating...")
  316. #define MSG_COOLING _UxGT("Cooling...")
  317. #define MSG_BED_HEATING _UxGT("Bed heating...")
  318. #define MSG_BED_COOLING _UxGT("Bed cooling...")
  319. #define MSG_DELTA_CALIBRATE _UxGT("Delta Calibration")
  320. #define MSG_DELTA_CALIBRATE_X _UxGT("Calibrate X")
  321. #define MSG_DELTA_CALIBRATE_Y _UxGT("Calibrate Y")
  322. #define MSG_DELTA_CALIBRATE_Z _UxGT("Calibrate Z")
  323. #define MSG_DELTA_CALIBRATE_CENTER _UxGT("Calibrate Center")
  324. #define MSG_DELTA_SETTINGS _UxGT("Delta Settings")
  325. #define MSG_DELTA_AUTO_CALIBRATE _UxGT("Auto Calibration")
  326. #define MSG_DELTA_HEIGHT_CALIBRATE _UxGT("Set Delta Height")
  327. #define MSG_DELTA_Z_OFFSET_CALIBRATE _UxGT("Probe Z-offset")
  328. #define MSG_DELTA_DIAG_ROD _UxGT("Diag Rod")
  329. #define MSG_DELTA_HEIGHT _UxGT("Height")
  330. #define MSG_DELTA_RADIUS _UxGT("Radius")
  331. #define MSG_INFO_MENU _UxGT("About Printer")
  332. #define MSG_INFO_PRINTER_MENU _UxGT("Printer Info")
  333. #define MSG_3POINT_LEVELING _UxGT("3-Point Leveling")
  334. #define MSG_LINEAR_LEVELING _UxGT("Linear Leveling")
  335. #define MSG_BILINEAR_LEVELING _UxGT("Bilinear Leveling")
  336. #define MSG_UBL_LEVELING _UxGT("Unified Bed Leveling")
  337. #define MSG_MESH_LEVELING _UxGT("Mesh Leveling")
  338. #define MSG_INFO_STATS_MENU _UxGT("Printer Stats")
  339. #define MSG_INFO_BOARD_MENU _UxGT("Board Info")
  340. #define MSG_INFO_THERMISTOR_MENU _UxGT("Thermistors")
  341. #define MSG_INFO_EXTRUDERS _UxGT("Extruders")
  342. #define MSG_INFO_BAUDRATE _UxGT("Baud")
  343. #define MSG_INFO_PROTOCOL _UxGT("Protocol")
  344. #define MSG_CASE_LIGHT _UxGT("Case light")
  345. #define MSG_CASE_LIGHT_BRIGHTNESS _UxGT("Light Brightness")
  346. #if LCD_WIDTH >= 20
  347. #define MSG_INFO_PRINT_COUNT _UxGT("Print Count")
  348. #define MSG_INFO_COMPLETED_PRINTS _UxGT("Completed")
  349. #define MSG_INFO_PRINT_TIME _UxGT("Total print time")
  350. #define MSG_INFO_PRINT_LONGEST _UxGT("Longest job time")
  351. #define MSG_INFO_PRINT_FILAMENT _UxGT("Extruded total")
  352. #else
  353. #define MSG_INFO_PRINT_COUNT _UxGT("Prints")
  354. #define MSG_INFO_COMPLETED_PRINTS _UxGT("Completed")
  355. #define MSG_INFO_PRINT_TIME _UxGT("Total")
  356. #define MSG_INFO_PRINT_LONGEST _UxGT("Longest")
  357. #define MSG_INFO_PRINT_FILAMENT _UxGT("Extruded")
  358. #endif
  359. #define MSG_INFO_MIN_TEMP _UxGT("Min Temp")
  360. #define MSG_INFO_MAX_TEMP _UxGT("Max Temp")
  361. #define MSG_INFO_PSU _UxGT("PSU")
  362. #define MSG_DRIVE_STRENGTH _UxGT("Drive Strength")
  363. #define MSG_DAC_PERCENT _UxGT("Driver %")
  364. #define MSG_DAC_EEPROM_WRITE _UxGT("DAC EEPROM Write")
  365. #define MSG_FILAMENT_CHANGE_HEADER_PAUSE _UxGT("PRINT PAUSED")
  366. #define MSG_FILAMENT_CHANGE_HEADER_LOAD _UxGT("LOAD FILAMENT")
  367. #define MSG_FILAMENT_CHANGE_HEADER_UNLOAD _UxGT("UNLOAD FILAMENT")
  368. #define MSG_FILAMENT_CHANGE_OPTION_HEADER _UxGT("RESUME OPTIONS:")
  369. #define MSG_FILAMENT_CHANGE_OPTION_PURGE _UxGT("Purge more")
  370. #define MSG_FILAMENT_CHANGE_OPTION_RESUME _UxGT("Continue")
  371. #define MSG_FILAMENT_CHANGE_NOZZLE _UxGT(" Nozzle: ")
  372. #define MSG_RUNOUT_SENSOR_ENABLE _UxGT("Runout Sensor")
  373. #define MSG_ERR_HOMING_FAILED _UxGT("Homing failed")
  374. #define MSG_ERR_PROBING_FAILED _UxGT("Probing failed")
  375. #define MSG_M600_TOO_COLD _UxGT("M600: Too cold")
  376. //
  377. // Filament Change screens show up to 3 lines on a 4-line display
  378. // ...or up to 2 lines on a 3-line display
  379. //
  380. #if LCD_HEIGHT >= 4
  381. #define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Wait for start")
  382. #define MSG_FILAMENT_CHANGE_INIT_2 _UxGT("of the filament")
  383. #define MSG_FILAMENT_CHANGE_INIT_3 _UxGT("change")
  384. #define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Wait for")
  385. #define MSG_FILAMENT_CHANGE_UNLOAD_2 _UxGT("filament unload")
  386. #define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insert filament")
  387. #define MSG_FILAMENT_CHANGE_INSERT_2 _UxGT("and press button")
  388. #define MSG_FILAMENT_CHANGE_INSERT_3 _UxGT("to continue...")
  389. #define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Press button to")
  390. #define MSG_FILAMENT_CHANGE_HEAT_2 _UxGT("heat nozzle.")
  391. #define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Heating nozzle")
  392. #define MSG_FILAMENT_CHANGE_HEATING_2 _UxGT("Please wait...")
  393. #define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Wait for")
  394. #define MSG_FILAMENT_CHANGE_LOAD_2 _UxGT("filament load")
  395. #define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Wait for")
  396. #define MSG_FILAMENT_CHANGE_PURGE_2 _UxGT("filament purge")
  397. #define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Wait for print")
  398. #define MSG_FILAMENT_CHANGE_RESUME_2 _UxGT("to resume")
  399. #else // LCD_HEIGHT < 4
  400. #define MSG_FILAMENT_CHANGE_INIT_1 _UxGT("Please wait...")
  401. #define MSG_FILAMENT_CHANGE_UNLOAD_1 _UxGT("Ejecting...")
  402. #define MSG_FILAMENT_CHANGE_INSERT_1 _UxGT("Insert and Click")
  403. #define MSG_FILAMENT_CHANGE_HEAT_1 _UxGT("Click to heat")
  404. #define MSG_FILAMENT_CHANGE_HEATING_1 _UxGT("Heating...")
  405. #define MSG_FILAMENT_CHANGE_LOAD_1 _UxGT("Loading...")
  406. #define MSG_FILAMENT_CHANGE_PURGE_1 _UxGT("Purging...")
  407. #define MSG_FILAMENT_CHANGE_RESUME_1 _UxGT("Resuming...")
  408. #endif // LCD_HEIGHT < 4
  409. #endif // LANGUAGE_KO_KR_H