From 6349f1b5e6cd7ed7e82ecee8b5bb60aaf5ea0a19 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 14 Aug 2017 14:55:50 +0200 Subject: [PATCH] Add context for 'Browse plugins' translated text So that the translator knows what sort of text this is. It's the menu item in the application menu. Contributes to issue CURA-4113. --- plugins/PluginBrowser/PluginBrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/PluginBrowser/PluginBrowser.py b/plugins/PluginBrowser/PluginBrowser.py index 76d4b4d284..6482560dd0 100644 --- a/plugins/PluginBrowser/PluginBrowser.py +++ b/plugins/PluginBrowser/PluginBrowser.py @@ -22,7 +22,7 @@ i18n_catalog = i18nCatalog("cura") class PluginBrowser(QObject, Extension): def __init__(self, parent = None): super().__init__(parent) - self.addMenuItem(i18n_catalog.i18n("Browse plugins"), self.browsePlugins) + self.addMenuItem(i18n_catalog.i18nc("@menuitem", "Browse plugins"), self.browsePlugins) self._api_version = 1 self._api_url = "http://software.ultimaker.com/cura/v%s/" % self._api_version