Skip to content

Commit 935075c

Browse files
author
jef
committed
string fixes
git-svn-id: http://svn.osgeo.org/qgis/trunk@13653 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent bcbc59d commit 935075c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

python/plugins/GdalTools/tools/doContour.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def fillInputFileEdit(self):
5151
self.inputLayerCombo.setEditText(inputFile)
5252

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

python/plugins/GdalTools/tools/doOverview.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def fillInputFile( self ):
8282
self.inputLayerCombo.setEditText( inputFile )
8383

8484
def fillInputDir( self ):
85-
inputDir = Utils.FileDialog.getExistingDirectory( self, self.tr( "Select the input direcory with files" ))
85+
inputDir = Utils.FileDialog.getExistingDirectory( self, self.tr( "Select the input directory with files" ))
8686
if inputDir.isEmpty():
8787
return
8888

python/plugins/GdalTools/tools/doTranslate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def fillInputFile( self ):
109109
self.inputLayerCombo.setEditText( inputFile )
110110

111111
def fillInputDir( self ):
112-
inputDir = Utils.FileDialog.getExistingDirectory( self, self.tr( "Select the input direcory with files to Translate" ))
112+
inputDir = Utils.FileDialog.getExistingDirectory( self, self.tr( "Select the input directory with files to Translate" ))
113113
if inputDir.isEmpty():
114114
return
115115

0 commit comments

Comments
 (0)