Skip to content

Commit

Permalink
some more string typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mach0 committed Jul 9, 2013
1 parent dffbc16 commit 9ab668d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/app/qgshandlebadlayers.cpp
Expand Up @@ -42,7 +42,7 @@ void QgsHandleBadLayersHandler::handleBadLayers( QList<QDomNode> layers, QDomDoc
if ( dialog->layerCount() < layers.size() )
QgisApp::instance()->messageBar()->pushMessage(
tr( "Handle Bad layers" ),
tr( "%1 of %2 bad layers were not not fixable." )
tr( "%1 of %2 bad layers were not fixable." )
.arg( layers.size() - dialog->layerCount() )
.arg( layers.size() ),
QgsMessageBar::WARNING, QgisApp::instance()->messageTimeout() );
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsidentifyresultsdialog.cpp
Expand Up @@ -1374,7 +1374,7 @@ void QgsIdentifyResultsDialog::printCurrentItem()

if ( !wv )
{
QMessageBox::warning( this, tr( "Cannot not print" ), tr( "Cannot print this item" ) );
QMessageBox::warning( this, tr( "Cannot print" ), tr( "Cannot print this item" ) );
return;
}

Expand Down
2 changes: 1 addition & 1 deletion src/gui/qgsdatadefinedbutton.cpp
Expand Up @@ -497,7 +497,7 @@ void QgsDataDefinedButton::updateGui()
deftip.append( "..." );
}

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

setToolTip( mFullDescription );

Expand Down
Expand Up @@ -126,7 +126,7 @@ void QgsDelimitedTextSourceSelect::on_buttonBox_accepted()
{
if ( selectedChars().size() == 0 )
{
QMessageBox::warning( this, tr( "No delimiters set" ), tr( "Please one or more characters to use as the delimiter, or choose a different delimiter type" ) );
QMessageBox::warning( this, tr( "No delimiters set" ), tr( "Use one or more characters as the delimiter, or choose a different delimiter type" ) );
txtDelimiterOther->setFocus();
return;
}
Expand Down
12 changes: 6 additions & 6 deletions src/ui/qgsdelimitedtextsourceselectbase.ui
Expand Up @@ -512,13 +512,13 @@
<item>
<widget class="QRadioButton" name="delimiterCSV">
<property name="toolTip">
<string>The file a comma separated value file, fields delimited by commas and quoted by &quot;</string>
<string>The file is a comma separated value file, fields delimited by commas and quoted by &quot;</string>
</property>
<property name="statusTip">
<string>The file a comma separated value file, fields delimited by commas and quoted by &quot;</string>
<string>The file is a comma separated value file, fields delimited by commas and quoted by &quot;</string>
</property>
<property name="whatsThis">
<string>The file a comma separated value file, fields delimited by commas and quoted by &quot;</string>
<string>The file is a comma separated value file, fields delimited by commas and quoted by &quot;</string>
</property>
<property name="text">
<string>CSV (comma separated values)</string>
Expand Down Expand Up @@ -556,13 +556,13 @@
</sizepolicy>
</property>
<property name="toolTip">
<string>Each line in the file is split using a regular expression to define the end of each field</string>
<string>Each line in the file is split using a regular expression to define the end of each field</string>
</property>
<property name="statusTip">
<string>Each line in the file is split using a regular expression to define the end of each field</string>
<string>Each line in the file is split using a regular expression to define the end of each field</string>
</property>
<property name="whatsThis">
<string>Each line in the file is split using a regular expression to define the end of each field</string>
<string>Each line in the file is split using a regular expression to define the end of each field</string>
</property>
<property name="text">
<string>Regular expression delimiter</string>
Expand Down

0 comments on commit 9ab668d

Please sign in to comment.