Showing with 4 additions and 4 deletions.
  1. +1 −1 i18n/qgis_nl.ts
  2. +1 −1 src/app/composer/qgscomposer.cpp
  3. +1 −1 src/core/qgsexpression.cpp
  4. +1 −1 src/providers/delimitedtext/qgsdelimitedtextprovider.cpp
2 changes: 1 addition & 1 deletion i18n/qgis_nl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33983,7 +33983,7 @@ Dit kan een serverconfiguratie fout zijn. Moet de URL worden gebruikt?</translat
</message>
<message>
<source>Tilesets</source>
<translation>Tilesetss</translation>
<translation>Tilesets</translation>
</message>
<message>
<source>Styles</source>
Expand Down
2 changes: 1 addition & 1 deletion src/app/composer/qgscomposer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ void QgsComposer::on_mActionExportAsSVG_triggered()
m->setCheckBoxState( Qt::Unchecked );
m->setCheckBoxVisible( true );
m->setCheckBoxQSettingsLabel( settingsLabel );
m->setMessageAsHtml( tr( "<p>The SVG export function in Qgis has several "
m->setMessageAsHtml( tr( "<p>The SVG export function in QGIS has several "
"problems due to bugs and deficiencies in the " )
+ tr( "Qt4 svg code. In particular, there are problems "
"with layers not being clipped to the map "
Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsexpression.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1551,7 +1551,7 @@ bool QgsExpression::NodeColumnRef::prepare( QgsExpression* parent, const QgsFiel
return true;
}
}
parent->mEvalErrorString = QObject::tr( "Column '%1'' not found" ).arg( mName );
parent->mEvalErrorString = QObject::tr( "Column '%1' not found" ).arg( mName );
mIndex = -1;
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion src/providers/delimitedtext/qgsdelimitedtextprovider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ bool QgsDelimitedTextProvider::nextFeature( QgsFeature& feature )
mShowInvalidLines = false;
QgsMessageOutput* output = QgsMessageOutput::createMessageOutput();
output->setTitle( tr( "Error" ) );
output->setMessage( tr( "Note: the following lines were not loaded because Qgis was "
output->setMessage( tr( "Note: the following lines were not loaded because QGIS was "
"unable to determine values for the x and y coordinates:\n" ),
QgsMessageOutput::MessageText );

Expand Down