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:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2020-09-15 12:30:05 +0300
committerGitHub <noreply@github.com>2020-09-15 12:30:05 +0300
commitdd3c1ab3f56e76f282621945d4825f7075bc9188 (patch)
tree6e104b9dc67bcb5a8bda8a81e74af41b79c8e401
parent4a186323987af45946191a033a3eb05e24a8883a (diff)
Remove spaces
-rw-r--r--src/js/components/Base/PollInformation.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/js/components/Base/PollInformation.vue b/src/js/components/Base/PollInformation.vue
index 7d6040f0..b013aa34 100644
--- a/src/js/components/Base/PollInformation.vue
+++ b/src/js/components/Base/PollInformation.vue
@@ -35,11 +35,11 @@
<span v-if="poll.anonymous">{{ t('polls', 'This is an anonymous poll. Except to the poll owner, participants names are hidden.') }} </span>
- <span v-if="!acl.allowSeeResults">{{ t('polls', 'Results are hidden. ') }}</span>
+ <span v-if="!acl.allowSeeResults">{{ t('polls', 'Results are hidden.') }}</span>
- <span v-if="!acl.allowSeeResults && poll.showResults === 'expired'">{{ t('polls', 'They will be revealed after the poll is expired. ') }}</span>
+ <span v-if="!acl.allowSeeResults && poll.showResults === 'expired'">{{ t('polls', 'They will be revealed after the poll is expired.') }}</span>
- <span v-if="poll.type === 'datePoll'">{{ t('polls', 'The used time zone is {timeZone}. ', { timeZone: currentTimeZone }) }}</span>
+ <span v-if="poll.type === 'datePoll'">{{ t('polls', 'The used time zone is {timeZone}.', { timeZone: currentTimeZone }) }}</span>
</div>
</template>