diff options
| author | Chusslove Illich <[email protected]> | 2008-04-21 17:41:57 +0000 |
|---|---|---|
| committer | Chusslove Illich <[email protected]> | 2008-04-21 17:41:57 +0000 |
| commit | ead963b8ce59aa572eead3f573573108372b75a6 (patch) | |
| tree | 0f0a0f1c87462ed23c1177d2e1cb91ff23e75bd7 /src/commentwidget.cpp | |
| parent | ab0c34359d56285af592b0f2fb74302a568a2753 (diff) | |
i18n fixes.
svn path=/trunk/KDE/kdebase/apps/; revision=799503
Diffstat (limited to 'src/commentwidget.cpp')
| -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 4d784e5e5..e4bd6e941 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( "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\">" + i18n( "Change comment..." ) + "</a>" ); + label->setText( "<p>" + comment + "<p align=center><a style=\"font-size:small;\" href=\"addComment\">" + i18nc( "@label", "Change comment..." ) + "</a>" ); } } |
