Skip to content

Commit

Permalink
Merge branch '1.x' into feat-configurable-postcode-resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
wychoong authored Dec 19, 2024
2 parents 56f9cc7 + 736d14c commit 347d6a8
Show file tree
Hide file tree
Showing 39 changed files with 2,775 additions and 2 deletions.
3 changes: 3 additions & 0 deletions packages/admin/resources/lang/en/product.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@
'availability' => [
'label' => 'Availability',
],
'edit' => [
'title' => 'Basic Information',
],
'identifiers' => [
'label' => 'Product Identifiers',
],
Expand Down
46 changes: 46 additions & 0 deletions packages/admin/resources/lang/fr/actions.php
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',
],
],

],
];
29 changes: 29 additions & 0 deletions packages/admin/resources/lang/fr/activity.php
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',
],

];
93 changes: 93 additions & 0 deletions packages/admin/resources/lang/fr/address.php
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',
],
],

];
55 changes: 55 additions & 0 deletions packages/admin/resources/lang/fr/attribute.php
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|...',
],
],
];
46 changes: 46 additions & 0 deletions packages/admin/resources/lang/fr/attributegroup.php
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.',
],
],
],
];
32 changes: 32 additions & 0 deletions packages/admin/resources/lang/fr/auth.php
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',
];
72 changes: 72 additions & 0 deletions packages/admin/resources/lang/fr/brand.php
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',
],
],
],
],

];
Loading

0 comments on commit 347d6a8

Please sign in to comment.