0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

refactor(phrases): update rbac-related removing phrases (#3005)

This commit is contained in:
Xiao Yijun 2023-01-20 16:17:18 +08:00 committed by GitHub
parent 9b17a0b2d2
commit 47b84f2d78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 25 additions and 14 deletions

View file

@ -28,6 +28,7 @@ type Props = {
isLoading: boolean;
errorMessage?: string;
createButtonTitle: AdminConsoleKey;
deleteButtonTitle?: AdminConsoleKey;
isReadOnly?: boolean;
isApiColumnVisible?: boolean;
pagination?: PaginationProps;
@ -42,6 +43,7 @@ const PermissionsTable = ({
isLoading,
errorMessage,
createButtonTitle,
deleteButtonTitle = 'general.delete',
isReadOnly = false,
isApiColumnVisible = false,
pagination,
@ -89,7 +91,7 @@ const PermissionsTable = ({
* When the table is read-only, hide the delete button rather than the whole column to keep the table column spaces.
*/
isReadOnly ? null : (
<Tooltip content={t('general.delete')}>
<Tooltip content={<div>{t(deleteButtonTitle)}</div>}>
<IconButton
onClick={() => {
deleteHandler(scope);

View file

@ -72,6 +72,7 @@ const RolePermissions = () => {
scopes={scopes}
isLoading={isLoading}
createButtonTitle="role_details.permission.assign_button"
deleteButtonTitle="general.remove"
createHandler={() => {
setIsAssignPermissionsModalOpen(true);
}}
@ -100,7 +101,7 @@ const RolePermissions = () => {
<ConfirmModal
isOpen
isLoading={isDeleting}
confirmButtonText="general.delete"
confirmButtonText="general.remove"
onCancel={() => {
setScopeToBeDeleted(undefined);
}}

View file

@ -114,7 +114,7 @@ const RoleUsers = () => {
dataIndex: 'delete',
colSpan: 1,
render: (user) => (
<Tooltip content={t('general.delete')}>
<Tooltip content={t('general.remove')}>
<IconButton
onClick={() => {
setUserToBeDeleted(user);
@ -174,7 +174,7 @@ const RoleUsers = () => {
<ConfirmModal
isOpen
isLoading={isDeleting}
confirmButtonText="general.delete"
confirmButtonText="general.remove"
onCancel={() => {
setUserToBeDeleted(undefined);
}}

View file

@ -98,7 +98,7 @@ const UserRoles = () => {
dataIndex: 'delete',
colSpan: 1,
render: (role) => (
<Tooltip content={t('general.delete')}>
<Tooltip content={t('general.remove')}>
<IconButton
onClick={() => {
setRoleToBeDeleted(role);
@ -161,7 +161,7 @@ const UserRoles = () => {
<ConfirmModal
isOpen
isLoading={isDeleting}
confirmButtonText="general.delete"
confirmButtonText="general.remove"
onCancel={() => {
setRoleToBeDeleted(undefined);
}}

View file

@ -43,6 +43,7 @@ const general = {
learn_more: 'Learn more', // UNTRANSLATED
tab_errors: '{{count, number}} errors', // UNTRANSLATED
skip_for_now: 'Skip for now', // UNTRANSLATED
remove: 'Remove', // UNTRANSLATED
};
export default general;

View file

@ -23,7 +23,7 @@ const role_details = {
confirm_assign: 'Assign Permission', // UNTRANSLATED
permission_assigned: 'The selected permissions were successfully assigned to this role!', // UNTRANSLATED
deletion_description:
'If this permission is deleted, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
'If this permission is removed, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
permission_deleted: 'The permission "{{name}}" was successfully removed from this role!', // UNTRANSLATED
empty: 'No permission available', // UNTRANSLATED
},

View file

@ -42,6 +42,7 @@ const general = {
learn_more: 'Learn more',
tab_errors: '{{count, number}} errors',
skip_for_now: 'Skip for now',
remove: 'Remove',
};
export default general;

View file

@ -23,7 +23,7 @@ const role_details = {
confirm_assign: 'Assign Permission',
permission_assigned: 'The selected permissions were successfully assigned to this role!',
deletion_description:
'If this permission is deleted, the affected user with this role will lose the access granted by this permission.',
'If this permission is removed, the affected user with this role will lose the access granted by this permission.',
permission_deleted: 'The permission "{{name}}" was successfully removed from this role!',
empty: 'No permission available',
},

View file

@ -43,6 +43,7 @@ const general = {
learn_more: 'Learn more', // UNTRANSLATED
tab_errors: '{{count, number}} errors', // UNTRANSLATED
skip_for_now: 'Skip for now', // UNTRANSLATED
remove: 'Remove', // UNTRANSLATED
};
export default general;

View file

@ -23,7 +23,7 @@ const role_details = {
confirm_assign: 'Assign Permission', // UNTRANSLATED
permission_assigned: 'The selected permissions were successfully assigned to this role!', // UNTRANSLATED
deletion_description:
'If this permission is deleted, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
'If this permission is removed, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
permission_deleted: 'The permission "{{name}}" was successfully removed from this role!', // UNTRANSLATED
empty: 'No permission available', // UNTRANSLATED
},

View file

@ -42,6 +42,7 @@ const general = {
learn_more: '더 알아보기',
tab_errors: '{{count, number}} 오류',
skip_for_now: 'Skip for now', // UNTRANSLATED
remove: 'Remove', // UNTRANSLATED
};
export default general;

View file

@ -23,7 +23,7 @@ const role_details = {
confirm_assign: 'Assign Permission', // UNTRANSLATED
permission_assigned: 'The selected permissions were successfully assigned to this role!', // UNTRANSLATED
deletion_description:
'If this permission is deleted, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
'If this permission is removed, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
permission_deleted: 'The permission "{{name}}" was successfully removed from this role!', // UNTRANSLATED
empty: 'No permission available', // UNTRANSLATED
},

View file

@ -43,6 +43,7 @@ const general = {
learn_more: 'Saber mais',
tab_errors: '{{count, number}} erros',
skip_for_now: 'Skip for now', // UNTRANSLATED
remove: 'Remove', // UNTRANSLATED
};
export default general;

View file

@ -23,7 +23,7 @@ const role_details = {
confirm_assign: 'Assign Permission', // UNTRANSLATED
permission_assigned: 'The selected permissions were successfully assigned to this role!', // UNTRANSLATED
deletion_description:
'If this permission is deleted, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
'If this permission is removed, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
permission_deleted: 'The permission "{{name}}" was successfully removed from this role!', // UNTRANSLATED
empty: 'No permission available', // UNTRANSLATED
},

View file

@ -42,6 +42,7 @@ const general = {
learn_more: 'Learn more', // UNTRANSLATED
tab_errors: '{{count, number}} errors', // UNTRANSLATED
skip_for_now: 'Skip for now', // UNTRANSLATED
remove: 'Remove', // UNTRANSLATED
};
export default general;

View file

@ -23,7 +23,7 @@ const role_details = {
confirm_assign: 'Assign Permission', // UNTRANSLATED
permission_assigned: 'The selected permissions were successfully assigned to this role!', // UNTRANSLATED
deletion_description:
'If this permission is deleted, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
'If this permission is removed, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
permission_deleted: 'The permission "{{name}}" was successfully removed from this role!', // UNTRANSLATED
empty: 'No permission available', // UNTRANSLATED
},

View file

@ -43,6 +43,7 @@ const general = {
learn_more: 'Learn more', // UNTRANSLATED
tab_errors: '{{count, number}} errors', // UNTRANSLATED
skip_for_now: 'Skip for now', // UNTRANSLATED
remove: 'Remove', // UNTRANSLATED
};
export default general;

View file

@ -23,7 +23,7 @@ const role_details = {
confirm_assign: 'Assign Permission', // UNTRANSLATED
permission_assigned: 'The selected permissions were successfully assigned to this role!', // UNTRANSLATED
deletion_description:
'If this permission is deleted, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
'If this permission is removed, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
permission_deleted: 'The permission "{{name}}" was successfully removed from this role!', // UNTRANSLATED
empty: 'No permission available', // UNTRANSLATED
},

View file

@ -42,6 +42,7 @@ const general = {
learn_more: 'Learn more', // UNTRANSLATED
tab_errors: '{{count, number}} errors', // UNTRANSLATED
skip_for_now: 'Skip for now', // UNTRANSLATED
remove: '移除',
};
export default general;

View file

@ -23,7 +23,7 @@ const role_details = {
confirm_assign: 'Assign Permission', // UNTRANSLATED
permission_assigned: 'The selected permissions were successfully assigned to this role!', // UNTRANSLATED
deletion_description:
'If this permission is deleted, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
'If this permission is removed, the affected user with this role will lose the access granted by this permission.', // UNTRANSLATED
permission_deleted: 'The permission "{{name}}" was successfully removed from this role!', // UNTRANSLATED
empty: 'No permission available', // UNTRANSLATED
},