diff --git a/src/kcommentwidget.cpp b/src/kcommentwidget.cpp --- a/src/kcommentwidget.cpp +++ b/src/kcommentwidget.cpp @@ -70,7 +70,7 @@ if (m_readOnly) { text = QString(comment).toHtmlEscaped(); } else { - text = "

" + QString(comment).toHtmlEscaped() + " " + i18nc("@label", "Change...") + "

"; + text = "

" + QString(comment).toHtmlEscaped() + " " + i18nc("@label", "Edit...") + "

"; } } @@ -115,8 +115,8 @@ void KCommentWidget::slotLinkActivated(const QString& link) { - const QString caption = (link == "changeComment") ? - i18nc("@title:window", "Change Comment") : + const QString caption = (link == "editComment") ? + i18nc("@title:window", "Edit Comment") : i18nc("@title:window", "Add Comment"); QPointer dialog = new KEditCommentDialog(this, m_comment, caption); diff --git a/src/kedittagsdialog.cpp b/src/kedittagsdialog.cpp --- a/src/kedittagsdialog.cpp +++ b/src/kedittagsdialog.cpp @@ -44,7 +44,7 @@ m_newTagEdit(nullptr) { const QString captionText = (tags.count() > 0) ? - i18nc("@title:window", "Change Tags") : + i18nc("@title:window", "Edit Tags") : i18nc("@title:window", "Add Tags"); setWindowTitle(captionText); QDialogButtonBox* buttonBox = new QDialogButtonBox(this); diff --git a/src/tagwidget.cpp b/src/tagwidget.cpp --- a/src/tagwidget.cpp +++ b/src/tagwidget.cpp @@ -82,7 +82,7 @@ f.setUnderline(true); m_showAllLinkLabel->setFont(f); m_showAllLinkLabel->setText( QLatin1String("") + - ( m_checkBoxHash.isEmpty() ? i18nc("@label", "Add...") : i18nc("@label", "Change...") ) + + ( m_checkBoxHash.isEmpty() ? i18nc("@label", "Add...") : i18nc("@label", "Edit...") ) + QLatin1String("") ); q->connect( m_showAllLinkLabel, SIGNAL(linkActivated(QString)), SLOT(slotShowAll()) ); }