From 00221d8652dfaf3a8cc1fb5ff12e608f195144cb Mon Sep 17 00:00:00 2001 From: "chunmao.guo" Date: Fri, 13 Jan 2023 11:36:57 +0800 Subject: [PATCH] FIX: [STUDIO-2004] text in ConfigsOverwriteConfirmDialog Change-Id: I98f2159ccf467782edb25d5cdfecd468e4346fe7 --- src/slic3r/GUI/MainFrame.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 65aca3827..e369e903f 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -2578,8 +2578,8 @@ struct ConfigsOverwriteConfirmDialog : MessageDialog { ConfigsOverwriteConfirmDialog(wxWindow *parent, wxString name, bool exported) : MessageDialog(parent, - wxString::Format(exported ? _("A file exists with the same name: %s, do you wan't to override it.") : - _("A config exists with the same name: %s, do you wan't to override it."), + wxString::Format(exported ? _L("A file exists with the same name: %s, do you want to override it.") : + _L("A config exists with the same name: %s, do you want to override it."), name), _L(exported ? "Overwrite file" : "Overwrite config"), wxYES_NO | wxNO_DEFAULT)