Skip to content
Snippets Groups Projects
Commit 7f3fd9ca authored by Shpuld Shpludson's avatar Shpuld Shpludson
Browse files

Merge branch 'multi-choice-poll-wording' into 'develop'

Display 'people voted' instead of 'votes' for multi-answers polls

Closes #993

See merge request !1341
parents b2a96417 01275fba
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Button to remove uploaded media in post status form is now properly placed and sized.
- Fixed shoutbox not working in mobile layout
### Changed
- Display 'people voted' instead of 'votes' for multi-choice polls
## [2.2.3] - 2021-01-18
### Added
......
......@@ -58,7 +58,12 @@
{{ $t('polls.vote') }}
</button>
<div class="total">
{{ totalVotesCount }} {{ $t("polls.votes") }}&nbsp;·&nbsp;
<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>
{{ $tc("polls.votes_count", poll.votes_count, { count: poll.votes_count }) }}&nbsp;·&nbsp;
</template>
</div>
<i18n :path="expired ? 'polls.expired' : 'polls.expires_in'">
<Timeago
......
......@@ -152,6 +152,8 @@
"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",
"type": "Poll type",
"single_choice": "Single choice",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment