File: D:/HostingSpaces/SBogers10/kooken.komma.pro/resources/lang/en/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' => 'login',
'site.logout' => 'logout',
'site.password.request' => 'password/forgot',
'site.password.email' => 'password/email',
'site.password.reset' => 'password/reset',
'site.password.request_set' => 'password/create',
'site.password.set' => 'password/set',
'site.register' => 'register',
'site.registered' => 'registered',
'contact.success' => 'contact/thanks',
//Translations for shopping cart routes
'shoppingcart' => 'shoppingcart'
];