From: Peter Penz Date: Sat, 22 Mar 2008 16:52:46 +0000 (+0000) Subject: * changed "Click to add comment..." to simply "Add comment..." for consistency with... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/fbe257768cf88efb65064b3302aa88c074eaf719 * changed "Click to add comment..." to simply "Add comment..." for consistency with the "Change tags..." link * do a centered alignment for "Change comment..." CCMAIL: sebastian@trueg.de svn path=/trunk/KDE/kdebase/apps/; revision=788837 --- diff --git a/src/commentwidget.cpp b/src/commentwidget.cpp index eebf12ad6..4d784e5e5 100644 --- a/src/commentwidget.cpp +++ b/src/commentwidget.cpp @@ -52,10 +52,10 @@ private: void CommentWidget::Private::update() { if ( comment.isEmpty() ) { - label->setText( "

" + i18n( "Click to add comment..." ) + "" ); + label->setText( "

" + i18n( "Add comment..." ) + "" ); } else { - label->setText( "

" + comment + "

" + i18n( "Change comment..." ) + "" ); + label->setText( "

" + comment + "

" + i18n( "Change comment..." ) + "" ); } }