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
path: root/source
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
parent13499c6240e9c4d69dc26a45a3b6bcbf11e8b414 (diff)
The usual UI messages tweaks...
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_actuator.c4
-rw-r--r--source/blender/makesrna/intern/rna_fcurve.c2
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c8
3 files changed, 7 insertions, 7 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);
}
diff --git a/source/blender/makesrna/intern/rna_fcurve.c b/source/blender/makesrna/intern/rna_fcurve.c
index 1b3c6ef70bb..82e2cb3b0ea 100644
--- a/source/blender/makesrna/intern/rna_fcurve.c
+++ b/source/blender/makesrna/intern/rna_fcurve.c
@@ -684,7 +684,7 @@ void rna_FModifierEnvelope_points_remove(FModifier *fmod, ReportList *reports, P
/* 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;
}
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index a3eaeb64cda..fdae2979432 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -4228,10 +4228,10 @@ static void def_cmp_trackpos(StructRNA *srna)
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}
};