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_gl.h 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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. * Galician language (ISO "gl")
  24. *
  25. * LCD Menu Messages
  26. * See also https://github.com/MarlinFirmware/Marlin/wiki/LCD-Language
  27. *
  28. */
  29. #ifndef LANGUAGE_GL_H
  30. #define LANGUAGE_GL_H
  31. #define MAPPER_C2C3
  32. #define DISPLAY_CHARSET_ISO10646_1
  33. #define WELCOME_MSG MACHINE_NAME " lista."
  34. #define MSG_SD_INSERTED "Tarxeta inserida"
  35. #define MSG_SD_REMOVED "Tarxeta retirada"
  36. #define MSG_LCD_ENDSTOPS "FinCarro"
  37. #define MSG_MAIN "Menu principal"
  38. #define MSG_AUTOSTART "Autoarranque"
  39. #define MSG_DISABLE_STEPPERS "Apagar motores"
  40. #define MSG_AUTO_HOME "Ir a orixe"
  41. #define MSG_AUTO_HOME_X "Ir orixe X"
  42. #define MSG_AUTO_HOME_Y "Ir orixe Y"
  43. #define MSG_AUTO_HOME_Z "Ir orixe Z"
  44. #define MSG_LEVEL_BED_HOMING "Ir orixes XYZ"
  45. #define MSG_LEVEL_BED_WAITING "Prema pulsador"
  46. #define MSG_LEVEL_BED_NEXT_POINT "Seguinte punto"
  47. #define MSG_LEVEL_BED_DONE "Nivelado feito"
  48. #define MSG_LEVEL_BED_CANCEL "Cancelar"
  49. #define MSG_SET_HOME_OFFSETS "Offsets na orixe"
  50. #define MSG_HOME_OFFSETS_APPLIED "Offsets fixados"
  51. #define MSG_SET_ORIGIN "Fixar orixe"
  52. #define MSG_PREHEAT_1 "Prequentar PLA"
  53. #define MSG_PREHEAT_1_N "Prequentar PLA "
  54. #define MSG_PREHEAT_1_ALL "Preque. PLA Todo"
  55. #define MSG_PREHEAT_1_BEDONLY "Preque. PLA Cama"
  56. #define MSG_PREHEAT_1_SETTINGS "Preque. PLA conf"
  57. #define MSG_PREHEAT_2 "Prequentar ABS"
  58. #define MSG_PREHEAT_2_N "Prequentar ABS "
  59. #define MSG_PREHEAT_2_ALL "Preque. ABS Todo"
  60. #define MSG_PREHEAT_2_BEDONLY "Preque. ABS Cama"
  61. #define MSG_PREHEAT_2_SETTINGS "Preque. ABS conf"
  62. #define MSG_COOLDOWN "Arrefriar"
  63. #define MSG_SWITCH_PS_ON "Acender"
  64. #define MSG_SWITCH_PS_OFF "Apagar"
  65. #define MSG_EXTRUDE "Extrudir"
  66. #define MSG_RETRACT "Retraer"
  67. #define MSG_MOVE_AXIS "Mover eixe"
  68. #define MSG_LEVEL_BED "Nivelar cama"
  69. #define MSG_MOVE_X "Mover X"
  70. #define MSG_MOVE_Y "Mover Y"
  71. #define MSG_MOVE_Z "Mover Z"
  72. #define MSG_MOVE_E "Extrusor"
  73. #define MSG_MOVE_01MM "Mover 0.1mm"
  74. #define MSG_MOVE_1MM "Mover 1mm"
  75. #define MSG_MOVE_10MM "Mover 10mm"
  76. #define MSG_SPEED "Velocidade"
  77. #define MSG_BED_Z "Cama Z"
  78. #define MSG_NOZZLE "Bico"
  79. #define MSG_BED "Cama"
  80. #define MSG_FAN_SPEED "Velocidade vent."
  81. #define MSG_FLOW "Fluxo"
  82. #define MSG_CONTROL "Control"
  83. #define MSG_MIN " " LCD_STR_THERMOMETER " Min"
  84. #define MSG_MAX " " LCD_STR_THERMOMETER " Max"
  85. #define MSG_FACTOR " " LCD_STR_THERMOMETER " Fact"
  86. #define MSG_AUTOTEMP "Autotemp"
  87. #define MSG_ON "On "
  88. #define MSG_OFF "Off"
  89. #define MSG_PID_P "PID-P"
  90. #define MSG_PID_I "PID-I"
  91. #define MSG_PID_D "PID-D"
  92. #define MSG_PID_C "PID-C"
  93. #define MSG_SELECT "Escolla"
  94. #define MSG_ACC "Acel"
  95. #define MSG_VX_JERK "Vx-jerk"
  96. #define MSG_VY_JERK "Vy-jerk"
  97. #define MSG_VZ_JERK "Vz-jerk"
  98. #define MSG_VE_JERK "Ve-jerk"
  99. #define MSG_VMAX "Vmax "
  100. #define MSG_VMIN "Vmin"
  101. #define MSG_VTRAV_MIN "VTrav min"
  102. #define MSG_AMAX "Amax "
  103. #define MSG_A_RETRACT "A-retract"
  104. #define MSG_A_TRAVEL "A-travel"
  105. #define MSG_XSTEPS "Xpasos/mm"
  106. #define MSG_YSTEPS "Ypasos/mm"
  107. #define MSG_ZSTEPS "Zpasos/mm"
  108. #define MSG_ESTEPS "Epasos/mm"
  109. #define MSG_TEMPERATURE "Temperatura"
  110. #define MSG_MOTION "Movemento"
  111. #define MSG_VOLUMETRIC "Filamento"
  112. #define MSG_VOLUMETRIC_ENABLED "E en mm3"
  113. #define MSG_FILAMENT_DIAM "Diam. fil."
  114. #define MSG_CONTRAST "Constraste LCD"
  115. #define MSG_STORE_EPROM "Gardar en memo."
  116. #define MSG_LOAD_EPROM "Cargar de memo."
  117. #define MSG_RESTORE_FAILSAFE "Cargar de firm."
  118. #define MSG_REFRESH "Volver a cargar"
  119. #define MSG_WATCH "Monitorizacion"
  120. #define MSG_PREPARE "Preparar"
  121. #define MSG_TUNE "Axustar"
  122. #define MSG_PAUSE_PRINT "Pausar impres."
  123. #define MSG_RESUME_PRINT "Seguir impres."
  124. #define MSG_STOP_PRINT "Deter impres."
  125. #define MSG_CARD_MENU "Tarxeta SD"
  126. #define MSG_NO_CARD "Sen tarxeta SD"
  127. #define MSG_DWELL "En repouso..."
  128. #define MSG_USERWAIT "A espera..."
  129. #define MSG_RESUMING "Imprimindo..."
  130. #define MSG_PRINT_ABORTED "Impre. cancelada"
  131. #define MSG_NO_MOVE "Sen movemento."
  132. #define MSG_KILLED "PROGRAMA MORTO"
  133. #define MSG_STOPPED "PROGRAMA PARADO"
  134. #define MSG_CONTROL_RETRACT "Retraccion mm"
  135. #define MSG_CONTROL_RETRACT_SWAP "Cambio retra. mm"
  136. #define MSG_CONTROL_RETRACTF "Retraccion V"
  137. #define MSG_CONTROL_RETRACT_ZLIFT "Alzar Z mm"
  138. #define MSG_CONTROL_RETRACT_RECOVER "Recup. retra. mm"
  139. #define MSG_CONTROL_RETRACT_RECOVER_SWAP "Cambio recup. mm"
  140. #define MSG_CONTROL_RETRACT_RECOVERF "Recuperacion V"
  141. #define MSG_AUTORETRACT "Retraccion auto."
  142. #define MSG_FILAMENTCHANGE "Cambiar filamen."
  143. #define MSG_INIT_SDCARD "Iniciando SD"
  144. #define MSG_CNG_SDCARD "Cambiar SD"
  145. #define MSG_ZPROBE_OUT "Sonda-Z sen cama"
  146. #define MSG_HOME "Home" // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
  147. #define MSG_FIRST "first"
  148. #define MSG_ZPROBE_ZOFFSET "Offset Z"
  149. #define MSG_BABYSTEP_X "Micropaso X"
  150. #define MSG_BABYSTEP_Y "Micropaso Y"
  151. #define MSG_BABYSTEP_Z "Micropaso Z"
  152. #define MSG_ENDSTOP_ABORT "Erro fin carro"
  153. #define MSG_HEATING_FAILED_LCD "Fallo quentando"
  154. #define MSG_ERR_REDUNDANT_TEMP "Erro temperatura"
  155. #define MSG_THERMAL_RUNAWAY "Temp. excesiva"
  156. #define MSG_ERR_MAXTEMP "Err: temp. max."
  157. #define MSG_ERR_MINTEMP "Err: temp. min."
  158. #define MSG_ERR_MAXTEMP_BED "Err: MAXTEMP BED"
  159. #define MSG_ERR_MINTEMP_BED "Err: MINTEMP BED"
  160. #define MSG_HALTED "SISTEMA MORTO"
  161. #define MSG_PLEASE_RESET "Debe reiniciar!"
  162. #define MSG_SHORT_DAY "d" // One character only
  163. #define MSG_SHORT_HOUR "h" // One character only
  164. #define MSG_SHORT_MINUTE "m" // One character only
  165. #define MSG_HEATING "Quentando..."
  166. #define MSG_HEATING_COMPLETE "Xa esta quente"
  167. #define MSG_BED_HEATING "Quentando cama"
  168. #define MSG_BED_DONE "Cama esta quente"
  169. #define MSG_DELTA_CALIBRATE "Calibracion Delta"
  170. #define MSG_DELTA_CALIBRATE_X "Calibrar X"
  171. #define MSG_DELTA_CALIBRATE_Y "Calibrar Y"
  172. #define MSG_DELTA_CALIBRATE_Z "Calibrar Z"
  173. #define MSG_DELTA_CALIBRATE_CENTER "Calibrar Centro"
  174. #define MSG_INFO_MENU "Acerca de..."
  175. #define MSG_INFO_PRINTER_MENU "Informacion"
  176. #define MSG_INFO_STATS_MENU "Estadisticas"
  177. #define MSG_INFO_BOARD_MENU "Placa nai"
  178. #define MSG_INFO_THERMISTOR_MENU "Termistores"
  179. #define MSG_INFO_EXTRUDERS "Extrusores"
  180. #define MSG_INFO_BAUDRATE "Baudios"
  181. #define MSG_INFO_PROTOCOL "Protocolo"
  182. #if LCD_WIDTH > 19
  183. #define MSG_INFO_PRINT_COUNT "Total traballos"
  184. #define MSG_INFO_COMPLETED_PRINTS "Total completos"
  185. #define MSG_INFO_PRINT_TIME "Tempo impresion"
  186. #define MSG_INFO_PRINT_LONGEST "Traballo +longo"
  187. #define MSG_INFO_PRINT_FILAMENT "Total extruido"
  188. #else
  189. #define MSG_INFO_PRINT_COUNT "Traballos"
  190. #define MSG_INFO_COMPLETED_PRINTS "Completos"
  191. #define MSG_INFO_PRINT_TIME "Tempo"
  192. #define MSG_INFO_PRINT_LONGEST "O +longo"
  193. #define MSG_INFO_PRINT_FILAMENT "Extruido"
  194. #endif
  195. #define MSG_INFO_MIN_TEMP "Min Temp"
  196. #define MSG_INFO_MAX_TEMP "Max Temp"
  197. #define MSG_INFO_PSU "Fonte alime."
  198. #define MSG_FILAMENT_CHANGE_HEADER "TROCO FILAMENTO"
  199. #define MSG_FILAMENT_CHANGE_OPTION_HEADER "OPCIONS TROCO:"
  200. #define MSG_FILAMENT_CHANGE_OPTION_EXTRUDE "Extruir mais"
  201. #define MSG_FILAMENT_CHANGE_OPTION_RESUME "Segue traballo"
  202. #if LCD_HEIGHT >= 4
  203. #define MSG_FILAMENT_CHANGE_INIT_1 "Agarde para"
  204. #define MSG_FILAMENT_CHANGE_INIT_2 "iniciar troco"
  205. #define MSG_FILAMENT_CHANGE_INIT_3 "de filamento"
  206. #define MSG_FILAMENT_CHANGE_UNLOAD_1 "Agarde pola"
  207. #define MSG_FILAMENT_CHANGE_UNLOAD_2 "descarga do"
  208. #define MSG_FILAMENT_CHANGE_UNLOAD_3 "filamento"
  209. #define MSG_FILAMENT_CHANGE_INSERT_1 "Introduza o"
  210. #define MSG_FILAMENT_CHANGE_INSERT_2 "filamento e"
  211. #define MSG_FILAMENT_CHANGE_INSERT_3 "faga click"
  212. #define MSG_FILAMENT_CHANGE_LOAD_1 "Agarde pola"
  213. #define MSG_FILAMENT_CHANGE_LOAD_2 "carga do"
  214. #define MSG_FILAMENT_CHANGE_LOAD_3 "filamento"
  215. #define MSG_FILAMENT_CHANGE_EXTRUDE_1 "Agarde pola"
  216. #define MSG_FILAMENT_CHANGE_EXTRUDE_2 "extrusion do"
  217. #define MSG_FILAMENT_CHANGE_EXTRUDE_3 "filamento"
  218. #define MSG_FILAMENT_CHANGE_RESUME_1 "Agarde para"
  219. #define MSG_FILAMENT_CHANGE_RESUME_2 "seguir co"
  220. #define MSG_FILAMENT_CHANGE_RESUME_3 "traballo"
  221. #else // LCD_HEIGHT < 4
  222. #define MSG_FILAMENT_CHANGE_INIT_1 "Agarde..."
  223. #define MSG_FILAMENT_CHANGE_UNLOAD_1 "Descargando..."
  224. #define MSG_FILAMENT_CHANGE_INSERT_1 "Introduza e click"
  225. #define MSG_FILAMENT_CHANGE_LOAD_1 "Cargando..."
  226. #define MSG_FILAMENT_CHANGE_EXTRUDE_1 "Extruindo..."
  227. #define MSG_FILAMENT_CHANGE_RESUME_1 "Seguindo..."
  228. #endif // LCD_HEIGHT < 4
  229. #endif // LANGUAGE_GL_H