-
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 feat-configurable-postcode-resolver
- Loading branch information
Showing
39 changed files
with
2,775 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<?php | ||
|
||
return [ | ||
'collections' => [ | ||
'create_root' => [ | ||
'label' => 'Créer une collection racine', | ||
], | ||
'create_child' => [ | ||
'label' => 'Créer une collection enfant', | ||
], | ||
'move' => [ | ||
'label' => 'Déplacer la collection', | ||
], | ||
'delete' => [ | ||
'label' => 'Supprimer', | ||
], | ||
], | ||
'orders' => [ | ||
'update_status' => [ | ||
'label' => 'Mettre à jour le statut', | ||
'wizard' => [ | ||
'step_one' => [ | ||
'label' => 'Statut', | ||
], | ||
'step_two' => [ | ||
'label' => 'Emails & Notifications', | ||
'no_mailers' => 'Aucun email n’est disponible pour ce statut.', | ||
], | ||
'step_three' => [ | ||
'label' => 'Aperçu & Enregistrer', | ||
'no_mailers' => 'Aucun email n’a été sélectionné pour l’aperçu.', | ||
], | ||
], | ||
'notification' => [ | ||
'label' => 'Statut de la commande mis à jour', | ||
], | ||
'billing_email' => [ | ||
'label' => 'Email de facturation', | ||
], | ||
'shipping_email' => [ | ||
'label' => 'Email de livraison', | ||
], | ||
], | ||
|
||
], | ||
]; |
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' => 'Activité', | ||
|
||
'plural_label' => 'Activités', | ||
|
||
'table' => [ | ||
'subject' => 'Sujet', | ||
'description' => 'Description', | ||
'log' => 'Journal', | ||
'logged_at' => 'Enregistré à', | ||
'event' => 'Événement', | ||
'logged_from' => 'Enregistré depuis', | ||
'logged_until' => 'Enregistré jusqu\'à', | ||
], | ||
|
||
'form' => [ | ||
'causer_type' => 'Type de responsable', | ||
'causer_id' => 'ID du responsable', | ||
'subject_type' => 'Type de sujet', | ||
'subject_id' => 'ID du sujet', | ||
'description' => 'Description', | ||
'attributes' => 'Attributs', | ||
'old' => 'Ancien', | ||
], | ||
|
||
]; |
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' => 'Adresse', | ||
|
||
'plural_label' => 'Adresses', | ||
|
||
'table' => [ | ||
'title' => [ | ||
'label' => 'Titre', | ||
], | ||
'first_name' => [ | ||
'label' => 'Prénom', | ||
], | ||
'last_name' => [ | ||
'label' => 'Nom de famille', | ||
], | ||
'company_name' => [ | ||
'label' => 'Nom de l\'entreprise', | ||
], | ||
'line_one' => [ | ||
'label' => 'Adresse', | ||
], | ||
'line_two' => [ | ||
'label' => 'Adresse ligne 2', | ||
], | ||
'line_three' => [ | ||
'label' => 'Adresse ligne 3', | ||
], | ||
'city' => [ | ||
'label' => 'Ville', | ||
], | ||
'country_id' => [ | ||
'label' => 'Pays', | ||
], | ||
'state' => [ | ||
'label' => 'État', | ||
], | ||
'postcode' => [ | ||
'label' => 'Code postal', | ||
], | ||
'contact_email' => [ | ||
'label' => 'Email de contact', | ||
], | ||
'contact_phone' => [ | ||
'label' => 'Téléphone de contact', | ||
], | ||
], | ||
|
||
'form' => [ | ||
'title' => [ | ||
'label' => 'Titre', | ||
], | ||
'first_name' => [ | ||
'label' => 'Prénom', | ||
], | ||
'last_name' => [ | ||
'label' => 'Nom de famille', | ||
], | ||
'company_name' => [ | ||
'label' => 'Nom de l\'entreprise', | ||
], | ||
'line_one' => [ | ||
'label' => 'Adresse ligne 1', | ||
], | ||
'line_two' => [ | ||
'label' => 'Adresse ligne 2', | ||
], | ||
'line_three' => [ | ||
'label' => 'Adresse ligne 3', | ||
], | ||
'city' => [ | ||
'label' => 'Ville', | ||
], | ||
'country_id' => [ | ||
'label' => 'Pays', | ||
], | ||
'state' => [ | ||
'label' => 'État', | ||
], | ||
'postcode' => [ | ||
'label' => 'Code postal', | ||
], | ||
'contact_email' => [ | ||
'label' => 'Email de contact', | ||
], | ||
'contact_phone' => [ | ||
'label' => 'Téléphone de contact', | ||
], | ||
], | ||
|
||
]; |
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' => 'Attribut', | ||
|
||
'plural_label' => 'Attributs', | ||
|
||
'table' => [ | ||
'name' => [ | ||
'label' => 'Nom', | ||
], | ||
'description' => [ | ||
'label' => 'Description', | ||
], | ||
'handle' => [ | ||
'label' => 'Identifiant', | ||
], | ||
'type' => [ | ||
'label' => 'Type', | ||
], | ||
], | ||
|
||
'form' => [ | ||
'attributable_type' => [ | ||
'label' => 'Type', | ||
], | ||
'name' => [ | ||
'label' => 'Nom', | ||
], | ||
'description' => [ | ||
'label' => 'Description', | ||
'helper' => 'Utilisé pour afficher le texte d\'aide sous l\'entrée', | ||
], | ||
'handle' => [ | ||
'label' => 'Identifiant', | ||
], | ||
'searchable' => [ | ||
'label' => 'Recherchable', | ||
], | ||
'filterable' => [ | ||
'label' => 'Filtrable', | ||
], | ||
'required' => [ | ||
'label' => 'Obligatoire', | ||
], | ||
'type' => [ | ||
'label' => 'Type', | ||
], | ||
'validation_rules' => [ | ||
'label' => 'Règles de validation', | ||
'helper' => 'Règles pour le champ attribut, exemple : 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' => 'Groupe d\'attributs', | ||
|
||
'plural_label' => 'Groupes d\'attributs', | ||
|
||
'table' => [ | ||
'attributable_type' => [ | ||
'label' => 'Type', | ||
], | ||
'name' => [ | ||
'label' => 'Nom', | ||
], | ||
'handle' => [ | ||
'label' => 'Identifiant', | ||
], | ||
'position' => [ | ||
'label' => 'Position', | ||
], | ||
], | ||
|
||
'form' => [ | ||
'attributable_type' => [ | ||
'label' => 'Type', | ||
], | ||
'name' => [ | ||
'label' => 'Nom', | ||
], | ||
'handle' => [ | ||
'label' => 'Identifiant', | ||
], | ||
'position' => [ | ||
'label' => 'Position', | ||
], | ||
], | ||
|
||
'action' => [ | ||
'delete' => [ | ||
'notification' => [ | ||
'error_protected' => 'Ce groupe d\'attributs ne peut pas être supprimé car des attributs y sont associés.', | ||
], | ||
], | ||
], | ||
]; |
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 [ | ||
/** | ||
* Rôles | ||
*/ | ||
'roles.admin.label' => 'Admin', | ||
'roles.admin.description' => 'Administrateur avec accès complet', | ||
'roles.staff.label' => 'Personnel', | ||
'roles.staff.description' => 'Personnel avec accès fondamental', | ||
/** | ||
* Permissions | ||
*/ | ||
'permissions.settings.label' => 'Paramètres', | ||
'permissions.settings.description' => 'Donne accès à la zone des paramètres du hub', | ||
'permissions.settings:core.label' => 'Paramètres de base', | ||
'permissions.settings:core.description' => 'Accès aux paramètres de base du magasin, tels que les canaux, les langues, les devises, etc.', | ||
'permissions.settings:manage-staff.label' => 'Gérer le personnel', | ||
'permissions.settings:manage-staff.description' => 'Permet au membre du personnel de modifier les autres membres du personnel', | ||
'permissions.settings:manage-attributes.label' => 'Gérer les attributs', | ||
'permissions.settings:manage-attributes.description' => 'Permet au membre du personnel de modifier et de créer des attributs supplémentaires', | ||
'permissions.catalog:manage-products.label' => 'Gérer les produits', | ||
'permissions.catalog:manage-products.description' => 'Permet au membre du personnel de modifier les produits, les types de produits et les marques', | ||
'permissions.catalog:manage-collections.label' => 'Gérer les collections', | ||
'permissions.catalog:manage-collections.description' => 'Permet au membre du personnel de modifier les collections et leurs groupes', | ||
'permissions.sales:manage-orders.label' => 'Gérer les commandes', | ||
'permissions.sales:manage-orders.description' => 'Permet au membre du personnel de gérer les commandes', | ||
'permissions.sales:manage-customers.label' => 'Gérer les clients', | ||
'permissions.sales:manage-customers.description' => 'Permet au membre du personnel de gérer les clients', | ||
'permissions.sales:manage-discounts.label' => 'Gérer les remises', | ||
'permissions.sales:manage-discounts.description' => 'Permet au membre du personnel de gérer les remises', | ||
]; |
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,72 @@ | ||
<?php | ||
|
||
return [ | ||
|
||
'label' => 'Marque', | ||
|
||
'plural_label' => 'Marques', | ||
|
||
'table' => [ | ||
'name' => [ | ||
'label' => 'Nom', | ||
], | ||
'products_count' => [ | ||
'label' => 'Nbre de produits', | ||
], | ||
], | ||
|
||
'form' => [ | ||
'name' => [ | ||
'label' => 'Nom', | ||
], | ||
], | ||
|
||
'action' => [ | ||
'delete' => [ | ||
'notification' => [ | ||
'error_protected' => 'Cette marque ne peut pas être supprimée car des produits y sont associés.', | ||
], | ||
], | ||
], | ||
'pages' => [ | ||
'products' => [ | ||
'label' => 'Produits', | ||
'actions' => [ | ||
'attach' => [ | ||
'label' => 'Associer un produit', | ||
'form' => [ | ||
'record_id' => [ | ||
'label' => 'Produit', | ||
], | ||
], | ||
'notification' => [ | ||
'success' => 'Produit associé à la marque', | ||
], | ||
], | ||
'detach' => [ | ||
'notification' => [ | ||
'success' => 'Produit dissocié.', | ||
], | ||
], | ||
], | ||
], | ||
'collections' => [ | ||
'label' => 'Collections', | ||
'table' => [ | ||
'header_actions' => [ | ||
'attach' => [ | ||
'record_select' => [ | ||
'placeholder' => 'Sélectionner une collection', | ||
], | ||
], | ||
], | ||
], | ||
'actions' => [ | ||
'attach' => [ | ||
'label' => 'Associer une collection', | ||
], | ||
], | ||
], | ||
], | ||
|
||
]; |
Oops, something went wrong.