@aristotletalks Somehow I'm confused...
You say:
So right now i have
Is that the folder structure you think that should be ok, or the folder structure you had before?
Anyway, the folders structure you are showing is not as it should be. All language variations of a page should be in one single folder. Like:
pages\
01.home\
default.en.md
default.es.md
default.nl.md
To translate the title and the menu for each language other then the preferred language you use the frontmatter of the page. If Dutch is an alternative language, the frontmatter in file 'default.nl.md' could look as follows:
---
title: Titel in Nederlands
slug: url-in-nederlands
---
Inhoud in Nederlands
When you browse to http://mydomain/url-in-english you will see the English menu and English pages (if English is preferred). If you browse to http://mydomain/nl/url-in-nederlands you will see the Dutch menu's and Dutch pages.
In 'user/config/system.yaml' you need to add a languages section, with at least containing:
languages:
supported: [en, nl, fr] <--- English will be default language shown in http://mydomain/
See docs for more options in language section.
What i don’t get is what this language switcher actually does?
If the use of the language dropdown in Admin panel is not clear, it might indicate your folder structure is not correct. Else, the language dropdown will switch between the Dutch and English versions of the page in the same folder.