MarlinUI multi-language support (#20725)

This commit is contained in:
Scott Lahteine
2021-01-20 18:52:06 -06:00
committed by GitHub
parent 00bc094914
commit 68abaeab19
16 changed files with 202 additions and 26 deletions

View File

@@ -97,6 +97,10 @@ void menu_configuration();
void menu_spindle_laser();
#endif
#if HAS_MULTI_LANGUAGE
void menu_language();
#endif
extern const char M21_STR[];
void menu_main() {
@@ -325,6 +329,10 @@ void menu_main() {
}
#endif
#if HAS_MULTI_LANGUAGE
SUBMENU(LANGUAGE, menu_language);
#endif
END_MENU();
}