Browse Source

Merge pull request #1192 from thinkyhead/split_language

Split up languages.h. Use ISO language codes.
Bo Herrmannsen 9 years ago
parent
commit
bd25e7393b

+ 1
- 1
Marlin/dogm_lcd_implementation.h View File

@@ -41,7 +41,7 @@
41 41
 
42 42
 /* Russian language not supported yet, needs custom font
43 43
 
44
-#if LANGUAGE_CHOICE == 6
44
+#if LANGUAGE_CHOICE == ru
45 45
 #include "LiquidCrystalRus.h"
46 46
 #define LCD_CLASS LiquidCrystalRus
47 47
 #else

+ 122
- 1760
Marlin/language.h
File diff suppressed because it is too large
View File


+ 139
- 0
Marlin/language_an.h View File

@@ -0,0 +1,139 @@
1
+/**
2
+ * Aragonese
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_AN_H
9
+#define LANGUAGE_AN_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " parada."
12
+#define MSG_SD_INSERTED                     "Tarcheta colocada"
13
+#define MSG_SD_REMOVED                      "Tarcheta retirada"
14
+#define MSG_MAIN                            "Menu prencipal"
15
+#define MSG_AUTOSTART                       " Autostart"
16
+#define MSG_DISABLE_STEPPERS                "Amortar motors"
17
+#define MSG_AUTO_HOME                       "Levar a l'orichen"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Establir zero"
20
+#define MSG_PREHEAT_PLA                     "Precalentar PLA"
21
+#define MSG_PREHEAT_PLA0                    "Precalentar PLA0"
22
+#define MSG_PREHEAT_PLA1                    "Precalentar PLA1"
23
+#define MSG_PREHEAT_PLA2                    "Precalentar PLA2"
24
+#define MSG_PREHEAT_PLA012                  "Precalentar PLA a"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Prec. PLA Base"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Achustar tem. PLA"
27
+#define MSG_PREHEAT_ABS                     "Precalentar ABS"
28
+#define MSG_PREHEAT_ABS0                    "Precalentar ABS0"
29
+#define MSG_PREHEAT_ABS1                    "Precalentar ABS1"
30
+#define MSG_PREHEAT_ABS2                    "Precalentar ABS2"
31
+#define MSG_PREHEAT_ABS012                  "Precalentar ABS a"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Prec. ABS Base"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Achustar tem. ABS"
34
+#define MSG_COOLDOWN                        "Enfriar"
35
+#define MSG_SWITCH_PS_ON                    "Enchegar Fuent"
36
+#define MSG_SWITCH_PS_OFF                   "Desenchegar Fuent"
37
+#define MSG_EXTRUDE                         "Extruir"
38
+#define MSG_RETRACT                         "Retraer"
39
+#define MSG_MOVE_AXIS                       "Mover Eixes"
40
+#define MSG_MOVE_X                          "Move X"
41
+#define MSG_MOVE_Y                          "Move Y"
42
+#define MSG_MOVE_Z                          "Move Z"
43
+#define MSG_MOVE_E                          "Extruder"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "Move 0.1mm"
47
+#define MSG_MOVE_1MM                        "Move 1mm"
48
+#define MSG_MOVE_10MM                       "Move 10mm"
49
+#define MSG_SPEED                           "Velocidat"
50
+#define MSG_NOZZLE                          "Nozzle"
51
+#define MSG_NOZZLE1                         "Nozzle2"
52
+#define MSG_NOZZLE2                         "Nozzle3"
53
+#define MSG_BED                             "Base"
54
+#define MSG_FAN_SPEED                       "Ixoriador"
55
+#define MSG_FLOW                            "Fluxo"
56
+#define MSG_FLOW0                           "Fluxo 0"
57
+#define MSG_FLOW1                           "Fluxo 1"
58
+#define MSG_FLOW2                           "Fluxo 2"
59
+#define MSG_CONTROL                         "Control"
60
+#define MSG_MIN                             "\002 Min"
61
+#define MSG_MAX                             "\002 Max"
62
+#define MSG_FACTOR                          "\002 Fact"
63
+#define MSG_AUTOTEMP                        "Autotemp"
64
+#define MSG_ON                              "On"
65
+#define MSG_OFF                             "Off"
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Acel"
71
+#define MSG_VXY_JERK                        "Vxy-jerk"
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ves-jerk"
74
+#define MSG_VMAX                            "Vmax"
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "y"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "VTrav min"
81
+#define MSG_AMAX                            "Amax"
82
+#define MSG_A_RETRACT                       "A-retrac."
83
+#define MSG_XSTEPS                          "X trangos/mm"
84
+#define MSG_YSTEPS                          "Y trangos/mm"
85
+#define MSG_ZSTEPS                          "Z trangos/mm"
86
+#define MSG_ESTEPS                          "E trangos/mm"
87
+#define MSG_TEMPERATURE                     "Temperatura"
88
+#define MSG_MOTION                          "Movimiento"
89
+#define MSG_CONTRAST                        "Contrast"
90
+#define MSG_STORE_EPROM                     "Alzar Memoria"
91
+#define MSG_LOAD_EPROM                      "Cargar Memoria"
92
+#define MSG_RESTORE_FAILSAFE                "Rest. d'emerchen."
93
+#define MSG_REFRESH                         "Tornar a cargar"
94
+#define MSG_WATCH                           "Monitorizar"
95
+#define MSG_PREPARE                         "Preparar"
96
+#define MSG_TUNE                            "Achustar"
97
+#define MSG_PAUSE_PRINT                     "Pausar impresion"
98
+#define MSG_RESUME_PRINT                    "Contin. impresion"
99
+#define MSG_STOP_PRINT                      "Detener Impresion"
100
+#define MSG_CARD_MENU                       "Menu de SD"
101
+#define MSG_NO_CARD                         "No i hai tarcheta"
102
+#define MSG_DWELL                           "Reposo..."
103
+#define MSG_USERWAIT                        "Asperan. ordines"
104
+#define MSG_RESUMING                        "Contin. impresion"
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Sin movimiento"
107
+#define MSG_KILLED                          "ATURADA D'EMERCH."
108
+#define MSG_STOPPED                         "ATURADA."
109
+#define MSG_CONTROL_RETRACT                 "Retraer mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Swap Retraer mm"
111
+#define MSG_CONTROL_RETRACTF                "Retraer  F"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Devantar mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "DesRet +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Swap DesRet +mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "DesRet F"
116
+#define MSG_AUTORETRACT                     "AutoRetr."
117
+#define MSG_FILAMENTCHANGE                  "Cambear"
118
+#define MSG_INIT_SDCARD                     "Encetan. tarcheta"
119
+#define MSG_CNG_SDCARD                      "Cambiar tarcheta"
120
+#define MSG_ZPROBE_OUT                      "Z probe out. bed"
121
+#define MSG_POSITION_UNKNOWN                "Home X/Y before Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Z Offset"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
127
+
128
+#define MSG_RECTRACT                        "Retraer"
129
+#define MSG_RECTRACT_WIDE                   "Retraer"
130
+#define MSG_TEMPERATURE_WIDE                "Temperatura"
131
+#define MSG_TEMPERATURE_RTN                 "Temperatura"
132
+#define MSG_MAIN_WIDE                       "Menu Prencipal"
133
+#define MSG_MOTION_WIDE                     "Movimiento"
134
+#define MSG_PREPARE_ALT                     "Preparar"
135
+#define MSG_CONTROL_ARROW                   "Control \x7E"
136
+#define MSG_RETRACT_ARROW                   "Retraer \x7E"
137
+#define MSG_STEPPER_RELEASED                "Desacoplada."
138
+
139
+#endif // LANGUAGE_AN_H

+ 130
- 0
Marlin/language_ca.h View File

@@ -0,0 +1,130 @@
1
+/**
2
+ * Catalan
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_CA_H
9
+#define LANGUAGE_CA_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " preparada."
12
+#define MSG_SD_INSERTED                     "SD detectada."
13
+#define MSG_SD_REMOVED                      "SD expulsada."
14
+#define MSG_MAIN                            "Menu principal"
15
+#define MSG_AUTOSTART                       "Inici automatic"
16
+#define MSG_DISABLE_STEPPERS                "Apagar motors"
17
+#define MSG_AUTO_HOME                       "Home global"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Establir origen"
20
+#define MSG_PREHEAT_PLA                     "Preescalfar PLA"
21
+#define MSG_PREHEAT_PLA0                    "Preescalfar PLA 1"
22
+#define MSG_PREHEAT_PLA1                    "Preescalfar PLA 2"
23
+#define MSG_PREHEAT_PLA2                    "Preescalfar PLA 3"
24
+#define MSG_PREHEAT_PLA012                  "Preesc. tot PLA"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Preesc. llit PLA"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Configuració PLA"
27
+#define MSG_PREHEAT_ABS                     "Preescalfar ABS"
28
+#define MSG_PREHEAT_ABS0                    "Preescalfar ABS 1"
29
+#define MSG_PREHEAT_ABS1                    "Preescalfar ABS 2"
30
+#define MSG_PREHEAT_ABS2                    "Preescalfar ABS 3"
31
+#define MSG_PREHEAT_ABS012                  "Preesc. tot ABS"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Preesc. llit ABS"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Configuració ABS"
34
+#define MSG_COOLDOWN                        "Refredar"
35
+#define MSG_SWITCH_PS_ON                    "Switch power on"
36
+#define MSG_SWITCH_PS_OFF                   "Switch power off"
37
+#define MSG_EXTRUDE                         "Extruir"
38
+#define MSG_RETRACT                         "Refredar"
39
+#define MSG_MOVE_AXIS                       "Moure eixos"
40
+#define MSG_MOVE_X                          "Moure X"
41
+#define MSG_MOVE_Y                          "Moure Y"
42
+#define MSG_MOVE_Z                          "Moure Z"
43
+#define MSG_MOVE_E                          "Extrusor"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "Moure 0.1mm"
47
+#define MSG_MOVE_1MM                        "Moure 1mm"
48
+#define MSG_MOVE_10MM                       "Moure 10mm"
49
+#define MSG_SPEED                           "Velocitat"
50
+#define MSG_NOZZLE                          "Nozzle"
51
+#define MSG_NOZZLE1                         "Nozzle2"
52
+#define MSG_NOZZLE2                         "Nozzle3"
53
+#define MSG_BED                             "Llit"
54
+#define MSG_FAN_SPEED                       "Vel. Ventilador"
55
+#define MSG_FLOW                            "Fluxe"
56
+#define MSG_FLOW0                           "Fluxe 0"
57
+#define MSG_FLOW1                           "Fluxe 1"
58
+#define MSG_FLOW2                           "Fluxe 2"
59
+#define MSG_CONTROL                         "Control"
60
+#define MSG_MIN                             " \002 Min"
61
+#define MSG_MAX                             " \002 Max"
62
+#define MSG_FACTOR                          " \002 Fact"
63
+#define MSG_AUTOTEMP                        "Autotemp"
64
+#define MSG_ON                              "On "
65
+#define MSG_OFF                             "Off"
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Accel"
71
+#define MSG_VXY_JERK                        "Vxy-jerk"
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ve-jerk"
74
+#define MSG_VMAX                            "Vmax "
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "e"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "VTrav min"
81
+#define MSG_AMAX                            "Amax "
82
+#define MSG_A_RETRACT                       "A-retract"
83
+#define MSG_XSTEPS                          "Xpassos/mm"
84
+#define MSG_YSTEPS                          "Ypassos/mm"
85
+#define MSG_ZSTEPS                          "Zpassos/mm"
86
+#define MSG_ESTEPS                          "Epassos/mm"
87
+#define MSG_TEMPERATURE                     "Temperatura"
88
+#define MSG_MOTION                          "Moviment"
89
+#define MSG_CONTRAST                        "Contrast de LCD"
90
+#define MSG_STORE_EPROM                     "Desar a memoria"
91
+#define MSG_LOAD_EPROM                      "Carregar de mem."
92
+#define MSG_RESTORE_FAILSAFE                "Rest. emergencia"
93
+#define MSG_REFRESH                         "Refrescar"
94
+#define MSG_WATCH                           "Pantalla Info."
95
+#define MSG_PREPARE                         "Preparar"
96
+#define MSG_TUNE                            "Calibrar"
97
+#define MSG_PAUSE_PRINT                     "Pausa imp."
98
+#define MSG_RESUME_PRINT                    "Reprendre imp."
99
+#define MSG_STOP_PRINT                      "Parar inp."
100
+#define MSG_CARD_MENU                       "Imprimir de SD"
101
+#define MSG_NO_CARD                         "-Sense targeta SD"
102
+#define MSG_DWELL                           "Repos..."
103
+#define MSG_USERWAIT                        "Esperant usuari.."
104
+#define MSG_RESUMING                        "Reprenent imp."
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Sense moviment."
107
+#define MSG_KILLED                          "PARADA DE EMERG. "
108
+#define MSG_STOPPED                         "ATURAT. "
109
+#define MSG_CONTROL_RETRACT                 "Retreure mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Swap Retreure mm"
111
+#define MSG_CONTROL_RETRACTF                "Retreure  F"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Aixecar mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "DesRet +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Swap DesRet +mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "DesRet  F"
116
+#define MSG_AUTORETRACT                     "AutoRetr."
117
+#define MSG_FILAMENTCHANGE                  "Canviar filament"
118
+#define MSG_INIT_SDCARD                     "Iniciant SD"
119
+#define MSG_CNG_SDCARD                      "Canviar SD"
120
+#define MSG_ZPROBE_OUT                      "Z probe out. bed"
121
+#define MSG_POSITION_UNKNOWN                "Home X/Y abans Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Z Offset"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
127
+
128
+#define MSG_RECTRACT                        "Retreure"
129
+
130
+#endif // LANGUAGE_CA_H

+ 131
- 0
Marlin/language_de.h View File

@@ -0,0 +1,131 @@
1
+/**
2
+ * German
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_DE_H
9
+#define LANGUAGE_DE_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " Bereit."
12
+#define MSG_SD_INSERTED                     "SDKarte erkannt"
13
+#define MSG_SD_REMOVED                      "SDKarte entfernt"
14
+#define MSG_MAIN                            "Hauptmenü"
15
+#define MSG_AUTOSTART                       "Autostart"
16
+#define MSG_DISABLE_STEPPERS                "Stepper abschalt."
17
+#define MSG_AUTO_HOME                       "Auto Nullpunkt"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Setze Nullpunkt"
20
+#define MSG_PREHEAT_PLA                     "Vorwärmen PLA"
21
+#define MSG_PREHEAT_PLA0                    "Vorwärmen PLA 1"
22
+#define MSG_PREHEAT_PLA1                    "Vorwärmen PLA 2"
23
+#define MSG_PREHEAT_PLA2                    "Vorwärmen PLA 3"
24
+#define MSG_PREHEAT_PLA012                  "Vorw. PLA Alle"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Vorw. PLA Bett"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Vorwärm. PLA Ein."
27
+#define MSG_PREHEAT_ABS                     "Vorwärmen ABS"
28
+#define MSG_PREHEAT_ABS0                    "Vorwärmen ABS 1"
29
+#define MSG_PREHEAT_ABS1                    "Vorwärmen ABS 2"
30
+#define MSG_PREHEAT_ABS2                    "Vorwärmen ABS 3"
31
+#define MSG_PREHEAT_ABS012                  "Vorw. ABS Alle"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Vorw. ABS Bett"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Vorwärm. ABS Ein."
34
+#define MSG_COOLDOWN                        "Abkühlen"
35
+#define MSG_SWITCH_PS_ON                    "Switch Power On"
36
+#define MSG_SWITCH_PS_OFF                   "Switch Power Off"
37
+#define MSG_EXTRUDE                         "Extrude"
38
+#define MSG_RETRACT                         "Retract"
39
+#define MSG_MOVE_AXIS                       "Achsen bewegen"
40
+#define MSG_MOVE_X                          "X bewegen"
41
+#define MSG_MOVE_Y                          "Y bewegen"
42
+#define MSG_MOVE_Z                          "Z bewegen"
43
+#define MSG_MOVE_E                          "Extruder"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "0.1mm bewegen"
47
+#define MSG_MOVE_1MM                        "1mm bewegen"
48
+#define MSG_MOVE_10MM                       "10mm bewegen"
49
+#define MSG_SPEED                           "Geschw"
50
+#define MSG_NOZZLE                          "Düse"
51
+#define MSG_NOZZLE1                         "Düse2"
52
+#define MSG_NOZZLE2                         "Düse3"
53
+#define MSG_BED                             "Bett"
54
+#define MSG_FAN_SPEED                       "Lüftergeschw."
55
+#define MSG_FLOW                            "Fluss"
56
+#define MSG_FLOW0                           "Fluss 0"
57
+#define MSG_FLOW1                           "Fluss 1"
58
+#define MSG_FLOW2                           "Fluss 2"
59
+#define MSG_CONTROL                         "Einstellungen"
60
+#define MSG_MIN                             "\002 Min"
61
+#define MSG_MAX                             "\002 Max"
62
+#define MSG_FACTOR                          "\002 Faktor"
63
+#define MSG_AUTOTEMP                        "AutoTemp"
64
+#define MSG_ON                              "Ein"
65
+#define MSG_OFF                             "Aus"
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Acc"
71
+#define MSG_VXY_JERK                        "Vxy-jerk"
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ve-jerk"
74
+#define MSG_VMAX                            "Vmax "
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "e"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "VTrav min"
81
+#define MSG_AMAX                            "Amax "
82
+#define MSG_A_RETRACT                       "A-Retract"
83
+#define MSG_XSTEPS                          "Xsteps/mm"
84
+#define MSG_YSTEPS                          "Ysteps/mm"
85
+#define MSG_ZSTEPS                          "Zsteps/mm"
86
+#define MSG_ESTEPS                          "Esteps/mm"
87
+#define MSG_TEMPERATURE                     "Temperatur"
88
+#define MSG_MOTION                          "Bewegung"
89
+#define MSG_CONTRAST                        "LCD contrast"
90
+#define MSG_STORE_EPROM                     "EPROM speichern"
91
+#define MSG_LOAD_EPROM                      "EPROM laden"
92
+#define MSG_RESTORE_FAILSAFE                "Standardkonfig."
93
+#define MSG_REFRESH                         "Aktualisieren"
94
+#define MSG_WATCH                           "Beobachten"
95
+#define MSG_PREPARE                         "Vorbereitung"
96
+#define MSG_TUNE                            "Justierung"
97
+#define MSG_PAUSE_PRINT                     "Druck anhalten"
98
+#define MSG_RESUME_PRINT                    "Druck fortsetz"
99
+#define MSG_STOP_PRINT                      "Druck stoppen"
100
+#define MSG_CARD_MENU                       "SDKarten Menü"
101
+#define MSG_NO_CARD                         "Keine SDKarte"
102
+#define MSG_DWELL                           "Warten..."
103
+#define MSG_USERWAIT                        "Warte auf Nutzer"
104
+#define MSG_RESUMING                        "Druck fortsetzung"
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Kein Zug."
107
+#define MSG_KILLED                          "KILLED"
108
+#define MSG_STOPPED                         "GESTOPPT"
109
+#define MSG_CONTROL_RETRACT                 "Retract mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Wechs. Retract mm"
111
+#define MSG_CONTROL_RETRACTF                "Retract  V"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Hop mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Wechs. UnRet +mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "UnRet  V"
116
+#define MSG_AUTORETRACT                     "AutoRetr."
117
+#define MSG_FILAMENTCHANGE                  "Filament wechseln"
118
+#define MSG_INIT_SDCARD                     "Init. SD-Card"
119
+#define MSG_CNG_SDCARD                      "Change SD-Card"
120
+#define MSG_ZPROBE_OUT                      "Z probe out. bed"
121
+#define MSG_POSITION_UNKNOWN                "Home X/Y before Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Z Offset"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
127
+
128
+#define MSG_STEPPER_RELEASED                "Stepper frei"
129
+#define MSG_RECTRACT_WIDE                   "Rectract"
130
+
131
+#endif // LANGUAGE_DE_H

+ 130
- 0
Marlin/language_en.h View File

@@ -0,0 +1,130 @@
1
+/**
2
+ * English
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_EN_H
9
+#define LANGUAGE_EN_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " ready."
12
+#define MSG_SD_INSERTED                     "Card inserted"
13
+#define MSG_SD_REMOVED                      "Card removed"
14
+#define MSG_MAIN                            "Main"
15
+#define MSG_AUTOSTART                       "Autostart"
16
+#define MSG_DISABLE_STEPPERS                "Disable steppers"
17
+#define MSG_AUTO_HOME                       "Auto home"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Set origin"
20
+#define MSG_PREHEAT_PLA                     "Preheat PLA"
21
+#define MSG_PREHEAT_PLA0                    "Preheat PLA 1"
22
+#define MSG_PREHEAT_PLA1                    "Preheat PLA 2"
23
+#define MSG_PREHEAT_PLA2                    "Preheat PLA 3"
24
+#define MSG_PREHEAT_PLA012                  "Preheat PLA All"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Preheat PLA Bed"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Preheat PLA conf"
27
+#define MSG_PREHEAT_ABS                     "Preheat ABS"
28
+#define MSG_PREHEAT_ABS0                    "Preheat ABS 1"
29
+#define MSG_PREHEAT_ABS1                    "Preheat ABS 2"
30
+#define MSG_PREHEAT_ABS2                    "Preheat ABS 3"
31
+#define MSG_PREHEAT_ABS012                  "Preheat ABS All"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Preheat ABS Bed"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Preheat ABS conf"
34
+#define MSG_COOLDOWN                        "Cooldown"
35
+#define MSG_SWITCH_PS_ON                    "Switch power on"
36
+#define MSG_SWITCH_PS_OFF                   "Switch power off"
37
+#define MSG_EXTRUDE                         "Extrude"
38
+#define MSG_RETRACT                         "Retract"
39
+#define MSG_MOVE_AXIS                       "Move axis"
40
+#define MSG_MOVE_X                          "Move X"
41
+#define MSG_MOVE_Y                          "Move Y"
42
+#define MSG_MOVE_Z                          "Move Z"
43
+#define MSG_MOVE_E                          "Extruder"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "Move 0.1mm"
47
+#define MSG_MOVE_1MM                        "Move 1mm"
48
+#define MSG_MOVE_10MM                       "Move 10mm"
49
+#define MSG_SPEED                           "Speed"
50
+#define MSG_NOZZLE                          "Nozzle"
51
+#define MSG_NOZZLE1                         "Nozzle2"
52
+#define MSG_NOZZLE2                         "Nozzle3"
53
+#define MSG_BED                             "Bed"
54
+#define MSG_FAN_SPEED                       "Fan speed"
55
+#define MSG_FLOW                            "Flow"
56
+#define MSG_FLOW0                           "Flow 0"
57
+#define MSG_FLOW1                           "Flow 1"
58
+#define MSG_FLOW2                           "Flow 2"
59
+#define MSG_CONTROL                         "Control"
60
+#define MSG_MIN                             " \002 Min"
61
+#define MSG_MAX                             " \002 Max"
62
+#define MSG_FACTOR                          " \002 Fact"
63
+#define MSG_AUTOTEMP                        "Autotemp"
64
+#define MSG_ON                              "On "
65
+#define MSG_OFF                             "Off"
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Accel"
71
+#define MSG_VXY_JERK                        "Vxy-jerk"
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ve-jerk"
74
+#define MSG_VMAX                            "Vmax "
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "e"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "VTrav min"
81
+#define MSG_AMAX                            "Amax "
82
+#define MSG_A_RETRACT                       "A-retract"
83
+#define MSG_XSTEPS                          "Xsteps/mm"
84
+#define MSG_YSTEPS                          "Ysteps/mm"
85
+#define MSG_ZSTEPS                          "Zsteps/mm"
86
+#define MSG_ESTEPS                          "Esteps/mm"
87
+#define MSG_TEMPERATURE                     "Temperature"
88
+#define MSG_MOTION                          "Motion"
89
+#define MSG_CONTRAST                        "LCD contrast"
90
+#define MSG_STORE_EPROM                     "Store memory"
91
+#define MSG_LOAD_EPROM                      "Load memory"
92
+#define MSG_RESTORE_FAILSAFE                "Restore failsafe"
93
+#define MSG_REFRESH                         "Refresh"
94
+#define MSG_WATCH                           "Info screen"
95
+#define MSG_PREPARE                         "Prepare"
96
+#define MSG_TUNE                            "Tune"
97
+#define MSG_PAUSE_PRINT                     "Pause print"
98
+#define MSG_RESUME_PRINT                    "Resume print"
99
+#define MSG_STOP_PRINT                      "Stop print"
100
+#define MSG_CARD_MENU                       "Print from SD"
101
+#define MSG_NO_CARD                         "No SD card"
102
+#define MSG_DWELL                           "Sleep..."
103
+#define MSG_USERWAIT                        "Wait for user..."
104
+#define MSG_RESUMING                        "Resuming print"
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "No move."
107
+#define MSG_KILLED                          "KILLED. "
108
+#define MSG_STOPPED                         "STOPPED. "
109
+#define MSG_CONTROL_RETRACT                 "Retract mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Swap Re.mm"
111
+#define MSG_CONTROL_RETRACTF                "Retract  V"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Hop mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "S UnRet+mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "UnRet  V"
116
+#define MSG_AUTORETRACT                     "AutoRetr."
117
+#define MSG_FILAMENTCHANGE                  "Change filament"
118
+#define MSG_INIT_SDCARD                     "Init. SD card"
119
+#define MSG_CNG_SDCARD                      "Change SD card"
120
+#define MSG_ZPROBE_OUT                      "Z probe out. bed"
121
+#define MSG_POSITION_UNKNOWN                "Home X/Y before Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Z Offset"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
127
+
128
+#define MSG_RECTRACT                        "Rectract"
129
+
130
+#endif // LANGUAGE_EN_H

+ 139
- 0
Marlin/language_es.h View File

@@ -0,0 +1,139 @@
1
+/**
2
+ * Spanish
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_ES_H
9
+#define LANGUAGE_ES_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " lista."
12
+#define MSG_SD_INSERTED                     "Tarjeta colocada"
13
+#define MSG_SD_REMOVED                      "Tarjeta retirada"
14
+#define MSG_MAIN                            "Menu principal"
15
+#define MSG_AUTOSTART                       " Autostart"
16
+#define MSG_DISABLE_STEPPERS                "Apagar motores"
17
+#define MSG_AUTO_HOME                       "Llevar al origen"
18
+#define MSG_SET_HOME_OFFSETS                "Ajustar offsets"
19
+#define MSG_SET_ORIGIN                      "Establecer cero"
20
+#define MSG_PREHEAT_PLA                     "Precalentar PLA"
21
+#define MSG_PREHEAT_PLA0                    "Precalentar PLA 1"
22
+#define MSG_PREHEAT_PLA1                    "Precalentar PLA 2"
23
+#define MSG_PREHEAT_PLA2                    "Precalentar PLA 3"
24
+#define MSG_PREHEAT_PLA012                  "Precal. PLA Todo"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Precal. PLA Base"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Ajustar temp. PLA"
27
+#define MSG_PREHEAT_ABS                     "Precalentar ABS"
28
+#define MSG_PREHEAT_ABS0                    "Precalentar ABS 1"
29
+#define MSG_PREHEAT_ABS1                    "Precalentar ABS 2"
30
+#define MSG_PREHEAT_ABS2                    "Precalentar ABS 3"
31
+#define MSG_PREHEAT_ABS012                  "Precal. ABS Todo"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Precal. ABS Base"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Ajustar temp. ABS"
34
+#define MSG_COOLDOWN                        "Enfriar"
35
+#define MSG_SWITCH_PS_ON                    "Encender"
36
+#define MSG_SWITCH_PS_OFF                   "Apagar"
37
+#define MSG_EXTRUDE                         "Extruir"
38
+#define MSG_RETRACT                         "Retraer"
39
+#define MSG_MOVE_AXIS                       "Mover ejes"
40
+#define MSG_MOVE_X                          "Mover X"
41
+#define MSG_MOVE_Y                          "Mover Y"
42
+#define MSG_MOVE_Z                          "Mover Z"
43
+#define MSG_MOVE_E                          "Extrusor"
44
+#define MSG_MOVE_E1                         "Extrusor2"
45
+#define MSG_MOVE_E2                         "Extrusor3"
46
+#define MSG_MOVE_01MM                       "Mover 0.1mm"
47
+#define MSG_MOVE_1MM                        "Mover 1mm"
48
+#define MSG_MOVE_10MM                       "Mover 10mm"
49
+#define MSG_SPEED                           "Velocidad"
50
+#define MSG_NOZZLE                          "Nozzle"
51
+#define MSG_NOZZLE1                         "Nozzle2"
52
+#define MSG_NOZZLE2                         "Nozzle3"
53
+#define MSG_BED                             "Base"
54
+#define MSG_FAN_SPEED                       "Ventilador"
55
+#define MSG_FLOW                            "Flujo"
56
+#define MSG_FLOW0                           "Flujo 0"
57
+#define MSG_FLOW1                           "Flujo 1"
58
+#define MSG_FLOW2                           "Flujo 2"
59
+#define MSG_CONTROL                         "Control"
60
+#define MSG_MIN                             "\002 Min"
61
+#define MSG_MAX                             "\002 Max"
62
+#define MSG_FACTOR                          "\002 Fact"
63
+#define MSG_AUTOTEMP                        "Autotemp"
64
+#define MSG_ON                              "On"
65
+#define MSG_OFF                             "Off"
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Acel"
71
+#define MSG_VXY_JERK                        "Vxy-jerk"
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ve-jerk"
74
+#define MSG_VMAX                            "Vmax"
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "e"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "Vvacio min"
81
+#define MSG_AMAX                            "Amax"
82
+#define MSG_A_RETRACT                       "A-retrac."
83
+#define MSG_XSTEPS                          "X pasos/mm"
84
+#define MSG_YSTEPS                          "Y pasos/mm"
85
+#define MSG_ZSTEPS                          "Z pasos/mm"
86
+#define MSG_ESTEPS                          "E pasos/mm"
87
+#define MSG_TEMPERATURE                     "Temperatura"
88
+#define MSG_MOTION                          "Movimiento"
89
+#define MSG_CONTRAST                        "Contraste"
90
+#define MSG_STORE_EPROM                     "Guardar memoria"
91
+#define MSG_LOAD_EPROM                      "Cargar memoria"
92
+#define MSG_RESTORE_FAILSAFE                "Rest. de emergen."
93
+#define MSG_REFRESH                         "Volver a cargar"
94
+#define MSG_WATCH                           "Monitorizar"
95
+#define MSG_PREPARE                         "Preparar"
96
+#define MSG_TUNE                            "Ajustar"
97
+#define MSG_PAUSE_PRINT                     "Pausar impresion"
98
+#define MSG_RESUME_PRINT                    "Reanudar impres."
99
+#define MSG_STOP_PRINT                      "Detener impresion"
100
+#define MSG_CARD_MENU                       "Menu de SD"
101
+#define MSG_NO_CARD                         "No hay tarjeta SD"
102
+#define MSG_DWELL                           "Reposo..."
103
+#define MSG_USERWAIT                        "Esperando ordenes"
104
+#define MSG_RESUMING                        "Resumiendo impre."
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Sin movimiento"
107
+#define MSG_KILLED                          "PARADA DE EMERG."
108
+#define MSG_STOPPED                         "PARADA"
109
+#define MSG_CONTROL_RETRACT                 "Retraer mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Interc. Retraer mm"
111
+#define MSG_CONTROL_RETRACTF                "Retraer  V"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Levantar mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "DesRet +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Interc. DesRet +mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "DesRet V"
116
+#define MSG_AUTORETRACT                     "AutoRetr."
117
+#define MSG_FILAMENTCHANGE                  "Cambiar filamento"
118
+#define MSG_INIT_SDCARD                     "Iniciando tarjeta"
119
+#define MSG_CNG_SDCARD                      "Cambiar tarjeta"
120
+#define MSG_ZPROBE_OUT                      "sonda Z fuera"
121
+#define MSG_POSITION_UNKNOWN                "Reiniciar X/Y y Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Offset Z"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
127
+
128
+#define MSG_RECTRACT                        "Retraer"
129
+#define MSG_RECTRACT_WIDE                   "Retraer"
130
+#define MSG_TEMPERATURE_WIDE                "Temperatura"
131
+#define MSG_TEMPERATURE_RTN                 "Temperatura"
132
+#define MSG_MAIN_WIDE                       "Menu principal"
133
+#define MSG_MOTION_WIDE                     "Movimiento"
134
+#define MSG_PREPARE_ALT                     "Preparar"
135
+#define MSG_CONTROL_ARROW                   "Control \x7E"
136
+#define MSG_RETRACT_ARROW                   "Retraer \x7E"
137
+#define MSG_STEPPER_RELEASED                "Desacoplada."
138
+
139
+#endif // LANGUAGE_ES_H

+ 130
- 0
Marlin/language_eu.h View File

@@ -0,0 +1,130 @@
1
+/**
2
+ * Basque-Euskera
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_EU_H
9
+#define LANGUAGE_EU_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " prest."
12
+#define MSG_SD_INSERTED                     "Txartela sartuta"
13
+#define MSG_SD_REMOVED                      "Txartela kenduta"
14
+#define MSG_MAIN                            "Menu nagusia"
15
+#define MSG_AUTOSTART                       "Auto hasiera"
16
+#define MSG_DISABLE_STEPPERS                "Itzali motoreak"
17
+#define MSG_AUTO_HOME                       "Hasierara joan"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Hasiera ipini"
20
+#define MSG_PREHEAT_PLA                     "Aurreberotu PLA"
21
+#define MSG_PREHEAT_PLA0                    "Aurreberotu PLA1"
22
+#define MSG_PREHEAT_PLA1                    "Aurreberotu PLA2"
23
+#define MSG_PREHEAT_PLA2                    "Aurreberotu PLA3"
24
+#define MSG_PREHEAT_PLA012                  "Berotu PLA Guztia"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Berotu PLA Ohea"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Berotu PLA Konfig"
27
+#define MSG_PREHEAT_ABS                     "Aurreberotu ABS"
28
+#define MSG_PREHEAT_ABS0                    "Aurreberotu ABS 1"
29
+#define MSG_PREHEAT_ABS1                    "Aurreberotu ABS 2"
30
+#define MSG_PREHEAT_ABS2                    "Aurreberotu ABS 3"
31
+#define MSG_PREHEAT_ABS012                  "Berotu ABS Guztia"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Berotu ABS Ohea"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Berotu ABS Konfig"
34
+#define MSG_COOLDOWN                        "Hoztu"
35
+#define MSG_SWITCH_PS_ON                    "Energia piztu"
36
+#define MSG_SWITCH_PS_OFF                   "Energia itzali"
37
+#define MSG_EXTRUDE                         "Estruitu"
38
+#define MSG_RETRACT                         "Atzera eragin"
39
+#define MSG_MOVE_AXIS                       "Ardatzak mugitu"
40
+#define MSG_MOVE_X                          "Mugitu X"
41
+#define MSG_MOVE_Y                          "Mugitu Y"
42
+#define MSG_MOVE_Z                          "Mugitu Z"
43
+#define MSG_MOVE_E                          "Estrusorea"
44
+#define MSG_MOVE_E1                         "Estrusorea2"
45
+#define MSG_MOVE_E2                         "Estrusorea3"
46
+#define MSG_MOVE_01MM                       "Mugitu 0.1mm"
47
+#define MSG_MOVE_1MM                        "Mugitu 1mm"
48
+#define MSG_MOVE_10MM                       "Mugitu 10mm"
49
+#define MSG_SPEED                           "Abiadura"
50
+#define MSG_NOZZLE                          "Pita"
51
+#define MSG_NOZZLE1                         "Pita2"
52
+#define MSG_NOZZLE2                         "Pita3"
53
+#define MSG_BED                             "Ohea"
54
+#define MSG_FAN_SPEED                       "Haizagailua"
55
+#define MSG_FLOW                            "Fluxua"
56
+#define MSG_FLOW0                           "Fluxua 0"
57
+#define MSG_FLOW1                           "Fluxua 1"
58
+#define MSG_FLOW2                           "Fluxua 2"
59
+#define MSG_CONTROL                         "Kontrola"
60
+#define MSG_MIN                             " \002 Min"
61
+#define MSG_MAX                             " \002 Max"
62
+#define MSG_FACTOR                          " \002 Faktorea"
63
+#define MSG_AUTOTEMP                        "Auto tenperatura"
64
+#define MSG_ON                              "On "
65
+#define MSG_OFF                             "Off"
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Azelerazioa"
71
+#define MSG_VXY_JERK                        "Vxy-astindua"
72
+#define MSG_VZ_JERK                         "Vz-astindua"
73
+#define MSG_VE_JERK                         "Ve-astindua"
74
+#define MSG_VMAX                            "Vmax "
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "e"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "VTrav min"
81
+#define MSG_AMAX                            "Amax "
82
+#define MSG_A_RETRACT                       "A-retrakt"
83
+#define MSG_XSTEPS                          "X pausoak/mm"
84
+#define MSG_YSTEPS                          "Y pausoak/mm"
85
+#define MSG_ZSTEPS                          "Z pausoak/mm"
86
+#define MSG_ESTEPS                          "E pausoak/mm"
87
+#define MSG_TEMPERATURE                     "Tenperatura"
88
+#define MSG_MOTION                          "Mugimendua"
89
+#define MSG_CONTRAST                        "LCD kontrastea"
90
+#define MSG_STORE_EPROM                     "Gorde memoria"
91
+#define MSG_LOAD_EPROM                      "Kargatu memoria"
92
+#define MSG_RESTORE_FAILSAFE                "Larri. berriz."
93
+#define MSG_REFRESH                         "Berriz kargatu"
94
+#define MSG_WATCH                           "Pantaila info"
95
+#define MSG_PREPARE                         "Prestatu"
96
+#define MSG_TUNE                            "Doitu"
97
+#define MSG_PAUSE_PRINT                     "Pausatu inprimak."
98
+#define MSG_RESUME_PRINT                    "Jarraitu inprima."
99
+#define MSG_STOP_PRINT                      "Gelditu inprima."
100
+#define MSG_CARD_MENU                       "SD-tik inprimatu"
101
+#define MSG_NO_CARD                         "Ez dago txartelik"
102
+#define MSG_DWELL                           "Lo egin..."
103
+#define MSG_USERWAIT                        "Aginduak zain..."
104
+#define MSG_RESUMING                        "Jarraitzen inpri."
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Mugimendu gabe"
107
+#define MSG_KILLED                          "LARRIALDI GELDIA"
108
+#define MSG_STOPPED                         "GELDITUTA. "
109
+#define MSG_CONTROL_RETRACT                 "Atzera egin mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Swap Atzera egin mm"
111
+#define MSG_CONTROL_RETRACTF                "Atzera egin V"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Igo mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "Atzera egin +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Swap Atzera egin +mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "Atzera egin V"
116
+#define MSG_AUTORETRACT                     "Atzera egin"
117
+#define MSG_FILAMENTCHANGE                  "Aldatu filament."
118
+#define MSG_INIT_SDCARD                     "Hasieratu txartela"
119
+#define MSG_CNG_SDCARD                      "Aldatu txartela"
120
+#define MSG_ZPROBE_OUT                      "Z ohe hasiera"
121
+#define MSG_POSITION_UNKNOWN                "Posizio ezezaguna"
122
+#define MSG_ZPROBE_ZOFFSET                  "Z konpentsatu"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop deuseztat"
127
+
128
+#define MSG_RECTRACT                        "Atzera eragin"
129
+
130
+#endif // LANGUAGE_EU_H

+ 130
- 0
Marlin/language_fi.h View File

@@ -0,0 +1,130 @@
1
+/**
2
+ * Finnish
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_FI_H
9
+#define LANGUAGE_FI_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " valmis."
12
+#define MSG_SD_INSERTED                     "Kortti asetettu"
13
+#define MSG_SD_REMOVED                      "Kortti poistettu"
14
+#define MSG_MAIN                            "Palaa"
15
+#define MSG_AUTOSTART                       "Automaatti"
16
+#define MSG_DISABLE_STEPPERS                "Vapauta moottorit"
17
+#define MSG_AUTO_HOME                       "Aja referenssiin"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Aseta origo"
20
+#define MSG_PREHEAT_PLA                     "Esilammita PLA"
21
+#define MSG_PREHEAT_PLA0                    "Esilammita PLA 1"
22
+#define MSG_PREHEAT_PLA1                    "Esilammita PLA 2"
23
+#define MSG_PREHEAT_PLA2                    "Esilammita PLA 3"
24
+#define MSG_PREHEAT_PLA012                  "Esila. PLA Kaikki"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Esila. PLA Alusta"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Esilamm. PLA konf"
27
+#define MSG_PREHEAT_ABS                     "Esilammita ABS"
28
+#define MSG_PREHEAT_ABS0                    "Esilammita ABS 1"
29
+#define MSG_PREHEAT_ABS1                    "Esilammita ABS 2"
30
+#define MSG_PREHEAT_ABS2                    "Esilammita ABS 3"
31
+#define MSG_PREHEAT_ABS012                  "Esila. ABS Kaikki"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Esila. ABS Alusta"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Esilamm. ABS konf"
34
+#define MSG_COOLDOWN                        "Jaahdyta"
35
+#define MSG_SWITCH_PS_ON                    "Virta paalle"
36
+#define MSG_SWITCH_PS_OFF                   "Virta pois"
37
+#define MSG_EXTRUDE                         "Pursota"
38
+#define MSG_RETRACT                         "Veda takaisin"
39
+#define MSG_MOVE_AXIS                       "Liikuta akseleita"
40
+#define MSG_MOVE_X                          "Move X"
41
+#define MSG_MOVE_Y                          "Move Y"
42
+#define MSG_MOVE_Z                          "Move Z"
43
+#define MSG_MOVE_E                          "Extruder"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "Move 0.1mm"
47
+#define MSG_MOVE_1MM                        "Move 1mm"
48
+#define MSG_MOVE_10MM                       "Move 10mm"
49
+#define MSG_SPEED                           "Nopeus"
50
+#define MSG_NOZZLE                          "Suutin"
51
+#define MSG_NOZZLE1                         "Suutin2"
52
+#define MSG_NOZZLE2                         "Suutin3"
53
+#define MSG_BED                             "Alusta"
54
+#define MSG_FAN_SPEED                       "Tuul. nopeus"
55
+#define MSG_FLOW                            "Virtaus"
56
+#define MSG_FLOW0                           "Virtaus 0"
57
+#define MSG_FLOW1                           "Virtaus 1"
58
+#define MSG_FLOW2                           "Virtaus 2"
59
+#define MSG_CONTROL                         "Kontrolli"
60
+#define MSG_MIN                             " \002 Min"
61
+#define MSG_MAX                             " \002 Max"
62
+#define MSG_FACTOR                          " \002 Kerr"
63
+#define MSG_AUTOTEMP                        "Autotemp"
64
+#define MSG_ON                              "On "
65
+#define MSG_OFF                             "Off"
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Kiihtyv"
71
+#define MSG_VXY_JERK                        "Vxy-jerk"
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ve-jerk"
74
+#define MSG_VMAX                            "Vmax "
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "e"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "VLiike min"
81
+#define MSG_AMAX                            "Amax "
82
+#define MSG_A_RETRACT                       "A-peruuta"
83
+#define MSG_XSTEPS                          "Xsteps/mm"
84
+#define MSG_YSTEPS                          "Ysteps/mm"
85
+#define MSG_ZSTEPS                          "Zsteps/mm"
86
+#define MSG_ESTEPS                          "Esteps/mm"
87
+#define MSG_TEMPERATURE                     "Lampotila"
88
+#define MSG_MOTION                          "Liike"
89
+#define MSG_CONTRAST                        "LCD contrast"
90
+#define MSG_STORE_EPROM                     "Tallenna muistiin"
91
+#define MSG_LOAD_EPROM                      "Lataa muistista"
92
+#define MSG_RESTORE_FAILSAFE                "Palauta oletus"
93
+#define MSG_REFRESH                         "Paivita"
94
+#define MSG_WATCH                           "Seuraa"
95
+#define MSG_PREPARE                         "Valmistele"
96
+#define MSG_TUNE                            "Saada"
97
+#define MSG_PAUSE_PRINT                     "Keskeyta tulostus"
98
+#define MSG_RESUME_PRINT                    "Jatka tulostusta"
99
+#define MSG_STOP_PRINT                      "Pysayta tulostus"
100
+#define MSG_CARD_MENU                       "Korttivalikko"
101
+#define MSG_NO_CARD                         "Ei korttia"
102
+#define MSG_DWELL                           "Nukkumassa..."
103
+#define MSG_USERWAIT                        "Odotet. valintaa"
104
+#define MSG_RESUMING                        "Jatke. tulostusta"
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Ei liiketta."
107
+#define MSG_KILLED                          "KILLED. "
108
+#define MSG_STOPPED                         "STOPPED. "
109
+#define MSG_CONTROL_RETRACT                 "Veda mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Va. Veda mm"
111
+#define MSG_CONTROL_RETRACTF                "Veda V"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Z mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Va. UnRet +mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "UnRet  V"
116
+#define MSG_AUTORETRACT                     "AutoVeto."
117
+#define MSG_FILAMENTCHANGE                  "Change filament"
118
+#define MSG_INIT_SDCARD                     "Init. SD-Card"
119
+#define MSG_CNG_SDCARD                      "Change SD-Card"
120
+#define MSG_ZPROBE_OUT                      "Z probe out. bed"
121
+#define MSG_POSITION_UNKNOWN                "Home X/Y before Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Z Offset"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
127
+
128
+#define MSG_RECTRACT                        "Veda takaisin"
129
+
130
+#endif // LANGUAGE_FI_H

+ 131
- 0
Marlin/language_fr.h View File

@@ -0,0 +1,131 @@
1
+/**
2
+ * French
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_FR_H
9
+#define LANGUAGE_FR_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " prete."
12
+#define MSG_SD_INSERTED                     "Carte inseree"
13
+#define MSG_SD_REMOVED                      "Carte retiree"
14
+#define MSG_MAIN                            "Menu principal"
15
+#define MSG_AUTOSTART                       "Demarrage auto"
16
+#define MSG_DISABLE_STEPPERS                "Arreter moteurs"
17
+#define MSG_AUTO_HOME                       "Home auto."
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Regler origine"
20
+#define MSG_PREHEAT_PLA                     "Prechauffage PLA"
21
+#define MSG_PREHEAT_PLA0                    "Prechauff. PLA 1"
22
+#define MSG_PREHEAT_PLA1                    "Prechauff. PLA 2"
23
+#define MSG_PREHEAT_PLA2                    "Prechauff. PLA 3"
24
+#define MSG_PREHEAT_PLA012                  "Prech. PLA Tout"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Prech. PLA Plateau"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Regl. prech. PLA"
27
+#define MSG_PREHEAT_ABS                     "Prechauffage ABS"
28
+#define MSG_PREHEAT_ABS0                    "Prechauff. ABS 1"
29
+#define MSG_PREHEAT_ABS1                    "Prechauff. ABS 2"
30
+#define MSG_PREHEAT_ABS2                    "Prechauff. ABS 3"
31
+#define MSG_PREHEAT_ABS012                  "Prech. ABS Tout"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Prech. ABS Plateau"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Regl. prech. ABS"
34
+#define MSG_COOLDOWN                        "Refroidir"
35
+#define MSG_SWITCH_PS_ON                    "Allumer alim."
36
+#define MSG_SWITCH_PS_OFF                   "Eteindre alim."
37
+#define MSG_EXTRUDE                         "Extrusion"
38
+#define MSG_RETRACT                         "Retraction"
39
+#define MSG_MOVE_AXIS                       "Deplacer un axe"
40
+#define MSG_MOVE_X                          "Move X"
41
+#define MSG_MOVE_Y                          "Move Y"
42
+#define MSG_MOVE_Z                          "Move Z"
43
+#define MSG_MOVE_E                          "Extruder"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "Move 0.1mm"
47
+#define MSG_MOVE_1MM                        "Move 1mm"
48
+#define MSG_MOVE_10MM                       "Move 10mm"
49
+#define MSG_SPEED                           " Vitesse"
50
+#define MSG_NOZZLE                          "Buse"
51
+#define MSG_NOZZLE1                         "Buse2"
52
+#define MSG_NOZZLE2                         "Buse3"
53
+#define MSG_BED                             "Plateau"
54
+#define MSG_FAN_SPEED                       "Vite. ventilateur"
55
+#define MSG_FLOW                            "Flux"
56
+#define MSG_FLOW0                           "Flux 0"
57
+#define MSG_FLOW1                           "Flux 1"
58
+#define MSG_FLOW2                           "Flux 2"
59
+#define MSG_CONTROL                         "Controler"
60
+#define MSG_MIN                             " \002 Min"
61
+#define MSG_MAX                             " \002 Max"
62
+#define MSG_FACTOR                          " \002 Facteur"
63
+#define MSG_AUTOTEMP                        "Temp. Auto."
64
+#define MSG_ON                              "Marche "
65
+#define MSG_OFF                             "Arret"
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Accel"
71
+#define MSG_VXY_JERK                        "Vxy-jerk"
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ve-jerk"
74
+#define MSG_VMAX                            "Vmax"
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "e"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "Vdepl min"
81
+#define MSG_AMAX                            "Amax "
82
+#define MSG_A_RETRACT                       "A-retract"
83
+#define MSG_XSTEPS                          "Xpas/mm"
84
+#define MSG_YSTEPS                          "Ypas/mm"
85
+#define MSG_ZSTEPS                          "Zpas/mm"
86
+#define MSG_ESTEPS                          "Epas/mm"
87
+#define MSG_TEMPERATURE                     "Temperature"
88
+#define MSG_MOTION                          "Mouvement"
89
+#define MSG_CONTRAST                        "Contraste LCD"
90
+#define MSG_STORE_EPROM                     "Sauver config"
91
+#define MSG_LOAD_EPROM                      "Lire config"
92
+#define MSG_RESTORE_FAILSAFE                "Restaurer defauts"
93
+#define MSG_REFRESH                         "Actualiser"
94
+#define MSG_WATCH                           "Surveiller"
95
+#define MSG_PREPARE                         "Preparer"
96
+#define MSG_TUNE                            "Regler"
97
+#define MSG_PAUSE_PRINT                     "Interrompre impr."
98
+#define MSG_RESUME_PRINT                    "Reprendre impr."
99
+#define MSG_STOP_PRINT                      "Arreter impr."
100
+#define MSG_CARD_MENU                       "Impr. depuis SD"
101
+#define MSG_NO_CARD                         "Pas de carte"
102
+#define MSG_DWELL                           "Repos..."
103
+#define MSG_USERWAIT                        "Atten. de l'util."
104
+#define MSG_RESUMING                        "Repri. de l'impr."
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Aucun mouvement."
107
+#define MSG_KILLED                          "MORT."
108
+#define MSG_STOPPED                         "STOPPE."
109
+#define MSG_CONTROL_RETRACT                 "Retraction mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Ech. Retr. mm"
111
+#define MSG_CONTROL_RETRACTF                "Retraction V"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Hop mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Ech. UnRet +mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "UnRet V"
116
+#define MSG_AUTORETRACT                     "Retract. Auto."
117
+#define MSG_FILAMENTCHANGE                  "Changer filament"
118
+#define MSG_INIT_SDCARD                     "Init. la carte SD"
119
+#define MSG_CNG_SDCARD                      "Changer de carte"
120
+#define MSG_ZPROBE_OUT                      "Z sonde exte. lit"
121
+#define MSG_POSITION_UNKNOWN                "Rev. dans XY av.Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Offset Z"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Butee abandon"
127
+
128
+#define MSG_RECTRACT                        "Rectract"
129
+#define MSG_STEPPER_RELEASED                "RELACHE."
130
+
131
+#endif // LANGUAGE_FR_H

+ 130
- 0
Marlin/language_it.h View File

@@ -0,0 +1,130 @@
1
+/**
2
+ * Italian
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_IT_H
9
+#define LANGUAGE_IT_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " pronto."
12
+#define MSG_SD_INSERTED                     "SD Card inserita"
13
+#define MSG_SD_REMOVED                      "SD Card rimossa"
14
+#define MSG_MAIN                            "Menu principale"
15
+#define MSG_AUTOSTART                       "Autostart"
16
+#define MSG_DISABLE_STEPPERS                "Disabilita Motori"
17
+#define MSG_AUTO_HOME                       "Auto Home"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Imposta Origine"
20
+#define MSG_PREHEAT_PLA                     "Preriscalda PLA"
21
+#define MSG_PREHEAT_PLA0                    "Preriscalda PLA 1"
22
+#define MSG_PREHEAT_PLA1                    "Preriscalda PLA 2"
23
+#define MSG_PREHEAT_PLA2                    "Preriscalda PLA 3"
24
+#define MSG_PREHEAT_PLA012                  "Preris. PLA Tutto"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Preri. PLA Piatto"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Preris. PLA Conf"
27
+#define MSG_PREHEAT_ABS                     "Preriscalda ABS"
28
+#define MSG_PREHEAT_ABS0                    "Preriscalda ABS 1"
29
+#define MSG_PREHEAT_ABS1                    "Preriscalda ABS 2"
30
+#define MSG_PREHEAT_ABS2                    "Preriscalda ABS 3"
31
+#define MSG_PREHEAT_ABS012                  "Preris. ABS Tutto"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Preri. ABS Piatto"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Preris. ABS Conf"
34
+#define MSG_COOLDOWN                        "Raffredda"
35
+#define MSG_SWITCH_PS_ON                    "Switch Power On"
36
+#define MSG_SWITCH_PS_OFF                   "Switch Power Off"
37
+#define MSG_EXTRUDE                         "Estrudi"
38
+#define MSG_RETRACT                         "Ritrai"
39
+#define MSG_MOVE_AXIS                       "Muovi Asse"
40
+#define MSG_MOVE_X                          "Move X"
41
+#define MSG_MOVE_Y                          "Move Y"
42
+#define MSG_MOVE_Z                          "Move Z"
43
+#define MSG_MOVE_E                          "Extruder"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "Move 0.1mm"
47
+#define MSG_MOVE_1MM                        "Move 1mm"
48
+#define MSG_MOVE_10MM                       "Move 10mm"
49
+#define MSG_SPEED                           "Velcità"
50
+#define MSG_NOZZLE                          "Ugello"
51
+#define MSG_NOZZLE1                         "Ugello2"
52
+#define MSG_NOZZLE2                         "Ugello3"
53
+#define MSG_BED                             "Piatto"
54
+#define MSG_FAN_SPEED                       "Ventola"
55
+#define MSG_FLOW                            "Flusso"
56
+#define MSG_FLOW0                           "Flusso 0"
57
+#define MSG_FLOW1                           "Flusso 1"
58
+#define MSG_FLOW2                           "Flusso 2"
59
+#define MSG_CONTROL                         "Controllo"
60
+#define MSG_MIN                             " \002 Min:"
61
+#define MSG_MAX                             " \002 Max:"
62
+#define MSG_FACTOR                          " \002 Fact:"
63
+#define MSG_AUTOTEMP                        "Autotemp"
64
+#define MSG_ON                              "On "
65
+#define MSG_OFF                             "Off"
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Accel"
71
+#define MSG_VXY_JERK                        "Vxy-jerk"
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ve-jerk"
74
+#define MSG_VMAX                            "Vmax"
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "e"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "VTrav min"
81
+#define MSG_AMAX                            "Amax"
82
+#define MSG_A_RETRACT                       "A-retract"
83
+#define MSG_XSTEPS                          "Xpassi/mm"
84
+#define MSG_YSTEPS                          "Ypassi/mm"
85
+#define MSG_ZSTEPS                          "Zpassi/mm"
86
+#define MSG_ESTEPS                          "Epassi/mm"
87
+#define MSG_TEMPERATURE                     "Temperatura"
88
+#define MSG_MOTION                          "Movimento"
89
+#define MSG_CONTRAST                        "LCD contrast"
90
+#define MSG_STORE_EPROM                     "Salva in EEPROM"
91
+#define MSG_LOAD_EPROM                      "Carica da EEPROM"
92
+#define MSG_RESTORE_FAILSAFE                "Impostaz. default"
93
+#define MSG_REFRESH                         "Aggiorna"
94
+#define MSG_WATCH                           "Guarda"
95
+#define MSG_PREPARE                         "Prepara"
96
+#define MSG_TUNE                            "Adatta"
97
+#define MSG_PAUSE_PRINT                     "Pausa"
98
+#define MSG_RESUME_PRINT                    "Riprendi Stampa"
99
+#define MSG_STOP_PRINT                      "Arresta Stampa"
100
+#define MSG_CARD_MENU                       "SD Card Menu"
101
+#define MSG_NO_CARD                         "No SD Card"
102
+#define MSG_DWELL                           "Sospensione..."
103
+#define MSG_USERWAIT                        "Attendi Utente..."
104
+#define MSG_RESUMING                        "Riprendi Stampa"
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Nessun Movimento."
107
+#define MSG_KILLED                          "UCCISO. "
108
+#define MSG_STOPPED                         "ARRESTATO. "
109
+#define MSG_CONTROL_RETRACT                 "Ritrai mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Scamb. Ritrai mm"
111
+#define MSG_CONTROL_RETRACTF                "Ritrai  V"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Salta mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Scamb. UnRet +mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "UnRet  V"
116
+#define MSG_AUTORETRACT                     "AutoArretramento"
117
+#define MSG_FILAMENTCHANGE                  "Cambia filamento"
118
+#define MSG_INIT_SDCARD                     "Iniz. SD-Card"
119
+#define MSG_CNG_SDCARD                      "Cambia SD-Card"
120
+#define MSG_ZPROBE_OUT                      "Z probe out. bed"
121
+#define MSG_POSITION_UNKNOWN                "Home X/Y before Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Z Offset"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
127
+
128
+#define MSG_RECTRACT                        "Ritrai"
129
+
130
+#endif // LANGUAGE_IT_H

+ 130
- 0
Marlin/language_nl.h View File

@@ -0,0 +1,130 @@
1
+/**
2
+ * Dutch
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_NL_H
9
+#define LANGUAGE_NL_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " gereed."
12
+#define MSG_SD_INSERTED                     "Kaart ingestoken"
13
+#define MSG_SD_REMOVED                      "Kaart verwijderd"
14
+#define MSG_MAIN                            "Main"
15
+#define MSG_AUTOSTART                       "Autostart"
16
+#define MSG_DISABLE_STEPPERS                "Motoren uit"
17
+#define MSG_AUTO_HOME                       "Auto home"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Nulpunt instellen"
20
+#define MSG_PREHEAT_PLA                     "PLA voorverwarmen"
21
+#define MSG_PREHEAT_PLA0                    "PLA voorverw. 0"
22
+#define MSG_PREHEAT_PLA1                    "PLA voorverw. 1"
23
+#define MSG_PREHEAT_PLA2                    "PLA voorverw. 2"
24
+#define MSG_PREHEAT_PLA012                  "PLA voorverw. aan"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "PLA voorverw. Bed"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "PLA verw. conf"
27
+#define MSG_PREHEAT_ABS                     "ABS voorverwarmen"
28
+#define MSG_PREHEAT_ABS0                    "ABS voorverw. 0"
29
+#define MSG_PREHEAT_ABS1                    "ABS voorverw. 1"
30
+#define MSG_PREHEAT_ABS2                    "ABS voorverw. 2"
31
+#define MSG_PREHEAT_ABS012                  "ABS voorverw. aan"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "ABS voorverw. Bed"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "ABS verw. conf"
34
+#define MSG_COOLDOWN                        "Afkoelen"
35
+#define MSG_SWITCH_PS_ON                    "Stroom aan"
36
+#define MSG_SWITCH_PS_OFF                   "Stroom uit"
37
+#define MSG_EXTRUDE                         "Extrude"
38
+#define MSG_RETRACT                         "Retract"
39
+#define MSG_MOVE_AXIS                       "As verplaatsen"
40
+#define MSG_MOVE_X                          "Verplaats X"
41
+#define MSG_MOVE_Y                          "Verplaats Y"
42
+#define MSG_MOVE_Z                          "Verplaats Z"
43
+#define MSG_MOVE_E                          "Extruder"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "Verplaats 0.1mm"
47
+#define MSG_MOVE_1MM                        "Verplaats 1mm"
48
+#define MSG_MOVE_10MM                       "Verplaats 10mm"
49
+#define MSG_SPEED                           "Snelheid"
50
+#define MSG_NOZZLE                          "Nozzle"
51
+#define MSG_NOZZLE1                         "Nozzle2"
52
+#define MSG_NOZZLE2                         "Nozzle3"
53
+#define MSG_BED                             "Bed"
54
+#define MSG_FAN_SPEED                       "Fan snelheid"
55
+#define MSG_FLOW                            "Flow"
56
+#define MSG_FLOW0                           "Flow 0"
57
+#define MSG_FLOW1                           "Flow 1"
58
+#define MSG_FLOW2                           "Flow 2"
59
+#define MSG_CONTROL                         "Control"
60
+#define MSG_MIN                             " \002 Min"
61
+#define MSG_MAX                             " \002 Max"
62
+#define MSG_FACTOR                          " \002 Fact"
63
+#define MSG_AUTOTEMP                        "Autotemp"
64
+#define MSG_ON                              "Aan "
65
+#define MSG_OFF                             "Uit"
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Versn"
71
+#define MSG_VXY_JERK                        "Vxy-jerk"
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ve-jerk"
74
+#define MSG_VMAX                            "Vmax "
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "e"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "VTrav min"
81
+#define MSG_AMAX                            "Amax "
82
+#define MSG_A_RETRACT                       "A-retract"
83
+#define MSG_XSTEPS                          "Xsteps/mm"
84
+#define MSG_YSTEPS                          "Ysteps/mm"
85
+#define MSG_ZSTEPS                          "Zsteps/mm"
86
+#define MSG_ESTEPS                          "Esteps/mm"
87
+#define MSG_TEMPERATURE                     "Temperatuur"
88
+#define MSG_MOTION                          "Beweging"
89
+#define MSG_CONTRAST                        "LCD contrast"
90
+#define MSG_STORE_EPROM                     "Geheugen opslaan"
91
+#define MSG_LOAD_EPROM                      "Geheugen laden"
92
+#define MSG_RESTORE_FAILSAFE                "Noodstop reset"
93
+#define MSG_REFRESH                         "Ververs"
94
+#define MSG_WATCH                           "Info scherm"
95
+#define MSG_PREPARE                         "Voorbereiden"
96
+#define MSG_TUNE                            "Afstellen"
97
+#define MSG_PAUSE_PRINT                     "Print pauzeren"
98
+#define MSG_RESUME_PRINT                    "Print hervatten"
99
+#define MSG_STOP_PRINT                      "Print stoppen"
100
+#define MSG_CARD_MENU                       "Print van SD"
101
+#define MSG_NO_CARD                         "Geen SD kaart"
102
+#define MSG_DWELL                           "Slapen..."
103
+#define MSG_USERWAIT                        "Wachten..."
104
+#define MSG_RESUMING                        "Print hervatten"
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Geen beweging."
107
+#define MSG_KILLED                          "AFGEBROKEN. "
108
+#define MSG_STOPPED                         "GESTOPT. "
109
+#define MSG_CONTROL_RETRACT                 "Retract mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Ruil Retract mm"
111
+#define MSG_CONTROL_RETRACTF                "Retract  F"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Hop mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Ruil UnRet +mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "UnRet  F"
116
+#define MSG_AUTORETRACT                     "AutoRetr."
117
+#define MSG_FILAMENTCHANGE                  "Verv. Filament"
118
+#define MSG_INIT_SDCARD                     "Init. SD kaart"
119
+#define MSG_CNG_SDCARD                      "Verv. SD card"
120
+#define MSG_ZPROBE_OUT                      "Z probe uit. bed"
121
+#define MSG_POSITION_UNKNOWN                "Home X/Y voor Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Z Offset"
123
+#define MSG_BABYSTEP_X                      "Babystap X"
124
+#define MSG_BABYSTEP_Y                      "Babystap Y"
125
+#define MSG_BABYSTEP_Z                      "Babystap Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop afbr."
127
+
128
+#define MSG_RECTRACT                        "Terugtrekken"
129
+
130
+#endif // LANGUAGE_NL_H

+ 131
- 0
Marlin/language_pl.h View File

@@ -0,0 +1,131 @@
1
+/**
2
+ * Polish
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_PL_H
9
+#define LANGUAGE_PL_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME " gotowy."
12
+#define MSG_SD_INSERTED                     "Karta wlozona"
13
+#define MSG_SD_REMOVED                      "Karta usunieta"
14
+#define MSG_MAIN                            "Menu glowne"
15
+#define MSG_AUTOSTART                       "Autostart"
16
+#define MSG_DISABLE_STEPPERS                "Wylacz silniki"
17
+#define MSG_AUTO_HOME                       "Auto. poz. zerowa"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Ustaw punkt zero"
20
+#define MSG_PREHEAT_PLA                     "Rozgrzej PLA"
21
+#define MSG_PREHEAT_PLA0                    "Rozgrzej PLA 1"
22
+#define MSG_PREHEAT_PLA1                    "Rozgrzej PLA 2"
23
+#define MSG_PREHEAT_PLA2                    "Rozgrzej PLA 3"
24
+#define MSG_PREHEAT_PLA012                  "Roz. PLA Wszystko"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Rozgrzej PLA Loze"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Ustaw. rozg. PLA"
27
+#define MSG_PREHEAT_ABS                     "Rozgrzej ABS"
28
+#define MSG_PREHEAT_ABS0                    "Rozgrzej ABS 1"
29
+#define MSG_PREHEAT_ABS1                    "Rozgrzej ABS 2"
30
+#define MSG_PREHEAT_ABS2                    "Rozgrzej ABS 3"
31
+#define MSG_PREHEAT_ABS012                  "Roz. ABS Wszystko"
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Rozgrzej ABS Loze"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Ustaw. rozg. ABS"
34
+#define MSG_COOLDOWN                        "Chlodzenie"
35
+#define MSG_SWITCH_PS_ON                    "Wlacz zasilacz"
36
+#define MSG_SWITCH_PS_OFF                   "Wylacz zasilacz"
37
+#define MSG_EXTRUDE                         "Ekstruzja"
38
+#define MSG_RETRACT                         "Cofanie"
39
+#define MSG_MOVE_AXIS                       "Ruch osi"
40
+#define MSG_MOVE_X                          "Przesun w X"
41
+#define MSG_MOVE_Y                          "Przesun w Y"
42
+#define MSG_MOVE_Z                          "Przesun w Z"
43
+#define MSG_MOVE_E                          "Ekstruzja (os E)"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "Przesuwaj co .1mm"
47
+#define MSG_MOVE_1MM                        "Przesuwaj co 1mm"
48
+#define MSG_MOVE_10MM                       "Przesuwaj co 10mm"
49
+#define MSG_SPEED                           "Predkosc"
50
+#define MSG_NOZZLE                          "Dysza"
51
+#define MSG_NOZZLE1                         "Dysza 2"
52
+#define MSG_NOZZLE2                         "Dysza 3"
53
+#define MSG_BED                             "Loze"
54
+#define MSG_FAN_SPEED                       "Obroty wiatraka"
55
+#define MSG_FLOW                            "Przeplyw"
56
+#define MSG_FLOW0                           "Przeplyw 0"
57
+#define MSG_FLOW1                           "Przeplyw 1"
58
+#define MSG_FLOW2                           "Przeplyw 2"
59
+#define MSG_CONTROL                         "Ustawienia"
60
+#define MSG_MIN                             " \002 Min"
61
+#define MSG_MAX                             " \002 Max"
62
+#define MSG_FACTOR                          " \002 Mnoznik"
63
+#define MSG_AUTOTEMP                        "Auto. temperatura"
64
+#define MSG_ON                              "Wl. "
65
+#define MSG_OFF                             "Wyl."
66
+#define MSG_PID_P                           "PID-P"
67
+#define MSG_PID_I                           "PID-I"
68
+#define MSG_PID_D                           "PID-D"
69
+#define MSG_PID_C                           "PID-C"
70
+#define MSG_ACC                             "Przyspieszenie"
71
+#define MSG_VXY_JERK                        "Zryw Vxy"
72
+#define MSG_VZ_JERK                         "Zryw Vz"
73
+#define MSG_VE_JERK                         "Zryw Ve"
74
+#define MSG_VMAX                            "Vmax"
75
+#define MSG_X                               "x"
76
+#define MSG_Y                               "y"
77
+#define MSG_Z                               "z"
78
+#define MSG_E                               "e"
79
+#define MSG_VMIN                            "Vmin"
80
+#define MSG_VTRAV_MIN                       "Vskok min"
81
+#define MSG_AMAX                            "Amax"
82
+#define MSG_A_RETRACT                       "A-wycofanie"
83
+#define MSG_XSTEPS                          "krokiX/mm"
84
+#define MSG_YSTEPS                          "krokiY/mm"
85
+#define MSG_ZSTEPS                          "krokiZ/mm"
86
+#define MSG_ESTEPS                          "krokiE/mm"
87
+#define MSG_TEMPERATURE                     "Temperatura"
88
+#define MSG_MOTION                          "Ruch"
89
+#define MSG_CONTRAST                        "Kontrast LCD"
90
+#define MSG_STORE_EPROM                     "Zapisz w pamieci"
91
+#define MSG_LOAD_EPROM                      "Wczytaj z pamieci"
92
+#define MSG_RESTORE_FAILSAFE                "Ustaw. fabryczne"
93
+#define MSG_REFRESH                         "\004Odswiez"
94
+#define MSG_WATCH                           "Ekran glowny"
95
+#define MSG_PREPARE                         "Przygotuj"
96
+#define MSG_TUNE                            "Strojenie"
97
+#define MSG_PAUSE_PRINT                     "Pauza"
98
+#define MSG_RESUME_PRINT                    "Wznowienie"
99
+#define MSG_STOP_PRINT                      "Stop"
100
+#define MSG_CARD_MENU                       "Menu karty SD"
101
+#define MSG_NO_CARD                         "Brak karty"
102
+#define MSG_DWELL                           "Uspij..."
103
+#define MSG_USERWAIT                        "Oczekiwanie..."
104
+#define MSG_RESUMING                        "Wznawianie druku"
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Brak ruchu"
107
+#define MSG_KILLED                          "Ubity. "
108
+#define MSG_STOPPED                         "Zatrzymany. "
109
+#define MSG_CONTROL_RETRACT                 "Wycofaj mm"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Z Wycof. mm"
111
+#define MSG_CONTROL_RETRACTF                "Wycofaj  V"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Skok Z mm:"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "Cof. wycof. +mm"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Z Cof. wyc. +mm"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "Cof. wycof.  V"
116
+#define MSG_AUTORETRACT                     "Auto. wycofanie"
117
+#define MSG_FILAMENTCHANGE                  "Zmien filament"
118
+#define MSG_INIT_SDCARD                     "Inicjal. karty SD"
119
+#define MSG_CNG_SDCARD                      "Zmiana karty SD"
120
+#define MSG_ZPROBE_OUT                      "Sonda Z za lozem"
121
+#define MSG_POSITION_UNKNOWN                "Wroc w XY przed Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Offset Z"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Blad wyl. kranc."
127
+
128
+#define MSG_RECTRACT                        "Wycofanie"
129
+#define MSG_STEPPER_RELEASED                "Zwolniony."
130
+
131
+#endif // LANGUAGE_PL_H

+ 135
- 0
Marlin/language_pt.h View File

@@ -0,0 +1,135 @@
1
+/**
2
+ * Portuguese
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_PT_H
9
+#define LANGUAGE_PT_H
10
+
11
+#define WELCOME_MSG							MACHINE_NAME " pronto."
12
+#define MSG_SD_INSERTED                     "Cartao inserido"
13
+#define MSG_SD_REMOVED                      "Cartao removido"
14
+#define MSG_MAIN                            " Menu principal \003"
15
+#define MSG_AUTOSTART                       "Autostart"
16
+#define MSG_DISABLE_STEPPERS                " Apagar motores"
17
+#define MSG_AUTO_HOME                       "Ir para origen"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Estabelecer orig."
20
+#define MSG_PREHEAT_PLA                     "Pre-aquecer PLA"
21
+#define MSG_PREHEAT_PLA0                    " pre-aquecer PLA 1"
22
+#define MSG_PREHEAT_PLA1                    " pre-aquecer PLA 2"
23
+#define MSG_PREHEAT_PLA2                    " pre-aquecer PLA 3"
24
+#define MSG_PREHEAT_PLA012                  " pre-aq. PLA Tudo"
25
+#define MSG_PREHEAT_PLA_BEDONLY             " pre-aq. PLA \002Base"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "PLA setting"
27
+#define MSG_PREHEAT_ABS                     "Pre-aquecer ABS"
28
+#define MSG_PREHEAT_ABS0                    " pre-aquecer ABS 1"
29
+#define MSG_PREHEAT_ABS1                    " pre-aquecer ABS 2"
30
+#define MSG_PREHEAT_ABS2                    " pre-aquecer ABS 3"
31
+#define MSG_PREHEAT_ABS012                  " pre-aq. ABS Tudo"
32
+#define MSG_PREHEAT_ABS_BEDONLY             " pre-aq. ABS \002Base"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "ABS setting"
34
+#define MSG_COOLDOWN                        "Esfriar"
35
+#define MSG_SWITCH_PS_ON                    "Switch Power On"
36
+#define MSG_SWITCH_PS_OFF                   "Switch Power Off"
37
+#define MSG_EXTRUDE                         "Extrudar"
38
+#define MSG_RETRACT                         "Retrair"
39
+#define MSG_MOVE_AXIS                       "Mover eixo      \x7E"
40
+#define MSG_MOVE_X                          "Move X"
41
+#define MSG_MOVE_Y                          "Move Y"
42
+#define MSG_MOVE_Z                          "Move Z"
43
+#define MSG_MOVE_E                          "Extruder"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "Move 0.1mm"
47
+#define MSG_MOVE_1MM                        "Move 1mm"
48
+#define MSG_MOVE_10MM                       "Move 10mm"
49
+#define MSG_SPEED                           "Velocidade:"
50
+#define MSG_NOZZLE                          "\002Nozzle:"
51
+#define MSG_NOZZLE1                         "\002Nozzle2:"
52
+#define MSG_NOZZLE2                         "\002Nozzle3:"
53
+#define MSG_BED                             "\002Base:"
54
+#define MSG_FAN_SPEED                       "Velocidade vento."
55
+#define MSG_FLOW                            "Fluxo:"
56
+#define MSG_FLOW0                           "Fluxo0:"
57
+#define MSG_FLOW1                           "Fluxo1:"
58
+#define MSG_FLOW2                           "Fluxo2:"
59
+#define MSG_CONTROL                         "Controle \003"
60
+#define MSG_MIN                             "\002 Min:"
61
+#define MSG_MAX                             "\002 Max:"
62
+#define MSG_FACTOR                          "\002 Fact:"
63
+#define MSG_AUTOTEMP                        "Autotemp:"
64
+#define MSG_ON                              "On "
65
+#define MSG_OFF                             "Off"
66
+#define MSG_PID_P                           "PID-P: "
67
+#define MSG_PID_I                           "PID-I: "
68
+#define MSG_PID_D                           "PID-D: "
69
+#define MSG_PID_C                           "PID-C: "
70
+#define MSG_ACC                             "Acc:"
71
+#define MSG_VXY_JERK                        "Vxy-jerk: "
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ve-jerk"
74
+#define MSG_VMAX                            " Vmax "
75
+#define MSG_X                               "x:"
76
+#define MSG_Y                               "y:"
77
+#define MSG_Z                               "z:"
78
+#define MSG_E                               "e:"
79
+#define MSG_VMIN                            "Vmin:"
80
+#define MSG_VTRAV_MIN                       "VTrav min:"
81
+#define MSG_AMAX                            "Amax "
82
+#define MSG_A_RETRACT                       "A-retract:"
83
+#define MSG_XSTEPS                          "Xpasso/mm:"
84
+#define MSG_YSTEPS                          "Ypasso/mm:"
85
+#define MSG_ZSTEPS                          "Zpasso/mm:"
86
+#define MSG_ESTEPS                          "Epasso/mm:"
87
+#define MSG_TEMPERATURE                     "Temperatura"
88
+#define MSG_MOTION                          "Movimento"
89
+#define MSG_CONTRAST                        "Contrast"
90
+#define MSG_STORE_EPROM                     "Guardar memoria"
91
+#define MSG_LOAD_EPROM                      "Carregar memoria"
92
+#define MSG_RESTORE_FAILSAFE                "Rest. de emergen."
93
+#define MSG_REFRESH                         "\004Recarregar"
94
+#define MSG_WATCH                           "Monitorar   \003"
95
+#define MSG_PREPARE                         "Preparar \x7E"
96
+#define MSG_TUNE                            "Tune    \x7E"
97
+#define MSG_PAUSE_PRINT                     "Pausar impressao"
98
+#define MSG_RESUME_PRINT                    "Resumir impressao"
99
+#define MSG_STOP_PRINT                      "Parar impressao"
100
+#define MSG_CARD_MENU                       "Menu cartao SD"
101
+#define MSG_NO_CARD                         "Sem cartao SD"
102
+#define MSG_DWELL                           "Repouso..."
103
+#define MSG_USERWAIT                        "Esperando ordem"
104
+#define MSG_RESUMING                        "Resuming print"
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Sem movimento"
107
+#define MSG_KILLED                          "PARADA DE EMERG."
108
+#define MSG_STOPPED                         "PARADA. "
109
+#define MSG_CONTROL_RETRACT                 " Retrair mm:"
110
+#define MSG_CONTROL_RETRACT_SWAP            "Troca Retrair mm:"
111
+#define MSG_CONTROL_RETRACTF                " Retrair  V:"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           " Levantar mm:"
113
+#define MSG_CONTROL_RETRACT_RECOVER         " DesRet +mm:"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Troca DesRet +mm:"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        " DesRet  V:"
116
+#define MSG_AUTORETRACT                     " AutoRetr.:"
117
+#define MSG_FILAMENTCHANGE                  "Change filament"
118
+#define MSG_INIT_SDCARD                     "Init. SD-Card"
119
+#define MSG_CNG_SDCARD                      "Change SD-Card"
120
+#define MSG_ZPROBE_OUT                      "Son. fora da mesa"
121
+#define MSG_POSITION_UNKNOWN                "XY antes de Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Z Offset"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
127
+
128
+#define MSG_RECTRACT                        "Retrair"
129
+#define MSG_MAIN_WIDE                       "Menu Principal  \003"
130
+#define MSG_PREPARE_ALT                     "Preparar \003"
131
+#define MSG_CONTROL_ARROW                   "Controle \x7E"
132
+#define MSG_RETRACT_ARROW                   "Retrair \x7E"
133
+#define MSG_STEPPER_RELEASED                "Lancado."
134
+
135
+#endif // LANGUAGE_PT_H

+ 130
- 0
Marlin/language_ru.h View File

@@ -0,0 +1,130 @@
1
+/**
2
+ * Russian
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef LANGUAGE_RU_H
9
+#define LANGUAGE_RU_H
10
+
11
+#define WELCOME_MSG                         MACHINE_NAME "Готов."
12
+#define MSG_SD_INSERTED                     "Карта вставлена"
13
+#define MSG_SD_REMOVED                      "Карта извлечена"
14
+#define MSG_MAIN                            "Меню \003"
15
+#define MSG_AUTOSTART                       "Автостарт"
16
+#define MSG_DISABLE_STEPPERS                "Выкл. двигатели"
17
+#define MSG_AUTO_HOME                       "Парковка"
18
+#define MSG_SET_HOME_OFFSETS                "Set home offsets"
19
+#define MSG_SET_ORIGIN                      "Запомнить ноль"
20
+#define MSG_PREHEAT_PLA                     "Преднагрев PLA"
21
+#define MSG_PREHEAT_PLA0                    "Преднагрев PLA0"
22
+#define MSG_PREHEAT_PLA1                    "Преднагрев PLA1"
23
+#define MSG_PREHEAT_PLA2                    "Преднагрев PLA2"
24
+#define MSG_PREHEAT_PLA012                  "Преднаг. PLA все"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Пред. PLA Кровать"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Настройки PLA"
27
+#define MSG_PREHEAT_ABS                     "Преднагрев ABS"
28
+#define MSG_PREHEAT_ABS0                    "Преднагрев ABS0"
29
+#define MSG_PREHEAT_ABS1                    "Преднагрев ABS1"
30
+#define MSG_PREHEAT_ABS2                    "Преднагрев ABS2"
31
+#define MSG_PREHEAT_ABS012                  "Преднаг. ABS все "
32
+#define MSG_PREHEAT_ABS_BEDONLY             "Пред. ABS Кровать"
33
+#define MSG_PREHEAT_ABS_SETTINGS            "Настройки ABS"
34
+#define MSG_COOLDOWN                        "Охлаждение"
35
+#define MSG_SWITCH_PS_ON                    "Switch Power On"
36
+#define MSG_SWITCH_PS_OFF                   "Switch Power Off"
37
+#define MSG_EXTRUDE                         "Экструзия"
38
+#define MSG_RETRACT                         "Откат"
39
+#define MSG_MOVE_AXIS                       "Движение по осям"
40
+#define MSG_MOVE_X                          "Move X"
41
+#define MSG_MOVE_Y                          "Move Y"
42
+#define MSG_MOVE_Z                          "Move Z"
43
+#define MSG_MOVE_E                          "Extruder"
44
+#define MSG_MOVE_E1                         "Extruder2"
45
+#define MSG_MOVE_E2                         "Extruder3"
46
+#define MSG_MOVE_01MM                       "Move 0.1mm"
47
+#define MSG_MOVE_1MM                        "Move 1mm"
48
+#define MSG_MOVE_10MM                       "Move 10mm"
49
+#define MSG_SPEED                           "Скорость:"
50
+#define MSG_NOZZLE                          "\002 Фильера:"
51
+#define MSG_NOZZLE1                         "\002 Фильера2:"
52
+#define MSG_NOZZLE2                         "\002 Фильера3:"
53
+#define MSG_BED                             "\002 Кровать:"
54
+#define MSG_FAN_SPEED                       "Куллер:"
55
+#define MSG_FLOW                            "Поток:"
56
+#define MSG_FLOW0                           " Поток0:"
57
+#define MSG_FLOW1                           " Поток1:"
58
+#define MSG_FLOW2                           " Поток2:"
59
+#define MSG_CONTROL                         "Настройки \003"
60
+#define MSG_MIN                             "\002 Минимум:"
61
+#define MSG_MAX                             "\002 Максимум:"
62
+#define MSG_FACTOR                          "\002 Фактор:"
63
+#define MSG_AUTOTEMP                        "Autotemp:"
64
+#define MSG_ON                              "Вкл. "
65
+#define MSG_OFF                             "Выкл. "
66
+#define MSG_PID_P                           "PID-P: "
67
+#define MSG_PID_I                           "PID-I: "
68
+#define MSG_PID_D                           "PID-D: "
69
+#define MSG_PID_C                           "PID-C: "
70
+#define MSG_ACC                             "Acc:"
71
+#define MSG_VXY_JERK                        "Vxy-jerk: "
72
+#define MSG_VZ_JERK                         "Vz-jerk"
73
+#define MSG_VE_JERK                         "Ve-jerk"
74
+#define MSG_VMAX                            "Vmax "
75
+#define MSG_X                               "x:"
76
+#define MSG_Y                               "y:"
77
+#define MSG_Z                               "z:"
78
+#define MSG_E                               "e:"
79
+#define MSG_VMIN                            "Vmin:"
80
+#define MSG_VTRAV_MIN                       "VTrav min:"
81
+#define MSG_AMAX                            "Amax "
82
+#define MSG_A_RETRACT                       "A-retract:"
83
+#define MSG_XSTEPS                          "X шаг/mm:"
84
+#define MSG_YSTEPS                          "Y шаг/mm:"
85
+#define MSG_ZSTEPS                          "Z шаг/mm:"
86
+#define MSG_ESTEPS                          "E шаг/mm:"
87
+#define MSG_TEMPERATURE                     "Температура     \x7E"
88
+#define MSG_MOTION                          "Скорости        \x7E"
89
+#define MSG_CONTRAST                        "LCD contrast"
90
+#define MSG_STORE_EPROM                     "Сохранить в EPROM"
91
+#define MSG_LOAD_EPROM                      "Загруз. из EPROM"
92
+#define MSG_RESTORE_FAILSAFE                "Сброс настроек"
93
+#define MSG_REFRESH                         "\004Обновить"
94
+#define MSG_WATCH                           "Обзор           \003"
95
+#define MSG_PREPARE                         "Действия        \x7E"
96
+#define MSG_TUNE                            "Настройки       \x7E"
97
+#define MSG_PAUSE_PRINT                     "Продолжить печать"
98
+#define MSG_RESUME_PRINT                    "возобн. печать"
99
+#define MSG_STOP_PRINT                      "Остановить печать"
100
+#define MSG_CARD_MENU                       "Меню карты      \x7E"
101
+#define MSG_NO_CARD                         "Нет карты"
102
+#define MSG_DWELL                           "Сон..."
103
+#define MSG_USERWAIT                        "Ожиданиие"
104
+#define MSG_RESUMING                        "Resuming print"
105
+#define MSG_PRINT_ABORTED                   "Print aborted"
106
+#define MSG_NO_MOVE                         "Нет движения."
107
+#define MSG_KILLED                          "УБИТО."
108
+#define MSG_STOPPED                         "ОСТАНОВЛЕНО."
109
+#define MSG_CONTROL_RETRACT                 "Откат mm:"
110
+#define MSG_CONTROL_RETRACT_SWAP            "своп Откат mm:"
111
+#define MSG_CONTROL_RETRACTF                "Откат  V:"
112
+#define MSG_CONTROL_RETRACT_ZLIFT           "Прыжок mm:"
113
+#define MSG_CONTROL_RETRACT_RECOVER         "Возврат +mm:"
114
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "своп Возврат +mm:"
115
+#define MSG_CONTROL_RETRACT_RECOVERF        "Возврат  V:"
116
+#define MSG_AUTORETRACT                     "АвтоОткат:"
117
+#define MSG_FILAMENTCHANGE                  "Change filament"
118
+#define MSG_INIT_SDCARD                     "Init. SD-Card"
119
+#define MSG_CNG_SDCARD                      "Change SD-Card"
120
+#define MSG_ZPROBE_OUT                      "Z probe out. bed"
121
+#define MSG_POSITION_UNKNOWN                "Home X/Y before Z"
122
+#define MSG_ZPROBE_ZOFFSET                  "Z Offset"
123
+#define MSG_BABYSTEP_X                      "Babystep X"
124
+#define MSG_BABYSTEP_Y                      "Babystep Y"
125
+#define MSG_BABYSTEP_Z                      "Babystep Z"
126
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
127
+
128
+#define MSG_RECTRACT                        "Откат подачи    \x7E"
129
+
130
+#endif // LANGUAGE_RU_H

+ 1
- 1
Marlin/ultralcd_implementation_hitachi_HD44780.h View File

@@ -198,7 +198,7 @@ extern volatile uint16_t buttons;  //an extended version of the last checked but
198 198
 
199 199
 #else
200 200
   // Standard directly connected LCD implementations
201
-  #if LANGUAGE_CHOICE == 6
201
+  #if LANGUAGE_CHOICE == ru
202 202
     #include "LiquidCrystalRus.h"
203 203
     #define LCD_CLASS LiquidCrystalRus
204 204
   #else 

Loading…
Cancel
Save