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)