diff --git a/src/addin-options.cpp b/src/addin-options.cpp index d82b095..137d880 100644 --- a/src/addin-options.cpp +++ b/src/addin-options.cpp @@ -1,253 +1,256 @@ /* addin-options.cpp - Options for the Ol >= 2010 Addin * Copyright (C) 2015 by Bundesamt für Sicherheit in der Informationstechnik * Software engineering by Intevation GmbH * * This file is part of GpgOL. * * GpgOL is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * GpgOL is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, see . */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include "dialogs.h" #include "common.h" #include "cpphelp.h" #include "oomhelp.h" #include #include #include __attribute__((__unused__)) static char const * i18n_noops[] = { N_("GnuPG System"), N_("Enable the S/MIME support"), N_("Configure GpgOL"), N_("Automation"), N_("General"), N_("(Technical)"), N_("Automatically secure &messages"), N_("Configure GnuPG"), N_("Debug..."), N_("Version "), N_("&Resolve recipient keys automatically"), N_("&Encrypt new messages by default"), N_("&Sign new messages by default"), N_("&Send OpenPGP mails without " "attachments as PGP/Inline"), N_("S&elect crypto settings automatically " "for reply and forward"), N_("&Prefer S/MIME"), /* Tooltips */ N_("Enable or disable any automated key handling."), N_("Automate trust based on communication history."), N_("This changes the trust model to \"tofu+pgp\" which tracks the history of key usage. Automated trust can never exceed level 2."), N_("experimental"), N_("Automatically toggles secure if keys with at least level 1 trust were found for all recipients."), N_("Toggles the encrypt option for all new mails."), N_("Toggles the sign option for all new mails."), N_("Toggles sign, encrypt options if the original mail was signed or encrypted."), N_("Instead of using the PGP/MIME format, " "which properly handles attachments and encoding, " "the deprecated PGP/Inline is used.\n" "This can be required for compatibility but should generally not " "be used."), N_("Prefer S/MIME over OpenPGP if both are possible."), /* TRANSLATORS: Part of the config dialog. */ N_("Search and import &X509 certificates in the configured directory services"), /* TRANSLATORS: Part of the config dialog. Tooltip */ N_("Searches for X509 certificates automatically and imports them. This option searches in all configured services."), /* TRANSLATORS: Part of the config dialog. Warning about privacy leak. */ N_("Warning: The configured services will receive information about whom you send Emails!"), /* Not options but strings for the key adder */ /* TRANSLATORS: Part of address book key configuration dialog. The contacts name follows. */ N_("Configure key for:"), /* TRANSLATORS: Part of address book key configuration dialog. An example for a public key follows. */ N_("Paste a public key export here. It should look like:"), /* TRANSLATORS: Part of address book key configuration dialog. */ N_("Failed to parse any public key."), /* TRANSLATORS: Part of address book key configuration dialog. */ N_("Error"), /* TRANSLATORS: Part of address book key configuration dialog. */ N_("Secret key detected."), /* TRANSLATORS: Part of address book key configuration dialog. */ N_("You can only configure public keys in Outlook." " Import secret keys with Kleopatra."), /* TRANSLATORS: Part of address book key configuration dialog. */ N_("The key is unusable for Outlook." " Please check Kleopatra for more information."), /* TRANSLATORS: Part of address book key configuration dialog. */ N_("Invalid key detected."), /* TRANSLATORS: Part of address book key configuration dialog. */ N_("Created:"), /* TRANSLATORS: Part of address book key configuration dialog. */ N_("User Ids:"), /* TRANSLATORS: Part of address book key configuration dialog. %1 is a placeholder for the plual for key / keys. */ N_("You are about to configure the following %1 for:"), /* TRANSLATORS: Part of address book key configuration dialog. used in a sentence as plural form. */ N_("keys"), /* TRANSLATORS: Part of address book key configuration dialog. used in a sentence as singular form. */ N_("key"), /* TRANSLATORS: Part of address book key configuration dialog. */ N_("Continue?"), /* TRANSLATORS: Part of address book key configuration dialog. */ N_("Confirm keys"), /* TRANSLATORS: Part of debugging configuration. */ N_("Enable Logging"), N_("Default"), /* TRANSLATORS: Part of debugging configuration. The plus should mean in the combo box that it is added to the above. */ N_("+Outlook API calls"), /* TRANSLATORS: Part of debugging configuration. The plus should mean in the combo box that it is added to the above. */ N_("+Memory analysis"), /* TRANSLATORS: Part of debugging configuration. The plus should mean in the combo box that it is added to the above. */ N_("+Call tracing"), /* TRANSLATORS: Part of debugging configuration. */ N_("Log File (required):"), /* TRANSLATORS: Part of debugging configuration. This is a checkbox to select if even potentially private data should be included in the debug log. */ N_("Include Mail contents (decrypted!) and meta information."), /* TRANSLATORS: Dialog title for the log file selection */ N_("Select log file"), /* TRANSLATORS: Part of debugging configuration. */ N_("Log level:"), /* TRANSLATORS: Part of debugging configuration. Warning shown in case the highest log level is selected. Please try to keep the string ~ the size of the english version as the warning is shown in line with the combo box to select the level. */ N_("Warning: Decreased performance. Huge logs!"), /* TRANSLATORS: Config dialog category for debug options. */ N_("Debug"), /* TRANSLATORS: Config dialog category for debug options. */ N_("Configuaration of debug options"), /* TRANSLATORS: Config dialog debug page, can be technical. */ N_("Potential workarounds"), /* TRANSLATORS: Config dialog debug page, can be technical. */ N_("Block Outlook during encrypt / sign"), /* TRANSLATORS: Config dialog debug page, can be technical. */ N_("Block Outlook during decrypt / verify"), /* TRANSLATORS: Config dialog debug page, link to report bug page. */ N_("How to report a problem?"), }; static bool dlg_open; static DWORD WINAPI open_gpgolconfig (LPVOID arg) { HWND wnd = (HWND) arg; std::vector args; // Collect the arguments char *gpg4win_dir = get_gpg4win_dir (); if (!gpg4win_dir) { TRACEPOINT; return -1; } const auto gpgolconfig = std::string (gpg4win_dir) + "\\bin\\gpgolconfig.exe"; args.push_back (gpgolconfig); args.push_back (std::string ("--hwnd")); args.push_back (std::to_string ((int) (intptr_t) wnd)); args.push_back (std::string("--gpgol-version")); args.push_back (std::string(VERSION)); + args.push_back (std::string ("--lang")); + args.push_back (std::string (gettext_localename ())); + auto ctx = GpgME::Context::createForEngine (GpgME::SpawnEngine); if (!ctx) { // can't happen TRACEPOINT; return -1; } GpgME::Data mystdin (GpgME::Data::null), mystdout, mystderr; dlg_open = true; char **cargs = vector_to_cArray (args); log_debug ("%s:%s: args:", SRCNAME, __func__); for (size_t i = 0; cargs && cargs[i]; i++) { log_debug (SIZE_T_FORMAT ": '%s'", i, cargs[i]); } GpgME::Error err = ctx->spawn (cargs[0], const_cast (cargs), mystdin, mystdout, mystderr, (GpgME::Context::SpawnFlags) ( GpgME::Context::SpawnAllowSetFg | GpgME::Context::SpawnShowWindow)); release_cArray (cargs); if (err) { log_error ("%s:%s: Err code: %i asString: %s", SRCNAME, __func__, err.code(), err.asString()); } dlg_open = false; log_debug ("%s:%s:finished stdout:\n'%s'", SRCNAME, __func__, mystdout.toString ().c_str ()); log_debug ("%s:%s:stderr:\n'%s'", SRCNAME, __func__, mystderr.toString ().c_str ()); read_options (); return 0; } void options_dialog_box (HWND parent) { if (!parent) parent = get_active_hwnd (); if (dlg_open) { log_debug ("%s:%s: Gpgolconfig open. Not launching new dialog.", SRCNAME, __func__); HWND optWindow = FindWindow (nullptr, _("Configure GpgOL")); if (!optWindow) { log_debug ("%s:%s: Gpgolconfig open but could not find window.", SRCNAME, __func__); return; } SetForegroundWindow(optWindow); return; } log_debug ("%s:%s: Launching gpgolconfig.", SRCNAME, __func__); CloseHandle (CreateThread (NULL, 0, open_gpgolconfig, (LPVOID) parent, 0, NULL)); }