From 049f715d1ce200869ad0e1fe585fa146204553b5 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 14 Jun 2016 00:16:39 +0200 Subject: Usual UI/i18n message fixes. --- source/blender/editors/io/io_collada.c | 2 +- source/blender/makesrna/intern/rna_pose.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c index b1ca95efe04..3803221b496 100644 --- a/source/blender/editors/io/io_collada.c +++ b/source/blender/editors/io/io_collada.c @@ -482,7 +482,7 @@ void WM_OT_collada_import(wmOperatorType *ot) RNA_def_boolean(ot->srna, "auto_connect", 0, "Auto Connect", - "set use_connect for parent bones which have exactly one child bone"); + "Set use_connect for parent bones which have exactly one child bone"); RNA_def_int(ot->srna, "min_chain_length", diff --git a/source/blender/makesrna/intern/rna_pose.c b/source/blender/makesrna/intern/rna_pose.c index 06823a26c77..1f34d8f23d4 100644 --- a/source/blender/makesrna/intern/rna_pose.c +++ b/source/blender/makesrna/intern/rna_pose.c @@ -898,7 +898,7 @@ static void rna_def_pose_channel(BlenderRNA *brna) prop = RNA_def_property(srna, "use_bbone_relative_start_handle", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "bboneflag", PCHAN_BBONE_CUSTOM_START_REL); RNA_def_property_ui_text(prop, "Relative B-Bone Start Handle", - "Use treat custom start handle position as a relative value"); + "Treat custom start handle position as a relative value"); RNA_def_property_editable_func(prop, "rna_PoseChannel_proxy_editable"); RNA_def_property_update(prop, NC_OBJECT | ND_POSE, "rna_Pose_update"); @@ -914,7 +914,7 @@ static void rna_def_pose_channel(BlenderRNA *brna) prop = RNA_def_property(srna, "use_bbone_relative_end_handle", PROP_BOOLEAN, PROP_NONE); RNA_def_property_boolean_sdna(prop, NULL, "bboneflag", PCHAN_BBONE_CUSTOM_END_REL); RNA_def_property_ui_text(prop, "Relative B-Bone End Handle", - "Use treat custom end handle position as a relative value"); + "Treat custom end handle position as a relative value"); RNA_def_property_editable_func(prop, "rna_PoseChannel_proxy_editable"); RNA_def_property_update(prop, NC_OBJECT | ND_POSE, "rna_Pose_update"); -- cgit v1.2.3