0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-17 22:04:19 -05:00

refactor(console): update phrases on the tenant creation modal (#4904)

This commit is contained in:
Xiao Yijun 2023-11-17 14:40:18 +08:00 committed by GitHub
parent edb2bdccec
commit c10fb6ac37
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 109 additions and 70 deletions

View file

@ -14,10 +14,28 @@
.description {
font: var(--font-body-2);
color: var(--color-text-secondary);
// Responsive rules:
// - If the page width is greater than 700px, fix it to 2 lines.
// - If the page width is between 540px and 700px, fix it to 3 lines.
// - If the page width is less than 540px, fix it to 4 lines.
// - Contents that exceed the number of lines are replaced with ellipsis.
@include _.multi-line-ellipsis(2);
height: 40px;
@media screen and (max-width: 700px) {
height: 60px;
@include _.multi-line-ellipsis(3);
}
@media screen and (max-width: 540px) {
height: 80px;
@include _.multi-line-ellipsis(4);
}
}
.hint {
font: var(--font-body-3);
font: var(--font-body-2);
}
.planNameTag {

View file

@ -43,12 +43,13 @@ const tenants = {
subtitle:
'Erstellen Sie einen neuen Mandanten mit isolierten Ressourcen und Benutzern. Die gehosteten Datenregionen und Mandantentypen können nach der Erstellung nicht geändert werden.',
tenant_usage_purpose: 'Wofür möchten Sie diesen Mieter verwenden?',
/** UNTRANSLATED */
development_description:
'Die Entwicklungsumgebung wird hauptsächlich zum Testen verwendet und sollte nicht in einer Produktionsumgebung verwendet werden.',
development_hint:
'Die Entwicklungsumgebung wird hauptsächlich zum Testen verwendet und sollte nicht in einer Produktionsumgebung verwendet werden.',
production_description:
'Produktion ist der Ort, an dem Live-Software von Endbenutzern verwendet wird und möglicherweise ein kostenpflichtiges Abonnement erfordert.',
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Verfügbare Pläne:',
create_button: 'Mieter erstellen',
tenant_name_placeholder: 'Mein Mieter',

View file

@ -42,11 +42,9 @@ const tenants = {
'Create a new tenant that has isolated resources and users. Data hosted region and tenant types cant be modified after creation.',
tenant_usage_purpose: 'What do you want to use this tenant for?',
development_description:
'Development environment is mainly used for testing and should not use in production environment.',
development_hint:
'Development environment is mainly used for testing and should not use in production environment.',
production_description:
'Production is where live software is used by end-users and may require a paid subscription.',
"For testing only and shouldn't be used in production. No subscription is required.",
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Available plan:',
create_button: 'Create tenant',
tenant_name_placeholder: 'My tenant',

View file

@ -43,12 +43,13 @@ const tenants = {
subtitle:
'Cree un nuevo inquilino que tenga recursos y usuarios aislados. La región de datos alojados y los tipos de inquilinos no se pueden modificar después de la creación.',
tenant_usage_purpose: '¿Para qué desea usar este inquilino?',
/** UNTRANSLATED */
development_description:
'El entorno de desarrollo se utiliza principalmente para pruebas y no debe utilizarse en el entorno de producción.',
development_hint:
'El entorno de desarrollo se utiliza principalmente para pruebas y no debe utilizarse en el entorno de producción.',
production_description:
'Producción es donde se utiliza software en vivo por los usuarios finales y puede requerir una suscripción de pago.',
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Plan disponible:',
create_button: 'Crear inquilino',
tenant_name_placeholder: 'Mi inquilino',

View file

@ -44,12 +44,13 @@ const tenants = {
subtitle:
"Créez un nouveau locataire disposant de ressources et d'utilisateurs isolés. Les régions de données hébergées et les types de locataires ne peuvent pas être modifiés après la création.",
tenant_usage_purpose: 'Dans quel but souhaitez-vous utiliser ce locataire?',
/** UNTRANSLATED */
development_description:
"L'environnement de développement est principalement utilisé pour les tests et ne doit pas être utilisé dans un environnement de production.",
development_hint:
"L'environnement de développement est principalement utilisé pour les tests et ne doit pas être utilisé dans un environnement de production.",
production_description:
"La production est l'endroit où le logiciel en direct est utilisé par les utilisateurs finaux et peut nécessiter un abonnement payant.",
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Plan disponible :',
create_button: 'Créer un locataire',
tenant_name_placeholder: 'Mon locataire',

View file

@ -43,12 +43,13 @@ const tenants = {
subtitle:
'Crea un nuovo inquilino con risorse e utenti isolati. Le regioni dei dati ospitati e i tipi di inquilino non possono essere modificati dopo la creazione.',
tenant_usage_purpose: 'Per cosa desideri utilizzare questo tenant?',
/** UNTRANSLATED */
development_description:
"L'ambiente di sviluppo viene principalmente utilizzato per i test e non dovrebbe essere utilizzato nell'ambiente di produzione.",
development_hint:
"L'ambiente di sviluppo viene principalmente utilizzato per i test e non deve essere utilizzato nell'ambiente di produzione.",
production_description:
'La produzione è dove il software in uso dagli utenti finali e potrebbe richiedere un abbonamento a pagamento.',
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Piano disponibile:',
create_button: 'Crea tenant',
tenant_name_placeholder: 'Il mio tenant',

View file

@ -41,12 +41,13 @@ const tenants = {
subtitle:
'分離されたリソースとユーザーを持つ新しいテナントを作成します。データがホストされる地域とテナントの種類は作成後に変更できません。',
tenant_usage_purpose: 'What do you want to use this tenant for?',
/** UNTRANSLATED */
development_description:
'Development environment is mainly used for testing and should not use in production environment.',
development_hint:
'Development environment is mainly used for testing and should not use in production environment.',
production_description:
'Production is where live software is used by end-users and may require a paid subscription.',
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Available plan:',
create_button: 'テナントを作成する',
tenant_name_placeholder: '私のテナント',

View file

@ -41,12 +41,13 @@ const tenants = {
subtitle:
'분리된 리소스와 사용자를 가진 새 테넌트를 만듭니다. 데이터가 호스팅되는 지역 및 테넌트 유형은 생성 후에 수정할 수 없습니다.',
tenant_usage_purpose: '이 테넌트를 사용하는 목적은 무엇입니까?',
/** UNTRANSLATED */
development_description:
'개발 환경은 주로 테스트 용도로 사용되며 프로덕션 환경에서 사용해서는 안됩니다.',
development_hint:
'개발 환경은 주로 테스트 용도로 사용되며 프로덕션 환경에서 사용해서는 안됩니다.',
production_description:
'프로덕션은 실제 사용자에 의해 사용되는 라이브 소프트웨어가 포함되며 유료 구독이 필요할 수 있습니다.',
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: '사용 가능한 요금제:',
create_button: '테넌트 만들기',
tenant_name_placeholder: '내 테넌트',

View file

@ -41,12 +41,13 @@ const tenants = {
subtitle:
'Utwórz nowego najemcę, który ma izolowane zasoby i użytkowników. Dane hostowanej regionu i typy najemców nie mogą być modyfikowane po utworzeniu.',
tenant_usage_purpose: 'Co chcesz zrobić z tym najemcą?',
/** UNTRANSLATED */
development_description:
'Środowisko development jest głównie przeznaczone do testowania i nie powinno być używane w środowisku produkcyjnym.',
development_hint:
'Środowisko development jest głównie przeznaczone do testowania i nie powinno być używane w środowisku produkcyjnym.',
production_description:
'Produkcja to miejsce, gdzie projekt jest używany przez użytkowników końcowych i może wymagać płatnej subskrypcji.',
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Dostępny plan:',
create_button: 'Utwórz najemcę',
tenant_name_placeholder: 'Mój najemca',

View file

@ -43,12 +43,13 @@ const tenants = {
subtitle:
'Crie um novo locatário que tenha recursos e usuários isolados. As regiões de dados hospedados e os tipos de locatário não podem ser modificados após a criação.',
tenant_usage_purpose: 'Para que você deseja usar este locatário?',
/** UNTRANSLATED */
development_description:
'O ambiente de desenvolvimento é usado principalmente para testes e não deve ser usado em um ambiente de produção.',
development_hint:
'O ambiente de desenvolvimento é usado principalmente para testes e não deve ser usado em um ambiente de produção.',
production_description:
'Produção é onde o software ao vivo é usado pelos usuários finais e pode exigir uma assinatura paga.',
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Plano disponível:',
create_button: 'Criar inquilino',
tenant_name_placeholder: 'Meu inquilino',

View file

@ -43,12 +43,13 @@ const tenants = {
subtitle:
'Crie um novo locatário que tenha recursos e utilizadores isolados. As regiões de dados hospedados e os tipos de locatário não podem ser modificados após a criação.',
tenant_usage_purpose: 'Para que pretende utilizar este inquilino?',
/** UNTRANSLATED */
development_description:
'O ambiente de desenvolvimento é principalmente utilizado para testes e não deve ser utilizado em ambiente de produção.',
development_hint:
'O ambiente de desenvolvimento é principalmente utilizado para testes e não deve ser utilizado em ambiente de produção.',
production_description:
'A produção é onde o software ao vivo é utilizado pelos utilizadores finais e pode exigir uma subscrição paga.',
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Plano disponível:',
create_button: 'Criar inquilino',
tenant_name_placeholder: 'Meu inquilino',

View file

@ -41,12 +41,13 @@ const tenants = {
subtitle:
'Создайте нового арендатора, чтобы разделить ресурсы и пользователей. Данные, размещенные в регионе, и типы арендаторов не могут быть изменены после создания.',
tenant_usage_purpose: 'Для чего вы хотите использовать этот арендатор?',
/** UNTRANSLATED */
development_description:
'Среда разработки в основном используется для тестирования и не должна использоваться в производственной среде.',
development_hint:
'Среда разработки в основном используется для тестирования и не должна использоваться в производственной среде.',
production_description:
'Производство - это место, где живое программное обеспечение используется конечными пользователями и может потребовать платной подписки.',
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Доступный план:',
create_button: 'Создать арендатора',
tenant_name_placeholder: 'Мой арендатор',

View file

@ -43,12 +43,13 @@ const tenants = {
subtitle:
'İzole kaynaklara ve kullanıcılara sahip yeni bir kiracı oluşturun. Verilerin barındırıldığı bölge ve kiracı türleri oluşturulduktan sonra değiştirilemez.',
tenant_usage_purpose: 'Bu kiracıyı ne için kullanmak istiyorsunuz?',
/** UNTRANSLATED */
development_description:
'Geliştirme ortamı genellikle test için kullanılır ve üretim ortamında kullanılmamalıdır.',
development_hint:
'Geliştirme ortamı genellikle test için kullanılır ve üretim ortamında kullanılmamalıdır.',
production_description:
'Prod, canlı yazılımın son kullanıcılar tarafından kullanıldığı ve ücretli bir aboneliğin gerekebileceği yerdir.',
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: 'Mevcut plan:',
create_button: 'Kiracı oluştur',
tenant_name_placeholder: 'Benim kiracım',

View file

@ -38,9 +38,13 @@ const tenants = {
subtitle_deprecated: '创建新的租户以分隔资源和用户。',
subtitle: '创建一个具有隔离资源和用户的新租户。数据托管的区域和租户类型在创建后无法修改。',
tenant_usage_purpose: '您想要使用此租户做什么?',
development_description: '开发环境主要用于测试,不应在生产环境中使用。',
development_hint: '开发环境主要用于测试,不应在生产环境中使用。',
production_description: '产品是最终用户使用的实际软件,可能需要付费订阅。',
/** UNTRANSLATED */
development_description:
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: '可用方案:',
create_button: '创建租户',
tenant_name_placeholder: '我的租户',

View file

@ -38,9 +38,13 @@ const tenants = {
subtitle_deprecated: '創建新租戶來區分資源及使用者。',
subtitle: '創建一個具有隔離資源和用戶的新租戶。數據托管的區域和租戶類型在創建後無法修改。',
tenant_usage_purpose: '您希望使用此租戶做什麼?',
development_description: '開發環境主要用於測試,不應在生產環境中使用。',
development_hint: '開發環境主要用於測試,不應在生產環境中使用。',
production_description: '生產環境用於最終用戶使用軟件,可能需要付費訂閱。',
/** UNTRANSLATED */
development_description:
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: '可用方案:',
create_button: '創建租戶',
tenant_name_placeholder: '我的租戶',

View file

@ -38,9 +38,13 @@ const tenants = {
subtitle_deprecated: '建立新租戶以區分資源和使用者。',
subtitle: '創建一個具有隔離資源和用戶的新租戶。數據托管的區域和租戶類型在創建後無法修改。',
tenant_usage_purpose: '您希望將此租戶用於什麼目的?',
development_description: '開發環境主要用於測試,不適用於生產環境。',
development_hint: '開發環境主要用於測試,不適用於生產環境。',
production_description: '產品環境用於最終用戶使用的即時軟體,可能需要付費訂閱。',
/** UNTRANSLATED */
development_description:
"For testing only and shouldn't be used in production. No subscription is required.",
/** UNTRANSLATED */
development_hint: 'It has all the pro features but has limitations like a sign-in banner.',
/** UNTRANSLATED */
production_description: 'For use by end-users and may require a paid subscription.',
available_plan: '可用方案:',
create_button: '建立租戶',
tenant_name_placeholder: '我的租戶',