Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
processing: fix saga translation (followup 66a3d02)
  • Loading branch information
jef-n committed Jul 29, 2015
1 parent 335644e commit 384c0a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/processing/algs/saga/SagaAlgorithm212.py
Expand Up @@ -29,6 +29,7 @@
import os
import importlib
import subprocess
from PyQt4.QtCore import QCoreApplication
from PyQt4.QtGui import QIcon
from processing.core.GeoAlgorithm import GeoAlgorithm
from processing.core.ProcessingConfig import ProcessingConfig
Expand Down Expand Up @@ -82,7 +83,7 @@ def defineCharacteristicsFromFile(self):
line = lines.readline().strip('\n').strip()
self.undecoratedGroup = line
self.group = SagaGroupNameDecorator.getDecoratedName(self.undecoratedGroup)
self.i18n_name = QCoreApplication.translate("SAGAAlgorithm", self.group)
self.i18n_group = QCoreApplication.translate("SAGAAlgorithm", self.group)
line = lines.readline().strip('\n').strip()
while line != '':
if line.startswith('Hardcoded'):
Expand Down

0 comments on commit 384c0a7

Please sign in to comment.