Usual UI messages style edits...

This commit is contained in:
Bastien Montagne 2013-06-17 10:01:35 +00:00
parent 2a1d58c14d
commit 2091eca962
4 changed files with 6 additions and 5 deletions

@ -58,6 +58,7 @@ class SpellChecker():
"arcsine", "arccosine", "arctangent", "arcsine", "arccosine", "arctangent",
"autoclip", "autoclip",
"autocomplete", "autocomplete",
"autoexec",
"autoname", "autoname",
"autosave", "autosave",
"autoscale", "autoscale",
@ -437,6 +438,7 @@ class SpellChecker():
"oren", "oren",
"prewitt", "prewitt",
"runge", "runge",
"sobol",
"verlet", "verlet",
"worley", "worley",

@ -2905,9 +2905,9 @@ void OBJECT_OT_vertex_group_remove_from(wmOperatorType *ot)
ot->flag = /*OPTYPE_REGISTER|*/ OPTYPE_UNDO; ot->flag = /*OPTYPE_REGISTER|*/ OPTYPE_UNDO;
/* properties */ /* properties */
prop = RNA_def_boolean(ot->srna, "use_all_groups", 0, "All Groups", "Remove from all Groups"); prop = RNA_def_boolean(ot->srna, "use_all_groups", 0, "All Groups", "Remove from all groups");
RNA_def_property_flag(prop, PROP_SKIP_SAVE); RNA_def_property_flag(prop, PROP_SKIP_SAVE);
prop = RNA_def_boolean(ot->srna, "use_all_verts", 0, "All verts", "Clear Active Group"); prop = RNA_def_boolean(ot->srna, "use_all_verts", 0, "All Verts", "Clear the active group");
RNA_def_property_flag(prop, PROP_SKIP_SAVE); RNA_def_property_flag(prop, PROP_SKIP_SAVE);
} }

@ -425,8 +425,7 @@ static int nlaedit_add_actionclip_exec(bContext *C, wmOperator *op)
if (items == 0) { if (items == 0) {
BKE_report(op->reports, RPT_ERROR, BKE_report(op->reports, RPT_ERROR,
"No active track(s) to add strip to. " "No active track(s) to add strip to, select an existing track or add one before trying again");
"Select an existing track or add one before trying again");
return OPERATOR_CANCELLED; return OPERATOR_CANCELLED;
} }

@ -1183,7 +1183,7 @@ static void view3d_panel_vgroup(const bContext *C, Panel *pa)
uiDefIconBut(block, BUT, B_VGRP_PNL_DELETE_SINGLE + i, ICON_X, uiDefIconBut(block, BUT, B_VGRP_PNL_DELETE_SINGLE + i, ICON_X,
xco, yco, (x = UI_UNIT_X), UI_UNIT_Y, xco, yco, (x = UI_UNIT_X), UI_UNIT_Y,
NULL, 0, 0, 0, 0, TIP_("Delete this weight from the vertex.")); NULL, 0, 0, 0, 0, TIP_("Delete this weight from the vertex"));
xco += x; xco += x;
yco -= UI_UNIT_Y; yco -= UI_UNIT_Y;