X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fqt-console%2Fmain.cpp;h=8a2f01667d2732ab8f47786c9caf06249110676f;hb=334b701e895a6ec517b26d05cf1266c25d518025;hp=e5d81457262d0bc58e86bc8f0f3c17ef0587ed73;hpb=f85d9ac48410082dc5965ccf86d3b758508a61a0;p=bacula%2Fbacula diff --git a/bacula/src/qt-console/main.cpp b/bacula/src/qt-console/main.cpp index e5d8145726..8a2f01667d 100644 --- a/bacula/src/qt-console/main.cpp +++ b/bacula/src/qt-console/main.cpp @@ -1,14 +1,14 @@ /* Bacula® - The Network Backup Solution - Copyright (C) 2007-2007 Free Software Foundation Europe e.V. + Copyright (C) 2007-2008 Free Software Foundation Europe e.V. The main author of Bacula is Kern Sibbald, with contributions from many others, a complete list can be found in the file AUTHORS. This program is Free Software; you can redistribute it and/or modify it under the terms of version two of the GNU General Public - License as published by the Free Software Foundation plus additions - that are listed in the file LICENSE. + License as published by the Free Software Foundation and included + in the file LICENSE. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -36,6 +36,7 @@ #include +#include #include "bat.h" MainWin *mainWin; @@ -60,9 +61,19 @@ int main(int argc, char *argv[]) app = new QApplication(argc, argv); app->setQuitOnLastWindowClosed(true); + QTextCodec::setCodecForCStrings(QTextCodec::codecForName("UTF-8")); + + QTranslator qtTranslator; + qtTranslator.load(QString("qt_") + QLocale::system().name()); + app->installTranslator(&qtTranslator); + QTranslator batTranslator; + batTranslator.load(QString("bat_") + QLocale::system().name()); + app->installTranslator(&batTranslator); -#ifdef ENABLE_NLS + + +#ifdef xENABLE_NLS setlocale(LC_ALL, ""); bindtextdomain("bacula", LOCALEDIR); textdomain("bacula"); @@ -78,6 +89,8 @@ int main(int argc, char *argv[]) sigignore.sa_handler = SIG_IGN; sigfillset(&sigignore.sa_mask); sigaction(SIGPIPE, &sigignore, NULL); + sigaction(SIGUSR2, &sigignore, NULL); + while ((ch = getopt(argc, argv, "bc:d:r:st?")) != -1) { switch (ch) { @@ -139,9 +152,8 @@ int main(int argc, char *argv[]) return app->exec(); } -void terminate_console(int sig) +void terminate_console(int /*sig*/) { - (void)sig; /* avoid compiler complaints */ exit(0); } @@ -192,6 +204,7 @@ static int check_resources() bool ok = true; DIRRES *director; int numdir; + bool tls_needed; LockRes(); @@ -208,8 +221,9 @@ static int check_resources() continue; } } + tls_needed = director->tls_enable || director->tls_authenticate; - if ((!director->tls_ca_certfile && !director->tls_ca_certdir) && director->tls_enable) { + if ((!director->tls_ca_certfile && !director->tls_ca_certdir) && tls_needed) { Emsg2(M_FATAL, 0, _("Neither \"TLS CA Certificate\"" " or \"TLS CA Certificate Dir\" are defined for Director \"%s\" in %s." " At least one CA certificate store is required.\n"), @@ -237,8 +251,9 @@ static int check_resources() continue; } } + tls_needed = cons->tls_enable || cons->tls_authenticate; - if ((!cons->tls_ca_certfile && !cons->tls_ca_certdir) && cons->tls_enable) { + if ((!cons->tls_ca_certfile && !cons->tls_ca_certdir) && tls_needed) { Emsg2(M_FATAL, 0, _("Neither \"TLS CA Certificate\"" " or \"TLS CA Certificate Dir\" are defined for Console \"%s\" in %s.\n"), cons->hdr.name, configfile);