}
subscribersDisplayFor (count: number) {
- return this.i18n(`{count, plural, =1 {1 subscriber} other {${count} subscribers}}`, { count })
+ return this.i18n('{count, plural, =1 {1 subscriber} other {{{count}} subscribers}}', { count })
}
private getUserIfNeeded (account: Account) {
.getVideoChannelVideos(this.videoChannel, newPagination, this.sort)
.pipe(
tap(({ total }) => {
- this.titlePage = this.i18n(`{total, plural, =1 {Published 1 video} other {Published ${total} videos}}`, { total })
+ this.titlePage = this.i18n(`{total, plural, =1 {Published 1 video} other {Published {{total}} videos}}`, { total })
})
)
}