More translatable LCD strings (#15190)

This commit is contained in:
Ludy
2019-09-08 07:15:25 +02:00
committed by Scott Lahteine
parent ec3f29a33a
commit 068c303742
7 changed files with 80 additions and 21 deletions

View File

@@ -289,11 +289,11 @@ void DGUSScreenVariableHandler::DGUSLCD_SendStringToDisplayPGM(DGUS_VP_Variable
// Don't let the user in the dark why there is no reaction.
if (!ExtUI::isMediaInserted()) {
setstatusmessagePGM(PSTR("No SD Card"));
setstatusmessagePGM(PSTR(MSG_NO_MEDIA));
return;
}
if (card.flag.abort_sd_printing) {
setstatusmessagePGM(PSTR("Aborting..."));
setstatusmessagePGM(PSTR(MSG_MEDIA_ABORTING));
return;
}
}