|
37 | 37 | :disabled="loadingFetchSettings"
|
38 | 38 | name="timeSlotsStart"
|
39 | 39 | @change="setSettings">
|
40 |
| - <option v-for="(hour, index) in new Array(24)" :key="index" :value="index">{{ index | leadingZero }}:00</option> |
| 40 | + <option v-for="(hour, index) in new Array(24)" :key="index" :value="index | leadingZero">{{ index | leadingZero }}:00</option> |
41 | 41 | </select>
|
42 | 42 | {{ t('backup', 'and') }}
|
43 | 43 | <select v-model.number="settings.timeSlotsEnd"
|
44 | 44 | :disabled="loadingFetchSettings"
|
45 | 45 | name="timeSlotsEnd"
|
46 | 46 | @change="setSettings">
|
47 |
| - <option v-for="(hour, index) in new Array(24)" :key="index" :value="index">{{ index | leadingZero }}:00</option> |
| 47 | + <option v-for="(hour, index) in new Array(24)" :key="index" :value="index | leadingZero">{{ index | leadingZero }}:00</option> |
48 | 48 | </select>
|
49 | 49 | </label>
|
50 | 50 |
|
|
109 | 109 | <ul class="backup-settings__summary">
|
110 | 110 | <template v-if="settings.allowWeekdays">
|
111 | 111 | <li>
|
112 |
| - {{ t('backup', 'A full restoring point will be created {delayFullRestoringPoint} days after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00.', settings) }} |
113 |
| - </li> |
114 |
| - <li> |
115 |
| - {{ t('backup', 'A full restoring point will be created {delayPartialRestoringPoint} days after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00.', settings) }} |
| 112 | + {{ 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) }} |
116 | 113 | </li>
|
117 | 114 | </template>
|
118 | 115 | <template v-if="!settings.allowWeekdays">
|
119 | 116 | <li>
|
120 | 117 | {{ t('backup', 'A full restoring point will be created {delayFullRestoringPoint} days after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 during weekends.', settings) }}
|
121 | 118 | </li>
|
122 |
| - <li> |
123 |
| - {{ t('backup', 'A full restoring point will be created {delayPartialRestoringPoint} days after the last one between {timeSlotsStart}:00 and {timeSlotsEnd}:00 during weekends.', settings) }} |
124 |
| - </li> |
125 | 119 | </template>
|
| 120 | + <li> |
| 121 | + {{ 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) }} |
| 122 | + </li> |
126 | 123 | </ul>
|
127 | 124 |
|
128 | 125 | <div class="backup-settings__actions">
|
|
0 commit comments