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
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2012-06-04 23:43:12 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-06-04 23:43:12 +0400
commit6f0ad4ff0f53e4e2499d3e92c5cbad7582d36b9a (patch)
tree23503bc733c9b8b4e8f6ecf749d4419bfa2fa764 /source/blender/editors/mask
parent4e338e894f9fb0fa18e5594c2648b05c8f92d4c5 (diff)
A few UI messages fixes.
Diffstat (limited to 'source/blender/editors/mask')
-rw-r--r--source/blender/editors/mask/mask_ops.c2
-rw-r--r--source/blender/editors/mask/mask_relationships.c4
-rw-r--r--source/blender/editors/mask/mask_select.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/editors/mask/mask_ops.c b/source/blender/editors/mask/mask_ops.c
index a1a232c7c61..a0c79f4c2c9 100644
--- a/source/blender/editors/mask/mask_ops.c
+++ b/source/blender/editors/mask/mask_ops.c
@@ -759,7 +759,7 @@ void MASK_OT_slide_point(wmOperatorType *ot)
/* flags */
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
- RNA_def_boolean(ot->srna, "slide_feather", 0, "Slide Feather", "First try to slide slide feather instead of vertex");
+ RNA_def_boolean(ot->srna, "slide_feather", 0, "Slide Feather", "First try to slide feather instead of vertex");
}
/******************** toggle cyclic *********************/
diff --git a/source/blender/editors/mask/mask_relationships.c b/source/blender/editors/mask/mask_relationships.c
index 226b0fa14be..0e893ee2f9f 100644
--- a/source/blender/editors/mask/mask_relationships.c
+++ b/source/blender/editors/mask/mask_relationships.c
@@ -82,7 +82,7 @@ void MASK_OT_parent_clear(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Clear Parent";
- ot->description = "Clear the masks parenting";
+ ot->description = "Clear the mask's parenting";
ot->idname = "MASK_OT_parent_clear";
/* api callbacks */
@@ -160,7 +160,7 @@ void MASK_OT_parent_set(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Make Parent";
- ot->description = "Set the masks parenting";
+ ot->description = "Set the mask's parenting";
ot->idname = "MASK_OT_parent_set";
/* api callbacks */
diff --git a/source/blender/editors/mask/mask_select.c b/source/blender/editors/mask/mask_select.c
index 143bfec0ccc..55e09529320 100644
--- a/source/blender/editors/mask/mask_select.c
+++ b/source/blender/editors/mask/mask_select.c
@@ -208,7 +208,7 @@ static int select_all_exec(bContext *C, wmOperator *op)
void MASK_OT_select_all(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Select or Deselect All";
+ ot->name = "(De)select All";
ot->description = "Change selection of all curve points";
ot->idname = "MASK_OT_select_all";