Browse Source

Clean up, move unused to the bottom, add headings

Scott Lahteine 9 years ago
parent
commit
e970461adb

+ 75
- 73
Marlin/language.h View File

@@ -73,79 +73,81 @@
73 73
 
74 74
 // Serial Console Messages (do not translate those!)
75 75
 
76
-#define MSG_Enqueing "enqueing \""
77
-#define MSG_POWERUP "PowerUp"
78
-#define MSG_EXTERNAL_RESET " External Reset"
79
-#define MSG_BROWNOUT_RESET " Brown out Reset"
80
-#define MSG_WATCHDOG_RESET " Watchdog Reset"
81
-#define MSG_SOFTWARE_RESET " Software Reset"
82
-#define MSG_AUTHOR " | Author: "
83
-#define MSG_CONFIGURATION_VER " Last Updated: "
84
-#define MSG_FREE_MEMORY " Free Memory: "
85
-#define MSG_PLANNER_BUFFER_BYTES "  PlannerBufferBytes: "
86
-#define MSG_OK "ok"
87
-#define MSG_FILE_SAVED "Done saving file."
88
-#define MSG_ERR_LINE_NO "Line Number is not Last Line Number+1, Last Line: "
89
-#define MSG_ERR_CHECKSUM_MISMATCH "checksum mismatch, Last Line: "
90
-#define MSG_ERR_NO_CHECKSUM "No Checksum with line number, Last Line: "
76
+#define MSG_Enqueing                        "enqueing \""
77
+#define MSG_POWERUP                         "PowerUp"
78
+#define MSG_EXTERNAL_RESET                  " External Reset"
79
+#define MSG_BROWNOUT_RESET                  " Brown out Reset"
80
+#define MSG_WATCHDOG_RESET                  " Watchdog Reset"
81
+#define MSG_SOFTWARE_RESET                  " Software Reset"
82
+#define MSG_AUTHOR                          " | Author: "
83
+#define MSG_CONFIGURATION_VER               " Last Updated: "
84
+#define MSG_FREE_MEMORY                     " Free Memory: "
85
+#define MSG_PLANNER_BUFFER_BYTES            "  PlannerBufferBytes: "
86
+#define MSG_OK                              "ok"
87
+#define MSG_FILE_SAVED                      "Done saving file."
88
+#define MSG_ERR_LINE_NO                     "Line Number is not Last Line Number+1, Last Line: "
89
+#define MSG_ERR_CHECKSUM_MISMATCH           "checksum mismatch, Last Line: "
90
+#define MSG_ERR_NO_CHECKSUM                 "No Checksum with line number, Last Line: "
91 91
 #define MSG_ERR_NO_LINENUMBER_WITH_CHECKSUM "No Line Number with checksum, Last Line: "
92
-#define MSG_FILE_PRINTED "Done printing file"
93
-#define MSG_BEGIN_FILE_LIST "Begin file list"
94
-#define MSG_END_FILE_LIST "End file list"
95
-#define MSG_M104_INVALID_EXTRUDER "M104 Invalid extruder "
96
-#define MSG_M105_INVALID_EXTRUDER "M105 Invalid extruder "
97
-#define MSG_M200_INVALID_EXTRUDER "M200 Invalid extruder "
98
-#define MSG_M218_INVALID_EXTRUDER "M218 Invalid extruder "
99
-#define MSG_M221_INVALID_EXTRUDER "M221 Invalid extruder "
100
-#define MSG_ERR_NO_THERMISTORS "No thermistors - no temperature"
101
-#define MSG_M109_INVALID_EXTRUDER "M109 Invalid extruder "
102
-#define MSG_HEATING "Heating..."
103
-#define MSG_HEATING_COMPLETE "Heating done."
104
-#define MSG_BED_HEATING "Bed Heating."
105
-#define MSG_BED_DONE "Bed done."
106
-#define MSG_M115_REPORT "FIRMWARE_NAME:Marlin V1; Sprinter/grbl mashup for gen6 FIRMWARE_URL:" FIRMWARE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n"
107
-#define MSG_COUNT_X " Count X: "
108
-#define MSG_ERR_KILLED "Printer halted. kill() called!"
109
-#define MSG_ERR_STOPPED "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)"
110
-#define MSG_RESEND "Resend: "
111
-#define MSG_UNKNOWN_COMMAND "Unknown command: \""
112
-#define MSG_ACTIVE_EXTRUDER "Active Extruder: "
113
-#define MSG_INVALID_EXTRUDER "Invalid extruder"
114
-#define MSG_X_MIN "x_min: "
115
-#define MSG_X_MAX "x_max: "
116
-#define MSG_Y_MIN "y_min: "
117
-#define MSG_Y_MAX "y_max: "
118
-#define MSG_Z_MIN "z_min: "
119
-#define MSG_Z_MAX "z_max: "
120
-#define MSG_M119_REPORT "Reporting endstop status"
121
-#define MSG_ENDSTOP_HIT "TRIGGERED"
122
-#define MSG_ENDSTOP_OPEN "open"
123
-#define MSG_HOTEND_OFFSET "Hotend offsets:"
124
-
125
-#define MSG_SD_CANT_OPEN_SUBDIR "Cannot open subdir"
126
-#define MSG_SD_INIT_FAIL "SD init fail"
127
-#define MSG_SD_VOL_INIT_FAIL "volume.init failed"
128
-#define MSG_SD_OPENROOT_FAIL "openRoot failed"
129
-#define MSG_SD_CARD_OK "SD card ok"
130
-#define MSG_SD_WORKDIR_FAIL "workDir open failed"
131
-#define MSG_SD_OPEN_FILE_FAIL "open failed, File: "
132
-#define MSG_SD_FILE_OPENED "File opened: "
133
-#define MSG_SD_SIZE " Size: "
134
-#define MSG_SD_FILE_SELECTED "File selected"
135
-#define MSG_SD_WRITE_TO_FILE "Writing to file: "
136
-#define MSG_SD_PRINTING_BYTE "SD printing byte "
137
-#define MSG_SD_NOT_PRINTING "Not SD printing"
138
-#define MSG_SD_ERR_WRITE_TO_FILE "error writing to file"
139
-#define MSG_SD_CANT_ENTER_SUBDIR "Cannot enter subdir: "
140
-
141
-#define MSG_STEPPER_TOO_HIGH "Steprate too high: "
142
-#define MSG_ENDSTOPS_HIT "endstops hit: "
143
-#define MSG_ERR_COLD_EXTRUDE_STOP " cold extrusion prevented"
144
-#define MSG_ERR_LONG_EXTRUDE_STOP " too long extrusion prevented"
145
-#define MSG_BABYSTEPPING_X "Babystepping X"
146
-#define MSG_BABYSTEPPING_Y "Babystepping Y"
147
-#define MSG_BABYSTEPPING_Z "Babystepping Z"
148
-#define MSG_SERIAL_ERROR_MENU_STRUCTURE "Error in menu structure"
92
+#define MSG_FILE_PRINTED                    "Done printing file"
93
+#define MSG_BEGIN_FILE_LIST                 "Begin file list"
94
+#define MSG_END_FILE_LIST                   "End file list"
95
+#define MSG_M104_INVALID_EXTRUDER           "M104 Invalid extruder "
96
+#define MSG_M105_INVALID_EXTRUDER           "M105 Invalid extruder "
97
+#define MSG_M200_INVALID_EXTRUDER           "M200 Invalid extruder "
98
+#define MSG_M218_INVALID_EXTRUDER           "M218 Invalid extruder "
99
+#define MSG_M221_INVALID_EXTRUDER           "M221 Invalid extruder "
100
+#define MSG_ERR_NO_THERMISTORS              "No thermistors - no temperature"
101
+#define MSG_M109_INVALID_EXTRUDER           "M109 Invalid extruder "
102
+#define MSG_HEATING                         "Heating..."
103
+#define MSG_HEATING_COMPLETE                "Heating done."
104
+#define MSG_BED_HEATING                     "Bed Heating."
105
+#define MSG_BED_DONE                        "Bed done."
106
+#define MSG_M115_REPORT                     "FIRMWARE_NAME:Marlin V1; Sprinter/grbl mashup for gen6 FIRMWARE_URL:" FIRMWARE_URL " PROTOCOL_VERSION:" PROTOCOL_VERSION " MACHINE_TYPE:" MACHINE_NAME " EXTRUDER_COUNT:" STRINGIFY(EXTRUDERS) " UUID:" MACHINE_UUID "\n"
107
+#define MSG_COUNT_X                         " Count X: "
108
+#define MSG_ERR_KILLED                      "Printer halted. kill() called!"
109
+#define MSG_ERR_STOPPED                     "Printer stopped due to errors. Fix the error and use M999 to restart. (Temperature is reset. Set it after restarting)"
110
+#define MSG_RESEND                          "Resend: "
111
+#define MSG_UNKNOWN_COMMAND                 "Unknown command: \""
112
+#define MSG_ACTIVE_EXTRUDER                 "Active Extruder: "
113
+#define MSG_INVALID_EXTRUDER                "Invalid extruder"
114
+#define MSG_X_MIN                           "x_min: "
115
+#define MSG_X_MAX                           "x_max: "
116
+#define MSG_Y_MIN                           "y_min: "
117
+#define MSG_Y_MAX                           "y_max: "
118
+#define MSG_Z_MIN                           "z_min: "
119
+#define MSG_Z_MAX                           "z_max: "
120
+#define MSG_M119_REPORT                     "Reporting endstop status"
121
+#define MSG_ENDSTOP_HIT                     "TRIGGERED"
122
+#define MSG_ENDSTOP_OPEN                    "open"
123
+#define MSG_HOTEND_OFFSET                   "Hotend offsets:"
124
+
125
+#define MSG_SD_CANT_OPEN_SUBDIR             "Cannot open subdir"
126
+#define MSG_SD_INIT_FAIL                    "SD init fail"
127
+#define MSG_SD_VOL_INIT_FAIL                "volume.init failed"
128
+#define MSG_SD_OPENROOT_FAIL                "openRoot failed"
129
+#define MSG_SD_CARD_OK                      "SD card ok"
130
+#define MSG_SD_WORKDIR_FAIL                 "workDir open failed"
131
+#define MSG_SD_OPEN_FILE_FAIL               "open failed, File: "
132
+#define MSG_SD_FILE_OPENED                  "File opened: "
133
+#define MSG_SD_SIZE                         " Size: "
134
+#define MSG_SD_FILE_SELECTED                "File selected"
135
+#define MSG_SD_WRITE_TO_FILE                "Writing to file: "
136
+#define MSG_SD_PRINTING_BYTE                "SD printing byte "
137
+#define MSG_SD_NOT_PRINTING                 "Not SD printing"
138
+#define MSG_SD_ERR_WRITE_TO_FILE            "error writing to file"
139
+#define MSG_SD_CANT_ENTER_SUBDIR 			"Cannot enter subdir: "
140
+
141
+#define MSG_STEPPER_TOO_HIGH                "Steprate too high: "
142
+#define MSG_ENDSTOPS_HIT                    "endstops hit: "
143
+#define MSG_ERR_COLD_EXTRUDE_STOP           " cold extrusion prevented"
144
+#define MSG_ERR_LONG_EXTRUDE_STOP           " too long extrusion prevented"
145
+#define MSG_BABYSTEPPING_X                  "Babystepping X"
146
+#define MSG_BABYSTEPPING_Y                  "Babystepping Y"
147
+#define MSG_BABYSTEPPING_Z                  "Babystepping Z"
148
+#define MSG_SERIAL_ERROR_MENU_STRUCTURE		"Error in menu structure"
149
+
150
+// LCD Menu Messages
149 151
 
150 152
 #if   LANGUAGE_CHOICE == en // English
151 153
   #include "language_en.h"
@@ -175,4 +177,4 @@
175 177
   #include "language_eu.h"
176 178
 #endif
177 179
 
178
-#endif // ifndef LANGUAGE_H
180
+#endif //__LANGUAGE_H

+ 10
- 6
Marlin/language_an.h View File

@@ -1,9 +1,13 @@
1
+/**
2
+ * Aragonese
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
1 8
 #ifndef LANGUAGE_AN_H
2 9
 #define LANGUAGE_AN_H
3 10
 
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
6
-
7 11
 #define WELCOME_MSG                         MACHINE_NAME " parada."
8 12
 #define MSG_SD_INSERTED                     "Tarcheta colocada"
9 13
 #define MSG_SD_REMOVED                      "Tarcheta retirada"
@@ -80,7 +84,6 @@
80 84
 #define MSG_YSTEPS                          "Y trangos/mm"
81 85
 #define MSG_ZSTEPS                          "Z trangos/mm"
82 86
 #define MSG_ESTEPS                          "E trangos/mm"
83
-#define MSG_RECTRACT                        "Retraer"
84 87
 #define MSG_TEMPERATURE                     "Temperatura"
85 88
 #define MSG_MOTION                          "Movimiento"
86 89
 #define MSG_CONTRAST                        "Contrast"
@@ -122,14 +125,15 @@
122 125
 #define MSG_BABYSTEP_Z                      "Babystep Z"
123 126
 #define MSG_ENDSTOP_ABORT                   "Endstop abort"
124 127
 
128
+#define MSG_RECTRACT                        "Retraer"
125 129
 #define MSG_RECTRACT_WIDE                   "Retraer"
126 130
 #define MSG_TEMPERATURE_WIDE                "Temperatura"
127 131
 #define MSG_TEMPERATURE_RTN                 "Temperatura"
128 132
 #define MSG_MAIN_WIDE                       "Menu Prencipal"
129 133
 #define MSG_MOTION_WIDE                     "Movimiento"
130 134
 #define MSG_PREPARE_ALT                     "Preparar"
131
-#define MSG_CONTROL_ARROW                   "Control"
132
-#define MSG_RETRACT_ARROW                   "Retraer"
135
+#define MSG_CONTROL_ARROW                   "Control \x7E"
136
+#define MSG_RETRACT_ARROW                   "Retraer \x7E"
133 137
 #define MSG_STEPPER_RELEASED                "Desacoplada."
134 138
 
135 139
 #endif // LANGUAGE_AN_H

+ 9
- 4
Marlin/language_ca.h View File

@@ -1,9 +1,13 @@
1
+/**
2
+ * Catalan
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
1 8
 #ifndef LANGUAGE_CA_H
2 9
 #define LANGUAGE_CA_H
3 10
 
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
6
-
7 11
 #define WELCOME_MSG                         MACHINE_NAME " preparada."
8 12
 #define MSG_SD_INSERTED                     "SD detectada."
9 13
 #define MSG_SD_REMOVED                      "SD expulsada."
@@ -80,7 +84,6 @@
80 84
 #define MSG_YSTEPS                          "Ypassos/mm"
81 85
 #define MSG_ZSTEPS                          "Zpassos/mm"
82 86
 #define MSG_ESTEPS                          "Epassos/mm"
83
-#define MSG_RECTRACT                        "Retreure"
84 87
 #define MSG_TEMPERATURE                     "Temperatura"
85 88
 #define MSG_MOTION                          "Moviment"
86 89
 #define MSG_CONTRAST                        "Contrast de LCD"
@@ -122,4 +125,6 @@
122 125
 #define MSG_BABYSTEP_Z                      "Babystep Z"
123 126
 #define MSG_ENDSTOP_ABORT                   "Endstop abort"
124 127
 
128
+#define MSG_RECTRACT                        "Retreure"
129
+
125 130
 #endif // LANGUAGE_CA_H

+ 11
- 8
Marlin/language_de.h View File

@@ -1,9 +1,13 @@
1
+/**
2
+ * German
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
1 8
 #ifndef LANGUAGE_DE_H
2 9
 #define LANGUAGE_DE_H
3 10
 
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
6
-
7 11
 #define WELCOME_MSG                         MACHINE_NAME " Bereit."
8 12
 #define MSG_SD_INSERTED                     "SDKarte erkannt"
9 13
 #define MSG_SD_REMOVED                      "SDKarte entfernt"
@@ -80,8 +84,6 @@
80 84
 #define MSG_YSTEPS                          "Ysteps/mm"
81 85
 #define MSG_ZSTEPS                          "Zsteps/mm"
82 86
 #define MSG_ESTEPS                          "Esteps/mm"
83
-#define MSG_RECTRACT_WIDE                   "Rectract"
84
-#define MSG_WATCH                           "Beobachten"
85 87
 #define MSG_TEMPERATURE                     "Temperatur"
86 88
 #define MSG_MOTION                          "Bewegung"
87 89
 #define MSG_CONTRAST                        "LCD contrast"
@@ -89,8 +91,8 @@
89 91
 #define MSG_LOAD_EPROM                      "EPROM laden"
90 92
 #define MSG_RESTORE_FAILSAFE                "Standardkonfig."
91 93
 #define MSG_REFRESH                         "Aktualisieren"
94
+#define MSG_WATCH                           "Beobachten"
92 95
 #define MSG_PREPARE                         "Vorbereitung"
93
-#define MSG_CONTROL                         "Einstellungen"
94 96
 #define MSG_TUNE                            "Justierung"
95 97
 #define MSG_PAUSE_PRINT                     "Druck anhalten"
96 98
 #define MSG_RESUME_PRINT                    "Druck fortsetz"
@@ -104,7 +106,6 @@
104 106
 #define MSG_NO_MOVE                         "Kein Zug."
105 107
 #define MSG_KILLED                          "KILLED"
106 108
 #define MSG_STOPPED                         "GESTOPPT"
107
-#define MSG_STEPPER_RELEASED                "Stepper frei"
108 109
 #define MSG_CONTROL_RETRACT                 "Retract mm"
109 110
 #define MSG_CONTROL_RETRACT_SWAP            "Wechs. Retract mm"
110 111
 #define MSG_CONTROL_RETRACTF                "Retract  V"
@@ -123,6 +124,8 @@
123 124
 #define MSG_BABYSTEP_Y                      "Babystep Y"
124 125
 #define MSG_BABYSTEP_Z                      "Babystep Z"
125 126
 #define MSG_ENDSTOP_ABORT                   "Endstop abort"
126
-#define MSG_CONTRAST                        "Contrast"
127
+
128
+#define MSG_STEPPER_RELEASED                "Stepper frei"
129
+#define MSG_RECTRACT_WIDE                   "Rectract"
127 130
 
128 131
 #endif // LANGUAGE_DE_H

+ 12
- 7
Marlin/language_en.h View File

@@ -1,8 +1,12 @@
1
-#ifndef LANGUAGE_CA_H
2
-#define LANGUAGE_CA_H
3
-
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
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
6 10
 
7 11
 #define WELCOME_MSG                         MACHINE_NAME " ready."
8 12
 #define MSG_SD_INSERTED                     "Card inserted"
@@ -80,7 +84,6 @@
80 84
 #define MSG_YSTEPS                          "Ysteps/mm"
81 85
 #define MSG_ZSTEPS                          "Zsteps/mm"
82 86
 #define MSG_ESTEPS                          "Esteps/mm"
83
-#define MSG_RECTRACT                        "Rectract"
84 87
 #define MSG_TEMPERATURE                     "Temperature"
85 88
 #define MSG_MOTION                          "Motion"
86 89
 #define MSG_CONTRAST                        "LCD contrast"
@@ -122,4 +125,6 @@
122 125
 #define MSG_BABYSTEP_Z                      "Babystep Z"
123 126
 #define MSG_ENDSTOP_ABORT                   "Endstop abort"
124 127
 
125
-#endif // LANGUAGE_CA_H
128
+#define MSG_RECTRACT                        "Rectract"
129
+
130
+#endif // LANGUAGE_EN_H

+ 19
- 14
Marlin/language_es.h View File

@@ -1,9 +1,13 @@
1
+/**
2
+ * Spanish
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
1 8
 #ifndef LANGUAGE_ES_H
2 9
 #define LANGUAGE_ES_H
3 10
 
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
6
-
7 11
 #define WELCOME_MSG                         MACHINE_NAME " lista."
8 12
 #define MSG_SD_INSERTED                     "Tarjeta colocada"
9 13
 #define MSG_SD_REMOVED                      "Tarjeta retirada"
@@ -80,9 +84,9 @@
80 84
 #define MSG_YSTEPS                          "Y pasos/mm"
81 85
 #define MSG_ZSTEPS                          "Z pasos/mm"
82 86
 #define MSG_ESTEPS                          "E pasos/mm"
83
-#define MSG_RECTRACT                        "Retraer"
84 87
 #define MSG_TEMPERATURE                     "Temperatura"
85 88
 #define MSG_MOTION                          "Movimiento"
89
+#define MSG_CONTRAST                        "Contraste"
86 90
 #define MSG_STORE_EPROM                     "Guardar memoria"
87 91
 #define MSG_LOAD_EPROM                      "Cargar memoria"
88 92
 #define MSG_RESTORE_FAILSAFE                "Rest. de emergen."
@@ -113,15 +117,6 @@
113 117
 #define MSG_FILAMENTCHANGE                  "Cambiar filamento"
114 118
 #define MSG_INIT_SDCARD                     "Iniciando tarjeta"
115 119
 #define MSG_CNG_SDCARD                      "Cambiar tarjeta"
116
-#define MSG_RECTRACT_WIDE                   "Retraer"
117
-#define MSG_TEMPERATURE_WIDE                "Temperatura"
118
-#define MSG_TEMPERATURE_RTN                 "Temperatura"
119
-#define MSG_MAIN_WIDE                       "Menu principal"
120
-#define MSG_MOTION_WIDE                     "Movimiento"
121
-#define MSG_PREPARE_ALT                     "Preparar"
122
-#define MSG_CONTROL_ARROW                   "Control"
123
-#define MSG_RETRACT_ARROW                   "Retraer"
124
-#define MSG_STEPPER_RELEASED                "Desacoplada."
125 120
 #define MSG_ZPROBE_OUT                      "sonda Z fuera"
126 121
 #define MSG_POSITION_UNKNOWN                "Reiniciar X/Y y Z"
127 122
 #define MSG_ZPROBE_ZOFFSET                  "Offset Z"
@@ -129,6 +124,16 @@
129 124
 #define MSG_BABYSTEP_Y                      "Babystep Y"
130 125
 #define MSG_BABYSTEP_Z                      "Babystep Z"
131 126
 #define MSG_ENDSTOP_ABORT                   "Endstop abort"
132
-#define MSG_CONTRAST                        "Contraste"
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."
133 138
 
134 139
 #endif // LANGUAGE_ES_H

+ 9
- 4
Marlin/language_eu.h View File

@@ -1,9 +1,13 @@
1
+/**
2
+ * Basque-Euskera
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
1 8
 #ifndef LANGUAGE_EU_H
2 9
 #define LANGUAGE_EU_H
3 10
 
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
6
-
7 11
 #define WELCOME_MSG                         MACHINE_NAME " prest."
8 12
 #define MSG_SD_INSERTED                     "Txartela sartuta"
9 13
 #define MSG_SD_REMOVED                      "Txartela kenduta"
@@ -80,7 +84,6 @@
80 84
 #define MSG_YSTEPS                          "Y pausoak/mm"
81 85
 #define MSG_ZSTEPS                          "Z pausoak/mm"
82 86
 #define MSG_ESTEPS                          "E pausoak/mm"
83
-#define MSG_RECTRACT                        "Atzera eragin"
84 87
 #define MSG_TEMPERATURE                     "Tenperatura"
85 88
 #define MSG_MOTION                          "Mugimendua"
86 89
 #define MSG_CONTRAST                        "LCD kontrastea"
@@ -122,4 +125,6 @@
122 125
 #define MSG_BABYSTEP_Z                      "Babystep Z"
123 126
 #define MSG_ENDSTOP_ABORT                   "Endstop deuseztat"
124 127
 
128
+#define MSG_RECTRACT                        "Atzera eragin"
129
+
125 130
 #endif // LANGUAGE_EU_H

+ 9
- 4
Marlin/language_fi.h View File

@@ -1,9 +1,13 @@
1
+/**
2
+ * Finnish
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
1 8
 #ifndef LANGUAGE_FI_H
2 9
 #define LANGUAGE_FI_H
3 10
 
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
6
-
7 11
 #define WELCOME_MSG                         MACHINE_NAME " valmis."
8 12
 #define MSG_SD_INSERTED                     "Kortti asetettu"
9 13
 #define MSG_SD_REMOVED                      "Kortti poistettu"
@@ -80,7 +84,6 @@
80 84
 #define MSG_YSTEPS                          "Ysteps/mm"
81 85
 #define MSG_ZSTEPS                          "Zsteps/mm"
82 86
 #define MSG_ESTEPS                          "Esteps/mm"
83
-#define MSG_RECTRACT                        "Veda takaisin"
84 87
 #define MSG_TEMPERATURE                     "Lampotila"
85 88
 #define MSG_MOTION                          "Liike"
86 89
 #define MSG_CONTRAST                        "LCD contrast"
@@ -122,4 +125,6 @@
122 125
 #define MSG_BABYSTEP_Z                      "Babystep Z"
123 126
 #define MSG_ENDSTOP_ABORT                   "Endstop abort"
124 127
 
128
+#define MSG_RECTRACT                        "Veda takaisin"
129
+
125 130
 #endif // LANGUAGE_FI_H

+ 125
- 122
Marlin/language_fr.h View File

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

+ 9
- 5
Marlin/language_it.h View File

@@ -1,9 +1,13 @@
1
+/**
2
+ * Italian
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
1 8
 #ifndef LANGUAGE_IT_H
2 9
 #define LANGUAGE_IT_H
3 10
 
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
6
-
7 11
 #define WELCOME_MSG                         MACHINE_NAME " pronto."
8 12
 #define MSG_SD_INSERTED                     "SD Card inserita"
9 13
 #define MSG_SD_REMOVED                      "SD Card rimossa"
@@ -80,7 +84,6 @@
80 84
 #define MSG_YSTEPS                          "Ypassi/mm"
81 85
 #define MSG_ZSTEPS                          "Zpassi/mm"
82 86
 #define MSG_ESTEPS                          "Epassi/mm"
83
-#define MSG_RECTRACT                        "Ritrai"
84 87
 #define MSG_TEMPERATURE                     "Temperatura"
85 88
 #define MSG_MOTION                          "Movimento"
86 89
 #define MSG_CONTRAST                        "LCD contrast"
@@ -121,6 +124,7 @@
121 124
 #define MSG_BABYSTEP_Y                      "Babystep Y"
122 125
 #define MSG_BABYSTEP_Z                      "Babystep Z"
123 126
 #define MSG_ENDSTOP_ABORT                   "Endstop abort"
124
-#define MSG_CONTRAST                        "Contrast"
127
+
128
+#define MSG_RECTRACT                        "Ritrai"
125 129
 
126 130
 #endif // LANGUAGE_IT_H

+ 9
- 4
Marlin/language_nl.h View File

@@ -1,9 +1,13 @@
1
+/**
2
+ * Dutch
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
1 8
 #ifndef LANGUAGE_NL_H
2 9
 #define LANGUAGE_NL_H
3 10
 
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
6
-
7 11
 #define WELCOME_MSG                         MACHINE_NAME " gereed."
8 12
 #define MSG_SD_INSERTED                     "Kaart ingestoken"
9 13
 #define MSG_SD_REMOVED                      "Kaart verwijderd"
@@ -80,7 +84,6 @@
80 84
 #define MSG_YSTEPS                          "Ysteps/mm"
81 85
 #define MSG_ZSTEPS                          "Zsteps/mm"
82 86
 #define MSG_ESTEPS                          "Esteps/mm"
83
-#define MSG_RECTRACT                        "Terugtrekken"
84 87
 #define MSG_TEMPERATURE                     "Temperatuur"
85 88
 #define MSG_MOTION                          "Beweging"
86 89
 #define MSG_CONTRAST                        "LCD contrast"
@@ -122,4 +125,6 @@
122 125
 #define MSG_BABYSTEP_Z                      "Babystap Z"
123 126
 #define MSG_ENDSTOP_ABORT                   "Endstop afbr."
124 127
 
128
+#define MSG_RECTRACT                        "Terugtrekken"
129
+
125 130
 #endif // LANGUAGE_NL_H

+ 125
- 122
Marlin/language_pl.h View File

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

+ 9
- 5
Marlin/language_pt.h View File

@@ -1,9 +1,13 @@
1
+/**
2
+ * Portuguese
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
1 8
 #ifndef LANGUAGE_PT_H
2 9
 #define LANGUAGE_PT_H
3 10
 
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
6
-
7 11
 #define WELCOME_MSG							MACHINE_NAME " pronto."
8 12
 #define MSG_SD_INSERTED                     "Cartao inserido"
9 13
 #define MSG_SD_REMOVED                      "Cartao removido"
@@ -80,7 +84,6 @@
80 84
 #define MSG_YSTEPS                          "Ypasso/mm:"
81 85
 #define MSG_ZSTEPS                          "Zpasso/mm:"
82 86
 #define MSG_ESTEPS                          "Epasso/mm:"
83
-#define MSG_RECTRACT                        "Retrair"
84 87
 #define MSG_TEMPERATURE                     "Temperatura"
85 88
 #define MSG_MOTION                          "Movimento"
86 89
 #define MSG_CONTRAST                        "Contrast"
@@ -122,10 +125,11 @@
122 125
 #define MSG_BABYSTEP_Z                      "Babystep Z"
123 126
 #define MSG_ENDSTOP_ABORT                   "Endstop abort"
124 127
 
128
+#define MSG_RECTRACT                        "Retrair"
129
+#define MSG_MAIN_WIDE                       "Menu Principal  \003"
125 130
 #define MSG_PREPARE_ALT                     "Preparar \003"
126 131
 #define MSG_CONTROL_ARROW                   "Controle \x7E"
127 132
 #define MSG_RETRACT_ARROW                   "Retrair \x7E"
128
-#define MSG_MAIN_WIDE                       "Menu Principal  \003"
129 133
 #define MSG_STEPPER_RELEASED                "Lancado."
130 134
 
131 135
 #endif // LANGUAGE_PT_H

+ 9
- 5
Marlin/language_ru.h View File

@@ -1,9 +1,13 @@
1
+/**
2
+ * Russian
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
1 8
 #ifndef LANGUAGE_RU_H
2 9
 #define LANGUAGE_RU_H
3 10
 
4
-// LCD Menu Messages
5
-// Please note these are limited to 17 characters!
6
-
7 11
 #define WELCOME_MSG                         MACHINE_NAME "Готов."
8 12
 #define MSG_SD_INSERTED                     "Карта вставлена"
9 13
 #define MSG_SD_REMOVED                      "Карта извлечена"
@@ -80,7 +84,6 @@
80 84
 #define MSG_YSTEPS                          "Y шаг/mm:"
81 85
 #define MSG_ZSTEPS                          "Z шаг/mm:"
82 86
 #define MSG_ESTEPS                          "E шаг/mm:"
83
-#define MSG_RECTRACT                        "Откат подачи    \x7E"
84 87
 #define MSG_TEMPERATURE                     "Температура     \x7E"
85 88
 #define MSG_MOTION                          "Скорости        \x7E"
86 89
 #define MSG_CONTRAST                        "LCD contrast"
@@ -121,6 +124,7 @@
121 124
 #define MSG_BABYSTEP_Y                      "Babystep Y"
122 125
 #define MSG_BABYSTEP_Z                      "Babystep Z"
123 126
 #define MSG_ENDSTOP_ABORT                   "Endstop abort"
124
-#define MSG_CONTRAST                        "Contrast"
127
+
128
+#define MSG_RECTRACT                        "Откат подачи    \x7E"
125 129
 
126 130
 #endif // LANGUAGE_RU_H

Loading…
Cancel
Save