mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
Make it possible to have translated 'appended' settings.
Just translate them locally. See the backend (Uranium) implementation for this for more details. done as part of CURA-10994
This commit is contained in:
parent
18659935ff
commit
1e5f1d3fa5
1 changed files with 2 additions and 1 deletions
|
@ -16,9 +16,10 @@ from UM.Resources import Resources
|
|||
|
||||
class BackendPlugin(AdditionalSettingDefinitionsAppender, PluginObject):
|
||||
catalog = i18nCatalog("cura")
|
||||
settings_catalog = i18nCatalog("fdmprinter.def.json")
|
||||
|
||||
def __init__(self) -> None:
|
||||
super().__init__()
|
||||
super().__init__(self.settings_catalog)
|
||||
self.__port: int = 0
|
||||
self._plugin_address: str = "127.0.0.1"
|
||||
self._plugin_command: Optional[List[str]] = None
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue