mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-11 16:57:51 -06:00
Add missing translation calls and contexts
This commit is contained in:
parent
db74d4016e
commit
ca2d2f4cb2
4 changed files with 64 additions and 31 deletions
|
@ -23,7 +23,8 @@ Rectangle {
|
|||
font.pointSize: UM.Theme.largeTextSize;
|
||||
color: "white";
|
||||
|
||||
text: "Save";
|
||||
//: Save file to disk button
|
||||
text: qsTr("Save");
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
|
@ -68,12 +69,14 @@ Rectangle {
|
|||
states: [
|
||||
State {
|
||||
name: 'sdcard';
|
||||
PropertyChanges { target: label; text: 'Write to SD'; }
|
||||
//: Write to SD card button
|
||||
PropertyChanges { target: label; text: qsTr("Write to SD"); }
|
||||
PropertyChanges { target: iconImage; source: UM.Resources.getIcon('sdcard.png'); }
|
||||
},
|
||||
State {
|
||||
name: 'usb';
|
||||
PropertyChanges { target: label; text: 'Send over USB'; }
|
||||
//: Send print over USB button
|
||||
PropertyChanges { target: label; text: qsTr("Send over USB"); }
|
||||
PropertyChanges { target: iconImage; source: UM.Resources.getIcon('usb.png'); }
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue