Skip to content

Commit 6358daa

Browse files
committed
Fix broken translation string
1 parent 4a594d3 commit 6358daa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/AlgorithmDialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def accept(self):
200200
self.setProgressText(QCoreApplication.translate('AlgorithmDialog', 'Processing algorithm…'))
201201

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

205205
feedback.pushInfo(self.tr('Input parameters:'))
206206
display_params = []

0 commit comments

Comments
 (0)