┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/tagcloud/newtagdialog.cpp
diff options
context:
space:
mode:
authorChusslove Illich <[email protected]>2008-04-21 17:41:57 +0000
committerChusslove Illich <[email protected]>2008-04-21 17:41:57 +0000
commitead963b8ce59aa572eead3f573573108372b75a6 (patch)
tree0f0a0f1c87462ed23c1177d2e1cb91ff23e75bd7 /src/tagcloud/newtagdialog.cpp
parentab0c34359d56285af592b0f2fb74302a568a2753 (diff)
i18n fixes.
svn path=/trunk/KDE/kdebase/apps/; revision=799503
Diffstat (limited to 'src/tagcloud/newtagdialog.cpp')
-rw-r--r--src/tagcloud/newtagdialog.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tagcloud/newtagdialog.cpp b/src/tagcloud/newtagdialog.cpp
index 0fe574fdc..4dfafedf8 100644
--- a/src/tagcloud/newtagdialog.cpp
+++ b/src/tagcloud/newtagdialog.cpp
@@ -28,7 +28,7 @@
NewTagDialog::NewTagDialog( QWidget* parent )
: KDialog( parent )
{
- setCaption( i18n( "Create new Tag" ) );
+ setCaption( i18nc( "@title:window", "Create new Tag" ) );
setButtons( Ok|Cancel );
enableButtonOk( false );
@@ -53,8 +53,8 @@ void NewTagDialog::slotLabelChanged( const QString& text )
Nepomuk::Tag NewTagDialog::createTag( QWidget* parent )
{
NewTagDialog dlg( parent );
- dlg.m_labelTitle->setText( i18n( "Create New Tag" ) );
- dlg.m_labelTitle->setComment( i18n( "with optional icon and description" ) );
+ dlg.m_labelTitle->setText( i18nc( "@title:window", "Create New Tag" ) );
+ dlg.m_labelTitle->setComment( i18nc( "@title:window subtitle to previous message", "with optional icon and description" ) );
dlg.m_labelTitle->setPixmap( KIcon( "nepomuk" ).pixmap( 32, 32 ) );
dlg.m_editTagLabel->setFocus();