Commit e5382eec authored by Yas Naoi's avatar Yas Naoi Committed by Yas Naoi
Browse files

Issue #3323738 by yas, Chandreshgiri Gauswami, Xiaohua Guan, Masami,...

Issue #3323738 by yas, Chandreshgiri Gauswami, Xiaohua Guan, Masami, baldwinlouie, Ryo Yamashita, sekinet: Fix typos (5)
parent 4c82502f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -90,7 +90,7 @@ services:
        composer config minimum-stability dev
        composer config prefer-stable true

        # Now we can require drupal/cloud, specifing the branch name we created
        # Now we can require drupal/cloud, specifying the branch name we created
        # above that uses the "${TUGBOAT_REPO_ID}" environment variable.
        composer require "drupal/cloud:dev-${TUGBOAT_REPO_ID}"

+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ CHANGE HISTORY

2018/11/08 8.x-1.x-dev
- Cannot create a volume.
- Add permission "view published cloud service provider entities.
- Add permission 'view published cloud service provider entities'.

2018/11/07 8.x-1.x-dev
- Add trim() to remove white spaces in a textfield.
+2 −2
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ Introduction

Cloud is a set of modules to enable Cloud orchestration: A Drupal-based
Cloud dashboard for _AWS_, _Kubernetes_, _OpenStack_, _VMware_ and _Terraform
Cloud_ as a one stop portal to manage multiple cloud service providers.
Cloud_ as a one-stop portal to manage multiple cloud service providers.

Requirements
============
+15 −15
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ cloud.menu.design_links:
  weight: 110

# Structure | Cloud service provider
cluod.admin_structure:
cloud.admin_structure:
  title: 'Cloud service providers'
  description: 'Add and manage cloud service providers.'
  route_name: entity.cloud_config.collection
@@ -40,39 +40,39 @@ cluod.admin_structure:
cloud.cloud_config.add_form:
  title: 'Add cloud service provider'
  description: 'Add a cloud service provider.'
  parent: cluod.admin_structure
  parent: cloud.admin_structure
  route_name: entity.cloud_config.add_page
  weight: 10

# Structure | Cloud service providers | Cloud service provider types.
cluod.admin_structure.cloud_service_provider_types:
cloud.admin_structure.cloud_service_provider_types:
  title: 'Cloud service provider types'
  description: 'Add and manage cloud service provider types.'
  parent: cluod.admin_structure
  parent: cloud.admin_structure
  route_name: entity.cloud_config_type.collection
  weight: 20

# Structure | Cloud service providers | Cloud launch template types.
cluod.admin_structure.cloud_server_template_types:
cloud.admin_structure.cloud_server_template_types:
  title: 'Launch template types'
  description: 'Add a launch template type.'
  parent: cluod.admin_structure
  parent: cloud.admin_structure
  route_name: entity.cloud_server_template_type.collection
  weight: 30

# Structure | Cloud service providers | Cloud project types.
cluod.admin_structure.cloud_project_types:
cloud.admin_structure.cloud_project_types:
  title: 'Cloud project types'
  description: 'Add a cloud project type.'
  parent: cluod.admin_structure
  parent: cloud.admin_structure
  route_name: entity.cloud_project_type.collection
  weight: 40

# Structure | Cloud service providers | Cloud store types.
cluod.admin_structure.cloud_store_types:
cloud.admin_structure.cloud_store_types:
  title: 'Cloud store types'
  description: 'Add a cloud store type.'
  parent: cluod.admin_structure
  parent: cloud.admin_structure
  route_name: entity.cloud_store_type.collection
  weight: 50

@@ -81,15 +81,15 @@ cluod.admin_structure.cloud_store_types:
cloud.cloud_service_provider_types.add_form:
  title: 'Add cloud service provider type'
  description: 'Add a cloud service provider type.'
  parent: cluod.admin_structure.cloud_service_provider_types
  parent: cloud.admin_structure.cloud_service_provider_types
  route_name: entity.cloud_config_type.add_form

# Structure | Cloud service providers | Cloud launch template types |
# Add cloud launch template type.
cloud.cloud_server_tepmlate_types.add_form:
cloud.cloud_server_template_types.add_form:
  title: 'Add launch template type'
  description: 'Add a launch template type.'
  parent: cluod.admin_structure.cloud_server_template_types
  parent: cloud.admin_structure.cloud_server_template_types
  route_name: entity.cloud_server_template_type.add_form

# Structure | Cloud service providers | cloud project types |
@@ -97,7 +97,7 @@ cloud.cloud_server_tepmlate_types.add_form:
cloud.cloud_project_types.add_form:
  title: 'Add cloud project types'
  route_name: entity.cloud_project_type.add_form
  parent: cluod.admin_structure.cloud_project_types
  parent: cloud.admin_structure.cloud_project_types


# Structure | Cloud service providers | cloud store types |
@@ -105,7 +105,7 @@ cloud.cloud_project_types.add_form:
cloud.cloud_store_types.add_form:
  title: 'Add cloud store types'
  route_name: entity.cloud_store_type.add_form
  parent: cluod.admin_structure.cloud_store_types
  parent: cloud.admin_structure.cloud_store_types

# Configuration | Web services | Cloud.
# Admin settings for cloud.
+1 −1
Original line number Diff line number Diff line
@@ -525,7 +525,7 @@ function cloud_user_predelete($account): void {
 * Implements hook_user_cancel_methods_alter().
 *
 * Add additional description informing users that cloud related
 * entities are not deleted from the system.  They are will be reassigned.
 * entities are not deleted from the system.  They will be reassigned.
 */
function cloud_user_cancel_methods_alter(&$methods): void {
  $user_settings = \Drupal::config('user.settings');
Loading