forked from AkkomaGang/akkoma-fe
Display 'people voted' instead of 'votes' for multi-choice polls
This commit is contained in:
parent
647d75f27c
commit
1506b97e35
3 changed files with 10 additions and 2 deletions
|
@ -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.
|
- Button to remove uploaded media in post status form is now properly placed and sized.
|
||||||
- Fixed shoutbox not working in mobile layout
|
- Fixed shoutbox not working in mobile layout
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Display 'people voted' instead of 'votes' for multi-choice polls
|
||||||
|
|
||||||
## [2.2.3] - 2021-01-18
|
## [2.2.3] - 2021-01-18
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -58,7 +58,12 @@
|
||||||
{{ $t('polls.vote') }}
|
{{ $t('polls.vote') }}
|
||||||
</button>
|
</button>
|
||||||
<div class="total">
|
<div class="total">
|
||||||
{{ totalVotesCount }} {{ $t("polls.votes") }} ·
|
<template v-if="poll.multiple">
|
||||||
|
{{ $tc("polls.people_voted_count", poll.voters_count, { count: poll.voters_count }) }} ·
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
{{ $tc("polls.votes_count", poll.votes_count, { count: poll.votes_count }) }} ·
|
||||||
|
</template>
|
||||||
</div>
|
</div>
|
||||||
<i18n :path="expired ? 'polls.expired' : 'polls.expires_in'">
|
<i18n :path="expired ? 'polls.expired' : 'polls.expires_in'">
|
||||||
<Timeago
|
<Timeago
|
||||||
|
|
|
@ -147,7 +147,8 @@
|
||||||
"add_poll": "Add Poll",
|
"add_poll": "Add Poll",
|
||||||
"add_option": "Add Option",
|
"add_option": "Add Option",
|
||||||
"option": "Option",
|
"option": "Option",
|
||||||
"votes": "votes",
|
"people_voted_count": "{count} person voted | {count} people voted",
|
||||||
|
"votes_count": "{count} vote | {count} votes",
|
||||||
"vote": "Vote",
|
"vote": "Vote",
|
||||||
"type": "Poll type",
|
"type": "Poll type",
|
||||||
"single_choice": "Single choice",
|
"single_choice": "Single choice",
|
||||||
|
|
Loading…
Reference in a new issue