Skip to content

Commit

Permalink
Revert "[processing] replace QCoreApplication.translate() with tr() in"
Browse files Browse the repository at this point in the history
This reverts commit 0079034.
  • Loading branch information
alexbruy committed Mar 9, 2018
1 parent ad4d0a1 commit 7eb7e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ParametersPanel.py
Expand Up @@ -91,7 +91,7 @@ def layerRegistryChanged(self, layers):
def formatParameterTooltip(self, parameter):
return '<p><b>{}</b></p><p>{}</p>'.format(
parameter.description(),
self.tr('Python identifier: ‘{}’').format('<i>{}</i>'.format(parameter.name()))
QCoreApplication.translate('ParametersPanel', 'Python identifier: ‘{}’').format('<i>{}</i>'.format(parameter.name()))
)

def initWidgets(self):
Expand Down

0 comments on commit 7eb7e93

Please sign in to comment.