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:
Diffstat (limited to 'source/blender/editors/object/object_modifier.c')
-rw-r--r--source/blender/editors/object/object_modifier.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/source/blender/editors/object/object_modifier.c b/source/blender/editors/object/object_modifier.c
index 30ccca6fc25..951d8db905b 100644
--- a/source/blender/editors/object/object_modifier.c
+++ b/source/blender/editors/object/object_modifier.c
@@ -539,7 +539,7 @@ void OBJECT_OT_modifier_add(wmOperatorType *ot)
/* identifiers */
ot->name= "Add Modifier";
- ot->description = "Add a modifier to the active object.";
+ ot->description = "Add a modifier to the active object";
ot->idname= "OBJECT_OT_modifier_add";
/* api callbacks */
@@ -576,7 +576,7 @@ static int modifier_remove_exec(bContext *C, wmOperator *op)
void OBJECT_OT_modifier_remove(wmOperatorType *ot)
{
ot->name= "Remove Modifier";
- ot->description= "Remove a modifier from the active object.";
+ ot->description= "Remove a modifier from the active object";
ot->idname= "OBJECT_OT_modifier_remove";
ot->exec= modifier_remove_exec;
@@ -606,7 +606,7 @@ static int modifier_move_up_exec(bContext *C, wmOperator *op)
void OBJECT_OT_modifier_move_up(wmOperatorType *ot)
{
ot->name= "Move Up Modifier";
- ot->description= "Move modifier up in the stack.";
+ ot->description= "Move modifier up in the stack";
ot->idname= "OBJECT_OT_modifier_move_up";
ot->exec= modifier_move_up_exec;
@@ -636,7 +636,7 @@ static int modifier_move_down_exec(bContext *C, wmOperator *op)
void OBJECT_OT_modifier_move_down(wmOperatorType *ot)
{
ot->name= "Move Down Modifier";
- ot->description= "Move modifier down in the stack.";
+ ot->description= "Move modifier down in the stack";
ot->idname= "OBJECT_OT_modifier_move_down";
ot->exec= modifier_move_down_exec;
@@ -673,7 +673,7 @@ static EnumPropertyItem modifier_apply_as_items[] = {
void OBJECT_OT_modifier_apply(wmOperatorType *ot)
{
ot->name= "Apply Modifier";
- ot->description= "Apply modifier and remove from the stack.";
+ ot->description= "Apply modifier and remove from the stack";
ot->idname= "OBJECT_OT_modifier_apply";
//ot->invoke= WM_menu_invoke;
@@ -707,7 +707,7 @@ static int modifier_convert_exec(bContext *C, wmOperator *op)
void OBJECT_OT_modifier_convert(wmOperatorType *ot)
{
ot->name= "Convert Modifier";
- ot->description= "Convert particles to a mesh object.";
+ ot->description= "Convert particles to a mesh object";
ot->idname= "OBJECT_OT_modifier_convert";
ot->exec= modifier_convert_exec;
@@ -737,7 +737,7 @@ static int modifier_copy_exec(bContext *C, wmOperator *op)
void OBJECT_OT_modifier_copy(wmOperatorType *ot)
{
ot->name= "Copy Modifier";
- ot->description= "Duplicate modifier at the same position in the stack.";
+ ot->description= "Duplicate modifier at the same position in the stack";
ot->idname= "OBJECT_OT_modifier_copy";
ot->exec= modifier_copy_exec;
@@ -801,7 +801,7 @@ static int multires_subdivide_exec(bContext *C, wmOperator *op)
void OBJECT_OT_multires_subdivide(wmOperatorType *ot)
{
ot->name= "Multires Subdivide";
- ot->description= "Add a new level of subdivision.";
+ ot->description= "Add a new level of subdivision";
ot->idname= "OBJECT_OT_multires_subdivide";
ot->poll= multires_poll;
@@ -846,7 +846,7 @@ static int multires_reshape_exec(bContext *C, wmOperator *op)
void OBJECT_OT_multires_reshape(wmOperatorType *ot)
{
ot->name= "Multires Reshape";
- ot->description= "Copy vertex coordinates from other object.";
+ ot->description= "Copy vertex coordinates from other object";
ot->idname= "OBJECT_OT_multires_reshape";
ot->poll= multires_poll;
@@ -904,7 +904,7 @@ static int multires_save_external_invoke(bContext *C, wmOperator *op, wmEvent *e
void OBJECT_OT_multires_save_external(wmOperatorType *ot)
{
ot->name= "Multires Save External";
- ot->description= "Save displacements to an external file.";
+ ot->description= "Save displacements to an external file";
ot->idname= "OBJECT_OT_multires_save_external";
ot->poll= multires_poll;
@@ -937,7 +937,7 @@ static int multires_pack_external_exec(bContext *C, wmOperator *op)
void OBJECT_OT_multires_pack_external(wmOperatorType *ot)
{
ot->name= "Multires Pack External";
- ot->description= "Pack displacements from an external file.";
+ ot->description= "Pack displacements from an external file";
ot->idname= "OBJECT_OT_multires_pack_external";
ot->poll= multires_poll;
@@ -1011,7 +1011,7 @@ void OBJECT_OT_meshdeform_bind(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Mesh Deform Bind";
- ot->description = "Bind mesh to cage in mesh deform modifier.";
+ ot->description = "Bind mesh to cage in mesh deform modifier";
ot->idname= "OBJECT_OT_meshdeform_bind";
/* api callbacks */
@@ -1048,7 +1048,7 @@ static int explode_refresh_exec(bContext *C, wmOperator *op)
void OBJECT_OT_explode_refresh(wmOperatorType *ot)
{
ot->name= "Explode Refresh";
- ot->description= "Refresh data in the Explode modifier.";
+ ot->description= "Refresh data in the Explode modifier";
ot->idname= "OBJECT_OT_explode_refresh";
ot->exec= explode_refresh_exec;