]> cloud.milkyroute.net Git - dolphin.git/blobdiff - src/metadatawidget.cpp
use "Sort by" instead of "Sort By"
[dolphin.git] / src / metadatawidget.cpp
index c8fe1e438d18f5483ed792e5898b3da2d5270965..0ecba4390d2502d285b34ead3ddc309ca92e9d3e 100644 (file)
@@ -67,7 +67,7 @@ void MetaDataWidget::Private::loadComment(const QString& comment)
     editComment->blockSignals(true);
     if (comment.isEmpty()) {
         editComment->setFontItalic(true);
-        editComment->setText(i18n("Click to add comment..."));
+        editComment->setText(i18nc("@info:tooltip", "Click to add comment..."));
     } else {
         editComment->setFontItalic(false);
         editComment->setText(comment);
@@ -91,13 +91,13 @@ MetaDataWidget::MetaDataWidget(QWidget* parent) :
     QVBoxLayout* lay = new QVBoxLayout(this);
     lay->setMargin(0);
     QHBoxLayout* hbox = new QHBoxLayout;
-    hbox->addWidget(new QLabel(i18n("Rating:"), this));
+    hbox->addWidget(new QLabel(i18nc("@label:slider", "Rating:"), this));
     hbox->addStretch(1);
     hbox->addWidget(d->ratingWidget);
     lay->addLayout(hbox);
     lay->addWidget(d->editComment);
     hbox = new QHBoxLayout;
-    hbox->addWidget(new QLabel(i18n("Tags:"), this));
+    hbox->addWidget(new QLabel(i18nc("@label:textbox", "Tags:"), this));
     hbox->addWidget(d->tagWidget, 1);
     lay->addLayout(hbox);