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:
authorp-bo <pavel.borecki@gmail.com>2022-10-19 11:00:10 +0300
committerGitHub <noreply@github.com>2022-10-19 11:00:10 +0300
commit3c08a156ae1e1e9205caf9e3ac3eba42591df7af (patch)
tree7dc622ecde19623c5b645c941d6f613607f78bf3
parent0e2f250b4e388382df93da5e8f5fe5a58264ade1 (diff)
Lang style/consistency - "Delete retention rule … deleted" -> "Retention Rule … deleted"
Signed-off-by: p-bo <pavel.borecki@gmail.com>
-rw-r--r--src/Components/RetentionRule.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Components/RetentionRule.vue b/src/Components/RetentionRule.vue
index 957efe9..7d551ff 100644
--- a/src/Components/RetentionRule.vue
+++ b/src/Components/RetentionRule.vue
@@ -101,7 +101,7 @@ export default {
methods: {
async onClickDelete() {
await this.$store.dispatch('deleteRetentionRule', this.id)
- showSuccess(t('files_retention', 'Delete retention rule for tag {tagName} has been deleted', { tagName: this.tagName }))
+ showSuccess(t('files_retention', 'Retention rule for tag {tagName} has been deleted', { tagName: this.tagName }))
},
},
}