From eeedcf38929b6c0897b91df26e2ba66e1e74d626 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 19 Jul 2016 15:41:28 +0200 Subject: [PATCH] Usual i18n/UI messages fixes... --- intern/cycles/blender/addon/properties.py | 2 +- release/scripts/modules/bl_i18n_utils/settings.py | 6 ++++++ release/scripts/modules/bl_i18n_utils/utils_spell_check.py | 2 ++ source/blender/makesrna/intern/rna_space.c | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py index 193ef0cf505..0b3dd552f62 100644 --- a/intern/cycles/blender/addon/properties.py +++ b/intern/cycles/blender/addon/properties.py @@ -505,7 +505,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup): ) cls.debug_use_hair_bvh = BoolProperty( name="Use Hair BVH", - description="Use special type BVH optimized for hair. Uses more ram but renders faster", + description="Use special type BVH optimized for hair (uses more ram but renders faster)", default=True, ) cls.tile_order = EnumProperty( diff --git a/release/scripts/modules/bl_i18n_utils/settings.py b/release/scripts/modules/bl_i18n_utils/settings.py index dd6b79f6686..07fc9f0c338 100644 --- a/release/scripts/modules/bl_i18n_utils/settings.py +++ b/release/scripts/modules/bl_i18n_utils/settings.py @@ -329,16 +329,21 @@ WARN_MSGID_NOT_CAPITALIZED_ALLOWED = { "available with", "brown fox", "can't save image while rendering", + "constructive modifier", + "edge data", "expected a timeline/animation area to be active", "expected a view3d region", "expected a view3d region & editcurve", "expected a view3d region & editmesh", + "face data", "image file not found", "image format is read-only", "image path can't be written to", "in memory to enable editing!", "jumps over", "left", + "multi-res modifier", + "non-triangle face", "right", "the lazy dog", "unable to load movie clip", @@ -351,6 +356,7 @@ WARN_MSGID_NOT_CAPITALIZED_ALLOWED = { "unsupported format", "unsupported image format", "unsupported movie clip format", + "vertex data", "verts only", "virtual parents", } diff --git a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py index 98a117e95a6..ba782160edd 100644 --- a/release/scripts/modules/bl_i18n_utils/utils_spell_check.py +++ b/release/scripts/modules/bl_i18n_utils/utils_spell_check.py @@ -565,7 +565,9 @@ class SpellChecker: "ui", "unix", "vbo", "vbos", + "wxyz", "ycc", "ycca", + "yrgb", "yuv", "yuva", # Blender acronyms diff --git a/source/blender/makesrna/intern/rna_space.c b/source/blender/makesrna/intern/rna_space.c index df589bb1bf1..4818fe0cd35 100644 --- a/source/blender/makesrna/intern/rna_space.c +++ b/source/blender/makesrna/intern/rna_space.c @@ -3616,7 +3616,7 @@ static void rna_def_space_nla(BlenderRNA *brna) prop = RNA_def_property(srna, "show_local_markers", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", SNLA_NOLOCALMARKERS); RNA_def_property_ui_text(prop, "Show Local Markers", - "Show action-local markers on the strips, useful when synchronising timing across strips"); + "Show action-local markers on the strips, useful when synchronizing timing across strips"); RNA_def_property_update(prop, NC_SPACE | ND_SPACE_NLA, NULL); /* editing */