feat(auth): add feedback state for user and role management (#1191)

This commit is contained in:
Rıdvan Akca
2023-08-07 12:08:29 +03:00
committed by GitHub
parent 7ca37c412e
commit b4cda90338
10 changed files with 161 additions and 100 deletions

View File

@@ -177,6 +177,7 @@
"deleteUserButton.description": "This will permanently delete the user and all the associated data with it.",
"deleteUserButton.cancel": "Cancel",
"deleteUserButton.confirm": "Delete",
"deleteUserButton.successfullyDeleted": "The user has been deleted.",
"editUserPage.title": "Edit user",
"createUserPage.title": "Create user",
"userForm.fullName": "Full name",
@@ -184,7 +185,9 @@
"userForm.role": "Role",
"userForm.password": "Password",
"createUser.submit": "Create",
"createUser.successfullyCreated": "The user has been created.",
"editUser.submit": "Update",
"editUser.successfullyUpdated": "The user has been updated.",
"userList.fullName": "Full name",
"userList.email": "Email",
"rolesPage.title": "Role management",
@@ -193,12 +196,15 @@
"deleteRoleButton.description": "This will permanently delete the role.",
"deleteRoleButton.cancel": "Cancel",
"deleteRoleButton.confirm": "Delete",
"deleteRoleButton.successfullyDeleted": "The role has been deleted.",
"editRolePage.title": "Edit role",
"createRolePage.title": "Create role",
"roleForm.name": "Name",
"roleForm.description": "Description",
"createRole.submit": "Create",
"createRole.successfullyCreated": "The role has been created.",
"editRole.submit": "Update",
"editRole.successfullyUpdated": "The role has been updated.",
"roleList.name": "Name",
"roleList.description": "Description",
"permissionSettings.cancel": "Cancel",