mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 03:43:52 +00:00
Remove the wrong "c-format, boost-format" marker from non-format string (#13251)
# Description Ditto.
This commit is contained in:
committed by
GitHub
parent
81d81da08c
commit
1cc38cda06
@@ -4331,7 +4331,7 @@ msgstr ""
|
|||||||
"seam_slope_start_height precisa ser menor que layer_height.\n"
|
"seam_slope_start_height precisa ser menor que layer_height.\n"
|
||||||
"Redefinir para 0."
|
"Redefinir para 0."
|
||||||
|
|
||||||
#, fuzzy, c-format, boost-format
|
#, no-c-format, no-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Lock depth should smaller than skin depth.\n"
|
"Lock depth should smaller than skin depth.\n"
|
||||||
"Reset to 50% of skin depth."
|
"Reset to 50% of skin depth."
|
||||||
|
|||||||
@@ -513,6 +513,7 @@ void ConfigManipulation::update_print_fff_config(DynamicPrintConfig* config, con
|
|||||||
// layer_height shouldn't be equal to zero
|
// layer_height shouldn't be equal to zero
|
||||||
float skin_depth = config->opt_float("skin_infill_depth");
|
float skin_depth = config->opt_float("skin_infill_depth");
|
||||||
if (config->opt_float("infill_lock_depth") > skin_depth) {
|
if (config->opt_float("infill_lock_depth") > skin_depth) {
|
||||||
|
// xgettext:no-c-format, no-boost-format
|
||||||
const wxString msg_text = _(L("Lock depth should smaller than skin depth.\nReset to 50% of skin depth."));
|
const wxString msg_text = _(L("Lock depth should smaller than skin depth.\nReset to 50% of skin depth."));
|
||||||
MessageDialog dialog(m_msg_dlg_parent, msg_text, "", wxICON_WARNING | wxOK);
|
MessageDialog dialog(m_msg_dlg_parent, msg_text, "", wxICON_WARNING | wxOK);
|
||||||
DynamicPrintConfig new_conf = *config;
|
DynamicPrintConfig new_conf = *config;
|
||||||
|
|||||||
Reference in New Issue
Block a user