From cf7713aac6708d07d5b9465ec7f2e2f407bdb5d2 Mon Sep 17 00:00:00 2001 From: Damien Picard Date: Wed, 15 Oct 2025 12:58:26 +0200 Subject: [PATCH] I18n: Disambiguate "Second", the unit, not the ordinal Reported by Alexandr Fatih in #43295. Pull Request: https://projects.blender.org/blender/blender/pulls/148085 --- source/blender/makesrna/intern/rna_scene.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/makesrna/intern/rna_scene.cc b/source/blender/makesrna/intern/rna_scene.cc index 85ddc7f4f93..ea986f64c7d 100644 --- a/source/blender/makesrna/intern/rna_scene.cc +++ b/source/blender/makesrna/intern/rna_scene.cc @@ -8767,6 +8767,7 @@ void RNA_def_scene(BlenderRNA *brna) RNA_def_property_enum_items(prop, time_jump_unit_items); RNA_def_property_ui_text( prop, "Time Jump Unit", "Which unit to use for time jumps in the timeline"); + RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_UNIT); RNA_def_property_update(prop, NC_SCENE | ND_FRAME_RANGE, nullptr); prop = RNA_def_property(srna, "time_jump_delta", PROP_FLOAT, PROP_TIME);