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:
authordartcafe <github@dartcafe.de>2020-09-15 19:36:49 +0300
committerdartcafe <github@dartcafe.de>2020-09-15 19:36:49 +0300
commitd34b9d3bc4ac70912eeafe52915a896b6b05f11b (patch)
tree0aba686b675f8a0b013db04c05fb67b119e4f4c2
parent4a186323987af45946191a033a3eb05e24a8883a (diff)
fix translation string
-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 7d6040f0..4c6f1620 100644
--- a/src/js/components/Base/PollInformation.vue
+++ b/src/js/components/Base/PollInformation.vue
@@ -23,7 +23,7 @@
<template>
<div class="poll-information">
<UserBubble v-if="poll.owner" :user="poll.owner" :display-name="poll.ownerDisplayName" />
- {{ t('polls', 'started this poll on %n. ', 1, dateCreatedString) }}
+ {{ t('polls', 'started this poll on {dateString}. ', {dateString: dateCreatedString}) }}
<span v-if="expired && confirmedOptions.length"> {{ t('polls', 'This poll expired on {dateString}. The confirmed options are marked below.', { dateString: dateExpiryString }) }} </span>