diff options
-rw-r--r-- | TODO | 2 | ||||
-rwxr-xr-x | settingsdialog.cpp | 3 |
2 files changed, 4 insertions, 1 deletions
@@ -5,6 +5,7 @@ Release 0.4 - replace gpgme with kgpg (lots of work and trouble!!!) - Refresh key from keyserver [DONE] - add encrypt to self functionality [DONE] + - add automatic restart if key changed - add find action in textedit [DONE] - BUG: hit strg+f, then hit escape -> text not editable anymore, same with not found expression - When search previous, text should be searched from end again, if no hit is found @@ -18,6 +19,7 @@ Release 0.4 - exclude translators list from about dialog [DONE] - change docu on file de- and encryption - add possibility to set alternative relative path to keydb [DONE] + - on startup check, if keydb path exists, if keydb path isn't default - add possibility for creation of RSA keys [DONE] - add posibility to add keyserver in settings [DONE] - add posibility to remove keyserver in settings [DONE] diff --git a/settingsdialog.cpp b/settingsdialog.cpp index 065e31f..690d9d2 100755 --- a/settingsdialog.cpp +++ b/settingsdialog.cpp @@ -176,8 +176,9 @@ GeneralTab::GeneralTab(GpgME::GpgContext *ctx,QWidget *parent) } connect(ownKeySelectBox,SIGNAL(currentIndexChanged(int)),this,SLOT(slotOwnKeyIdChanged())); - ownKeyBoxLayout->addWidget(new QLabel(tr("All messages are additionaly encrypted to the following key:"))); + ownKeyBoxLayout->addWidget(new QLabel(tr("Encrypt all messages additionally to the chosen key:"))); ownKeyBoxLayout->addWidget(ownKeySelectBox); + ownKeyBoxLayout->addWidget(new QLabel(tr("<b>NOTE: </b> Gpg4usb will restart automatically if you change the own key!"))); /***************************************** |