Skip to content

Commit f273e85

Browse files
committedNov 11, 2016
fix translation
1 parent 12cfb31 commit f273e85

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎i18n/qgis_de.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67672,7 +67672,7 @@ Fehler:%2
6767267672
</message>
6767367673
<message>
6767467674
<location filename="../src/providers/oracle/qgsoracleprovider.cpp" line="722"/>
67675-
<source>No spatial index on column %1 found - expect poor performance.</source>
67675+
<source>No spatial index on column %1.%2.%3 found - expect poor performance.</source>
6767667676
<translation>Kein räumlicher Index auf Spalte %1.%2.%3 gefunden - schlechte Performance ist zu erwarten.</translation>
6767767677
</message>
6767867678
<message>

‎src/providers/oracle/qgsoracleprovider.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -719,7 +719,9 @@ bool QgsOracleProvider::loadFields()
719719

720720
if ( !mHasSpatialIndex )
721721
{
722-
QgsMessageLog::logMessage( tr( "No spatial index on column %1 found - expect poor performance." )
722+
QgsMessageLog::logMessage( tr( "No spatial index on column %1.%2.%3 found - expect poor performance." )
723+
.arg( mOwnerName )
724+
.arg( mTableName )
723725
.arg( mGeometryColumn ),
724726
tr( "Oracle" ) );
725727
}

0 commit comments

Comments
 (0)
Please sign in to comment.