How to use angular 9 $localize with plurals?
问题 Since Angular 9 we can use $localize`Hello ${name}:name:` For i18n in typescript code. This still has some limitations as the ng xi18n command does not detect the strings, but if these texts are added manually to the translation file it works. The $localize function is quite well documented in the JSDoc in the source, however it does not explain how to work with plurals. What I mean is something like this (pseudo-code): $localize`Hello {${count}, plural, =1 {reader} other {readers}}` Is this