Closed
Description
Add the ability to configure custom slugs values for locales, in addition to localized domains.
Maybe something in the lines of:
'supported-locales' => ['en', 'nl'],
'domains' => [
'en' => 'en.domain.test',
'nl' => 'nl.domain.test',
],
'slugs' => [
'en' => 'english',
'nl' => 'dutch',
],
If you don't add a slug for a locale, the locale itself can be used, so it is optional.
If you don't add a domain for a locale, the default app_url
be used, so it is optional.