Created
December 17, 2020 17:12
-
-
Save mathieutu/9bcb9d195a2110f633c1ab7aec9587cb to your computer and use it in GitHub Desktop.
Translation Dsécu.
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
<?php | |
use App\Models\Client; | |
use App\Models\Commande; | |
use App\Models\CommandeLigne; | |
use App\Models\Utilisateurs\Admin; | |
use App\Models\Utilisateurs\ADV; | |
use App\Models\Utilisateurs\Commercial; | |
use App\Models\Utilisateurs\Contact; | |
return [ | |
'utilisateurs' => [ | |
'types' => [ | |
Commercial::TYPE => 'Commercial', | |
Admin::TYPE => 'Administrateur', | |
ADV::TYPE => 'ADV', | |
Contact::TYPE => 'Contact', | |
], | |
], | |
'contacts' => [ | |
'roles' => [ | |
Contact::ROLES['administratif'] => 'Service administratif', | |
Contact::ROLES['achat'] => 'Service achats', | |
Contact::ROLES['finance'] => 'Service financier', | |
], | |
'civilites' => [ | |
Contact::CIVILITES['m'] => 'M.', | |
Contact::CIVILITES['mme'] => 'Mme.', | |
], | |
], | |
'commandes' => [ | |
'produits' => [ | |
CommandeLigne::PRODUITS['pharmacie'] => 'Armoire à pharmacie', | |
CommandeLigne::PRODUITS['defibrillateur'] => 'Défibrillateur', | |
CommandeLigne::PRODUITS['extincteur'] => 'Extincteur', | |
CommandeLigne::PRODUITS['formation'] => 'Formation', | |
CommandeLigne::PRODUITS['intervention'] => 'Intervention technique', | |
CommandeLigne::PRODUITS['maintenance'] => 'Maintenance', | |
CommandeLigne::PRODUITS['masque'] => 'Masque Barrière', | |
CommandeLigne::PRODUITS['signaletique'] => 'Plan de secours/signalétique', | |
CommandeLigne::PRODUITS['purificateur'] => 'Purificateur d’air professionnel', | |
CommandeLigne::PRODUITS['autre'] => 'Autre', | |
], | |
'produitsPlural' => [ | |
CommandeLigne::PRODUITS['pharmacie'] => 'Armoires à pharmacie', | |
CommandeLigne::PRODUITS['defibrillateur'] => 'Défibrillateurs', | |
CommandeLigne::PRODUITS['extincteur'] => 'Extincteurs', | |
CommandeLigne::PRODUITS['formation'] => 'Formations', | |
CommandeLigne::PRODUITS['intervention'] => 'Interventions techniques', | |
CommandeLigne::PRODUITS['maintenance'] => 'Maintenances', | |
CommandeLigne::PRODUITS['masque'] => 'Masques Barrières', | |
CommandeLigne::PRODUITS['signaletique'] => 'Plans de secours/signalétiques', | |
CommandeLigne::PRODUITS['purificateur'] => 'Purificateurs d’air professionnels', | |
CommandeLigne::PRODUITS['autre'] => 'Autres', | |
], | |
'documentsTypes' => [ | |
Commande::DOCUMENTS_TYPES['bon_livraison'] => 'Bon de livraison', | |
Commande::DOCUMENTS_TYPES['facture'] => 'Facture', | |
], | |
'documentsTypesPlural' => [ | |
Commande::DOCUMENTS_TYPES['bon_livraison'] => 'Bons de livraison', | |
Commande::DOCUMENTS_TYPES['facture'] => 'Factures', | |
], | |
'types' => [ | |
Commande::TYPES['location'] => 'Location', | |
Commande::TYPES['vente'] => 'Vente', | |
], | |
'statuts' => [ | |
CommandeLigne::STATUTS['preparation'] => 'En cours de préparation', | |
CommandeLigne::STATUTS['acheminement'] => 'En cours d\'acheminement', | |
], | |
], | |
'clients' => [ | |
'types' => [ | |
Client::TYPES['association'] => 'Association', | |
Client::TYPES['collectivite'] => 'Collectivité', | |
Client::TYPES['entreprise'] => 'Entreprise', | |
Client::TYPES['grand_compte'] => 'Grand Compte', | |
Client::TYPES['partenaire'] => 'Partenaire', | |
Client::TYPES['particulier'] => 'Particulier', | |
], | |
'statuts_juridiques' => [ | |
Client::STATUTS_JURIDIQUES['EIRL'] => 'EIRL', | |
Client::STATUTS_JURIDIQUES['SARL'] => 'SARL', | |
Client::STATUTS_JURIDIQUES['EURL'] => 'EURL', | |
Client::STATUTS_JURIDIQUES['SAS'] => 'SAS', | |
Client::STATUTS_JURIDIQUES['SASU'] => 'SASU', | |
Client::STATUTS_JURIDIQUES['SA'] => 'SA', | |
Client::STATUTS_JURIDIQUES['SNC'] => 'SNC', | |
], | |
'statuts' => [ | |
Client::STATUTS['actif'] => 'Actif', | |
Client::STATUTS['validation'] => 'En attente de validation', | |
Client::STATUTS['creation'] => 'En cours de création', | |
], | |
'facturations' => [ | |
Client::FACTURATION_RECEPTIONS['electronique'] => 'Électronique', | |
Client::FACTURATION_RECEPTIONS['papier'] => 'Papier', | |
], | |
'reglements' => [ | |
Client::FACTURATION_REGLEMENTS['virement'] => 'Virement', | |
Client::FACTURATION_REGLEMENTS['prelevement'] => 'Prélèvement', | |
Client::FACTURATION_REGLEMENTS['cheque'] => 'Chèque', | |
Client::FACTURATION_REGLEMENTS['mandat'] => 'Mandat administratif', | |
], | |
], | |
'misc' => [ | |
'bool' => [ | |
'true' => 'Oui', | |
'false' => 'Non', | |
] | |
] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment