Maxime

Results 21 comments of Maxime

One solution is to replace the regular expression of the locale in `config/routes/sylius_shop.yaml` so that it doesn't correspond to 4 characters. Example: ```diff requirements: - _locale: ^[A-Za-z]{2,4}(_([A-Za-z]{4}|[0-9]{3}))?(_([A-Za-z]{2}|[0-9]{3}))?$ + _locale: ^[a-z]{2}(?:_[A-Z]{2})?$...