diff options
Diffstat (limited to 'kalarm')
-rw-r--r-- | kalarm/kamail.cpp | 2 | ||||
-rw-r--r-- | kalarm/prefdlg.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/kalarm/kamail.cpp b/kalarm/kamail.cpp index b68f45ba5..faf3e5c3c 100644 --- a/kalarm/kamail.cpp +++ b/kalarm/kamail.cpp @@ -134,7 +134,7 @@ bool KAMail::send(const KAEvent& event, TQStringList& errmsgs, bool allowNotify) errmsgs = errors(i18n("No 'From' email address is configured (no default KMail identity found)\nPlease set it in KMail or in the KAlarm Preferences dialog.")); break; case Preferences::MAIL_FROM_CONTROL_CENTRE: - errmsgs = errors(i18n("No 'From' email address is configured.\nPlease set it in the TDE Control Center or in the KAlarm Preferences dialog.")); + errmsgs = errors(i18n("No 'From' email address is configured.\nPlease set it in the Trinity Control Center or in the KAlarm Preferences dialog.")); break; case Preferences::MAIL_FROM_ADDR: default: diff --git a/kalarm/prefdlg.cpp b/kalarm/prefdlg.cpp index 2525139f7..22346afa0 100644 --- a/kalarm/prefdlg.cpp +++ b/kalarm/prefdlg.cpp @@ -658,7 +658,7 @@ EmailPrefTab::EmailPrefTab(TQVBox* frame) radio->setFixedSize(radio->sizeHint()); mFromAddressGroup->insert(radio, Preferences::MAIL_FROM_CONTROL_CENTRE); TQWhatsThis::add(radio, - i18n("Check to use the email address set in the TDE Control Center, to identify you as the sender when sending email alarms.")); + i18n("Check to use the email address set in the Trinity Control Center, to identify you as the sender when sending email alarms.")); grid->addMultiCellWidget(radio, 2, 2, 1, 2, TQt::AlignAuto); // 'From' email address to be picked from KMail's identities when the email alarm is configured @@ -699,7 +699,7 @@ EmailPrefTab::EmailPrefTab(TQVBox* frame) radio->setFixedSize(radio->sizeHint()); mBccAddressGroup->insert(radio, Preferences::MAIL_FROM_CONTROL_CENTRE); TQWhatsThis::add(radio, - i18n("Check to use the email address set in the TDE Control Center, for blind copying email alarms to yourself.")); + i18n("Check to use the email address set in the Trinity Control Center, for blind copying email alarms to yourself.")); grid->addMultiCellWidget(radio, 6, 6, 1, 2, TQt::AlignAuto); group->setFixedHeight(group->sizeHint().height()); @@ -799,7 +799,7 @@ TQString EmailPrefTab::validateAddr(ButtonGroup* group, TQLineEdit* addr, const case Preferences::MAIL_FROM_CONTROL_CENTRE: if (!KAMail::controlCentreAddress().isEmpty()) return TQString(); - errmsg = i18n("No email address is currently set in the TDE Control Center. %1").arg(errmsg); + errmsg = i18n("No email address is currently set in the Trinity Control Center. %1").arg(errmsg); break; case Preferences::MAIL_FROM_KMAIL: if (KAMail::identitiesExist()) |