From 1c79cde885ddf1380b3843dcb00fb10c128c8057 Mon Sep 17 00:00:00 2001 From: Gao Sun Date: Thu, 2 Nov 2023 14:46:22 +0800 Subject: [PATCH] refactor(console): apply new layout for org settings (#4805) --- .../Guide/CreateOrganization/index.tsx | 2 +- .../index.tsx | 17 ++++++++++------- .../{RolesField => RolesCard}/index.module.scss | 0 .../{RolesField => RolesCard}/index.tsx | 15 +++++++++------ .../Organizations/Settings/index.module.scss | 9 +++++++++ .../src/pages/Organizations/Settings/index.tsx | 17 +++++++---------- .../TemplateTable/index.module.scss | 4 ---- .../pages/Organizations/TemplateTable/index.tsx | 1 - .../src/pages/Organizations/index.module.scss | 2 +- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 7 ++++--- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- .../translation/admin-console/organizations.ts | 11 ++++++----- 24 files changed, 125 insertions(+), 103 deletions(-) rename packages/console/src/pages/Organizations/{PermissionsField => PermissionsCard}/index.tsx (88%) rename packages/console/src/pages/Organizations/{RolesField => RolesCard}/index.module.scss (100%) rename packages/console/src/pages/Organizations/{RolesField => RolesCard}/index.tsx (90%) create mode 100644 packages/console/src/pages/Organizations/Settings/index.module.scss diff --git a/packages/console/src/pages/Organizations/Guide/CreateOrganization/index.tsx b/packages/console/src/pages/Organizations/Guide/CreateOrganization/index.tsx index 371300f77..95d61a4c1 100644 --- a/packages/console/src/pages/Organizations/Guide/CreateOrganization/index.tsx +++ b/packages/console/src/pages/Organizations/Guide/CreateOrganization/index.tsx @@ -19,7 +19,7 @@ import useTheme from '@/hooks/use-theme'; import { trySubmitSafe } from '@/utils/form'; import { steps } from '../const'; -import styles from '../index.module.scss'; +import * as styles from '../index.module.scss'; type OrganizationForm = { name: string; diff --git a/packages/console/src/pages/Organizations/PermissionsField/index.tsx b/packages/console/src/pages/Organizations/PermissionsCard/index.tsx similarity index 88% rename from packages/console/src/pages/Organizations/PermissionsField/index.tsx rename to packages/console/src/pages/Organizations/PermissionsCard/index.tsx index 0009d69e8..ddb8e1e1e 100644 --- a/packages/console/src/pages/Organizations/PermissionsField/index.tsx +++ b/packages/console/src/pages/Organizations/PermissionsCard/index.tsx @@ -5,20 +5,20 @@ import { useTranslation } from 'react-i18next'; import useSWR, { useSWRConfig } from 'swr'; import ActionsButton from '@/components/ActionsButton'; -import FormField from '@/ds-components/FormField'; +import FormCard from '@/components/FormCard'; import Tag from '@/ds-components/Tag'; import useApi, { type RequestError } from '@/hooks/use-api'; import { buildUrl } from '@/utils/url'; import PermissionModal from '../PermissionModal'; -import { swrKey } from '../RolesField'; +import { swrKey } from '../RolesCard'; import TemplateTable, { pageSize } from '../TemplateTable'; /** - * Renders the permissions field that allows users to add, edit, and delete organization + * Renders the permissions card that allows users to add, edit, and delete organization * permissions. */ -function PermissionsField() { +function PermissionsCard() { const [page, setPage] = useState(1); const { data: response, @@ -45,7 +45,10 @@ function PermissionsField() { const isLoading = !response && !error; return ( - + - + ); } -export default PermissionsField; +export default PermissionsCard; diff --git a/packages/console/src/pages/Organizations/RolesField/index.module.scss b/packages/console/src/pages/Organizations/RolesCard/index.module.scss similarity index 100% rename from packages/console/src/pages/Organizations/RolesField/index.module.scss rename to packages/console/src/pages/Organizations/RolesCard/index.module.scss diff --git a/packages/console/src/pages/Organizations/RolesField/index.tsx b/packages/console/src/pages/Organizations/RolesCard/index.tsx similarity index 90% rename from packages/console/src/pages/Organizations/RolesField/index.tsx rename to packages/console/src/pages/Organizations/RolesCard/index.tsx index 5ea6d02f7..b9f6c8acd 100644 --- a/packages/console/src/pages/Organizations/RolesField/index.tsx +++ b/packages/console/src/pages/Organizations/RolesCard/index.tsx @@ -5,8 +5,8 @@ import { useTranslation } from 'react-i18next'; import useSWR from 'swr'; import ActionsButton from '@/components/ActionsButton'; +import FormCard from '@/components/FormCard'; import { RoleOption } from '@/components/OrganizationRolesSelect'; -import FormField from '@/ds-components/FormField'; import Tag from '@/ds-components/Tag'; import useApi, { type RequestError } from '@/hooks/use-api'; import { buildUrl } from '@/utils/url'; @@ -19,10 +19,10 @@ import * as styles from './index.module.scss'; export const swrKey = 'api/organization-roles'; /** - * Renders the roles field that allows users to add, edit, and delete organization + * Renders the roles card that allows users to add, edit, and delete organization * roles. */ -function RolesField() { +function RolesCard() { const [page, setPage] = useState(1); const { data: response, @@ -44,7 +44,10 @@ function RolesField() { const isLoading = !response && !error; return ( - + - + ); } -export default RolesField; +export default RolesCard; diff --git a/packages/console/src/pages/Organizations/Settings/index.module.scss b/packages/console/src/pages/Organizations/Settings/index.module.scss new file mode 100644 index 000000000..33ab4d55a --- /dev/null +++ b/packages/console/src/pages/Organizations/Settings/index.module.scss @@ -0,0 +1,9 @@ +@use '@/scss/underscore' as _; + +.content { + padding: _.unit(4) 0; + + > div + div { + margin-top: _.unit(4); + } +} diff --git a/packages/console/src/pages/Organizations/Settings/index.tsx b/packages/console/src/pages/Organizations/Settings/index.tsx index 040d0aaff..7202b66fa 100644 --- a/packages/console/src/pages/Organizations/Settings/index.tsx +++ b/packages/console/src/pages/Organizations/Settings/index.tsx @@ -1,16 +1,13 @@ -import FormCard from '@/components/FormCard'; +import PermissionsCard from '../PermissionsCard'; +import RolesCard from '../RolesCard'; -import PermissionsField from '../PermissionsField'; -import RolesField from '../RolesField'; +import * as styles from './index.module.scss'; export default function Settings() { return ( - - - - +
+ + +
); } diff --git a/packages/console/src/pages/Organizations/TemplateTable/index.module.scss b/packages/console/src/pages/Organizations/TemplateTable/index.module.scss index dc70ffb7b..2fe7c68da 100644 --- a/packages/console/src/pages/Organizations/TemplateTable/index.module.scss +++ b/packages/console/src/pages/Organizations/TemplateTable/index.module.scss @@ -4,10 +4,6 @@ margin-top: _.unit(3); } -.table { - margin-top: _.unit(3); -} - .spinner { margin: _.unit(2) 0; } diff --git a/packages/console/src/pages/Organizations/TemplateTable/index.tsx b/packages/console/src/pages/Organizations/TemplateTable/index.tsx index 57e5b1843..21bb2d0bc 100644 --- a/packages/console/src/pages/Organizations/TemplateTable/index.tsx +++ b/packages/console/src/pages/Organizations/TemplateTable/index.tsx @@ -53,7 +53,6 @@ function TemplateTable< hasBorder placeholder={} isLoading={isLoading} - className={styles.table} rowGroups={[ { key: 'data', diff --git a/packages/console/src/pages/Organizations/index.module.scss b/packages/console/src/pages/Organizations/index.module.scss index 13c8cd519..3723532d6 100644 --- a/packages/console/src/pages/Organizations/index.module.scss +++ b/packages/console/src/pages/Organizations/index.module.scss @@ -1,5 +1,5 @@ @use '@/scss/underscore' as _; .tabs { - margin: _.unit(4) 0; + margin-top: _.unit(4); } diff --git a/packages/phrases/src/locales/de/translation/admin-console/organizations.ts b/packages/phrases/src/locales/de/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/de/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/de/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/en/translation/admin-console/organizations.ts b/packages/phrases/src/locales/en/translation/admin-console/organizations.ts index 6decfb0a3..474445225 100644 --- a/packages/phrases/src/locales/en/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/en/translation/admin-console/organizations.ts @@ -8,11 +8,10 @@ const organization = { create_organization: 'Create organization', organization_name_placeholder: 'My organization', organization_description_placeholder: 'A brief description of the organization.', - access_control: 'Access control', - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', organization_permission: 'Organization permission', organization_permission_other: 'Organization permissions', + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', create_permission_placeholder: 'Read appointment history.', @@ -20,6 +19,8 @@ const organization = { permission_other: 'Permissions', organization_role: 'Organization role', organization_role_other: 'Organization roles', + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', role: 'Role', diff --git a/packages/phrases/src/locales/es/translation/admin-console/organizations.ts b/packages/phrases/src/locales/es/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/es/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/es/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/fr/translation/admin-console/organizations.ts b/packages/phrases/src/locales/fr/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/fr/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/fr/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/it/translation/admin-console/organizations.ts b/packages/phrases/src/locales/it/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/it/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/it/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/ja/translation/admin-console/organizations.ts b/packages/phrases/src/locales/ja/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/ja/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/ja/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/ko/translation/admin-console/organizations.ts b/packages/phrases/src/locales/ko/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/ko/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/ko/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/pl-pl/translation/admin-console/organizations.ts b/packages/phrases/src/locales/pl-pl/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/pl-pl/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/pl-pl/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/pt-br/translation/admin-console/organizations.ts b/packages/phrases/src/locales/pt-br/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/pt-br/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/pt-br/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/pt-pt/translation/admin-console/organizations.ts b/packages/phrases/src/locales/pt-pt/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/pt-pt/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/pt-pt/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/ru/translation/admin-console/organizations.ts b/packages/phrases/src/locales/ru/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/ru/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/ru/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/tr-tr/translation/admin-console/organizations.ts b/packages/phrases/src/locales/tr-tr/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/tr-tr/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/tr-tr/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/zh-cn/translation/admin-console/organizations.ts b/packages/phrases/src/locales/zh-cn/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/zh-cn/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/zh-cn/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/zh-hk/translation/admin-console/organizations.ts b/packages/phrases/src/locales/zh-hk/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/zh-hk/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/zh-hk/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */ diff --git a/packages/phrases/src/locales/zh-tw/translation/admin-console/organizations.ts b/packages/phrases/src/locales/zh-tw/translation/admin-console/organizations.ts index 33b2d9259..9a3806be3 100644 --- a/packages/phrases/src/locales/zh-tw/translation/admin-console/organizations.ts +++ b/packages/phrases/src/locales/zh-tw/translation/admin-console/organizations.ts @@ -17,15 +17,13 @@ const organizations = { /** UNTRANSLATED */ organization_description_placeholder: 'A brief description of the organization.', /** UNTRANSLATED */ - access_control: 'Access control', - /** UNTRANSLATED */ - access_control_description: - 'Authorization in a multi-tenancy applications is often designed to make sure that tenant isolation is maintained throughout an application and that tenants can access only their own resources.', - /** UNTRANSLATED */ organization_permission: 'Organization permission', /** UNTRANSLATED */ organization_permission_other: 'Organization permissions', /** UNTRANSLATED */ + organization_permission_description: + 'Organization permission refers to the authorization to access a resource in the context of organization. An organization permission should be represented as a meaningful string, also serving as the name and unique identifier.', + /** UNTRANSLATED */ organization_permission_delete_confirm: 'If this permission is deleted, all organization roles including this permission will lose this permission, and users who had this permission will lose the access granted by it.', /** UNTRANSLATED */ @@ -39,6 +37,9 @@ const organizations = { /** UNTRANSLATED */ organization_role_other: 'Organization roles', /** UNTRANSLATED */ + organization_role_description: + 'Organization role is a grouping of permissions that can be assigned to users. The permissions must come from the predefined organization permissions.', + /** UNTRANSLATED */ organization_role_delete_confirm: 'Doing so will remove the permissions associated with this role from the affected users and delete the relations among organization roles, members in the organization, and organization permissions.', /** UNTRANSLATED */