I'm testing Wagtail 2.11.2 new Content Internationalization approach:
- I've setup two models HomePage and GenericPage.
- I've setup Locales in settings.py and in Admin
USE_I18N = True
WAGTAIL_I18N_ENABLED = True
USE_L10N = True
LANGUAGE_CODE='en'
LANGUAGES = [
('en', "English"),
('es', "Spanish"),
('de', "German"),
]
WAGTAIL_CONTENT_LANGUAGES = [
('en', "English"),
('es', "Spanish"),
]
- I'm able to create pages in the admin and I'm asked the language for that particular page, I choose a language.
- After I press Publish I only see the page I've just created. I don't see the translated version neither a link to create the translated version of that page.
Are page translations version created automatically or is there something I'm missing? I've checked the documentation and is not quite clear about this behavior.
What should I expect to see for managing translations?
Thanks in advance,
Marcos
Wagtail itself only provides the basic infrastructure for serving pages in multiple languages, not the UI for translating between them. As per the docs: