Superscript substitution (#20219)

Co-authored-by: Scott Lahteine <github@thinkyhead.com>
This commit is contained in:
Simone Primarosa
2020-11-21 03:36:19 +01:00
committed by Scott Lahteine
parent d5e13f255d
commit 7f91ff07c4
30 changed files with 44 additions and 40 deletions

View File

@ -380,6 +380,10 @@
#define LCD_STR_E6 "E" LCD_STR_N6
#define LCD_STR_E7 "E" LCD_STR_N7
// Use superscripts, if possible. Evaluated at point of use.
#define SUPERSCRIPT_TWO TERN(NOT_EXTENDED_ISO10646_1_5X7, "^2", "²")
#define SUPERSCRIPT_THREE TERN(NOT_EXTENDED_ISO10646_1_5X7, "^3", "³")
#include "multi_language.h" // Allow multiple languages
#include "../lcd/language/language_en.h"