From 43aee84f12d278b6c43710d26dc879f59b0d0f96 Mon Sep 17 00:00:00 2001 From: Tamara Hogenhout Date: Wed, 19 Aug 2015 14:51:03 +0200 Subject: [PATCH] 15.10 Changes the label names for the different action buttons Contributes to: issue CURA-60 --- resources/qml/Actions.qml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 8d5b8337f0..5b5a73a81a 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -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; }