From 1c7bd17e601f446c0c5497678a71c2e86316bb4a Mon Sep 17 00:00:00 2001
From: Kaibob2 <Kai@kaifehlis.de>
Date: Tue, 9 Aug 2016 20:49:26 +0200
Subject: [PATCH] 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 :(
---
 Marlin/language_de.h | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Marlin/language_de.h b/Marlin/language_de.h
index dbbac1764e4..11d7d6f887b 100644
--- a/Marlin/language_de.h
+++ b/Marlin/language_de.h
@@ -69,7 +69,11 @@
 #define MSG_MOVE_X                          "X"
 #define MSG_MOVE_Y                          "Y"
 #define MSG_MOVE_Z                          "Z"
-#define MSG_MOVE_E                          "E"
+#define MSG_MOVE_E                          "Extruder "
+#define MSG_MOVE_E1                         "0"
+#define MSG_MOVE_E2                         "1"
+#define MSG_MOVE_E3                         "2"
+#define MSG_MOVE_E4                         "3"
 #define MSG_MOVE_01MM                       " 0.1 mm"
 #define MSG_MOVE_1MM                        " 1.0 mm"
 #define MSG_MOVE_10MM                       "10.0 mm"