diff --git a/group.group.permissions.yml b/group.group.permissions.yml
index 64ce441..1929847 100644
--- a/group.group.permissions.yml
+++ b/group.group.permissions.yml
@@ -11,6 +11,6 @@ delete group:
   title: 'Delete group'
   description: 'Delete the group'
 access content overview:
-  title: 'Access related entities overview'
+  title: 'Access all entities overview'
   description: 'View all of the entity relations for the group'
   warning: 'Warning: This can be rather technical and should only be granted to power users.'
diff --git a/group.links.action.yml b/group.links.action.yml
index 04f0ca8..3924294 100644
--- a/group.links.action.yml
+++ b/group.links.action.yml
@@ -27,12 +27,12 @@ group.add_member:
 
 group_content.add_page:
   route_name: 'entity.group_content.add_page'
-  title: 'Relate existing entity to group'
+  title: 'Add existing entity'
   appears_on:
     - 'entity.group_content.collection'
 
 group_content.create_page:
   route_name: 'entity.group_content.create_page'
-  title: 'Create new entity in group'
+  title: 'Add new entity'
   appears_on:
     - 'entity.group_content.collection'
diff --git a/group.links.task.yml b/group.links.task.yml
index 7867843..9633797 100644
--- a/group.links.task.yml
+++ b/group.links.task.yml
@@ -30,7 +30,7 @@ group.delete_form:
   weight: 10
 
 group.content:
-  title: 'Related entities'
+  title: 'All entities'
   base_route: 'entity.group.canonical'
   route_name: 'entity.group_content.collection'
   weight: 15
diff --git a/modules/gnode/gnode.links.action.yml b/modules/gnode/gnode.links.action.yml
index 95dd7b5..0ca3682 100644
--- a/modules/gnode/gnode.links.action.yml
+++ b/modules/gnode/gnode.links.action.yml
@@ -1,11 +1,11 @@
 group_content.group_node_relate_page:
   route_name: 'entity.group_content.group_node_relate_page'
-  title: 'Relate node'
+  title: 'Add existing content'
   appears_on:
     - 'view.group_nodes.page_1'
 
 group_content.group_node_add_page:
   route_name: 'entity.group_content.group_node_add_page'
-  title: 'Create node'
+  title: 'Add new content'
   appears_on:
     - 'view.group_nodes.page_1'
diff --git a/modules/gnode/src/Controller/GroupNodeController.php b/modules/gnode/src/Controller/GroupNodeController.php
index 8812277..490f526 100644
--- a/modules/gnode/src/Controller/GroupNodeController.php
+++ b/modules/gnode/src/Controller/GroupNodeController.php
@@ -75,8 +75,8 @@ class GroupNodeController extends GroupContentController {
 
         $t_args = ['%node_type' => $bundle_label];
         $description = $create_mode
-          ? $this->t('Create a node of type %node_type in the group.', $t_args)
-          : $this->t('Add an existing node of type %node_type to the group.', $t_args);
+          ? $this->t('Add new content of type %node_type to the group.', $t_args)
+          : $this->t('Add existing content of type %node_type to the group.', $t_args);
 
         $build['#bundles'][$bundle_name]['label'] = $bundle_label;
         $build['#bundles'][$bundle_name]['description'] = $description;
diff --git a/modules/gnode/src/Plugin/GroupContentEnabler/GroupNode.php b/modules/gnode/src/Plugin/GroupContentEnabler/GroupNode.php
index 033f953..40b8bcc 100644
--- a/modules/gnode/src/Plugin/GroupContentEnabler/GroupNode.php
+++ b/modules/gnode/src/Plugin/GroupContentEnabler/GroupNode.php
@@ -46,7 +46,7 @@ class GroupNode extends GroupContentEnablerBase {
     if ($group->hasPermission("create $plugin_id entity", $account)) {
       $route_params = ['group' => $group->id(), 'plugin_id' => $plugin_id];
       $operations["gnode-create-$type"] = [
-        'title' => $this->t('Create @type', ['@type' => $this->getNodeType()->label()]),
+        'title' => $this->t('Add @type', ['@type' => $this->getNodeType()->label()]),
         'url' => new Url('entity.group_content.create_form', $route_params),
         'weight' => 30,
       ];
diff --git a/modules/gnode/src/Routing/GroupNodeRouteProvider.php b/modules/gnode/src/Routing/GroupNodeRouteProvider.php
index 4d8c76a..431b2d2 100644
--- a/modules/gnode/src/Routing/GroupNodeRouteProvider.php
+++ b/modules/gnode/src/Routing/GroupNodeRouteProvider.php
@@ -33,7 +33,7 @@ class GroupNodeRouteProvider {
     $routes['entity.group_content.group_node_relate_page'] = new Route('group/{group}/node/add');
     $routes['entity.group_content.group_node_relate_page']
       ->setDefaults([
-        '_title' => 'Relate node',
+        '_title' => 'Add existing content',
         '_controller' => '\Drupal\gnode\Controller\GroupNodeController::addPage',
       ])
       ->setRequirement('_group_permission', implode('+', $permissions_add))
@@ -43,7 +43,7 @@ class GroupNodeRouteProvider {
     $routes['entity.group_content.group_node_add_page'] = new Route('group/{group}/node/create');
     $routes['entity.group_content.group_node_add_page']
       ->setDefaults([
-        '_title' => 'Create node',
+        '_title' => 'Add new content',
         '_controller' => '\Drupal\gnode\Controller\GroupNodeController::addPage',
         'create_mode' => TRUE,
       ])
diff --git a/src/Entity/Controller/GroupContentController.php b/src/Entity/Controller/GroupContentController.php
index ec2192c..fbe48f6 100644
--- a/src/Entity/Controller/GroupContentController.php
+++ b/src/Entity/Controller/GroupContentController.php
@@ -252,7 +252,7 @@ class GroupContentController extends ControllerBase {
     /** @var \Drupal\group\Plugin\GroupContentEnablerInterface $plugin */
     $plugin = $group->getGroupType()->getContentPlugin($plugin_id);
     $group_content_type = GroupContentType::load($plugin->getContentTypeConfigId());
-    return $this->t('Create @name', ['@name' => $group_content_type->label()]);
+    return $this->t('Add @name', ['@name' => $group_content_type->label()]);
   }
 
   /**
@@ -286,7 +286,7 @@ class GroupContentController extends ControllerBase {
    * @todo Revisit when 8.2.0 is released, https://www.drupal.org/node/2767853.
    */
   public function collectionTitle(GroupInterface $group) {
-    return $this->t('Related entities for @group', ['@group' => $group->label()]);
+    return $this->t('All entities for @group', ['@group' => $group->label()]);
   }
 
   /**
@@ -376,7 +376,7 @@ class GroupContentController extends ControllerBase {
     /** @var \Drupal\group\Plugin\GroupContentEnablerInterface $plugin */
     $plugin = $group->getGroupType()->getContentPlugin($plugin_id);
     $group_content_type = GroupContentType::load($plugin->getContentTypeConfigId());
-    return $this->t('Create @name', ['@name' => $group_content_type->label()]);
+    return $this->t('Add @name', ['@name' => $group_content_type->label()]);
   }
 
 }
diff --git a/src/Entity/Controller/GroupContentListBuilder.php b/src/Entity/Controller/GroupContentListBuilder.php
index 4a788df..5bd7362 100644
--- a/src/Entity/Controller/GroupContentListBuilder.php
+++ b/src/Entity/Controller/GroupContentListBuilder.php
@@ -151,7 +151,7 @@ class GroupContentListBuilder extends EntityListBuilder {
     // Add an operation to view the actual entity.
     if ($entity->getEntity()->access('view') && $entity->getEntity()->hasLinkTemplate('canonical')) {
       $operations['view'] = [
-        'title' => $this->t('View related entity'),
+        'title' => $this->t('View entity'),
         'weight' => 101,
         'url' => $entity->getEntity()->toUrl('canonical'),
       ];
diff --git a/src/Entity/Form/GroupContentForm.php b/src/Entity/Form/GroupContentForm.php
index dc5fd0f..e40cedc 100644
--- a/src/Entity/Form/GroupContentForm.php
+++ b/src/Entity/Form/GroupContentForm.php
@@ -104,7 +104,7 @@ class GroupContentForm extends ContentEntityForm {
             '@entity_type' => $entity_type->getLowercaseLabel(),
             '@group' => $this->getEntity()->getGroup()->label(),
           ];
-          $actions['submit']['#value'] = $this->t('Create @entity_type in @group', $replace);
+          $actions['submit']['#value'] = $this->t('Add new @entity_type to @group', $replace);
         }
 
         // Make sure we complete the wizard before saving the group content.
diff --git a/src/Entity/Routing/GroupContentRouteProvider.php b/src/Entity/Routing/GroupContentRouteProvider.php
index 71e3c94..523a59a 100644
--- a/src/Entity/Routing/GroupContentRouteProvider.php
+++ b/src/Entity/Routing/GroupContentRouteProvider.php
@@ -73,7 +73,7 @@ class GroupContentRouteProvider extends DefaultHtmlRouteProvider {
       $route = new Route($entity_type->getLinkTemplate('add-page'));
       $route
         ->setDefault('_controller', '\Drupal\group\Entity\Controller\GroupContentController::addPage')
-        ->setDefault('_title', 'Relate content to group')
+        ->setDefault('_title', 'Add existing content')
         ->setRequirement('_group_content_create_any_access', 'TRUE')
         ->setOption('_group_operation_route', TRUE);
 
@@ -114,7 +114,7 @@ class GroupContentRouteProvider extends DefaultHtmlRouteProvider {
       $route = new Route($entity_type->getLinkTemplate('create-page'));
       $route
         ->setDefault('_controller', '\Drupal\group\Entity\Controller\GroupContentController::addPage')
-        ->setDefault('_title', 'Create content in group')
+        ->setDefault('_title', 'Add new content')
         ->setDefault('create_mode', TRUE)
         ->setRequirement('_group_content_create_any_entity_access', 'TRUE')
         ->setOption('_group_operation_route', TRUE);
diff --git a/src/Plugin/GroupContentEnablerBase.php b/src/Plugin/GroupContentEnablerBase.php
index b3c16a0..0878a6e 100644
--- a/src/Plugin/GroupContentEnablerBase.php
+++ b/src/Plugin/GroupContentEnablerBase.php
@@ -219,7 +219,7 @@ abstract class GroupContentEnablerBase extends PluginBase implements GroupConten
 
     $permissions["create $plugin_id content"] = [
       'title' => "$prefix Add entity relation",
-      'description' => 'Allows you to relate an existing %entity_type entity to the group.',
+      'description' => 'Allows you to add an existing %entity_type entity to the group.',
     ] + $defaults;
 
     $permissions["update own $plugin_id content"] = [
@@ -269,7 +269,7 @@ abstract class GroupContentEnablerBase extends PluginBase implements GroupConten
 
     $permissions["create $plugin_id entity"] = [
       'title' => "$prefix Add %entity_type entities",
-      'description' => 'Allows you to create a new %entity_type entity and relate it to the group.',
+      'description' => 'Allows you to add a new %entity_type entity and add it to the group.',
     ] + $defaults;
 
     $permissions["update own $plugin_id entity"] = [
