From 365eacc7cfb9ca627dc3b8c67022cffc0d4292b9 Mon Sep 17 00:00:00 2001 From: Stone Li Date: Mon, 6 Mar 2023 10:15:39 +0800 Subject: [PATCH] ENH: add translation for choose color dialog Change-Id: Ic59286939fcf5a9905950c249ee3e9b03a55398e Signed-off-by: Stone Li --- src/slic3r/GUI/PresetComboBoxes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/PresetComboBoxes.cpp b/src/slic3r/GUI/PresetComboBoxes.cpp index 14fd600a17..83e033d502 100644 --- a/src/slic3r/GUI/PresetComboBoxes.cpp +++ b/src/slic3r/GUI/PresetComboBoxes.cpp @@ -691,7 +691,7 @@ PlaterPresetComboBox::PlaterPresetComboBox(wxWindow *parent, Preset::Type preset m_clrData.SetChooseAlpha(false); wxColourDialog dialog(this, &m_clrData); - dialog.SetTitle("Please choose the filament colour"); + dialog.SetTitle(_L("Please choose the filament colour")); if ( dialog.ShowModal() == wxID_OK ) { m_clrData = dialog.GetColourData();