Browse Source

Fix for some wrong strings

On last commit, some strings were ended with the incorrect character.
This fixes it.
emartinez167 7 years ago
parent
commit
7292145f4e
1 changed files with 8 additions and 8 deletions
  1. 8
    8
      Marlin/language_es.h

+ 8
- 8
Marlin/language_es.h View File

@@ -39,7 +39,7 @@
39 39
 #define MSG_MAIN                            _UxGT("Menu principal")
40 40
 #define MSG_AUTOSTART                       _UxGT("Inicio automatico")
41 41
 #define MSG_DISABLE_STEPPERS                _UxGT("Apagar motores")
42
-#define MSG_DEBUG_MENU                      _UxGT("Menu depurar)
42
+#define MSG_DEBUG_MENU                      _UxGT("Menu depurar")
43 43
 #define MSG_PROGRESS_BAR_TEST               _UxGT("Prueba barra avance")
44 44
 #define MSG_AUTO_HOME                       _UxGT("Llevar al origen")
45 45
 #define MSG_AUTO_HOME_X                     _UxGT("Origen X")
@@ -47,7 +47,7 @@
47 47
 #define MSG_AUTO_HOME_Z                     _UxGT("Origen Z")
48 48
 #define MSG_LEVEL_BED_HOMING                _UxGT("Origen XYZ")
49 49
 #define MSG_LEVEL_BED_WAITING               _UxGT("Iniciar (Presione)")
50
-#define MSG_LEVEL_BED_NEXT_POINT            _UxGT("Siguiente punto)
50
+#define MSG_LEVEL_BED_NEXT_POINT            _UxGT("Siguiente punto")
51 51
 #define MSG_LEVEL_BED_DONE                  _UxGT("Nivelacion lista!")
52 52
 #define MSG_LEVEL_BED_CANCEL                _UxGT("Cancelar")
53 53
 #define MSG_SET_HOME_OFFSETS                _UxGT("Ajustar desfases")
@@ -70,7 +70,7 @@
70 70
 #define MSG_RETRACT                         _UxGT("Retraer")
71 71
 #define MSG_MOVE_AXIS                       _UxGT("Mover ejes")
72 72
 #define MSG_LEVEL_BED                       _UxGT("Nivelar plataforma")
73
-#define MSG_MOVING                          _UxGT("Moviendo...)
73
+#define MSG_MOVING                          _UxGT("Moviendo...")
74 74
 #define MSG_FREE_XY                         _UxGT("Libre XY")
75 75
 #define MSG_MOVE_X                          _UxGT("Mover X")
76 76
 #define MSG_MOVE_Y                          _UxGT("Mover Y")
@@ -96,7 +96,7 @@
96 96
 #define MSG_PID_I                           _UxGT("PID-I")
97 97
 #define MSG_PID_D                           _UxGT("PID-D")
98 98
 #define MSG_PID_C                           _UxGT("PID-C")
99
-#define MSG_SELECT                          _UxGT("Seleccionar)
99
+#define MSG_SELECT                          _UxGT("Seleccionar")
100 100
 #define MSG_ACC                             _UxGT("Aceleracion")
101 101
 #define MSG_VX_JERK                         _UxGT("Vx-jerk")
102 102
 #define MSG_VY_JERK                         _UxGT("Vy-jerk")
@@ -153,7 +153,7 @@
153 153
 #define MSG_INIT_SDCARD                     _UxGT("Iniciando tarjeta")
154 154
 #define MSG_CNG_SDCARD                      _UxGT("Cambiar tarjeta")
155 155
 #define MSG_ZPROBE_OUT                      _UxGT("Sonda Z fuera")
156
-#define MSG_BLTOUCH_SELFTEST                _UxGT("BLTouch Auto-Prueba)
156
+#define MSG_BLTOUCH_SELFTEST                _UxGT("BLTouch Auto-Prueba")
157 157
 #define MSG_BLTOUCH_RESET                   _UxGT("Reiniciar BLTouch")
158 158
 #define MSG_HOME                            _UxGT("Home")  // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
159 159
 #define MSG_FIRST                           _UxGT("first")
@@ -169,8 +169,8 @@
169 169
 #define MSG_ERR_MINTEMP                     _UxGT("Error: Temp Minima")
170 170
 #define MSG_ERR_MAXTEMP_BED                 _UxGT("Error: Temp Max Plat")
171 171
 #define MSG_ERR_MINTEMP_BED                 _UxGT("Error: Temp Min Plat")
172
-#define MSG_ERR_Z_HOMING                    _UxGT("G28 Z Prohibido)
173
-#define MSG_HALTED                          _UxGT("IMPRESORA PARADA)
172
+#define MSG_ERR_Z_HOMING                    _UxGT("G28 Z Prohibido")
173
+#define MSG_HALTED                          _UxGT("IMPRESORA PARADA")
174 174
 #define MSG_PLEASE_RESET                    _UxGT("Por favor, reinicie")
175 175
 #define MSG_SHORT_DAY                       _UxGT("d") // One character only
176 176
 #define MSG_SHORT_HOUR                      _UxGT("h") // One character only
@@ -193,7 +193,7 @@
193 193
 #define MSG_INFO_BAUDRATE                   _UxGT("Baudios")
194 194
 #define MSG_INFO_PROTOCOL                   _UxGT("Protocolo")
195 195
 #define MSG_LIGHTS_ON                       _UxGT("Luz cabina ON")
196
-#define MSG_LIGHTS_OFF                      _UxGT("Luz cabina OFF)
196
+#define MSG_LIGHTS_OFF                      _UxGT("Luz cabina OFF")
197 197
 #if LCD_WIDTH > 19
198 198
   #define MSG_INFO_PRINT_COUNT              _UxGT("Conteo de impresion")
199 199
   #define MSG_INFO_COMPLETED_PRINTS         _UxGT("Completadas")

Loading…
Cancel
Save