mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-19 20:57:49 -06:00
Mark some more strings as translatable
This commit is contained in:
parent
ca2d2f4cb2
commit
50f02726a3
1 changed files with 10 additions and 4 deletions
|
@ -69,14 +69,20 @@ Rectangle {
|
||||||
states: [
|
states: [
|
||||||
State {
|
State {
|
||||||
name: 'sdcard';
|
name: 'sdcard';
|
||||||
|
PropertyChanges {
|
||||||
|
target: label;
|
||||||
//: Write to SD card button
|
//: Write to SD card button
|
||||||
PropertyChanges { target: label; text: qsTr("Write to SD"); }
|
text: qsTr("Write to SD");
|
||||||
|
}
|
||||||
PropertyChanges { target: iconImage; source: UM.Resources.getIcon('sdcard.png'); }
|
PropertyChanges { target: iconImage; source: UM.Resources.getIcon('sdcard.png'); }
|
||||||
},
|
},
|
||||||
State {
|
State {
|
||||||
name: 'usb';
|
name: 'usb';
|
||||||
|
PropertyChanges {
|
||||||
|
target: label
|
||||||
//: Send print over USB button
|
//: Send print over USB button
|
||||||
PropertyChanges { target: label; text: qsTr("Send over USB"); }
|
text: qsTr("Send over USB");
|
||||||
|
}
|
||||||
PropertyChanges { target: iconImage; source: UM.Resources.getIcon('usb.png'); }
|
PropertyChanges { target: iconImage; source: UM.Resources.getIcon('usb.png'); }
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue