Skip to content

Commit d70578b

Browse files
author
jef
committed
fix compile error
git-svn-id: http://svn.osgeo.org/qgis/trunk@12644 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 51580ee commit d70578b

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

i18n/qgis_de.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8107,17 +8107,17 @@ Fehler war:%2</translation>
81078107
</message>
81088108
<message>
81098109
<location filename="../src/core/qgscoordinatetransform.cpp" line="456"/>
8110-
<source>inverse</source>
8110+
<source>inverse transform</source>
81118111
<translation>Rücktransformation</translation>
81128112
</message>
81138113
<message>
81148114
<location filename="../src/core/qgscoordinatetransform.cpp" line="463"/>
8115-
<source>forward</source>
8115+
<source>forward transform</source>
81168116
<translation>Transformation</translation>
81178117
</message>
81188118
<message>
81198119
<location filename="../src/core/qgscoordinatetransform.cpp" line="483"/>
8120-
<source>%1 transform of
8120+
<source>%1 of
81218121
%2
81228122
failed with error: %3
81238123
</source>

src/core/qgscoordinatetransform.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -453,14 +453,14 @@ void QgsCoordinateTransform::transformCoords( const int& numPoints, double *x, d
453453
if ( direction == ReverseTransform )
454454
{
455455
projResult = pj_transform( mDestinationProjection, mSourceProjection, numPoints, 0, x, y, z );
456-
dir = tr( "inverse" );
456+
dir = tr( "inverse transform" );
457457
}
458458
else
459459
{
460460
assert( mSourceProjection != 0 );
461461
assert( mDestinationProjection != 0 );
462462
projResult = pj_transform( mSourceProjection, mDestinationProjection, numPoints, 0, x, y, z );
463-
dir = tr( "forward" );
463+
dir = tr( "forward transform" );
464464
}
465465

466466
if ( projResult != 0 )
@@ -480,10 +480,10 @@ void QgsCoordinateTransform::transformCoords( const int& numPoints, double *x, d
480480
}
481481
}
482482

483-
QString msg = tr("%1 transform of\n%2\nfailed with error: %3\n")
483+
QString msg = tr("%1 of\n%2\nfailed with error: %3\n")
484484
.arg( dir )
485485
.arg( points )
486-
.arg( QString::fromUtf8( pj_strerrno( projResult ) ) ) );
486+
.arg( QString::fromUtf8( pj_strerrno( projResult ) ) );
487487

488488
QgsDebugMsg( "Projection failed emitting invalid transform signal: " + msg );
489489

0 commit comments

Comments
 (0)