mirror of
https://github.com/nextcloud/server.git
synced 2026-03-03 05:51:07 -05:00
refactor(settings): replace "remove" wording with "delete"
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
This commit is contained in:
parent
82214f0470
commit
83f0d7f07c
1 changed files with 3 additions and 3 deletions
|
|
@ -13,7 +13,7 @@
|
|||
</h2>
|
||||
<NcNoteCard type="warning"
|
||||
show-alert>
|
||||
{{ t('settings', 'You are about to remove the group "{group}". The accounts will NOT be deleted.', { group: name }) }}
|
||||
{{ t('settings', 'You are about to delete the group "{group}". The accounts will NOT be deleted.', { group: name }) }}
|
||||
</NcNoteCard>
|
||||
<div class="modal__button-row">
|
||||
<NcButton type="secondary"
|
||||
|
|
@ -62,7 +62,7 @@
|
|||
<template #icon>
|
||||
<Delete :size="20" />
|
||||
</template>
|
||||
{{ t('settings', 'Remove group') }}
|
||||
{{ t('settings', 'Delete group') }}
|
||||
</NcActionButton>
|
||||
</template>
|
||||
</NcAppNavigationItem>
|
||||
|
|
@ -179,7 +179,7 @@ export default {
|
|||
await this.$store.dispatch('removeGroup', this.id)
|
||||
this.showRemoveGroupModal = false
|
||||
} catch (error) {
|
||||
showError(t('settings', 'Failed to remove group "{group}"', { group: this.name }))
|
||||
showError(t('settings', 'Failed to delete group "{group}"', { group: this.name }))
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue