Browse Source

Fix English special symbols (#12529)

Ludy 6 years ago
parent
commit
e5019a0481
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      Marlin/src/lcd/language/language_en.h

+ 4
- 1
Marlin/src/lcd/language/language_en.h View File

28
  * See also http://marlinfw.org/docs/development/lcd_language.html
28
  * See also http://marlinfw.org/docs/development/lcd_language.html
29
  *
29
  *
30
  */
30
  */
31
-#define THIS_LANGUAGES_SPECIAL_SYMBOLS        _UxGT("³")
32
 
31
 
33
 #define en 1234
32
 #define en 1234
34
 #if LCD_LANGUAGE == en
33
 #if LCD_LANGUAGE == en
36
 #endif
35
 #endif
37
 #undef en
36
 #undef en
38
 
37
 
38
+#ifndef THIS_LANGUAGES_SPECIAL_SYMBOLS
39
+  #define THIS_LANGUAGES_SPECIAL_SYMBOLS      _UxGT("³")
40
+#endif
41
+
39
 #ifdef NOT_EXTENDED_ISO10646_1_5X7
42
 #ifdef NOT_EXTENDED_ISO10646_1_5X7
40
   #define MSG_CUBED                           _UxGT("^3")
43
   #define MSG_CUBED                           _UxGT("^3")
41
 #else
44
 #else

Loading…
Cancel
Save