Usual i18n/UI messages fixes...

This commit is contained in:
Bastien Montagne 2016-07-19 15:41:28 +02:00
parent 307250723b
commit eeedcf3892
4 changed files with 10 additions and 2 deletions

@ -505,7 +505,7 @@ class CyclesRenderSettings(bpy.types.PropertyGroup):
) )
cls.debug_use_hair_bvh = BoolProperty( cls.debug_use_hair_bvh = BoolProperty(
name="Use Hair BVH", 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, default=True,
) )
cls.tile_order = EnumProperty( cls.tile_order = EnumProperty(

@ -329,16 +329,21 @@ WARN_MSGID_NOT_CAPITALIZED_ALLOWED = {
"available with", "available with",
"brown fox", "brown fox",
"can't save image while rendering", "can't save image while rendering",
"constructive modifier",
"edge data",
"expected a timeline/animation area to be active", "expected a timeline/animation area to be active",
"expected a view3d region", "expected a view3d region",
"expected a view3d region & editcurve", "expected a view3d region & editcurve",
"expected a view3d region & editmesh", "expected a view3d region & editmesh",
"face data",
"image file not found", "image file not found",
"image format is read-only", "image format is read-only",
"image path can't be written to", "image path can't be written to",
"in memory to enable editing!", "in memory to enable editing!",
"jumps over", "jumps over",
"left", "left",
"multi-res modifier",
"non-triangle face",
"right", "right",
"the lazy dog", "the lazy dog",
"unable to load movie clip", "unable to load movie clip",
@ -351,6 +356,7 @@ WARN_MSGID_NOT_CAPITALIZED_ALLOWED = {
"unsupported format", "unsupported format",
"unsupported image format", "unsupported image format",
"unsupported movie clip format", "unsupported movie clip format",
"vertex data",
"verts only", "verts only",
"virtual parents", "virtual parents",
} }

@ -565,7 +565,9 @@ class SpellChecker:
"ui", "ui",
"unix", "unix",
"vbo", "vbos", "vbo", "vbos",
"wxyz",
"ycc", "ycca", "ycc", "ycca",
"yrgb",
"yuv", "yuva", "yuv", "yuva",
# Blender acronyms # Blender acronyms

@ -3616,7 +3616,7 @@ static void rna_def_space_nla(BlenderRNA *brna)
prop = RNA_def_property(srna, "show_local_markers", PROP_BOOLEAN, PROP_NONE); 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_boolean_negative_sdna(prop, NULL, "flag", SNLA_NOLOCALMARKERS);
RNA_def_property_ui_text(prop, "Show Local Markers", 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); RNA_def_property_update(prop, NC_SPACE | ND_SPACE_NLA, NULL);
/* editing */ /* editing */