I am totally stuck: I have created a bilingual blueprint with sections, langauge switching in the panel doesn´t work at all here:
pages/termine.yml
title:
de: Termine
fr: Dates
sections:
draft_events:
label:
de: Entwürfe
fr: Dates non publiées
extends: sections/termine
status: draft
published_events:
label:
de: Veröffentlichte Termine
fr: Dates publiées
extends: sections/termine
status: listed
sections/termine.yml
type: pages
parent: site.find("termine")
sortBy: eventStartDate desc
templates: termin
empty:
de: Noch keine Termine
fr: Pas encore de dates
layout: table
columns:
eventStartDate:
label:
de: Startdatum
fr: Date de début
value: "{{ page.eventStartDate.toDate('d.m.Y') }}"
eventHost: true
eventHostArea: true
When I change the language in the panel from German to French, neither the section labels nor the table titles are displayed in French. They are still displayed in German.
The language settings of the site are o.k. All other blueprints (without sections) work as expected.
Any hints very welcome.
TIA
Thomas