Improve the language on some strings (#13553)

Co-authored-by: Ian Bassi <ian.bassi@outlook.com>
This commit is contained in:
Alexandre Folle de Menezes
2026-05-12 12:55:57 -03:00
committed by GitHub
parent 1c7022f4c8
commit e90e22ae82
29 changed files with 306 additions and 246 deletions

View File

@@ -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);
}