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/gpencil/gpencil_edit.c')
-rw-r--r--source/blender/editors/gpencil/gpencil_edit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/gpencil/gpencil_edit.c b/source/blender/editors/gpencil/gpencil_edit.c
index 8926f63ceaa..7bcfc81bf26 100644
--- a/source/blender/editors/gpencil/gpencil_edit.c
+++ b/source/blender/editors/gpencil/gpencil_edit.c
@@ -15,7 +15,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation,
- * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* The Original Code is Copyright (C) 2008, Blender Foundation, Joshua Leung
* This is a new part of Blender
@@ -209,7 +209,7 @@ void GPENCIL_OT_data_add (wmOperatorType *ot)
/* identifiers */
ot->name= "Grease Pencil Add New";
ot->idname= "GPENCIL_OT_data_add";
- ot->description= "Add new Grease Pencil datablock.";
+ ot->description= "Add new Grease Pencil datablock";
/* callbacks */
ot->exec= gp_data_add_exec;
@@ -256,7 +256,7 @@ void GPENCIL_OT_data_unlink (wmOperatorType *ot)
/* identifiers */
ot->name= "Grease Pencil Unlink";
ot->idname= "GPENCIL_OT_data_unlink";
- ot->description= "Unlink active Grease Pencil datablock.";
+ ot->description= "Unlink active Grease Pencil datablock";
/* callbacks */
ot->exec= gp_data_unlink_exec;
@@ -292,7 +292,7 @@ void GPENCIL_OT_layer_add (wmOperatorType *ot)
/* identifiers */
ot->name= "Add New Layer";
ot->idname= "GPENCIL_OT_layer_add";
- ot->description= "Add new Grease Pencil layer for the active Grease Pencil datablock.";
+ ot->description= "Add new Grease Pencil layer for the active Grease Pencil datablock";
/* callbacks */
ot->exec= gp_layer_add_exec;
@@ -342,7 +342,7 @@ void GPENCIL_OT_active_frame_delete (wmOperatorType *ot)
/* identifiers */
ot->name= "Delete Active Frame";
ot->idname= "GPENCIL_OT_active_frame_delete";
- ot->description= "Delete the active frame for the active Grease Pencil datablock.";
+ ot->description= "Delete the active frame for the active Grease Pencil datablock";
/* callbacks */
ot->exec= gp_actframe_delete_exec;
@@ -583,7 +583,7 @@ void GPENCIL_OT_convert (wmOperatorType *ot)
/* identifiers */
ot->name= "Convert Grease Pencil";
ot->idname= "GPENCIL_OT_convert";
- ot->description= "Convert the active Grease Pencil layer to a new Object.";
+ ot->description= "Convert the active Grease Pencil layer to a new Object";
/* callbacks */
ot->invoke= WM_menu_invoke;