Skip to content

Commit 450eb7c

Browse files
DelazJ3nids
authored andcommitted
Spelling check: Replace analyse by analyze
1 parent 8d6af77 commit 450eb7c

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

python/plugins/db_manager/db_plugins/oracle/connector.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,7 @@ def getTableType(self, table):
719719
res = self._fetchall(c)
720720
c.close()
721721

722-
# Analyse return values
722+
# Analyze return values
723723
if not res:
724724
return False
725725
else:

python/plugins/processing/algs/saga/description/ZonalGridStatistics.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Zonal Grid Statistics
22
statistics_grid
33
ParameterRaster|ZONES|Zone Grid|False
44
ParameterMultipleInput|CATLIST|Categorial Grids|3|True
5-
ParameterMultipleInput|STATLIST|Grids to analyse|3|True
5+
ParameterMultipleInput|STATLIST|Grids to analyze|3|True
66
ParameterRaster|ASPECT|Aspect|True
77
ParameterBoolean|SHORTNAMES|Short Field Names|True
88
OutputTable|OUTTAB|Zonal Statistics

resources/cpt-city-qgis-min/saga/DESC.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<dir>saga</dir>
44
<name>SAGA preset color tables</name>
55
<full>
6-
SAGA, the system for automated geoscientific analyses, is a
6+
SAGA, the system for automated geoscientific analyzes, is a
77
sophisticated, portable and open source GUI-driven GIS which
88
includes a number of preset color tables.
99
</full>

scripts/spell_check/spell_test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ echo "Spell check"
66
cd $(git rev-parse --show-toplevel)
77

88
if [[ ! -z $TRAVIS_PULL_REQUEST_BRANCH ]]; then
9-
# if on a PR, just analyse the changed files
9+
# if on a PR, just analyze the changed files
1010
echo "TRAVIS PR BRANCH: $TRAVIS_PULL_REQUEST_BRANCH"
1111
FILES=$(git diff --diff-filter=AM --name-only $(git merge-base HEAD master) | tr '\n' ' ' )
1212
export PATH=${HOME}/osgeo4travis/bin:${PATH}

scripts/spell_check/spelling.dat

+1-1
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ analagous:analogous
460460
analitic:analytic
461461
analogeous:analogous
462462
analysator:analyzer
463-
analysies:analyses
463+
analysies:analyzes
464464
anarchim:anarchism
465465
anarchistm:anarchism
466466
anbd:and

scripts/verify-indentation.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ASTYLEDIFF=/tmp/astyle.diff
2020

2121

2222
if [[ ! -z $TRAVIS_PULL_REQUEST_BRANCH ]]; then
23-
# if on a PR, just analyse the changed files
23+
# if on a PR, just analyze the changed files
2424
echo "TRAVIS PR BRANCH: $TRAVIS_PULL_REQUEST_BRANCH"
2525
FILES=$(git diff --diff-filter=AM --name-only $(git merge-base HEAD master) | tr '\n' ' ' )
2626
elif [[ ! -z $TRAVIS_COMMIT_RANGE ]]; then

src/app/qgssnappinglayertreemodel.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ QVariant QgsSnappingLayerTreeModel::data( const QModelIndex &idx, int role ) con
375375
}
376376
else
377377
{
378-
// i.e. this is a group, analyse its children
378+
// i.e. this is a group, analyze its children
379379
bool hasChecked = false, hasUnchecked = false;
380380
int n;
381381
for ( n = 0; !hasChecked || !hasUnchecked; n++ )

src/core/gps/tok.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ int nmea_printf( char *buff, int buff_sz, const char *format, ... )
133133
}
134134

135135
/**
136-
* \brief Analyse string (specificate for NMEA sentences)
136+
* \brief Analyze string (specificate for NMEA sentences)
137137
*/
138138
int nmea_scanf( const char *buff, int buff_sz, const char *format, ... )
139139
{

src/ui/qgspgnewconnectionbase.ui

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@
265265
&lt;body&gt;
266266
&lt;p&gt;When the layer is setup various metadata is required for the PostGIS table. This includes information such as the table row count, geometry type and spatial extents of the data in the geometry column. If the table contains a large number of rows determining this metadata is time consuming.&lt;/p&gt;
267267
&lt;p&gt;By activating this option the following fast table metadata operations are done:&lt;/p&gt;
268-
&lt;p&gt;1) Row count is determined from table statistics obtained from running the PostgreSQL table analyse function.&lt;/p&gt;
268+
&lt;p&gt;1) Row count is determined from table statistics obtained from running the PostgreSQL table analyze function.&lt;/p&gt;
269269
&lt;p&gt;2) Table extents are always determined with the estimated_extent PostGIS function even if a layer filter is applied.&lt;/p&gt;
270270
&lt;p&gt;3) If the table geometry type is unknown and is not exclusively taken from the geometry_columns table, then it is determined from the first 100 non-null geometry rows in the table.&lt;/p&gt;
271271
&lt;/body&gt;

0 commit comments

Comments
 (0)