[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [45631] trunk/blender/source/blender: Fixed some UI message typos (spotted by Leon Cheung, thx).

Bastien Montagne montagne29 at wanadoo.fr
Sat Apr 14 17:44:31 CEST 2012


Revision: 45631
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=45631
Author:   mont29
Date:     2012-04-14 15:44:31 +0000 (Sat, 14 Apr 2012)
Log Message:
-----------
Fixed some UI message typos (spotted by Leon Cheung, thx).

Modified Paths:
--------------
    trunk/blender/source/blender/editors/mesh/editmesh_tools.c
    trunk/blender/source/blender/editors/space_clip/tracking_ops.c
    trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c
    trunk/blender/source/blender/makesrna/intern/rna_armature.c
    trunk/blender/source/blender/makesrna/intern/rna_constraint.c
    trunk/blender/source/blender/makesrna/intern/rna_fluidsim.c
    trunk/blender/source/blender/makesrna/intern/rna_modifier.c
    trunk/blender/source/blender/makesrna/intern/rna_object_force.c
    trunk/blender/source/blender/makesrna/intern/rna_particle.c
    trunk/blender/source/blender/makesrna/intern/rna_tracking.c

Modified: trunk/blender/source/blender/editors/mesh/editmesh_tools.c
===================================================================
--- trunk/blender/source/blender/editors/mesh/editmesh_tools.c	2012-04-14 15:14:24 UTC (rev 45630)
+++ trunk/blender/source/blender/editors/mesh/editmesh_tools.c	2012-04-14 15:44:31 UTC (rev 45631)
@@ -1189,7 +1189,7 @@
 	/* identifiers */
 	ot->name = "Vertex Connect";
 	ot->idname = "MESH_OT_vert_connect";
-	ot->description = "Connect 2 vertices in a face with by an edge, splitting the face in half";
+	ot->description = "Connect 2 vertices of a face by an edge, splitting the face in two";
 	
 	/* api callbacks */
 	ot->exec = edbm_vert_connect;

Modified: trunk/blender/source/blender/editors/space_clip/tracking_ops.c
===================================================================
--- trunk/blender/source/blender/editors/space_clip/tracking_ops.c	2012-04-14 15:14:24 UTC (rev 45630)
+++ trunk/blender/source/blender/editors/space_clip/tracking_ops.c	2012-04-14 15:44:31 UTC (rev 45631)
@@ -2433,7 +2433,7 @@
 	ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO;
 
 	/* properties */
-	RNA_def_enum(ot->srna, "plane", plane_items, 0, "Plane", "Plane to be sued for orientation");
+	RNA_def_enum(ot->srna, "plane", plane_items, 0, "Plane", "Plane to be used for orientation");
 }
 
 /********************** set axis operator *********************/
@@ -3517,8 +3517,10 @@
 	ot->flag = OPTYPE_REGISTER|OPTYPE_UNDO;
 
 	/* properties */
-	RNA_def_int(ot->srna, "frames", 0, 0, INT_MAX, "Tracked Frames", "Effect on tracks which are tracked less than specified amount of frames", 0, INT_MAX);
-	RNA_def_float(ot->srna, "error", 0.0f, 0.0f, FLT_MAX, "Reprojection Error", "Effect on tracks with have got larger re-projection error", 0.0f, 100.0f);
+	RNA_def_int(ot->srna, "frames", 0, 0, INT_MAX, "Tracked Frames",
+	            "Effect on tracks which are tracked less than specified amount of frames", 0, INT_MAX);
+	RNA_def_float(ot->srna, "error", 0.0f, 0.0f, FLT_MAX, "Reprojection Error",
+	              "Effect on tracks which have got larger re-projection error", 0.0f, 100.0f);
 	RNA_def_enum(ot->srna, "action", actions_items, 0, "Action", "Cleanup action to execute");
 }
 

Modified: trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c
===================================================================
--- trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c	2012-04-14 15:14:24 UTC (rev 45630)
+++ trunk/blender/source/blender/editors/space_sequencer/sequencer_edit.c	2012-04-14 15:44:31 UTC (rev 45631)
@@ -1319,7 +1319,8 @@
 	/* flags */
 	ot->flag = OPTYPE_REGISTER; /* no undo, the data changed is stored outside 'main' */
 
-	prop = RNA_def_boolean(ot->srna, "adjust_length", 0, "Adjust Length", "Adjust lenght of strips to their data length");
+	prop = RNA_def_boolean(ot->srna, "adjust_length", 0, "Adjust Length",
+	                       "Adjust lenght of strips to their data lenght");
 	RNA_def_property_flag(prop, PROP_SKIP_SAVE);
 }
 

Modified: trunk/blender/source/blender/makesrna/intern/rna_armature.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_armature.c	2012-04-14 15:14:24 UTC (rev 45630)
+++ trunk/blender/source/blender/makesrna/intern/rna_armature.c	2012-04-14 15:44:31 UTC (rev 45631)
@@ -952,7 +952,7 @@
 	
 	prop = RNA_def_property(srna, "use_auto_ik", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", ARM_AUTO_IK);
-	RNA_def_property_ui_text(prop, "Auto IK", "Add temporaral IK constraints while grabbing bones in Pose Mode");
+	RNA_def_property_ui_text(prop, "Auto IK", "Add temporary IK constraints while grabbing bones in Pose Mode");
 	RNA_def_property_update(prop, 0, "rna_Armature_redraw_data");
 	RNA_def_property_flag(prop, PROP_LIB_EXCEPTION);
 	

Modified: trunk/blender/source/blender/makesrna/intern/rna_constraint.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_constraint.c	2012-04-14 15:14:24 UTC (rev 45630)
+++ trunk/blender/source/blender/makesrna/intern/rna_constraint.c	2012-04-14 15:44:31 UTC (rev 45631)
@@ -1501,7 +1501,7 @@
 
 	srna = RNA_def_struct(brna, "ClampToConstraint", "Constraint");
 	RNA_def_struct_ui_text(srna, "Clamp To Constraint",
-	                       "Constrains an object's location to the nearest point along the target path");
+	                       "Constrain an object's location to the nearest point along the target path");
 	RNA_def_struct_sdna_from(srna, "bClampToConstraint", "data");
 
 	prop = RNA_def_property(srna, "target", PROP_POINTER, PROP_NONE);
@@ -1541,7 +1541,7 @@
 		{0, NULL, 0, NULL, NULL}};
 
 	srna = RNA_def_struct(brna, "TransformConstraint", "Constraint");
-	RNA_def_struct_ui_text(srna, "Transformation Constraint", "Maps transformations of the target to the object");
+	RNA_def_struct_ui_text(srna, "Transformation Constraint", "Map transformations of the target to the object");
 	RNA_def_struct_sdna_from(srna, "bTransformConstraint", "data");
 
 	prop = RNA_def_property(srna, "target", PROP_POINTER, PROP_NONE);

Modified: trunk/blender/source/blender/makesrna/intern/rna_fluidsim.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_fluidsim.c	2012-04-14 15:14:24 UTC (rev 45630)
+++ trunk/blender/source/blender/makesrna/intern/rna_fluidsim.c	2012-04-14 15:44:31 UTC (rev 45631)
@@ -598,7 +598,7 @@
 	RNA_def_property_range(prop, 0.0, 2.0);
 	RNA_def_property_ui_text(prop, "Alpha Influence",
 	                         "Amount of particle alpha change, inverse of size influence: 0=off (all same alpha), "
-	                         "1=full (large particles get lower alphas, smaller ones higher values)");
+	                         "1=full (larger particles get lower alphas, smaller ones higher values)");
 
 	prop = RNA_def_property(srna, "filepath", PROP_STRING, PROP_FILEPATH);
 	RNA_def_property_string_maxlength(prop, FILE_MAX);

Modified: trunk/blender/source/blender/makesrna/intern/rna_modifier.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2012-04-14 15:14:24 UTC (rev 45630)
+++ trunk/blender/source/blender/makesrna/intern/rna_modifier.c	2012-04-14 15:44:31 UTC (rev 45631)
@@ -2709,7 +2709,7 @@
 
 	prop = RNA_def_property(srna, "falloff_type", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_items(prop, weightvg_edit_falloff_type_items);
-	RNA_def_property_ui_text(prop, "Falloff Type", "How weights are mapped to there new values");
+	RNA_def_property_ui_text(prop, "Falloff Type", "How weights are mapped to their new values");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
 	prop = RNA_def_property(srna, "use_add", PROP_BOOLEAN, PROP_NONE);
@@ -2907,7 +2907,7 @@
 
 	prop = RNA_def_property(srna, "falloff_type", PROP_ENUM, PROP_NONE);
 	RNA_def_property_enum_items(prop, weightvg_proximity_falloff_type_items);
-	RNA_def_property_ui_text(prop, "Falloff Type", "How weights are mapped to there new values");
+	RNA_def_property_ui_text(prop, "Falloff Type", "How weights are mapped to their new values");
 	RNA_def_property_update(prop, 0, "rna_Modifier_update");
 
 	/* Common masking properties. */

Modified: trunk/blender/source/blender/makesrna/intern/rna_object_force.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_object_force.c	2012-04-14 15:14:24 UTC (rev 45630)
+++ trunk/blender/source/blender/makesrna/intern/rna_object_force.c	2012-04-14 15:44:31 UTC (rev 45631)
@@ -1650,7 +1650,7 @@
 	RNA_def_property_float_sdna(prop, NULL, "colball");
 	RNA_def_property_clear_flag(prop, PROP_ANIMATABLE); /* code is not ready for that yet */
 	RNA_def_property_range(prop, -10.0f, 10.0f);
-	RNA_def_property_ui_text(prop, "Ball Size", "Absolute ball size or factor if not manual adjusted");
+	RNA_def_property_ui_text(prop, "Ball Size", "Absolute ball size or factor if not manually adjusted");
 	RNA_def_property_update(prop, 0, "rna_softbody_update");
 	
 	prop = RNA_def_property(srna, "ball_stiff", PROP_FLOAT, PROP_NONE);

Modified: trunk/blender/source/blender/makesrna/intern/rna_particle.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_particle.c	2012-04-14 15:14:24 UTC (rev 45630)
+++ trunk/blender/source/blender/makesrna/intern/rna_particle.c	2012-04-14 15:44:31 UTC (rev 45631)
@@ -1181,7 +1181,7 @@
 	RNA_def_property_float_sdna(prop, NULL, "viscosity_beta");
 	RNA_def_property_range(prop, 0.0f, 100.0f);
 	RNA_def_property_ui_range(prop, 0.0f, 2.0f, 1, 3);
-	RNA_def_property_ui_text(prop, "Stiff viscosity", "Creates viscosity for expanding fluid)");
+	RNA_def_property_ui_text(prop, "Stiff viscosity", "Creates viscosity for expanding fluid");
 	RNA_def_property_update(prop, 0, "rna_Particle_reset");
 
 	/* Double density relaxation */

Modified: trunk/blender/source/blender/makesrna/intern/rna_tracking.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_tracking.c	2012-04-14 15:14:24 UTC (rev 45630)
+++ trunk/blender/source/blender/makesrna/intern/rna_tracking.c	2012-04-14 15:44:31 UTC (rev 45631)
@@ -1074,7 +1074,7 @@
 	RNA_def_property_array(prop, 3);
 	RNA_def_property_range(prop, 0.0f, 1.0f);
 	RNA_def_property_ui_text(prop, "Color",
-	                         "Color of the track in the Movie Track Editor and the 3D viewport after a solve");
+	                         "Color of the track in the Movie Clip Editor and the 3D viewport after a solve");
 	RNA_def_property_update(prop, NC_MOVIECLIP|ND_DISPLAY, NULL);
 
 	/* average error */




More information about the Bf-blender-cvs mailing list