I am trying to translate some text using t9n
library, but I get this error
Compiling...
Error compiling ICU message for locale en-US: SyntaxError: Expected "=", "}", or identifier but "," found.
To debug this set DEBUG_ICU to 'true'
when I use this piece of code in React JS
`t9n("{count, plural, one {one other}, others {# others}}", { count: userIds.length - 1 })`;
How can I resolve this?