Browse Source

added hyphenated letters for full graphic display and fixed some strings

Silvio Didonna 8 years ago
parent
commit
f999292eea
1 changed files with 22 additions and 6 deletions
  1. 22
    6
      Marlin/language_it.h

+ 22
- 6
Marlin/language_it.h View File

46
 #define MSG_AUTO_HOME_Y                     "Home asse Y"
46
 #define MSG_AUTO_HOME_Y                     "Home asse Y"
47
 #define MSG_AUTO_HOME_Z                     "Home asse Z"
47
 #define MSG_AUTO_HOME_Z                     "Home asse Z"
48
 #define MSG_LEVEL_BED_HOMING                "Home assi XYZ"
48
 #define MSG_LEVEL_BED_HOMING                "Home assi XYZ"
49
-#define MSG_LEVEL_BED_WAITING               "Premi per Iniziare"
49
+#define MSG_LEVEL_BED_WAITING               "Premi per iniziare"
50
 #define MSG_LEVEL_BED_NEXT_POINT            "Punto successivo"
50
 #define MSG_LEVEL_BED_NEXT_POINT            "Punto successivo"
51
 #define MSG_LEVEL_BED_DONE                  "Livel. terminato!"
51
 #define MSG_LEVEL_BED_DONE                  "Livel. terminato!"
52
 #define MSG_LEVEL_BED_CANCEL                "Annulla"
52
 #define MSG_LEVEL_BED_CANCEL                "Annulla"
77
 #define MSG_MOVE_01MM                       "Muovi di 0.1mm"
77
 #define MSG_MOVE_01MM                       "Muovi di 0.1mm"
78
 #define MSG_MOVE_1MM                        "Muovi di   1mm"
78
 #define MSG_MOVE_1MM                        "Muovi di   1mm"
79
 #define MSG_MOVE_10MM                       "Muovi di  10mm"
79
 #define MSG_MOVE_10MM                       "Muovi di  10mm"
80
-#define MSG_SPEED                           "Velocità"
80
+#if ENABLED(DOGLCD)
81
+  #define MSG_SPEED                         "Velocità"
82
+#else
83
+  #define MSG_SPEED                         "Velocita"
84
+#endif
81
 #define MSG_BED_Z                           "piatto Z"
85
 #define MSG_BED_Z                           "piatto Z"
82
 #define MSG_NOZZLE                          "Ugello"
86
 #define MSG_NOZZLE                          "Ugello"
83
 #define MSG_BED                             "Piatto"
87
 #define MSG_BED                             "Piatto"
84
-#define MSG_FAN_SPEED                       "Velocità ventola"
88
+#if ENABLED(DOGLCD)
89
+  #define MSG_FAN_SPEED                     "Velocità ventola"
90
+#else
91
+  #define MSG_FAN_SPEED                     "Velocita ventola"
92
+#endif
85
 #define MSG_FLOW                            "Flusso"
93
 #define MSG_FLOW                            "Flusso"
86
 #define MSG_CONTROL                         "Controllo"
94
 #define MSG_CONTROL                         "Controllo"
87
 #define MSG_MIN                             LCD_STR_THERMOMETER " Min"
95
 #define MSG_MIN                             LCD_STR_THERMOMETER " Min"
147
 #define MSG_CNG_SDCARD                      "Cambia SD-Card"
155
 #define MSG_CNG_SDCARD                      "Cambia SD-Card"
148
 #define MSG_ZPROBE_OUT                      "Z probe out. bed"
156
 #define MSG_ZPROBE_OUT                      "Z probe out. bed"
149
 #define MSG_HOME                            "Home"  // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
157
 #define MSG_HOME                            "Home"  // Used as MSG_HOME " " MSG_X MSG_Y MSG_Z " " MSG_FIRST
150
-#define MSG_FIRST                           "first"
158
+#define MSG_FIRST                           "prima"
151
 #define MSG_ZPROBE_ZOFFSET                  "Z Offset"
159
 #define MSG_ZPROBE_ZOFFSET                  "Z Offset"
152
 #define MSG_BABYSTEP_X                      "Babystep X"
160
 #define MSG_BABYSTEP_X                      "Babystep X"
153
 #define MSG_BABYSTEP_Y                      "Babystep Y"
161
 #define MSG_BABYSTEP_Y                      "Babystep Y"
186
   #define MSG_INFO_PRINT_COUNT              "Contat. stampa"
194
   #define MSG_INFO_PRINT_COUNT              "Contat. stampa"
187
   #define MSG_INFO_COMPLETED_PRINTS         "Completati"
195
   #define MSG_INFO_COMPLETED_PRINTS         "Completati"
188
   #define MSG_INFO_PRINT_TIME               "Tempo totale"
196
   #define MSG_INFO_PRINT_TIME               "Tempo totale"
189
-  #define MSG_INFO_PRINT_LONGEST            "Lavoro piu lungo"
197
+  #if ENABLED(DOGLCD)
198
+    #define MSG_INFO_PRINT_LONGEST          "Lavoro più lungo"
199
+  #else
200
+    #define MSG_INFO_PRINT_LONGEST          "Lavoro piu lungo"
201
+  #endif
190
   #define MSG_INFO_PRINT_FILAMENT           "Totale estruso"
202
   #define MSG_INFO_PRINT_FILAMENT           "Totale estruso"
191
 #else
203
 #else
192
   #define MSG_INFO_PRINT_COUNT              "Stampe"
204
   #define MSG_INFO_PRINT_COUNT              "Stampe"
193
   #define MSG_INFO_COMPLETED_PRINTS         "Completati"
205
   #define MSG_INFO_COMPLETED_PRINTS         "Completati"
194
   #define MSG_INFO_PRINT_TIME               "Durata"
206
   #define MSG_INFO_PRINT_TIME               "Durata"
195
-  #define MSG_INFO_PRINT_LONGEST            "Piu lungo"
207
+  #if ENABLED(DOGLCD)
208
+    #define MSG_INFO_PRINT_LONGEST          "Più lungo"
209
+  #else
210
+    #define MSG_INFO_PRINT_LONGEST          "Piu lungo"
211
+  #endif
196
   #define MSG_INFO_PRINT_FILAMENT           "Estruso"
212
   #define MSG_INFO_PRINT_FILAMENT           "Estruso"
197
 #endif
213
 #endif
198
 #define MSG_INFO_MIN_TEMP                   "Temp min"
214
 #define MSG_INFO_MIN_TEMP                   "Temp min"

Loading…
Cancel
Save