mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-22 02:12:13 +00:00
Improve the language on some strings (#13553)
Co-authored-by: Ian Bassi <ian.bassi@outlook.com>
This commit is contained in:
committed by
GitHub
parent
1c7022f4c8
commit
e90e22ae82
@@ -1233,7 +1233,7 @@ void MenuFactory::append_menu_items_convert_unit(wxMenu* menu)
|
||||
|
||||
void MenuFactory::append_menu_item_merge_to_multipart_object(wxMenu* menu)
|
||||
{
|
||||
append_menu_item(menu, wxID_ANY, _L("Assemble"), _L("Assemble the selected objects to an object with multiple parts"),
|
||||
append_menu_item(menu, wxID_ANY, _L("Assemble"), _L("Assemble the selected objects into an object with multiple parts"),
|
||||
[](wxCommandEvent&) { obj_list()->merge(true); }, "", menu,
|
||||
[]() { return obj_list()->can_merge_to_multipart_object(); }, m_parent);
|
||||
}
|
||||
@@ -1241,7 +1241,7 @@ void MenuFactory::append_menu_item_merge_to_multipart_object(wxMenu* menu)
|
||||
void MenuFactory::append_menu_item_merge_to_single_object(wxMenu* menu)
|
||||
{
|
||||
menu->AppendSeparator();
|
||||
append_menu_item(menu, wxID_ANY, _L("Assemble"), _L("Assemble the selected objects to an object with single part"),
|
||||
append_menu_item(menu, wxID_ANY, _L("Assemble"), _L("Assemble the selected objects into an object with single part"),
|
||||
[](wxCommandEvent&) { obj_list()->merge(false); }, "", menu,
|
||||
[]() { return obj_list()->can_merge_to_single_object(); }, m_parent);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user