From fbe257768cf88efb65064b3302aa88c074eaf719 Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Sat, 22 Mar 2008 16:52:46 +0000 Subject: [PATCH] * 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 --- src/commentwidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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..." ) + "" ); } } -- 2.47.3