diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index c04d7ca161..73b248c012 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -350,17 +350,15 @@ bool GUI_App::on_init_inner() // Slic3r::debugf "wxWidgets version %s, Wx version %s\n", wxVERSION_STRING, wxVERSION; std::string msg = Http::tls_global_init(); - wxRichMessageDialog - dlg(nullptr, - wxString::Format(_(L("%s\nDo you want to continue?")), _(msg)), - "PrusaSlicer", wxICON_QUESTION | wxYES_NO); - - bool ssl_accept = app_config->get("tls_cert_store_accepted") == "yes"; std::string ssl_cert_store = app_config->get("tls_accepted_cert_store_location"); - ssl_accept = ssl_accept && ssl_cert_store == Http::tls_system_cert_store(); + bool ssl_accept = app_config->get("tls_cert_store_accepted") == "yes" && ssl_cert_store == Http::tls_system_cert_store(); - dlg.ShowCheckBox(_(L("Remember my choice"))); if (!msg.empty() && !ssl_accept) { + wxRichMessageDialog + dlg(nullptr, + wxString::Format(_(L("%s\nDo you want to continue?")), msg), + "PrusaSlicer", wxICON_QUESTION | wxYES_NO); + dlg.ShowCheckBox(_(L("Remember my choice"))); if (dlg.ShowModal() != wxID_YES) return false; app_config->set("tls_cert_store_accepted", diff --git a/src/slic3r/Utils/Http.cpp b/src/slic3r/Utils/Http.cpp index 101654c562..1f1b6d306f 100644 --- a/src/slic3r/Utils/Http.cpp +++ b/src/slic3r/Utils/Http.cpp @@ -18,10 +18,10 @@ #include #endif -#define L(s) s - -#include "libslic3r/libslic3r.h" -#include "libslic3r/Utils.hpp" +#include +#include +#include +#include namespace fs = boost::filesystem; @@ -70,26 +70,26 @@ struct CurlGlobalInit } if (!bundle) - message = L("Could not detect system SSL certificate store. " - "PrusaSlicer will be unable to establish secure " - "network connections."); + message = _u8L("Could not detect system SSL certificate store. " + "PrusaSlicer will be unable to establish secure " + "network connections."); else - message = string_printf( - L("PrusaSlicer detected system SSL certificate store in: %s"), + message = Slic3r::format( + _L("PrusaSlicer detected system SSL certificate store in: %1%"), bundle); - message += string_printf( - L("\nTo specify the system certificate store manually, please " - "set the %s environment variable to the correct CA bundle " - "and restart the application."), + message += "\n" + Slic3r::format( + _L("To specify the system certificate store manually, please " + "set the %1% environment variable to the correct CA bundle " + "and restart the application."), SSL_CA_FILE); } #endif // OPENSSL_CERT_OVERRIDE if (CURLcode ec = ::curl_global_init(CURL_GLOBAL_DEFAULT)) { - message = L("CURL init has failed. PrusaSlicer will be unable to establish " - "network connections. See logs for additional details."); + message += _u8L("CURL init has failed. PrusaSlicer will be unable to establish " + "network connections. See logs for additional details."); BOOST_LOG_TRIVIAL(error) << ::curl_easy_strerror(ec); }