I want to set up a site with multiple languages. Default language is English and right now there are four other languages, with the possibility to add new languages in the future. The URL's will be site.com for default English, site.com/nl for Dutch, site.com/de for German etc...
The site has a blog, each blog in each language should have the possibility to show translated/localized blog content and also unique content, not visible for the other languages. In the future blog writers will be using the admin to create blog posts.
Right now I've set up Grav this way: I show an overview of blog posts on the homepage. I followed the tutorial in the Learn section of this site, so it's set up like this.
The current situation is: there should always be a default English item.en.md file where 'published' is set to false if you want to publish a German specific post (which is set to 'published' true). By setting the English version to false the other languages will not publish this post either. If I remove the English file and keep the German file published, then all the other languages will include it in the overview, which should not be the case.
What I want is that I only have to create the language specific post (item.de.md), without having to create the default language version. The other languages of the site should not show the other language based post in their overview.
So what is the best way to do this, or is this currently not possible?