Extend and Update localizations (#12610)

This commit is contained in:
Ian Bassi
2026-03-05 11:33:07 -03:00
committed by GitHub
parent 2ed249a81b
commit 28649f498d
29 changed files with 5506 additions and 1660 deletions

View File

@@ -515,7 +515,7 @@ void ConfigManipulation::update_print_fff_config(DynamicPrintConfig* config, con
// layer_height shouldn't be equal to zero
float skin_depth = config->opt_float("skin_infill_depth");
if (config->opt_float("infill_lock_depth") > skin_depth) {
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);
DynamicPrintConfig new_conf = *config;
is_msg_dlg_already_exist = true;