From e2cc716a7080f22019cf259f1c25d8af2f22cac6 Mon Sep 17 00:00:00 2001 From: Montel Laurent Date: Tue, 4 Jul 2017 23:26:49 +0200 Subject: [PATCH] Fix i18n --- agents/followupreminderagent/followupreminderinfodialog.cpp | 2 +- agents/followupreminderagent/followupremindernoanswerdialog.cpp | 2 +- src/editor/kmcomposerwin.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/agents/followupreminderagent/followupreminderinfodialog.cpp b/agents/followupreminderagent/followupreminderinfodialog.cpp index ffdb35cea..94eae0ca4 100644 --- a/agents/followupreminderagent/followupreminderinfodialog.cpp +++ b/agents/followupreminderagent/followupreminderinfodialog.cpp @@ -58,7 +58,7 @@ FollowUpReminderInfoDialog::FollowUpReminderInfoDialog(QWidget *parent) QStringLiteral("followupreminderagent"), i18n("Follow Up Reminder Agent"), QStringLiteral(KDEPIM_VERSION), - i18n("Follow Up Mail."), + i18n("Follow Up Reminder"), KAboutLicense::GPL_V2, i18n("Copyright (C) 2014-2017 Laurent Montel")); diff --git a/agents/followupreminderagent/followupremindernoanswerdialog.cpp b/agents/followupreminderagent/followupremindernoanswerdialog.cpp index 12124ea9c..053102645 100644 --- a/agents/followupreminderagent/followupremindernoanswerdialog.cpp +++ b/agents/followupreminderagent/followupremindernoanswerdialog.cpp @@ -33,7 +33,7 @@ FollowUpReminderNoAnswerDialog::FollowUpReminderNoAnswerDialog(QWidget *parent) : QDialog(parent) { - setWindowTitle(i18n("Follow Up Mail")); + setWindowTitle(i18n("Follow Up Reminder")); setWindowIcon(QIcon::fromTheme(QStringLiteral("kmail"))); setAttribute(Qt::WA_DeleteOnClose); diff --git a/src/editor/kmcomposerwin.cpp b/src/editor/kmcomposerwin.cpp index 2c5613fb5..6b9d4f32f 100644 --- a/src/editor/kmcomposerwin.cpp +++ b/src/editor/kmcomposerwin.cpp @@ -1321,7 +1321,7 @@ void KMComposerWin::setupActions(void) mComposerBase->editor()->createActions(actionCollection()); - mFollowUpToggleAction = new KToggleAction(i18n("Follow Up Mail..."), this); + mFollowUpToggleAction = new KToggleAction(i18n("Create Follow Up Reminder..."), this); actionCollection()->addAction(QStringLiteral("follow_up_mail"), mFollowUpToggleAction); connect(mFollowUpToggleAction, &KToggleAction::triggered, this, &KMComposerWin::slotFollowUpMail); mFollowUpToggleAction->setEnabled(FollowUpReminder::FollowUpReminderUtil::followupReminderAgentEnabled());