Update status text for consistency

This commit is contained in:
fieldOfView 2016-09-12 18:46:09 +02:00
parent 4bfa0f3bb1
commit b14bc477bf
2 changed files with 3 additions and 3 deletions

View file

@ -89,7 +89,7 @@ Rectangle
if(printerOutputDevice.printerState == "maintenance") if(printerOutputDevice.printerState == "maintenance")
{ {
return catalog.i18nc("@label:MonitorStatus", "Printer is in maintenance mode."); return catalog.i18nc("@label:MonitorStatus", "In maintenance. Please check the printer");
} }
switch(printerOutputDevice.jobState) switch(printerOutputDevice.jobState)
{ {

View file

@ -185,8 +185,8 @@ UM.ManagementPage
return catalog.i18nc("@label:MonitorStatus", "Waiting for someone to clear the build plate"); return catalog.i18nc("@label:MonitorStatus", "Waiting for someone to clear the build plate");
case "error": case "error":
return printerOutputDevice.errorText; return printerOutputDevice.errorText;
case "maintenance": // note sure if this jobState actually occurs in the wild case "maintenance":
return catalog.i18nc("@label:MonitorStatus", "Busy; please check the printer"); return catalog.i18nc("@label:MonitorStatus", "In maintenance. Please check the printer");
case "abort": // note sure if this jobState actually occurs in the wild case "abort": // note sure if this jobState actually occurs in the wild
return catalog.i18nc("@label:MonitorStatus", "Aborting print..."); return catalog.i18nc("@label:MonitorStatus", "Aborting print...");
case "ready": // ready to print or getting ready case "ready": // ready to print or getting ready