mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
chore(phrases): add i18n phrases for console invitation interim pages (#5553)
This commit is contained in:
parent
8d14c87652
commit
4766d224d9
45 changed files with 352 additions and 0 deletions
|
@ -70,6 +70,8 @@ const general = {
|
|||
edit_field: 'Bearbeite {{field}}',
|
||||
delete_field: 'Lösche {{field}}',
|
||||
coming_soon: 'Demnächst verfügbar',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -67,6 +67,7 @@ const general = {
|
|||
edit_field: 'Edit {{field}}',
|
||||
delete_field: 'Delete {{field}}',
|
||||
coming_soon: 'Coming soon',
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
const invitation = {
|
||||
find_your_tenants: 'Find your tenants',
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
switch_account: 'Sign in to another account',
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -70,6 +70,8 @@ const general = {
|
|||
edit_field: 'Editar {{field}}',
|
||||
delete_field: 'Eliminar {{field}}',
|
||||
coming_soon: 'Próximamente',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -70,6 +70,8 @@ const general = {
|
|||
edit_field: 'Modifier {{field}}',
|
||||
delete_field: 'Supprimer {{field}}',
|
||||
coming_soon: 'Bientôt disponible',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -70,6 +70,8 @@ const general = {
|
|||
edit_field: 'Modifica {{field}}',
|
||||
delete_field: 'Elimina {{field}}',
|
||||
coming_soon: 'Prossimamente',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -69,6 +69,8 @@ const general = {
|
|||
edit_field: '{{field}}を編集',
|
||||
delete_field: '{{field}}を削除',
|
||||
coming_soon: '近日公開予定',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -69,6 +69,8 @@ const general = {
|
|||
edit_field: '{{field}} 편집',
|
||||
delete_field: '{{field}} 삭제',
|
||||
coming_soon: '곧 출시 예정',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -69,6 +69,8 @@ const general = {
|
|||
edit_field: 'Edytuj {{field}}',
|
||||
delete_field: 'Usuń {{field}}',
|
||||
coming_soon: 'Wkrótce dostępne',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -70,6 +70,8 @@ const general = {
|
|||
edit_field: 'Editar {{field}}',
|
||||
delete_field: 'Excluir {{field}}',
|
||||
coming_soon: 'Em breve',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -69,6 +69,8 @@ const general = {
|
|||
edit_field: 'Editar {{field}}',
|
||||
delete_field: 'Eliminar {{field}}',
|
||||
coming_soon: 'Em breve',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -69,6 +69,8 @@ const general = {
|
|||
edit_field: 'Изменить {{field}}',
|
||||
delete_field: 'Удалить {{field}}',
|
||||
coming_soon: 'Скоро',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -70,6 +70,8 @@ const general = {
|
|||
edit_field: '{{field}} Düzenle',
|
||||
delete_field: '{{field}} Sil',
|
||||
coming_soon: 'Yakında',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -69,6 +69,8 @@ const general = {
|
|||
edit_field: '编辑{{field}}',
|
||||
delete_field: '删除{{field}}',
|
||||
coming_soon: '即将上线',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -69,6 +69,8 @@ const general = {
|
|||
edit_field: '編輯{{field}}',
|
||||
delete_field: '刪除{{field}}',
|
||||
coming_soon: '即將推出',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
|
@ -69,6 +69,8 @@ const general = {
|
|||
edit_field: '編輯{{field}}',
|
||||
delete_field: '刪除{{field}}',
|
||||
coming_soon: '即將上線',
|
||||
/** UNTRANSLATED */
|
||||
or: 'Or',
|
||||
};
|
||||
|
||||
export default Object.freeze(general);
|
||||
|
|
|
@ -15,6 +15,7 @@ import errors from './errors.js';
|
|||
import general from './general.js';
|
||||
import get_started from './get-started.js';
|
||||
import guide from './guide.js';
|
||||
import invitation from './invitation.js';
|
||||
import jwt_claims from './jwt-claims.js';
|
||||
import log_details from './log-details.js';
|
||||
import logs from './logs.js';
|
||||
|
@ -89,6 +90,7 @@ const admin_console = {
|
|||
organization_details,
|
||||
protected_app,
|
||||
jwt_claims,
|
||||
invitation,
|
||||
};
|
||||
|
||||
export default Object.freeze(admin_console);
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
const invitation = {
|
||||
/** UNTRANSLATED */
|
||||
find_your_tenants: 'Find your tenants',
|
||||
/** UNTRANSLATED */
|
||||
find_tenants_description:
|
||||
'Your email address may already be registered with multiple tenants. You can choose to join the existing ones or continue create a new one.',
|
||||
/** UNTRANSLATED */
|
||||
create_new_tenant: 'Create a new tenant',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_title: 'You are currently signed in as\n{{email}}.',
|
||||
/** UNTRANSLATED */
|
||||
email_not_match_description:
|
||||
'You do not currently have access to this organization.\nPlease sign in with the correct account to accept the invitation and become a member of the organization.',
|
||||
/** UNTRANSLATED */
|
||||
switch_account: 'Sign in to another account',
|
||||
/** UNTRANSLATED */
|
||||
invalid_invitation_status: 'Invalid invitation. Please contact the administrator and try again.',
|
||||
};
|
||||
|
||||
export default Object.freeze(invitation);
|
Loading…
Reference in a new issue