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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-08-31 16:25:13 +0300
committerJoas Schilling <coding@schilljs.com>2022-08-31 16:25:13 +0300
commit062e4046a1ff5f84819e7e6a41b3ebb51a867d16 (patch)
tree78bef0997e555333dac6c56a16ed161b76b36fc2 /src/components
parent75ae64f712f839089f615f880ee1a7943423af48 (diff)
Align the wording
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/MessagesList/MessagesGroup/Message/MessagePart/Poll.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/MessagesList/MessagesGroup/Message/MessagePart/Poll.vue b/src/components/MessagesList/MessagesGroup/Message/MessagePart/Poll.vue
index c133eb383..ed764651c 100644
--- a/src/components/MessagesList/MessagesGroup/Message/MessagePart/Poll.vue
+++ b/src/components/MessagesList/MessagesGroup/Message/MessagePart/Poll.vue
@@ -350,7 +350,7 @@ export default {
if (this.pollIsOpen) {
return this.selfHasVoted ? t('spreed', 'Poll ・ You voted') : t('spreed', 'Poll ・ Click to vote')
} else if (this.pollIsClosed) {
- return t('spreed', 'Poll ・ Closed')
+ return t('spreed', 'Poll ・ Ended')
}
return ''
},