Skip to content

Commit

Permalink
add missing tr()
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@9763 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed Dec 9, 2008
1 parent 034852c commit 585310c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsrasterlayerproperties.cpp
Expand Up @@ -434,11 +434,11 @@ void QgsRasterLayerProperties::setMinimumMaximumEstimateWarning()

if ( myEstimatedValues )
{
lblMinMaxEstimateWarning->setText( "Note: Minimum Maximum values are estimates or user defined" );
lblMinMaxEstimateWarning->setText( tr("Note: Minimum Maximum values are estimates or user defined") );
}
else
{
lblMinMaxEstimateWarning->setText( "Note: Minimum Maximum values are actual values computed from the band(s)" );
lblMinMaxEstimateWarning->setText( tr("Note: Minimum Maximum values are actual values computed from the band(s)") );
}
}

Expand Down

0 comments on commit 585310c

Please sign in to comment.