From 032b6e400031f3046e1e6025fa184eccba168536 Mon Sep 17 00:00:00 2001 From: Tamara Hogenhout Date: Wed, 9 Sep 2015 15:50:28 +0200 Subject: [PATCH] Just a little cleanup related to the translations Contributes to: issue CURA-116 --- resources/qml/Actions.qml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 2c2caec13d..1f9a4dca5c 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -56,7 +56,6 @@ Item Action { id: undoAction; - //: Undo action text: catalog.i18nc("@action","Undo"); iconName: "edit-undo"; shortcut: StandardKey.Undo; @@ -65,7 +64,6 @@ Item Action { id: redoAction; - //: Redo action text: catalog.i18nc("@action","Redo"); iconName: "edit-redo"; shortcut: StandardKey.Redo; @@ -74,7 +72,6 @@ Item Action { id: quitAction; - //: Quit action text: catalog.i18nc("@action","Quit"); iconName: "application-exit"; shortcut: StandardKey.Quit; @@ -83,7 +80,6 @@ Item Action { id: preferencesAction; - //: Preferences action text: catalog.i18nc("@action","Preferences..."); iconName: "configure"; } @@ -91,14 +87,12 @@ Item Action { id: addMachineAction; - //: Add Printer action text: catalog.i18nc("@action","Add Printer..."); } Action { id: settingsAction; - //: Configure Printers action text: catalog.i18nc("@action","Configure Printers"); iconName: "configure"; } @@ -106,14 +100,12 @@ Item Action { id: manageProfilesAction; - //: manage profiles action text: catalog.i18nc("@action","Manage Profiles"); } Action { id: documentationAction; - //: Show Online Documentation action text: catalog.i18nc("@action","Show Online &Documentation"); iconName: "help-contents"; shortcut: StandardKey.Help; @@ -121,7 +113,6 @@ Item Action { id: reportBugAction; - //: Report a Bug Action text: catalog.i18nc("@action","Report a &Bug"); iconName: "tools-report-bug"; } @@ -129,7 +120,6 @@ Item Action { id: aboutAction; - //: About action text: catalog.i18nc("@action","About..."); iconName: "help-about"; } @@ -137,7 +127,6 @@ Item Action { id: deleteSelectionAction; - //: Delete selection action text: catalog.i18nc("@action","Delete Selection"); iconName: "edit-delete"; shortcut: StandardKey.Delete; @@ -146,7 +135,6 @@ Item Action { id: deleteObjectAction; - //: Delete object action text: catalog.i18nc("@action","Delete Object"); iconName: "edit-delete"; shortcut: StandardKey.Backspace; @@ -155,7 +143,6 @@ Item Action { id: centerObjectAction; - //: Center object action text: catalog.i18nc("@action","Center Object on Platform"); } @@ -183,14 +170,12 @@ Item Action { id: multiplyObjectAction; - //: Duplicate object action text: catalog.i18nc("@action","Duplicate Object"); } Action { id: splitObjectAction; - //: Split object action text: catalog.i18nc("@action","Split Object into Parts"); enabled: false; } @@ -198,7 +183,6 @@ Item Action { id: deleteAllAction; - //: Clear build platform action text: catalog.i18nc("@action","Clear Build Platform"); iconName: "edit-clear"; } @@ -206,28 +190,24 @@ Item Action { id: reloadAllAction; - //: Reload all objects action text: catalog.i18nc("@action","Reload All Objects"); } Action { id: resetAllTranslationAction; - //: Reset all positions action text: catalog.i18nc("@action","Reset All Object Positions"); } Action { id: resetAllAction; - //: Reset all positions action text: catalog.i18nc("@action","Reset All Object Transformations"); } Action { id: openAction; - //: Open file action text: catalog.i18nc("@action","Load file"); iconName: "document-open"; shortcut: StandardKey.Open; @@ -236,7 +216,6 @@ Item Action { id: saveAction; - //: Save file action text: catalog.i18nc("@action","Save..."); iconName: "document-save"; shortcut: StandardKey.Save; @@ -245,7 +224,6 @@ Item Action { id: showEngineLogAction; - //: Show engine log action text: catalog.i18nc("@action","Show engine &log..."); iconName: "view-list-text"; }