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>2021-11-01 23:27:40 +0300
committerdartcafe <github@dartcafe.de>2021-11-01 23:27:40 +0300
commitab480ef5406f022c04c52bc6b9d994b1438c79ec (patch)
treecaabb4aefb6810a1c873e47fd107a1ab51f8663b /src/js/components/Configuration
parentdc3bee5e79310aca3b64b10822abbd311e149b09 (diff)
remove ordered and unordered prefixes from translation string
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js/components/Configuration')
-rw-r--r--src/js/components/Configuration/AutoReminderInformation.vue22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/js/components/Configuration/AutoReminderInformation.vue b/src/js/components/Configuration/AutoReminderInformation.vue
index f7971cc0..6e6e70fa 100644
--- a/src/js/components/Configuration/AutoReminderInformation.vue
+++ b/src/js/components/Configuration/AutoReminderInformation.vue
@@ -23,24 +23,24 @@
<template lang="html">
<div class="auto-reminder-information">
<p> {{ t('polls', 'The automatic reminder is sent to all shares via email:') }} </p>
- <p> {{ t('polls', '1. For polls with expiration') }} </p>
+ <p> 1. {{ t('polls', 'For polls with expiration:') }} </p>
<ul>
- <li>{{ t('polls', ' - 48 hours before the expiration date, if the poll is created more than 5 days before the expiration.') }}</li>
- <li>{{ t('polls', ' - 36 hours before the expiration date, if the poll is created more than 2 and less than 5 days before the expiration.') }}</li>
+ <li> - {{ t('polls', '48 hours before the expiration date, if the poll is created more than 5 days before the expiration.') }}</li>
+ <li> - {{ t('polls', '36 hours before the expiration date, if the poll is created more than 2 and less than 5 days before the expiration.') }}</li>
</ul>
<p> &nbsp; </p>
- <p> {{ t('polls', '2. For date polls without expiration') }} </p>
+ <p> 2. {{ t('polls', 'For date polls without expiration:') }} </p>
<ul>
- <li>{{ t('polls', ' - 48 hours before the first date option, if the poll is created more than 5 days before the expiration.') }}</li>
- <li>{{ t('polls', ' - 36 hours before the first date option, if the poll is created more than 2 and less than 5 days before the expiration.') }}</li>
+ <li> - {{ t('polls', '48 hours before the first date option, if the poll is created more than 5 days before the expiration.') }}</li>
+ <li> - {{ t('polls', '36 hours before the first date option, if the poll is created more than 2 and less than 5 days before the expiration.') }}</li>
</ul>
<p> &nbsp; </p>
- <p> {{ t('polls', '3. No reminder is sent') }} </p>
+ <p> 3. {{ t('polls', 'No reminder is sent:') }} </p>
<ul>
- <li>{{ t('polls', ' - for text polls without expiration.') }}</li>
- <li>{{ t('polls', ' - for polls created less than 2 days before the expiration.') }}</li>
- <li>{{ t('polls', ' - if a share already got a reminder (no matter, if the expiration date got changed).') }}</li>
- <li>{{ t('polls', ' - if the poll is already closed.') }}</li>
+ <li> - {{ t('polls', 'For text polls without expiration.') }}</li>
+ <li> - {{ t('polls', 'For polls created less than 2 days before the expiration.') }}</li>
+ <li> - {{ t('polls', 'If a share already got a reminder (no matter, if the expiration date got changed).') }}</li>
+ <li> - {{ t('polls', 'If the poll is already closed.') }}</li>
</ul>
</div>
</template>