Skip to content

Commit 7eb7e93

Browse files
committed
Revert "[processing] replace QCoreApplication.translate() with tr() in"
This reverts commit 0079034.
1 parent ad4d0a1 commit 7eb7e93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/ParametersPanel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def layerRegistryChanged(self, layers):
9191
def formatParameterTooltip(self, parameter):
9292
return '<p><b>{}</b></p><p>{}</p>'.format(
9393
parameter.description(),
94-
self.tr('Python identifier: ‘{}’').format('<i>{}</i>'.format(parameter.name()))
94+
QCoreApplication.translate('ParametersPanel', 'Python identifier: ‘{}’').format('<i>{}</i>'.format(parameter.name()))
9595
)
9696

9797
def initWidgets(self):

0 commit comments

Comments
 (0)