Skip to content

Commit

Permalink
Fix broken translation string
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Apr 20, 2018
1 parent 4a594d3 commit 6358daa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/AlgorithmDialog.py
Expand Up @@ -200,7 +200,7 @@ def accept(self):
self.setProgressText(QCoreApplication.translate('AlgorithmDialog', 'Processing algorithm…'))

self.setInfo(
self.tr('AlgorithmDialog', '<b>Algorithm \'{0}\' starting&hellip;</b>').format(self.algorithm().displayName()), escapeHtml=False)
QCoreApplication.translate('AlgorithmDialog', '<b>Algorithm \'{0}\' starting&hellip;</b>').format(self.algorithm().displayName()), escapeHtml=False)

feedback.pushInfo(self.tr('Input parameters:'))
display_params = []
Expand Down

0 comments on commit 6358daa

Please sign in to comment.