┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/commentwidget.cpp4
-rw-r--r--src/detailsviewsettingspage.cpp2
-rw-r--r--src/tagcloud/newtagdialog.cpp2
-rw-r--r--src/tagcloud/newtagdialog.ui2
-rw-r--r--src/tagcloud/resourcetaggingwidget.cpp2
5 files changed, 6 insertions, 6 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>" );
}
}
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 @@
<item>
<widget class="QLabel" name="label" >
<property name="text" >
- <string comment="@label">Detailed Description (optional):</string>
+ <string comment="@label">Detailed description (optional):</string>
</property>
</widget>
</item>
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( "<p align=center><a style=\"font-size:small;\" href=\"dummy\">" + i18nc( "@label", "Change tags..." ) + "</a>", this );
+ QLabel* changeTagsLabel = new QLabel( "<p align=center><a style=\"font-size:small;\" href=\"dummy\">" + i18nc( "@label", "Change Tags..." ) + "</a>", this );
connect( changeTagsLabel, SIGNAL( linkActivated( const QString ) ),
this, SLOT( _k_slotShowTaggingPopup() ) );
layout->addWidget( changeTagsLabel );