Browse Source

Introduce - clean - prepae language files

AnHardt 9 years ago
parent
commit
2d5134b0ed

+ 17
- 76
Marlin/language.h View File

@@ -13,20 +13,23 @@
13 13
 //   ==> ALSO TRY ALL AVAILABLE LANGUAGE OPTIONS
14 14
 
15 15
 // Languages
16
-// en    English
17
-// pl    Polish
18
-// fr    French
19
-// de    German
20
-// es    Spanish
21
-// ru    Russian
22
-// it    Italian
23
-// pt    Portuguese
24
-// pt-br Portuguese (Brazil)
25
-// fi    Finnish
26
-// an    Aragonese
27
-// nl    Dutch
28
-// ca    Catalan
29
-// eu    Basque-Euskera
16
+// en       English
17
+// pl       Polish
18
+// fr       French
19
+// de       German
20
+// es       Spanish
21
+// ru       Russian
22
+// it       Italian
23
+// pt       Portuguese
24
+// pt-br    Portuguese (Brazil)
25
+// fi       Finnish
26
+// an       Aragonese
27
+// nl       Dutch
28
+// ca       Catalan
29
+// eu       Basque-Euskera
30
+// kana     Japanese
31
+// kana_utf Japanese
32
+// kanji    Japanese
30 33
 
31 34
 #ifndef LANGUAGE_INCLUDE
32 35
   // pick your language from the list above
@@ -198,68 +201,6 @@
198 201
 #define MSG_MAXTEMP_BED_OFF                 "Heated bed" MSG_SWITCHED_OFF_MAX
199 202
 
200 203
 // LCD Menu Messages
201
-
202
-// Add your own character. Reference: https://github.com/MarlinFirmware/Marlin/pull/1434 photos
203
-//                                and https://www.sparkfun.com/datasheets/LCD/HD44780.pdf page 17-18
204
-#ifdef DOGLCD
205
-  #define STR_Ae "\304"               // 'Ä' U8glib
206
-  #define STR_ae "\344"               // 'ä'
207
-  #define STR_Oe "\326"               // 'Ö'
208
-  #define STR_oe STR_Oe               // 'ö'
209
-  #define STR_Ue "\334"               // 'Ü'
210
-  #define STR_ue STR_Ue               // 'ü'
211
-  #define STR_sz "\337"               // 'ß'
212
-  #define STR_h2 "\262"               // '²'
213
-  #define STR_h3 "\263"               // '³'
214
-  #define STR_Deg "\260"              // '°'
215
-  #define STR_THERMOMETER "\377"
216
-#else
217
-  #ifdef DISPLAY_CHARSET_HD44780_JAPAN // HD44780 ROM Code: A00 (Japan)
218
-    #define STR_ae "\xe1"
219
-    #define STR_Ae STR_ae
220
-    #define STR_oe "\357"
221
-    #define STR_Oe STR_oe
222
-    #define STR_ue "\365"
223
-    #define STR_Ue STR_ue
224
-    #define STR_sz "\342"
225
-    #define STR_h2 "2"
226
-    #define STR_h3 "3"
227
-    #define STR_Deg "\271"
228
-    #define STR_THERMOMETER "\002"
229
-  #endif
230
-  #ifdef DISPLAY_CHARSET_HD44780_WESTERN // HD44780 ROM Code: A02 (Western)
231
-    #define STR_Ae "\216"
232
-    #define STR_ae "\204"
233
-    #define STR_Oe "\211"
234
-    #define STR_oe "\204"
235
-    #define STR_Ue "\212"
236
-    #define STR_ue "\201"
237
-    #define STR_sz "\160"
238
-    #define STR_h2 "\262"
239
-    #define STR_h3 "\263"
240
-    #define STR_Deg "\337"
241
-    #define STR_THERMOMETER "\002"
242
-  #endif
243
-#endif
244
-/*
245
-#define TESTSTRING000 "\000\001\002\003\004\005\006\007\010\011\012\013\014\015\016\017"
246
-#define TESTSTRING020 "\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037"
247
-#define TESTSTRING040 "\040\041\042\043\044\045\046\047\050\051\052\053\054\055\056\057"
248
-#define TESTSTRING060 "\060\061\062\063\064\065\066\067\070\071\072\073\074\075\076\077"
249
-#define TESTSTRING100 "\100\101\102\103\104\105\106\107\110\111\112\113\114\115\116\117"
250
-#define TESTSTRING120 "\120\121\122\123\124\125\126\127\130\131\132\133\134\135\136\137"
251
-#define TESTSTRING140 "\140\141\142\143\144\145\146\147\150\151\152\153\154\155\156\157"
252
-#define TESTSTRING160 "\160\161\162\163\164\165\166\167\170\171\172\173\174\175\176\177"
253
-#define TESTSTRING200 "\200\201\202\203\204\205\206\207\210\211\212\213\214\215\216\217"
254
-#define TESTSTRING220 "\220\221\222\223\224\225\226\227\230\231\232\233\234\235\236\237"
255
-#define TESTSTRING240 "\240\241\242\243\244\245\246\247\250\251\252\253\254\255\256\257"
256
-#define TESTSTRING260 "\260\261\262\263\264\265\266\267\270\271\272\273\274\275\276\277"
257
-#define TESTSTRING300 "\300\301\302\303\304\305\306\307\310\311\312\313\314\315\316\317"
258
-#define TESTSTRING320 "\320\321\322\323\324\325\326\327\330\331\332\333\334\335\336\337"
259
-#define TESTSTRING340 "\340\341\342\343\344\345\346\347\350\351\352\353\354\355\356\357"
260
-#define TESTSTRING360 "\360\361\362\363\364\365\366\367\370\371\372\373\374\375\376\377"
261
-*/
262
-
263 204
 #include LANGUAGE_INCLUDE
264 205
 #include "language_en.h"
265 206
 

+ 5
- 3
Marlin/language_an.h View File

@@ -8,6 +8,8 @@
8 8
 #ifndef LANGUAGE_AN_H
9 9
 #define LANGUAGE_AN_H
10 10
 
11
+#define MAPPER_NON
12
+
11 13
 #define WELCOME_MSG                         MACHINE_NAME " parada."
12 14
 #define MSG_SD_INSERTED                     "Tarcheta colocada"
13 15
 #define MSG_SD_REMOVED                      "Tarcheta retirada"
@@ -46,9 +48,9 @@
46 48
 #define MSG_FAN_SPEED                       "Ixoriador"
47 49
 #define MSG_FLOW                            "Fluxo"
48 50
 #define MSG_CONTROL                         "Control"
49
-#define MSG_MIN                             "\002 Min"
50
-#define MSG_MAX                             "\002 Max"
51
-#define MSG_FACTOR                          "\002 Fact"
51
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
52
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
53
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Fact"
52 54
 #define MSG_AUTOTEMP                        "Autotemp"
53 55
 #define MSG_ON                              "On"
54 56
 #define MSG_OFF                             "Off"

+ 7
- 4
Marlin/language_ca.h View File

@@ -8,6 +8,9 @@
8 8
 #ifndef LANGUAGE_CA_H
9 9
 #define LANGUAGE_CA_H
10 10
 
11
+//#define MAPPER_NON 
12
+#define MAPPER_C2C3  // because of "ó"
13
+
11 14
 #define WELCOME_MSG                         MACHINE_NAME " preparada."
12 15
 #define MSG_SD_INSERTED                     "SD detectada."
13 16
 #define MSG_SD_REMOVED                      "SD expulsada."
@@ -46,9 +49,9 @@
46 49
 #define MSG_FAN_SPEED                       "Vel. Ventilador"
47 50
 #define MSG_FLOW                            "Fluxe"
48 51
 #define MSG_CONTROL                         "Control"
49
-#define MSG_MIN                             " \002 Min"
50
-#define MSG_MAX                             " \002 Max"
51
-#define MSG_FACTOR                          " \002 Fact"
52
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
53
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
54
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Fact"
52 55
 #define MSG_AUTOTEMP                        "Autotemp"
53 56
 #define MSG_ON                              "On "
54 57
 #define MSG_OFF                             "Off"
@@ -76,7 +79,7 @@
76 79
 #define MSG_TEMPERATURE                     "Temperatura"
77 80
 #define MSG_MOTION                          "Moviment"
78 81
 #define MSG_VOLUMETRIC                      "Filament"
79
-#define MSG_VOLUMETRIC_ENABLED		        "E in mm3"
82
+#define MSG_VOLUMETRIC_ENABLED              "E in mm3"
80 83
 #define MSG_FILAMENT_SIZE_EXTRUDER_0        "Fil. Dia. 1"
81 84
 #define MSG_FILAMENT_SIZE_EXTRUDER_1        "Fil. Dia. 2"
82 85
 #define MSG_FILAMENT_SIZE_EXTRUDER_2        "Fil. Dia. 3"

+ 16
- 14
Marlin/language_de.h View File

@@ -8,26 +8,28 @@
8 8
 #ifndef LANGUAGE_DE_H
9 9
 #define LANGUAGE_DE_H
10 10
 
11
+#define MAPPER_C2C3
12
+
11 13
 #define WELCOME_MSG                         MACHINE_NAME " Bereit."
12 14
 #define MSG_SD_INSERTED                     "SDKarte erkannt."
13 15
 #define MSG_SD_REMOVED                      "SDKarte entfernt."
14
-#define MSG_MAIN                            "Hauptmen" STR_ue
16
+#define MSG_MAIN                            "Hauptmenü"
15 17
 #define MSG_AUTOSTART                       "Autostart"
16 18
 #define MSG_DISABLE_STEPPERS                "Motoren Aus" // M84
17 19
 #define MSG_AUTO_HOME                       "Home" // G28
18 20
 #define MSG_SET_HOME_OFFSETS                "Setze Home hier"
19 21
 #define MSG_SET_ORIGIN                      "Setze Null hier" //"G92 X0 Y0 Z0" commented out in ultralcd.cpp
20
-#define MSG_PREHEAT_PLA                     "Vorw" STR_ae "rmen PLA"
21
-#define MSG_PREHEAT_PLA_N                   "Vorw" STR_ae "rmen PLA "
22
+#define MSG_PREHEAT_PLA                     "Vorwärmen PLA"
23
+#define MSG_PREHEAT_PLA_N                   "Vorwärmen PLA "
22 24
 #define MSG_PREHEAT_PLA_ALL                 "Vorw. PLA Alle"
23 25
 #define MSG_PREHEAT_PLA_BEDONLY             "Vorw. PLA Bett"
24
-#define MSG_PREHEAT_PLA_SETTINGS            "Vorw" STR_ae "rm. PLA Ein."
25
-#define MSG_PREHEAT_ABS                     "Vorw" STR_ae "rmen ABS"
26
-#define MSG_PREHEAT_ABS_N                   "Vorw" STR_ae "rmen ABS "
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Vorwärm. PLA Ein."
27
+#define MSG_PREHEAT_ABS                     "Vorwärmen ABS"
28
+#define MSG_PREHEAT_ABS_N                   "Vorwärmen ABS "
27 29
 #define MSG_PREHEAT_ABS_ALL                 "Vorw. ABS Alle"
28 30
 #define MSG_PREHEAT_ABS_BEDONLY             "Vorw. ABS Bett"
29
-#define MSG_PREHEAT_ABS_SETTINGS            "Vorw" STR_ae "rm. ABS Ein."
30
-#define MSG_COOLDOWN                        "Abk" STR_ue "hlen"
31
+#define MSG_PREHEAT_ABS_SETTINGS            "Vorwärm. ABS Ein."
32
+#define MSG_COOLDOWN                        "Abkühlen"
31 33
 #define MSG_SWITCH_PS_ON                    "Netzteil Ein"
32 34
 #define MSG_SWITCH_PS_OFF                   "Netzteil Aus"
33 35
 #define MSG_RETRACT                         "Retract"
@@ -40,14 +42,14 @@
40 42
 #define MSG_MOVE_1MM                        " 1.0 mm"
41 43
 #define MSG_MOVE_10MM                       "10.0 mm"
42 44
 #define MSG_SPEED                           "Geschw."
43
-#define MSG_NOZZLE                          "D" STR_ue "se"
45
+#define MSG_NOZZLE                          "Düse"
44 46
 #define MSG_BED                             "Bett"
45
-#define MSG_FAN_SPEED                       "L" STR_ue "ftergeschw."
47
+#define MSG_FAN_SPEED                       "Lüftergeschw."
46 48
 #define MSG_FLOW                            "Fluss"
47 49
 #define MSG_CONTROL                         "Einstellungen"
48
-#define MSG_MIN                             STR_THERMOMETER " Min"
49
-#define MSG_MAX                             STR_THERMOMETER " Max"
50
-#define MSG_FACTOR                          STR_THERMOMETER " Faktor"
50
+#define MSG_MIN                             LCD_STR_THERMOMETER " " Min"
51
+#define MSG_MAX                             LCD_STR_THERMOMETER " " Max"
52
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " " Faktor"
51 53
 #define MSG_AUTOTEMP                        "AutoTemp"
52 54
 #define MSG_ON                              "Ein"
53 55
 #define MSG_OFF                             "Aus"
@@ -75,7 +77,7 @@
75 77
 #define MSG_TEMPERATURE                     "Temperatur"
76 78
 #define MSG_MOTION                          "Bewegung"
77 79
 #define MSG_VOLUMETRIC                      "Filament"
78
-#define MSG_VOLUMETRIC_ENABLED		          "E in mm" STR_h3
80
+#define MSG_VOLUMETRIC_ENABLED              "E in mm³"
79 81
 #define MSG_FILAMENT_SIZE_EXTRUDER_0        "Filament D 1"
80 82
 #define MSG_FILAMENT_SIZE_EXTRUDER_1        "Filament D 2"
81 83
 #define MSG_FILAMENT_SIZE_EXTRUDER_2        "Filament D 3"

+ 8
- 4
Marlin/language_en.h View File

@@ -8,6 +8,10 @@
8 8
 #ifndef LANGUAGE_EN_H
9 9
 #define LANGUAGE_EN_H
10 10
 
11
+#if !(defined(MAPPER_NON) || defined(MAPPER_C2C3) || defined(MAPPER_D0D1_MOD) || defined(MAPPER_E382E383))
12
+  #define MAPPER_NON         // For direct asci codes
13
+#endif
14
+
11 15
 #ifndef WELCOME_MSG
12 16
 #define WELCOME_MSG                         MACHINE_NAME " ready."
13 17
 #endif
@@ -156,13 +160,13 @@
156 160
 #define MSG_CONTROL                         "Control"
157 161
 #endif
158 162
 #ifndef MSG_MIN
159
-#define MSG_MIN                             " " STR_THERMOMETER " Min"
163
+#define MSG_MIN                             " "LCD_STR_THERMOMETER " Min"
160 164
 #endif
161 165
 #ifndef MSG_MAX
162
-#define MSG_MAX                             " " STR_THERMOMETER " Max"
166
+#define MSG_MAX                             " "LCD_STR_THERMOMETER " Max"
163 167
 #endif
164 168
 #ifndef MSG_FACTOR
165
-#define MSG_FACTOR                          " " STR_THERMOMETER " Fact"
169
+#define MSG_FACTOR                          " "LCD_STR_THERMOMETER " Fact"
166 170
 #endif
167 171
 #ifndef MSG_AUTOTEMP
168 172
 #define MSG_AUTOTEMP                        "Autotemp"
@@ -255,7 +259,7 @@
255 259
 #define MSG_VOLUMETRIC                      "Filament"
256 260
 #endif
257 261
 #ifndef MSG_VOLUMETRIC_ENABLED
258
-#define MSG_VOLUMETRIC_ENABLED              "E in mm" STR_h3
262
+#define MSG_VOLUMETRIC_ENABLED              "E in mm3"
259 263
 #endif
260 264
 #ifndef MSG_FILAMENT_SIZE_EXTRUDER_0
261 265
 #define MSG_FILAMENT_SIZE_EXTRUDER_0        "Fil. Dia. 1"

+ 5
- 3
Marlin/language_es.h View File

@@ -8,6 +8,8 @@
8 8
 #ifndef LANGUAGE_ES_H
9 9
 #define LANGUAGE_ES_H
10 10
 
11
+#define MAPPER_NON
12
+
11 13
 #define WELCOME_MSG                         MACHINE_NAME " lista."
12 14
 #define MSG_SD_INSERTED                     "Tarjeta colocada"
13 15
 #define MSG_SD_REMOVED                      "Tarjeta retirada"
@@ -46,9 +48,9 @@
46 48
 #define MSG_FAN_SPEED                       "Ventilador"
47 49
 #define MSG_FLOW                            "Flujo"
48 50
 #define MSG_CONTROL                         "Control"
49
-#define MSG_MIN                             "\002 Min"
50
-#define MSG_MAX                             "\002 Max"
51
-#define MSG_FACTOR                          "\002 Fact"
51
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
52
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
53
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Fact"
52 54
 #define MSG_AUTOTEMP                        "Autotemp"
53 55
 #define MSG_ON                              "On"
54 56
 #define MSG_OFF                             "Off"

+ 5
- 3
Marlin/language_eu.h View File

@@ -8,6 +8,8 @@
8 8
 #ifndef LANGUAGE_EU_H
9 9
 #define LANGUAGE_EU_H
10 10
 
11
+#define MAPPER_NON
12
+
11 13
 #define WELCOME_MSG                         MACHINE_NAME " prest."
12 14
 #define MSG_SD_INSERTED                     "Txartela sartuta"
13 15
 #define MSG_SD_REMOVED                      "Txartela kenduta"
@@ -46,9 +48,9 @@
46 48
 #define MSG_FAN_SPEED                       "Haizagailua"
47 49
 #define MSG_FLOW                            "Fluxua"
48 50
 #define MSG_CONTROL                         "Kontrola"
49
-#define MSG_MIN                             " \002 Min"
50
-#define MSG_MAX                             " \002 Max"
51
-#define MSG_FACTOR                          " \002 Faktorea"
51
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
52
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
53
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Faktorea"
52 54
 #define MSG_AUTOTEMP                        "Auto tenperatura"
53 55
 #define MSG_ON                              "On "
54 56
 #define MSG_OFF                             "Off"

+ 27
- 25
Marlin/language_fi.h View File

@@ -8,6 +8,8 @@
8 8
 #ifndef LANGUAGE_FI_H
9 9
 #define LANGUAGE_FI_H
10 10
 
11
+#define MAPPER_C2C3
12
+
11 13
 #define WELCOME_MSG                         MACHINE_NAME " valmis."
12 14
 #define MSG_SD_INSERTED                     "Kortti asetettu"
13 15
 #define MSG_SD_REMOVED                      "Kortti poistettu"
@@ -17,21 +19,21 @@
17 19
 #define MSG_AUTO_HOME                       "Aja referenssiin"
18 20
 #define MSG_SET_HOME_OFFSETS                "Set home offsets"
19 21
 #define MSG_SET_ORIGIN                      "Aseta origo"
20
-#define MSG_PREHEAT_PLA                     "Esil" STR_ae "mmit" STR_ae " PLA"
21
-#define MSG_PREHEAT_PLA_N                   "Esil" STR_ae "mmit" STR_ae " PLA "
22
-#define MSG_PREHEAT_PLA_ALL                 "Esil" STR_ae ". PLA Kaikki"
23
-#define MSG_PREHEAT_PLA_BEDONLY             "Esil" STR_ae ". PLA Alusta"
24
-#define MSG_PREHEAT_PLA_SETTINGS            "Esil" STR_ae "mm. PLA konf"
25
-#define MSG_PREHEAT_ABS                     "Esil" STR_ae "mmit" STR_ae " ABS"
26
-#define MSG_PREHEAT_ABS_N                   "Esil" STR_ae "mmit" STR_ae " ABS "
27
-#define MSG_PREHEAT_ABS_ALL                 "Esil" STR_ae ". ABS Kaikki"
28
-#define MSG_PREHEAT_ABS_BEDONLY             "Esil" STR_ae ". ABS Alusta"
29
-#define MSG_PREHEAT_ABS_SETTINGS            "Esil" STR_ae "mm. ABS konf"
30
-#define MSG_COOLDOWN                        "J" STR_ae "" STR_ae "hdyt" STR_ae ""
31
-#define MSG_SWITCH_PS_ON                    "Virta p" STR_ae "" STR_ae "lle"
22
+#define MSG_PREHEAT_PLA                     "Esilämmitä PLA"
23
+#define MSG_PREHEAT_PLA_N                   "Esilämmitä PLA "
24
+#define MSG_PREHEAT_PLA_ALL                 "Esilä. PLA Kaikki"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Esilä. PLA Alusta"
26
+#define MSG_PREHEAT_PLA_SETTINGS            "Esilämm. PLA konf"
27
+#define MSG_PREHEAT_ABS                     "Esilämmitä ABS"
28
+#define MSG_PREHEAT_ABS_N                   "Esilämmitä ABS "
29
+#define MSG_PREHEAT_ABS_ALL                 "Esilä. ABS Kaikki"
30
+#define MSG_PREHEAT_ABS_BEDONLY             "Esilä. ABS Alusta"
31
+#define MSG_PREHEAT_ABS_SETTINGS            "Esilämm. ABS konf"
32
+#define MSG_COOLDOWN                        "Jäähdytä"
33
+#define MSG_SWITCH_PS_ON                    "Virta päälle"
32 34
 #define MSG_SWITCH_PS_OFF                   "Virta pois"
33 35
 #define MSG_EXTRUDE                         "Pursota"
34
-#define MSG_RETRACT                         "Ved" STR_ae " takaisin"
36
+#define MSG_RETRACT                         "Vedä takaisin"
35 37
 #define MSG_MOVE_AXIS                       "Liikuta akseleita"
36 38
 #define MSG_MOVE_X                          "Liikuta X"
37 39
 #define MSG_MOVE_Y                          "Liikuta Y"
@@ -46,9 +48,9 @@
46 48
 #define MSG_FAN_SPEED                       "Tuul. nopeus"
47 49
 #define MSG_FLOW                            "Virtaus"
48 50
 #define MSG_CONTROL                         "Kontrolli"
49
-#define MSG_MIN                             STR_THERMOMETER " Min"
50
-#define MSG_MAX                             STR_THERMOMETER " Max"
51
-#define MSG_FACTOR                          STR_THERMOMETER " Kerr"
51
+#define MSG_MIN                            LCD_STR_THERMOMETER "" Min"
52
+#define MSG_MAX                            LCD_STR_THERMOMETER "" Max"
53
+#define MSG_FACTOR                         LCD_STR_THERMOMETER "" Kerr"
52 54
 #define MSG_AUTOTEMP                        "Autotemp"
53 55
 #define MSG_ON                              "On "
54 56
 #define MSG_OFF                             "Off"
@@ -73,10 +75,10 @@
73 75
 #define MSG_YSTEPS                          "Ysteps/mm"
74 76
 #define MSG_ZSTEPS                          "Zsteps/mm"
75 77
 #define MSG_ESTEPS                          "Esteps/mm"
76
-#define MSG_TEMPERATURE                     "L" STR_ae "mp" STR_oe "tila"
78
+#define MSG_TEMPERATURE                     "Lämpötila"
77 79
 #define MSG_MOTION                          "Liike"
78 80
 #define MSG_VOLUMETRIC                      "Filament"
79
-#define MSG_VOLUMETRIC_ENABLED              "E in mm3"
81
+#define MSG_VOLUMETRIC_ENABLED              "E in mm³"
80 82
 #define MSG_FILAMENT_SIZE_EXTRUDER_0        "Fil. Dia. 1"
81 83
 #define MSG_FILAMENT_SIZE_EXTRUDER_1        "Fil. Dia. 2"
82 84
 #define MSG_FILAMENT_SIZE_EXTRUDER_2        "Fil. Dia. 3"
@@ -84,13 +86,13 @@
84 86
 #define MSG_STORE_EPROM                     "Tallenna muistiin"
85 87
 #define MSG_LOAD_EPROM                      "Lataa muistista"
86 88
 #define MSG_RESTORE_FAILSAFE                "Palauta oletus"
87
-#define MSG_REFRESH                         "P" STR_ae "ivit" STR_ae ""
89
+#define MSG_REFRESH                         "Päivitä"
88 90
 #define MSG_WATCH                           "Seuraa"
89 91
 #define MSG_PREPARE                         "Valmistele"
90
-#define MSG_TUNE                            "S" STR_ae "" STR_ae "d" STR_ae ""
91
-#define MSG_PAUSE_PRINT                     "Keskeyt" STR_ae " tulostus"
92
+#define MSG_TUNE                            "Säädä"
93
+#define MSG_PAUSE_PRINT                     "Keskeytä tulostus"
92 94
 #define MSG_RESUME_PRINT                    "Jatka tulostusta"
93
-#define MSG_STOP_PRINT                      "Pys" STR_ae "yt" STR_ae " tulostus"
95
+#define MSG_STOP_PRINT                      "Pysäytä tulostus"
94 96
 #define MSG_CARD_MENU                       "Korttivalikko"
95 97
 #define MSG_NO_CARD                         "Ei korttia"
96 98
 #define MSG_DWELL                           "Nukkumassa..."
@@ -100,9 +102,9 @@
100 102
 #define MSG_NO_MOVE                         "Ei liiketta."
101 103
 #define MSG_KILLED                          "KILLED. "
102 104
 #define MSG_STOPPED                         "STOPPED. "
103
-#define MSG_CONTROL_RETRACT                 "Ved" STR_ae " mm"
104
-#define MSG_CONTROL_RETRACT_SWAP            "Va. Ved" STR_ae " mm"
105
-#define MSG_CONTROL_RETRACTF                "Ved" STR_ae " V"
105
+#define MSG_CONTROL_RETRACT                 "Vedä mm"
106
+#define MSG_CONTROL_RETRACT_SWAP            "Va. Vedä mm"
107
+#define MSG_CONTROL_RETRACTF                "Vedä V"
106 108
 #define MSG_CONTROL_RETRACT_ZLIFT           "Z mm"
107 109
 #define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
108 110
 #define MSG_CONTROL_RETRACT_RECOVER_SWAP    "Va. UnRet +mm"

+ 6
- 4
Marlin/language_fr.h View File

@@ -8,6 +8,8 @@
8 8
 #ifndef LANGUAGE_FR_H
9 9
 #define LANGUAGE_FR_H
10 10
 
11
+#define MAPPER_NON
12
+
11 13
 #define WELCOME_MSG                         MACHINE_NAME " prete."
12 14
 #define MSG_SD_INSERTED                     "Carte inseree"
13 15
 #define MSG_SD_REMOVED                      "Carte retiree"
@@ -46,9 +48,9 @@
46 48
 #define MSG_FAN_SPEED                       "Vite. ventilateur"
47 49
 #define MSG_FLOW                            "Flux"
48 50
 #define MSG_CONTROL                         "Controler"
49
-#define MSG_MIN                             " \002 Min"
50
-#define MSG_MAX                             " \002 Max"
51
-#define MSG_FACTOR                          " \002 Facteur"
51
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
52
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
53
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Facteur"
52 54
 #define MSG_AUTOTEMP                        "Temp. Auto."
53 55
 #define MSG_ON                              "Marche "
54 56
 #define MSG_OFF                             "Arret"
@@ -76,7 +78,7 @@
76 78
 #define MSG_TEMPERATURE                     "Temperature"
77 79
 #define MSG_MOTION                          "Mouvement"
78 80
 #define MSG_VOLUMETRIC                      "Filament"
79
-#define MSG_VOLUMETRIC_ENABLED		        "E in mm3"
81
+#define MSG_VOLUMETRIC_ENABLED              "E in mm3"
80 82
 #define MSG_FILAMENT_SIZE_EXTRUDER_0        "Fil. Dia. 1"
81 83
 #define MSG_FILAMENT_SIZE_EXTRUDER_1        "Fil. Dia. 2"
82 84
 #define MSG_FILAMENT_SIZE_EXTRUDER_2        "Fil. Dia. 3"

+ 5
- 3
Marlin/language_it.h View File

@@ -8,6 +8,8 @@
8 8
 #ifndef LANGUAGE_IT_H
9 9
 #define LANGUAGE_IT_H
10 10
 
11
+#define MAPPER_NON
12
+
11 13
 #define WELCOME_MSG                         MACHINE_NAME " pronto."
12 14
 #define MSG_SD_INSERTED                     "SD Card inserita"
13 15
 #define MSG_SD_REMOVED                      "SD Card rimossa"
@@ -46,9 +48,9 @@
46 48
 #define MSG_FAN_SPEED                       "Ventola"
47 49
 #define MSG_FLOW                            "Flusso"
48 50
 #define MSG_CONTROL                         "Controllo"
49
-#define MSG_MIN                             " \002 Min"
50
-#define MSG_MAX                             " \002 Max"
51
-#define MSG_FACTOR                          " \002 Fact"
51
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
52
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
53
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Fact"
52 54
 #define MSG_AUTOTEMP                        "Autotemp"
53 55
 #define MSG_ON                              "ON "
54 56
 #define MSG_OFF                             "OFF"

+ 141
- 0
Marlin/language_kana.h View File

@@ -0,0 +1,141 @@
1
+/**
2
+ * Japanese (Kana)
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+ 
9
+#ifndef LANGUAGE_KANA_H
10
+#define LANGUAGE_KANA_H
11
+
12
+#define MAPPER_NON
13
+
14
+// 片仮名表示定義
15
+#define WELCOME_MSG                         MACHINE_NAME " ready."
16
+#define MSG_SD_INSERTED                     "\xb6\xb0\xc4\xde\x20\xbf\xb3\xc6\xad\xb3\xbb\xda\xcf\xbc\xc0" // "Card inserted"
17
+#define MSG_SD_REMOVED                      "\xb6\xb0\xc4\xde\xb6xde\xb1\xd8\xcf\xbe\xdd"                  // "Card removed"
18
+#define MSG_MAIN                            "\xd2\xb2\xdd"                                                 // "Main"
19
+#define MSG_AUTOSTART                       "\xbc\xde\xc4\xde\xb3\xb6\xb2\xbc"                             // "Autostart"
20
+#define MSG_DISABLE_STEPPERS                "\xd3\xb0\xc0\xb0\xc3\xde\xdd\xb9\xde\xdd\x20\xb5\xcc"         // "Disable steppers"
21
+#define MSG_AUTO_HOME                       "\xb9\xde\xdd\xc3\xdd\xc6\xb2\xc4\xde\xb3"                     // "Auto home"
22
+#define MSG_SET_HOME_OFFSETS                "\xb7\xbc\xde\xad\xdd\xb5\xcc\xbe\xaf\xc4\xbe\xaf\xc3\xb2"     // "Set home offsets"
23
+#define MSG_SET_ORIGIN                      "\xb7\xbc\xde\xad\xdd\xbe\xaf\xc4"                             // "Set origin"
24
+#define MSG_PREHEAT_PLA                     "PLA \xd6\xc8\xc2"                                             // "Preheat PLA"
25
+#define MSG_PREHEAT_PLA_N                   MSG_PREHEAT_PLA " "
26
+#define MSG_PREHEAT_PLA_ALL                 MSG_PREHEAT_PLA " \xbd\xcd\xde\xc3"                            // " All"
27
+#define MSG_PREHEAT_PLA_BEDONLY             MSG_PREHEAT_PLA " \xcd\xde\xaf\xc4\xde"                        // "Bed"
28
+#define MSG_PREHEAT_PLA_SETTINGS            MSG_PREHEAT_PLA " \xbe\xaf\xc3\xb2"                            // "conf"
29
+#define MSG_PREHEAT_ABS                     "ABS \xd6\xc8\xc2"                                             // "Preheat ABS"
30
+#define MSG_PREHEAT_ABS_N                   MSG_PREHEAT_ABS " "
31
+#define MSG_PREHEAT_ABS_ALL                 MSG_PREHEAT_ABS " \xbd\xcd\xde\xc3"                            // " All"
32
+#define MSG_PREHEAT_ABS_BEDONLY             MSG_PREHEAT_ABS " \xcd\xde\xaf\xc4\xde"                        // "Bed"
33
+#define MSG_PREHEAT_ABS_SETTINGS            MSG_PREHEAT_ABS " \xbe\xaf\xc3\xb2"                            // "conf"
34
+#define MSG_COOLDOWN                        "\xb6\xc8\xc2\xc3\xb2\xbc"                                     // "Cooldown"
35
+#define MSG_SWITCH_PS_ON                    "\xc3\xde\xdd\xb9\xdd\xde\x20\xb5\xdd"                         // "Switch power on"
36
+#define MSG_SWITCH_PS_OFF                   "\xc3\xde\xdd\xb9\xdd\xde\x20\xb5\xcc"                         // "Switch power off"
37
+#define MSG_EXTRUDE                         "\xb5\xbc\xc0\xde\xbc"                                         // "Extrude"
38
+#define MSG_RETRACT                         "\xd8\xc4\xd7\xb8\xc4"                                         // "Retract"
39
+#define MSG_MOVE_AXIS                       "\xbc\xde\xb8\xb2\xc4\xde\xb3"                                 // "Move axis"
40
+#define MSG_MOVE_X                          "X\xbc\xde\xb8\x20\xb2\xc4\xde\xb3"                            // "Move X"
41
+#define MSG_MOVE_Y                          "Y\xbc\xde\xb8\x20\xb2\xc4\xde\xb3"                            // "Move Y"
42
+#define MSG_MOVE_Z                          "Z\xbc\xde\xb8\x20\xb2\xc4\xde\xb3"                            // "Move Z"
43
+#define MSG_MOVE_E                          "\xb4\xb8\xbd\xc4\xd9\xb0\xc0\xde\xb0"                         // "Extruder"
44
+#define MSG_MOVE_01MM                       "0.1mm \xb2\xc4\xde\xb3"                                       // "Move 0.1mm"
45
+#define MSG_MOVE_1MM                        "  1mm \xb2\xc4\xde\xb3"                                       // "Move 1mm"
46
+#define MSG_MOVE_10MM                       " 10mm \xb2\xc4\xde\xb3"                                       // "Move 10mm"
47
+#define MSG_SPEED                           "\xbd\xcb\xdf\xb0\xc4\xde"                                     // "Speed"
48
+#define MSG_NOZZLE                          "\xc9\xbd\xde\xd9"                                             // "Nozzle"
49
+#define MSG_BED                             "\xcd\xde\xaf\xc4\xde"                                         // "Bed"
50
+#define MSG_FAN_SPEED                       "\xcc\xa7\xdd\xbf\xb8\xc4\xde"                                 // "Fan speed"
51
+#define MSG_FLOW                            "\xb5\xb8\xd8\xd8\xae\xb3"                                     // "Flow"
52
+#define MSG_CONTROL                         "\xba\xdd\xc4\xdb\xb0\xd9"                                     // "Control"
53
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
54
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
55
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Fact"
56
+#define MSG_AUTOTEMP                        "\xbc\xde\xc4\xde\xb3\xb5\xdd\xc4\xde"                         // "Autotemp"
57
+#define MSG_ON                              "On "
58
+#define MSG_OFF                             "Off"
59
+#define MSG_PID_P                           "PID-P"
60
+#define MSG_PID_I                           "PID-I"
61
+#define MSG_PID_D                           "PID-D"
62
+#define MSG_PID_C                           "PID-C"
63
+#define MSG_ACC                             "\xb6\xbf\xb8\xc4\xde"                                         // "Accel"
64
+#define MSG_VXY_JERK                        "Vxy-jerk"
65
+#define MSG_VZ_JERK                         "Vz-jerk"
66
+#define MSG_VE_JERK                         "Ve-jerk"
67
+#define MSG_VMAX                            "Vmax "
68
+#define MSG_X                               "x"
69
+#define MSG_Y                               "y"
70
+#define MSG_Z                               "z"
71
+#define MSG_E                               "e"
72
+#define MSG_VMIN                            "Vmin"
73
+#define MSG_VTRAV_MIN                       "VTrav min"
74
+#define MSG_AMAX                            "Amax "
75
+#define MSG_A_RETRACT                       "A-retract"
76
+#define MSG_XSTEPS                          "Xsteps/mm"
77
+#define MSG_YSTEPS                          "Ysteps/mm"
78
+#define MSG_ZSTEPS                          "Zsteps/mm"
79
+#define MSG_ESTEPS                          "Esteps/mm"
80
+#define MSG_TEMPERATURE                     "\xb5\xdd\xc4\xde"                                             // "Temperature"
81
+#define MSG_MOTION                          "\xb3\xba\xde\xb7\xbe\xaf\xc3\xb2"                             // "Motion"
82
+#define MSG_VOLUMETRIC                      "\xcc\xa8\xd7\xd2\xdd\xc4"                                     // "Filament"
83
+#define MSG_VOLUMETRIC_ENABLED              "E in mm3"
84
+#define MSG_FILAMENT_SIZE_EXTRUDER_0        "Fil. Dia. 1"
85
+#define MSG_FILAMENT_SIZE_EXTRUDER_1        "Fil. Dia. 2"
86
+#define MSG_FILAMENT_SIZE_EXTRUDER_2        "Fil. Dia. 3"
87
+#define MSG_FILAMENT_SIZE_EXTRUDER_3        "Fil. Dia. 4"
88
+#define MSG_CONTRAST                        "LCD\xba\xdd\xc4\xd7\xbd\xc4"                                  // "LCD contrast"
89
+#define MSG_STORE_EPROM                     "\xd2\xd3\xd8\xcd\xb6\xb8\xc9\xb3"                             // "Store memory"
90
+#define MSG_LOAD_EPROM                      "\xd2\xd3\xd8\xb6\xd7\xd6\xd0\ba\xd0"                          // "Load memory"
91
+#define MSG_RESTORE_FAILSAFE                "\xbe\xaf\xc3\xb2\xd8\xbe\xaf\xc4"                             // "Restore failsafe"
92
+#define MSG_REFRESH                         "\xd8\xcc\xda\xaf\xbc\xad"                                     // "Refresh"
93
+#define MSG_WATCH                           "\xb2\xdd\xcc\xab"                                             // "Info screen"
94
+#define MSG_PREPARE                         "\xbc\xde\xad\xdd\xcb\xde\xbe\xaf\xc3\xb2"                     // "Prepare"
95
+#define MSG_TUNE                            "\xc1\xae\xb3\xbe\xb2"                                         // "Tune"
96
+#define MSG_PAUSE_PRINT                     "\xb2\xc1\xbc\xde\xc3\xb2\xbc"                                 // "Pause print"
97
+#define MSG_RESUME_PRINT                    "\xcc\xdf\xd8\xdd\xc4\xbb\xb2\xb6\xb2"                         // "Resume print"
98
+#define MSG_STOP_PRINT                      "\xcc\xdf\xd8\xdd\xc4\xc3\xb2\xbc"                             // "Stop print"
99
+#define MSG_CARD_MENU                       "SD\xb6\xb0\xc4\xde\xb6\xd7\xcc\xdf\xd8\xdd\xc4"               // "Print from SD"
100
+#define MSG_NO_CARD                         "SD\xb6\xb0\xc4\xde\xb6\xde\xb1\xd8\xcf\xbe\xdd"               // "No SD card"
101
+#define MSG_DWELL                           "\xbd\xd8\xb0\xcc\xdf"                                         // "Sleep..."
102
+#define MSG_USERWAIT                        "\xbc\xca\xde\xd7\xb9\xb5\xcf\xc1\xb8\xc0\xde\xbb\xb2"         // "Wait for user..."
103
+#define MSG_RESUMING                        "\xcc\xdf\xd8\xdd\xc4\xbb\xb2\xb6\xb2"                         // "Resuming print"
104
+#define MSG_PRINT_ABORTED                   "\xcc\xdf\xd8\xdd\xc4\xc1\xad\xb3\xbc\xbb\xda\xcf\xbc\xc0"     // "Print aborted"
105
+#define MSG_NO_MOVE                         "\xb3\xba\xde\xb7\xcf\xbe\xdd"                                 // "No move."
106
+#define MSG_KILLED                          "\xbc\xae\xb3\xb7\xae"                                         // "KILLED. "
107
+#define MSG_STOPPED                         "\xc3\xb2\xbc\xbc\xcf\xbc\xc0"                                 // "STOPPED. "
108
+#define MSG_CONTROL_RETRACT                 "Retract mm"
109
+#define MSG_CONTROL_RETRACT_SWAP            "Swap Re.mm"
110
+#define MSG_CONTROL_RETRACTF                "Retract  V"
111
+#define MSG_CONTROL_RETRACT_ZLIFT           "Hop mm"
112
+#define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
113
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "S UnRet+mm"
114
+#define MSG_CONTROL_RETRACT_RECOVERF        "UnRet  V"
115
+#define MSG_AUTORETRACT                     "AutoRetr."
116
+#define MSG_FILAMENTCHANGE                  "\xcc\xa8\xd7\xd2\xdd\xc4\xba\xb3\xb6\xdd"                     // "Change filament"
117
+#define MSG_INIT_SDCARD                     "SD\xb6\xb0\xc4\xde\xbb\xb2\xd6\xd0\xba\xd0"                   // "Init. SD card"
118
+#define MSG_CNG_SDCARD                      "SD\xb6\xb0\xc4\xde\xba\xb3\xb6\xdd"                           // "Change SD card"
119
+#define MSG_ZPROBE_OUT                      "Z\xcc\xdf\xdb\xb0\xcc\xde \xcd\xde\xaf\xc4\xee\xb6\xde\xb2"   // "Z probe out. bed"
120
+#define MSG_POSITION_UNKNOWN                "\xb9\xde\xdd\xc3\xdd\xcaXY\xb2\xc4\xde\xb3\xba\xdeZ"           // "Home X/Y before Z"
121
+#define MSG_ZPROBE_ZOFFSET                  "Z\xb5\xcc\xbe\xaf\xc4"                                        // "Z Offset"
122
+#define MSG_BABYSTEP_X                      "\xcb\xde\xc4\xde\xb3 X"                                       // "Babystep X"
123
+#define MSG_BABYSTEP_Y                      "\xcb\xde\xc4\xde\xb3 Y"                                       // "Babystep Y"
124
+#define MSG_BABYSTEP_Z                      "\xcb\xde\xc4\xde\xb3 Z"                                       // "Babystep Z"
125
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
126
+
127
+#define MSG_HEATING                         "\xb6\xc8\xc2\xc1\xad\xb3..."                                  // "Heating..."
128
+#define MSG_HEATING_COMPLETE                "\xb6\xc8\xc2\xb6\xdd\xd8x\xae\xb3"                            // "Heating done."
129
+#define MSG_BED_HEATING                     "\xcd\xde\xaf\xc4\xde\xb6\xc8\xc2\xc1\xad\xb3"                 // "Bed Heating."
130
+#define MSG_BED_DONE                        "\xcd\xde\xaf\xc4\xde\xb6\xc8\xc2\xb6\xdd\xd8x\xae\xb3"        // "Bed done."
131
+#define MSG_ENDSTOPS_HIT                    "endstops hit: "
132
+
133
+#ifdef DELTA_CALIBRATION_MENU
134
+    #define MSG_DELTA_CALIBRATE             "Delta Calibration"
135
+    #define MSG_DELTA_CALIBRATE_X           "Calibrate X"
136
+    #define MSG_DELTA_CALIBRATE_Y           "Calibrate Y"
137
+    #define MSG_DELTA_CALIBRATE_Z           "Calibrate Z"
138
+    #define MSG_DELTA_CALIBRATE_CENTER      "Calibrate Center"
139
+#endif // DELTA_CALIBRATION_MENU
140
+
141
+#endif // LANGUAGE_KANA_H

+ 145
- 0
Marlin/language_kana_utf8.h View File

@@ -0,0 +1,145 @@
1
+/**
2
+ * Japanese (Kana UTF8 version)
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+ 
9
+#ifndef LANGUAGE_KANA_UTF_H
10
+#define LANGUAGE_KANA_UTF_H
11
+
12
+#define MAPPER_E382E383
13
+
14
+// This is very crude replacement of the codes used in language_kana.h from somebody who really does not know what he is doing.
15
+// Just to show the potential benefit of unicode. 
16
+// This translation can be improved by using the full charset of unicode codeblock U+30A0 to U+30FF.
17
+
18
+// 片仮名表示定義
19
+#define WELCOME_MSG                         MACHINE_NAME " ready."
20
+#define MSG_SD_INSERTED                     "セート゛ ンウニユウアレマシタ"          // "Card inserted"
21
+#define MSG_SD_REMOVED                      "セート゛セ゛アリマセン"               // "Card removed"
22
+#define MSG_MAIN                            "ナイン"                        // "Main"
23
+#define MSG_AUTOSTART                       "シ゛ト゛ウセイシ"                   // "Autostart"
24
+#define MSG_DISABLE_STEPPERS                "モーターテ゛ンケ゛ン オフ"             // "Disable steppers"
25
+#define MSG_AUTO_HOME                       "ケ゛ンテンニイト゛ウ"                // "Auto home"
26
+#define MSG_SET_HOME_OFFSETS                "キシ゛ユンオフセツトセツテイ"         // "Set home offsets"
27
+#define MSG_SET_ORIGIN                      "キシ゛ユンセツト"                 // "Set origin"
28
+#define MSG_PREHEAT_PLA                     "PLA ヨネシ"                    // "Preheat PLA"
29
+#define MSG_PREHEAT_PLA_N                   MSG_PREHEAT_PLA " "
30
+#define MSG_PREHEAT_PLA_ALL                 MSG_PREHEAT_PLA " スヘ゛テ"      // " All"
31
+#define MSG_PREHEAT_PLA_BEDONLY             MSG_PREHEAT_PLA " ヘ゛ツト゛"    // "Bed"
32
+#define MSG_PREHEAT_PLA_SETTINGS            MSG_PREHEAT_PLA " セツテイ"     // "conf"
33
+#define MSG_PREHEAT_ABS                     "ABS ヨネシ"                    // "Preheat ABS"
34
+#define MSG_PREHEAT_ABS_N                   MSG_PREHEAT_ABS " "
35
+#define MSG_PREHEAT_ABS_ALL                 MSG_PREHEAT_ABS " スヘ゛テ"      // " All"
36
+#define MSG_PREHEAT_ABS_BEDONLY             MSG_PREHEAT_ABS " ヘ゛ツト゛"    // "Bed"
37
+#define MSG_PREHEAT_ABS_SETTINGS            MSG_PREHEAT_ABS " セツテイ"    // "conf"
38
+#define MSG_COOLDOWN                        "セネシテイシ"                    // "Cooldown"
39
+#define MSG_SWITCH_PS_ON                    "テ゛ンケン゛ オン"                 // "Switch power on"
40
+#define MSG_SWITCH_PS_OFF                   "テ゛ンケン゛ オフ"                 // "Switch power off"
41
+#define MSG_EXTRUDE                         "オシタ゛シ"                     // "Extrude"
42
+#define MSG_RETRACT                         "リトラケト"                     // "Retract"
43
+#define MSG_MOVE_AXIS                       "シ゛ケイト゛ウ"                   // "Move axis"
44
+#define MSG_MOVE_X                          "Xシ゛ケ イト゛ウ"                 // "Move X"
45
+#define MSG_MOVE_Y                          "Yシ゛ケ イト゛ウ"                 // "Move Y"
46
+#define MSG_MOVE_Z                          "Zシ゛ケ イト゛ウ"                 // "Move Z"
47
+#define MSG_MOVE_E                          "エケストルータ゛ー"                // "Extruder"
48
+#define MSG_MOVE_01MM                       "0.1mm イト゛ウ"                 // "Move 0.1mm"
49
+#define MSG_MOVE_1MM                        "  1mm イト゛ウ"                 // "Move 1mm"
50
+#define MSG_MOVE_10MM                       " 10mm イト゛ウ"                 // "Move 10mm"
51
+#define MSG_SPEED                           "スヒ゜ート゛"                     // "Speed"
52
+#define MSG_NOZZLE                          "ノス゛ル"                       // "Nozzle"
53
+#define MSG_BED                             "ヘ゛ツト゛"                     // "Bed"
54
+#define MSG_FAN_SPEED                       "ファンンケト゛"                    // "Fan speed"
55
+#define MSG_FLOW                            "オケリリョウ"                     // "Flow"
56
+#define MSG_CONTROL                         "コントロール"                    // "Control"
57
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
58
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
59
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Fact"
60
+#define MSG_AUTOTEMP                        "シ゛ト゛ウオント゛"                  // "Autotemp"
61
+#define MSG_ON                              "On "
62
+#define MSG_OFF                             "Off"
63
+#define MSG_PID_P                           "PID-P"
64
+#define MSG_PID_I                           "PID-I"
65
+#define MSG_PID_D                           "PID-D"
66
+#define MSG_PID_C                           "PID-C"
67
+#define MSG_ACC                             "センケト゛"                     // "Accel"
68
+#define MSG_VXY_JERK                        "Vxy-jerk"
69
+#define MSG_VZ_JERK                         "Vz-jerk"
70
+#define MSG_VE_JERK                         "Ve-jerk"
71
+#define MSG_VMAX                            "Vmax "
72
+#define MSG_X                               "x"
73
+#define MSG_Y                               "y"
74
+#define MSG_Z                               "z"
75
+#define MSG_E                               "e"
76
+#define MSG_VMIN                            "Vmin"
77
+#define MSG_VTRAV_MIN                       "VTrav min"
78
+#define MSG_AMAX                            "Amax "
79
+#define MSG_A_RETRACT                       "A-retract"
80
+#define MSG_XSTEPS                          "Xsteps/mm"
81
+#define MSG_YSTEPS                          "Ysteps/mm"
82
+#define MSG_ZSTEPS                          "Zsteps/mm"
83
+#define MSG_ESTEPS                          "Esteps/mm"
84
+#define MSG_TEMPERATURE                     "オント゛"                      // "Temperature"
85
+#define MSG_MOTION                          "ウコ゛キセツテイ"                // "Motion"
86
+#define MSG_VOLUMETRIC                      "フィラナント"                    // "Filament"
87
+#define MSG_VOLUMETRIC_ENABLED              "E in mm3"
88
+#define MSG_FILAMENT_SIZE_EXTRUDER_0        "Fil. Dia. 1"
89
+#define MSG_FILAMENT_SIZE_EXTRUDER_1        "Fil. Dia. 2"
90
+#define MSG_FILAMENT_SIZE_EXTRUDER_2        "Fil. Dia. 3"
91
+#define MSG_FILAMENT_SIZE_EXTRUDER_3        "Fil. Dia. 4"
92
+#define MSG_CONTRAST                        "LCDコントラスト"                 // "LCD contrast"
93
+#define MSG_STORE_EPROM                     "ナモリヘセケノウ"                 // "Store memory"
94
+#define MSG_LOAD_EPROM                      "ナモリセラヨミbaミ"               // "Load memory"
95
+#define MSG_RESTORE_FAILSAFE                "セツテイリセツト"               // "Restore failsafe"
96
+#define MSG_REFRESH                         "リフレツシユ"                  // "Refresh"
97
+#define MSG_WATCH                           "インフォ"                     // "Info screen"
98
+#define MSG_PREPARE                         "シ゛ユンヒ゛セツテイ"             //"Prepare"
99
+#define MSG_TUNE                            "チョウセイ"                    // "Tune"
100
+#define MSG_PAUSE_PRINT                     "イチシ゛テイシ"                  // "Pause print"
101
+#define MSG_RESUME_PRINT                    "フ゜リントアイセイ"                // "Resume print"
102
+#define MSG_STOP_PRINT                      "フ゜リントテイシ"                 // "Stop print"
103
+#define MSG_CARD_MENU                       "SDセート゛セラフ゜リント"            // "Print from SD"
104
+#define MSG_NO_CARD                         "SDセート゛セ゛アリマセン"            // "No SD card"
105
+#define MSG_DWELL                           "スリーフ゜"                     // "Sleep..."
106
+#define MSG_USERWAIT                        "シハ゛ラケオマチケタ゛アイ"           // "Wait for user..."
107
+#define MSG_RESUMING                        "フ゜リントアイセイ"                // "Resuming print"
108
+#define MSG_PRINT_ABORTED                   "フ゜リントチユウシアレマシタ"          // "Print aborted"
109
+#define MSG_NO_MOVE                         "ウコ゛キマセン"                  // "No move."
110
+#define MSG_KILLED                          "ショウキョ"                     // "KILLED. "
111
+#define MSG_STOPPED                         "テイシシマシタ"                  // "STOPPED. "
112
+#define MSG_CONTROL_RETRACT                 "Retract mm"
113
+#define MSG_CONTROL_RETRACT_SWAP            "Swap Re.mm"
114
+#define MSG_CONTROL_RETRACTF                "Retract  V"
115
+#define MSG_CONTROL_RETRACT_ZLIFT           "Hop mm"
116
+#define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
117
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "S UnRet+mm"
118
+#define MSG_CONTROL_RETRACT_RECOVERF        "UnRet  V"
119
+#define MSG_AUTORETRACT                     "AutoRetr."
120
+#define MSG_FILAMENTCHANGE                  "フィラナントコウセン"               // "Change filament"
121
+#define MSG_INIT_SDCARD                     "SDセート゛アイヨミコミ"              // "Init. SD card"
122
+#define MSG_CNG_SDCARD                      "SDセート゛コウセン"                // "Change SD card"
123
+#define MSG_ZPROBE_OUT                      "Zフ゜ローフ゛ ヘ゛ツトnセ゛イ"         // "Z probe out. bed"
124
+#define MSG_POSITION_UNKNOWN                "ケ゛ンテンハXYイト゛ウコ゛Z"           // "Home X/Y before Z"
125
+#define MSG_ZPROBE_ZOFFSET                  "Zオフセツト"                   // "Z Offset"
126
+#define MSG_BABYSTEP_X                      "ヒ゛ト゛ウ X"                    // "Babystep X"
127
+#define MSG_BABYSTEP_Y                      "ヒ゛ト゛ウ Y"                    // "Babystep Y"
128
+#define MSG_BABYSTEP_Z                      "ヒ゛ト゛ウ Z"                    // "Babystep Z"
129
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
130
+
131
+#define MSG_HEATING                         "セネシチユウ..."                // "Heating..."
132
+#define MSG_HEATING_COMPLETE                "セネシセンリxョウ"                // "Heating done."
133
+#define MSG_BED_HEATING                     "ヘ゛ツト゛セネシチユウ"             // "Bed Heating."  5C 33 34 33
134
+#define MSG_BED_DONE                        "ヘ゛ツト゛セネシセンリxョウ"           // "Bed done."
135
+#define MSG_ENDSTOPS_HIT                    "endstops hit: "
136
+
137
+#ifdef DELTA_CALIBRATION_MENU
138
+    #define MSG_DELTA_CALIBRATE             "Delta Calibration"
139
+    #define MSG_DELTA_CALIBRATE_X           "Calibrate X"
140
+    #define MSG_DELTA_CALIBRATE_Y           "Calibrate Y"
141
+    #define MSG_DELTA_CALIBRATE_Z           "Calibrate Z"
142
+    #define MSG_DELTA_CALIBRATE_CENTER      "Calibrate Center"
143
+#endif // DELTA_CALIBRATION_MENU
144
+
145
+#endif // LANGUAGE_KANA_UTF_H

+ 147
- 0
Marlin/language_kanji.h View File

@@ -0,0 +1,147 @@
1
+/**
2
+ * Japanese (Kanji)
3
+ *
4
+ * LCD Menu Messages
5
+ * Please note these are limited to 17 characters!
6
+ *
7
+ */
8
+#ifndef DOGLCD
9
+  #include "language_kana.h" // fallback to kana
10
+  #define LANGUAGE_KANJI_H
11
+#endif 
12
+ 
13
+#ifndef LANGUAGE_KANJI_H
14
+#define LANGUAGE_KANJI_H
15
+
16
+#define MAPPER_NON
17
+#define DISPLAY_CHARSET_KANJI
18
+
19
+// HINT FOR ichibey; YOU CAN NOW MAKE USE OF THE LAST 8 SYMBOLS FOR YOUT PURPOSE, SINCE THE MARLIN_SYMBOLS NOW HAVE THEIR OWN FONT:
20
+
21
+// 漢字混じり表示
22
+#define WELCOME_MSG                         MACHINE_NAME "\x8a\x8b\x90\x91\xa4\xa5\x7f"                    // "ready."
23
+#define MSG_SD_INSERTED                     "SD\xb6\xb0\xc4\xde\x20\x84\xa2\xa3\xbb\xda\xcf\xbc\xc0"       // "Card inserted"
24
+#define MSG_SD_REMOVED                      "SD\xb6\xb0\xc4\xde\x20\x84\xe3\xb6\xda\xcf\xbc\xc0"           // "Card removed"
25
+#define MSG_MAIN                            "\xd2\xb2\xdd"                                                 // "Main"
26
+#define MSG_AUTOSTART                       "\x93\x88\xb6\xb6\xb2\xbc"                                     // "Autostart"
27
+#define MSG_DISABLE_STEPPERS                "\xd3\xb0\xc0\xb0\xe7\xe8\xe9\xea\x20\xb5\xcc"                 // "Disable steppers"
28
+#define MSG_AUTO_HOME                       "\x98\x99\x9a\x9b\xcd \x86\x87\x88\xb6"                        // "Auto home"
29
+#define MSG_SET_HOME_OFFSETS                "\x8c\x8d\x8a\x8b\xb5\xcc\xbe\xaf\xc4\xf1\xf2\xf3\xf4"         // "Set home offsets"
30
+#define MSG_SET_ORIGIN                      "\x8c\x8d\x8a\x8b\xbe\xaf\xc4"                                 // "Set origin"
31
+#define MSG_PREHEAT_PLA                     "PLA \x92\x94\x95"                                             // "Preheat PLA"
32
+#define MSG_PREHEAT_PLA_N                   MSG_PREHEAT_PLA " "
33
+#define MSG_PREHEAT_PLA_ALL                 MSG_PREHEAT_PLA " \x96\x97\xc3"                                // " All"
34
+#define MSG_PREHEAT_PLA_BEDONLY             MSG_PREHEAT_PLA " \xcd\xde\xaf\xc4\xde"                        // "Bed"
35
+#define MSG_PREHEAT_PLA_SETTINGS            MSG_PREHEAT_PLA " \xbe\xaf\xc3\xb2"                            // "conf"
36
+#define MSG_PREHEAT_ABS                     "ABS \x92\x94\x95"                                             // "Preheat ABS"
37
+#define MSG_PREHEAT_ABS_N                   MSG_PREHEAT_ABS " "
38
+#define MSG_PREHEAT_ABS_ALL                 MSG_PREHEAT_ABS " \xbd\xcd\xde\xc3"                            // " All"
39
+#define MSG_PREHEAT_ABS_BEDONLY             MSG_PREHEAT_ABS " \xcd\xde\xaf\xc4\xde"                        // "Bed"
40
+#define MSG_PREHEAT_ABS_SETTINGS            MSG_PREHEAT_ABS " \xbe\xaf\xc3\xb2"                            // "conf"
41
+#define MSG_COOLDOWN                        "\xb6\xe5\x94\x95\xb2\x9e\xf7"                                 // "Cooldown"
42
+#define MSG_SWITCH_PS_ON                    "\xe7\xe8\xe9\xea\x20\xb5\xdd"                                 // "Switch power on"
43
+#define MSG_SWITCH_PS_OFF                   "\xe7\xe8\xe9\xea\x20\xb5\xcc"                                 // "Switch power off"
44
+#define MSG_EXTRUDE                         "\x84\x85\xbc\xc0\xde\xbc"                                     // "Extrude"
45
+#define MSG_RETRACT                         "\xd8\xc4\xd7\xb8\xc4"                                         // "Retract"
46
+#define MSG_MOVE_AXIS                       "\x8e\x8f\x86\x87\x88\xb6"                                     // "Move axis"
47
+#define MSG_MOVE_X                          "X\x8e\x8f\x86\x87\x88\xb6"                                    // "Move X"
48
+#define MSG_MOVE_Y                          "Y\x8e\x8f\x86\x87\x88\xb6"                                    // "Move Y"
49
+#define MSG_MOVE_Z                          "Z\x8e\x8f\x86\x87\x88\xb6"                                    // "Move Z"
50
+#define MSG_MOVE_E                          "\xb4\xb8\xbd\xc4\xd9\xb0\xc0\xde\xb0"                         // "Extruder"
51
+#define MSG_MOVE_01MM                       "0.1mm \x86\x87\x88\xb6"                                       // "Move 0.1mm"
52
+#define MSG_MOVE_1MM                        "  1mm \x86\x87\x88\xb6"                                       // "Move 1mm"
53
+#define MSG_MOVE_10MM                       " 10mm \x86\x87\x88\xb6"                                       // "Move 10mm"
54
+#define MSG_SPEED                           "\xbd\xcb\xdf\xb0\xc4\xde"                                     // "Speed"
55
+#define MSG_NOZZLE                          "\xc9\xbd\xde\xd9"                                             // "Nozzle"
56
+#define MSG_BED                             "\xcd\xde\xaf\xc4\xde"                                         // "Bed"
57
+#define MSG_FAN_SPEED                       "\xcc\xa7\xdd\xed\xe6\x82\x83"                                 // "Fan speed"
58
+#define MSG_FLOW                            "\xed\xee\xd8\x7d"                                             // "Flow"
59
+#define MSG_CONTROL                         "\xba\xdd\xc4\xdb\xb0\xd9"                                     // "Control"
60
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
61
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
62
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Fact"
63
+#define MSG_AUTOTEMP                        "\x93\x88\xb6\x80\x81\x82\x83"                                 // "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                             "\xb6\xe5\xed\xe6\x82\x83"                                     // "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                     "\x80\x81\x82\x83"                                             // "Temperature"
88
+#define MSG_MOTION                          "\x88\xb6\xef\xf1\xf2\xf3\xf4"                                 // "Motion"
89
+#define MSG_VOLUMETRIC                      "\xcc\xa8\xd7\xd2\xdd\xc4"                                     // "Filament"
90
+#define MSG_VOLUMETRIC_ENABLED              "E in mm3"
91
+#define MSG_FILAMENT_SIZE_EXTRUDER_0        "Fil. Dia. 1"
92
+#define MSG_FILAMENT_SIZE_EXTRUDER_1        "Fil. Dia. 2"
93
+#define MSG_FILAMENT_SIZE_EXTRUDER_2        "Fil. Dia. 3"
94
+#define MSG_FILAMENT_SIZE_EXTRUDER_3        "Fil. Dia. 4"
95
+#define MSG_CONTRAST                        "LCD\xba\xdd\xc4\xd7\xbd\xc4"                                  // "LCD contrast"
96
+#define MSG_STORE_EPROM                     "\xd2\xd3\xd8\xcd\xb6\xb8\xc9\xb3"                             // "Store memory"
97
+#define MSG_LOAD_EPROM                      "\xd2\xd3\xd8\xb6\xd7\xd6\xd0\ba\xd0"                          // "Load memory"
98
+#define MSG_RESTORE_FAILSAFE                "\xf1\xf2\xf3\xf4\xd8\xbe\xaf\xc4"                             // "Restore failsafe"
99
+#define MSG_REFRESH                         "\xd8\xcc\xda\xaf\xbc\xad"                                     // "Refresh"
100
+#define MSG_WATCH                           "\xb2\xdd\xcc\xab"                                             // "Info screen"
101
+#define MSG_PREPARE                         "\x8a\x8b\x90\x91\xf1\xf2\xf3\xf4"                             // "Prepare"
102
+#define MSG_TUNE                            "\xf1\x9f\x9c\x9d"                                             // "Tune"
103
+#define MSG_PAUSE_PRINT                     "\xb0\xf5\xf6\xb2\x9e\xf7"                                     // "Pause print"
104
+#define MSG_RESUME_PRINT                    "\xcc\xdf\xd8\xdd\xc4 \xa0\xa1\x7b\x7c"                        // "Resume print"
105
+#define MSG_STOP_PRINT                      "\xcc\xdf\xd8\xdd\xc4 \xb2\x9e\xf7"                            // "Stop print"
106
+#define MSG_CARD_MENU                       "SD\xb6\xb0\xc4\xde\xb6\xd7\xcc\xdf\xd8\xdd\xc4"               // "Print from SD"
107
+#define MSG_NO_CARD                         "SD\xb6\xb0\xc4\xde\xb6\xde\xb1\xd8\xcf\xbe\xdd"               // "No SD card"
108
+#define MSG_DWELL                           "\xbd\xd8\xb0\xcc\xdf"                                         // "Sleep..."
109
+#define MSG_USERWAIT                        "\xbc\xca\xde\xd7\xb9\xb5\xcf\xc1\xb8\xc0\xde\xbb\xb2"         // "Wait for user..."
110
+#define MSG_RESUMING                        "\xcc\xdf\xd8\xdd\xc4 \xa0\xa1\x7b\x7c"                        // "Resuming print"
111
+#define MSG_PRINT_ABORTED                   "\xcc\xdf\xd8\xdd\xc4\xc1\xad\xb3\xbc\xbb\xda\xcf\xbc\xc0"     // "Print aborted"
112
+#define MSG_NO_MOVE                         "\x88\xb6\xb7\xcf\xbe\xdd"                                     // "No move."
113
+#define MSG_KILLED                          "\xbc\xae\xb3\xb7\xae"                                         // "KILLED. "
114
+#define MSG_STOPPED                         "\xb2\x9e\xf7\xbc\xcf\xbc\xc0"                                 // "STOPPED. "
115
+#define MSG_CONTROL_RETRACT                 "Retract mm"
116
+#define MSG_CONTROL_RETRACT_SWAP            "Swap Re.mm"
117
+#define MSG_CONTROL_RETRACTF                "Retract  V"
118
+#define MSG_CONTROL_RETRACT_ZLIFT           "Hop mm"
119
+#define MSG_CONTROL_RETRACT_RECOVER         "UnRet +mm"
120
+#define MSG_CONTROL_RETRACT_RECOVER_SWAP    "S UnRet+mm"
121
+#define MSG_CONTROL_RETRACT_RECOVERF        "UnRet  V"
122
+#define MSG_AUTORETRACT                     "AutoRetr."
123
+#define MSG_FILAMENTCHANGE                  "\xcc\xa8\xd7\xd2\xdd\xc4\xeb\xec\x84\xe4"                     // "Change filament"
124
+#define MSG_INIT_SDCARD                     "SD\xb6\xb0\xc4\xde\\xa0\xa1\xd6\xd0\xba\xd0"                  // "Init. SD card"
125
+#define MSG_CNG_SDCARD                      "SD\xb6\xb0\xc4\xde\xeb\xec\x84\xe4"                           // "Change SD card"
126
+#define MSG_ZPROBE_OUT                      "Z\xcc\xdf\xdb\xb0\xcc\xde \xcd\xde\xaf\xc4\xee\xb6\xde\xb2"   // "Z probe out. bed"
127
+#define MSG_POSITION_UNKNOWN                "\xb9\xde\xdd\xc3\xdd\xcaXY\xb2\xc4\xde\xb3\xba\xdeZ"           // "Home X/Y before Z"
128
+#define MSG_ZPROBE_ZOFFSET                  "Z\xb5\xcc\xbe\xaf\xc4"                                        // "Z Offset"
129
+#define MSG_BABYSTEP_X                      "\xcb\xde\xc4\xde\xb3 X"                                       // "Babystep X"
130
+#define MSG_BABYSTEP_Y                      "\xcb\xde\xc4\xde\xb3 Y"                                       // "Babystep Y"
131
+#define MSG_BABYSTEP_Z                      "\xcb\xde\xc4\xde\xb3 Z"                                       // "Babystep Z"
132
+#define MSG_ENDSTOP_ABORT                   "Endstop abort"
133
+#define MSG_HEATING                         "\xb6\xe5\x94\x95\x89..."                                      // "Heating..."
134
+#define MSG_HEATING_COMPLETE                "\xb6\xe5\x94\x95\xa4\xa5\x7f"                                 // "Heating done."
135
+#define MSG_BED_HEATING                     "\xcd\xde\xaf\xc4\xde\xb6\xe5\x94\x95\x89"                     // "Bed Heating."
136
+#define MSG_BED_DONE                        "\xcd\xde\xaf\xc4\xde\xb6\xe5\x94\x95\xa4\xa5\x7f"             // "Bed done."
137
+#define MSG_ENDSTOPS_HIT                    "endstops hit: "
138
+
139
+#ifdef DELTA_CALIBRATION_MENU
140
+    #define MSG_DELTA_CALIBRATE             "Delta Calibration"
141
+    #define MSG_DELTA_CALIBRATE_X           "Calibrate X"
142
+    #define MSG_DELTA_CALIBRATE_Y           "Calibrate Y"
143
+    #define MSG_DELTA_CALIBRATE_Z           "Calibrate Z"
144
+    #define MSG_DELTA_CALIBRATE_CENTER      "Calibrate Center"
145
+#endif // DELTA_CALIBRATION_MENU
146
+
147
+#endif // LANGUAGE_JP2_H

+ 5
- 3
Marlin/language_nl.h View File

@@ -8,6 +8,8 @@
8 8
 #ifndef LANGUAGE_NL_H
9 9
 #define LANGUAGE_NL_H
10 10
 
11
+#define MAPPER_NON
12
+
11 13
 #define WELCOME_MSG                         MACHINE_NAME " gereed."
12 14
 #define MSG_SD_INSERTED                     "Kaart ingestoken"
13 15
 #define MSG_SD_REMOVED                      "Kaart verwijderd"
@@ -46,9 +48,9 @@
46 48
 #define MSG_FAN_SPEED                       "Fan snelheid"
47 49
 #define MSG_FLOW                            "Flow"
48 50
 #define MSG_CONTROL                         "Control"
49
-#define MSG_MIN                             " \002 Min"
50
-#define MSG_MAX                             " \002 Max"
51
-#define MSG_FACTOR                          " \002 Fact"
51
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
52
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
53
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Fact"
52 54
 #define MSG_AUTOTEMP                        "Autotemp"
53 55
 #define MSG_ON                              "Aan "
54 56
 #define MSG_OFF                             "Uit"

+ 6
- 4
Marlin/language_pl.h View File

@@ -8,6 +8,8 @@
8 8
 #ifndef LANGUAGE_PL_H
9 9
 #define LANGUAGE_PL_H
10 10
 
11
+#define MAPPER_NON
12
+
11 13
 #define WELCOME_MSG                         MACHINE_NAME " gotowy."
12 14
 #define MSG_SD_INSERTED                     "Karta wlozona"
13 15
 #define MSG_SD_REMOVED                      "Karta usunieta"
@@ -46,9 +48,9 @@
46 48
 #define MSG_FAN_SPEED                       "Obroty wiatraka"
47 49
 #define MSG_FLOW                            "Przeplyw"
48 50
 #define MSG_CONTROL                         "Ustawienia"
49
-#define MSG_MIN                             " \002 Min"
50
-#define MSG_MAX                             " \002 Max"
51
-#define MSG_FACTOR                          " \002 Mnoznik"
51
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
52
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
53
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Mnoznik"
52 54
 #define MSG_AUTOTEMP                        "Auto. temperatura"
53 55
 #define MSG_ON                              "Wl. "
54 56
 #define MSG_OFF                             "Wyl."
@@ -84,7 +86,7 @@
84 86
 #define MSG_STORE_EPROM                     "Zapisz w pamieci"
85 87
 #define MSG_LOAD_EPROM                      "Wczytaj z pamieci"
86 88
 #define MSG_RESTORE_FAILSAFE                "Ustaw. fabryczne"
87
-#define MSG_REFRESH                         "\004Odswiez"
89
+#define MSG_REFRESH                         LCD_STR_REFRESH " Odswiez"
88 90
 #define MSG_WATCH                           "Ekran glowny"
89 91
 #define MSG_PREPARE                         "Przygotuj"
90 92
 #define MSG_TUNE                            "Strojenie"

+ 17
- 15
Marlin/language_pt-br.h View File

@@ -8,10 +8,12 @@
8 8
 #ifndef LANGUAGE_PT_BR_H
9 9
 #define LANGUAGE_PT_BR_H
10 10
 
11
+#define MAPPER_NON
12
+
11 13
 #define WELCOME_MSG							MACHINE_NAME " pronto."
12 14
 #define MSG_SD_INSERTED                     "Cartao inserido"
13 15
 #define MSG_SD_REMOVED                      "Cartao removido"
14
-#define MSG_MAIN                            " Menu principal \003"
16
+#define MSG_MAIN                            " Menu principal"
15 17
 #define MSG_AUTOSTART                       "Autostart"
16 18
 #define MSG_DISABLE_STEPPERS                " Apagar motores"
17 19
 #define MSG_AUTO_HOME                       "Ir para origen"
@@ -20,19 +22,19 @@
20 22
 #define MSG_PREHEAT_PLA                     "Pre-aquecer PLA"
21 23
 #define MSG_PREHEAT_PLA_N                   "Pre-aquecer PLA "
22 24
 #define MSG_PREHEAT_PLA_ALL                 "Pre-aq. PLA Tudo"
23
-#define MSG_PREHEAT_PLA_BEDONLY             "Pre-aq. PLA \002Base"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Pre-aq. PLA " LCD_STR_THERMOMETER "Base"
24 26
 #define MSG_PREHEAT_PLA_SETTINGS            "PLA setting"
25 27
 #define MSG_PREHEAT_ABS                     "Pre-aquecer ABS"
26 28
 #define MSG_PREHEAT_ABS_N                   "Pre-aquecer ABS "
27 29
 #define MSG_PREHEAT_ABS_ALL                 "Pre-aq. ABS Tudo"
28
-#define MSG_PREHEAT_ABS_BEDONLY             "Pre-aq. ABS \002Base"
30
+#define MSG_PREHEAT_ABS_BEDONLY             "Pre-aq. ABS " LCD_STR_THERMOMETER "Base"
29 31
 #define MSG_PREHEAT_ABS_SETTINGS            "ABS setting"
30 32
 #define MSG_COOLDOWN                        "Esfriar"
31 33
 #define MSG_SWITCH_PS_ON                    "Switch Power On"
32 34
 #define MSG_SWITCH_PS_OFF                   "Switch Power Off"
33 35
 #define MSG_EXTRUDE                         "Extrudar"
34 36
 #define MSG_RETRACT                         "Retrair"
35
-#define MSG_MOVE_AXIS                       "Mover eixo      \x7E"
37
+#define MSG_MOVE_AXIS                       "Mover eixo"
36 38
 #define MSG_MOVE_X                          "Move X"
37 39
 #define MSG_MOVE_Y                          "Move Y"
38 40
 #define MSG_MOVE_Z                          "Move Z"
@@ -41,14 +43,14 @@
41 43
 #define MSG_MOVE_1MM                        "Move 1mm"
42 44
 #define MSG_MOVE_10MM                       "Move 10mm"
43 45
 #define MSG_SPEED                           "Velocidade"
44
-#define MSG_NOZZLE                          "\002Nozzle"
45
-#define MSG_BED                             "\002Base"
46
+#define MSG_NOZZLE                          LCD_STR_THERMOMETER " Nozzle"
47
+#define MSG_BED                             LCD_STR_THERMOMETER " Base"
46 48
 #define MSG_FAN_SPEED                       "Velocidade vento."
47 49
 #define MSG_FLOW                            "Fluxo"
48
-#define MSG_CONTROL                         "Controle \003"
49
-#define MSG_MIN                             "\002 Min"
50
-#define MSG_MAX                             "\002 Max"
51
-#define MSG_FACTOR                          "\002 Fact"
50
+#define MSG_CONTROL                         "Controle"
51
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
52
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
53
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Fact"
52 54
 #define MSG_AUTOTEMP                        "Autotemp"
53 55
 #define MSG_ON                              "On "
54 56
 #define MSG_OFF                             "Off"
@@ -76,7 +78,7 @@
76 78
 #define MSG_TEMPERATURE                     "Temperatura"
77 79
 #define MSG_MOTION                          "Movimento"
78 80
 #define MSG_VOLUMETRIC                      "Filament"
79
-#define MSG_VOLUMETRIC_ENABLED		        "E in mm3"
81
+#define MSG_VOLUMETRIC_ENABLED              "E in mm3"
80 82
 #define MSG_FILAMENT_SIZE_EXTRUDER_0        "Fil. Dia. 1"
81 83
 #define MSG_FILAMENT_SIZE_EXTRUDER_1        "Fil. Dia. 2"
82 84
 #define MSG_FILAMENT_SIZE_EXTRUDER_2        "Fil. Dia. 3"
@@ -84,10 +86,10 @@
84 86
 #define MSG_STORE_EPROM                     "Guardar memoria"
85 87
 #define MSG_LOAD_EPROM                      "Carregar memoria"
86 88
 #define MSG_RESTORE_FAILSAFE                "Rest. de emergen."
87
-#define MSG_REFRESH                         "\004Recarregar"
88
-#define MSG_WATCH                           "Monitorar   \003"
89
-#define MSG_PREPARE                         "Preparar \x7E"
90
-#define MSG_TUNE                            "Tune    \x7E"
89
+#define MSG_REFRESH                         LCD_STR_REFRESH " Recarregar"
90
+#define MSG_WATCH                           "Monitorar"
91
+#define MSG_PREPARE                         "Preparar"
92
+#define MSG_TUNE                            "Tune"
91 93
 #define MSG_PAUSE_PRINT                     "Pausar impressao"
92 94
 #define MSG_RESUME_PRINT                    "Resumir impressao"
93 95
 #define MSG_STOP_PRINT                      "Parar impressao"

+ 17
- 15
Marlin/language_pt.h View File

@@ -8,10 +8,12 @@
8 8
 #ifndef LANGUAGE_PT_H
9 9
 #define LANGUAGE_PT_H
10 10
 
11
+#define MAPPER_NON
12
+
11 13
 #define WELCOME_MSG                         MACHINE_NAME " pronto."
12 14
 #define MSG_SD_INSERTED                     "Cartao inserido"
13 15
 #define MSG_SD_REMOVED                      "Cartao removido"
14
-#define MSG_MAIN                            " Menu principal \003"
16
+#define MSG_MAIN                            " Menu principal"
15 17
 #define MSG_AUTOSTART                       "Autostart"
16 18
 #define MSG_DISABLE_STEPPERS                " Desligar motores"
17 19
 #define MSG_AUTO_HOME                       "Ir para home"
@@ -20,19 +22,19 @@
20 22
 #define MSG_PREHEAT_PLA                     "Pre-aquecer PLA"
21 23
 #define MSG_PREHEAT_PLA_N                   "Pre-aquecer PLA "
22 24
 #define MSG_PREHEAT_PLA_ALL                 "Pre-aq. PLA Tudo"
23
-#define MSG_PREHEAT_PLA_BEDONLY             "Pre-aq. PLA \002Base"
25
+#define MSG_PREHEAT_PLA_BEDONLY             "Pre-aq. PLA " LCD_STR_THERMOMETER "Base"
24 26
 #define MSG_PREHEAT_PLA_SETTINGS            "PLA definicoes"
25 27
 #define MSG_PREHEAT_ABS                     "Pre-aquecer ABS"
26 28
 #define MSG_PREHEAT_ABS_N                   "Pre-aquecer ABS "
27 29
 #define MSG_PREHEAT_ABS_ALL                 "Pre-aq. ABS Tudo"
28
-#define MSG_PREHEAT_ABS_BEDONLY             "Pre-aq. ABS \002Base"
30
+#define MSG_PREHEAT_ABS_BEDONLY             "Pre-aq. ABS " LCD_STR_THERMOMETER "Base"
29 31
 #define MSG_PREHEAT_ABS_SETTINGS            "ABS definicoes"
30 32
 #define MSG_COOLDOWN                        "Arrefecer"
31 33
 #define MSG_SWITCH_PS_ON                    "Ligar"
32 34
 #define MSG_SWITCH_PS_OFF                   "Desligar"
33 35
 #define MSG_EXTRUDE                         "Extrudir"
34 36
 #define MSG_RETRACT                         "Retrair"
35
-#define MSG_MOVE_AXIS                       "Mover eixo      \x7E"
37
+#define MSG_MOVE_AXIS                       "Mover eixo"
36 38
 #define MSG_MOVE_X                          "Mover X"
37 39
 #define MSG_MOVE_Y                          "Mover Y"
38 40
 #define MSG_MOVE_Z                          "Mover Z"
@@ -41,14 +43,14 @@
41 43
 #define MSG_MOVE_1MM                        "Mover 1mm"
42 44
 #define MSG_MOVE_10MM                       "Mover 10mm"
43 45
 #define MSG_SPEED                           "Velocidade"
44
-#define MSG_NOZZLE                          "\002Bico"
45
-#define MSG_BED                             "\002Base"
46
+#define MSG_NOZZLE                          LCD_STR_THERMOMETER "Bico"
47
+#define MSG_BED                             LCD_STR_THERMOMETER "Base"
46 48
 #define MSG_FAN_SPEED                       "Velocidade do ar."
47 49
 #define MSG_FLOW                            "Fluxo"
48
-#define MSG_CONTROL                         "Controlo \003"
49
-#define MSG_MIN                             "\002 Min"
50
-#define MSG_MAX                             "\002 Max"
51
-#define MSG_FACTOR                          "\002 Fact"
50
+#define MSG_CONTROL                         "Controlo"
51
+#define MSG_MIN                             LCD_STR_THERMOMETER " Min"
52
+#define MSG_MAX                             LCD_STR_THERMOMETER " Max"
53
+#define MSG_FACTOR                          LCD_STR_THERMOMETER " Fact"
52 54
 #define MSG_AUTOTEMP                        "Autotemp"
53 55
 #define MSG_ON                              "On "
54 56
 #define MSG_OFF                             "Off"
@@ -76,7 +78,7 @@
76 78
 #define MSG_TEMPERATURE                     "Temperatura"
77 79
 #define MSG_MOTION                          "Movimento"
78 80
 #define MSG_VOLUMETRIC                      "Filamento"
79
-#define MSG_VOLUMETRIC_ENABLED		        "E in mm3"
81
+#define MSG_VOLUMETRIC_ENABLED              "E in mm3"
80 82
 #define MSG_FILAMENT_SIZE_EXTRUDER_0        "Fil. Diam. 1"
81 83
 #define MSG_FILAMENT_SIZE_EXTRUDER_1        "Fil. Diam. 2"
82 84
 #define MSG_FILAMENT_SIZE_EXTRUDER_2        "Fil. Diam. 3"
@@ -84,10 +86,10 @@
84 86
 #define MSG_STORE_EPROM                     "Guardar na memoria"
85 87
 #define MSG_LOAD_EPROM                      "Carregar da memoria"
86 88
 #define MSG_RESTORE_FAILSAFE                "Rest. de emergen."
87
-#define MSG_REFRESH                         "\004Recarregar"
88
-#define MSG_WATCH                           "Monitorar   \003"
89
-#define MSG_PREPARE                         "Preparar \x7E"
90
-#define MSG_TUNE                            "Afinar    \x7E"
89
+#define MSG_REFRESH                         LCD_STR_REFRESH " Recarregar"
90
+#define MSG_WATCH                           "Monitorar"
91
+#define MSG_PREPARE                         "Preparar"
92
+#define MSG_TUNE                            "Afinar"
91 93
 #define MSG_PAUSE_PRINT                     "Pausar impressao"
92 94
 #define MSG_RESUME_PRINT                    "Resumir impressao"
93 95
 #define MSG_STOP_PRINT                      "Parar impressao"

+ 1
- 1
Marlin/language_ru.h View File

@@ -8,7 +8,7 @@
8 8
 #ifndef LANGUAGE_RU_H
9 9
 #define LANGUAGE_RU_H
10 10
 
11
-#define LANGUAGE_RU
11
+#define MAPPER_D0D1        // For Cyrillic
12 12
 
13 13
 #define WELCOME_MSG                         MACHINE_NAME " Готов."
14 14
 #define MSG_SD_INSERTED                     "Карта вставлена"

Loading…
Cancel
Save