Shorter strings for smaller LCDs
This commit is contained in:
parent
982f10e6a0
commit
a06c5165a7
1 changed files with 77 additions and 56 deletions
|
@ -566,6 +566,16 @@
|
||||||
#ifndef MSG_FILAMENT_CHANGE_HEADER
|
#ifndef MSG_FILAMENT_CHANGE_HEADER
|
||||||
#define MSG_FILAMENT_CHANGE_HEADER "CHANGE FILAMENT"
|
#define MSG_FILAMENT_CHANGE_HEADER "CHANGE FILAMENT"
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef MSG_FILAMENT_CHANGE_OPTION_HEADER
|
||||||
|
#define MSG_FILAMENT_CHANGE_OPTION_HEADER "CHANGE OPTIONS:"
|
||||||
|
#endif
|
||||||
|
#ifndef MSG_FILAMENT_CHANGE_OPTION_EXTRUDE
|
||||||
|
#define MSG_FILAMENT_CHANGE_OPTION_EXTRUDE "Extrude more"
|
||||||
|
#endif
|
||||||
|
#ifndef MSG_FILAMENT_CHANGE_OPTION_RESUME
|
||||||
|
#define MSG_FILAMENT_CHANGE_OPTION_RESUME "Resume print"
|
||||||
|
#endif
|
||||||
|
#if LCD_HEIGHT >= 4
|
||||||
#ifndef MSG_FILAMENT_CHANGE_INIT_1
|
#ifndef MSG_FILAMENT_CHANGE_INIT_1
|
||||||
#define MSG_FILAMENT_CHANGE_INIT_1 "Wait for start"
|
#define MSG_FILAMENT_CHANGE_INIT_1 "Wait for start"
|
||||||
#endif
|
#endif
|
||||||
|
@ -611,15 +621,6 @@
|
||||||
#ifndef MSG_FILAMENT_CHANGE_EXTRUDE_3
|
#ifndef MSG_FILAMENT_CHANGE_EXTRUDE_3
|
||||||
#define MSG_FILAMENT_CHANGE_EXTRUDE_3 ""
|
#define MSG_FILAMENT_CHANGE_EXTRUDE_3 ""
|
||||||
#endif
|
#endif
|
||||||
#ifndef MSG_FILAMENT_CHANGE_OPTION_HEADER
|
|
||||||
#define MSG_FILAMENT_CHANGE_OPTION_HEADER "WHAT NEXT?"
|
|
||||||
#endif
|
|
||||||
#ifndef MSG_FILAMENT_CHANGE_OPTION_EXTRUDE
|
|
||||||
#define MSG_FILAMENT_CHANGE_OPTION_EXTRUDE "Extrude more"
|
|
||||||
#endif
|
|
||||||
#ifndef MSG_FILAMENT_CHANGE_OPTION_RESUME
|
|
||||||
#define MSG_FILAMENT_CHANGE_OPTION_RESUME "Resume print"
|
|
||||||
#endif
|
|
||||||
#ifndef MSG_FILAMENT_CHANGE_RESUME_1
|
#ifndef MSG_FILAMENT_CHANGE_RESUME_1
|
||||||
#define MSG_FILAMENT_CHANGE_RESUME_1 "Wait for print"
|
#define MSG_FILAMENT_CHANGE_RESUME_1 "Wait for print"
|
||||||
#endif
|
#endif
|
||||||
|
@ -629,5 +630,25 @@
|
||||||
#ifndef MSG_FILAMENT_CHANGE_RESUME_3
|
#ifndef MSG_FILAMENT_CHANGE_RESUME_3
|
||||||
#define MSG_FILAMENT_CHANGE_RESUME_3 ""
|
#define MSG_FILAMENT_CHANGE_RESUME_3 ""
|
||||||
#endif
|
#endif
|
||||||
|
#else // LCD_HEIGHT < 4
|
||||||
|
#ifndef MSG_FILAMENT_CHANGE_INIT_1
|
||||||
|
#define MSG_FILAMENT_CHANGE_INIT_1 "Please wait..."
|
||||||
|
#endif
|
||||||
|
#ifndef MSG_FILAMENT_CHANGE_UNLOAD_1
|
||||||
|
#define MSG_FILAMENT_CHANGE_UNLOAD_1 "Ejecting..."
|
||||||
|
#endif
|
||||||
|
#ifndef MSG_FILAMENT_CHANGE_INSERT_1
|
||||||
|
#define MSG_FILAMENT_CHANGE_INSERT_1 "Insert and Click"
|
||||||
|
#endif
|
||||||
|
#ifndef MSG_FILAMENT_CHANGE_LOAD_1
|
||||||
|
#define MSG_FILAMENT_CHANGE_LOAD_1 "Loading..."
|
||||||
|
#endif
|
||||||
|
#ifndef MSG_FILAMENT_CHANGE_EXTRUDE_1
|
||||||
|
#define MSG_FILAMENT_CHANGE_EXTRUDE_1 "Extruding..."
|
||||||
|
#endif
|
||||||
|
#ifndef MSG_FILAMENT_CHANGE_RESUME_1
|
||||||
|
#define MSG_FILAMENT_CHANGE_RESUME_1 "Resuming..."
|
||||||
|
#endif
|
||||||
|
#endif // LCD_HEIGHT < 4
|
||||||
|
|
||||||
#endif // LANGUAGE_EN_H
|
#endif // LANGUAGE_EN_H
|
||||||
|
|
Reference in a new issue