Skip to content

Commit f5ca533

Browse files
committed
Merge pull request #816 from artfwo/properties-untranslatable-tooltip
Fix untranslatable tooltip in project properties.
2 parents 58a3f01 + dffd64c commit f5ca533

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/qgsprojectproperties.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1345,7 +1345,7 @@ void QgsProjectProperties::populateEllipsoidList()
13451345
mEllipsoidList.append( myItem );
13461346

13471347
myItem.acronym = QString( "PARAMETER:6370997:6370997" );
1348-
myItem.description = tr( "Parameters :" );
1348+
myItem.description = tr( "Parameters:" );
13491349
myItem.semiMajor = 6370997.0;
13501350
myItem.semiMinor = 6370997.0;
13511351
mEllipsoidList.append( myItem );
@@ -1449,8 +1449,8 @@ void QgsProjectProperties::updateEllipsoidUI( int newIndex )
14491449
}
14501450
else
14511451
{
1452-
leSemiMajor->setToolTip( QString( "Select %1 from pull-down menu to adjust radii" ).arg( tr( "Parameters:" ) ) );
1453-
leSemiMinor->setToolTip( QString( "Select %1 from pull-down menu to adjust radii" ).arg( tr( "Parameters:" ) ) );
1452+
leSemiMajor->setToolTip( tr( "Select %1 from pull-down menu to adjust radii" ).arg( tr( "Parameters:" ) ) );
1453+
leSemiMinor->setToolTip( tr( "Select %1 from pull-down menu to adjust radii" ).arg( tr( "Parameters:" ) ) );
14541454
}
14551455
cmbEllipsoid->setCurrentIndex( mEllipsoidIndex ); // Not always necessary
14561456
if ( mEllipsoidList[ mEllipsoidIndex ].acronym != GEO_NONE )

0 commit comments

Comments
 (0)