9b5a21eeb8e97e27a08fc7771b8944f6600bd936
[yaffs-website] / vendor / drupal / console-en / translations / application.yml
1 options:
2     env: 'The Environment name'
3     no-debug: 'Switches off 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     learning:
33         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 }}\")."
34     autocomplete: |
35                 Bash: Bash support depends on the http://bash-completion.alioth.debian.org/
36                 project which can be installed with your package manager of choice. Then add
37                 this line to your shell configuration file.
38                 <info>source "$HOME/.console/console.rc" 2>/dev/null</info>
39
40                 Bash or Zsh: Add this line to your shell configuration file:
41                 <info>source "$HOME/.console/console.rc" 2>/dev/null</info>
42
43                 Fish: Create a symbolic link
44                 <info>ln -s ~/.console/drupal.fish ~/.config/fish/completions/drupal.fish</info>
45     version: '<info>%s</info> version <comment>%s</comment>'
46     disable:
47       command:
48         error: 'Command: "%s" is deprecated.'
49         extra: 'You must execute: "%s" instead'
50 errors:
51     invalid-command: 'Command "%s", is not a valid command name.'
52 site:
53     messages:
54         path: 'Site path'
55     errors:
56         settings: 'In order to list all of the available commands you should install drupal first.'
57         directory: 'In order to list all of the available commands, you should run this against a drupal root directory.'
58         not-installed: 'Drupal Console is not installed at: %s'
59         execute-composer: 'You must execute the following composer commands:'
60         missing-config-file: 'Missing configuration file, possible paths:'
61         missing-config-file-command: 'Execute "drupal init" command to generate one'
62 user:
63     messages:
64         path: 'User home path'
65
66 remote:
67   errors:
68     passphrase-missing: 'Passphrase file is missing'
69     passphrase-empty: 'Passphrase file is empty'
70     private-missing: 'Private file is missing'
71     private-empty: 'Private file is empty'
72     private-invalid: 'Private file is invalid'
73     invalid-root: 'Invalid root directory'
74     console-not-found: 'Drupal Console not found on this site'