diff options
author | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2008-08-07 02:46:13 +0000 |
---|---|---|
committer | ubbo <ubbo@34ebc366-c3a9-4b3c-9f84-69acf7962910> | 2008-08-07 02:46:13 +0000 |
commit | 74469164a06ea47fd48d32ded6ff8d71ec2d781a (patch) | |
tree | c7520b525067293edb9bdc32147bb9a784af7e37 | |
parent | added keydb/gpg.conf to solve FAT-problems ( locking issues on USB ) (diff) | |
download | gpg4usb-74469164a06ea47fd48d32ded6ff8d71ec2d781a.tar.gz gpg4usb-74469164a06ea47fd48d32ded6ff8d71ec2d781a.zip |
very small fix for translation
git-svn-id: http://cpunk.de/svn/src/gpg4usb@109 34ebc366-c3a9-4b3c-9f84-69acf7962910
-rw-r--r-- | gpg4usb.pro | 4 | ||||
-rw-r--r-- | main.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gpg4usb.pro b/gpg4usb.pro index 7f2b05e..a191998 100644 --- a/gpg4usb.pro +++ b/gpg4usb.pro @@ -14,8 +14,8 @@ RC_FILE = gpg4usb.rc # For Static build on Linux: uncomment line below #LIBS += lib/libgpgme.a -static-libgcc -Llib #LIBS += lib/libgpgme.a -LIBS += -lgpgme -lgpg-error -#LIBS += lib/libgpgme.a -Llib +#LIBS += -lgpgme -lgpg-error +LIBS += lib/libgpgme.a -Llib DEFINES += _FILE_OFFSET_BITS=64 TRANSLATIONS = ts/gpg4usb_en.ts \ @@ -35,7 +35,7 @@ //internationalize QString locale = QLocale::system().name(); QTranslator translator; - translator.load(QString("ts/gpg4usblib_") + locale); + translator.load(QString("ts/gpg4usb_de")); app.installTranslator(&translator); GpgWin *window = new GpgWin(); |