Skip to content

Commit

Permalink
string fixes
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13653 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Jun 5, 2010
1 parent 5dce908 commit 28816fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/plugins/GdalTools/tools/doContour.py
Expand Up @@ -51,7 +51,7 @@ def fillInputFileEdit(self):
self.inputLayerCombo.setEditText(inputFile)

def fillOutputDirEdit(self):
outputDir, encoding = Utils.FileDialog.getExistingDirectory(self, self.tr( "Select where to save the Countour output" ), True)
outputDir, encoding = Utils.FileDialog.getExistingDirectory(self, self.tr( "Select where to save the Contour output" ), True)
if outputDir.isEmpty():
return

Expand Down
2 changes: 1 addition & 1 deletion python/plugins/GdalTools/tools/doOverview.py
Expand Up @@ -82,7 +82,7 @@ def fillInputFile( self ):
self.inputLayerCombo.setEditText( inputFile )

def fillInputDir( self ):
inputDir = Utils.FileDialog.getExistingDirectory( self, self.tr( "Select the input direcory with files" ))
inputDir = Utils.FileDialog.getExistingDirectory( self, self.tr( "Select the input directory with files" ))
if inputDir.isEmpty():
return

Expand Down
2 changes: 1 addition & 1 deletion python/plugins/GdalTools/tools/doTranslate.py
Expand Up @@ -109,7 +109,7 @@ def fillInputFile( self ):
self.inputLayerCombo.setEditText( inputFile )

def fillInputDir( self ):
inputDir = Utils.FileDialog.getExistingDirectory( self, self.tr( "Select the input direcory with files to Translate" ))
inputDir = Utils.FileDialog.getExistingDirectory( self, self.tr( "Select the input directory with files to Translate" ))
if inputDir.isEmpty():
return

Expand Down

0 comments on commit 28816fe

Please sign in to comment.