-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '1.x' into add-Dutch-lang
- Loading branch information
Showing
54 changed files
with
2,829 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
|
||
return [ | ||
'collections' => [ | ||
'create_root' => [ | ||
'label' => 'Crear colección raíz', | ||
], | ||
'create_child' => [ | ||
'label' => 'Crear colección secundaria', | ||
], | ||
'move' => [ | ||
'label' => 'Mover colección', | ||
], | ||
'delete' => [ | ||
'label' => 'Eliminar', | ||
], | ||
], | ||
'orders' => [ | ||
'update_status' => [ | ||
'label' => 'Actualizar estado', | ||
'wizard' => [ | ||
'step_one' => [ | ||
'label' => 'Estado', | ||
], | ||
'step_two' => [ | ||
'label' => 'Correos y notificaciones', | ||
'no_mailers' => 'No hay correos disponibles para este estado.', | ||
], | ||
'step_three' => [ | ||
'label' => 'Previsualizar y guardar', | ||
'no_mailers' => 'No se han seleccionado correos para la previsualización.', | ||
], | ||
], | ||
'notification' => [ | ||
'label' => 'Estado del pedido actualizado', | ||
], | ||
'billing_email' => [ | ||
'label' => 'Correo de facturación', | ||
], | ||
'shipping_email' => [ | ||
'label' => 'Correo de envío', | ||
], | ||
], | ||
|
||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'label' => 'Actividad', | ||
|
||
'plural_label' => 'Actividades', | ||
|
||
'table' => [ | ||
'subject' => 'Asunto', | ||
'description' => 'Descripción', | ||
'log' => 'Registro', | ||
'logged_at' => 'Registrado en', | ||
'event' => 'Evento', | ||
'logged_from' => 'Registrado desde', | ||
'logged_until' => 'Registrado hasta', | ||
], | ||
|
||
'form' => [ | ||
'causer_type' => 'Tipo de causante', | ||
'causer_id' => 'ID del causante', | ||
'subject_type' => 'Tipo de asunto', | ||
'subject_id' => 'ID del asunto', | ||
'description' => 'Descripción', | ||
'attributes' => 'Atributos', | ||
'old' => 'Antiguo', | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'label' => 'Dirección', | ||
|
||
'plural_label' => 'Direcciones', | ||
|
||
'table' => [ | ||
'title' => [ | ||
'label' => 'Título', | ||
], | ||
'first_name' => [ | ||
'label' => 'Nombre', | ||
], | ||
'last_name' => [ | ||
'label' => 'Apellido', | ||
], | ||
'company_name' => [ | ||
'label' => 'Nombre de la empresa', | ||
], | ||
'line_one' => [ | ||
'label' => 'Dirección', | ||
], | ||
'line_two' => [ | ||
'label' => 'Línea Dos', | ||
], | ||
'line_three' => [ | ||
'label' => 'Línea Tres', | ||
], | ||
'city' => [ | ||
'label' => 'Ciudad', | ||
], | ||
'country_id' => [ | ||
'label' => 'País', | ||
], | ||
'state' => [ | ||
'label' => 'Estado/Provincia', | ||
], | ||
'postcode' => [ | ||
'label' => 'Código postal', | ||
], | ||
'contact_email' => [ | ||
'label' => 'Correo de contacto', | ||
], | ||
'contact_phone' => [ | ||
'label' => 'Teléfono de contacto', | ||
], | ||
], | ||
|
||
'form' => [ | ||
'title' => [ | ||
'label' => 'Título', | ||
], | ||
'first_name' => [ | ||
'label' => 'Nombre', | ||
], | ||
'last_name' => [ | ||
'label' => 'Apellido', | ||
], | ||
'company_name' => [ | ||
'label' => 'Nombre de la empresa', | ||
], | ||
'line_one' => [ | ||
'label' => 'Línea Uno', | ||
], | ||
'line_two' => [ | ||
'label' => 'Línea Dos', | ||
], | ||
'line_three' => [ | ||
'label' => 'Línea Tres', | ||
], | ||
'city' => [ | ||
'label' => 'Ciudad', | ||
], | ||
'country_id' => [ | ||
'label' => 'País', | ||
], | ||
'state' => [ | ||
'label' => 'Estado/Provincia', | ||
], | ||
'postcode' => [ | ||
'label' => 'Código postal', | ||
], | ||
'contact_email' => [ | ||
'label' => 'Correo de contacto', | ||
], | ||
'contact_phone' => [ | ||
'label' => 'Teléfono de contacto', | ||
], | ||
], | ||
|
||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'label' => 'Atributo', | ||
|
||
'plural_label' => 'Atributos', | ||
|
||
'table' => [ | ||
'name' => [ | ||
'label' => 'Nombre', | ||
], | ||
'description' => [ | ||
'label' => 'Descripción', | ||
], | ||
'handle' => [ | ||
'label' => 'Identificador', | ||
], | ||
'type' => [ | ||
'label' => 'Tipo', | ||
], | ||
], | ||
|
||
'form' => [ | ||
'attributable_type' => [ | ||
'label' => 'Tipo', | ||
], | ||
'name' => [ | ||
'label' => 'Nombre', | ||
], | ||
'description' => [ | ||
'label' => 'Descripción', | ||
'helper' => 'Se usa para mostrar el texto de ayuda debajo de la entrada', | ||
], | ||
'handle' => [ | ||
'label' => 'Identificador', | ||
], | ||
'searchable' => [ | ||
'label' => 'Buscable', | ||
], | ||
'filterable' => [ | ||
'label' => 'Filtrable', | ||
], | ||
'required' => [ | ||
'label' => 'Requerido', | ||
], | ||
'type' => [ | ||
'label' => 'Tipo', | ||
], | ||
'validation_rules' => [ | ||
'label' => 'Reglas de validación', | ||
'helper' => 'Reglas para el campo de atributo, ejemplo: min:1|max:10|...', | ||
], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'label' => 'Grupo de Atributos', | ||
|
||
'plural_label' => 'Grupos de Atributos', | ||
|
||
'table' => [ | ||
'attributable_type' => [ | ||
'label' => 'Tipo', | ||
], | ||
'name' => [ | ||
'label' => 'Nombre', | ||
], | ||
'handle' => [ | ||
'label' => 'Identificador', | ||
], | ||
'position' => [ | ||
'label' => 'Posición', | ||
], | ||
], | ||
|
||
'form' => [ | ||
'attributable_type' => [ | ||
'label' => 'Tipo', | ||
], | ||
'name' => [ | ||
'label' => 'Nombre', | ||
], | ||
'handle' => [ | ||
'label' => 'Identificador', | ||
], | ||
'position' => [ | ||
'label' => 'Posición', | ||
], | ||
], | ||
|
||
'action' => [ | ||
'delete' => [ | ||
'notification' => [ | ||
'error_protected' => 'Este grupo de atributos no puede ser eliminado porque tiene atributos asociados.', | ||
], | ||
], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
|
||
return [ | ||
/** | ||
* Roles | ||
*/ | ||
'roles.admin.label' => 'Administrador', | ||
'roles.admin.description' => 'Administrador con acceso completo', | ||
'roles.staff.label' => 'Personal', | ||
'roles.staff.description' => 'Personal con acceso fundamental', | ||
/** | ||
* Permisos. | ||
*/ | ||
'permissions.settings.label' => 'Configuraciones', | ||
'permissions.settings.description' => 'Otorga acceso al área de configuraciones del centro', | ||
'permissions.settings:core.label' => 'Configuraciones Principales', | ||
'permissions.settings:core.description' => 'Acceso a configuraciones fundamentales de la tienda, como canales, idiomas, monedas, etc.', | ||
'permissions.settings:manage-staff.label' => 'Gestionar Personal', | ||
'permissions.settings:manage-staff.description' => 'Permite al miembro del personal editar a otros miembros del personal', | ||
'permissions.settings:manage-attributes.label' => 'Gestionar Atributos', | ||
'permissions.settings:manage-attributes.description' => 'Permite al miembro del personal editar y crear atributos adicionales', | ||
'permissions.catalog:manage-products.label' => 'Gestionar Productos', | ||
'permissions.catalog:manage-products.description' => 'Permite al miembro del personal editar productos, tipos de productos y marcas', | ||
'permissions.catalog:manage-collections.label' => 'Gestionar Colecciones', | ||
'permissions.catalog:manage-collections.description' => 'Permite al miembro del personal editar colecciones y sus grupos', | ||
'permissions.sales:manage-orders.label' => 'Gestionar Pedidos', | ||
'permissions.sales:manage-orders.description' => 'Permite al miembro del personal gestionar pedidos', | ||
'permissions.sales:manage-customers.label' => 'Gestionar Clientes', | ||
'permissions.sales:manage-customers.description' => 'Permite al miembro del personal gestionar clientes', | ||
'permissions.sales:manage-discounts.label' => 'Gestionar Descuentos', | ||
'permissions.sales:manage-discounts.description' => 'Permite al miembro del personal gestionar descuentos', | ||
]; |
Oops, something went wrong.