The usual UI messages tweaks...

This commit is contained in:
Bastien Montagne
2013-02-04 19:12:17 +00:00
parent 13499c6240
commit 55ff9ecdd9
3 changed files with 7 additions and 7 deletions

View File

@@ -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);
}

View File

@@ -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;
}

View File

@@ -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}
};