From 8f015d3bfca5237c81dd01d2ce2e486ff68f83c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 25 Mar 2024 10:18:13 +0100 Subject: [PATCH] Modeling: Merge Vertices, correct spelling of report Fix the "Merge Vertices" report, replacing "vertice(s)" with either "vertex" or "vertices". The singular "vertice" is not a word in English, and thus the regular "append (s)" approach is incorrect. Pull Request: https://projects.blender.org/blender/blender/pulls/119863 --- source/blender/editors/mesh/editmesh_tools.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/blender/editors/mesh/editmesh_tools.cc b/source/blender/editors/mesh/editmesh_tools.cc index 37c7c5c9628..673c69d1cd1 100644 --- a/source/blender/editors/mesh/editmesh_tools.cc +++ b/source/blender/editors/mesh/editmesh_tools.cc @@ -3584,7 +3584,10 @@ static int edbm_remove_doubles_exec(bContext *C, wmOperator *op) } } - BKE_reportf(op->reports, RPT_INFO, "Removed %d vertice(s)", count_multi); + BKE_reportf(op->reports, + RPT_INFO, + count_multi == 1 ? "Removed %d vertex" : "Removed %d vertices", + count_multi); return OPERATOR_FINISHED; }