┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/commentwidget.cpp
diff options
context:
space:
mode:
authorStephan Binner <[email protected]>2008-11-17 21:03:31 +0000
committerStephan Binner <[email protected]>2008-11-17 21:03:31 +0000
commit916218269b32bfc3d03b790fca11dad5bbbd1c1f (patch)
treef1839be9ef33fb8fa7a7307b5e33ad7981b231a0 /src/commentwidget.cpp
parent194f19531fad013963f7eaca98f0c0ee08eb3398 (diff)
i18n style guide fixes
svn path=/trunk/KDE/kdebase/apps/; revision=885752
Diffstat (limited to 'src/commentwidget.cpp')
-rw-r--r--src/commentwidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commentwidget.cpp b/src/commentwidget.cpp
index e4bd6e941..586be63aa 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\">" + i18nc( "@label", "Add comment..." ) + "</a>" );
+ label->setText( "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18nc( "@label", "Add Comment..." ) + "</a>" );
}
else {
- label->setText( "<p>" + comment + "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18nc( "@label", "Change comment..." ) + "</a>" );
+ label->setText( "<p>" + comment + "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18nc( "@label", "Change Comment..." ) + "</a>" );
}
}