mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
Merge pull request #4682 from logto-io/gao-console-org-1
chore(phrases): add phrases for organization settings
This commit is contained in:
commit
ada1434366
63 changed files with 762 additions and 4 deletions
|
@ -168,7 +168,7 @@ describe('applications', () => {
|
|||
|
||||
// Add and remove redirect uri
|
||||
await expect(redirectUriFiled).toClick('div[class$=multilineInput]>button>span', {
|
||||
text: 'Add Another',
|
||||
text: 'Add another',
|
||||
});
|
||||
|
||||
// Wait for the new redirect uri field
|
||||
|
|
|
@ -57,7 +57,7 @@ export const expectToAddSignInMethod = async (page: Page, method: string, isAddA
|
|||
|
||||
// Click Add another
|
||||
await expect(signInMethodsField).toClick('button span', {
|
||||
text: isAddAnother ? 'Add Another' : 'Add Sign-in Method',
|
||||
text: isAddAnother ? 'Add another' : 'Add sign-in method',
|
||||
});
|
||||
|
||||
// Wait for the dropdown to be rendered in the correct position
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: 'Kopiert',
|
||||
required: 'Erforderlich',
|
||||
add_another: 'Weitere hinzufügen',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: 'Willst du {{title}} wirklich löschen?',
|
||||
settings_nav: 'Einstellungen',
|
||||
unsaved_changes_warning:
|
||||
|
@ -58,6 +60,10 @@ const general = {
|
|||
unknown_error: 'Unbekannter Fehler, bitte versuchen Sie es später erneut.',
|
||||
select: 'Auswählen',
|
||||
contact_us_action: 'Kontaktiere uns',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: 'Anmeldeoberfläche',
|
||||
connectors: 'Connectoren',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: 'Benutzerverwaltung',
|
||||
audit_logs: 'Audit Logs',
|
||||
roles: 'Rollen',
|
||||
|
|
|
@ -32,7 +32,8 @@ const general = {
|
|||
copying: 'Copying',
|
||||
copied: 'Copied',
|
||||
required: 'Required',
|
||||
add_another: 'Add Another',
|
||||
add_another: 'Add another',
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: 'Are you sure you want to delete this {{title}}?',
|
||||
settings_nav: 'Settings',
|
||||
unsaved_changes_warning: 'You have made some changes. Are you sure you want to leave this page?',
|
||||
|
@ -57,6 +58,8 @@ const general = {
|
|||
unknown_error: 'Unknown error, please try again later.',
|
||||
select: 'Select',
|
||||
contact_us_action: 'Contact Us',
|
||||
description: 'Description',
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
const organization = {
|
||||
title: 'Organizations',
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
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_permissions: 'Organization permissions',
|
||||
create_organization_permission: 'Create organization permission',
|
||||
create_permission: 'Create permission',
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
permission: 'Permission',
|
||||
permission_other: 'Permissions',
|
||||
organization_roles: 'Organization roles',
|
||||
create_organization_role: 'Create organization role',
|
||||
role: 'Role',
|
||||
create_role: 'Create role',
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
edit_role: 'Edit role',
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organization);
|
|
@ -23,7 +23,7 @@ const sign_up_and_sign_in = {
|
|||
sign_in_identifier_and_auth: 'Identifier and authentication settings for sign-in',
|
||||
description:
|
||||
'Users can sign in using any of the options available. Adjust the layout by drag and dropping below options.',
|
||||
add_sign_in_method: 'Add Sign-in Method',
|
||||
add_sign_in_method: 'Add sign-in method',
|
||||
password_auth: 'Password',
|
||||
verification_code_auth: 'Verification code',
|
||||
auth_swap_tip: 'Swap the options below to determine which appears first in the flow.',
|
||||
|
|
|
@ -6,6 +6,7 @@ const tabs = {
|
|||
sign_in_experience: 'Sign-in experience',
|
||||
connectors: 'Connectors',
|
||||
webhooks: 'Webhooks',
|
||||
organizations: 'Organizations',
|
||||
users: 'User management',
|
||||
audit_logs: 'Audit logs',
|
||||
roles: 'Roles',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: 'Copiado',
|
||||
required: 'Requerido',
|
||||
add_another: 'Agregar Otro',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: '¿Está seguro que desea eliminar este {{title}}?',
|
||||
settings_nav: 'Configuración',
|
||||
unsaved_changes_warning:
|
||||
|
@ -58,6 +60,10 @@ const general = {
|
|||
unknown_error: 'Error desconocido, por favor inténtalo de nuevo más tarde.',
|
||||
select: 'Seleccionar',
|
||||
contact_us_action: 'Contáctanos',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: 'Experiencia de inicio de sesión',
|
||||
connectors: 'Conectores',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: 'Gestión de usuarios',
|
||||
audit_logs: 'Registros de auditoría',
|
||||
roles: 'Roles',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: 'Copié',
|
||||
required: 'Requis',
|
||||
add_another: 'Ajouter un autre',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: 'Êtes-vous sûr de vouloir supprimer ce {{title}} ?',
|
||||
settings_nav: 'Paramètres',
|
||||
unsaved_changes_warning:
|
||||
|
@ -58,6 +60,10 @@ const general = {
|
|||
unknown_error: 'Erreur inconnue, veuillez réessayer ultérieurement.',
|
||||
select: 'Sélectionner',
|
||||
contact_us_action: 'Nous contacter',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: 'Expérience de connexion',
|
||||
connectors: 'Connecteurs',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: 'Gestion des utilisateurs',
|
||||
audit_logs: "Journaux d'audit",
|
||||
roles: 'Roles',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: 'Copiato',
|
||||
required: 'Obbligatorio',
|
||||
add_another: 'Aggiungi un altro',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: 'Sei sicuro di voler eliminare questo {{title}}?',
|
||||
settings_nav: 'Impostazioni',
|
||||
unsaved_changes_warning:
|
||||
|
@ -58,6 +60,10 @@ const general = {
|
|||
unknown_error: 'Errore sconosciuto, riprova più tardi.',
|
||||
select: 'Seleziona',
|
||||
contact_us_action: 'Contattaci',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: 'Esperienza di accesso',
|
||||
connectors: 'Connettori',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: 'Gestione utenti',
|
||||
audit_logs: 'Registri di verifica',
|
||||
roles: 'Ruoli',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: 'コピーされました',
|
||||
required: '必須',
|
||||
add_another: 'もう一つ追加',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: '{{title}}を削除してよろしいですか?',
|
||||
settings_nav: '設定',
|
||||
unsaved_changes_warning: '変更を加えました。このページを離れてもよろしいですか?',
|
||||
|
@ -57,6 +59,10 @@ const general = {
|
|||
unknown_error: '不明なエラーが発生しました。後で再試行してください。',
|
||||
select: '選択する',
|
||||
contact_us_action: 'お問い合わせ',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: 'サインイン',
|
||||
connectors: 'コネクタ',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: 'ユーザー管理',
|
||||
audit_logs: '監査ログ',
|
||||
roles: '役割',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: '복사됨',
|
||||
required: '필수',
|
||||
add_another: '새로 추가',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: '정말로 {{title}}을/를 삭제할까요?',
|
||||
settings_nav: '설정',
|
||||
unsaved_changes_warning: '수정된 내용이 있어요. 정말로 현재 페이지를 벗어날까요?',
|
||||
|
@ -57,6 +59,10 @@ const general = {
|
|||
unknown_error: '알 수 없는 오류가 발생했습니다. 나중에 다시 시도해주세요.',
|
||||
select: '선택',
|
||||
contact_us_action: '문의하기',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: '로그인 경험',
|
||||
connectors: '연동',
|
||||
webhooks: '웹훅',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: '사용자 관리',
|
||||
audit_logs: '감사 기록',
|
||||
roles: '역할',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: 'Skopiowano',
|
||||
required: 'Wymagane',
|
||||
add_another: 'Dodaj kolejny',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: 'Czy na pewno chcesz usunąć {{title}}?',
|
||||
settings_nav: 'Ustawienia',
|
||||
unsaved_changes_warning: 'Wprowadzono zmiany. Czy na pewno chcesz opuścić tę stronę?',
|
||||
|
@ -57,6 +59,10 @@ const general = {
|
|||
unknown_error: 'Nieznany błąd, spróbuj ponownie później.',
|
||||
select: 'Wybierz',
|
||||
contact_us_action: 'Skontaktuj się z nami',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: 'Doświadczenie przy logowaniu',
|
||||
connectors: 'Konnektory',
|
||||
webhooks: 'Webhooki',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: 'Zarządzanie użytkownikami',
|
||||
audit_logs: 'Dzienniki audytu',
|
||||
roles: 'Role',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: 'Copiado',
|
||||
required: 'Obrigatório',
|
||||
add_another: 'Adicionar outro',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: 'Tem certeza de que deseja excluir este {{title}}?',
|
||||
settings_nav: 'Configurações',
|
||||
unsaved_changes_warning:
|
||||
|
@ -58,6 +60,10 @@ const general = {
|
|||
unknown_error: 'Erro desconhecido, por favor tente novamente mais tarde.',
|
||||
select: 'Selecionar',
|
||||
contact_us_action: 'Contate-nos',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: 'Experiência de login',
|
||||
connectors: 'Conectores',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: 'Usuários',
|
||||
audit_logs: 'Logs',
|
||||
roles: 'Registros',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: 'Copiado',
|
||||
required: 'Obrigatório',
|
||||
add_another: 'Adicionar outro',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: 'Tem a certeza que deseja eliminar isso {{title}}?',
|
||||
settings_nav: 'Definições',
|
||||
unsaved_changes_warning: 'Fez algumas alterações. Tem a certeza que deseja sair desta página?',
|
||||
|
@ -57,6 +59,10 @@ const general = {
|
|||
unknown_error: 'Erro desconhecido, por favor tente novamente mais tarde.',
|
||||
select: 'Selecionar',
|
||||
contact_us_action: 'Contacte-nos',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: 'Experiência de login',
|
||||
connectors: 'Conectores',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: 'Gestão de utilizadores',
|
||||
audit_logs: 'Registos de auditoria',
|
||||
roles: 'Papéis',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: 'Скопировано',
|
||||
required: 'Обязательное',
|
||||
add_another: 'Добавить ещё',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: 'Вы действительно хотите удалить этот {{title}}?',
|
||||
settings_nav: 'Настройки',
|
||||
unsaved_changes_warning: 'Вы внесли изменения. Вы действительно хотите покинуть эту страницу?',
|
||||
|
@ -57,6 +59,10 @@ const general = {
|
|||
unknown_error: 'Неизвестная ошибка, пожалуйста, попробуйте позже.',
|
||||
select: 'Выбрать',
|
||||
contact_us_action: 'Связаться с нами',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: 'Опыт входа в систему',
|
||||
connectors: 'Коннекторы',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: 'Управление пользователями',
|
||||
audit_logs: 'Журналы аудита',
|
||||
roles: 'Роли',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: 'Kopyalandı',
|
||||
required: 'Gerekli',
|
||||
add_another: 'Bir tane daha ekle',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: 'Bu dosyayı silmek istediğinize emin misiniz: {{title}}?',
|
||||
settings_nav: 'Ayarlar',
|
||||
unsaved_changes_warning:
|
||||
|
@ -58,6 +60,10 @@ const general = {
|
|||
unknown_error: 'Bilinmeyen hata, lütfen daha sonra tekrar deneyin.',
|
||||
select: 'Seç',
|
||||
contact_us_action: 'Bizimle İletişime Geçin',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: 'Oturum Açma Deneyimi',
|
||||
connectors: 'Connectors',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: 'Kullanıcı Yönetimi',
|
||||
audit_logs: 'Denetim Kayıtları',
|
||||
roles: 'Roller',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: '已复制',
|
||||
required: '必填',
|
||||
add_another: '新增',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: '你确定要删除这个 {{title}} 吗?',
|
||||
settings_nav: '设置',
|
||||
unsaved_changes_warning: '还有未保存的变更, 确定要离开吗?',
|
||||
|
@ -57,6 +59,10 @@ const general = {
|
|||
unknown_error: '未知错误,请稍后重试。',
|
||||
select: '选择',
|
||||
contact_us_action: '联系我们',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: '登录体验',
|
||||
connectors: '连接器',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: '用户管理',
|
||||
audit_logs: '审计日志',
|
||||
roles: '角色',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: '已複製',
|
||||
required: '必填',
|
||||
add_another: '新增',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: '你確定要刪除這個 {{title}} 嗎?',
|
||||
settings_nav: '設置',
|
||||
unsaved_changes_warning: '還有未儲存的變更, 確定要離開嗎?',
|
||||
|
@ -57,6 +59,10 @@ const general = {
|
|||
unknown_error: '未知錯誤,請稍後重試。',
|
||||
select: '選擇',
|
||||
contact_us_action: '聯絡我們',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: '登錄體驗',
|
||||
connectors: '連接器',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: '用戶管理',
|
||||
audit_logs: '審計日誌',
|
||||
roles: '角色',
|
||||
|
|
|
@ -33,6 +33,8 @@ const general = {
|
|||
copied: '已複製',
|
||||
required: '必填',
|
||||
add_another: '新增',
|
||||
/** UNTRANSLATED */
|
||||
create_another: 'Create another',
|
||||
deletion_confirmation: '你確定要刪除這個 {{title}} 嗎?',
|
||||
settings_nav: '設置',
|
||||
unsaved_changes_warning: '還有未儲存的變更, 確定要離開嗎?',
|
||||
|
@ -57,6 +59,10 @@ const general = {
|
|||
unknown_error: '未知錯誤,請稍後重試。',
|
||||
select: '選擇',
|
||||
contact_us_action: '聯絡我們',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Description',
|
||||
/** UNTRANSLATED */
|
||||
name: 'Name',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -17,6 +17,7 @@ import log_details from './log-details.js';
|
|||
import logs from './logs.js';
|
||||
import menu from './menu.js';
|
||||
import mfa from './mfa.js';
|
||||
import organizations from './organizations.js';
|
||||
import permissions from './permissions.js';
|
||||
import profile from './profile.js';
|
||||
import role_details from './role-details.js';
|
||||
|
@ -75,6 +76,7 @@ const admin_console = {
|
|||
upsell,
|
||||
guide,
|
||||
mfa,
|
||||
organizations,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
const organizations = {
|
||||
/** UNTRANSLATED */
|
||||
title: 'Organizations',
|
||||
/** UNTRANSLATED */
|
||||
subtitle:
|
||||
'Represent the teams, business customers, and partner companies that access your applications as organizations.',
|
||||
/** 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_permissions: 'Organization permissions',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_permission: 'Create organization permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission: 'Create permission',
|
||||
/** UNTRANSLATED */
|
||||
create_permission_placeholder: 'Read appointment history.',
|
||||
/** UNTRANSLATED */
|
||||
permission: 'Permission',
|
||||
/** UNTRANSLATED */
|
||||
permission_other: 'Permissions',
|
||||
/** UNTRANSLATED */
|
||||
organization_roles: 'Organization roles',
|
||||
/** UNTRANSLATED */
|
||||
create_organization_role: 'Create organization role',
|
||||
/** UNTRANSLATED */
|
||||
role: 'Role',
|
||||
/** UNTRANSLATED */
|
||||
create_role: 'Create role',
|
||||
/** UNTRANSLATED */
|
||||
create_role_placeholder: 'Users with view-only permissions.',
|
||||
/** UNTRANSLATED */
|
||||
search_permission_placeholder: 'Type to search for permissions.',
|
||||
/** UNTRANSLATED */
|
||||
edit_role: 'Edit role',
|
||||
/** UNTRANSLATED */
|
||||
delete_role: 'Delete role',
|
||||
};
|
||||
|
||||
export default Object.freeze(organizations);
|
|
@ -6,6 +6,8 @@ const tabs = {
|
|||
sign_in_experience: '登入體驗',
|
||||
connectors: '連接器',
|
||||
webhooks: 'Webhooks',
|
||||
/** UNTRANSLATED */
|
||||
organizations: 'Organizations',
|
||||
users: '使用者管理',
|
||||
audit_logs: '稽核日誌',
|
||||
roles: '角色',
|
||||
|
|
Loading…
Add table
Reference in a new issue