I18n: Translate two report messages needing manual translation

This call to `BKE_reportf()` uses a tertiary operator to select a
message using singular or plural, which cannot be translated
automatically. This commit adds `RPT_()` translation for both
variants.

Reported by Ye Gui in #43295.
This commit is contained in:
Damien Picard
2025-06-30 21:46:10 +02:00
committed by Bastien Montagne
parent ac1f875a2f
commit 81fa28fa26

View File

@@ -3606,7 +3606,7 @@ static wmOperatorStatus edbm_remove_doubles_exec(bContext *C, wmOperator *op)
BKE_reportf(op->reports,
RPT_INFO,
count_multi == 1 ? "Removed %d vertex" : "Removed %d vertices",
count_multi == 1 ? RPT_("Removed %d vertex") : RPT_("Removed %d vertices"),
count_multi);
return OPERATOR_FINISHED;