forked from AkkomaGang/admin-fe
Update confirmation message
This commit is contained in:
parent
c771ab057c
commit
240340ff83
2 changed files with 8 additions and 5 deletions
|
@ -212,6 +212,7 @@ export default {
|
|||
revokeRightConfirmation: 'Are you sure you want to revoke {right} rights from all selected users?',
|
||||
activateMultipleUsersConfirmation: 'Are you sure you want to activate accounts of all selected users?',
|
||||
deactivateMultipleUsersConfirmation: 'Are you sure you want to deactivate accounts of all selected users?',
|
||||
deleteUsersConfirmation: 'Are you sure you want to delete this account? This action cannot be undone.',
|
||||
deleteMultipleUsersConfirmation: 'Are you sure you want to delete accounts of all selected users?',
|
||||
addTagForMultipleUsersConfirmation: 'Are you sure you want to apply tag to all selected users?',
|
||||
removeTagFromMultipleUsersConfirmation: 'Are you sure you want to remove tag from all selected users?',
|
||||
|
|
|
@ -143,7 +143,9 @@ export default {
|
|||
this.$store.dispatch('ResendConfirmationEmail', [user])
|
||||
},
|
||||
handleDeletion(user) {
|
||||
this.$confirm('Are you sure you want to delete this account?', 'Warning', {
|
||||
this.$confirm(
|
||||
this.$t('users.deleteUsersConfirmation'),
|
||||
{
|
||||
confirmButtonText: 'Delete',
|
||||
cancelButtonText: 'Cancel',
|
||||
type: 'warning'
|
||||
|
|
Loading…
Reference in a new issue