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

@ -15,11 +15,13 @@ UM.Dialog {
anchors.fill: parent;
Label {
//: Add Printer wizard page title
text: qsTr("Add Printer");
font.pointSize: 18;
}
Label {
//: Add Printer wizard page description
text: qsTr("Please select the type of printer:");
}
@ -34,6 +36,7 @@ UM.Dialog {
}
Label {
//: Add Printer wizard field label
text: qsTr("Printer Name:");
}
@ -46,6 +49,7 @@ UM.Dialog {
rightButtons: [
Button {
//: Add Printer wizarad button
text: qsTr("Next");
onClicked: {
if(machineList.currentIndex != -1) {
@ -55,6 +59,7 @@ UM.Dialog {
}
},
Button {
//: Add Printer wizarad button
text: qsTr("Cancel");
onClicked: base.visible = false;
}