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

github.com/nextcloud/backup.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/GeneralSettingsSection.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/GeneralSettingsSection.vue b/src/components/GeneralSettingsSection.vue
index 26f7bcc..36aa39c 100644
--- a/src/components/GeneralSettingsSection.vue
+++ b/src/components/GeneralSettingsSection.vue
@@ -63,16 +63,16 @@
<ul class="backup-settings__info">
<template v-if="settings.allowWeekdays">
<li>
- {{ t('backup', 'A full restoring point will be created {delayFullRestoringPoint} days after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 any day of the week.', settings) }}
+ {{ n('backup', 'A full restoring point will be created {delayFullRestoringPoint} day after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 any day of the week.', 'A full restoring point will be created {delayFullRestoringPoint} days after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 any day of the week.', settings.delayFullRestoringPoint, settings) }}
</li>
</template>
<template v-if="!settings.allowWeekdays">
<li>
- {{ t('backup', 'A full restoring point will be created {delayFullRestoringPoint} days after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 during weekends.', settings) }}
+ {{ n('backup', 'A full restoring point will be created {delayFullRestoringPoint} day after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 during weekends.', 'A full restoring point will be created {delayFullRestoringPoint} days after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 during weekends.', settings.delayFullRestoringPoint, settings) }}
</li>
</template>
<li>
- {{ t('backup', 'A partial restoring point will be created {delayPartialRestoringPoint} days after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 any day of the week.', settings) }}
+ {{ n('backup', 'A partial restoring point will be created {delayPartialRestoringPoint} day after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 any day of the week.', 'A partial restoring point will be created {delayPartialRestoringPoint} days after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 any day of the week.', settings.delayPartialRestoringPoint, settings) }}
</li>
</ul>