I18n: Translate "Storyboarding" file template

File template names are only extracted in the
`blo_is_builtin_template()` versioning function, not the template
files themselves.

This commit adds the recent "Storyboarding" template to the list of
built-in templates, which allows extracting it for translation.

Reported by Ye Gui in #43295.
This commit is contained in:
Damien Picard
2025-10-07 13:37:19 +02:00
committed by Bastien Montagne
parent 09f9edb38c
commit 214f4aa946

View File

@@ -77,9 +77,12 @@
static bool blo_is_builtin_template(const char *app_template)
{
/* For all builtin templates shipped with Blender. */
return (
!app_template ||
STR_ELEM(app_template, N_("2D_Animation"), N_("Sculpting"), N_("VFX"), N_("Video_Editing")));
return (!app_template || STR_ELEM(app_template,
N_("2D_Animation"),
N_("Storyboarding"),
N_("Sculpting"),
N_("VFX"),
N_("Video_Editing")));
}
static void blo_update_defaults_screen(bScreen *screen,