mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
feat(i18n): translate vote result
This commit is contained in:
parent
cd5881b210
commit
f2a1cdaefe
3 changed files with 13 additions and 1 deletions
|
@ -56,7 +56,9 @@ async function vote(e: Event) {
|
|||
</div>
|
||||
</template>
|
||||
<div text-sm>
|
||||
{{ poll.votersCount }} votes · {{ poll.expired ? 'finished' : 'ends' }} {{ expiredTimeAgo }}
|
||||
{{ $t('status.poll.count', [poll.votersCount]) }}
|
||||
·
|
||||
{{ $t(poll.expired ? 'status.poll.finished' : 'status.poll.ends', [expiredTimeAgo]) }}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -141,6 +141,11 @@
|
|||
},
|
||||
"status": {
|
||||
"edited": "Edited {0}",
|
||||
"poll": {
|
||||
"count": "{0} votes",
|
||||
"ends": "ends {0}",
|
||||
"finished": "finished {0}"
|
||||
},
|
||||
"reblogged": "{0} reblogged",
|
||||
"spoiler_show_less": "Show less",
|
||||
"spoiler_show_more": "Show more",
|
||||
|
|
|
@ -141,6 +141,11 @@
|
|||
},
|
||||
"status": {
|
||||
"edited": "在 {0} 编辑了",
|
||||
"poll": {
|
||||
"count": "{0} 次投票",
|
||||
"ends": "将在 {0} 结束",
|
||||
"finished": "已在 {0} 结束"
|
||||
},
|
||||
"reblogged": "{0} 转发了",
|
||||
"spoiler_show_less": "隐藏",
|
||||
"spoiler_show_more": "显示更多",
|
||||
|
|
Loading…
Reference in a new issue