Ensure poll.voters_count doesn't fallback to poll.votes when it's 0

rc/2.3.0
eugenijm 4 years ago
parent 13ff99881b
commit 01275fbac0

@ -58,7 +58,7 @@
{{ $t('polls.vote') }}
</button>
<div class="total">
<template v-if="poll.voters_count">
<template v-if="typeof poll.voters_count === 'number'">
{{ $tc("polls.people_voted_count", poll.voters_count, { count: poll.voters_count }) }}&nbsp;·&nbsp;
</template>
<template v-else>

@ -147,6 +147,7 @@
"add_poll": "Add Poll",
"add_option": "Add Option",
"option": "Option",
"votes": "votes",
"people_voted_count": "{count} person voted | {count} people voted",
"votes_count": "{count} vote | {count} votes",
"vote": "Vote",

Loading…
Cancel
Save