My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

language.h 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. #ifndef LANGUAGE_H
  2. #define LANGUAGE_H
  3. // Languages
  4. // 1 Custom (For you to add your own messages)
  5. // 2 English
  6. // 3 French (Waiting translation)
  7. // 4 German (Waiting translation)
  8. // 5 Etc
  9. #define LANGUAGE_CHOICE 1 // Pick your language from the list above
  10. #if LANGUAGE_CHOICE == 1
  11. // LCD Menu Messages
  12. #define WELCOME_MSG "RepRap Ready."
  13. #define MSG_SD_INSERTED "Card Ready"
  14. #define MSG_SD_REMOVED "Card Initiate"
  15. #define MSG_MAIN " Main \003"
  16. #define MSG_AUTOSTART " Autostart"
  17. #define MSG_DISABLE_STEPPERS " Disable Steppers"
  18. #define MSG_AUTO_HOME " Auto Home"
  19. #define MSG_SET_ORIGIN " Set Origin"
  20. #define MSG_PREHEAT_PLA " Preheat PLA"
  21. #define MSG_PREHEAT_ABS " Preheat ABS"
  22. #define MSG_COOLDOWN " Cooldown"
  23. #define MSG_EXTRUDE " Extrude"
  24. #define MSG_MOVE_AXIS " Move Axis \x7E"
  25. #define MSG_SPEED " Speed:"
  26. #define MSG_NOZZLE " \002Nozzle:"
  27. #define MSG_BED " \002Bed:"
  28. #define MSG_FAN_SPEED " Fan speed:"
  29. #define MSG_FLOW " Flow:"
  30. #define MSG_CONTROL " Control \003"
  31. #define MSG_MIN " \002 Min:"
  32. #define MSG_MAX " \002 Max:"
  33. #define MSG_FACTOR " \002 Fact:"
  34. #define MSG_AUTOTEMP " Autotemp:"
  35. #define MSG_ON "On "
  36. #define MSG_OFF "Off"
  37. #define MSG_PID_P " PID-P: "
  38. #define MSG_PID_I " PID-I: "
  39. #define MSG_PID_D " PID-D: "
  40. #define MSG_PID_C " PID-C: "
  41. #define MSG_ACC " Acc:"
  42. #define MSG_VXY_JERK " Vxy-jerk: "
  43. #define MSG_VMAX " Vmax "
  44. #define MSG_X "x:"
  45. #define MSG_Y "y:"
  46. #define MSG_Z "z:"
  47. #define MSG_E "e:"
  48. #define MSG_VMIN " Vmin:"
  49. #define MSG_VTRAV_MIN " VTrav min:"
  50. #define MSG_AMAX " Amax "
  51. #define MSG_A_RETRACT " A-retract:"
  52. #define MSG_XSTEPS " Xsteps/mm:"
  53. #define MSG_YSTEPS " Ysteps/mm:"
  54. #define MSG_ZSTEPS " Zsteps/mm:"
  55. #define MSG_ESTEPS " Esteps/mm:"
  56. #define MSG_MAIN_WIDE " Main \003"
  57. #define MSG_TEMPERATURE_WIDE " Temperature \x7E"
  58. #define MSG_MOTION_WIDE " Motion \x7E"
  59. #define MSG_STORE_EPROM " Store EPROM"
  60. #define MSG_LOAD_EPROM " Load EPROM"
  61. #define MSG_RESTORE_FAILSAFE " Restore Failsafe"
  62. #define MSG_REFRESH "\004Refresh"
  63. #define MSG_WATCH " Watch \003"
  64. #define MSG_PREPARE " Prepare \x7E"
  65. #define MSG_CONTROL_ARROW " Control \x7E"
  66. #define MSG_TUNE " Tune \x7E"
  67. #define MSG_STOP_PRINT " Stop Print \x7E"
  68. #define MSG_CARD_MENU " Card Menu \x7E"
  69. #define MSG_NO_CARD " No Card"
  70. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Something is wrong in the MenuStructure."
  71. #endif
  72. #if LANGUAGE_CHOICE == 2
  73. // LCD Menu Messages
  74. #define WELCOME_MSG "UltiMARLIN Ready."
  75. #define MSG_SD_INSERTED "Card inserted"
  76. #define MSG_SD_REMOVED "Card removed"
  77. #define MSG_MAIN " Main \003"
  78. #define MSG_AUTOSTART " Autostart"
  79. #define MSG_DISABLE_STEPPERS " Disable Steppers"
  80. #define MSG_AUTO_HOME " Auto Home"
  81. #define MSG_SET_ORIGIN " Set Origin"
  82. #define MSG_COOLDOWN " Cooldown"
  83. #define MSG_EXTRUDE " Extrude"
  84. #define MSG_PREHEAT_PLA " Preheat PLA"
  85. #define MSG_PREHEAT_ABS " Preheat ABS"
  86. #define MSG_MOVE_AXIS " Move Axis \x7E"
  87. #define MSG_SPEED " Speed:"
  88. #define MSG_NOZZLE " \002Nozzle:"
  89. #define MSG_BED " \002Bed:"
  90. #define MSG_FAN_SPEED " Fan speed:"
  91. #define MSG_FLOW " Flow:"
  92. #define MSG_CONTROL " Control \003"
  93. #define MSG_MIN " \002 Min:"
  94. #define MSG_MAX " \002 Max:"
  95. #define MSG_FACTOR " \002 Fact:"
  96. #define MSG_AUTOTEMP " Autotemp:"
  97. #define MSG_ON "On "
  98. #define MSG_OFF "Off"
  99. #define MSG_PID_P " PID-P: "
  100. #define MSG_PID_I " PID-I: "
  101. #define MSG_PID_D " PID-D: "
  102. #define MSG_PID_C " PID-C: "
  103. #define MSG_ACC " Acc:"
  104. #define MSG_VXY_JERK " Vxy-jerk: "
  105. #define MSG_VMAX " Vmax "
  106. #define MSG_X "x:"
  107. #define MSG_Y "y:"
  108. #define MSG_Z "z:"
  109. #define MSG_E "e:"
  110. #define MSG_VMIN " Vmin:"
  111. #define MSG_VTRAV_MIN " VTrav min:"
  112. #define MSG_AMAX " Amax "
  113. #define MSG_A_RETRACT " A-retract:"
  114. #define MSG_XSTEPS " Xsteps/mm:"
  115. #define MSG_YSTEPS " Ysteps/mm:"
  116. #define MSG_ZSTEPS " Zsteps/mm:"
  117. #define MSG_ESTEPS " Esteps/mm:"
  118. #define MSG_MAIN_WIDE " Main \003"
  119. #define MSG_TEMPERATURE_WIDE " Temperature \x7E"
  120. #define MSG_MOTION_WIDE " Motion \x7E"
  121. #define MSG_STORE_EPROM " Store EPROM"
  122. #define MSG_LOAD_EPROM " Load EPROM"
  123. #define MSG_RESTORE_FAILSAFE " Restore Failsafe"
  124. #define MSG_REFRESH "\004Refresh"
  125. #define MSG_WATCH " Watch \003"
  126. #define MSG_PREPARE " Prepare \x7E"
  127. #define MSG_CONTROL_ARROW " Control \x7E"
  128. #define MSG_TUNE " Tune \x7E"
  129. #define MSG_STOP_PRINT " Stop Print \x7E"
  130. #define MSG_CARD_MENU " Card Menu \x7E"
  131. #define MSG_NO_CARD " No Card"
  132. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Something is wrong in the MenuStructure."
  133. #endif
  134. #if LANGUAGE_CHOICE == 3
  135. // LCD Menu Messages
  136. #define WELCOME_MSG "RepRap Ready."
  137. #define MSG_SD_INSERTED "Card Ready"
  138. #define MSG_SD_REMOVED "Card Initiate"
  139. #define MSG_MAIN " Main \003"
  140. #define MSG_AUTOSTART " Autostart"
  141. #define MSG_DISABLE_STEPPERS " Disable Steppers"
  142. #define MSG_AUTO_HOME " Auto Home"
  143. #define MSG_SET_ORIGIN " Set Origin"
  144. #define MSG_PREHEAT_PLA " Preheat PLA"
  145. #define MSG_PREHEAT_ABS " Preheat ABS"
  146. #define MSG_COOLDOWN " Cooldown"
  147. #define MSG_EXTRUDE " Extrude"
  148. #define MSG_MOVE_AXIS " Move Axis \x7E"
  149. #define MSG_SPEED " Speed:"
  150. #define MSG_NOZZLE " \002Nozzle:"
  151. #define MSG_BED " \002Bed:"
  152. #define MSG_FAN_SPEED " Fan speed:"
  153. #define MSG_FLOW " Flow:"
  154. #define MSG_CONTROL " Control \003"
  155. #define MSG_MIN " \002 Min:"
  156. #define MSG_MAX " \002 Max:"
  157. #define MSG_FACTOR " \002 Fact:"
  158. #define MSG_AUTOTEMP " Autotemp:"
  159. #define MSG_ON "On "
  160. #define MSG_OFF "Off"
  161. #define MSG_PID_P " PID-P: "
  162. #define MSG_PID_I " PID-I: "
  163. #define MSG_PID_D " PID-D: "
  164. #define MSG_PID_C " PID-C: "
  165. #define MSG_ACC " Acc:"
  166. #define MSG_VXY_JERK " Vxy-jerk: "
  167. #define MSG_VMAX " Vmax "
  168. #define MSG_X "x:"
  169. #define MSG_Y "y:"
  170. #define MSG_Z "z:"
  171. #define MSG_E "e:"
  172. #define MSG_VMIN " Vmin:"
  173. #define MSG_VTRAV_MIN " VTrav min:"
  174. #define MSG_AMAX " Amax "
  175. #define MSG_A_RETRACT " A-retract:"
  176. #define MSG_XSTEPS " Xsteps/mm:"
  177. #define MSG_YSTEPS " Ysteps/mm:"
  178. #define MSG_ZSTEPS " Zsteps/mm:"
  179. #define MSG_ESTEPS " Esteps/mm:"
  180. #define MSG_MAIN_WIDE " Main \003"
  181. #define MSG_TEMPERATURE_WIDE " Temperature \x7E"
  182. #define MSG_MOTION_WIDE " Motion \x7E"
  183. #define MSG_STORE_EPROM " Store EPROM"
  184. #define MSG_LOAD_EPROM " Load EPROM"
  185. #define MSG_RESTORE_FAILSAFE " Restore Failsafe"
  186. #define MSG_REFRESH "\004Refresh"
  187. #define MSG_WATCH " Watch \003"
  188. #define MSG_PREPARE " Prepare \x7E"
  189. #define MSG_CONTROL_ARROW " Control \x7E"
  190. #define MSG_TUNE " Tune \x7E"
  191. #define MSG_STOP_PRINT " Stop Print \x7E"
  192. #define MSG_CARD_MENU " Card Menu \x7E"
  193. #define MSG_NO_CARD " No Card"
  194. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Something is wrong in the MenuStructure."
  195. #endif
  196. #if LANGUAGE_CHOICE == 4
  197. // LCD Menu Messages
  198. #define WELCOME_MSG "RepRap Ready."
  199. #define MSG_SD_INSERTED "Card Ready"
  200. #define MSG_SD_REMOVED "Card Initiate"
  201. #define MSG_MAIN " Main \003"
  202. #define MSG_AUTOSTART " Autostart"
  203. #define MSG_DISABLE_STEPPERS " Disable Steppers"
  204. #define MSG_AUTO_HOME " Auto Home"
  205. #define MSG_SET_ORIGIN " Set Origin"
  206. #define MSG_PREHEAT_PLA " Preheat PLA"
  207. #define MSG_PREHEAT_ABS " Preheat ABS"
  208. #define MSG_COOLDOWN " Cooldown"
  209. #define MSG_EXTRUDE " Extrude"
  210. #define MSG_MOVE_AXIS " Move Axis \x7E"
  211. #define MSG_SPEED " Speed:"
  212. #define MSG_NOZZLE " \002Nozzle:"
  213. #define MSG_BED " \002Bed:"
  214. #define MSG_FAN_SPEED " Fan speed:"
  215. #define MSG_FLOW " Flow:"
  216. #define MSG_CONTROL " Control \003"
  217. #define MSG_MIN " \002 Min:"
  218. #define MSG_MAX " \002 Max:"
  219. #define MSG_FACTOR " \002 Fact:"
  220. #define MSG_AUTOTEMP " Autotemp:"
  221. #define MSG_ON "On "
  222. #define MSG_OFF "Off"
  223. #define MSG_PID_P " PID-P: "
  224. #define MSG_PID_I " PID-I: "
  225. #define MSG_PID_D " PID-D: "
  226. #define MSG_PID_C " PID-C: "
  227. #define MSG_ACC " Acc:"
  228. #define MSG_VXY_JERK " Vxy-jerk: "
  229. #define MSG_VMAX " Vmax "
  230. #define MSG_X "x:"
  231. #define MSG_Y "y:"
  232. #define MSG_Z "z:"
  233. #define MSG_E "e:"
  234. #define MSG_VMIN " Vmin:"
  235. #define MSG_VTRAV_MIN " VTrav min:"
  236. #define MSG_AMAX " Amax "
  237. #define MSG_A_RETRACT " A-retract:"
  238. #define MSG_XSTEPS " Xsteps/mm:"
  239. #define MSG_YSTEPS " Ysteps/mm:"
  240. #define MSG_ZSTEPS " Zsteps/mm:"
  241. #define MSG_ESTEPS " Esteps/mm:"
  242. #define MSG_MAIN_WIDE " Main \003"
  243. #define MSG_TEMPERATURE_WIDE " Temperature \x7E"
  244. #define MSG_MOTION_WIDE " Motion \x7E"
  245. #define MSG_STORE_EPROM " Store EPROM"
  246. #define MSG_LOAD_EPROM " Load EPROM"
  247. #define MSG_RESTORE_FAILSAFE " Restore Failsafe"
  248. #define MSG_REFRESH "\004Refresh"
  249. #define MSG_WATCH " Watch \003"
  250. #define MSG_PREPARE " Prepare \x7E"
  251. #define MSG_CONTROL_ARROW " Control \x7E"
  252. #define MSG_TUNE " Tune \x7E"
  253. #define MSG_STOP_PRINT " Stop Print \x7E"
  254. #define MSG_CARD_MENU " Card Menu \x7E"
  255. #define MSG_NO_CARD " No Card"
  256. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Something is wrong in the MenuStructure."
  257. #endif
  258. #if LANGUAGE_CHOICE == 5
  259. // LCD Menu Messages
  260. #define WELCOME_MSG "RepRap Ready."
  261. #define MSG_SD_INSERTED "Card Ready"
  262. #define MSG_SD_REMOVED "Card Initiate"
  263. #define MSG_MAIN " Main \003"
  264. #define MSG_AUTOSTART " Autostart"
  265. #define MSG_DISABLE_STEPPERS " Disable Steppers"
  266. #define MSG_AUTO_HOME " Auto Home"
  267. #define MSG_SET_ORIGIN " Set Origin"
  268. #define MSG_PREHEAT_PLA " Preheat PLA"
  269. #define MSG_PREHEAT_ABS " Preheat ABS"
  270. #define MSG_COOLDOWN " Cooldown"
  271. #define MSG_EXTRUDE " Extrude"
  272. #define MSG_MOVE_AXIS " Move Axis \x7E"
  273. #define MSG_SPEED " Speed:"
  274. #define MSG_NOZZLE " \002Nozzle:"
  275. #define MSG_BED " \002Bed:"
  276. #define MSG_FAN_SPEED " Fan speed:"
  277. #define MSG_FLOW " Flow:"
  278. #define MSG_CONTROL " Control \003"
  279. #define MSG_MIN " \002 Min:"
  280. #define MSG_MAX " \002 Max:"
  281. #define MSG_FACTOR " \002 Fact:"
  282. #define MSG_AUTOTEMP " Autotemp:"
  283. #define MSG_ON "On "
  284. #define MSG_OFF "Off"
  285. #define MSG_PID_P " PID-P: "
  286. #define MSG_PID_I " PID-I: "
  287. #define MSG_PID_D " PID-D: "
  288. #define MSG_PID_C " PID-C: "
  289. #define MSG_ACC " Acc:"
  290. #define MSG_VXY_JERK " Vxy-jerk: "
  291. #define MSG_VMAX " Vmax "
  292. #define MSG_X "x:"
  293. #define MSG_Y "y:"
  294. #define MSG_Z "z:"
  295. #define MSG_E "e:"
  296. #define MSG_VMIN " Vmin:"
  297. #define MSG_VTRAV_MIN " VTrav min:"
  298. #define MSG_AMAX " Amax "
  299. #define MSG_A_RETRACT " A-retract:"
  300. #define MSG_XSTEPS " Xsteps/mm:"
  301. #define MSG_YSTEPS " Ysteps/mm:"
  302. #define MSG_ZSTEPS " Zsteps/mm:"
  303. #define MSG_ESTEPS " Esteps/mm:"
  304. #define MSG_MAIN_WIDE " Main \003"
  305. #define MSG_TEMPERATURE_WIDE " Temperature \x7E"
  306. #define MSG_MOTION_WIDE " Motion \x7E"
  307. #define MSG_STORE_EPROM " Store EPROM"
  308. #define MSG_LOAD_EPROM " Load EPROM"
  309. #define MSG_RESTORE_FAILSAFE " Restore Failsafe"
  310. #define MSG_REFRESH "\004Refresh"
  311. #define MSG_WATCH " Watch \003"
  312. #define MSG_PREPARE " Prepare \x7E"
  313. #define MSG_CONTROL_ARROW " Control \x7E"
  314. #define MSG_TUNE " Tune \x7E"
  315. #define MSG_STOP_PRINT " Stop Print \x7E"
  316. #define MSG_CARD_MENU " Card Menu \x7E"
  317. #define MSG_NO_CARD " No Card"
  318. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Something is wrong in the MenuStructure."
  319. #endif
  320. #endif // ifndef LANGUAGE_H