diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2009-09-20 17:17:31 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2009-09-20 17:17:31 +0000 |
commit | 5842886f3aa80702ef1492892cae65ffb8f44657 (patch) | |
tree | 47a0667255bf111a2c0fb704aa03b6d36ad6b65e /fileencryptiondialog.cpp | |
parent | add method for private-key export to context (diff) | |
download | gpg4usb-5842886f3aa80702ef1492892cae65ffb8f44657.tar.gz gpg4usb-5842886f3aa80702ef1492892cae65ffb8f44657.zip |
add missing translations
git-svn-id: http://cpunk.de/svn/src/gpg4usb/trunk@223 34ebc366-c3a9-4b3c-9f84-69acf7962910
Diffstat (limited to '')
-rwxr-xr-x | fileencryptiondialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fileencryptiondialog.cpp b/fileencryptiondialog.cpp index 9f3f393..c4d2434 100755 --- a/fileencryptiondialog.cpp +++ b/fileencryptiondialog.cpp @@ -33,13 +33,13 @@ FileEncryptionDialog::FileEncryptionDialog(GpgME::Context *ctx, QString iconPath inputFileEdit = new QLineEdit(); QPushButton *fb1 = new QPushButton(tr("...")); connect(fb1, SIGNAL(clicked()), this, SLOT(selectInputFile())); - QLabel *fl1 = new QLabel("Input"); + QLabel *fl1 = new QLabel(tr("Input")); fl1->setBuddy(inputFileEdit); outputFileEdit = new QLineEdit(); QPushButton *fb2 = new QPushButton(tr("...")); connect(fb2, SIGNAL(clicked()), this, SLOT(selectOutputFile())); - QLabel *fl2 = new QLabel("Output"); + QLabel *fl2 = new QLabel(tr("Output")); fl2->setBuddy(outputFileEdit); QGridLayout *gLayout = new QGridLayout(); |