mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-13 17:57:55 -06:00
Add catalog to files that weren't translating
CURA-9141
This commit is contained in:
parent
d33bdf1099
commit
ba3913395c
6 changed files with 7 additions and 4 deletions
|
@ -135,7 +135,7 @@ class GlobalStacksModel(ListModel):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
device_name = container_stack.getMetaDataEntry("group_name", container_stack.getName())
|
device_name = container_stack.getMetaDataEntry("group_name", container_stack.getName())
|
||||||
section_name = "Connected printers" if has_remote_connection else "Preset printers"
|
section_name = self._catalog.i18nc("@label", "Connected printers") if has_remote_connection else self._catalog.i18nc("@label", "Preset printers")
|
||||||
section_name = self._catalog.i18nc("@info:title", section_name)
|
section_name = self._catalog.i18nc("@info:title", section_name)
|
||||||
|
|
||||||
default_removal_warning = self._catalog.i18nc(
|
default_removal_warning = self._catalog.i18nc(
|
||||||
|
|
|
@ -12,6 +12,7 @@ import Cura 1.0 as Cura
|
||||||
UM.ManagementPage
|
UM.ManagementPage
|
||||||
{
|
{
|
||||||
id: base
|
id: base
|
||||||
|
Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} }
|
||||||
|
|
||||||
title: catalog.i18nc("@title:tab", "Printers")
|
title: catalog.i18nc("@title:tab", "Printers")
|
||||||
detailsPlaneCaption: base.currentItem && base.currentItem.name ? base.currentItem.name : ""
|
detailsPlaneCaption: base.currentItem && base.currentItem.name ? base.currentItem.name : ""
|
||||||
|
@ -93,8 +94,6 @@ UM.ManagementPage
|
||||||
maximumHeight: minimumHeight * 3
|
maximumHeight: minimumHeight * 3
|
||||||
}
|
}
|
||||||
|
|
||||||
UM.I18nCatalog { id: catalog; name: "cura"; }
|
|
||||||
|
|
||||||
UM.ConfirmRemoveDialog
|
UM.ConfirmRemoveDialog
|
||||||
{
|
{
|
||||||
id: confirmDialog
|
id: confirmDialog
|
||||||
|
|
|
@ -11,7 +11,7 @@ import Cura 1.5 as Cura
|
||||||
UM.ManagementPage
|
UM.ManagementPage
|
||||||
{
|
{
|
||||||
id: base
|
id: base
|
||||||
|
Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} }
|
||||||
// Keep PreferencesDialog happy
|
// Keep PreferencesDialog happy
|
||||||
property var resetEnabled: false
|
property var resetEnabled: false
|
||||||
property var currentItem: null
|
property var currentItem: null
|
||||||
|
|
|
@ -13,6 +13,7 @@ import Cura 1.6 as Cura
|
||||||
UM.ManagementPage
|
UM.ManagementPage
|
||||||
{
|
{
|
||||||
id: base
|
id: base
|
||||||
|
Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} }
|
||||||
|
|
||||||
property var extrudersModel: CuraApplication.getExtrudersModel()
|
property var extrudersModel: CuraApplication.getExtrudersModel()
|
||||||
property var qualityManagementModel: CuraApplication.getQualityManagementModel()
|
property var qualityManagementModel: CuraApplication.getQualityManagementModel()
|
||||||
|
|
|
@ -12,6 +12,8 @@ UM.PreferencesPage
|
||||||
{
|
{
|
||||||
title: catalog.i18nc("@title:tab", "Setting Visibility")
|
title: catalog.i18nc("@title:tab", "Setting Visibility")
|
||||||
|
|
||||||
|
Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} }
|
||||||
|
|
||||||
property QtObject settingVisibilityPresetsModel: CuraApplication.getSettingVisibilityPresetsModel()
|
property QtObject settingVisibilityPresetsModel: CuraApplication.getSettingVisibilityPresetsModel()
|
||||||
|
|
||||||
property int scrollToIndex: 0
|
property int scrollToIndex: 0
|
||||||
|
|
|
@ -12,6 +12,7 @@ import Cura 1.0 as Cura
|
||||||
UM.Menu
|
UM.Menu
|
||||||
{
|
{
|
||||||
id: menu
|
id: menu
|
||||||
|
Item { enabled: false; UM.I18nCatalog { id: catalog; name: "cura"} }
|
||||||
topPadding: UM.Theme.getSize("narrow_margin").height
|
topPadding: UM.Theme.getSize("narrow_margin").height
|
||||||
bottomPadding: UM.Theme.getSize("narrow_margin").height
|
bottomPadding: UM.Theme.getSize("narrow_margin").height
|
||||||
padding: 0
|
padding: 0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue