Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené Gieling <github@dartcafe.de>2020-01-15 00:19:51 +0300
committerGitHub <noreply@github.com>2020-01-15 00:19:51 +0300
commit420ff83c83d3852d61a0f97322166214ec3510b3 (patch)
treef1423002dd3439770f9779a727d54556286a015a
parentc2ac05d1ac78425788926905c76048a67a89c2f7 (diff)
parent85a0b48f6420d9177fb1c5a0bd9512e333647019 (diff)
Merge pull request #745 from nextcloud/rakekniven-patch-1
Fixed grammar, added dot
-rw-r--r--src/js/components/Base/PollInformation.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/components/Base/PollInformation.vue b/src/js/components/Base/PollInformation.vue
index 95227023..b20bac28 100644
--- a/src/js/components/Base/PollInformation.vue
+++ b/src/js/components/Base/PollInformation.vue
@@ -24,7 +24,7 @@
<div class="poll-information">
<UserBubble :user="poll.owner" :display-name="poll.owner" />
{{ t('polls', ' started this poll on %n. ', 1, moment.unix(poll.created).format('LLLL')) }}
- <span v-if="expired">{{ t('polls', 'Voting is no more possible, because this poll expired since %n', 1, moment.unix(poll.expire).format('LLLL')) }}</span>
+ <span v-if="expired">{{ t('polls', 'Voting is no more possible, because this poll expired since %n.', 1, moment.unix(poll.expire).format('LLLL')) }}</span>
<span v-if="!expired && poll.expire && acl.allowVote">{{ t('polls', 'You can place your vote until %n. ', 1, moment.unix(poll.expire).format('LLLL')) }}</span>
<span v-if="poll.anonymous">{{ t('polls', 'The names of other participants are hidden, as this is an anonymous poll. ') }}</span>
<span>{{ n('polls', '%n person participated in this poll until now.', '%n persons participated in this poll until now.', participants.length) }}</span>