Add missing translation markers

This commit is contained in:
Arjen Hiemstra 2015-05-07 16:33:37 +02:00
parent ef62725cc1
commit acf5120cff
13 changed files with 76 additions and 40 deletions

View file

@ -1,6 +1,7 @@
import QtQuick 2.1
import QtQuick.Controls 1.1
import QtQuick.Layouts 1.1
Rectangle
{
width: 300; height: 100
@ -10,11 +11,13 @@ Rectangle
{
Text
{
text: "extruder temperature " + manager.extruderTemperature
//: USB Printing dialog label, %1 is head temperature
text: qsTr("Extruder Temperature %1").arg(manager.extruderTemperature)
}
Text
{
text: "bed temperature " + manager.bedTemperature
//: USB Printing dialog label, %1 is bed temperature
text: qsTr("Bed Temperature %1").arg(manager.bedTemperature)
}
Text
{
@ -26,13 +29,15 @@ Rectangle
{
Button
{
text: "Print"
//: USB Printing dialog start print button
text: qsTr("Print");
onClicked: { manager.startPrint() }
enabled: manager.progress == 0 ? true : false
}
Button
{
text: "Cancel"
//: USB Printing dialog cancel print button
text: qsTr("Cancel");
onClicked: { manager.cancelPrint() }
enabled: manager.progress == 0 ? false: true
}
@ -52,4 +57,4 @@ Rectangle
height: 25
}
}
}
}