From 5e6ea2fa78dd1f012ae00d46a43aa055b763dcda Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Tue, 14 Oct 2025 13:30:21 +0200 Subject: [PATCH] I18n: Disambiguate "Value" in the context of colors --- source/blender/makesrna/intern/rna_sequencer.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/makesrna/intern/rna_sequencer.cc b/source/blender/makesrna/intern/rna_sequencer.cc index 58018d6fd4c..1c62112584b 100644 --- a/source/blender/makesrna/intern/rna_sequencer.cc +++ b/source/blender/makesrna/intern/rna_sequencer.cc @@ -2442,6 +2442,7 @@ static void rna_def_strip(BlenderRNA *brna) RNA_def_property_enum_default(prop, STRIP_TYPE_ALPHAOVER); RNA_def_property_ui_text( prop, "Blending Mode", "Method for controlling how the strip combines with other strips"); + RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_COLOR); RNA_def_property_update( prop, NC_SCENE | ND_SEQUENCER, "rna_Strip_invalidate_preprocessed_update");