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

github.com/nextcloud/files_retention.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-10-18 15:53:20 +0300
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2022-10-18 17:06:15 +0300
commit08779bf9f22a7470c52625dcfd842255f4675e91 (patch)
tree111c5c82dbc33b3af8ec6734a33ff874dba6c847
parent096b026b4e12bb915a28020c6b7c2bcc1c82ceee (diff)
🗨️ Adjust wordings
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--src/AdminSettings.vue9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/AdminSettings.vue b/src/AdminSettings.vue
index f5e5db0..9b3cd65 100644
--- a/src/AdminSettings.vue
+++ b/src/AdminSettings.vue
@@ -3,14 +3,14 @@
- SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
- <NcSettingsSection :title="t('files_retention', 'File retention')"
+ <NcSettingsSection :title="t('files_retention', 'File retention & automatic deletion')"
:doc-url="docUrl"
:description="t('files_retention', 'Define if files tagged with a specific tag should be deleted automatically after some time. This is useful for confidential documents.')">
<table class="retention-rules-table">
<thead>
<tr>
<th class="retention-heading__name">
- {{ t('files_retention', 'Tag') }}
+ {{ t('files_retention', 'Files tagged with') }}
</th>
<th class="retention-heading__amount">
{{ t('files_retention','Retention') }}
@@ -19,7 +19,7 @@
{{ t('files_retention','Time') }}
</th>
<th class="retention-heading__after">
- {{ t('files_retention','After') }}
+ {{ t('files_retention','From date of') }}
</th>
<th class="retention-heading__active">
{{ t('files_retention','Active') }}
@@ -78,6 +78,7 @@
<template #icon>
<Plus :size="20" />
</template>
+ {{ t('files_retention', 'Create') }}
</NcButton>
</td>
</tr>
@@ -88,7 +89,7 @@
:checked="notifyBefore"
:loading="loadingNotifyBefore"
@update:checked="onToggleNotifyBefore">
- {{ t('files_retention', 'Notify users a day before retention will delete a file') }}
+ {{ t('files_retention', 'Notify owner a day before a file is automatically deleted') }}
</NcCheckboxRadioSwitch>
</NcSettingsSection>
</template>