Skip to content

Commit

Permalink
fix translation
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Nov 11, 2016
1 parent 12cfb31 commit f273e85
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion i18n/qgis_de.ts
Expand Up @@ -67672,7 +67672,7 @@ Fehler:%2
</message>
<message>
<location filename="../src/providers/oracle/qgsoracleprovider.cpp" line="722"/>
<source>No spatial index on column %1 found - expect poor performance.</source>
<source>No spatial index on column %1.%2.%3 found - expect poor performance.</source>
<translation>Kein räumlicher Index auf Spalte %1.%2.%3 gefunden - schlechte Performance ist zu erwarten.</translation>
</message>
<message>
Expand Down
4 changes: 3 additions & 1 deletion src/providers/oracle/qgsoracleprovider.cpp
Expand Up @@ -719,7 +719,9 @@ bool QgsOracleProvider::loadFields()

if ( !mHasSpatialIndex )
{
QgsMessageLog::logMessage( tr( "No spatial index on column %1 found - expect poor performance." )
QgsMessageLog::logMessage( tr( "No spatial index on column %1.%2.%3 found - expect poor performance." )
.arg( mOwnerName )
.arg( mTableName )
.arg( mGeometryColumn ),
tr( "Oracle" ) );
}
Expand Down

0 comments on commit f273e85

Please sign in to comment.