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 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  1. /**
  2. * English
  3. *
  4. * LCD Menu Messages
  5. * Please note these are limited to 17 characters!
  6. *
  7. */
  8. #ifndef LANGUAGE_EN_H
  9. #define LANGUAGE_EN_H
  10. #ifndef WELCOME_MSG
  11. #define WELCOME_MSG MACHINE_NAME " ready."
  12. #endif
  13. #ifndef MSG_SD_INSERTED
  14. #define MSG_SD_INSERTED "Card inserted"
  15. #endif
  16. #ifndef MSG_SD_REMOVED
  17. #define MSG_SD_REMOVED "Card removed"
  18. #endif
  19. #ifndef MSG_MAIN
  20. #define MSG_MAIN "Main"
  21. #endif
  22. #ifndef MSG_AUTOSTART
  23. #define MSG_AUTOSTART "Autostart"
  24. #endif
  25. #ifndef MSG_DISABLE_STEPPERS
  26. #define MSG_DISABLE_STEPPERS "Disable steppers"
  27. #endif
  28. #ifndef MSG_AUTO_HOME
  29. #define MSG_AUTO_HOME "Auto home"
  30. #endif
  31. #ifndef MSG_SET_HOME_OFFSETS
  32. #define MSG_SET_HOME_OFFSETS "Set home offsets"
  33. #endif
  34. #ifndef MSG_SET_ORIGIN
  35. #define MSG_SET_ORIGIN "Set origin"
  36. #endif
  37. #ifndef MSG_PREHEAT_PLA
  38. #define MSG_PREHEAT_PLA "Preheat PLA"
  39. #endif
  40. #ifndef MSG_PREHEAT_PLA_N
  41. #define MSG_PREHEAT_PLA_N MSG_PREHEAT_PLA " "
  42. #endif
  43. #ifndef MSG_PREHEAT_PLA_ALL
  44. #define MSG_PREHEAT_PLA_ALL MSG_PREHEAT_PLA " All"
  45. #endif
  46. #ifndef MSG_PREHEAT_PLA_BEDONLY
  47. #define MSG_PREHEAT_PLA_BEDONLY MSG_PREHEAT_PLA " Bed"
  48. #endif
  49. #ifndef MSG_PREHEAT_PLA_SETTINGS
  50. #define MSG_PREHEAT_PLA_SETTINGS MSG_PREHEAT_PLA " conf"
  51. #endif
  52. #ifndef MSG_PREHEAT_ABS
  53. #define MSG_PREHEAT_ABS "Preheat ABS"
  54. #endif
  55. #ifndef MSG_PREHEAT_ABS_N
  56. #define MSG_PREHEAT_ABS_N MSG_PREHEAT_ABS " "
  57. #endif
  58. #ifndef MSG_PREHEAT_ABS_ALL
  59. #define MSG_PREHEAT_ABS_ALL MSG_PREHEAT_ABS " All"
  60. #endif
  61. #ifndef MSG_PREHEAT_ABS_BEDONLY
  62. #define MSG_PREHEAT_ABS_BEDONLY MSG_PREHEAT_ABS " Bed"
  63. #endif
  64. #ifndef MSG_PREHEAT_ABS_SETTINGS
  65. #define MSG_PREHEAT_ABS_SETTINGS MSG_PREHEAT_ABS " conf"
  66. #endif
  67. #ifndef MSG_COOLDOWN
  68. #define MSG_COOLDOWN "Cooldown"
  69. #endif
  70. #ifndef MSG_SWITCH_PS_ON
  71. #define MSG_SWITCH_PS_ON "Switch power on"
  72. #endif
  73. #ifndef MSG_SWITCH_PS_OFF
  74. #define MSG_SWITCH_PS_OFF "Switch power off"
  75. #endif
  76. #ifndef MSG_EXTRUDE
  77. #define MSG_EXTRUDE "Extrude"
  78. #endif
  79. #ifndef MSG_RETRACT
  80. #define MSG_RETRACT "Retract"
  81. #endif
  82. #ifndef MSG_MOVE_AXIS
  83. #define MSG_MOVE_AXIS "Move axis"
  84. #endif
  85. #ifndef MSG_MOVE_X
  86. #define MSG_MOVE_X "Move X"
  87. #endif
  88. #ifndef MSG_MOVE_Y
  89. #define MSG_MOVE_Y "Move Y"
  90. #endif
  91. #ifndef MSG_MOVE_Z
  92. #define MSG_MOVE_Z "Move Z"
  93. #endif
  94. #ifndef MSG_MOVE_E
  95. #define MSG_MOVE_E "Extruder"
  96. #endif
  97. #ifndef MSG_MOVE_01MM
  98. #define MSG_MOVE_01MM "Move 0.1mm"
  99. #endif
  100. #ifndef MSG_MOVE_1MM
  101. #define MSG_MOVE_1MM "Move 1mm"
  102. #endif
  103. #ifndef MSG_MOVE_10MM
  104. #define MSG_MOVE_10MM "Move 10mm"
  105. #endif
  106. #ifndef MSG_SPEED
  107. #define MSG_SPEED "Speed"
  108. #endif
  109. #ifndef MSG_NOZZLE
  110. #define MSG_NOZZLE "Nozzle"
  111. #endif
  112. #ifndef MSG_BED
  113. #define MSG_BED "Bed"
  114. #endif
  115. #ifndef MSG_FAN_SPEED
  116. #define MSG_FAN_SPEED "Fan speed"
  117. #endif
  118. #ifndef MSG_FLOW
  119. #define MSG_FLOW "Flow"
  120. #endif
  121. #ifndef MSG_CONTROL
  122. #define MSG_CONTROL "Control"
  123. #endif
  124. #ifndef MSG_MIN
  125. #define MSG_MIN " " STR_THERMOMETER " Min"
  126. #endif
  127. #ifndef MSG_MAX
  128. #define MSG_MAX " " STR_THERMOMETER " Max"
  129. #endif
  130. #ifndef MSG_FACTOR
  131. #define MSG_FACTOR " " STR_THERMOMETER " Fact"
  132. #endif
  133. #ifndef MSG_AUTOTEMP
  134. #define MSG_AUTOTEMP "Autotemp"
  135. #endif
  136. #ifndef MSG_ON
  137. #define MSG_ON "On "
  138. #endif
  139. #ifndef MSG_OFF
  140. #define MSG_OFF "Off"
  141. #endif
  142. #ifndef MSG_PID_P
  143. #define MSG_PID_P "PID-P"
  144. #endif
  145. #ifndef MSG_PID_I
  146. #define MSG_PID_I "PID-I"
  147. #endif
  148. #ifndef MSG_PID_D
  149. #define MSG_PID_D "PID-D"
  150. #endif
  151. #ifndef MSG_PID_C
  152. #define MSG_PID_C "PID-C"
  153. #endif
  154. #ifndef MSG_ACC
  155. #define MSG_ACC "Accel"
  156. #endif
  157. #ifndef MSG_VXY_JERK
  158. #define MSG_VXY_JERK "Vxy-jerk"
  159. #endif
  160. #ifndef MSG_VZ_JERK
  161. #define MSG_VZ_JERK "Vz-jerk"
  162. #endif
  163. #ifndef MSG_VE_JERK
  164. #define MSG_VE_JERK "Ve-jerk"
  165. #endif
  166. #ifndef MSG_VMAX
  167. #define MSG_VMAX "Vmax "
  168. #endif
  169. #ifndef MSG_X
  170. #define MSG_X "x"
  171. #endif
  172. #ifndef MSG_Y
  173. #define MSG_Y "y"
  174. #endif
  175. #ifndef MSG_Z
  176. #define MSG_Z "z"
  177. #endif
  178. #ifndef MSG_E
  179. #define MSG_E "e"
  180. #endif
  181. #ifndef MSG_VMIN
  182. #define MSG_VMIN "Vmin"
  183. #endif
  184. #ifndef MSG_VTRAV_MIN
  185. #define MSG_VTRAV_MIN "VTrav min"
  186. #endif
  187. #ifndef MSG_AMAX
  188. #define MSG_AMAX "Amax "
  189. #endif
  190. #ifndef MSG_A_RETRACT
  191. #define MSG_A_RETRACT "A-retract"
  192. #endif
  193. #ifndef MSG_XSTEPS
  194. #define MSG_XSTEPS "Xsteps/mm"
  195. #endif
  196. #ifndef MSG_YSTEPS
  197. #define MSG_YSTEPS "Ysteps/mm"
  198. #endif
  199. #ifndef MSG_ZSTEPS
  200. #define MSG_ZSTEPS "Zsteps/mm"
  201. #endif
  202. #ifndef MSG_ESTEPS
  203. #define MSG_ESTEPS "Esteps/mm"
  204. #endif
  205. #ifndef MSG_TEMPERATURE
  206. #define MSG_TEMPERATURE "Temperature"
  207. #endif
  208. #ifndef MSG_MOTION
  209. #define MSG_MOTION "Motion"
  210. #endif
  211. #ifndef MSG_VOLUMETRIC
  212. #define MSG_VOLUMETRIC "Filament"
  213. #endif
  214. #ifndef MSG_VOLUMETRIC_ENABLED
  215. #define MSG_VOLUMETRIC_ENABLED "E in mm" STR_h3
  216. #endif
  217. #ifndef MSG_FILAMENT_SIZE_EXTRUDER_0
  218. #define MSG_FILAMENT_SIZE_EXTRUDER_0 "Fil. Dia. 1"
  219. #endif
  220. #ifndef MSG_FILAMENT_SIZE_EXTRUDER_1
  221. #define MSG_FILAMENT_SIZE_EXTRUDER_1 "Fil. Dia. 2"
  222. #endif
  223. #ifndef MSG_FILAMENT_SIZE_EXTRUDER_2
  224. #define MSG_FILAMENT_SIZE_EXTRUDER_2 "Fil. Dia. 3"
  225. #endif
  226. #ifndef MSG_FILAMENT_SIZE_EXTRUDER_3
  227. #define MSG_FILAMENT_SIZE_EXTRUDER_3 "Fil. Dia. 4"
  228. #endif
  229. #ifndef MSG_CONTRAST
  230. #define MSG_CONTRAST "LCD contrast"
  231. #endif
  232. #ifndef MSG_STORE_EPROM
  233. #define MSG_STORE_EPROM "Store memory"
  234. #endif
  235. #ifndef MSG_LOAD_EPROM
  236. #define MSG_LOAD_EPROM "Load memory"
  237. #endif
  238. #ifndef MSG_RESTORE_FAILSAFE
  239. #define MSG_RESTORE_FAILSAFE "Restore failsafe"
  240. #endif
  241. #ifndef MSG_REFRESH
  242. #define MSG_REFRESH "Refresh"
  243. #endif
  244. #ifndef MSG_WATCH
  245. #define MSG_WATCH "Info screen"
  246. #endif
  247. #ifndef MSG_PREPARE
  248. #define MSG_PREPARE "Prepare"
  249. #endif
  250. #ifndef MSG_TUNE
  251. #define MSG_TUNE "Tune"
  252. #endif
  253. #ifndef MSG_PAUSE_PRINT
  254. #define MSG_PAUSE_PRINT "Pause print"
  255. #endif
  256. #ifndef MSG_RESUME_PRINT
  257. #define MSG_RESUME_PRINT "Resume print"
  258. #endif
  259. #ifndef MSG_STOP_PRINT
  260. #define MSG_STOP_PRINT "Stop print"
  261. #endif
  262. #ifndef MSG_CARD_MENU
  263. #define MSG_CARD_MENU "Print from SD"
  264. #endif
  265. #ifndef MSG_NO_CARD
  266. #define MSG_NO_CARD "No SD card"
  267. #endif
  268. #ifndef MSG_DWELL
  269. #define MSG_DWELL "Sleep..."
  270. #endif
  271. #ifndef MSG_USERWAIT
  272. #define MSG_USERWAIT "Wait for user..."
  273. #endif
  274. #ifndef MSG_RESUMING
  275. #define MSG_RESUMING "Resuming print"
  276. #endif
  277. #ifndef MSG_PRINT_ABORTED
  278. #define MSG_PRINT_ABORTED "Print aborted"
  279. #endif
  280. #ifndef MSG_NO_MOVE
  281. #define MSG_NO_MOVE "No move."
  282. #endif
  283. #ifndef MSG_KILLED
  284. #define MSG_KILLED "KILLED. "
  285. #endif
  286. #ifndef MSG_STOPPED
  287. #define MSG_STOPPED "STOPPED. "
  288. #endif
  289. #ifndef MSG_CONTROL_RETRACT
  290. #define MSG_CONTROL_RETRACT "Retract mm"
  291. #endif
  292. #ifndef MSG_CONTROL_RETRACT_SWAP
  293. #define MSG_CONTROL_RETRACT_SWAP "Swap Re.mm"
  294. #endif
  295. #ifndef MSG_CONTROL_RETRACTF
  296. #define MSG_CONTROL_RETRACTF "Retract V"
  297. #endif
  298. #ifndef MSG_CONTROL_RETRACT_ZLIFT
  299. #define MSG_CONTROL_RETRACT_ZLIFT "Hop mm"
  300. #endif
  301. #ifndef MSG_CONTROL_RETRACT_RECOVER
  302. #define MSG_CONTROL_RETRACT_RECOVER "UnRet +mm"
  303. #endif
  304. #ifndef MSG_CONTROL_RETRACT_RECOVER_SWAP
  305. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "S UnRet+mm"
  306. #endif
  307. #ifndef MSG_CONTROL_RETRACT_RECOVERF
  308. #define MSG_CONTROL_RETRACT_RECOVERF "UnRet V"
  309. #endif
  310. #ifndef MSG_AUTORETRACT
  311. #define MSG_AUTORETRACT "AutoRetr."
  312. #endif
  313. #ifndef MSG_FILAMENTCHANGE
  314. #define MSG_FILAMENTCHANGE "Change filament"
  315. #endif
  316. #ifndef MSG_INIT_SDCARD
  317. #define MSG_INIT_SDCARD "Init. SD card"
  318. #endif
  319. #ifndef MSG_CNG_SDCARD
  320. #define MSG_CNG_SDCARD "Change SD card"
  321. #endif
  322. #ifndef MSG_ZPROBE_OUT
  323. #define MSG_ZPROBE_OUT "Z probe out. bed"
  324. #endif
  325. #ifndef MSG_POSITION_UNKNOWN
  326. #define MSG_POSITION_UNKNOWN "Home X/Y before Z"
  327. #endif
  328. #ifndef MSG_ZPROBE_ZOFFSET
  329. #define MSG_ZPROBE_ZOFFSET "Z Offset"
  330. #endif
  331. #ifndef MSG_BABYSTEP_X
  332. #define MSG_BABYSTEP_X "Babystep X"
  333. #endif
  334. #ifndef MSG_BABYSTEP_Y
  335. #define MSG_BABYSTEP_Y "Babystep Y"
  336. #endif
  337. #ifndef MSG_BABYSTEP_Z
  338. #define MSG_BABYSTEP_Z "Babystep Z"
  339. #endif
  340. #ifndef MSG_ENDSTOP_ABORT
  341. #define MSG_ENDSTOP_ABORT "Endstop abort"
  342. #endif
  343. #ifdef DELTA_CALIBRATION_MENU
  344. #ifndef MSG_DELTA_CALIBRATE
  345. #define MSG_DELTA_CALIBRATE "Delta Calibration"
  346. #endif
  347. #ifndef MSG_DELTA_CALIBRATE_X
  348. #define MSG_DELTA_CALIBRATE_X "Calibrate X"
  349. #endif
  350. #ifndef MSG_DELTA_CALIBRATE_Y
  351. #define MSG_DELTA_CALIBRATE_Y "Calibrate Y"
  352. #endif
  353. #ifndef MSG_DELTA_CALIBRATE_Z
  354. #define MSG_DELTA_CALIBRATE_Z "Calibrate Z"
  355. #endif
  356. #ifndef MSG_DELTA_CALIBRATE_CENTER
  357. #define MSG_DELTA_CALIBRATE_CENTER "Calibrate Center"
  358. #endif
  359. #endif // DELTA_CALIBRATION_MENU
  360. #endif // LANGUAGE_EN_H