Security update for Core, with self-updated composer
[yaffs-website] / vendor / drupal / console-en / translations / application.yml
index 9b5a21eeb8e97e27a08fc7771b8944f6600bd936..cf197981131ce3b32716eb6989baf3891615a134 100644 (file)
@@ -1,6 +1,6 @@
 options:
     env: 'The Environment name'
-    no-debug: 'Switches off debug mode'
+    debug: 'Switches on debug mode'
     learning: 'Generate a verbose code output'
     generate-chain: 'Shows command options and arguments as yaml output to be used in chain command'
     generate-inline: 'Shows command options and arguments as inline command'
@@ -29,6 +29,8 @@ messages:
     files:
         generated: 'Generated or updated files'
         copied: 'Copied files'
+    lines-code: 'Generated lines: "%s"'
+    path: 'Generation path'
     learning:
         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 }}\")."
     autocomplete: |
@@ -42,20 +44,22 @@ messages:
 
                 Fish: Create a symbolic link
                 <info>ln -s ~/.console/drupal.fish ~/.config/fish/completions/drupal.fish</info>
-    version: '<info>%s</info> version <comment>%s</comment>'
+    version: '<info>"%s"</info> version <comment>"%s"</comment>'
     disable:
       command:
         error: 'Command: "%s" is deprecated.'
         extra: 'You must execute: "%s" instead'
 errors:
     invalid-command: 'Command "%s", is not a valid command name.'
+    renamed-command: 'Command "%s" was renamed, use "%s" instead.'
+    drush-command: 'Command "%s" is a Drush command (deprecated). Drupal Console equivalent "%s" was executed instead.'
 site:
     messages:
         path: 'Site path'
     errors:
         settings: 'In order to list all of the available commands you should install drupal first.'
         directory: 'In order to list all of the available commands, you should run this against a drupal root directory.'
-        not-installed: 'Drupal Console is not installed at: %s'
+        not-installed: 'Drupal Console is not installed at: "%s"'
         execute-composer: 'You must execute the following composer commands:'
         missing-config-file: 'Missing configuration file, possible paths:'
         missing-config-file-command: 'Execute "drupal init" command to generate one'
@@ -71,4 +75,19 @@ remote:
     private-empty: 'Private file is empty'
     private-invalid: 'Private file is invalid'
     invalid-root: 'Invalid root directory'
-    console-not-found: 'Drupal Console not found on this site'
\ No newline at end of file
+    console-not-found: 'Drupal Console not found on this site'
+
+gitbook:
+  messages:
+    title: 'Available Drupal Console Commands'
+    note: 'Note'
+    note-description: 'Drupal Console commands *must* be run from the root of a Drupal 8 installation'
+    command: 'Drupal Console Command'
+    command_description: 'The **"%s"** command "%s"'
+    usage: 'Usage'
+    options: 'Available options'
+    option: 'Option'
+    details: 'Details'
+    arguments: 'Available arguments'
+    argument: 'Argument'
+    examples: 'Examples'