I18n: Disambiguate "Normal"

"Normal" means "ordinary", not "perpendicular".

Issue reported by Hoang Duy Tran.
This commit is contained in:
Damien Picard
2024-12-26 16:02:13 +01:00
committed by Bastien Montagne
parent 466af92f7a
commit 5857000a65

View File

@@ -1900,6 +1900,7 @@ static void rna_def_gpencil_options(BlenderRNA *brna)
RNA_def_property_enum_sdna(prop, nullptr, "fill_direction");
RNA_def_property_enum_items(prop, rna_enum_gpencil_fill_direction_items);
RNA_def_property_ui_text(prop, "Direction", "Direction of the fill");
RNA_def_property_translation_context(prop, BLT_I18NCONTEXT_ID_BRUSH);
RNA_def_property_clear_flag(prop, PROP_ANIMATABLE);
RNA_def_property_update(prop, 0, "rna_BrushGpencilSettings_update");