diff options
author | Saturneric <[email protected]> | 2022-01-04 10:49:11 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-04 10:49:11 +0000 |
commit | f297a701bbcfa5f0586cc02af29a4e9af281910c (patch) | |
tree | 00d869b86e967a780f90e51d30a85be3d236a230 /src/ui/smtp/SendMailDialog.cpp | |
parent | <fix>(ui): improve ui. (diff) | |
download | GpgFrontend-f297a701bbcfa5f0586cc02af29a4e9af281910c.tar.gz GpgFrontend-f297a701bbcfa5f0586cc02af29a4e9af281910c.zip |
<fix, refactor>(core, ui): fixed known bugs for v2.0.4-beta.1.
1. longer expire date for keygen.
2. version system improved and fixed.
3. include ui text not translated.
4. improve ui.
Diffstat (limited to 'src/ui/smtp/SendMailDialog.cpp')
-rw-r--r-- | src/ui/smtp/SendMailDialog.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/smtp/SendMailDialog.cpp b/src/ui/smtp/SendMailDialog.cpp index a758a18c..f3ec5711 100644 --- a/src/ui/smtp/SendMailDialog.cpp +++ b/src/ui/smtp/SendMailDialog.cpp @@ -129,6 +129,11 @@ SendMailDialog::SendMailDialog(const QString& text, QWidget* parent) ui->attacSignatureCheckBox->setText(_("Attach signature")); ui->attachSenderPublickeyCheckBox->setText(_("Attach sender's public key")); ui->contentEncryptCheckBox->setText(_("Encrypt content")); + ui->recipientEdit->setText(_("Edit Recipients(s)")); + ui->ccEdit->setText(_("Edit CC(s)")); + ui->bccEdit->setText(_("Edit BCC(s)")); + ui->senderKeyLabel->setText(_("Sender GPG Key: ")); + ui->recipientKeysLabel->setText(_("Recipient(s) GPG Key: ")); auto pos = QPoint(100, 100); LOG(INFO) << "parent" << parent; |