From 6718026dd69dd05fb14259be67859585e9ee19ab Mon Sep 17 00:00:00 2001 From: "maosheng.wei" Date: Fri, 21 Apr 2023 11:43:52 +0800 Subject: [PATCH] FIX: [STUDIO-2708] Translation of Language Selection Change-Id: I7dc0d69846d0189f938bb680e201b62d20fba4e3 --- src/slic3r/GUI/Preferences.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Preferences.cpp b/src/slic3r/GUI/Preferences.cpp index 5e365a8b74..a5346ded0c 100644 --- a/src/slic3r/GUI/Preferences.cpp +++ b/src/slic3r/GUI/Preferences.cpp @@ -172,7 +172,7 @@ wxBoxSizer *PreferencesDialog::create_item_language_combobox( // or sometimes the application crashes into wxDialogBase() destructor // so we put it into an inner scope MessageDialog msg_wingow(nullptr, _L("Switching the language requires application restart.\n") + "\n" + _L("Do you want to continue?"), - L("Language selection"), wxICON_QUESTION | wxOK | wxCANCEL); + _L("Language selection"), wxICON_QUESTION | wxOK | wxCANCEL); if (msg_wingow.ShowModal() == wxID_CANCEL) { combobox->SetSelection(m_current_language_selected); return;