[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [54306] trunk/blender/source/blender/ makesrna/intern: The usual UI messages tweaks...

Bastien Montagne montagne29 at wanadoo.fr
Mon Feb 4 20:12:17 CET 2013


Revision: 54306
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=54306
Author:   mont29
Date:     2013-02-04 19:12:17 +0000 (Mon, 04 Feb 2013)
Log Message:
-----------
The usual UI messages tweaks...

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_actuator.c
    trunk/blender/source/blender/makesrna/intern/rna_fcurve.c
    trunk/blender/source/blender/makesrna/intern/rna_nodetree.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_actuator.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_actuator.c	2013-02-04 18:50:09 UTC (rev 54305)
+++ trunk/blender/source/blender/makesrna/intern/rna_actuator.c	2013-02-04 19:12:17 UTC (rev 54306)
@@ -876,7 +876,7 @@
 
 	prop = RNA_def_property(srna, "use_add_character_location", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", ACT_ADD_CHAR_LOC);
-	RNA_def_property_ui_text(prop, "Add", "Toggles between ADD and SET character location");
+	RNA_def_property_ui_text(prop, "Add", "Toggle between ADD and SET character location");
 	RNA_def_property_update(prop, NC_LOGIC, NULL);
 
 	prop = RNA_def_property(srna, "use_servo_limit_x", PROP_BOOLEAN, PROP_NONE);
@@ -896,7 +896,7 @@
 
 	prop = RNA_def_property(srna, "use_character_jump", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", ACT_CHAR_JUMP);
-	RNA_def_property_ui_text(prop, "Jump", "Makes the character jump using the settings in the physics properties");
+	RNA_def_property_ui_text(prop, "Jump", "Make the character jump using the settings in the physics properties");
 	RNA_def_property_update(prop, NC_LOGIC, NULL);
 }
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_fcurve.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_fcurve.c	2013-02-04 18:50:09 UTC (rev 54305)
+++ trunk/blender/source/blender/makesrna/intern/rna_fcurve.c	2013-02-04 19:12:17 UTC (rev 54306)
@@ -684,7 +684,7 @@
 
 	/* test point is in range */
 	if (index < 0 || index >= env->totvert) {
-		BKE_report(reports, RPT_ERROR, "Control Point not in FEnvelopeModifier");
+		BKE_report(reports, RPT_ERROR, "Control point not in Envelope F-Modifier");
 		return;
 	}
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_nodetree.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2013-02-04 18:50:09 UTC (rev 54305)
+++ trunk/blender/source/blender/makesrna/intern/rna_nodetree.c	2013-02-04 19:12:17 UTC (rev 54306)
@@ -4228,10 +4228,10 @@
 static void def_cmp_translate(StructRNA *srna)
 {
 	static EnumPropertyItem translate_items[] = {
-		{0, "NONE",	 0, "None",		"No wrapping on x and y"},
-		{1, "XAXIS", 0, "X-Axis",	"Wrap all pixels on the x-Axis"},
-	    {2, "YAXIS", 0, "Y-Axis",	"Wrap all pixels on the y-Axis"},
-	    {3, "BOTH", 0, "Both axes",	"Wrap all pixels on the both axes"},
+		{0, "NONE", 0, "None", "No wrapping on X and Y"},
+		{1, "XAXIS", 0, "X Axis", "Wrap all pixels on the X axis"},
+		{2, "YAXIS", 0, "Y Axis", "Wrap all pixels on the Y axis"},
+		{3, "BOTH", 0, "Both Axes", "Wrap all pixels on both axes"},
 		{0, NULL, 0, NULL, NULL}
 	};
 




More information about the Bf-blender-cvs mailing list