You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.}
The text was updated successfully, but these errors were encountered:
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.}
The text was updated successfully, but these errors were encountered: