The preview of ICU formatted strings sometimes work incorrectly for selects:
String: The last time was {unit, select, years {{count, plural, one {one year ago} other {{count} years ago}}} other {{count} {unit} ago} }
When using the preview in Crowdin:
Preview (count: 1, unit: years): The last time was count years ago
Preview (count: 2, unit: years): The last time was count years ago
As seen in the example, “count” is always shown independently of the selected values. additionally, the select for unit is not applied correctly. All other formatters I have tested prints the following:
Preview (count: 1, unit: years): The last time was one year ago
Preview (count: 2, unit: other): The last time was 2 years ago