From 30ee6a27dfa20b903b9b8a67f677e934bcdb5f2e Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Tue, 7 Oct 2025 18:16:59 +0200 Subject: [PATCH] I18n: Translate a single custom report in quit dialog Reported by Ye Gui in #43295. --- source/blender/windowmanager/intern/wm_files.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/windowmanager/intern/wm_files.cc b/source/blender/windowmanager/intern/wm_files.cc index 3b664453aea..ef9fb8337af 100644 --- a/source/blender/windowmanager/intern/wm_files.cc +++ b/source/blender/windowmanager/intern/wm_files.cc @@ -4786,7 +4786,7 @@ static uiBlock *block_create__close_file_dialog(bContext *C, ARegion *region, vo /* Modified Images Checkbox. */ if (modified_images_count > 0) { char message[64]; - SNPRINTF(message, "Save %u modified image(s)", modified_images_count); + SNPRINTF(message, RPT_("Save %u modified image(s)"), modified_images_count); /* Only the first checkbox should get extra separation. */ if (!has_extra_checkboxes) { layout->separator();