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
path: root/src
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2022-04-12 10:37:25 +0300
committerdartcafe <github@dartcafe.de>2022-04-12 10:37:25 +0300
commit98439fa4930e5f40b8b3cfd2d01f2c60600ca86e (patch)
tree1f6d7a695ff3b0f6eaced16e7f53bdba9d0607bf /src
parent84f283e548143294dfcb090ddd6012de6b2a5e3d (diff)
translation fix
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src')
-rw-r--r--src/js/components/Poll/PollInfoLine.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/js/components/Poll/PollInfoLine.vue b/src/js/components/Poll/PollInfoLine.vue
index b710756a..2d6456dd 100644
--- a/src/js/components/Poll/PollInfoLine.vue
+++ b/src/js/components/Poll/PollInfoLine.vue
@@ -65,7 +65,10 @@ export default {
if (this.isNoAccessSet) {
subTexts.push({
id: 'no-access',
- text: t('polls', 'Poll is unpublished. Invite users via the share tab in the sidebar'),
+ text: [
+ t('polls', 'This poll is unpublished'),
+ t('polls', 'Invite users via the share tab in the sidebar'),
+ ].join('. '),
icon: 'icon-mask-md-unpublished-poll',
class: 'unpublished',
})