Skip to content

Commit f291bac

Browse files
author
jef
committedMay 15, 2010
translation string fixes
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13496 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def compute(self, inName, inField, joinName, joinField, outName, keep, useTable,
182182
longNames = ftools_utils.checkFieldNameLenght( fieldList1 )
183183
if not longNames.isEmpty():
184184
QMessageBox.warning( self, self.tr( 'Incorrect field names' ),
185-
self.tr( 'No output will be created.\nFollowing field names are longer then 10 characters:\n%1' )
185+
self.tr( 'No output will be created.\nFollowing field names are longer than 10 characters:\n%1' )
186186
.arg( longNames.join( '\n' ) ) )
187187
return False
188188
sRs = provider1.crs()

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def compute(self, inName, joinName, outName, summary, sumList, keep, progressBar
146146
longNames = ftools_utils.checkFieldNameLenght( fieldList1 )
147147
if not longNames.isEmpty():
148148
QMessageBox.warning( self, self.tr( 'Incorrect field names' ),
149-
self.tr( 'No output will be created.\nFollowing field names are longer then 10 characters:\n%1' )
149+
self.tr( 'No output will be created.\nFollowing field names are longer than 10 characters:\n%1' )
150150
.arg( longNames.join( '\n' ) ) )
151151
return False
152152

‎src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2381,7 +2381,7 @@ void QgisApp::about()
23812381
+ tr( "Please note that this is a release in our 'cutting edge' release series. As "
23822382
"such it contains new features and extends the programmatic interface over "
23832383
"QGIS 1.0.x and QGIS 1.3.0. If an unchanging user interface, programmatic API "
2384-
"and long term support is more important to you then cool new and untested "
2384+
"and long term support is more important to you than cool new and untested "
23852385
"features, we recommend that you use a copy of QGIS from our Long Term Support "
23862386
"(LTS)1.0.x release series. In all other cases we recommend that you use this "
23872387
"version." )

0 commit comments

Comments
 (0)
Please sign in to comment.