Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
processing: (redundant) translation string fixes
  • Loading branch information
jef-n committed Jun 20, 2014
1 parent ef0e7d0 commit 08cd87b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions python/plugins/fTools/tools/doGeometry.py
Expand Up @@ -235,9 +235,9 @@ def geometry( self, myLayer, myParam, myField ):
self.encoding = None

res = QMessageBox.warning( self, self.tr( "Geometry"),
self.tr( "Currently QGIS doesn't allow simultaneous access from \
different threads to the same datasource. Make sure your layer's \
attribute tables are closed. Continue?"),
self.tr( "Currently QGIS doesn't allow simultaneous access from "
"different threads to the same datasource. Make sure your layer's "
"attribute tables are closed. Continue?"),
QMessageBox.Yes | QMessageBox.No )
if res == QMessageBox.No:
return
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/processing/modeler/ModelerDialog.py
Expand Up @@ -205,8 +205,8 @@ def runModel(self):
# TODO: enable alg cloning without saving to file
if len(self.alg.algs) == 0:
QMessageBox.warning(self, self.tr('Empty model'),
self.tr("Model doesn't contains any algorithms and/or \
parameters and can't be executed"))
self.tr("Model doesn't contains any algorithms and/or "
"parameters and can't be executed"))
return

if self.alg.descriptionFile is None:
Expand Down

0 comments on commit 08cd87b

Please sign in to comment.