From 9d39980cfd21119f85885b00ccdbd24cb28e33ca Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 31 Jan 2018 16:43:04 +0100 Subject: I18n disambiguation: IRIS is both a file format and a VSE wipe effect... At some point, we could probably think about removing IRIS file format support, don't think there are much of those around anymore. But for now, let's add a translation context to wipe effect. :) Reported in T43295 by @blend-it, thanks. --- source/blender/makesrna/intern/rna_sequencer.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/makesrna/intern/rna_sequencer.c') diff --git a/source/blender/makesrna/intern/rna_sequencer.c b/source/blender/makesrna/intern/rna_sequencer.c index 61ac81a6d1c..1d0fa7a311c 100644 --- a/source/blender/makesrna/intern/rna_sequencer.c +++ b/source/blender/makesrna/intern/rna_sequencer.c @@ -2160,6 +2160,7 @@ static void rna_def_wipe(StructRNA *srna) prop = RNA_def_property(srna, "transition_type", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "wipetype"); RNA_def_property_enum_items(prop, wipe_type_items); + RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_ID_SEQUENCE); RNA_def_property_ui_text(prop, "Transition Type", ""); RNA_def_property_update(prop, NC_SCENE | ND_SEQUENCER, "rna_Sequence_update"); } -- cgit v1.2.3