Browse Source

Change "Bed Temperature" to "Build Plate Temperature"

UXD-80
fieldOfView 8 years ago
parent
commit
2963a64fc2

+ 1 - 1
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
             }
 

+ 3 - 3
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",

+ 1 - 1
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" : ""
         }
     }