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.h 9.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. #ifndef LANGUAGE_H
  2. #define LANGUAGE_H
  3. #include "Configuration.h"
  4. #define LANGUAGE_CONCAT(M) #M
  5. #define GENERATE_LANGUAGE_INCLUDE(M) LANGUAGE_CONCAT(language_##M.h)
  6. // NOTE: IF YOU CHANGE LANGUAGE FILES OR MERGE A FILE WITH CHANGES
  7. //
  8. // ==> ALWAYS TRY TO COMPILE MARLIN WITH/WITHOUT "ULTIPANEL" / "ULTRALCD" / "SDSUPPORT" #define IN "Configuration.h"
  9. // ==> ALSO TRY ALL AVAILABLE LANGUAGE OPTIONS
  10. // See also documentation/LCDLanguageFont.md
  11. // Languages
  12. // en English
  13. // pl Polish
  14. // fr French
  15. // de German
  16. // es Spanish
  17. // ru Russian
  18. // it Italian
  19. // pt Portuguese
  20. // pt-br Portuguese (Brazil)
  21. // fi Finnish
  22. // an Aragonese
  23. // nl Dutch
  24. // ca Catalan
  25. // eu Basque-Euskera
  26. // kana Japanese
  27. // kana_utf Japanese
  28. #ifndef LANGUAGE_INCLUDE
  29. // pick your language from the list above
  30. #define LANGUAGE_INCLUDE GENERATE_LANGUAGE_INCLUDE(en)
  31. #endif
  32. #define PROTOCOL_VERSION "1.0"
  33. #define FIRMWARE_URL "https://github.com/MarlinFirmware/Marlin"
  34. #if MB(ULTIMAKER)|| MB(ULTIMAKER_OLD)|| MB(ULTIMAIN_2)
  35. #undef FIRMWARE_URL
  36. #define MACHINE_NAME "Ultimaker"
  37. #define FIRMWARE_URL "http://firmware.ultimaker.com"
  38. #elif MB(RUMBA)
  39. #define MACHINE_NAME "Rumba"
  40. #elif MB(3DRAG)
  41. #define MACHINE_NAME "3Drag"
  42. #undef FIRMWARE_URL
  43. #define FIRMWARE_URL "http://3dprint.elettronicain.it/"
  44. #elif MB(K8200)
  45. #define MACHINE_NAME "K8200"
  46. #elif MB(5DPRINT)
  47. #define MACHINE_NAME "Makibox"
  48. #elif MB(SAV_MKI)
  49. #define MACHINE_NAME "SAV MkI"
  50. #undef FIRMWARE_URL
  51. #define FIRMWARE_URL "https://github.com/fmalpartida/Marlin/tree/SAV-MkI-config"
  52. #elif MB(WITBOX)
  53. #define MACHINE_NAME "WITBOX"
  54. #undef FIRMWARE_URL
  55. #define FIRMWARE_URL "http://www.bq.com/gb/downloads-witbox.html"
  56. #elif MB(HEPHESTOS)
  57. #define MACHINE_NAME "HEPHESTOS"
  58. #undef FIRMWARE_URL
  59. #define FIRMWARE_URL "http://www.bq.com/gb/downloads-prusa-i3-hephestos.html"
  60. #else // Default firmware set to Mendel
  61. #define MACHINE_NAME "Mendel"
  62. #endif
  63. #ifdef CUSTOM_MENDEL_NAME
  64. #undef MACHINE_NAME
  65. #define MACHINE_NAME CUSTOM_MENDEL_NAME
  66. #endif
  67. #ifndef MACHINE_UUID
  68. #define MACHINE_UUID "00000000-0000-0000-0000-000000000000"
  69. #endif
  70. #define STRINGIFY_(n) #n
  71. #define STRINGIFY(n) STRINGIFY_(n)
  72. // Common LCD messages
  73. /* nothing here yet */
  74. // Common serial messages
  75. #define MSG_MARLIN "Marlin"
  76. // Serial Console Messages (do not translate those!)
  77. #define MSG_Enqueing "enqueing \""
  78. #define MSG_POWERUP "PowerUp"
  79. #define MSG_EXTERNAL_RESET " External Reset"
  80. #define MSG_BROWNOUT_RESET " Brown out Reset"
  81. #define MSG_WATCHDOG_RESET " Watchdog Reset"
  82. #define MSG_SOFTWARE_RESET " Software Reset"
  83. #define MSG_AUTHOR " | Author: "
  84. #define MSG_CONFIGURATION_VER " Last Updated: "
  85. #define MSG_FREE_MEMORY " Free Memory: "
  86. #define MSG_PLANNER_BUFFER_BYTES " PlannerBufferBytes: "
  87. #define MSG_OK "ok"
  88. #define MSG_FILE_SAVED "Done saving file."
  89. #define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line: "
  90. #define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line: "
  91. #define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line: "
  92. #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line: "
  93. #define MSG_FILE_PRINTED "Done printing file"
  94. #define MSG_BEGIN_FILE_LIST "Begin file list"
  95. #define MSG_END_FILE_LIST "End file list"
  96. #define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
  97. #define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
  98. #define MSG_M200_INVALID_EXTRUDER "M200 Invalid extruder "
  99. #define MSG_M218_INVALID_EXTRUDER "M218 Invalid extruder "
  100. #define MSG_M221_INVALID_EXTRUDER "M221 Invalid extruder "
  101. #define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature"
  102. #define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
  103. #define MSG_HEATING "Heating..."
  104. #define MSG_HEATING_COMPLETE "Heating done."
  105. #define MSG_BED_HEATING "Bed Heating."
  106. #define MSG_BED_DONE "Bed done."
  107. #define MSG_M115_REPORT "FIRMWARE_NAME:Marlin V1; Sprinter/grbl mashup for gen6 FIRMWARE_URL:" FIRMWARE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n"
  108. #define MSG_COUNT_X " Count X: "
  109. #define MSG_ERR_KILLED "Printer halted. kill() called!"
  110. #define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)"
  111. #define MSG_RESEND "Resend: "
  112. #define MSG_UNKNOWN_COMMAND "Unknown command: \""
  113. #define MSG_ACTIVE_EXTRUDER "Active Extruder: "
  114. #define MSG_INVALID_EXTRUDER "Invalid extruder"
  115. #define MSG_INVALID_SOLENOID "Invalid solenoid"
  116. #define MSG_X_MIN "x_min: "
  117. #define MSG_X_MAX "x_max: "
  118. #define MSG_Y_MIN "y_min: "
  119. #define MSG_Y_MAX "y_max: "
  120. #define MSG_Z_MIN "z_min: "
  121. #define MSG_Z_MAX "z_max: "
  122. #define MSG_Z2_MAX "z2_max: "
  123. #define MSG_Z_PROBE "z_probe: "
  124. #define MSG_M119_REPORT "Reporting endstop status"
  125. #define MSG_ENDSTOP_HIT "TRIGGERED"
  126. #define MSG_ENDSTOP_OPEN "open"
  127. #define MSG_HOTEND_OFFSET "Hotend offsets:"
  128. #define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
  129. #define MSG_SD_INIT_FAIL "SD init fail"
  130. #define MSG_SD_VOL_INIT_FAIL "volume.init failed"
  131. #define MSG_SD_OPENROOT_FAIL "openRoot failed"
  132. #define MSG_SD_CARD_OK "SD card ok"
  133. #define MSG_SD_WORKDIR_FAIL "workDir open failed"
  134. #define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
  135. #define MSG_SD_FILE_OPENED "File opened: "
  136. #define MSG_SD_SIZE " Size: "
  137. #define MSG_SD_FILE_SELECTED "File selected"
  138. #define MSG_SD_WRITE_TO_FILE "Writing to file: "
  139. #define MSG_SD_PRINTING_BYTE "SD printing byte "
  140. #define MSG_SD_NOT_PRINTING "Not SD printing"
  141. #define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
  142. #define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir: "
  143. #define MSG_STEPPER_TOO_HIGH "Steprate too high: "
  144. #define MSG_ENDSTOPS_HIT "endstops hit: "
  145. #define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
  146. #define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
  147. #define MSG_BABYSTEPPING_X "Babystepping X"
  148. #define MSG_BABYSTEPPING_Y "Babystepping Y"
  149. #define MSG_BABYSTEPPING_Z "Babystepping Z"
  150. #define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
  151. #define MSG_ERR_EEPROM_WRITE "Error writing to EEPROM!"
  152. // temperature.cpp strings
  153. #define MSG_PID_AUTOTUNE "PID Autotune"
  154. #define MSG_PID_AUTOTUNE_START MSG_PID_AUTOTUNE " start"
  155. #define MSG_PID_AUTOTUNE_FAILED MSG_PID_AUTOTUNE " failed!"
  156. #define MSG_PID_BAD_EXTRUDER_NUM MSG_PID_AUTOTUNE_FAILED " Bad extruder number"
  157. #define MSG_PID_TEMP_TOO_HIGH MSG_PID_AUTOTUNE_FAILED " Temperature too high"
  158. #define MSG_PID_TIMEOUT MSG_PID_AUTOTUNE_FAILED " timeout"
  159. #define MSG_BIAS " bias: "
  160. #define MSG_D " d: "
  161. #define MSG_T_MIN " min: "
  162. #define MSG_T_MAX " max: "
  163. #define MSG_KU " Ku: "
  164. #define MSG_TU " Tu: "
  165. #define MSG_CLASSIC_PID " Classic PID "
  166. #define MSG_KP " Kp: "
  167. #define MSG_KI " Ki: "
  168. #define MSG_KD " Kd: "
  169. #define MSG_OK_B "ok B:"
  170. #define MSG_OK_T "ok T:"
  171. #define MSG_AT " @:"
  172. #define MSG_PID_AUTOTUNE_FINISHED MSG_PID_AUTOTUNE " finished! Put the last Kp, Ki and Kd constants from above into Configuration.h"
  173. #define MSG_PID_DEBUG " PID_DEBUG "
  174. #define MSG_PID_DEBUG_INPUT ": Input "
  175. #define MSG_PID_DEBUG_OUTPUT " Output "
  176. #define MSG_PID_DEBUG_PTERM " pTerm "
  177. #define MSG_PID_DEBUG_ITERM " iTerm "
  178. #define MSG_PID_DEBUG_DTERM " dTerm "
  179. #define MSG_HEATING_FAILED "Heating failed"
  180. #define MSG_EXTRUDER_SWITCHED_OFF "Extruder switched off. Temperature difference between temp sensors is too high !"
  181. #define MSG_INVALID_EXTRUDER_NUM " - Invalid extruder number !"
  182. #define MSG_THERMAL_RUNAWAY_STOP "Thermal Runaway, system stopped! Heater_ID: "
  183. #define MSG_SWITCHED_OFF_MAX " switched off. MAXTEMP triggered !!"
  184. #define MSG_MINTEMP_EXTRUDER_OFF ": Extruder switched off. MINTEMP triggered !"
  185. #define MSG_MAXTEMP_EXTRUDER_OFF ": Extruder" MSG_SWITCHED_OFF_MAX
  186. #define MSG_MAXTEMP_BED_OFF "Heated bed" MSG_SWITCHED_OFF_MAX
  187. // LCD Menu Messages
  188. #if !(defined( DISPLAY_CHARSET_HD44780_JAPAN ) || defined( DISPLAY_CHARSET_HD44780_WESTERN ) || defined( DISPLAY_CHARSET_HD44780_CYRILLIC ))
  189. #define DISPLAY_CHARSET_HD44780_JAPAN
  190. #endif
  191. #include LANGUAGE_INCLUDE
  192. #include "language_en.h"
  193. #endif //__LANGUAGE_H