File: D:/HostingSpaces/SBogers10/boldt.komma.pro/resources/lang/fr/site/routes.php
<?php declare(strict_types=1);
return [
//Array structure: Named route name => Translation.
//Do not add route parameters like this: {token}. They won't be replaced as you might expect.
//When you use the localized_route helper, you may pass parameters.
//When you do, do this in a numeric (non associative) manner in the same order as they appear in the named route.
//Translations for authentication routes
'site.login' => 'connexion',
'site.logout' => 'deconnexion',
'site.password.request' => 'mot-de-passe/oublie',
'site.password.email' => 'mot-de-passe/email',
'site.password.reset' => 'mot-de-passe/reinitialiser',
'site.password.request_set' => 'mot-de-passe/creer',
'site.password.set' => 'mot-de-passe/definir',
'site.register' => 'inscription',
'site.registered' => 'inscrit',
//Translations for shopping cart routes
'shoppingcart' => 'panier'
];