Skip to content

Commit cff3569

Browse files
DelazJnyalldawson
authored andcommittedOct 24, 2017
Typo fixes
1 parent 9388717 commit cff3569

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed
 

‎scripts/spell_check/spelling.dat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2547,6 +2547,7 @@ empirial:imperial
25472547
emporer:emperor
25482548
emprisoned:imprisoned
25492549
emptry:empty
2550+
empy:empty
25502551
emtied:emptied
25512552
emties:empties
25522553
emtpy:empty

‎src/gui/symbology/qgsstylemanagerdialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ bool QgsStyleManagerDialog::removeColorRamp()
792792
{
793793
QModelIndexList indexes = listItems->selectionModel()->selectedIndexes();
794794
if ( QMessageBox::Yes != QMessageBox::question( this, tr( "Confirm removal" ),
795-
QString( tr( "Do you really want to remove %n ramps(s)?", nullptr, indexes.count() ) ),
795+
QString( tr( "Do you really want to remove %n ramp(s)?", nullptr, indexes.count() ) ),
796796
QMessageBox::Yes,
797797
QMessageBox::No ) )
798798
return false;

‎src/providers/ogr/qgsgeopackagedataitems.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ void QgsGeoPackageCollectionItem::addTable()
519519
}
520520
else
521521
{
522-
QgsDebugMsg( QStringLiteral( "Cannot add Table: connection %1 does not exists or the path is empy!" ).arg( connName ) );
522+
QgsDebugMsg( QStringLiteral( "Cannot add Table: connection %1 does not exist or the path is empty!" ).arg( connName ) );
523523
}
524524
}
525525

@@ -593,7 +593,7 @@ QgsGeoPackageAbstractLayerItem::QgsGeoPackageAbstractLayerItem( QgsDataItem *par
593593

594594
bool QgsGeoPackageAbstractLayerItem::executeDeleteLayer( QString &errCause )
595595
{
596-
errCause = QObject::tr( "The layer <b>%1</b> cannot be deleted because the this feature is not yet implemented for this kind of layers." ).arg( mName );
596+
errCause = QObject::tr( "The layer <b>%1</b> cannot be deleted because this feature is not yet implemented for this kind of layers." ).arg( mName );
597597
return false;
598598
}
599599

‎src/ui/qgsvectorlayerpropertiesbase.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2225,7 +2225,7 @@ border-radius: 2px;</string>
22252225
<item row="0" column="0">
22262226
<widget class="QLabel" name="label_1">
22272227
<property name="text">
2228-
<string>Auxiliary storage tables can contain additional data that should only belong to the project file. For instance, specific location or rotation for labels. Auxiliary data are saved in qgd files. New fields can be added from any data-defined widget when needed. Be aware that this information will NOT be saved in you datasource but only in the project file.</string>
2228+
<string>Auxiliary storage tables can contain additional data that should only belong to the project file. For instance, specific location or rotation for labels. Auxiliary data are saved in qgd files. New fields can be added from any data-defined widget when needed. Be aware that this information will NOT be saved in the data source but only in the project file.</string>
22292229
</property>
22302230
<property name="wordWrap">
22312231
<bool>true</bool>

0 commit comments

Comments
 (0)
Please sign in to comment.