From 2963a64fc2752743bf78c9114fc136572de0cf26 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Wed, 10 Aug 2016 17:15:26 +0200 Subject: [PATCH] Change "Bed Temperature" to "Build Plate Temperature" UXD-80 --- plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml | 2 +- resources/definitions/fdmprinter.def.json | 6 +++--- resources/qml/PrintMonitor.qml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml b/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml index 0bdbc27527..6832883c79 100644 --- a/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml +++ b/plugins/UltimakerMachineActions/UMOCheckupMachineAction.qml @@ -220,7 +220,7 @@ Cura.MachineAction anchors.left: parent.left anchors.top: nozzleTempLabel.bottom wrapMode: Text.WordWrap - text: catalog.i18nc("@label","Bed temperature check:") + text: catalog.i18nc("@label","Build plate temperature check:") visible: checkupMachineAction.usbConnected && manager.hasHeatedBed } diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index d1be9cc347..9aca3759be 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -67,8 +67,8 @@ }, "material_bed_temp_wait": { - "label": "Wait for bed heatup", - "description": "Whether to insert a command to wait until the bed temperature is reached at the start.", + "label": "Wait for build plate heatup", + "description": "Whether to insert a command to wait until the build plate temperature is reached at the start.", "default_value": true, "type": "bool", "settable_per_mesh": false, @@ -1085,7 +1085,7 @@ "settable_per_extruder": true }, "material_bed_temperature": { - "label": "Bed Temperature", + "label": "Build Plate Temperature", "description": "The temperature used for the heated bed. Set at 0 to pre-heat the printer manually.", "unit": "°C", "type": "float", diff --git a/resources/qml/PrintMonitor.qml b/resources/qml/PrintMonitor.qml index 6460634d8d..875ab9ed97 100644 --- a/resources/qml/PrintMonitor.qml +++ b/resources/qml/PrintMonitor.qml @@ -44,7 +44,7 @@ Column delegate: Loader { sourceComponent: monitorItem - property string label: catalog.i18nc("@label", "Bed Temperature") + property string label: catalog.i18nc("@label", "Build plate") property string value: printerConnected ? Math.round(connectedPrinter.bedTemperature) + "°C" : "" } }