Browse Source

Update language_de.h with MSG_MOVE_E1 - E4

MSG_MOVE_E1 was missing
MSG_MOVE_E2 was missing
MSG_MOVE_E3 was missing
MSG_MOVE_E4 was missing

I assigned "0" to "MSG_MOVE_E1", "1" to "MSG_MOVE_E2" and so on, as this is what i assume to be the standard naming for the first (E0) and second (E1) extruder. This would have to be changed inthe other languages too :(
Kaibob2 8 years ago
parent
commit
1c7bd17e60
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      Marlin/language_de.h

+ 5
- 1
Marlin/language_de.h View File

69
 #define MSG_MOVE_X                          "X"
69
 #define MSG_MOVE_X                          "X"
70
 #define MSG_MOVE_Y                          "Y"
70
 #define MSG_MOVE_Y                          "Y"
71
 #define MSG_MOVE_Z                          "Z"
71
 #define MSG_MOVE_Z                          "Z"
72
-#define MSG_MOVE_E                          "E"
72
+#define MSG_MOVE_E                          "Extruder "
73
+#define MSG_MOVE_E1                         "0"
74
+#define MSG_MOVE_E2                         "1"
75
+#define MSG_MOVE_E3                         "2"
76
+#define MSG_MOVE_E4                         "3"
73
 #define MSG_MOVE_01MM                       " 0.1 mm"
77
 #define MSG_MOVE_01MM                       " 0.1 mm"
74
 #define MSG_MOVE_1MM                        " 1.0 mm"
78
 #define MSG_MOVE_1MM                        " 1.0 mm"
75
 #define MSG_MOVE_10MM                       "10.0 mm"
79
 #define MSG_MOVE_10MM                       "10.0 mm"

Loading…
Cancel
Save