Skip to content

Commit 08cd87b

Browse files
committedJun 20, 2014
processing: (redundant) translation string fixes
1 parent ef0e7d0 commit 08cd87b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎python/plugins/fTools/tools/doGeometry.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,9 +235,9 @@ def geometry( self, myLayer, myParam, myField ):
235235
self.encoding = None
236236

237237
res = QMessageBox.warning( self, self.tr( "Geometry"),
238-
self.tr( "Currently QGIS doesn't allow simultaneous access from \
239-
different threads to the same datasource. Make sure your layer's \
240-
attribute tables are closed. Continue?"),
238+
self.tr( "Currently QGIS doesn't allow simultaneous access from "
239+
"different threads to the same datasource. Make sure your layer's "
240+
"attribute tables are closed. Continue?"),
241241
QMessageBox.Yes | QMessageBox.No )
242242
if res == QMessageBox.No:
243243
return

‎python/plugins/processing/modeler/ModelerDialog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,8 +205,8 @@ def runModel(self):
205205
# TODO: enable alg cloning without saving to file
206206
if len(self.alg.algs) == 0:
207207
QMessageBox.warning(self, self.tr('Empty model'),
208-
self.tr("Model doesn't contains any algorithms and/or \
209-
parameters and can't be executed"))
208+
self.tr("Model doesn't contains any algorithms and/or "
209+
"parameters and can't be executed"))
210210
return
211211

212212
if self.alg.descriptionFile is None:

0 commit comments

Comments
 (0)
Please sign in to comment.