Skip to content

Commit 9ab668d

Browse files
committed
some more string typo fixes
1 parent dffbc16 commit 9ab668d

5 files changed

+10
-10
lines changed

src/app/qgshandlebadlayers.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ void QgsHandleBadLayersHandler::handleBadLayers( QList<QDomNode> layers, QDomDoc
4242
if ( dialog->layerCount() < layers.size() )
4343
QgisApp::instance()->messageBar()->pushMessage(
4444
tr( "Handle Bad layers" ),
45-
tr( "%1 of %2 bad layers were not not fixable." )
45+
tr( "%1 of %2 bad layers were not fixable." )
4646
.arg( layers.size() - dialog->layerCount() )
4747
.arg( layers.size() ),
4848
QgsMessageBar::WARNING, QgisApp::instance()->messageTimeout() );

src/app/qgsidentifyresultsdialog.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1374,7 +1374,7 @@ void QgsIdentifyResultsDialog::printCurrentItem()
13741374

13751375
if ( !wv )
13761376
{
1377-
QMessageBox::warning( this, tr( "Cannot not print" ), tr( "Cannot print this item" ) );
1377+
QMessageBox::warning( this, tr( "Cannot print" ), tr( "Cannot print this item" ) );
13781378
return;
13791379
}
13801380

src/gui/qgsdatadefinedbutton.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ void QgsDataDefinedButton::updateGui()
497497
deftip.append( "..." );
498498
}
499499

500-
mFullDescription += tr( "<b>Current definition%1:</b><br>%2" ).arg( deftype ).arg( deftip );
500+
mFullDescription += tr( "<b>Current definition %1:</b><br>%2" ).arg( deftype ).arg( deftip );
501501

502502
setToolTip( mFullDescription );
503503

src/providers/delimitedtext/qgsdelimitedtextsourceselect.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ void QgsDelimitedTextSourceSelect::on_buttonBox_accepted()
126126
{
127127
if ( selectedChars().size() == 0 )
128128
{
129-
QMessageBox::warning( this, tr( "No delimiters set" ), tr( "Please one or more characters to use as the delimiter, or choose a different delimiter type" ) );
129+
QMessageBox::warning( this, tr( "No delimiters set" ), tr( "Use one or more characters as the delimiter, or choose a different delimiter type" ) );
130130
txtDelimiterOther->setFocus();
131131
return;
132132
}

src/ui/qgsdelimitedtextsourceselectbase.ui

+6-6
Original file line numberDiff line numberDiff line change
@@ -512,13 +512,13 @@
512512
<item>
513513
<widget class="QRadioButton" name="delimiterCSV">
514514
<property name="toolTip">
515-
<string>The file a comma separated value file, fields delimited by commas and quoted by &quot;</string>
515+
<string>The file is a comma separated value file, fields delimited by commas and quoted by &quot;</string>
516516
</property>
517517
<property name="statusTip">
518-
<string>The file a comma separated value file, fields delimited by commas and quoted by &quot;</string>
518+
<string>The file is a comma separated value file, fields delimited by commas and quoted by &quot;</string>
519519
</property>
520520
<property name="whatsThis">
521-
<string>The file a comma separated value file, fields delimited by commas and quoted by &quot;</string>
521+
<string>The file is a comma separated value file, fields delimited by commas and quoted by &quot;</string>
522522
</property>
523523
<property name="text">
524524
<string>CSV (comma separated values)</string>
@@ -556,13 +556,13 @@
556556
</sizepolicy>
557557
</property>
558558
<property name="toolTip">
559-
<string>Each line in the file is split using a regular expression to define the end of each field</string>
559+
<string>Each line in the file is split using a regular expression to define the end of each field</string>
560560
</property>
561561
<property name="statusTip">
562-
<string>Each line in the file is split using a regular expression to define the end of each field</string>
562+
<string>Each line in the file is split using a regular expression to define the end of each field</string>
563563
</property>
564564
<property name="whatsThis">
565-
<string>Each line in the file is split using a regular expression to define the end of each field</string>
565+
<string>Each line in the file is split using a regular expression to define the end of each field</string>
566566
</property>
567567
<property name="text">
568568
<string>Regular expression delimiter</string>

0 commit comments

Comments
 (0)