Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nuevos ficheros de traducción al español #2494

Merged
merged 1 commit into from
Jul 5, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions config/translations/es/cache.context.debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
description: 'Muestra el contexto de caché actual para la aplicación.'
messages:
code: 'ID del Contexto'
label: 'Etiqueta'
class: 'Ruta de la clase'
14 changes: 7 additions & 7 deletions config/translations/es/event.debug.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
description: 'Display current events '
help: 'The <info>event:debug</info> command helps you debug events.'
description: 'Mostrar los eventos actuales '
help: 'El comando <info>event:debug</info> le ayuda a depurar eventos.'
arguments:
event: 'Event to debug'
event: 'El evento a depurar'
messages:
event: Event Name
class: 'Class'
method: 'Method'
no-events: "This event does not exist, try to execute command: event:debug"
event: 'Nombre del evento'
class: 'Clase'
method: 'Método'
no-events: "Ese evento no existe, intente ejecutar el comando: event:debug"
7 changes: 7 additions & 0 deletions config/translations/es/exec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
description: 'Ejecutar un comando externo.'
arguments:
bin: 'Nombre del ejecutable'
messages:
success: 'El comando ha sido ejecutado con éxito'
invalid-bin: 'Error ejecutando el comando'
missing-bin: 'Debe proveer un ejecutable'
7 changes: 7 additions & 0 deletions config/translations/es/generate.module.file.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
description: 'Generar un archivo .module'
help: 'El comando <info>generate:module:file</info> le ayuda a generar un archivo .module nuevo'
welcome: 'Bienvenido al generador de módulos para Drupal'
options:
module: 'Nombre del módulo'
questions:
module: 'Introduzca el nombre del nuevo módulo'
24 changes: 24 additions & 0 deletions config/translations/es/multisite.new.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
description: 'Sets up the files for a new multisite install.'
help: 'The <info>multisite:new</info> command assists in setting up new multisite installs by creating the needed subdirectory and files, and can optionally copy an existing ''default'' installation.'
arguments:
sites-subdir: 'Name of directory under ''sites'' which should be created.'
options:
site-uri: 'Site URI to add to sites.php.'
copy-install: 'Copies existing site from the default install.'
errors:
subdir-empty: 'You must specify a multisite subdirectory to create.'
subdir-exists: 'The sites/%s directory already exists.'
default-missing: 'The sites/default directory is missing.'
mkdir-fail: 'Unable to create sites/%s. Please check the sites directory permissions and try again.'
sites-invalid: 'The sites.php file located is either not readable or not a file.'
sites-missing: 'No sites.php or example.sites.php to copy from.'
sites-other: 'A problem was encountered when attempting to write sites.php'
file-missing: 'The file ''%s'' was not found for copying.'
copy-fail: 'Unable to copy %s to %s. Please check the permissions and try again.'
write-fail: 'Unable to write to the file %s. Please check the file permissions and try again.'
chmod-fail: 'Unable to change permissions on the file %s. Please ensure that the permissions on that file are correct.'
warnings:
missing-files: 'No sites/default/files directory found. The files directory will need to be created by hand.'
messages:
copy-install: 'The default install was successfully copied to sites/%s.'
fresh-site: 'The new multisite structure was successfully created at sites/%s and is ready for installation.'
2 changes: 1 addition & 1 deletion src/Command/Update/ExecuteCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

namespace Drupal\Console\Command\Update;

use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Command\Command;
use Drupal\Console\Command\Shared\ContainerAwareCommandTrait;
Expand Down