mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-25 07:33:57 -06:00
Update status text for consistency
This commit is contained in:
parent
4bfa0f3bb1
commit
b14bc477bf
2 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue