From 50f02726a3accd0d65d6d088dc6a3237fe7d87a4 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Thu, 19 Feb 2015 17:36:12 +0100 Subject: [PATCH] Mark some more strings as translatable --- OutputGCodeButton.qml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/OutputGCodeButton.qml b/OutputGCodeButton.qml index b50ae580d3..0b1c64b3b9 100644 --- a/OutputGCodeButton.qml +++ b/OutputGCodeButton.qml @@ -69,14 +69,20 @@ Rectangle { states: [ State { name: 'sdcard'; - //: Write to SD card button - PropertyChanges { target: label; text: qsTr("Write to SD"); } + PropertyChanges { + target: label; + //: Write to SD card button + text: qsTr("Write to SD"); + } PropertyChanges { target: iconImage; source: UM.Resources.getIcon('sdcard.png'); } }, State { name: 'usb'; - //: Send print over USB button - PropertyChanges { target: label; text: qsTr("Send over USB"); } + PropertyChanges { + target: label + //: Send print over USB button + text: qsTr("Send over USB"); + } PropertyChanges { target: iconImage; source: UM.Resources.getIcon('usb.png'); } } ]