diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2025-05-24 09:59:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-24 09:59:16 +0200 |
commit | 8864e9b078ebd863f40535fe3df8a67487785f29 (patch) | |
tree | e226124145199bd4c50d65b3cac3a8676f46a6ef /apps/settings | |
parent | 1b911e1d1ec0eb3f8b90898a45d918caef070574 (diff) | |
parent | 54a58c0ddaa37b35ced6377ca69ee3f8475d26c4 (diff) | |
download | nextcloud-server-master.tar.gz nextcloud-server-master.zip |
Merge pull request #52897 from nextcloud/Jerome-Herbinet-replace-remove-wording-with-deleteHEADmaster
Diffstat (limited to 'apps/settings')
-rw-r--r-- | apps/settings/src/components/GroupListItem.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/src/components/GroupListItem.vue b/apps/settings/src/components/GroupListItem.vue index 65d46136ec1..76088fa74db 100644 --- a/apps/settings/src/components/GroupListItem.vue +++ b/apps/settings/src/components/GroupListItem.vue @@ -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 })) } }, }, |