From 2715ef604dccc72027d1572649474d733a039807 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Wed, 27 Sep 2017 17:31:26 +0200 Subject: [PATCH] Use lower case text for translation, then transform to upper case The formatting is done in QML, regardless of how the data looks. Contributes to issue CURA-4341. --- plugins/UM3NetworkPrinting/ClusterControlItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/UM3NetworkPrinting/ClusterControlItem.qml b/plugins/UM3NetworkPrinting/ClusterControlItem.qml index 6558720943..be86e04185 100644 --- a/plugins/UM3NetworkPrinting/ClusterControlItem.qml +++ b/plugins/UM3NetworkPrinting/ClusterControlItem.qml @@ -33,7 +33,7 @@ Component { id: printerGroupLabel anchors.top: activePrintersLabel.bottom - text: catalog.i18nc("@label", "PRINTER GROUP") + text: catalog.i18nc("@label", "Printer Group").toUpperCase() anchors.horizontalCenter: parent.horizontalCenter font: UM.Theme.getFont("very_small") opacity: 0.65