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>2016-03-31 00:39:54 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-03-31 00:39:54 +0300
commit01ce8d80d0311c71ae706522f564f3febbc20ac9 (patch)
treed20f4c8f3c186ce50ff1f6bd586d9d6bb4dbfd17 /source
parentf7fc55867a3e7d68a16bfa503a9651310aadd380 (diff)
Usual ui messages fixes/tweaks.
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/armature/armature_edit.c2
-rw-r--r--source/blender/editors/space_graph/graph_buttons.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/armature/armature_edit.c b/source/blender/editors/armature/armature_edit.c
index 7802a990071..b1c23fb4cac 100644
--- a/source/blender/editors/armature/armature_edit.c
+++ b/source/blender/editors/armature/armature_edit.c
@@ -497,7 +497,7 @@ void ARMATURE_OT_roll_clear(wmOperatorType *ot)
/* identifiers */
ot->name = "Clear Roll";
ot->idname = "ARMATURE_OT_roll_clear";
- ot->description = "Clear roll for select bones";
+ ot->description = "Clear roll for selected bones";
/* api callbacks */
ot->exec = armature_roll_clear_exec;
diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c
index 6efb0b1bcef..b244d85910c 100644
--- a/source/blender/editors/space_graph/graph_buttons.c
+++ b/source/blender/editors/space_graph/graph_buttons.c
@@ -857,7 +857,7 @@ static void graph_panel_drivers(const bContext *C, Panel *pa)
if (dvar->flag & DVAR_FLAG_INVALID_NAME) {
but = uiDefIconBut(block, UI_BTYPE_BUT, B_IPO_DEPCHANGE, ICON_ERROR, 290, 0, UI_UNIT_X, UI_UNIT_Y,
- NULL, 0.0, 0.0, 0.0, 0.0, IFACE_("Invalid variable name. Click here for details"));
+ NULL, 0.0, 0.0, 0.0, 0.0, IFACE_("Invalid variable name, click here for details"));
UI_but_func_set(but, driver_dvar_invalid_name_query_cb, dvar, NULL); // XXX: reports?
}