mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-15 00:36:10 +08:00
small text changes
This commit is contained in:
parent
40c4b94da2
commit
ff57ca240f
@ -357,7 +357,10 @@ void PreferencesDialog::build()
|
||||
|
||||
def.label = L("Very dark gui color");
|
||||
def.type = coString;
|
||||
def.tooltip = std::string(L("Very dark color, in the RGB hex format.")) + std::string(L(" Mainly used as background or dark text color. Slic3r(yellow): , PrusaSlicer(orange): c46737, SuperSlicer(blue): 0047c7"));
|
||||
def.tooltip = std::string(L("Very dark color, in the RGB hex format."))
|
||||
+ std::string(L(" Mainly used as background or dark text color."))
|
||||
+ std::string(L("\nYou have to restart the application before any change will be taken into account."))
|
||||
+ std::string(L("\nSlic3r(yellow): ada230, PrusaSlicer(orange): c46737, SuperSlicer(blue): 0047c7"));
|
||||
def.set_default_value(new ConfigOptionString{ app_config->get("color_very_dark") });
|
||||
option = Option(def, "color_very_dark");
|
||||
option.opt.width = 6;
|
||||
@ -365,7 +368,10 @@ void PreferencesDialog::build()
|
||||
|
||||
def.label = L("Dark gui color");
|
||||
def.type = coString;
|
||||
def.tooltip = std::string(L("Dark color, in the RGB hex format.")) + std::string(L(" Mainly used as icon color. Slic3r(yellow): , PrusaSlicer(orange): ed6b21, SuperSlicer(blue): 2172eb"));
|
||||
def.tooltip = std::string(L("Dark color, in the RGB hex format."))
|
||||
+ std::string(L(" Mainly used as icon color."))
|
||||
+ std::string(L("\nYou have to restart the application before any change will be taken into account."))
|
||||
+ std::string(L("\nSlic3r(yellow): cabe39, PrusaSlicer(orange): ed6b21, SuperSlicer(blue): 2172eb"));
|
||||
def.set_default_value(new ConfigOptionString{ app_config->get("color_dark") });
|
||||
option = Option(def, "color_dark");
|
||||
option.opt.width = 6;
|
||||
@ -373,7 +379,9 @@ void PreferencesDialog::build()
|
||||
|
||||
def.label = L("Gui color");
|
||||
def.type = coString;
|
||||
def.tooltip = std::string(L("Main color, in the RGB hex format.")) + std::string(L(" Slic3r(yellow): , PrusaSlicer(orange): fd7e42, SuperSlicer(blue): 428dfd"));
|
||||
def.tooltip = std::string(L("Main color, in the RGB hex format."))
|
||||
+ std::string(L("\nYou have to restart the application before any change will be taken into account."))
|
||||
+ std::string(L(" Slic3r(yellow): eddc21, PrusaSlicer(orange): fd7e42, SuperSlicer(blue): 428dfd"));
|
||||
def.set_default_value(new ConfigOptionString{ app_config->get("color") });
|
||||
option = Option(def, "color");
|
||||
option.opt.width = 6;
|
||||
@ -381,7 +389,9 @@ void PreferencesDialog::build()
|
||||
|
||||
def.label = L("Light gui color");
|
||||
def.type = coString;
|
||||
def.tooltip = std::string(L("Light color, in the RGB hex format.")) + std::string(L(" Slic3r(yellow): , PrusaSlicer(orange): feac8b, SuperSlicer(blue): 8bb9fe"));
|
||||
def.tooltip = std::string(L("Light color, in the RGB hex format."))
|
||||
+ std::string(L("\nYou have to restart the application before any change will be taken into account."))
|
||||
+ std::string(L(" Slic3r(yellow): ffee38, PrusaSlicer(orange): feac8b, SuperSlicer(blue): 8bb9fe"));
|
||||
def.set_default_value(new ConfigOptionString{ app_config->get("color_light") });
|
||||
option = Option(def, "color_light");
|
||||
option.opt.width = 6;
|
||||
@ -389,7 +399,10 @@ void PreferencesDialog::build()
|
||||
|
||||
def.label = L("Very light gui color");
|
||||
def.type = coString;
|
||||
def.tooltip = std::string(L("Very light color, in the RGB hex format.")) + std::string(L(" Mainly used as light text color. Slic3r(yellow): , PrusaSlicer(orange): ff7d38, SuperSlicer(blue): 428cff"));
|
||||
def.tooltip = std::string(L("Very light color, in the RGB hex format."))
|
||||
+ std::string(L(" Mainly used as light text color."))
|
||||
+ std::string(L("\nYou have to restart the application before any change will be taken into account."))
|
||||
+ std::string(L("\nSlic3r(yellow): fef48b, PrusaSlicer(orange): ff7d38, SuperSlicer(blue): 428cff"));
|
||||
def.set_default_value(new ConfigOptionString{ app_config->get("color_very_light") });
|
||||
option = Option(def, "color_very_light");
|
||||
option.opt.width = 6;
|
||||
|
@ -71,11 +71,11 @@ struct CurlGlobalInit
|
||||
|
||||
if (!bundle)
|
||||
message = _u8L("Could not detect system SSL certificate store. "
|
||||
"PrusaSlicer will be unable to establish secure "
|
||||
"The slicer will be unable to establish secure "
|
||||
"network connections.");
|
||||
else
|
||||
message = Slic3r::GUI::format(
|
||||
_L("PrusaSlicer detected system SSL certificate store in: %1%"),
|
||||
_L("The slicer detected system SSL certificate store in: %1%"),
|
||||
bundle);
|
||||
|
||||
message += "\n" + Slic3r::GUI::format(
|
||||
@ -88,7 +88,7 @@ struct CurlGlobalInit
|
||||
#endif // OPENSSL_CERT_OVERRIDE
|
||||
|
||||
if (CURLcode ec = ::curl_global_init(CURL_GLOBAL_DEFAULT)) {
|
||||
message += _u8L("CURL init has failed. PrusaSlicer will be unable to establish "
|
||||
message += _u8L("CURL init has failed. The slicer will be unable to establish "
|
||||
"network connections. See logs for additional details.");
|
||||
|
||||
BOOST_LOG_TRIVIAL(error) << ::curl_easy_strerror(ec);
|
||||
|
Loading…
x
Reference in New Issue
Block a user