From 72ecc39fcd9fe4dde5852aa4be637db4095cc89c Mon Sep 17 00:00:00 2001 From: "xun.zhang" Date: Tue, 28 Nov 2023 14:48:25 +0800 Subject: [PATCH] ENH: optimize param description jira:[NEW] Signed-off-by: xun.zhang Change-Id: Id0ca9224227a716b21fc0b8430722264dc319344 --- src/libslic3r/PrintConfig.cpp | 4 ++-- src/slic3r/GUI/Tab.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index f9497fc49..9cfb149a5 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -3037,9 +3037,9 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionInt(0)); def = this->add("support_interface_not_for_body",coBool); - def->label = L("No interface filament for base"); + def->label = L("Reduce interface filament for base"); def->category = L("Support"); - def->tooltip = L("Don't use support interface filament to print support base"); + def->tooltip = L("Avoid using support interface filament to print support base"); def->mode = comSimple; def->set_default_value(new ConfigOptionBool(true)); diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index 08c016ed2..55dfc69ce 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -1520,8 +1520,8 @@ void Tab::on_value_change(const std::string& opt_key, const boost::any& value) wxString msg_text = _(L("Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits ,this may cause printing quality issues.")); msg_text += "\n\n" + _(L("Adjust to the set range automatically? \n")); MessageDialog dialog(wxGetApp().plater(), msg_text, "", wxICON_WARNING | wxYES | wxNO); - dialog.SetButtonLabel(wxID_YES, "Adjust"); - dialog.SetButtonLabel(wxID_NO, "Ignore"); + dialog.SetButtonLabel(wxID_YES, _L("Adjust")); + dialog.SetButtonLabel(wxID_NO, _L("Ignore")); auto answer = dialog.ShowModal(); auto new_conf = *m_config; if (answer == wxID_YES) {