processing: (redundant) translation string fixes

This commit is contained in:
Juergen E. Fischer 2014-06-20 09:58:10 +02:00
parent ef0e7d0916
commit 08cd87be44
2 changed files with 5 additions and 5 deletions

View File

@ -235,9 +235,9 @@ class GeometryDialog( QDialog, Ui_Dialog ):
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

View File

@ -205,8 +205,8 @@ class ModelerDialog(QDialog, Ui_DlgModeler):
# 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: