From 3cd70489e317f8738d97dcac79b4700edaf407cc Mon Sep 17 00:00:00 2001 From: Klaus Naumann Date: Wed, 7 Oct 2020 18:08:16 +0200 Subject: [PATCH] Update language to be more clear --- src/slic3r/GUI/GUI_App.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index 3c55b2bc4..faf92d6eb 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -1058,7 +1058,7 @@ void GUI_App::check_printer_presets() if (preset_names.empty()) return; - wxString msg_text = _L("You have next presets with saved options for \"Print Host upload\"") + ":"; + wxString msg_text = _L("You have the following presets with saved options for \"Print Host upload\"") + ":"; for (const std::string& preset_name : preset_names) msg_text += "\n \"" + from_u8(preset_name) + "\","; msg_text.RemoveLast();