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/physics/particle_boids.c')
-rw-r--r--source/blender/editors/physics/particle_boids.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/physics/particle_boids.c b/source/blender/editors/physics/particle_boids.c
index 50a1bffbf30..edc815c86c8 100644
--- a/source/blender/editors/physics/particle_boids.c
+++ b/source/blender/editors/physics/particle_boids.c
@@ -87,7 +87,7 @@ void BOID_OT_rule_add(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Add Boid Rule";
- ot->description = "Add a boid rule to the current boid state.";
+ ot->description = "Add a boid rule to the current boid state";
ot->idname= "BOID_OT_rule_add";
/* api callbacks */
@@ -178,7 +178,7 @@ static int rule_move_up_exec(bContext *C, wmOperator *op)
void BOID_OT_rule_move_up(wmOperatorType *ot)
{
ot->name= "Move Up Boid Rule";
- ot->description= "Move boid rule up in the list.";
+ ot->description= "Move boid rule up in the list";
ot->idname= "BOID_OT_rule_move_up";
ot->exec= rule_move_up_exec;
@@ -216,7 +216,7 @@ static int rule_move_down_exec(bContext *C, wmOperator *op)
void BOID_OT_rule_move_down(wmOperatorType *ot)
{
ot->name= "Move Down Boid Rule";
- ot->description= "Move boid rule down in the list.";
+ ot->description= "Move boid rule down in the list";
ot->idname= "BOID_OT_rule_move_down";
ot->exec= rule_move_down_exec;
@@ -257,7 +257,7 @@ void BOID_OT_state_add(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Add Boid State";
- ot->description = "Add a boid state to the particle system.";
+ ot->description = "Add a boid state to the particle system";
ot->idname= "BOID_OT_state_add";
/* api callbacks */
@@ -349,7 +349,7 @@ static int state_move_up_exec(bContext *C, wmOperator *op)
void BOID_OT_state_move_up(wmOperatorType *ot)
{
ot->name= "Move Up Boid State";
- ot->description= "Move boid state up in the list.";
+ ot->description= "Move boid state up in the list";
ot->idname= "BOID_OT_state_move_up";
ot->exec= state_move_up_exec;
@@ -385,7 +385,7 @@ static int state_move_down_exec(bContext *C, wmOperator *op)
void BOID_OT_state_move_down(wmOperatorType *ot)
{
ot->name= "Move Down Boid State";
- ot->description= "Move boid state down in the list.";
+ ot->description= "Move boid state down in the list";
ot->idname= "BOID_OT_state_move_down";
ot->exec= state_move_down_exec;