mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
feat(phrases): add i18n phrases for private token rotation feature
This commit is contained in:
parent
f01ada5760
commit
11fbfa5d99
15 changed files with 749 additions and 2 deletions
|
@ -60,6 +60,57 @@ const tenants = {
|
|||
description_2:
|
||||
'Wenn Sie weitere Informationen wünschen, Bedenken haben oder die volle Funktionalität wiederherstellen und Ihre Mieter entsperren möchten, zögern Sie nicht, uns umgehend zu kontaktieren.',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -13,7 +13,7 @@ const tenants = {
|
|||
tenant_name: 'Tenant Name',
|
||||
environment_tag: 'Environment Tag',
|
||||
environment_tag_description:
|
||||
'Tags don’t alter the service. They simply guide you to differentiate various environments.',
|
||||
"Tags don't alter the service. They simply guide you to differentiate various environments.",
|
||||
environment_tag_development: 'Dev',
|
||||
environment_tag_staging: 'Staging',
|
||||
environment_tag_production: 'Prod',
|
||||
|
@ -43,7 +43,7 @@ const tenants = {
|
|||
delete_button: 'Permanently delete',
|
||||
},
|
||||
tenant_landing_page: {
|
||||
title: 'You haven’t created a tenant yet',
|
||||
title: "You haven't created a tenant yet",
|
||||
description:
|
||||
'To start configuring your project with Logto, please create a new tenant. If you need to log out or delete your account, just click on the avatar button in the top right corner.',
|
||||
create_tenant_button: 'Create tenant',
|
||||
|
@ -60,6 +60,39 @@ const tenants = {
|
|||
description_2:
|
||||
'If you require further clarification, have any concerns, or wish to restore full functionality and unblock your tenants, please do not hesitate to contact us immediately.',
|
||||
},
|
||||
signing_keys: {
|
||||
title: 'SIGNING KEYS',
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
private_key: 'OIDC private keys',
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
id: 'ID',
|
||||
status: 'Status',
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
current: 'Current',
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
tokens: 'JWT tokens',
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -60,6 +60,57 @@ const tenants = {
|
|||
description_2:
|
||||
'Si necesita aclaraciones adicionales, tiene alguna inquietud o desea restaurar la funcionalidad completa y desbloquear sus inquilinos, no dude en contactarnos de inmediato.',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -60,6 +60,57 @@ const tenants = {
|
|||
description_2:
|
||||
'If you require further clarification, have any concerns, or wish to restore full functionality and unblock your tenants, please do not hesitate to contact us immediately.',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -61,6 +61,57 @@ const tenants = {
|
|||
description_2:
|
||||
'Se necessiti ulteriori chiarimenti, hai qualche preoccupazione o desideri ripristinare la funzionalità completa e sbloccare i tuoi tenant, ti preghiamo di contattarci immediatamente.',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -60,6 +60,57 @@ const tenants = {
|
|||
description_2:
|
||||
'詳細な説明や懸念事項がある場合、または機能を完全に復元しテナントをアンブロックする場合は、直ちにお問い合わせください。',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -60,6 +60,57 @@ const tenants = {
|
|||
description_2:
|
||||
'자세한 설명이 필요한 경우, 우려 사항이 있거나 기능을 완전히 복원하고 테넌트를 차단 해제하려면 바로 연락 주시기 바랍니다.',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -60,6 +60,57 @@ const tenants = {
|
|||
description_2:
|
||||
'Jeśli potrzebujesz dalszych wyjaśnień, masz jakiekolwiek obawy lub chcesz przywrócić pełną funkcjonalność i odblokować swoje najemce, nie wahaj się skontaktować z nami natychmiast.',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -60,6 +60,57 @@ const tenants = {
|
|||
description_2:
|
||||
'Se você precisa de mais esclarecimentos, tem alguma preocupação ou deseja restaurar a funcionalidade total e desbloquear seus locatários, não hesite em entrar em contato conosco imediatamente.',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -60,6 +60,57 @@ const tenants = {
|
|||
description_2:
|
||||
'Se precisar de mais esclarecimentos, tiver alguma preocupação ou desejar restaurar a funcionalidade completa e desbloquear os seus inquilinos, não hesite em contactar-nos imediatamente.',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -60,6 +60,57 @@ const tenants = {
|
|||
description_2:
|
||||
'Если вам нужна дополнительная информация или у вас возникли какие-либо вопросы или вы хотите восстановить полную функциональность и разблокировать своих арендаторов, не стесняйтесь немедленно связаться с нами.',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -60,6 +60,57 @@ const tenants = {
|
|||
description_2:
|
||||
'Daha fazla açıklama, endişeleriniz veya işlevselliği tamamen geri yüklemek ve kiracılarınızı engellemek isterseniz, lütfen derhal bizimle iletişime geçmekten çekinmeyin.',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -57,6 +57,57 @@ const tenants = {
|
|||
description_2:
|
||||
'如果您需要进一步澄清、有任何疑虑或希望恢复全部功能并解锁您的租户,请立即联系我们。',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -57,6 +57,57 @@ const tenants = {
|
|||
description_2:
|
||||
'如果您需要進一步了解,有任何疑慮或希望恢復完整功能並解鎖您的租戶,請立即與我們聯繫。',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
|
@ -57,6 +57,57 @@ const tenants = {
|
|||
description_2:
|
||||
'如果您需要進一步的說明、有任何疑慮或希望恢復全部功能並解鎖您的租戶,請立即聯絡我們。',
|
||||
},
|
||||
signing_keys: {
|
||||
/** UNTRANSLATED */
|
||||
title: 'SIGNING KEYS',
|
||||
/** UNTRANSLATED */
|
||||
description: 'Securely manage signing keys in your tenant.',
|
||||
type: {
|
||||
/** UNTRANSLATED */
|
||||
private_key: 'OIDC private keys',
|
||||
/** UNTRANSLATED */
|
||||
cookie_key: 'OIDC cookie keys',
|
||||
},
|
||||
/** UNTRANSLATED */
|
||||
private_keys_in_use: 'Private keys in use',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys: 'Rotate private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_private_keys_description:
|
||||
'This will rotate the currently used private keys. Your {{entities}} with previous private keys will stay valid until you delete it.',
|
||||
/** UNTRANSLATED */
|
||||
select_private_key_algorithm: 'Select signing key algorithm for private keys',
|
||||
/** UNTRANSLATED */
|
||||
rotate_button: 'Rotate',
|
||||
table_column: {
|
||||
/** UNTRANSLATED */
|
||||
id: 'ID',
|
||||
/** UNTRANSLATED */
|
||||
status: 'Status',
|
||||
/** UNTRANSLATED */
|
||||
algorithm: 'Signing key algorithm',
|
||||
},
|
||||
status: {
|
||||
/** UNTRANSLATED */
|
||||
current: 'Current',
|
||||
/** UNTRANSLATED */
|
||||
previous: 'Previous',
|
||||
},
|
||||
reminder: {
|
||||
/** UNTRANSLATED */
|
||||
rotate:
|
||||
'Are you sure you want to rotate the <strong>{{key}}</strong>? This will require all your apps and APIs to use the new signing key. Existing {{entities}} stay valid until you rotate again.',
|
||||
/** UNTRANSLATED */
|
||||
delete:
|
||||
'Are you sure you want to delete the <strong>{{key}}</strong>? Existing {{entities}} signed with this signing key will no longer be valid.',
|
||||
},
|
||||
signed_entity: {
|
||||
/** UNTRANSLATED */
|
||||
tokens: 'JWT tokens',
|
||||
/** UNTRANSLATED */
|
||||
cookies: 'cookies',
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default Object.freeze(tenants);
|
||||
|
|
Loading…
Reference in a new issue