15.10 Changes the label names for the different action buttons

Contributes to: issue CURA-60
This commit is contained in:
Tamara Hogenhout 2015-08-19 14:51:03 +02:00
parent b799acafab
commit 43aee84f12

View file

@ -43,7 +43,7 @@ Item {
Action { Action {
id: undoAction; id: undoAction;
//: Undo action //: Undo action
text: qsTr("&Undo"); text: qsTr("Undo");
iconName: "edit-undo"; iconName: "edit-undo";
shortcut: StandardKey.Undo; shortcut: StandardKey.Undo;
} }
@ -51,7 +51,7 @@ Item {
Action { Action {
id: redoAction; id: redoAction;
//: Redo action //: Redo action
text: qsTr("&Redo"); text: qsTr("Redo");
iconName: "edit-redo"; iconName: "edit-redo";
shortcut: StandardKey.Redo; shortcut: StandardKey.Redo;
} }
@ -59,7 +59,7 @@ Item {
Action { Action {
id: quitAction; id: quitAction;
//: Quit action //: Quit action
text: qsTr("&Quit"); text: qsTr("Quit");
iconName: "application-exit"; iconName: "application-exit";
shortcut: StandardKey.Quit; shortcut: StandardKey.Quit;
} }
@ -67,20 +67,20 @@ Item {
Action { Action {
id: preferencesAction; id: preferencesAction;
//: Preferences action //: Preferences action
text: qsTr("&Preferences..."); text: qsTr("Preferences...");
iconName: "configure"; iconName: "configure";
} }
Action { Action {
id: addMachineAction; id: addMachineAction;
//: Add Printer action //: Add Printer action
text: qsTr("&Add Printer..."); text: qsTr("Add Printer...");
} }
Action { Action {
id: settingsAction; id: settingsAction;
//: Configure Printers action //: Configure Printers action
text: qsTr("&Configure Printers"); text: qsTr("Configure Printers");
iconName: "configure"; iconName: "configure";
} }
@ -102,7 +102,7 @@ Item {
Action { Action {
id: aboutAction; id: aboutAction;
//: About action //: About action
text: qsTr("&About..."); text: qsTr("About...");
iconName: "help-about"; iconName: "help-about";
} }
@ -190,7 +190,7 @@ Item {
Action { Action {
id: openAction; id: openAction;
//: Open file action //: Open file action
text: qsTr("&Open..."); text: qsTr("Load file");
iconName: "document-open"; iconName: "document-open";
shortcut: StandardKey.Open; shortcut: StandardKey.Open;
} }
@ -198,7 +198,7 @@ Item {
Action { Action {
id: saveAction; id: saveAction;
//: Save file action //: Save file action
text: qsTr("&Save..."); text: qsTr("Save...");
iconName: "document-save"; iconName: "document-save";
shortcut: StandardKey.Save; shortcut: StandardKey.Save;
} }