diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2010-01-31 23:03:41 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2010-01-31 23:03:41 +0000 |
commit | 80040dba2ec1e935c7aece7bd8573fe4ae193b6c (patch) | |
tree | 6201c90dabaaec4c6116553b012b2bdefa0d435c /keydetailsdialog.cpp | |
parent | now really add translation (diff) | |
download | gpg4usb-80040dba2ec1e935c7aece7bd8573fe4ae193b6c.tar.gz gpg4usb-80040dba2ec1e935c7aece7bd8573fe4ae193b6c.zip |
translations
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@261 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to 'keydetailsdialog.cpp')
-rw-r--r-- | keydetailsdialog.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/keydetailsdialog.cpp b/keydetailsdialog.cpp index 3d96318..e880fd8 100644 --- a/keydetailsdialog.cpp +++ b/keydetailsdialog.cpp @@ -27,10 +27,6 @@ KeyDetailsDialog::KeyDetailsDialog(GpgME::Context* ctx, gpgme_key_t key) { mCtx = ctx; keyid = new QString(key->subkeys->keyid); - setWindowTitle(tr("Key Properties")); - resize(500, 200); - setModal(true); - ownerBox = new QGroupBox(tr("Owner details")); keyBox = new QGroupBox(tr("Key details")); fingerprintBox = new QGroupBox(tr("Fingerprint")); @@ -40,10 +36,10 @@ KeyDetailsDialog::KeyDetailsDialog(GpgME::Context* ctx, gpgme_key_t key) { nameLabel = new QLabel(tr("Name:")); emailLabel = new QLabel(tr("E-Mailaddress:")); commentLabel = new QLabel(tr("Comment:")); - keySizeLabel = new QLabel(tr("KeySize:")); + keySizeLabel = new QLabel(tr("Key size:")); expireLabel = new QLabel(tr("Expires on: ")); createdLabel = new QLabel(tr("Created on: ")); - algorithmLabel = new QLabel(tr("Algorithm")); + algorithmLabel = new QLabel(tr("Algorithm: ")); nameVarLabel = new QLabel(key->uids->name); emailVarLabel = new QLabel(key->uids->email); @@ -129,7 +125,7 @@ KeyDetailsDialog::KeyDetailsDialog(GpgME::Context* ctx, gpgme_key_t key) { mvbox->addWidget(buttonBox); this->setLayout(mvbox); - this->setWindowTitle(tr("Keydatails")); + this->setWindowTitle(tr("Keydetails")); this->show(); exec(); |