-
Notifications
You must be signed in to change notification settings - Fork 371
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
132 changed files
with
5,589 additions
and
112 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
token: ${{ secrets.ACCESS_TOKEN }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
ref: ${{ github.head_ref }} | ||
- name: Set up PHP | ||
uses: shivammathur/setup-php@v2 | ||
|
@@ -26,5 +26,8 @@ jobs: | |
- name: Commit changes | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_user_name: "GitHub Action" | ||
commit_user_email: "[email protected]" | ||
commit_author: "Author <[email protected]>" | ||
commit_message: > | ||
chore: fix code style |
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
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.', | ||
], | ||
], | ||
], | ||
]; |
Oops, something went wrong.