Skip to content

Commit d61b908

Browse files
author
jef
committed
fix some typos
git-svn-id: http://svn.osgeo.org/qgis/trunk@14044 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent a2bec36 commit d61b908

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

doc/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ <h3>WMS and WMS-C Support</h3>
9797
<h3>API Updates</h3>
9898
<ul>
9999
<li>QgsDataProvider &amp; QgsMapLayer: add dataChanged() signal, so that a provider can signal that the datasource changed</li>
100-
<li>Use QNetworkAccessManager instead of QgsHttpTransaction (including caching and dynamic authentification to website and proxies)</li>
100+
<li>Use QNetworkAccessManager instead of QgsHttpTransaction (including caching and dynamic authentication to website and proxies)</li>
101101

102102
<li>Allow opening layer properties from plugins</li>
103103
<li>Support for custom plugin layers.</li>

python/plugins/GdalTools/tools/widgetTranslate.ui

+2-2
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
<widget class="QCheckBox" name="expandCheck">
211211
<property name="toolTip">
212212
<string>To expose a dataset with 1 band with a color table as a dataset with 3 (RGB) or 4 (RGBA) bands.
213-
Usefull for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets.
213+
Useful for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets.
214214
The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a color table that only contains gray levels to a gray indexed dataset.</string>
215215
</property>
216216
<property name="text">
@@ -222,7 +222,7 @@ The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a color tabl
222222
<widget class="QComboBox" name="expandCombo">
223223
<property name="toolTip">
224224
<string>To expose a dataset with 1 band with a color table as a dataset with 3 (RGB) or 4 (RGBA) bands.
225-
Usefull for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets.
225+
Useful for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets.
226226
The 'gray' value (from GDAL 1.7.0) enables to expand a dataset with a color table that only contains gray levels to a gray indexed dataset.</string>
227227
</property>
228228
<item>

python/plugins/fTools/tools/doGeoprocessing.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ def difference( self ):
703703
allAttrsB = vproviderB.attributeIndexes()
704704
vproviderB.select( allAttrsB )
705705
fields = vproviderA.fields()
706-
# check for crs compatability
706+
# check for crs compatibility
707707
crsA = vproviderA.crs()
708708
crsB = vproviderB.crs()
709709
if not crsA.isValid() or not crsB.isValid():
@@ -859,7 +859,7 @@ def intersect( self ):
859859
vproviderB = self.vlayerB.dataProvider()
860860
allAttrsB = vproviderB.attributeIndexes()
861861
vproviderB.select( allAttrsB )
862-
# check for crs compatability
862+
# check for crs compatibility
863863
crsA = vproviderA.crs()
864864
crsB = vproviderB.crs()
865865
if not crsA.isValid() or not crsB.isValid():
@@ -1027,7 +1027,7 @@ def union( self ):
10271027
vproviderB = self.vlayerB.dataProvider()
10281028
allAttrsB = vproviderB.attributeIndexes()
10291029
vproviderB.select( allAttrsB )
1030-
# check for crs compatability
1030+
# check for crs compatibility
10311031
crsA = vproviderA.crs()
10321032
crsB = vproviderB.crs()
10331033
if not crsA.isValid() or not crsB.isValid():
@@ -1161,7 +1161,7 @@ def symetrical_difference( self ):
11611161
vproviderB = self.vlayerB.dataProvider()
11621162
allAttrsB = vproviderB.attributeIndexes()
11631163
vproviderB.select( allAttrsB )
1164-
# check for crs compatability
1164+
# check for crs compatibility
11651165
crsA = vproviderA.crs()
11661166
crsB = vproviderB.crs()
11671167
if not crsA.isValid() or not crsB.isValid():
@@ -1254,7 +1254,7 @@ def clip( self ):
12541254
vproviderB = self.vlayerB.dataProvider()
12551255
allAttrsB = vproviderB.attributeIndexes()
12561256
vproviderB.select( allAttrsB )
1257-
# check for crs compatability
1257+
# check for crs compatibility
12581258
crsA = vproviderA.crs()
12591259
crsB = vproviderB.crs()
12601260
if not crsA.isValid() or not crsB.isValid():

python/plugins/fTools/tools/doPointDistance.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def writerow(self, row):
6565
# Fetch UTF-8 output from the queue ...
6666
data = self.queue.getvalue()
6767
data = data.decode("utf-8")
68-
# ... and reencode it into the target encoding
68+
# ... and re-encode it into the target encoding
6969
data = self.encoder.encode(data)
7070
# write to the target stream
7171
self.stream.write(data)

0 commit comments

Comments
 (0)