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_group.c')
-rw-r--r--source/blender/editors/object/object_group.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/object/object_group.c b/source/blender/editors/object/object_group.c
index a12c6108ba9..73ca6e02132 100644
--- a/source/blender/editors/object/object_group.c
+++ b/source/blender/editors/object/object_group.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) Blender Foundation
* All rights reserved.
@@ -92,7 +92,7 @@ void GROUP_OT_objects_add_active(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Add Selected To Active Group";
- ot->description = "Add the object to an object group that contains the active object.";
+ ot->description = "Add the object to an object group that contains the active object";
ot->idname= "GROUP_OT_objects_add_active";
/* api callbacks */
@@ -138,7 +138,7 @@ void GROUP_OT_objects_remove_active(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Remove Selected From Active Group";
- ot->description = "Remove the object from an object group that contains the active object.";
+ ot->description = "Remove the object from an object group that contains the active object";
ot->idname= "GROUP_OT_objects_remove_active";
/* api callbacks */
@@ -171,7 +171,7 @@ void GROUP_OT_objects_remove(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Remove From Groups";
- ot->description = "Remove selected objects from all groups.";
+ ot->description = "Remove selected objects from all groups";
ot->idname= "GROUP_OT_objects_remove";
/* api callbacks */
@@ -207,7 +207,7 @@ void GROUP_OT_create(wmOperatorType *ot)
{
/* identifiers */
ot->name= "Create New Group";
- ot->description = "Create an object group from selected objects.";
+ ot->description = "Create an object group from selected objects";
ot->idname= "GROUP_OT_create";
/* api callbacks */
@@ -291,7 +291,7 @@ void OBJECT_OT_group_add(wmOperatorType *ot)
/* identifiers */
ot->name= "Add to Group";
ot->idname= "OBJECT_OT_group_add";
- ot->description = "Add an object to an existing group, or create new.";
+ ot->description = "Add an object to an existing group, or create new";
/* api callbacks */
ot->exec= group_add_exec;