Hi,
I'm working on a multi-languages site powered by 1.1.5 Grav and something is not working with slugs. I want to follow the approach explained here https://learn.getgrav.org/content/multi-language#multi-language-routing, so I configured the system.yaml as follows:
languages:
translations: true
include_default_lang: false
supported:
- it
- en
then I configured the 'basic.it.md' italian page header as follows:
title: Il titolo
slug: collezione
menu: Collezione
then the 'basic.en.md' as follows:
title: The title
slug: collection
menu: Collection
Next, I added the langswitcher plugin and when I click the English language the browser points to 'en/collezione' route instead of the expected '/collection'
What I'm doing wrong?