aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--keydetailsdialog.cpp2
-rw-r--r--mainwindow.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/keydetailsdialog.cpp b/keydetailsdialog.cpp
index badb6c7..8550446 100644
--- a/keydetailsdialog.cpp
+++ b/keydetailsdialog.cpp
@@ -70,7 +70,7 @@ KeyDetailsDialog::KeyDetailsDialog(GpgME::GpgContext* ctx, KgpgCore::KgpgKey key
QGridLayout *vboxOD = new QGridLayout();
vboxOD->addWidget(new QLabel(tr("Name:")), 0, 0);
- vboxOD->addWidget(new QLabel(tr("E-Mailaddress:")), 1, 0);
+ vboxOD->addWidget(new QLabel(tr("Email address:")), 1, 0);
vboxOD->addWidget(new QLabel(tr("Comment:")), 2, 0);
vboxOD->addWidget(nameVarLabel, 0, 1);
vboxOD->addWidget(emailVarLabel, 1, 1);
diff --git a/mainwindow.cpp b/mainwindow.cpp
index 816b8bb..74fd645 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -370,7 +370,7 @@ void MainWindow::createActions()
connect(copyMailAddressToClipboardAct, SIGNAL(triggered()), this, SLOT(slotCopyMailAddressToClipboard()));
// TODO: find central place for shared actions, to avoid code-duplication with keymgmt.cpp
- showKeyDetailsAct = new QAction(tr("Show Keydetails"), this);
+ showKeyDetailsAct = new QAction(tr("Show key details"), this);
showKeyDetailsAct->setToolTip(tr("Show Details for this Key"));
connect(showKeyDetailsAct, SIGNAL(triggered()), this, SLOT(slotShowKeyDetails()));