|
@@ -2121,7 +2121,7 @@ void kill_screen(const char* lcd_msg) {
|
2121
|
2121
|
char UBL_LCD_GCODE[25];
|
2122
|
2122
|
sprintf_P(UBL_LCD_GCODE, PSTR("G29 L%i"), ubl_storage_slot);
|
2123
|
2123
|
enqueue_and_echo_command(UBL_LCD_GCODE);
|
2124
|
|
- sprintf_P(UBL_LCD_GCODE, PSTR("M117 Map %i loaded."), ubl_storage_slot);
|
|
2124
|
+ sprintf_P(UBL_LCD_GCODE, PSTR("M117 " MSG_MESH_LOADED "."), ubl_storage_slot);
|
2125
|
2125
|
enqueue_and_echo_command(UBL_LCD_GCODE);
|
2126
|
2126
|
}
|
2127
|
2127
|
|
|
@@ -2132,7 +2132,7 @@ void kill_screen(const char* lcd_msg) {
|
2132
|
2132
|
char UBL_LCD_GCODE[25];
|
2133
|
2133
|
sprintf_P(UBL_LCD_GCODE, PSTR("G29 S%i"), ubl_storage_slot);
|
2134
|
2134
|
enqueue_and_echo_command(UBL_LCD_GCODE);
|
2135
|
|
- sprintf_P(UBL_LCD_GCODE, PSTR("M117 Map %i saved."), ubl_storage_slot);
|
|
2135
|
+ sprintf_P(UBL_LCD_GCODE, PSTR("M117 " MSG_MESH_SAVED "."), ubl_storage_slot);
|
2136
|
2136
|
enqueue_and_echo_command(UBL_LCD_GCODE);
|
2137
|
2137
|
}
|
2138
|
2138
|
|
|
@@ -2149,8 +2149,8 @@ void kill_screen(const char* lcd_msg) {
|
2149
|
2149
|
START_MENU();
|
2150
|
2150
|
MENU_BACK(MSG_UBL_LEVEL_BED);
|
2151
|
2151
|
if (!WITHIN(ubl_storage_slot, 0, a - 1)) {
|
2152
|
|
- STATIC_ITEM("No storage");
|
2153
|
|
- STATIC_ITEM("Initialize EEPROM");
|
|
2152
|
+ STATIC_ITEM(MSG_NO_STORAGE);
|
|
2153
|
+ STATIC_ITEM(MSG_INIT_EEPROM);
|
2154
|
2154
|
}
|
2155
|
2155
|
else {
|
2156
|
2156
|
MENU_ITEM_EDIT(int3, MSG_UBL_STORAGE_SLOT, &ubl_storage_slot, 0, a - 1);
|