Change texts I forgot to change in 35d481e783

This commit is contained in:
Fabio D'Urso 2013-05-20 14:52:47 +02:00
parent c1bf817e75
commit 923698caab
2 changed files with 2 additions and 2 deletions

View file

@ -69,7 +69,7 @@ QString captionForAnnotation( const Okular::Annotation * ann )
{
case Okular::Annotation::AText:
if( ( (Okular::TextAnnotation*)ann )->textType() == Okular::TextAnnotation::Linked )
ret = i18n( "Note" );
ret = i18n( "Pop-up Note" );
else
ret = i18n( "Inline Note" );
break;

View file

@ -206,7 +206,7 @@ class PickPointEngine : public AnnotatorEngine
rect.top = point.y;
rect.right=rect.left+iconhei;
rect.bottom=rect.top+iconhei*xscale/yscale;
ta->window().setSummary( i18n( "Note" ) );
ta->window().setSummary( i18n( "Pop-up Note" ) );
}
// create StampAnnotation from path
else if ( typeString == "Stamp" )