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 99e21a7 commit c3e49d6Copy full SHA for c3e49d6
python/plugins/processing/gui/menus.py
@@ -173,10 +173,10 @@ def _executeAlgorithm(alg):
173
message = alg.checkBeforeOpeningParametersDialog()
174
if message:
175
dlg = MessageDialog()
176
- dlg.setTitle(tr('Missing dependency'))
+ dlg.setTitle(Processing.tr('Missing dependency'))
177
dlg.setMessage(
178
- tr('<h3>Missing dependency. This algorithm cannot '
179
- 'be run :-( </h3>\n%s') % message)
+ Processing.tr('<h3>Missing dependency. This algorithm cannot '
+ 'be run :-( </h3>\n%s') % message)
180
dlg.exec_()
181
return
182
alg = alg.getCopy()
0 commit comments