Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
translation string fix
  • Loading branch information
jef-n committed Sep 21, 2018
1 parent c5cac98 commit e85c092
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/plugins/processing/gui/ExtentSelectionPanel.py
Expand Up @@ -31,6 +31,7 @@
from qgis.PyQt import uic
from qgis.PyQt.QtWidgets import QMenu, QAction, QInputDialog
from qgis.PyQt.QtGui import QCursor
from qgis.PyQt.QtCore import QCoreApplication

from qgis.gui import QgsMessageBar
from qgis.utils import iface
Expand Down Expand Up @@ -97,7 +98,8 @@ def __init__(self, dialog, param):
def selectExtent(self):
popupmenu = QMenu()
useLayerExtentAction = QAction(
self.tr('Use Layer/Canvas Extent…'), self.btnSelect)
QCoreApplication.translate("ExtentSelectionPanel", 'Use Layer/Canvas Extent…'),
self.btnSelect)
selectOnCanvasAction = QAction(
self.tr('Select Extent on Canvas'), self.btnSelect)

Expand Down

0 comments on commit e85c092

Please sign in to comment.