Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2012-04-14 19:44:31 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-04-14 19:44:31 +0400
commite5bda9f8270d390a694c256731d292cc1c5c5235 (patch)
treea76860091b7af8c039ad2313bf4a02b58c15df8a /source/blender/makesrna/intern/rna_constraint.c
parent310c0b9f100bbaf0c51888808fcb9fbf11ea27f9 (diff)
Fixed some UI message typos (spotted by Leon Cheung, thx).
Diffstat (limited to 'source/blender/makesrna/intern/rna_constraint.c')
-rw-r--r--source/blender/makesrna/intern/rna_constraint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c
index 325d6721cd4..6d67f0c00dd 100644
--- a/source/blender/makesrna/intern/rna_constraint.c
+++ b/source/blender/makesrna/intern/rna_constraint.c
@@ -1501,7 +1501,7 @@ static void rna_def_constraint_clamp_to(BlenderRNA *brna)
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 @@ static void rna_def_constraint_transform(BlenderRNA *brna)
{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);