mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 14:44:13 -06:00
15.10 Changes the label names for the different action buttons
Contributes to: issue CURA-60
This commit is contained in:
parent
b799acafab
commit
43aee84f12
1 changed files with 9 additions and 9 deletions
|
@ -43,7 +43,7 @@ Item {
|
|||
Action {
|
||||
id: undoAction;
|
||||
//: Undo action
|
||||
text: qsTr("&Undo");
|
||||
text: qsTr("Undo");
|
||||
iconName: "edit-undo";
|
||||
shortcut: StandardKey.Undo;
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ Item {
|
|||
Action {
|
||||
id: redoAction;
|
||||
//: Redo action
|
||||
text: qsTr("&Redo");
|
||||
text: qsTr("Redo");
|
||||
iconName: "edit-redo";
|
||||
shortcut: StandardKey.Redo;
|
||||
}
|
||||
|
@ -59,7 +59,7 @@ Item {
|
|||
Action {
|
||||
id: quitAction;
|
||||
//: Quit action
|
||||
text: qsTr("&Quit");
|
||||
text: qsTr("Quit");
|
||||
iconName: "application-exit";
|
||||
shortcut: StandardKey.Quit;
|
||||
}
|
||||
|
@ -67,20 +67,20 @@ Item {
|
|||
Action {
|
||||
id: preferencesAction;
|
||||
//: Preferences action
|
||||
text: qsTr("&Preferences...");
|
||||
text: qsTr("Preferences...");
|
||||
iconName: "configure";
|
||||
}
|
||||
|
||||
Action {
|
||||
id: addMachineAction;
|
||||
//: Add Printer action
|
||||
text: qsTr("&Add Printer...");
|
||||
text: qsTr("Add Printer...");
|
||||
}
|
||||
|
||||
Action {
|
||||
id: settingsAction;
|
||||
//: Configure Printers action
|
||||
text: qsTr("&Configure Printers");
|
||||
text: qsTr("Configure Printers");
|
||||
iconName: "configure";
|
||||
}
|
||||
|
||||
|
@ -102,7 +102,7 @@ Item {
|
|||
Action {
|
||||
id: aboutAction;
|
||||
//: About action
|
||||
text: qsTr("&About...");
|
||||
text: qsTr("About...");
|
||||
iconName: "help-about";
|
||||
}
|
||||
|
||||
|
@ -190,7 +190,7 @@ Item {
|
|||
Action {
|
||||
id: openAction;
|
||||
//: Open file action
|
||||
text: qsTr("&Open...");
|
||||
text: qsTr("Load file");
|
||||
iconName: "document-open";
|
||||
shortcut: StandardKey.Open;
|
||||
}
|
||||
|
@ -198,7 +198,7 @@ Item {
|
|||
Action {
|
||||
id: saveAction;
|
||||
//: Save file action
|
||||
text: qsTr("&Save...");
|
||||
text: qsTr("Save...");
|
||||
iconName: "document-save";
|
||||
shortcut: StandardKey.Save;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue