I have this piece of code code
<ng-pluralize count="comment.Comment.like_count"
when="{'0': {{'LIKES_LIKE' | translate}},
'one': {{'LIKES_LIKE' | translate}},
'other': '{{'LIKES_LIKES' | translate}}}">
</ng-pluralize>
but I can't figure out how to Format the string so that it actually parses the likes strings by the translate filter so that the ng-pluralize directive receives the parsed language string.
The error messge is this:
Error: [$parse:lexerr] Lexer Error: Unterminated quote at columns 107-123 [' | translate}}}] in expression [{'0': {{'LIKES_LIKE' | translate}}, 'one': {{'LIKES_LIKE' | translate}}, 'other': '{{'LIKES_LIKE' | translate}}}].
I'm well aware what i means but I can't figure out how to make it work. Any ideas?