Skip to content

Commit f5b0dbe

Browse files
committed
[processing] allow translating algorithm dialog title
fixes #13652
1 parent e8cb8c1 commit f5b0dbe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/plugins/processing/gui/AlgorithmDialogBase.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
from qgis.utils import iface
3535

3636
from processing.core.ProcessingConfig import ProcessingConfig
37+
from processing.gui import AlgorithmClassification
3738

3839
pluginPath = os.path.split(os.path.dirname(__file__))[0]
3940
WIDGET, BASE = uic.loadUiType(
@@ -64,7 +65,7 @@ def __init__(self, alg):
6465

6566
self.btnClose = self.buttonBox.button(QDialogButtonBox.Close)
6667

67-
self.setWindowTitle(self.alg.name)
68+
self.setWindowTitle(AlgorithmClassification.getDisplayName(self.alg))
6869

6970
# load algorithm help if available
7071
isText, algHelp = self.alg.help()

0 commit comments

Comments
 (0)