From ba9468768ddcfd1e028893a1bc4f255bae7eac5a Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 27 Jan 2016 22:20:26 +0100 Subject: Usual i18n/UI messages fixes. --- release/scripts/startup/bl_ui/properties_physics_smoke.py | 2 +- source/blender/makesrna/intern/rna_scene.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/release/scripts/startup/bl_ui/properties_physics_smoke.py b/release/scripts/startup/bl_ui/properties_physics_smoke.py index 32d5b287d83..ef7d25e0a42 100644 --- a/release/scripts/startup/bl_ui/properties_physics_smoke.py +++ b/release/scripts/startup/bl_ui/properties_physics_smoke.py @@ -314,7 +314,7 @@ class PHYSICS_PT_smoke_cache(PhysicButtonsPanel, Panel): layout.prop(domain, "point_cache_compress_type", expand=True) elif cache_file_format == 'OPENVDB': if not bpy.app.build_options.openvdb: - layout.label("Build without OpenVDB support.") + layout.label("Built without OpenVDB support") return layout.label(text="Compression:") diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 2c2b49c8c40..996cee03487 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -2109,7 +2109,7 @@ static void rna_def_tool_settings(BlenderRNA *brna) prop = RNA_def_property(srna, "vertex_group_user", PROP_ENUM, PROP_NONE); RNA_def_property_enum_sdna(prop, NULL, "weightuser"); RNA_def_property_enum_items(prop, draw_groupuser_items); - RNA_def_property_ui_text(prop, "Mask Non-Group Vertices", "Display unweighted verticess"); + RNA_def_property_ui_text(prop, "Mask Non-Group Vertices", "Display unweighted vertices"); RNA_def_property_update(prop, 0, "rna_Scene_update_active_object_data"); prop = RNA_def_property(srna, "vertex_group_subset", PROP_ENUM, PROP_NONE); -- cgit v1.2.3