From 219521f6ad66c229cbd234125394e93474097f5a Mon Sep 17 00:00:00 2001 From: bubnikv Date: Mon, 5 Aug 2019 14:54:29 +0200 Subject: [PATCH] Wording improvmenet of some error message. --- src/slic3r/GUI/GUI_ObjectList.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index 279a439ed..e20abcd11 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -1767,7 +1767,7 @@ void ObjectList::del_subobject_item(wxDataViewItem& item) m_objects_model->Delete(item); if (show_msg) - Slic3r::GUI::show_error(nullptr, _(L("From Object List You can't delete the last intance from object."))); + Slic3r::GUI::show_error(nullptr, _(L("Last instance of an object cannot be deleted."))); } void ObjectList::del_settings_from_config(const wxDataViewItem& parent_item) @@ -1869,7 +1869,7 @@ bool ObjectList::del_subobject_from_object(const int obj_idx, const int idx, con } else if (type == itInstance) { if (object->instances.size() == 1) { - Slic3r::GUI::show_error(nullptr, _(L("From Object List You can't delete the last intance from object."))); + Slic3r::GUI::show_error(nullptr, _(L("Last instance of an object cannot be deleted."))); return false; }