We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent ff3f84b commit 025a234Copy full SHA for 025a234
python/plugins/processing/gui/ParametersPanel.py
@@ -84,8 +84,11 @@ def layerRegistryChanged(self, layers):
84
wrapper.refresh()
85
86
def formatParameterTooltip(self, parameter):
87
- return '<p><b>{}</b></p><p>{}</p>'.format(parameter.description(),
88
- self.tr('Python identifier: ‘{}’').format('<i>{}</i>'.format(parameter.name())))
+ return '<p><b>{}</b></p><p>{}</p>'.format(
+ parameter.description(),
89
+ QCoreApplication.translate('ParametersPanel', 'Python identifier: ‘{}’')
90
+ k.format('<i>{}</i>'.format(parameter.name()))
91
+ )
92
93
def initWidgets(self):
94
# If there are advanced parameters — show corresponding groupbox
0 commit comments