mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-09 05:49:09 -07:00
Improve clarity of some error messages
This commit is contained in:
@@ -596,7 +596,7 @@ void cli_plugin_wrapper(const char* name, Cli* cli, FuriString* args, void* cont
|
||||
handler(cli, args, context);
|
||||
} else {
|
||||
printf(
|
||||
"CLI plugin '%s' failed (code %" PRIu16 "), update firmware or check logs\r\n",
|
||||
"CLI plugin '%s' failed (code %" PRIu16 "), reinstall firmware or check logs\r\n",
|
||||
name,
|
||||
error);
|
||||
}
|
||||
|
||||
@@ -107,7 +107,7 @@ static void loader_show_gui_error(
|
||||
Storage* storage = furi_record_open(RECORD_STORAGE);
|
||||
if(storage_sd_status(storage) == FSE_OK) {
|
||||
header = "Update needed";
|
||||
text = "Update firmware\nto run this app";
|
||||
text = "Reinstall firmware\nto run this app";
|
||||
} else {
|
||||
header = "SD card needed";
|
||||
text = "Install SD card\nto run this app";
|
||||
|
||||
@@ -46,10 +46,10 @@ int32_t loader_menu_storage_settings(void* context) {
|
||||
dialog_ex_set_header(dialog_ex, "Update needed", 64, 0, AlignCenter, AlignTop);
|
||||
dialog_ex_set_text(
|
||||
dialog_ex,
|
||||
"Update firmware\n"
|
||||
"to run this app\n"
|
||||
"Reinstall firmware\n"
|
||||
"to run this app.\n"
|
||||
"Can format SD\n"
|
||||
"here if needed",
|
||||
"here if needed.",
|
||||
3,
|
||||
17,
|
||||
AlignLeft,
|
||||
|
||||
Reference in New Issue
Block a user