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:
authorMaxence Lange <maxence@artificial-owl.com>2022-03-23 12:21:38 +0300
committerGitHub <noreply@github.com>2022-03-23 12:21:38 +0300
commit8cbed9977ddba0434395a2fe9914833ad093a53c (patch)
tree4eab478a55ec38f876398328d03a29e3d279862f
parent5a6f41fe47508f80426d6cd3449068558598f3ff (diff)
parentfd797324ffbacdc105117384ecf1e7cff944e9c8 (diff)
Merge pull request #235 from nextcloud/backport/233/stable231.0.6
[stable23] Fix plural handling
-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>