From 5b056ee0aea62f53688574b06b9424d140e69fa5 Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Fri, 21 Mar 2025 09:34:21 +0800 Subject: [PATCH] FIX: modify some text jira: none Change-Id: If3f90adda34bc3088f7a43ccf294d82c14180263 --- src/libslic3r/PrintConfig.cpp | 8 ++++---- src/slic3r/GUI/CalibrationWizardPresetPage.cpp | 9 +++------ 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 930e9326e..e4b875de6 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -4251,16 +4251,16 @@ void PrintConfigDef::init_fff_params() def->set_default_value(new ConfigOptionFloat(0.6)); def = this->add("top_color_penetration_layers", coInt); - def->label = L("Top color layers"); + def->label = L("Top paint penetration layers"); def->category = L("Strength"); - def->tooltip = L("This is the number of layers affected by the top color."); + def->tooltip = L("This is the number of layers of top paint penetration."); def->min = 1; def->set_default_value(new ConfigOptionInt(4)); def = this->add("bottom_color_penetration_layers", coInt); - def->label = L("Bottom color layers"); + def->label = L("Bottom paint penetration layers"); def->category = L("Strength"); - def->tooltip = L("This is the number of layers affected by the bottom color."); + def->tooltip = L("This is the number of layers of top bottom penetration."); def->min = 1; def->set_default_value(new ConfigOptionInt(3)); diff --git a/src/slic3r/GUI/CalibrationWizardPresetPage.cpp b/src/slic3r/GUI/CalibrationWizardPresetPage.cpp index 98e70484e..947391104 100644 --- a/src/slic3r/GUI/CalibrationWizardPresetPage.cpp +++ b/src/slic3r/GUI/CalibrationWizardPresetPage.cpp @@ -608,8 +608,7 @@ void CalibrationPresetPage::create_selection_panel(wxWindow* parent) on_device_connected(curr_obj); }); - wxString sync_text = _L("Sync printer information") + _L(" Synced"); - m_sync_button_text = new Label(parent, sync_text); + m_sync_button_text = new Label(parent, _L("AMS and nozzle information are synced")); m_sync_button_text->SetFont(Label::Head_14); m_sync_button_text->Wrap(-1); sync_button_sizer->Add(m_btn_sync); @@ -1732,13 +1731,11 @@ void CalibrationPresetPage::update_sync_button_status() if (synced) { m_btn_sync->SetBorderColor(synced_colour); m_btn_sync->SetIcon("ams_nozzle_sync"); - wxString sync_text = _L("Sync printer information") + _L(" (Synced)"); - m_sync_button_text->SetLabel(sync_text); + m_sync_button_text->SetLabel(_L("AMS and nozzle information are synced")); } else { m_btn_sync->SetBorderColor(not_synced_colour); m_btn_sync->SetIcon("printer_sync"); - wxString sync_text = _L("Sync printer information") + _L(" (Not synced)"); - m_sync_button_text->SetLabel(sync_text); + m_sync_button_text->SetLabel(_L("Sync AMS and nozzle information")); } };