|
@@ -1320,7 +1320,7 @@ void lcd_commands()
|
|
|
strcat(cmd1, ftostr3(pid_temp));
|
|
|
|
|
|
enquecommand(cmd1);
|
|
|
- lcd_setstatuspgm(_i("PID cal. "));
|
|
|
+ lcd_setstatuspgm(_i("PID cal."));
|
|
|
lcd_commands_step = 2;
|
|
|
}
|
|
|
if (lcd_commands_step == 2 && pid_tuning_finished) {
|
|
@@ -4285,7 +4285,7 @@ static void lcd_silent_mode_set() {
|
|
|
}
|
|
|
eeprom_update_byte((unsigned char *)EEPROM_SILENT, SilentModeMenu);
|
|
|
#ifdef TMC2130
|
|
|
- lcd_display_message_fullscreen_P(_i("Mode change in progress ..."));
|
|
|
+ lcd_display_message_fullscreen_P(_i("Mode change in progress..."));
|
|
|
|
|
|
|
|
|
st_synchronize();
|
|
@@ -5697,9 +5697,9 @@ static void lcd_calibration_menu()
|
|
|
}
|
|
|
MENU_ITEM_GCODE_P(_T(MSG_AUTO_HOME), PSTR("G28 W"));
|
|
|
#ifdef TMC2130
|
|
|
- MENU_ITEM_FUNCTION_P(_i("Belt test "), lcd_belttest_v);
|
|
|
+ MENU_ITEM_FUNCTION_P(_i("Belt test"), lcd_belttest_v);
|
|
|
#endif
|
|
|
- MENU_ITEM_FUNCTION_P(_i("Selftest "), lcd_selftest_v);
|
|
|
+ MENU_ITEM_FUNCTION_P(_i("Selftest"), lcd_selftest_v);
|
|
|
#ifdef MK1BP
|
|
|
|
|
|
|
|
@@ -6666,7 +6666,7 @@ static void lcd_main_menu()
|
|
|
}
|
|
|
|
|
|
if (!is_usb_printing && (lcd_commands_type != LcdCommands::Layer1Cal)) {
|
|
|
- MENU_ITEM_SUBMENU_P(_i("Statistics "), lcd_menu_statistics);
|
|
|
+ MENU_ITEM_SUBMENU_P(_i("Statistics"), lcd_menu_statistics);
|
|
|
}
|
|
|
|
|
|
#if defined(TMC2130) || defined(FILAMENT_SENSOR)
|
|
@@ -7385,7 +7385,7 @@ bool lcd_selftest()
|
|
|
#endif
|
|
|
lcd_wait_for_cool_down();
|
|
|
lcd_clear();
|
|
|
- lcd_puts_at_P(0, 0, _i("Self test start "));
|
|
|
+ lcd_puts_at_P(0, 0, _i("Self test start"));
|
|
|
#ifdef TMC2130
|
|
|
FORCE_HIGH_POWER_START;
|
|
|
#endif
|
|
@@ -8059,8 +8059,8 @@ static void lcd_selftest_error(TestError testError, const char *_error_1, const
|
|
|
|
|
|
lcd_clear();
|
|
|
|
|
|
- lcd_puts_at_P(0, 0, _i("Selftest error !"));
|
|
|
- lcd_puts_at_P(0, 1, _i("Please check :"));
|
|
|
+ lcd_puts_at_P(0, 0, _i("Selftest error!"));
|
|
|
+ lcd_puts_at_P(0, 1, _i("Please check:"));
|
|
|
|
|
|
switch (testError)
|
|
|
{
|
|
@@ -8069,7 +8069,7 @@ static void lcd_selftest_error(TestError testError, const char *_error_1, const
|
|
|
lcd_puts_at_P(0, 3, _i("Not connected"));
|
|
|
break;
|
|
|
case TestError::Bed:
|
|
|
- lcd_puts_at_P(0, 2, _i("Bed / Heater"));
|
|
|
+ lcd_puts_at_P(0, 2, _i("Bed/Heater"));
|
|
|
lcd_puts_at_P(0, 3, _T(MSG_SELFTEST_WIRINGERROR));
|
|
|
break;
|
|
|
case TestError::Endstops:
|
|
@@ -8425,10 +8425,10 @@ static int lcd_selftest_screen(TestScreen screen, int _progress, int _progress_s
|
|
|
if (screen == TestScreen::AxisZ) lcd_puts_P(_i("Checking Z axis"));
|
|
|
if (screen == TestScreen::Bed) lcd_puts_P(_T(MSG_SELFTEST_CHECK_BED));
|
|
|
if (screen == TestScreen::Hotend
|
|
|
- || screen == TestScreen::HotendOk) lcd_puts_P(_i("Checking hotend "));
|
|
|
+ || screen == TestScreen::HotendOk) lcd_puts_P(_i("Checking hotend"));
|
|
|
if (screen == TestScreen::Fsensor) lcd_puts_P(_T(MSG_SELFTEST_CHECK_FSENSOR));
|
|
|
if (screen == TestScreen::FsensorOk) lcd_puts_P(_T(MSG_SELFTEST_CHECK_FSENSOR));
|
|
|
- if (screen == TestScreen::AllCorrect) lcd_puts_P(_i("All correct "));
|
|
|
+ if (screen == TestScreen::AllCorrect) lcd_puts_P(_i("All correct"));
|
|
|
if (screen == TestScreen::Failed) lcd_puts_P(_T(MSG_SELFTEST_FAILED));
|
|
|
if (screen == TestScreen::Home) lcd_puts_P(_i("Calibrating home"));
|
|
|
|