Skip to content

Commit

Permalink
Change list UI status counts to i18n plural. Ref: #717
Browse files Browse the repository at this point in the history
  • Loading branch information
knadh committed Feb 23, 2022
1 parent 6fe36db commit 45878db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/Lists.vue
Expand Up @@ -98,7 +98,7 @@
header-class="cy-subscribers" width="10%">
<div class="fields stats">
<p v-for="(count, status) in props.row.subscriberStatuses" :key="status">
<label>{{ $t(`subscribers.status.${status}`) }}</label>
<label>{{ $tc(`subscribers.status.${status}`, count) }}</label>
<span :class="status">{{ $utils.formatNumber(count) }}</span>
</p>
</div>
Expand Down

0 comments on commit 45878db

Please sign in to comment.