diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-17 22:58:23 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2011-10-17 22:58:23 +0000 |
commit | c6b8fcab8dbbd472770d4de3d44339787cb537f8 (patch) | |
tree | d9222c25405e47fa7b2cbf0e8dba213d3ba546be | |
parent | some text text changes, add method getKeyByFpr() (diff) | |
download | gpg4usb-c6b8fcab8dbbd472770d4de3d44339787cb537f8.tar.gz gpg4usb-c6b8fcab8dbbd472770d4de3d44339787cb537f8.zip |
date change
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@558 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | verifydetailsdialog.cpp | 4 | ||||
-rw-r--r-- | verifynotification.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/verifydetailsdialog.cpp b/verifydetailsdialog.cpp index 83896a0..840eb1c 100644 --- a/verifydetailsdialog.cpp +++ b/verifydetailsdialog.cpp @@ -60,12 +60,12 @@ void VerifyDetailsDialog::refresh() { case 2: { - mVboxLayout->addWidget(new QLabel(tr("Text was completely signed on %1 by:\n").arg(timestamp.toString("dd. MMM. yyyy")))); + mVboxLayout->addWidget(new QLabel(tr("Text was completely signed on %1 by:\n").arg(timestamp.toString(Qt::SystemLocaleLongDate)))); break; } case 1: { - mVboxLayout->addWidget(new QLabel(tr("Text was partially signed on %1 by:\n").arg(timestamp.toString("dd. MMM. yyyy")))); + mVboxLayout->addWidget(new QLabel(tr("Text was partially signed on %1 by:\n").arg(timestamp.toString(Qt::SystemLocaleLongDate)))); break; } } diff --git a/verifynotification.cpp b/verifynotification.cpp index 01f1db8..a2b4b6e 100644 --- a/verifynotification.cpp +++ b/verifynotification.cpp @@ -141,12 +141,12 @@ bool VerifyNotification::refresh() { case 2: { - verifyLabelText.prepend(tr("Text is completely signed by: ")); + verifyLabelText.prepend(tr("Text was completely signed by: ")); break; } case 1: { - verifyLabelText.prepend(tr("Text is partially signed by: ")); + verifyLabelText.prepend(tr("Text was partially signed by: ")); break; } } |