From 1e5f1d3fa53e62316863f31e4b8f62a1b38a7ebf Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 5 Oct 2023 16:07:12 +0200 Subject: [PATCH] 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 --- cura/BackendPlugin.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cura/BackendPlugin.py b/cura/BackendPlugin.py index 6392b1c50f..0c6180e54e 100644 --- a/cura/BackendPlugin.py +++ b/cura/BackendPlugin.py @@ -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