Remove duplicate string `Total failures` using `MSG_TOTAL_FAILURES`

This commit is contained in:
3d-gussner 2021-01-25 18:06:47 +01:00
parent 8f0a45e8a4
commit 99867c8fbd
10 changed files with 18 additions and 16 deletions

View File

@ -88,6 +88,7 @@ const char MSG_SELFTEST_FILAMENT_SENSOR[] PROGMEM_I1 = ISTR("Filament sensor");
const char MSG_SELFTEST_WIRINGERROR[] PROGMEM_I1 = ISTR("Wiring error"); //// const char MSG_SELFTEST_WIRINGERROR[] PROGMEM_I1 = ISTR("Wiring error"); ////
const char MSG_SETTINGS[] PROGMEM_I1 = ISTR("Settings"); //// const char MSG_SETTINGS[] PROGMEM_I1 = ISTR("Settings"); ////
const char MSG_TOTAL[] PROGMEM_I1 = ISTR("Total"); ////c=6 const char MSG_TOTAL[] PROGMEM_I1 = ISTR("Total"); ////c=6
const char MSG_TOTAL_FAILURES[] PROGMEM_I1 = ISTR("Total failures"); ////c=20
const char MSG_HW_SETUP[] PROGMEM_I1 = ISTR("HW Setup"); ////c=18 const char MSG_HW_SETUP[] PROGMEM_I1 = ISTR("HW Setup"); ////c=18
const char MSG_MODE[] PROGMEM_I1 = ISTR("Mode"); //// const char MSG_MODE[] PROGMEM_I1 = ISTR("Mode"); ////
const char MSG_HIGH_POWER[] PROGMEM_I1 = ISTR("High power"); //// const char MSG_HIGH_POWER[] PROGMEM_I1 = ISTR("High power"); ////

View File

@ -88,6 +88,7 @@ extern const char MSG_SELFTEST_FILAMENT_SENSOR[];
extern const char MSG_SELFTEST_WIRINGERROR[]; extern const char MSG_SELFTEST_WIRINGERROR[];
extern const char MSG_SETTINGS[]; extern const char MSG_SETTINGS[];
extern const char MSG_TOTAL[]; extern const char MSG_TOTAL[];
extern const char MSG_TOTAL_FAILURES[];
extern const char MSG_HW_SETUP[]; extern const char MSG_HW_SETUP[];
extern const char MSG_MODE[]; extern const char MSG_MODE[];
extern const char MSG_HIGH_POWER[]; extern const char MSG_HIGH_POWER[];

View File

@ -1680,7 +1680,7 @@ static void lcd_menu_fails_stats_mmu_print()
//! //!
//! @code{.unparsed} //! @code{.unparsed}
//! |01234567890123456789| //! |01234567890123456789|
//! |Total failures | c=20 r=1 //! |Total failures | MSG_TOTAL_FAILURES c=20
//! | MMU fails: 000| MSG_MMU_FAILS c=14 //! | MMU fails: 000| MSG_MMU_FAILS c=14
//! | MMU load fails: 000| MSG_MMU_LOAD_FAILS c=14 //! | MMU load fails: 000| MSG_MMU_LOAD_FAILS c=14
//! | MMU power fails:000| c=14 r=1 //! | MMU power fails:000| c=14 r=1
@ -1695,9 +1695,9 @@ static void lcd_menu_fails_stats_mmu_total()
uint16_t load_fails = eeprom_read_byte((uint8_t*)EEPROM_MMU_LOAD_FAIL_TOT); uint16_t load_fails = eeprom_read_byte((uint8_t*)EEPROM_MMU_LOAD_FAIL_TOT);
lcd_home(); lcd_home();
lcd_printf_P(PSTR("%S\n" " %-16.16S%-3d\n" " %-16.16S%-3d\n" " %-16.16S%-3d"), lcd_printf_P(PSTR("%S\n" " %-16.16S%-3d\n" " %-16.16S%-3d\n" " %-16.16S%-3d"),
_i("Total failures"), ////c=20 r=1 _T(MSG_TOTAL_FAILURES), ////c=20
_T(MSG_MMU_FAILS), fails, ////c=14 r=1 _T(MSG_MMU_FAILS), fails, ////c=14
_T(MSG_MMU_LOAD_FAILS), load_fails, ////c=14 r=1 _T(MSG_MMU_LOAD_FAILS), load_fails, ////c=14
_i("MMU power fails"), mmu_power_failures); ////c=14 r=1 _i("MMU power fails"), mmu_power_failures); ////c=14 r=1
menu_back_if_clicked_fb(); menu_back_if_clicked_fb();
} }
@ -1709,7 +1709,7 @@ static const char failStatsFmt[] PROGMEM = "%S\n" " %-16.16S%-3d\n" " %-16.16S%-
//! //!
//! @code{.unparsed} //! @code{.unparsed}
//! |01234567890123456789| //! |01234567890123456789|
//! |Total failures | c=20 r=1 //! |Total failures | MSG_TOTAL_FAILURES c=20
//! | Power failures: 000| MSG_POWER_FAILURES c=14 //! | Power failures: 000| MSG_POWER_FAILURES c=14
//! | Filam. runouts: 000| c=14 r=1 //! | Filam. runouts: 000| c=14 r=1
//! | Crash X:000 Y:000| c=7 r=1 //! | Crash X:000 Y:000| c=7 r=1
@ -1725,8 +1725,8 @@ static void lcd_menu_fails_stats_total()
uint16_t crashY = eeprom_read_word((uint16_t*)EEPROM_CRASH_COUNT_Y_TOT); uint16_t crashY = eeprom_read_word((uint16_t*)EEPROM_CRASH_COUNT_Y_TOT);
lcd_home(); lcd_home();
lcd_printf_P(failStatsFmt, lcd_printf_P(failStatsFmt,
_i("Total failures"), ////c=20 r=1 _T(MSG_TOTAL_FAILURES), ////c=20
_T(MSG_POWER_FAILURES), power, ////c=14 r=1 _T(MSG_POWER_FAILURES), power, ////c=14
_i("Filam. runouts"), filam, ////c=14 r=1 _i("Filam. runouts"), filam, ////c=14 r=1
_i("Crash"), crashX, crashY); ////c=7 r=1 _i("Crash"), crashX, crashY); ////c=7 r=1
menu_back_if_clicked_fb(); menu_back_if_clicked_fb();
@ -1808,7 +1808,7 @@ static const char failStatsFmt[] PROGMEM = "%S\n" " %-16.16S%-3d\n" "%S\n" " %-1
//! |01234567890123456789| //! |01234567890123456789|
//! |Last print failures | c=20 r=1 //! |Last print failures | c=20 r=1
//! | Filam. runouts 000| c=14 r=1 //! | Filam. runouts 000| c=14 r=1
//! |Total failures | c=20 r=1 //! |Total failures | MSG_TOTAL_FAILURES c=20
//! | Filam. runouts 000| c=14 r=1 //! | Filam. runouts 000| c=14 r=1
//! ---------------------- //! ----------------------
//! @endcode //! @endcode
@ -1822,7 +1822,7 @@ static void lcd_menu_fails_stats()
lcd_printf_P(failStatsFmt, lcd_printf_P(failStatsFmt,
_i("Last print failures"), ////c=20 r=1 _i("Last print failures"), ////c=20 r=1
_i("Filam. runouts"), filamentLast, ////c=14 r=1 _i("Filam. runouts"), filamentLast, ////c=14 r=1
_i("Total failures"), ////c=20 r=1 _T(MSG_TOTAL_FAILURES), ////c=20
_i("Filam. runouts"), filamentTotal); ////c=14 r=1 _i("Filam. runouts"), filamentTotal); ////c=14 r=1
menu_back_if_clicked(); menu_back_if_clicked();

View File

@ -871,7 +871,7 @@
# #
"Unload" "Unload"
# #MSG_TOTAL_FAILURES c=20
"Total failures" "Total failures"
# #

View File

@ -1162,7 +1162,7 @@
"Unload" "Unload"
"Vysunout" "Vysunout"
# #MSG_TOTAL_FAILURES c=20
"Total failures" "Total failures"
"Celkem selhani" "Celkem selhani"

View File

@ -1162,7 +1162,7 @@
"Unload" "Unload"
"Entladen" "Entladen"
# #MSG_TOTAL_FAILURES c=20
"Total failures" "Total failures"
"Gesamte Fehler" "Gesamte Fehler"

View File

@ -1162,7 +1162,7 @@
"Unload" "Unload"
"Descargar" "Descargar"
# #MSG_TOTAL_FAILURES c=20
"Total failures" "Total failures"
"Fallos totales" "Fallos totales"

View File

@ -1162,7 +1162,7 @@
"Unload" "Unload"
"Decharger" "Decharger"
# #MSG_TOTAL_FAILURES c=20
"Total failures" "Total failures"
"Total des echecs" "Total des echecs"

View File

@ -1162,7 +1162,7 @@
"Unload" "Unload"
"Scarica" "Scarica"
# #MSG_TOTAL_FAILURES c=20
"Total failures" "Total failures"
"Totale fallimenti" "Totale fallimenti"

View File

@ -1162,7 +1162,7 @@
"Unload" "Unload"
"Rozladuj" "Rozladuj"
# #MSG_TOTAL_FAILURES c=20
"Total failures" "Total failures"
"Suma bledow" "Suma bledow"