Skip to content

Commit 41dc76c

Browse files
refactor(settings): replace "remove" wording with "delete"
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
1 parent 256b548 commit 41dc76c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/settings/src/components/GroupListItem.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</h2>
1414
<NcNoteCard type="warning"
1515
show-alert>
16-
{{ t('settings', 'You are about to remove the group "{group}". The accounts will NOT be deleted.', { group: name }) }}
16+
{{ t('settings', 'You are about to delete the group "{group}". The accounts will NOT be deleted.', { group: name }) }}
1717
</NcNoteCard>
1818
<div class="modal__button-row">
1919
<NcButton type="secondary"
@@ -62,7 +62,7 @@
6262
<template #icon>
6363
<Delete :size="20" />
6464
</template>
65-
{{ t('settings', 'Remove group') }}
65+
{{ t('settings', 'Delete group') }}
6666
</NcActionButton>
6767
</template>
6868
</NcAppNavigationItem>
@@ -179,7 +179,7 @@ export default {
179179
await this.$store.dispatch('removeGroup', this.id)
180180
this.showRemoveGroupModal = false
181181
} catch (error) {
182-
showError(t('settings', 'Failed to remove group "{group}"', { group: this.name }))
182+
showError(t('settings', 'Failed to delete group "{group}"', { group: this.name }))
183183
}
184184
},
185185
},

0 commit comments

Comments
 (0)