aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2021-12-16 09:49:54 +0000
committerSaturneric <[email protected]>2021-12-16 09:49:54 +0000
commit37860c0fef219006407cb21ba68ab8bc55566d62 (patch)
tree2eb892a994b3753f9500f5ed481b3f776dcbf43d
parentAdded & Improved & Fixed. (diff)
downloadGpgFrontend-37860c0fef219006407cb21ba68ab8bc55566d62.tar.gz
GpgFrontend-37860c0fef219006407cb21ba68ab8bc55566d62.zip
Added and Fixed Translation.
Diffstat (limited to '')
-rw-r--r--src/ui/UserInterfaceUtils.cpp2
-rw-r--r--src/ui/smtp/SendMailDialog.cpp3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ui/UserInterfaceUtils.cpp b/src/ui/UserInterfaceUtils.cpp
index 30615f9f..fafc8c6b 100644
--- a/src/ui/UserInterfaceUtils.cpp
+++ b/src/ui/UserInterfaceUtils.cpp
@@ -41,7 +41,7 @@ std::unique_ptr<GpgFrontend::UI::CommonUtils>
void send_an_email(QWidget* parent, InfoBoardWidget* info_board,
const QString& text) {
- info_board->addOptionalAction("Send Encrypted Mail", [=]() {
+ info_board->addOptionalAction(_("Send Encrypted Mail"), [=]() {
bool smtp_enabled = false;
try {
smtp_enabled = GlobalSettingStation::GetInstance().GetUISettings().lookup(
diff --git a/src/ui/smtp/SendMailDialog.cpp b/src/ui/smtp/SendMailDialog.cpp
index 144be7e5..9523fd7c 100644
--- a/src/ui/smtp/SendMailDialog.cpp
+++ b/src/ui/smtp/SendMailDialog.cpp
@@ -70,8 +70,11 @@ SendMailDialog::SendMailDialog(const QString& text, QWidget* parent)
&SendMailDialog::slotConfirm);
#endif
+ ui->ccButton->setText(_("CC"));
+ ui->bccButton->setText(_("BCC"));
ui->senderLabel->setText(_("Sender"));
ui->recipientLabel->setText(_("Recipient"));
+ ui->subjectLabel->setText(_("Subject"));
ui->bccLabel->setText(_("BCC"));
ui->ccLabel->setText(_("CC"));
ui->tipsLabel->setText(