From b14bc477bfbe4f2d6f0392d123bd50ffffd88e26 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Mon, 12 Sep 2016 18:46:09 +0200 Subject: [PATCH] Update status text for consistency --- resources/qml/MonitorButton.qml | 2 +- resources/qml/Preferences/MachinesPage.qml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/qml/MonitorButton.qml b/resources/qml/MonitorButton.qml index 9c433cda5f..082363496a 100644 --- a/resources/qml/MonitorButton.qml +++ b/resources/qml/MonitorButton.qml @@ -89,7 +89,7 @@ Rectangle 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) { diff --git a/resources/qml/Preferences/MachinesPage.qml b/resources/qml/Preferences/MachinesPage.qml index 8c1e061026..a5e985efe0 100644 --- a/resources/qml/Preferences/MachinesPage.qml +++ b/resources/qml/Preferences/MachinesPage.qml @@ -185,8 +185,8 @@ UM.ManagementPage return catalog.i18nc("@label:MonitorStatus", "Waiting for someone to clear the build plate"); case "error": return printerOutputDevice.errorText; - case "maintenance": // note sure if this jobState actually occurs in the wild - return catalog.i18nc("@label:MonitorStatus", "Busy; please check the printer"); + case "maintenance": + return catalog.i18nc("@label:MonitorStatus", "In maintenance. Please check the printer"); case "abort": // note sure if this jobState actually occurs in the wild return catalog.i18nc("@label:MonitorStatus", "Aborting print..."); case "ready": // ready to print or getting ready