I'm testing Wagtail 2.11.2 new Content Internationalization approach:
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"),
]
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:
Wagtail provides the infrastructure for creating and serving content in multiple languages, but does not itself provide an admin interface for managing translations of the same content across different languages. For this, the wagtail-localize app must be installed separately.