From: Stephan Binner Date: Mon, 17 Nov 2008 21:03:31 +0000 (+0000) Subject: i18n style guide fixes X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/916218269b32bfc3d03b790fca11dad5bbbd1c1f i18n style guide fixes svn path=/trunk/KDE/kdebase/apps/; revision=885752 --- 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( "

" + i18nc( "@label", "Add comment..." ) + "" ); + label->setText( "

" + i18nc( "@label", "Add Comment..." ) + "" ); } else { - label->setText( "

" + comment + "

" + i18nc( "@label", "Change comment..." ) + "" ); + label->setText( "

" + comment + "

" + i18nc( "@label", "Change Comment..." ) + "" ); } } diff --git a/src/detailsviewsettingspage.cpp b/src/detailsviewsettingspage.cpp index b8d9869a6..8d67287c7 100644 --- a/src/detailsviewsettingspage.cpp +++ b/src/detailsviewsettingspage.cpp @@ -77,7 +77,7 @@ DetailsViewSettingsPage::DetailsViewSettingsPage(QWidget* parent) : textLayout->addWidget(m_fontRequester); // create "Expandable Folders" checkbox - m_expandableFolders = new QCheckBox(i18nc("@option:check", "Expandable Folders"), this); + m_expandableFolders = new QCheckBox(i18nc("@option:check", "Expandable folders"), this); connect(m_expandableFolders, SIGNAL(toggled(bool)), this, SIGNAL(changed())); // Add a dummy widget with no restriction regarding diff --git a/src/tagcloud/newtagdialog.cpp b/src/tagcloud/newtagdialog.cpp index 94af9aad7..8785d578c 100644 --- a/src/tagcloud/newtagdialog.cpp +++ b/src/tagcloud/newtagdialog.cpp @@ -28,7 +28,7 @@ NewTagDialog::NewTagDialog( QWidget* parent ) : KDialog( parent ) { - setCaption( i18nc( "@title:window", "Create new Tag" ) ); + setCaption( i18nc( "@title:window", "Create New Tag" ) ); setButtons( Ok|Cancel ); enableButtonOk( false ); diff --git a/src/tagcloud/newtagdialog.ui b/src/tagcloud/newtagdialog.ui index 5146030b8..d9bd666b5 100644 --- a/src/tagcloud/newtagdialog.ui +++ b/src/tagcloud/newtagdialog.ui @@ -79,7 +79,7 @@ - Detailed Description (optional): + Detailed description (optional): diff --git a/src/tagcloud/resourcetaggingwidget.cpp b/src/tagcloud/resourcetaggingwidget.cpp index 067c395fb..1e3fffe8f 100644 --- a/src/tagcloud/resourcetaggingwidget.cpp +++ b/src/tagcloud/resourcetaggingwidget.cpp @@ -119,7 +119,7 @@ Nepomuk::ResourceTaggingWidget::ResourceTaggingWidget( QWidget* parent ) layout->setMargin( 0 ); d->resourceTagCloud = new TagCloud( this ); layout->addWidget( d->resourceTagCloud ); - QLabel* changeTagsLabel = new QLabel( "

" + i18nc( "@label", "Change tags..." ) + "", this ); + QLabel* changeTagsLabel = new QLabel( "

" + i18nc( "@label", "Change Tags..." ) + "", this ); connect( changeTagsLabel, SIGNAL( linkActivated( const QString ) ), this, SLOT( _k_slotShowTaggingPopup() ) ); layout->addWidget( changeTagsLabel );