X-Git-Url: http://aleph1.co.uk/gitweb/?a=blobdiff_plain;f=vendor%2Fdrupal%2Fconsole-en%2Ftranslations%2Fsite.install.yml;h=a831470393659177065c1b6e545bb26a91068120;hb=4e1bfbf98b844da83b18aca92ef00f11a4735806;hp=993259810b3a7413d601b665f70eb0e3b323e4a7;hpb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;p=yaffs-website diff --git a/vendor/drupal/console-en/translations/site.install.yml b/vendor/drupal/console-en/translations/site.install.yml index 993259810..a83147039 100644 --- a/vendor/drupal/console-en/translations/site.install.yml +++ b/vendor/drupal/console-en/translations/site.install.yml @@ -1,29 +1,48 @@ description: 'Install a Drupal project' arguments: - profile: 'Drupal Profile to be installed' - langcode: 'Drupal language' - db-type: 'Drupal Database type to be used in install' - db-file: 'Drupal Database file to be used in install' - site-name: 'Drupal site name' - site-mail: 'Drupal site mail' - account-name: 'Drupal administrator account name' - account-mail: 'Drupal administrator account mail' - account-pass: 'Drupal administrator account password' + profile: 'Drupal Profile to be installed' + langcode: 'Drupal language' + db-type: 'Drupal Database type to be used in install' + db-file: 'Drupal Database file to be used in install' + site-name: 'Drupal site name' + site-mail: 'Drupal site mail' + account-name: 'Drupal administrator account name' + account-mail: 'Drupal administrator account mail' + account-pass: 'Drupal administrator account password' + force: 'Force to reinstall the site' questions: - profile: 'Select Drupal profile to be installed' - langcode: 'Select language for your Drupal installation' - db-type: 'Select Drupal Database type to be used in install' - site-name: 'Provide your Drupal site name' - site-mail: 'Provide your Drupal site mail' - account-name: 'Provide your Drupal administrator account name' - account-mail: 'Provide your Drupal administrator account mail' - account-pass: 'Provide your Drupal administrator account password' + profile: 'Select Drupal profile to be installed' + langcode: 'Select language for your Drupal installation' + db-type: 'Select Drupal Database type to be used in install' + site-name: 'Provide your Drupal site name' + site-mail: 'Provide your Drupal site mail' + account-name: 'Provide your Drupal administrator account name' + account-mail: 'Provide your Drupal administrator account mail' + account-pass: 'Provide your Drupal administrator account password' +suggestions: + site-name: 'My awesome site' messages: - installing: 'Starting Drupal 8 install process' - installed: 'Your Drupal 8 installation was completed successfully' - using-current-database: 'Using "%s" database with name "%s" and user "%s"' - already-installed: 'Drupal is already installed, try dropping your database executing database:drop or install executing site:install --force --no-interaction' - sites-backup: 'The sites.php file has temporarily been renamed to backup.sites.php while Drupal installs.' - sites-restore: 'The backup of sites.php has been been restored to sites.php.' - invalid-multisite: 'Invalid multisite, please create multisite using command drupal multisite:new %s --site-uri=%s' + installing: 'Starting Drupal 8 install process' + installed: 'Your Drupal 8 installation was completed successfully' + using-current-database: 'Using "%s" database with name "%s" and user "%s"' + already-installed: 'Drupal is already installed, try dropping your database executing database:drop or install executing site:install --force --no-interaction' + sites-backup: 'The sites.php file has temporarily been renamed to backup.sites.php while Drupal installs.' + sites-restore: 'The backup of sites.php has been been restored to sites.php.' + invalid-multisite: 'Invalid multisite, please create multisite using command drupal multisite:new "%s" "%s"' +examples: + - description: 'Install a drupal project specifying installation type, language code, database configuration, site name, site email and admin credential settings' + execution: | + drupal site:install standard \ + --langcode="en" \ + --db-type="mysql" \ + --db-host="127.0.0.1" \ + --db-name="drupal8" \ + --db-user="u53rn4m3" \ + --db-pass="dbp455" \ + --db-port="3306" \ + --site-name="Drupal 8" \ + --site-mail="admin@example.com" \ + --account-name="admin" \ + --account-mail="admin@example.com" \ + --account-pass="p455w0rd"