Ok we are doing a lot of dual language sites. Maybe someone has figured out better system than us so i ask.
Kirby https://getkirby.com/docs/cheatsheet/field-methods/isTranslated is nice addition but there is case where this is problematic.
Doing blog posts that have two translations is fine. Usually you have one main language and when you start to translate it is mostly cut and paste from translator. This might mean 5 minutes window where blogpost will show up as translated but content might be messed (the page is live while you are editing).
The problem is people don’t understand that invisible button is global for whole page and its translations.
This gets much worse when we are talking about pages not blogposts (meaning example.com/pricing). Many translated pages have different content. You might have different pricing or whole new sections of the page added (especialy if you are using modules or builder to make site). The process might take some time - corrections from translators, approving etc.
What happens then is that users tend to make page invisible so nobody can see this working version. Of course while they do that they also unknowingly hide the original page.
Solutions we have used so far:
- Staging area - this is good thing to have overall but it is also overkill sometimes. It is also more demanding because users have to save page and then publish the new version of a site.
- Custom checkbox on every page - This is sort of OK but introduces need to filter every page and have the check in panel. Most importantly people get confused what the hell invisible then means. I guess this could be better if you ditch kirbys visible altogether, hide the button and basicaly roll your own implementation of invisible.
- Your own languages in content - Basically doing structure like /en /de. This is sometimes desireable when pages greatly differ. You might have just default language and then some minimal translations with completely different content.
Any other ideas?