3,100 changes: 1,604 additions & 1,496 deletions i18n/qgis_de.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion resources/context_help/QgsDelimitedTextSourceSelect-en_US
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ It is safer to use an explicit coding if the QGIS project needs to be portable.
<li>Discard empty fields: if selected then empty fields (after trimming) will be discard. This
affects the alignment of data into fields and is equivalent to treating consecutive delimiters as a
single delimiter. Quoted fields are never discarded.</li>
<li>Decimal point is comma: if selected then commas are used as the decimal point in real numbers. For
<li>Decimal separator is comma: if selected then commas instead of points are used as the decimal separator in real numbers. For
example <tt>-51,354</tt> is equivalent to -51.354.
</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2989,7 +2989,7 @@ void QgisApp::addDelimitedTextLayer()
QDialog *dts = dynamic_cast<QDialog*>( QgsProviderRegistry::instance()->selectWidget( "delimitedtext", this ) );
if ( !dts )
{
QMessageBox::warning( this, tr( "DelimitedText" ), tr( "Cannot get Delimited Text select dialog from provider." ) );
QMessageBox::warning( this, tr( "Delimited Text" ), tr( "Cannot get Delimited Text select dialog from provider." ) );
return;
}
connect( dts, SIGNAL( addVectorLayer( QString, QString, QString ) ),
Expand Down
6 changes: 3 additions & 3 deletions src/ui/qgsdelimitedtextsourceselectbase.ui
Original file line number Diff line number Diff line change
Expand Up @@ -595,13 +595,13 @@
<item>
<widget class="QCheckBox" name="cbxSubsetIndex">
<property name="statusTip">
<string>Use an index to improve performance of subset queries (set in layer properties)</string>
<string>Use an index to improve performance of subset filters (set in layer properties)</string>
</property>
<property name="whatsThis">
<string>Use an index to improve performance of subset queries (set in layer properties)</string>
<string>Use an index to improve performance of subset filters (set in layer properties)</string>
</property>
<property name="accessibleName">
<string>Use an index to improve performance of subset queries (set in layer properties)</string>
<string>Use an index to improve performance of subset filters (set in layer properties)</string>
</property>
<property name="text">
<string>Use subset index</string>
Expand Down