Создайте File Collection
в вашем config.yml
для файлов i18n
, где есть файл для каждого языка.
- name: Language
label: language
delete: false
files:
- name: english
file: 'i18n/en.yaml'
label: English
fields:
- widget: object
name: home
label: Home
fields:
- {widget: string, name: other, label: Other, required: true}
- widget: object
name: title
label: 'Site Title'
fields:
- {widget: string, name: other, label: Other, required: true}
- name: french
file: 'i18n/fr.yaml'
label: French
fields:
- widget: object
name: home
label: Home
fields:
- {widget: string, name: other, label: Other, required: true}
- widget: object
name: title
label: 'Site Title'
fields:
- {widget: string, name: other, label: Other, required: true}