From 52e9ed2ca0fdf5af8ade30da7d4a889cda1eecb3 Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Wed, 22 Nov 2017 08:54:14 +0100 Subject: [PATCH] Improve wording for encrypt warning The old text said "will be uploaded" which is wrong, the new text is also more positive but still communicates the problem. --- src/filter/filteractions/filteractionencrypt.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/filter/filteractions/filteractionencrypt.cpp b/src/filter/filteractions/filteractionencrypt.cpp index 3b1609b..64a0359 100644 --- a/src/filter/filteractions/filteractionencrypt.cpp +++ b/src/filter/filteractions/filteractionencrypt.cpp @@ -268,11 +268,11 @@ QWidget *FilterActionEncrypt::createParamWidget(QWidget *parent) const palette.setColor(lbl->foregroundRole(), KColorScheme(QPalette::Normal).foreground(KColorScheme::NegativeText).color()); lbl->setPalette(palette); lbl->setWordWrap(true); - lbl->setText(i18n("Warning: the encrypted emails will be uploaded back to the server!")); - lbl->setToolTip(i18n("

You will not be able to read the encrypted emails on any other computer " - "or email client unless you have your private key available there.

" - "

Also note that most webmail interfaces don't support encryption, so you " - "will not be able to read the encrypted emails there.

")); + lbl->setText(i18n("Warning: Seckey necessary to read emails.")); + lbl->setToolTip(i18n("

Once an email has been encrypted you will need a crypto setup with " + "your secret key to access the contents again.

" + "

If you keep emails stored on an email server and use several clients, " + "each of them must be configured to enable decryption.

")); l->addWidget(lbl); return w;