[QGIS Commit] r14044 - in trunk/qgis: doc
python/plugins/GdalTools/tools python/plugins/fTools/tools
svn_qgis at osgeo.org
svn_qgis at osgeo.org
Tue Aug 10 16:18:41 EDT 2010
Author: jef
Date: 2010-08-10 20:18:41 +0000 (Tue, 10 Aug 2010)
New Revision: 14044
Modified:
trunk/qgis/doc/index.html
trunk/qgis/python/plugins/GdalTools/tools/widgetTranslate.ui
trunk/qgis/python/plugins/fTools/tools/doGeoprocessing.py
trunk/qgis/python/plugins/fTools/tools/doPointDistance.py
Log:
fix some typos
Modified: trunk/qgis/doc/index.html
===================================================================
--- trunk/qgis/doc/index.html 2010-08-10 19:47:06 UTC (rev 14043)
+++ trunk/qgis/doc/index.html 2010-08-10 20:18:41 UTC (rev 14044)
@@ -97,7 +97,7 @@
<h3>API Updates</h3>
<ul>
<li>QgsDataProvider & QgsMapLayer: add dataChanged() signal, so that a provider can signal that the datasource changed</li>
- <li>Use QNetworkAccessManager instead of QgsHttpTransaction (including caching and dynamic authentification to website and proxies)</li>
+ <li>Use QNetworkAccessManager instead of QgsHttpTransaction (including caching and dynamic authentication to website and proxies)</li>
<li>Allow opening layer properties from plugins</li>
<li>Support for custom plugin layers.</li>
Modified: trunk/qgis/python/plugins/GdalTools/tools/widgetTranslate.ui
===================================================================
--- trunk/qgis/python/plugins/GdalTools/tools/widgetTranslate.ui 2010-08-10 19:47:06 UTC (rev 14043)
+++ trunk/qgis/python/plugins/GdalTools/tools/widgetTranslate.ui 2010-08-10 20:18:41 UTC (rev 14044)
@@ -210,7 +210,7 @@
<widget class="QCheckBox" name="expandCheck">
<property name="toolTip">
<string>To expose a dataset with 1 band with a color table as a dataset with 3 (RGB) or 4 (RGBA) bands.
-Usefull for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets.
+Useful for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets.
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>
</property>
<property name="text">
@@ -222,7 +222,7 @@
<widget class="QComboBox" name="expandCombo">
<property name="toolTip">
<string>To expose a dataset with 1 band with a color table as a dataset with 3 (RGB) or 4 (RGBA) bands.
-Usefull for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets.
+Useful for output drivers such as JPEG, JPEG2000, MrSID, ECW that don't support color indexed datasets.
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>
</property>
<item>
Modified: trunk/qgis/python/plugins/fTools/tools/doGeoprocessing.py
===================================================================
--- trunk/qgis/python/plugins/fTools/tools/doGeoprocessing.py 2010-08-10 19:47:06 UTC (rev 14043)
+++ trunk/qgis/python/plugins/fTools/tools/doGeoprocessing.py 2010-08-10 20:18:41 UTC (rev 14044)
@@ -703,7 +703,7 @@
allAttrsB = vproviderB.attributeIndexes()
vproviderB.select( allAttrsB )
fields = vproviderA.fields()
- # check for crs compatability
+ # check for crs compatibility
crsA = vproviderA.crs()
crsB = vproviderB.crs()
if not crsA.isValid() or not crsB.isValid():
@@ -859,7 +859,7 @@
vproviderB = self.vlayerB.dataProvider()
allAttrsB = vproviderB.attributeIndexes()
vproviderB.select( allAttrsB )
- # check for crs compatability
+ # check for crs compatibility
crsA = vproviderA.crs()
crsB = vproviderB.crs()
if not crsA.isValid() or not crsB.isValid():
@@ -1027,7 +1027,7 @@
vproviderB = self.vlayerB.dataProvider()
allAttrsB = vproviderB.attributeIndexes()
vproviderB.select( allAttrsB )
- # check for crs compatability
+ # check for crs compatibility
crsA = vproviderA.crs()
crsB = vproviderB.crs()
if not crsA.isValid() or not crsB.isValid():
@@ -1161,7 +1161,7 @@
vproviderB = self.vlayerB.dataProvider()
allAttrsB = vproviderB.attributeIndexes()
vproviderB.select( allAttrsB )
- # check for crs compatability
+ # check for crs compatibility
crsA = vproviderA.crs()
crsB = vproviderB.crs()
if not crsA.isValid() or not crsB.isValid():
@@ -1254,7 +1254,7 @@
vproviderB = self.vlayerB.dataProvider()
allAttrsB = vproviderB.attributeIndexes()
vproviderB.select( allAttrsB )
- # check for crs compatability
+ # check for crs compatibility
crsA = vproviderA.crs()
crsB = vproviderB.crs()
if not crsA.isValid() or not crsB.isValid():
Modified: trunk/qgis/python/plugins/fTools/tools/doPointDistance.py
===================================================================
--- trunk/qgis/python/plugins/fTools/tools/doPointDistance.py 2010-08-10 19:47:06 UTC (rev 14043)
+++ trunk/qgis/python/plugins/fTools/tools/doPointDistance.py 2010-08-10 20:18:41 UTC (rev 14044)
@@ -65,7 +65,7 @@
# Fetch UTF-8 output from the queue ...
data = self.queue.getvalue()
data = data.decode("utf-8")
- # ... and reencode it into the target encoding
+ # ... and re-encode it into the target encoding
data = self.encoder.encode(data)
# write to the target stream
self.stream.write(data)
More information about the QGIS-commit
mailing list