Skip to content

Commit

Permalink
[processing] allow translating algorithm dialog title
Browse files Browse the repository at this point in the history
fixes #13652
  • Loading branch information
volaya committed Oct 22, 2015
1 parent e8cb8c1 commit f5b0dbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/processing/gui/AlgorithmDialogBase.py
Expand Up @@ -34,6 +34,7 @@
from qgis.utils import iface

from processing.core.ProcessingConfig import ProcessingConfig
from processing.gui import AlgorithmClassification

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

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

self.setWindowTitle(self.alg.name)
self.setWindowTitle(AlgorithmClassification.getDisplayName(self.alg))

# load algorithm help if available
isText, algHelp = self.alg.help()
Expand Down

0 comments on commit f5b0dbe

Please sign in to comment.