aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2013-01-21 23:18:18 +0000
committernils <nils@34ebc366-c3a9-4b3c-9f84-69acf7962910>2013-01-21 23:18:18 +0000
commit20d24bb09cdd7cbd1cdc82a5ea70e515773af407 (patch)
treed531eb48404d4a254e45bdd4aea004a6a630179a
parentadded encrypt to self functionality (diff)
downloadgpg4usb-20d24bb09cdd7cbd1cdc82a5ea70e515773af407.tar.gz
gpg4usb-20d24bb09cdd7cbd1cdc82a5ea70e515773af407.zip
minor language corrections
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@1006 34ebc366-c3a9-4b3c-9f84-69acf7962910
-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()));