Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-en / translations / application.yml
1 options:
2     env: 'The Environment name'
3     debug: 'Switches on debug mode'
4     learning: 'Generate a verbose code output'
5     generate-chain: 'Shows command options and arguments as yaml output to be used in chain command'
6     generate-inline: 'Shows command options and arguments as inline command'
7     generate-doc: 'Shows command options and arguments as markdown'
8     root: 'Define the Drupal root to be used in command execution'
9     uri: 'URI of the Drupal site to use (for multi-site environments or when running on an alternate port)'
10     yes: 'Skip confirmation and proceed'
11     target: 'Site name you want to interact with (for local or remote sites)'
12     help: 'Display this help message'
13     quiet: 'Suppress all output from the command'
14     verbose: 'Increase the verbosity of messages: 1 for normal output, 2 for more verbose output, and 3 for debug'
15     version: 'Display this application version'
16     ansi: 'Force ANSI output'
17     no-ansi: 'Disable ANSI output'
18     no-interaction: 'Do not ask any interactive question'
19     check-fix: 'Attempt to fix any missing configuration.'
20 arguments:
21     command: 'The command to execute'
22 messages:
23     completed: 'The command was executed successfully!'
24     chain:
25         generated: 'Yaml representation of this command, usage copy in i.e. `~/.console/chain/sample.yml` to execute using `chain` command, make sure your yaml file start with a `commands` root key:'
26     inline:
27         generated: 'Inline representation of this command:'
28     generated: 'You can now start using the generated code!'
29     files:
30         generated: 'Generated or updated files'
31         copied: 'Copied files'
32     lines-code: 'Generated lines: "%s"'
33     path: 'Generation path'
34     learning:
35         route: "In order to to create pages it is necessary to define routes for them.\nA route maps a URL path to a controller. It defines what function\nor method will be called when a URL is accessed.\nIf the user accesses http://drupal8.dev/{{ route.path }}, the routing\nsystem will look for a route with that path. In this case it will find a\nmatch, and execute the _controller callback. In this case the callback is\ndefined as a classname\n(\"\\Drupal\\{{ module }}\\Controller\\{{ class_name }}\")\nand a method (\"{{ route.method }}\")."
36     autocomplete: |
37                 Bash: Bash support depends on the http://bash-completion.alioth.debian.org/
38                 project which can be installed with your package manager of choice. Then add
39                 this line to your shell configuration file.
40                 <info>source "$HOME/.console/console.rc" 2>/dev/null</info>
41
42                 Bash or Zsh: Add this line to your shell configuration file:
43                 <info>source "$HOME/.console/console.rc" 2>/dev/null</info>
44
45                 Fish: Create a symbolic link
46                 <info>ln -s ~/.console/drupal.fish ~/.config/fish/completions/drupal.fish</info>
47     version: '<info>"%s"</info> version <comment>"%s"</comment>'
48     disable:
49       command:
50         error: 'Command: "%s" is deprecated.'
51         extra: 'You must execute: "%s" instead'
52 errors:
53     invalid-command: 'Command "%s", is not a valid command name.'
54     renamed-command: 'Command "%s" was renamed, use "%s" instead.'
55     drush-command: 'Command "%s" is a Drush command (deprecated). Drupal Console equivalent "%s" was executed instead.'
56 site:
57     messages:
58         path: 'Site path'
59     errors:
60         settings: 'In order to list all of the available commands you should install drupal first.'
61         directory: 'In order to list all of the available commands, you should run this against a drupal root directory.'
62         not-installed: 'Drupal Console is not installed at: "%s"'
63         execute-composer: 'You must execute the following composer commands:'
64         missing-config-file: 'Missing configuration file, possible paths:'
65         missing-config-file-command: 'Execute "drupal init" command to generate one'
66 user:
67     messages:
68         path: 'User home path'
69
70 remote:
71   errors:
72     passphrase-missing: 'Passphrase file is missing'
73     passphrase-empty: 'Passphrase file is empty'
74     private-missing: 'Private file is missing'
75     private-empty: 'Private file is empty'
76     private-invalid: 'Private file is invalid'
77     invalid-root: 'Invalid root directory'
78     console-not-found: 'Drupal Console not found on this site'
79
80 gitbook:
81   messages:
82     title: 'Available Drupal Console Commands'
83     note: 'Note'
84     note-description: 'Drupal Console commands *must* be run from the root of a Drupal 8 installation'
85     command: 'Drupal Console Command'
86     command_description: 'The **"%s"** command "%s"'
87     usage: 'Usage'
88     options: 'Available options'
89     option: 'Option'
90     details: 'Details'
91     arguments: 'Available arguments'
92     argument: 'Argument'
93     examples: 'Examples'