Using the { and } brackets for placeholders is correct for the ICU format. However when using an ICU select or number format texterify does not parse it correctly and turns it into multuple place holders.
As an example this string: { Count, plural, =0 {There are no results.} one {There is one result.} other {There are # results.}}
Gets parsed into the following placeholders by texterify:
Using the
{
and}
brackets for placeholders is correct for the ICU format. However when using an ICU select or number format texterify does not parse it correctly and turns it into multuple place holders.As an example this string:
{ Count, plural, =0 {There are no results.} one {There is one result.} other {There are # results.}}
Gets parsed into the following placeholders by texterify:
{ Count, plural, =0 {There are no results.}
{There is one result.}
{There are # results.}