By claudiu.cristea on
Change record status:
Draft (View all draft change records)
Project:
Introduced in branch:
9.1.x
Issue links:
Description:
The plural_label config schema is deprecated, use the label_with_plural_variants config schema instead. With the new schema the label plural variants are represented as indexed arrays instead of a concatenated string (with \x03 as separator).
Before
...
settings:
count_label: "1 place\x03@count places"
...
A language with more than two plural variants where one variant is missed:
...
settings:
count_label: "1 loc\x03\x03@count de locuri"
...
After
...
settings:
count_label:
- '1 place'
- '@count places'
...
A language with more than two plural variants where one variant is missed:
...
settings:
count_label:
0: '1 loc'
2: '@count de locuri'
...
Impacts:
Module developers
Themers
Site templates, recipes and distribution developers