diff options
author | Saturneric <[email protected]> | 2022-01-02 23:40:04 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2022-01-02 23:40:04 +0000 |
commit | 586b7a5211124bed6011ac71e9be51c26a542865 (patch) | |
tree | 92b9d81b6f76b2ca127221db39f9edb27e4f70cf /src/ui/main_window/MainWindowUI.cpp | |
parent | <refactor>(ui): take operations apart from key details. (diff) | |
download | GpgFrontend-586b7a5211124bed6011ac71e9be51c26a542865.tar.gz GpgFrontend-586b7a5211124bed6011ac71e9be51c26a542865.zip |
<refactor>(ui): Enhanced sending email function.
Diffstat (limited to 'src/ui/main_window/MainWindowUI.cpp')
-rw-r--r-- | src/ui/main_window/MainWindowUI.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/main_window/MainWindowUI.cpp b/src/ui/main_window/MainWindowUI.cpp index 0c557d16..aeed1326 100644 --- a/src/ui/main_window/MainWindowUI.cpp +++ b/src/ui/main_window/MainWindowUI.cpp @@ -258,7 +258,7 @@ void MainWindow::createActions() { /* Popup-Menu-Action for KeyList */ appendSelectedKeysAct = - new QAction(_("Append Selected Key(s) To Text"), this); + new QAction(_("Append Public Key To Text Editor"), this); appendSelectedKeysAct->setToolTip( _("Append The Selected Keys To Text in Editor")); connect(appendSelectedKeysAct, SIGNAL(triggered()), this, @@ -297,7 +297,7 @@ void MainWindow::createActions() { connect(addPgpHeaderAct, SIGNAL(triggered()), this, SLOT(slotAddPgpHeader())); #ifdef SMTP_SUPPORT - sendMailAct = new QAction(_("Send An Email"), this); + sendMailAct = new QAction(_("New Message"), this); sendMailAct->setIcon(QIcon(":email.png")); connect(sendMailAct, &QAction::triggered, this, [=]() { auto* dialog = new SendMailDialog({}, this); |