UI: Rename New Bone Collection confirmation button

Rename "Move" to "Create" to match object collections operator and
because it is the first action performed right after.
Plus it is arguably the action with the most impact of the two.
This commit is contained in:
Pablo Vazquez
2024-04-30 17:09:31 +02:00
parent 98043d3fc3
commit e29676ac98

View File

@@ -1145,7 +1145,7 @@ static int move_to_new_collection_invoke(bContext *C, wmOperator *op)
{
RNA_string_set(op->ptr, "new_collection_name", IFACE_("Bones"));
return WM_operator_props_dialog_popup(
C, op, 200, IFACE_("Move to New Bone Collection"), IFACE_("Move"));
C, op, 200, IFACE_("Move to New Bone Collection"), IFACE_("Create"));
}
static int move_to_collection_invoke(bContext *C, wmOperator *op, const wmEvent * /*event*/)