[Bf-blender-cvs] [049f715] master: Usual UI/i18n message fixes.

Bastien Montagne noreply at git.blender.org
Tue Jun 14 00:18:56 CEST 2016


Commit: 049f715d1ce200869ad0e1fe585fa146204553b5
Author: Bastien Montagne
Date:   Tue Jun 14 00:16:39 2016 +0200
Branches: master
https://developer.blender.org/rB049f715d1ce200869ad0e1fe585fa146204553b5

Usual UI/i18n message fixes.

===================================================================

M	source/blender/editors/io/io_collada.c
M	source/blender/makesrna/intern/rna_pose.c

===================================================================

diff --git a/source/blender/editors/io/io_collada.c b/source/blender/editors/io/io_collada.c
index b1ca95e..3803221 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 06823a2..1f34d8f 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");




More information about the Bf-blender-cvs mailing list