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>2013-02-04 23:12:17 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-02-04 23:12:17 +0400
commit55ff9ecdd95ab16b9fc636162e14de8949041e27 (patch)
treed94dc1ad506dd1bbca44908da065bac8d653a060 /source/blender/makesrna/intern/rna_actuator.c
parent13499c6240e9c4d69dc26a45a3b6bcbf11e8b414 (diff)
The usual UI messages tweaks...
Diffstat (limited to 'source/blender/makesrna/intern/rna_actuator.c')
-rw-r--r--source/blender/makesrna/intern/rna_actuator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_actuator.c b/source/blender/makesrna/intern/rna_actuator.c
index 18035acdb63..fe4a23cb393 100644
--- a/source/blender/makesrna/intern/rna_actuator.c
+++ b/source/blender/makesrna/intern/rna_actuator.c
@@ -876,7 +876,7 @@ static void rna_def_object_actuator(BlenderRNA *brna)
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 @@ static void rna_def_object_actuator(BlenderRNA *brna)
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);
}