diff options
| author | Peter Penz <[email protected]> | 2008-03-22 16:52:46 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-03-22 16:52:46 +0000 |
| commit | fbe257768cf88efb65064b3302aa88c074eaf719 (patch) | |
| tree | 9086011cc5981dc4e3aecfd6ce6e71bfca41956c /src | |
| parent | 4eaa9ddcb14d72368f9e59ab5b5c1d19b8282258 (diff) | |
* changed "Click to add comment..." to simply "Add comment..." for consistency with the "Change tags..." link
* do a centered alignment for "Change comment..."
CCMAIL: [email protected]
svn path=/trunk/KDE/kdebase/apps/; revision=788837
Diffstat (limited to 'src')
| -rw-r--r-- | src/commentwidget.cpp | 4 |
1 files 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( "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18n( "Click to add comment..." ) + "</a>" ); + label->setText( "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18n( "Add comment..." ) + "</a>" ); } else { - label->setText( "<p>" + comment + "<p align=right><a style=\"font-size:small;\" href=\"addComment\">" + i18n( "Change comment..." ) + "</a>" ); + label->setText( "<p>" + comment + "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18n( "Change comment..." ) + "</a>" ); } } |
