Skip to content

Commit

Permalink
translation string fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Sep 22, 2017
1 parent d6d7c6e commit 8b32d8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/processing/ProcessingPlugin.py
Expand Up @@ -132,9 +132,9 @@ def editModel(self):
dlg.show()

def actions(self):
run_model_action = QAction(self.tr('&Run Model…'), self)
run_model_action = QAction(QCoreApplication.translate('ProcessingPlugin', '&Run Model…'), self)
run_model_action.triggered.connect(self.runModel)
edit_model_action = QAction(self.tr('&Edit Model…'), self)
edit_model_action = QAction(QCoreApplication.translate('ProcessingPlugin', '&Edit Model…'), self)
edit_model_action.triggered.connect(self.editModel)
return [run_model_action, edit_model_action]

Expand Down

0 comments on commit 8b32d8d

Please sign in to comment.