mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-22 10:21:39 -07:00
Use the right strings for Manage actions and add a bunch of missing icons
Contributes to CURA-132
This commit is contained in:
parent
b99a67ceb5
commit
cdc93d3839
1 changed files with 10 additions and 11 deletions
|
|
@ -24,7 +24,6 @@ Item
|
||||||
//property alias unMergeObjects: unMergeObjectsAction;
|
//property alias unMergeObjects: unMergeObjectsAction;
|
||||||
|
|
||||||
property alias multiplyObject: multiplyObjectAction;
|
property alias multiplyObject: multiplyObjectAction;
|
||||||
property alias splitObject: splitObjectAction;
|
|
||||||
|
|
||||||
property alias deleteAll: deleteAllAction;
|
property alias deleteAll: deleteAllAction;
|
||||||
property alias reloadAll: reloadAllAction;
|
property alias reloadAll: reloadAllAction;
|
||||||
|
|
@ -51,6 +50,7 @@ Item
|
||||||
id:toggleFullScreenAction
|
id:toggleFullScreenAction
|
||||||
shortcut: StandardKey.FullScreen;
|
shortcut: StandardKey.FullScreen;
|
||||||
text: catalog.i18nc("@action","Toggle Full Screen");
|
text: catalog.i18nc("@action","Toggle Full Screen");
|
||||||
|
iconName: "view-fullscreen";
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
|
|
@ -93,14 +93,15 @@ Item
|
||||||
Action
|
Action
|
||||||
{
|
{
|
||||||
id: settingsAction;
|
id: settingsAction;
|
||||||
text: catalog.i18nc("@action","Manage Printers");
|
text: catalog.i18nc("@action","Manage Printers...");
|
||||||
iconName: "configure";
|
iconName: "configure";
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
{
|
{
|
||||||
id: manageProfilesAction;
|
id: manageProfilesAction;
|
||||||
text: catalog.i18nc("@action","Manage Profiles");
|
text: catalog.i18nc("@action","Manage Profiles...");
|
||||||
|
iconName: "configure";
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
|
|
@ -151,6 +152,7 @@ Item
|
||||||
id: groupObjectsAction
|
id: groupObjectsAction
|
||||||
text: catalog.i18nc("@action","Group Objects");
|
text: catalog.i18nc("@action","Group Objects");
|
||||||
enabled: UM.Scene.numObjectsSelected > 1 ? true: false
|
enabled: UM.Scene.numObjectsSelected > 1 ? true: false
|
||||||
|
iconName: "object-group"
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
|
|
@ -158,6 +160,7 @@ Item
|
||||||
id: unGroupObjectsAction
|
id: unGroupObjectsAction
|
||||||
text: catalog.i18nc("@action","Ungroup Objects");
|
text: catalog.i18nc("@action","Ungroup Objects");
|
||||||
enabled: UM.Scene.isGroupSelected
|
enabled: UM.Scene.isGroupSelected
|
||||||
|
iconName: "object-ungroup"
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
|
|
@ -165,32 +168,28 @@ Item
|
||||||
id: mergeObjectsAction
|
id: mergeObjectsAction
|
||||||
text: catalog.i18nc("@action","Merge Objects");
|
text: catalog.i18nc("@action","Merge Objects");
|
||||||
enabled: UM.Scene.numObjectsSelected > 1 ? true: false
|
enabled: UM.Scene.numObjectsSelected > 1 ? true: false
|
||||||
|
iconName: "merge";
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
{
|
{
|
||||||
id: multiplyObjectAction;
|
id: multiplyObjectAction;
|
||||||
text: catalog.i18nc("@action","Duplicate Object");
|
text: catalog.i18nc("@action","Duplicate Object");
|
||||||
}
|
iconName: "edit-duplicate"
|
||||||
|
|
||||||
Action
|
|
||||||
{
|
|
||||||
id: splitObjectAction;
|
|
||||||
text: catalog.i18nc("@action","Split Object into Parts");
|
|
||||||
enabled: false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
{
|
{
|
||||||
id: deleteAllAction;
|
id: deleteAllAction;
|
||||||
text: catalog.i18nc("@action","Clear Build Platform");
|
text: catalog.i18nc("@action","Clear Build Platform");
|
||||||
iconName: "edit-clear";
|
iconName: "edit-delete";
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
{
|
{
|
||||||
id: reloadAllAction;
|
id: reloadAllAction;
|
||||||
text: catalog.i18nc("@action","Reload All Objects");
|
text: catalog.i18nc("@action","Reload All Objects");
|
||||||
|
iconName: "document-revert";
|
||||||
}
|
}
|
||||||
|
|
||||||
Action
|
Action
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue