Minor UI messages fixes.

This commit is contained in:
Bastien Montagne 2014-02-22 13:49:40 +01:00
parent c1cdce364b
commit ea5090f8c0
3 changed files with 3 additions and 3 deletions

@ -1280,7 +1280,7 @@ class VIEW3D_PT_sculpt_options(Panel, View3DPaintPanel):
class VIEW3D_PT_sculpt_symmetry(Panel, View3DPaintPanel):
bl_category = "Tools"
bl_label = "Symmetry \ Lock"
bl_label = "Symmetry / Lock"
bl_options = {'DEFAULT_CLOSED'}
@classmethod

@ -2400,7 +2400,7 @@ bool uiPupMenuInvoke(bContext *C, const char *idname, ReportList *reports)
MenuType *mt = WM_menutype_find(idname, true);
if (mt == NULL) {
BKE_reportf(reports, RPT_ERROR, "menu \"%s\" not found", idname);
BKE_reportf(reports, RPT_ERROR, "Menu \"%s\" not found", idname);
return false;
}

@ -294,7 +294,7 @@ static void fly_update_header(bContext *C, FlyInfo *fly)
"Ctrl: free look, "
"X: Upright x axis (%s), "
"Z: Upright z axis (%s), "
"(+/- | Wheel): speed, "),
"(+/- | Wheel): speed"),
WM_bool_as_string(fly->xlock != FLY_AXISLOCK_STATE_OFF),
WM_bool_as_string(fly->zlock != FLY_AXISLOCK_STATE_OFF));