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-04-29 21:58:25 +0300
committerdartcafe <github@dartcafe.de>2020-04-29 21:58:25 +0300
commita36ce805c572fb7417ef15e771c01f61dde28e97 (patch)
tree552ae9e020e2ad205bea4039f9bac753654f38a0 /src/js/views/PollList.vue
parent9579a6dfab783ed267a4f04552427e132e41b98b (diff)
Text and style cleanup
Diffstat (limited to 'src/js/views/PollList.vue')
-rw-r--r--src/js/views/PollList.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/js/views/PollList.vue b/src/js/views/PollList.vue
index 2287c66a..b65c1022 100644
--- a/src/js/views/PollList.vue
+++ b/src/js/views/PollList.vue
@@ -101,15 +101,15 @@ export default {
description() {
if (this.$route.params.type === 'my') {
- return t('polls', 'This are your polls (where you are the owner).')
+ return t('polls', 'Your polls (where you are the owner).')
} else if (this.$route.params.type === 'relevant') {
- return t('polls', 'This are all polls which are relevant or important to you, because you are a participant or the owner or you are invited to. Without expired polls.')
+ return t('polls', 'All polls which are relevant or important to you, because you are a participant or the owner or you are invited to. Without expired polls.')
} else if (this.$route.params.type === 'public') {
return t('polls', 'A complete list with all public polls on this site, regardless who is the owner.')
} else if (this.$route.params.type === 'hidden') {
- return t('polls', 'These are all hidden polls, to which you have access.')
+ return t('polls', 'All hidden polls, to which you have access.')
} else if (this.$route.params.type === 'deleted') {
- return t('polls', 'This is simply the trash bin.')
+ return t('polls', 'The trash bin.')
} else if (this.$route.params.type === 'participated') {
return t('polls', 'All polls, where you placed a vote.')
} else if (this.$route.params.type === 'expired') {