|
@@ -0,0 +1,151 @@
|
|
1
|
+/**
|
|
2
|
+ * Galician language (ISO "gl")
|
|
3
|
+ *
|
|
4
|
+ * LCD Menu Messages
|
|
5
|
+ * Se also documentation/LCDLanguageFont.md
|
|
6
|
+ *
|
|
7
|
+ */
|
|
8
|
+#ifndef LANGUAGE_GL_H
|
|
9
|
+#define LANGUAGE_GL_H
|
|
10
|
+
|
|
11
|
+#define MAPPER_C2C3
|
|
12
|
+// Define SIMULATE_ROMFONT to see what is seen on the character based display defined in Configuration.h
|
|
13
|
+//#define SIMULATE_ROMFONT
|
|
14
|
+#define DISPLAY_CHARSET_ISO10646_1
|
|
15
|
+
|
|
16
|
+#define WELCOME_MSG MACHINE_NAME " lista."
|
|
17
|
+#define MSG_SD_INSERTED "Tarxeta inserida"
|
|
18
|
+#define MSG_SD_REMOVED "Tarxeta retirada"
|
|
19
|
+#define MSG_MAIN "Menu principal"
|
|
20
|
+#define MSG_AUTOSTART "Autoarranque"
|
|
21
|
+#define MSG_DISABLE_STEPPERS "Apagar motores"
|
|
22
|
+#define MSG_AUTO_HOME "Ir a orixe"
|
|
23
|
+#define MSG_SET_ORIGIN "Fixar orixe"
|
|
24
|
+#define MSG_PREHEAT_PLA "Prequentar PLA"
|
|
25
|
+#define MSG_PREHEAT_PLA_N "Prequentar PLA "
|
|
26
|
+#define MSG_PREHEAT_PLA_ALL "Preque. PLA Todo"
|
|
27
|
+#define MSG_PREHEAT_PLA_BEDONLY "Preque. PLA Cama"
|
|
28
|
+#define MSG_PREHEAT_PLA_SETTINGS "Preque. PLA conf"
|
|
29
|
+#define MSG_PREHEAT_ABS "Prequentar ABS"
|
|
30
|
+#define MSG_PREHEAT_ABS_N "Prequentar ABS "
|
|
31
|
+#define MSG_PREHEAT_ABS_ALL "Preque. ABS Todo"
|
|
32
|
+#define MSG_PREHEAT_ABS_BEDONLY "Preque. ABS Cama"
|
|
33
|
+#define MSG_PREHEAT_ABS_SETTINGS "Preque. ABS conf"
|
|
34
|
+#define MSG_COOLDOWN "Arrefriar"
|
|
35
|
+#define MSG_SWITCH_PS_ON "Acender"
|
|
36
|
+#define MSG_SWITCH_PS_OFF "Apagar"
|
|
37
|
+#define MSG_EXTRUDE "Extrudir"
|
|
38
|
+#define MSG_RETRACT "Retraer"
|
|
39
|
+#define MSG_MOVE_AXIS "Mover eixe"
|
|
40
|
+#define MSG_LEVEL_BED "Nivelar cama"
|
|
41
|
+#define MSG_MOVE_X "Mover X"
|
|
42
|
+#define MSG_MOVE_Y "Mover Y"
|
|
43
|
+#define MSG_MOVE_Z "Mover Z"
|
|
44
|
+#define MSG_MOVE_E "Extruir"
|
|
45
|
+#define MSG_MOVE_01MM "Mover 0.1mm"
|
|
46
|
+#define MSG_MOVE_1MM "Mover 1mm"
|
|
47
|
+#define MSG_MOVE_10MM "Mover 10mm"
|
|
48
|
+#define MSG_SPEED "Velocidade"
|
|
49
|
+#define MSG_NOZZLE "Bico"
|
|
50
|
+#define MSG_BED "Cama"
|
|
51
|
+#define MSG_FAN_SPEED "Velocidade vent."
|
|
52
|
+#define MSG_FLOW "Fluxo"
|
|
53
|
+#define MSG_CONTROL "Control"
|
|
54
|
+#define MSG_MIN " " LCD_STR_THERMOMETER " Min"
|
|
55
|
+#define MSG_MAX " " LCD_STR_THERMOMETER " Max"
|
|
56
|
+#define MSG_FACTOR " " LCD_STR_THERMOMETER " Fact"
|
|
57
|
+#define MSG_AUTOTEMP "Autotemp"
|
|
58
|
+#define MSG_ON "On "
|
|
59
|
+#define MSG_OFF "Off"
|
|
60
|
+#define MSG_PID_P "PID-P"
|
|
61
|
+#define MSG_PID_I "PID-I"
|
|
62
|
+#define MSG_PID_D "PID-D"
|
|
63
|
+#define MSG_PID_C "PID-C"
|
|
64
|
+#define MSG_E1 " E1"
|
|
65
|
+#define MSG_E2 " E2"
|
|
66
|
+#define MSG_E3 " E3"
|
|
67
|
+#define MSG_E4 " E4"
|
|
68
|
+#define MSG_ACC "Acel"
|
|
69
|
+#define MSG_VXY_JERK "Vxy-jerk"
|
|
70
|
+#define MSG_VZ_JERK "Vz-jerk"
|
|
71
|
+#define MSG_VE_JERK "Ve-jerk"
|
|
72
|
+#define MSG_VMAX "Vmax "
|
|
73
|
+#define MSG_X "x"
|
|
74
|
+#define MSG_Y "y"
|
|
75
|
+#define MSG_Z "z"
|
|
76
|
+#define MSG_E "e"
|
|
77
|
+#define MSG_VMIN "Vmin"
|
|
78
|
+#define MSG_VTRAV_MIN "VTrav min"
|
|
79
|
+#define MSG_AMAX "Amax "
|
|
80
|
+#define MSG_A_RETRACT "A-retract"
|
|
81
|
+#define MSG_A_TRAVEL "A-travel"
|
|
82
|
+#define MSG_XSTEPS "Xpasos/mm"
|
|
83
|
+#define MSG_YSTEPS "Ypasos/mm"
|
|
84
|
+#define MSG_ZSTEPS "Zpasos/mm"
|
|
85
|
+#define MSG_ESTEPS "Epasos/mm"
|
|
86
|
+#define MSG_TEMPERATURE "Temperatura"
|
|
87
|
+#define MSG_MOTION "Movemento"
|
|
88
|
+#define MSG_VOLUMETRIC "Filamento"
|
|
89
|
+#define MSG_VOLUMETRIC_ENABLED "E en mm3"
|
|
90
|
+#define MSG_FILAMENT_DIAM "Diametro filam."
|
|
91
|
+#define MSG_CONTRAST "Constraste LCD"
|
|
92
|
+#define MSG_STORE_EPROM "Gardar en memo."
|
|
93
|
+#define MSG_LOAD_EPROM "Cargar de memo."
|
|
94
|
+#define MSG_RESTORE_FAILSAFE "Cargar de firm."
|
|
95
|
+#define MSG_REFRESH "Volver a cargar"
|
|
96
|
+#define MSG_WATCH "Monitorizacion"
|
|
97
|
+#define MSG_PREPARE "Preparar"
|
|
98
|
+#define MSG_TUNE "Axustar"
|
|
99
|
+#define MSG_PAUSE_PRINT "Pausar impres."
|
|
100
|
+#define MSG_RESUME_PRINT "Seguir impres."
|
|
101
|
+#define MSG_STOP_PRINT "Deter impres."
|
|
102
|
+#define MSG_CARD_MENU "Tarxeta SD"
|
|
103
|
+#define MSG_NO_CARD "Sen tarxeta SD"
|
|
104
|
+#define MSG_DWELL "En repouso..."
|
|
105
|
+#define MSG_USERWAIT "A espera..."
|
|
106
|
+#define MSG_RESUMING "Imprimindo..."
|
|
107
|
+#define MSG_PRINT_ABORTED "Impre. cancelada"
|
|
108
|
+#define MSG_NO_MOVE "Sen movemento."
|
|
109
|
+#define MSG_KILLED "PROGRAMA MORTO"
|
|
110
|
+#define MSG_STOPPED "PROGRAMA PARADO"
|
|
111
|
+#define MSG_CONTROL_RETRACT "Retraccion mm"
|
|
112
|
+#define MSG_CONTROL_RETRACT_SWAP "Cambio retra. mm"
|
|
113
|
+#define MSG_CONTROL_RETRACTF "Retraccion V"
|
|
114
|
+#define MSG_CONTROL_RETRACT_ZLIFT "Alzar Z mm"
|
|
115
|
+#define MSG_CONTROL_RETRACT_RECOVER "Recup. retra. mm"
|
|
116
|
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP "Cambio recup. mm"
|
|
117
|
+#define MSG_CONTROL_RETRACT_RECOVERF "Recuperacion V"
|
|
118
|
+#define MSG_AUTORETRACT "Retraccion auto."
|
|
119
|
+#define MSG_FILAMENTCHANGE "Cambiar filamen."
|
|
120
|
+#define MSG_INIT_SDCARD "Iniciando SD"
|
|
121
|
+#define MSG_CNG_SDCARD "Cambiar SD"
|
|
122
|
+#define MSG_ZPROBE_OUT "Sonda-Z sen cama"
|
|
123
|
+#define MSG_POSITION_UNKNOWN "X/Y antes que Z"
|
|
124
|
+#define MSG_ZPROBE_ZOFFSET "Offset Z"
|
|
125
|
+#define MSG_BABYSTEP_X "Micropaso X"
|
|
126
|
+#define MSG_BABYSTEP_Y "Micropaso Y"
|
|
127
|
+#define MSG_BABYSTEP_Z "Micropaso Z"
|
|
128
|
+#define MSG_ENDSTOP_ABORT "Erro fin carro"
|
|
129
|
+#define MSG_HEATING_FAILED_LCD "Fallo quentando"
|
|
130
|
+#define MSG_ERR_REDUNDANT_TEMP "Erro temperatura"
|
|
131
|
+#define MSG_THERMAL_RUNAWAY "Temp. excesiva"
|
|
132
|
+#define MSG_ERR_MAXTEMP "Err: temp. max."
|
|
133
|
+#define MSG_ERR_MINTEMP "Err: temp. min."
|
|
134
|
+#define MSG_ERR_MAXTEMP_BED "Err: MAXTEMP BED"
|
|
135
|
+#define MSG_ERR_MINTEMP_BED "Err: MINTEMP BED"
|
|
136
|
+#define MSG_END_HOUR "horas"
|
|
137
|
+#define MSG_END_MINUTE "minutos"
|
|
138
|
+#define MSG_HEATING "Quentando..."
|
|
139
|
+#define MSG_HEATING_COMPLETE "Xa esta quente"
|
|
140
|
+#define MSG_BED_HEATING "Quentando cama"
|
|
141
|
+#define MSG_BED_DONE "Cama esta quente"
|
|
142
|
+
|
|
143
|
+#if ENABLED(DELTA_CALIBRATION_MENU)
|
|
144
|
+ #define MSG_DELTA_CALIBRATE "Calibracion Delta"
|
|
145
|
+ #define MSG_DELTA_CALIBRATE_X "Calibrar X"
|
|
146
|
+ #define MSG_DELTA_CALIBRATE_Y "Calibrar Y"
|
|
147
|
+ #define MSG_DELTA_CALIBRATE_Z "Calibrar Z"
|
|
148
|
+ #define MSG_DELTA_CALIBRATE_CENTER "Calibrar Centro"
|
|
149
|
+#endif // DELTA_CALIBRATION_MENU
|
|
150
|
+
|
|
151
|
+#endif // LANGUAGE_GL_H
|