feat: remove Clerk authentication code (#11711)

This commit is contained in:
YuTengjing 2026-01-23 14:41:22 +08:00 committed by GitHub
parent e999851592
commit 395595a2c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
127 changed files with 522 additions and 13364 deletions

View file

@ -79,6 +79,6 @@ t('common:save')
## Available Namespaces
auth, authError, changelog, chat, clerk, color, **common**, components, discover, editor, electron, error, file, home, hotkey, image, knowledgeBase, labs, marketAuth, memory, metadata, migration, modelProvider, models, oauth, onboarding, plugin, portal, providers, ragEval, **setting**, subscription, thread, tool, topic, welcome
auth, authError, changelog, chat, color, **common**, components, discover, editor, electron, error, file, home, hotkey, image, knowledgeBase, labs, marketAuth, memory, metadata, migration, modelProvider, models, oauth, onboarding, plugin, portal, providers, ragEval, **setting**, subscription, thread, tool, topic, welcome
**Most used:** `common` (shared UI), `chat` (chat features), `setting` (settings)

View file

@ -277,20 +277,6 @@ OPENAI_API_KEY=sk-xxxxxxxxx
# ########### Auth Service ##############
# #######################################
# Clerk related configurations
# Clerk public key and secret key
# NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=pk_live_xxxxxxxxxxx
# CLERK_SECRET_KEY=sk_live_xxxxxxxxxxxxxxxxxxxxxx
# you need to config the clerk webhook secret key if you want to use the clerk with database
# CLERK_WEBHOOK_SECRET=whsec_xxxxxxxxxxxxxxxxxxxxxx
# Clear allow origin https://clerk.com/docs/guides/dashboard/dns-domains/satellite-domains
# Authentication across different domains , use,to splite different origin
# NEXT_PUBLIC_CLERK_AUTH_ALLOW_ORIGINS='https://market.lobehub.com,https://lobehub.com'
# NextAuth related configurations
# NEXT_PUBLIC_ENABLE_NEXT_AUTH=1
# NEXT_AUTH_SECRET=

View file

@ -38,7 +38,6 @@ config.overrides = [
'mdx/code-blocks': false,
},
},
{
files: ['src/store/image/**/*', 'src/types/generation/**/*'],
rules: {
@ -48,6 +47,14 @@ config.overrides = [
'typescript-sort-keys/string-enum': 0,
},
},
// CLI scripts legitimately use process.exit() and async IIFE patterns
{
files: ['scripts/**/*'],
rules: {
'unicorn/no-process-exit': 0,
'unicorn/prefer-top-level-await': 0,
},
},
];
module.exports = config;

2
.npmrc
View file

@ -16,6 +16,4 @@ public-hoist-pattern[]=*semantic-release*
public-hoist-pattern[]=*stylelint*
public-hoist-pattern[]=@auth/core
public-hoist-pattern[]=@clerk/backend
public-hoist-pattern[]=@clerk/types
public-hoist-pattern[]=pdfjs-dist

View file

@ -32,10 +32,7 @@ FROM base AS builder
ARG USE_CN_MIRROR
ARG NEXT_PUBLIC_BASE_PATH
ARG NEXT_PUBLIC_ENABLE_BETTER_AUTH
ARG NEXT_PUBLIC_ENABLE_NEXT_AUTH
ARG NEXT_PUBLIC_ENABLE_CLERK_AUTH
ARG NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY
ARG NEXT_PUBLIC_SENTRY_DSN
ARG NEXT_PUBLIC_ANALYTICS_POSTHOG
ARG NEXT_PUBLIC_POSTHOG_HOST
@ -48,11 +45,7 @@ ARG FEATURE_FLAGS
ENV NEXT_PUBLIC_BASE_PATH="${NEXT_PUBLIC_BASE_PATH}" \
FEATURE_FLAGS="${FEATURE_FLAGS}"
ENV NEXT_PUBLIC_ENABLE_BETTER_AUTH="${NEXT_PUBLIC_ENABLE_BETTER_AUTH:-0}" \
NEXT_PUBLIC_ENABLE_NEXT_AUTH="${NEXT_PUBLIC_ENABLE_NEXT_AUTH:-1}" \
NEXT_PUBLIC_ENABLE_CLERK_AUTH="${NEXT_PUBLIC_ENABLE_CLERK_AUTH:-0}" \
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY="${NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY}" \
CLERK_WEBHOOK_SECRET="whsec_xxx" \
ENV NEXT_PUBLIC_ENABLE_NEXT_AUTH="${NEXT_PUBLIC_ENABLE_NEXT_AUTH:-0}" \
APP_URL="http://app.com" \
DATABASE_DRIVER="node" \
DATABASE_URL="postgres://postgres:password@localhost:5432/postgres" \
@ -142,8 +135,9 @@ COPY --from=builder /deps/node_modules/.pnpm /app/node_modules/.pnpm
COPY --from=builder /deps/node_modules/pg /app/node_modules/pg
COPY --from=builder /deps/node_modules/drizzle-orm /app/node_modules/drizzle-orm
# Copy server launcher
# Copy server launcher and shared scripts
COPY --from=builder /app/scripts/serverLauncher/startServer.js /app/startServer.js
COPY --from=builder /app/scripts/_shared /app/scripts/_shared
RUN <<'EOF'
set -e
@ -191,10 +185,6 @@ ENV KEY_VAULTS_SECRET="" \
ENV AUTH_SECRET="" \
AUTH_SSO_PROVIDERS=""
# Clerk
ENV CLERK_SECRET_KEY="" \
CLERK_WEBHOOK_SECRET=""
# S3
ENV NEXT_PUBLIC_S3_DOMAIN="" \
S3_PUBLIC_DOMAIN="" \

View file

@ -422,13 +422,11 @@ Regardless of which database you choose, LobeChat can provide you with an excell
### [Support Multi-User Management][docs-feat-auth]
LobeChat supports multi-user management and provides two main user authentication and management solutions to meet different needs:
LobeChat supports multi-user management and provides flexible user authentication solutions:
- **next-auth**: LobeChat integrates `next-auth`, a flexible and powerful identity verification library that supports multiple authentication methods, including OAuth, email login, credential login, etc. With `next-auth`, you can easily implement user registration, login, session management, social login, and other functions to ensure the security and privacy of user data.
- **Better Auth**: LobeChat integrates `Better Auth`, a modern and flexible authentication library that supports multiple authentication methods, including OAuth, email login, credential login, magic link, and more. With `Better Auth`, you can easily implement user registration, login, session management, social login, multi-factor authentication (MFA), and other functions to ensure the security and privacy of user data.
- [**Clerk**](https://go.clerk.com/exgqLG0): For users who need more advanced user management features, LobeChat also supports `Clerk`, a modern user management platform. `Clerk` provides richer functions, such as multi-factor authentication (MFA), user profile management, login activity monitoring, etc. With `Clerk`, you can get higher security and flexibility, and easily cope with complex user management needs.
Regardless of which user management solution you choose, LobeChat can provide you with an excellent user experience and powerful functional support.
- **next-auth**: LobeChat also supports `next-auth`, a widely-used identity verification library with extensive OAuth provider support and flexible session management options.
<div align="right">

View file

@ -411,13 +411,11 @@ LobeChat 支持同时使用服务端数据库和本地数据库。根据您的
### [支持多用户管理][docs-feat-auth]
LobeChat 支持多用户管理,提供了两种主要的用户认证和管理方案,以满足不同需求
LobeChat 支持多用户管理,提供了灵活的用户认证方案
- **next-auth**LobeChat 集成了 `next-auth`,一个灵活且强大的身份验证库,支持多种身份验证方式,包括 OAuth、邮件登录、凭证登录等。通过 `next-auth`,您可以轻松实现用户的注册、登录、会话管理以及社交登录等功能,确保用户数据的安全性和隐私性。
- **Better Auth**LobeChat 集成了 `Better Auth`,一个现代化且灵活的身份验证库,支持多种身份验证方式,包括 OAuth、邮件登录、凭证登录、魔法链接等。通过 `Better Auth`,您可以轻松实现用户的注册、登录、会话管理、社交登录、多因素认证 (MFA) 等功能,确保用户数据的安全性和隐私性。
- [**Clerk**](https://go.clerk.com/exgqLG0)对于需要更高级用户管理功能的用户LobeChat 还支持 `Clerk`,一个现代化的用户管理平台。`Clerk` 提供了更丰富的功能,如多因素认证 (MFA)、白名单、用户管理、登录活动监控等。通过 `Clerk`,您可以获得更高的安全性和灵活性,轻松应对生产级的用户管理需求。
您可以根据自己的需求,选择合适的用户管理方案。
- **next-auth**LobeChat 还支持 `next-auth`,一个广泛使用的身份验证库,具有丰富的 OAuth 提供商支持和灵活的会话管理选项。
<div align="right">

View file

@ -17,6 +17,4 @@ public-hoist-pattern[]=*semantic-release*
public-hoist-pattern[]=*stylelint*
public-hoist-pattern[]=@auth/core
public-hoist-pattern[]=@clerk/backend
public-hoist-pattern[]=@clerk/types
public-hoist-pattern[]=pdfjs-dist

View file

@ -24,15 +24,15 @@ This guide helps you migrate your existing Clerk-based LobeChat deployment to Be
- **Always backup your database first!** For Neon users, create a backup via [Fork Branch](https://neon.tech/docs/manage/branches#create-a-branch)
- LobeChat is not responsible for any data loss or issues that may occur during the migration process
- This guide is intended for users with development experience; not recommended for users without technical background
- If you have any questions, feel free to ask in our [Discord](https://discord.com/invite/AYFPHvv2jT) community
- If you have any questions, feel free to ask in our [Discord](https://discord.com/invite/AYFPHvv2jT) community or [GitHub Issue](https://github.com/lobehub/lobe-chat/issues/11707)
</Callout>
## Choose Your Migration Path
| Method | Best For | User Impact | Data Preserved |
| ------------------------------------- | -------------------------------- | --------------------- | ------------------------------ |
| [Simple Migration](#simple-migration) | Small deployments (\< 100 users) | Users reset passwords | Chat history, settings |
| [Full Migration](#full-migration) | Large deployments | Seamless for users | Everything including passwords |
| Method | Best For | User Impact | Data Preserved |
| ------------------------------------- | ------------------------------ | --------------------- | ------------------------------ |
| [Simple Migration](#simple-migration) | Small deployments (≤ 10 users) | Users reset passwords | Chat history, settings |
| [Full Migration](#full-migration) | Large deployments | Seamless for users | Everything including passwords |
## Simple Migration
@ -41,6 +41,8 @@ For small self-hosted deployments, the simplest approach is to let users reset t
<Callout type={'warning'}>
**Limitation**: This method loses SSO connection data. Use [Full Migration](#full-migration) to preserve SSO connections.
Although SSO connections are lost, users can manually re-link their social accounts from the Profile page after logging in with email and password.
**Example scenario**: If your previous account had two SSO accounts linked:
- Primary email (Google): `mail1@google.com`
@ -118,19 +120,13 @@ For larger deployments or when you need to preserve user passwords and SSO conne
<Callout type={'error'}>
**Important Notice**:
- **Always backup your database first!** For Neon users, create a backup via [Fork Branch](https://neon.tech/docs/manage/branches#create-a-branch)
- Migration scripts must be **run locally after cloning the repository**, not in the deployment environment
- Due to the high-risk nature of user data migration, **we do not provide automatic migration during deployment**
- Always use dry-run mode first to verify the script runs successfully before executing
- Always verify in a test environment before operating on production database
</Callout>
<Callout type={'warning'}>
**Before Migration**:
- Use a [Neon Fork Branch](https://neon.tech/docs/manage/branches#create-a-branch) to create a test database
- Use Clerk Development environment API keys
- Verify in test mode first, then switch to prod mode after confirming success
</Callout>
### Prerequisites
**Environment Requirements:**
@ -288,37 +284,10 @@ npx tsx scripts/clerk-to-betterauth/verify.ts
### Step 7: Configure Better Auth and Redeploy
After migration is complete, configure Better Auth environment variables and redeploy:
1. **Remove Clerk environment variables**:
```bash
# Remove these
# NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=xxx
# CLERK_SECRET_KEY=xxx
```
2. **Add Better Auth environment variables**:
```bash
# Required
AUTH_SECRET=your-secret-key # openssl rand -base64 32
# Optional: Configure SSO providers (example)
AUTH_SSO_PROVIDERS=google,github
AUTH_GOOGLE_ID=your-google-client-id
AUTH_GOOGLE_SECRET=your-google-client-secret
AUTH_GITHUB_ID=your-github-client-id
AUTH_GITHUB_SECRET=your-github-client-secret
# Optional: Configure email service (for password reset, email verification, etc.)
# See Authentication Service Configuration documentation for details
```
3. **Redeploy LobeChat**
After migration is complete, follow [Simple Migration - Step 2](#steps) to configure Better Auth environment variables and redeploy.
<Callout type={'tip'}>
For complete Better Auth configuration, see [Authentication Service Configuration](/docs/self-hosting/advanced/auth), including all supported SSO providers and email service configuration.
For complete Better Auth configuration, see [Authentication Service Configuration](/docs/self-hosting/advanced/auth).
</Callout>
## What Gets Migrated

View file

@ -22,15 +22,15 @@ tags:
- **务必先备份数据库**!如使用 Neon可通过 [Fork 分支](https://neon.tech/docs/manage/branches#create-a-branch) 创建备份
- 迁移过程中可能出现的任何数据丢失或问题LobeChat 概不负责
- 本指南适合有一定开发背景的用户,不建议无技术经验的用户自行操作
- 如有任何疑问,欢迎到 [Discord](https://discord.com/invite/AYFPHvv2jT) 社区提问
- 如有任何疑问,欢迎到 [Discord](https://discord.com/invite/AYFPHvv2jT) 社区或 [GitHub Issue](https://github.com/lobehub/lobe-chat/issues/11707) 提问
</Callout>
## 选择迁移方式
| 方式 | 适用场景 | 用户影响 | 数据保留 |
| ------------- | --------------- | ------- | -------- |
| [简单迁移](#简单迁移) | 小型部署(\< 100 用户) | 用户需重置密码 | 聊天记录、设置 |
| [完整迁移](#完整迁移) | 大型部署 | 对用户无感知 | 全部数据包括密码 |
| 方式 | 适用场景 | 用户影响 | 数据保留 |
| ------------- | ------------- | ------- | -------- |
| [简单迁移](#简单迁移) | 小型部署(≤ 10 用户) | 用户需重置密码 | 聊天记录、设置 |
| [完整迁移](#完整迁移) | 大型部署 | 对用户无感知 | 全部数据包括密码 |
## 简单迁移
@ -39,6 +39,8 @@ tags:
<Callout type={'warning'}>
**限制**:此方法会丢失 SSO 连接数据。如需保留 SSO 连接,请使用 [完整迁移](#完整迁移)。
虽然 SSO 连接会丢失,但用户可以在使用邮箱密码登录后,通过个人资料页手动重新绑定社交账号。
**示例场景**:假设你之前的账户绑定了两个 SSO 账户:
- 主邮箱Google`mail1@google.com`
@ -113,19 +115,13 @@ tags:
<Callout type={'error'}>
**重要说明**
- **务必先备份数据库**!如使用 Neon可通过 [Fork 分支](https://neon.tech/docs/manage/branches#create-a-branch) 创建备份
- 迁移脚本需要 **clone 仓库后在本地运行**,不是在部署环境中执行
- 由于迁移涉及用户数据,风险较高,**官方不提供部署时自动迁移功能**
- 请务必先使用 dry-run 模式测试脚本能够顺利运行再正式执行
- 请务必在测试环境验证后再操作生产数据库
</Callout>
<Callout type={'warning'}>
**迁移前准备**
- 使用 [Neon Fork 分支](https://neon.tech/docs/manage/branches#create-a-branch) 创建测试数据库
- 使用 Clerk Development 环境的 API 密钥
- 先在 test 模式下验证,确认成功后再切换到 prod 模式
</Callout>
### 前置条件
**环境要求:**
@ -282,34 +278,7 @@ npx tsx scripts/clerk-to-betterauth/verify.ts
### 步骤 7配置 Better Auth 并重新部署
迁移完成后,需要配置 Better Auth 环境变量并重新部署:
1. **移除 Clerk 环境变量**
```bash
# 移除这些
# NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=xxx
# CLERK_SECRET_KEY=xxx
```
2. **添加 Better Auth 环境变量**
```bash
# 必需
AUTH_SECRET=your-secret-key # openssl rand -base64 32
# 可选:配置 SSO 提供商(示例)
AUTH_SSO_PROVIDERS=google,github
AUTH_GOOGLE_ID=your-google-client-id
AUTH_GOOGLE_SECRET=your-google-client-secret
AUTH_GITHUB_ID=your-github-client-id
AUTH_GITHUB_SECRET=your-github-client-secret
# 可选:配置邮件服务(用于密码重置、邮箱验证等)
# 参阅身份验证服务配置文档了解详情
```
3. **重新部署 LobeChat**
迁移完成后,参照 [简单迁移 - 步骤 2](#步骤) 配置 Better Auth 环境变量并重新部署。
<Callout type={'tip'}>
完整的 Better Auth 配置请参阅 [身份验证服务配置](/zh/docs/self-hosting/advanced/auth),包括所有支持的 SSO 提供商和邮件服务配置。

View file

@ -133,6 +133,8 @@ export async function startWebServer(options: WebServerOptions): Promise<void> {
const serverEnv = {
...process.env,
// APP_URL is required for Better Auth to recognize localhost as a trusted origin
APP_URL: `http://localhost:${port}`,
// E2E test secret keys
BETTER_AUTH_SECRET: 'e2e-test-secret-key-for-better-auth-32chars!',
KEY_VAULTS_SECRET: 'LA7n9k3JdEcbSgml2sxfw+4TV1AzaaFU5+R176aQz4s=',

View file

@ -1,545 +0,0 @@
{
"backButton": "رجوع",
"badge__default": "افتراضي",
"badge__otherImpersonatorDevice": "جهاز انتحال آخر",
"badge__primary": "رئيسي",
"badge__requiresAction": "يتطلب إجراء",
"badge__thisDevice": "هذا الجهاز",
"badge__unverified": "غير مُحقق",
"badge__userDevice": "جهاز المستخدم",
"badge__you": "أنت",
"createOrganization.formButtonSubmit": "إنشاء منظمة",
"createOrganization.invitePage.formButtonReset": "تخطي",
"createOrganization.title": "إنشاء منظمة",
"dates.lastDay": "أمس في {{ date | timeString('ar') }}",
"dates.next6Days": "{{ date | weekday('ar','long') }} في {{ date | timeString('ar') }}",
"dates.nextDay": "غدًا في {{ date | timeString('ar') }}",
"dates.numeric": "{{ date | numeric('ar') }}",
"dates.previous6Days": "{{ date | weekday('ar','long') }} الماضي في {{ date | timeString('ar') }}",
"dates.sameDay": "اليوم في {{ date | timeString('ar') }}",
"dividerText": "أو",
"footerActionLink__useAnotherMethod": "استخدم طريقة أخرى",
"footerPageLink__help": "مساعدة",
"footerPageLink__privacy": "الخصوصية",
"footerPageLink__terms": "الشروط",
"formButtonPrimary": "متابعة",
"formButtonPrimary__verify": "تحقق",
"formFieldAction__forgotPassword": "هل نسيت كلمة المرور؟",
"formFieldError__matchingPasswords": "كلمات المرور متطابقة.",
"formFieldError__notMatchingPasswords": "كلمات المرور غير متطابقة.",
"formFieldError__verificationLinkExpired": "انتهت صلاحية رابط التحقق. يرجى طلب رابط جديد.",
"formFieldHintText__optional": "اختياري",
"formFieldHintText__slug": "المُعرف هو اسم قابل للقراءة يجب أن يكون فريدًا. غالبًا ما يُستخدم في عناوين الروابط.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "حذف الحساب",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "example@email.com، example2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "my-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "تمكين الدعوات التلقائية لهذا النطاق",
"formFieldLabel__backupCode": "رمز احتياطي",
"formFieldLabel__confirmDeletion": "تأكيد",
"formFieldLabel__confirmPassword": "تأكيد كلمة المرور",
"formFieldLabel__currentPassword": "كلمة المرور الحالية",
"formFieldLabel__emailAddress": "عنوان البريد الإلكتروني",
"formFieldLabel__emailAddress_username": "البريد الإلكتروني أو اسم المستخدم",
"formFieldLabel__emailAddresses": "عناوين البريد الإلكتروني",
"formFieldLabel__firstName": "الاسم الأول",
"formFieldLabel__lastName": "اسم العائلة",
"formFieldLabel__newPassword": "كلمة مرور جديدة",
"formFieldLabel__organizationDomain": "النطاق",
"formFieldLabel__organizationDomainDeletePending": "حذف الدعوات والاقتراحات المعلقة",
"formFieldLabel__organizationDomainEmailAddress": "عنوان البريد الإلكتروني للتحقق",
"formFieldLabel__organizationDomainEmailAddressDescription": "أدخل عنوان بريد إلكتروني ضمن هذا النطاق لتلقي رمز والتحقق من النطاق.",
"formFieldLabel__organizationName": "الاسم",
"formFieldLabel__organizationSlug": "المُعرف",
"formFieldLabel__passkeyName": "اسم مفتاح المرور",
"formFieldLabel__password": "كلمة المرور",
"formFieldLabel__phoneNumber": "رقم الهاتف",
"formFieldLabel__role": "الدور",
"formFieldLabel__signOutOfOtherSessions": "تسجيل الخروج من جميع الأجهزة الأخرى",
"formFieldLabel__username": "اسم المستخدم",
"impersonationFab.action__signOut": "تسجيل الخروج",
"impersonationFab.title": "تم تسجيل الدخول كـ {{identifier}}",
"locale": "ar",
"maintenanceMode": "نقوم حاليًا بأعمال صيانة، لا تقلق، لن تستغرق أكثر من بضع دقائق.",
"membershipRole__admin": "مسؤول",
"membershipRole__basicMember": "عضو",
"membershipRole__guestMember": "زائر",
"organizationList.action__createOrganization": "إنشاء منظمة",
"organizationList.action__invitationAccept": "انضمام",
"organizationList.action__suggestionsAccept": "طلب الانضمام",
"organizationList.createOrganization": "إنشاء منظمة",
"organizationList.invitationAcceptedLabel": "تم الانضمام",
"organizationList.subtitle": "للمتابعة إلى {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "بانتظار الموافقة",
"organizationList.title": "اختر حسابًا",
"organizationList.titleWithoutPersonal": "اختر منظمة",
"organizationProfile.badge__automaticInvitation": "دعوات تلقائية",
"organizationProfile.badge__automaticSuggestion": "اقتراحات تلقائية",
"organizationProfile.badge__manualInvitation": "لا يوجد تسجيل تلقائي",
"organizationProfile.badge__unverified": "غير مُحقق",
"organizationProfile.createDomainPage.subtitle": "أضف النطاق للتحقق. يمكن للمستخدمين الذين لديهم بريد إلكتروني ضمن هذا النطاق الانضمام تلقائيًا أو طلب الانضمام.",
"organizationProfile.createDomainPage.title": "إضافة نطاق",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "تعذر إرسال الدعوات. هناك دعوات معلقة بالفعل لعناوين البريد التالية: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "إرسال الدعوات",
"organizationProfile.invitePage.selectDropdown__role": "اختر الدور",
"organizationProfile.invitePage.subtitle": "أدخل أو الصق عنوانًا أو أكثر من عناوين البريد الإلكتروني، مفصولة بمسافات أو فواصل.",
"organizationProfile.invitePage.successMessage": "تم إرسال الدعوات بنجاح",
"organizationProfile.invitePage.title": "دعوة أعضاء جدد",
"organizationProfile.membersPage.action__invite": "دعوة",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "إزالة العضو",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "تاريخ الانضمام",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "الدور",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "المستخدم",
"organizationProfile.membersPage.detailsTitle__emptyRow": "لا يوجد أعضاء لعرضهم",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "ادعُ المستخدمين من خلال ربط نطاق بريد إلكتروني بمنظمتك. سيتمكن أي شخص يسجل بعنوان بريد مطابق من الانضمام في أي وقت.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "دعوات تلقائية",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "إدارة النطاقات المُحققة",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "لا توجد دعوات لعرضها",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "إلغاء الدعوة",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "تاريخ الدعوة",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "المستخدمون الذين يسجلون بعنوان بريد إلكتروني مطابق، سيتمكنون من رؤية اقتراح لطلب الانضمام إلى منظمتك.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "اقتراحات تلقائية",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "إدارة النطاقات المُحققة",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "موافقة",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "رفض",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "طلب الوصول",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "لا توجد طلبات لعرضها",
"organizationProfile.membersPage.start.headerTitle__invitations": "الدعوات",
"organizationProfile.membersPage.start.headerTitle__members": "الأعضاء",
"organizationProfile.membersPage.start.headerTitle__requests": "الطلبات",
"organizationProfile.navbar.description": "إدارة منظمتك.",
"organizationProfile.navbar.general": "عام",
"organizationProfile.navbar.members": "الأعضاء",
"organizationProfile.navbar.title": "المنظمة",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "اكتب \"{{organizationName}}\" أدناه للمتابعة.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "هل أنت متأكد أنك تريد حذف هذه المؤسسة؟",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "هذا الإجراء دائم ولا يمكن التراجع عنه.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "تم حذف المؤسسة.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "حذف المؤسسة",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "اكتب \"{{organizationName}}\" أدناه للمتابعة.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "هل أنت متأكد أنك تريد مغادرة هذه المؤسسة؟ ستفقد الوصول إلى هذه المؤسسة وتطبيقاتها.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "هذا الإجراء دائم ولا يمكن التراجع عنه.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "لقد غادرت المؤسسة.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "مغادرة المؤسسة",
"organizationProfile.profilePage.dangerSection.title": "خطر",
"organizationProfile.profilePage.domainSection.menuAction__manage": "إدارة",
"organizationProfile.profilePage.domainSection.menuAction__remove": "حذف",
"organizationProfile.profilePage.domainSection.menuAction__verify": "تحقق",
"organizationProfile.profilePage.domainSection.primaryButton": "إضافة نطاق",
"organizationProfile.profilePage.domainSection.subtitle": "اسمح للمستخدمين بالانضمام تلقائيًا إلى المؤسسة أو طلب الانضمام بناءً على نطاق بريد إلكتروني تم التحقق منه.",
"organizationProfile.profilePage.domainSection.title": "النطاقات التي تم التحقق منها",
"organizationProfile.profilePage.successMessage": "تم تحديث المؤسسة.",
"organizationProfile.profilePage.title": "تحديث الملف الشخصي",
"organizationProfile.removeDomainPage.messageLine1": "سيتم إزالة نطاق البريد الإلكتروني {{domain}}.",
"organizationProfile.removeDomainPage.messageLine2": "لن يتمكن المستخدمون من الانضمام تلقائيًا إلى المؤسسة بعد ذلك.",
"organizationProfile.removeDomainPage.successMessage": "تمت إزالة {{domain}}.",
"organizationProfile.removeDomainPage.title": "إزالة النطاق",
"organizationProfile.start.headerTitle__general": "عام",
"organizationProfile.start.headerTitle__members": "الأعضاء",
"organizationProfile.start.profileSection.primaryButton": "تحديث الملف الشخصي",
"organizationProfile.start.profileSection.title": "ملف المؤسسة",
"organizationProfile.start.profileSection.uploadAction__title": "الشعار",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "إزالة هذا النطاق سيؤثر على المستخدمين المدعوين.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "إزالة النطاق",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "إزالة هذا النطاق من قائمة النطاقات التي تم التحقق منها",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "إزالة النطاق",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "يتم دعوة المستخدمين تلقائيًا للانضمام إلى المؤسسة عند التسجيل ويمكنهم الانضمام في أي وقت.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "دعوات تلقائية",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "يتلقى المستخدمون اقتراحًا بطلب الانضمام، ولكن يجب الموافقة عليهم من قبل مسؤول قبل الانضمام.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "اقتراحات تلقائية",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "سيؤثر تغيير وضع التسجيل على المستخدمين الجدد فقط.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "الدعوات المعلقة المرسلة إلى المستخدمين: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "الاقتراحات المعلقة المرسلة إلى المستخدمين: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "يمكن دعوة المستخدمين يدويًا فقط للانضمام إلى المؤسسة.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "لا يوجد تسجيل تلقائي",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "اختر كيفية انضمام المستخدمين من هذا النطاق إلى المؤسسة.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "خطر",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "خيارات التسجيل",
"organizationProfile.verifiedDomainPage.subtitle": "تم التحقق من النطاق {{domain}}. تابع باختيار وضع التسجيل.",
"organizationProfile.verifiedDomainPage.title": "تحديث {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "أدخل رمز التحقق المرسل إلى عنوان بريدك الإلكتروني",
"organizationProfile.verifyDomainPage.formTitle": "رمز التحقق",
"organizationProfile.verifyDomainPage.resendButton": "لم تستلم الرمز؟ أعد الإرسال",
"organizationProfile.verifyDomainPage.subtitle": "يجب التحقق من النطاق {{domainName}} عبر البريد الإلكتروني.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "تم إرسال رمز التحقق إلى {{emailAddress}}. أدخل الرمز للمتابعة.",
"organizationProfile.verifyDomainPage.title": "التحقق من النطاق",
"organizationSwitcher.action__createOrganization": "إنشاء مؤسسة",
"organizationSwitcher.action__invitationAccept": "انضمام",
"organizationSwitcher.action__manageOrganization": "إدارة",
"organizationSwitcher.action__suggestionsAccept": "طلب الانضمام",
"organizationSwitcher.notSelected": "لم يتم اختيار مؤسسة",
"organizationSwitcher.personalWorkspace": "الحساب الشخصي",
"organizationSwitcher.suggestionsAcceptedLabel": "بانتظار الموافقة",
"paginationButton__next": "التالي",
"paginationButton__previous": "السابق",
"paginationRowText__displaying": "عرض",
"paginationRowText__of": "من",
"signIn.accountSwitcher.action__addAccount": "إضافة حساب",
"signIn.accountSwitcher.action__signOutAll": "تسجيل الخروج من جميع الحسابات",
"signIn.accountSwitcher.subtitle": "اختر الحساب الذي ترغب في المتابعة به.",
"signIn.accountSwitcher.title": "اختر حسابًا",
"signIn.alternativeMethods.actionLink": "الحصول على المساعدة",
"signIn.alternativeMethods.actionText": "لا تملك أياً من هذه؟",
"signIn.alternativeMethods.blockButton__backupCode": "استخدم رمز النسخ الاحتياطي",
"signIn.alternativeMethods.blockButton__emailCode": "أرسل رمزًا إلى البريد الإلكتروني {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "أرسل رابطًا إلى البريد الإلكتروني {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "تسجيل الدخول باستخدام مفتاح المرور",
"signIn.alternativeMethods.blockButton__password": "تسجيل الدخول باستخدام كلمة المرور",
"signIn.alternativeMethods.blockButton__phoneCode": "أرسل رمزًا عبر الرسائل القصيرة إلى {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "استخدم تطبيق المصادقة",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "الدعم عبر البريد الإلكتروني",
"signIn.alternativeMethods.getHelp.content": "إذا كنت تواجه صعوبة في تسجيل الدخول إلى حسابك، راسلنا عبر البريد الإلكتروني وسنعمل على استعادة الوصول في أقرب وقت ممكن.",
"signIn.alternativeMethods.getHelp.title": "الحصول على المساعدة",
"signIn.alternativeMethods.subtitle": "هل تواجه مشكلة؟ يمكنك استخدام أي من الطرق التالية لتسجيل الدخول.",
"signIn.alternativeMethods.title": "استخدم طريقة أخرى",
"signIn.backupCodeMfa.subtitle": "رمز النسخ الاحتياطي هو الرمز الذي حصلت عليه عند إعداد المصادقة الثنائية.",
"signIn.backupCodeMfa.title": "أدخل رمز النسخ الاحتياطي",
"signIn.emailCode.formTitle": "رمز التحقق",
"signIn.emailCode.resendButton": "لم تستلم الرمز؟ أعد الإرسال",
"signIn.emailCode.subtitle": "للمتابعة إلى {{applicationName}}",
"signIn.emailCode.title": "تحقق من بريدك الإلكتروني",
"signIn.emailLink.expired.subtitle": "ارجع إلى التبويب الأصلي للمتابعة.",
"signIn.emailLink.expired.title": "انتهت صلاحية رابط التحقق",
"signIn.emailLink.failed.subtitle": "ارجع إلى التبويب الأصلي للمتابعة.",
"signIn.emailLink.failed.title": "رابط التحقق غير صالح",
"signIn.emailLink.formSubtitle": "استخدم رابط التحقق المرسل إلى بريدك الإلكتروني",
"signIn.emailLink.formTitle": "رابط التحقق",
"signIn.emailLink.loading.subtitle": "سيتم تحويلك قريبًا",
"signIn.emailLink.loading.title": "جارٍ تسجيل الدخول...",
"signIn.emailLink.resendButton": "لم تستلم الرابط؟ أعد الإرسال",
"signIn.emailLink.subtitle": "للمتابعة إلى {{applicationName}}",
"signIn.emailLink.title": "تحقق من بريدك الإلكتروني",
"signIn.emailLink.unusedTab.title": "يمكنك إغلاق هذا التبويب",
"signIn.emailLink.verified.subtitle": "سيتم تحويلك قريبًا",
"signIn.emailLink.verified.title": "تم تسجيل الدخول بنجاح",
"signIn.emailLink.verifiedSwitchTab.subtitle": "ارجع إلى التبويب الأصلي للمتابعة",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "ارجع إلى التبويب الجديد للمتابعة",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "تم تسجيل الدخول في تبويب آخر",
"signIn.forgotPassword.formTitle": "رمز إعادة تعيين كلمة المرور",
"signIn.forgotPassword.resendButton": "لم تستلم الرمز؟ أعد الإرسال",
"signIn.forgotPassword.subtitle": "لإعادة تعيين كلمة المرور الخاصة بك",
"signIn.forgotPassword.subtitle_email": "أدخل أولاً الرمز المرسل إلى بريدك الإلكتروني",
"signIn.forgotPassword.subtitle_phone": "أدخل أولاً الرمز المرسل إلى هاتفك",
"signIn.forgotPassword.title": "إعادة تعيين كلمة المرور",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "إعادة تعيين كلمة المرور",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "أو، سجل الدخول بطريقة أخرى",
"signIn.forgotPasswordAlternativeMethods.title": "هل نسيت كلمة المرور؟",
"signIn.noAvailableMethods.message": "لا يمكن المتابعة في تسجيل الدخول. لا توجد وسيلة تحقق متاحة.",
"signIn.noAvailableMethods.subtitle": "حدث خطأ",
"signIn.noAvailableMethods.title": "لا يمكن تسجيل الدخول",
"signIn.passkey.subtitle": "استخدام مفتاح المرور يؤكد هويتك. قد يطلب منك جهازك بصمة الإصبع أو الوجه أو قفل الشاشة.",
"signIn.passkey.title": "استخدم مفتاح المرور",
"signIn.password.actionLink": "استخدم طريقة أخرى",
"signIn.password.subtitle": "أدخل كلمة المرور المرتبطة بحسابك",
"signIn.password.title": "أدخل كلمة المرور",
"signIn.passwordPwned.title": "تم تسريب كلمة المرور",
"signIn.phoneCode.formTitle": "رمز التحقق",
"signIn.phoneCode.resendButton": "لم تستلم الرمز؟ أعد الإرسال",
"signIn.phoneCode.subtitle": "للمتابعة إلى {{applicationName}}",
"signIn.phoneCode.title": "تحقق من هاتفك",
"signIn.phoneCodeMfa.formTitle": "رمز التحقق",
"signIn.phoneCodeMfa.resendButton": "لم تستلم الرمز؟ أعد الإرسال",
"signIn.phoneCodeMfa.subtitle": "للمتابعة، أدخل رمز التحقق المرسل إلى هاتفك",
"signIn.phoneCodeMfa.title": "تحقق من هاتفك",
"signIn.resetPassword.formButtonPrimary": "إعادة تعيين كلمة المرور",
"signIn.resetPassword.requiredMessage": "لأسباب أمنية، يجب إعادة تعيين كلمة المرور.",
"signIn.resetPassword.successMessage": "تم تغيير كلمة المرور بنجاح. جارٍ تسجيل الدخول، يرجى الانتظار.",
"signIn.resetPassword.title": "تعيين كلمة مرور جديدة",
"signIn.resetPasswordMfa.detailsLabel": "نحتاج إلى التحقق من هويتك قبل إعادة تعيين كلمة المرور.",
"signIn.start.actionLink": "إنشاء حساب",
"signIn.start.actionLink__use_email": "استخدم البريد الإلكتروني",
"signIn.start.actionLink__use_email_username": "استخدم البريد الإلكتروني أو اسم المستخدم",
"signIn.start.actionLink__use_passkey": "استخدم مفتاح المرور بدلاً من ذلك",
"signIn.start.actionLink__use_phone": "استخدم الهاتف",
"signIn.start.actionLink__use_username": "استخدم اسم المستخدم",
"signIn.start.actionText": "لا تملك حسابًا؟",
"signIn.start.subtitle": "مرحبًا بعودتك! يرجى تسجيل الدخول للمتابعة",
"signIn.start.title": "تسجيل الدخول إلى {{applicationName}}",
"signIn.totpMfa.formTitle": "رمز التحقق",
"signIn.totpMfa.subtitle": "للمتابعة، أدخل رمز التحقق الذي تم إنشاؤه بواسطة تطبيق المصادقة",
"signIn.totpMfa.title": "التحقق بخطوتين",
"signInEnterPasswordTitle": "أدخل كلمة المرور الخاصة بك",
"signUp.continue.actionLink": "تسجيل الدخول",
"signUp.continue.actionText": "هل لديك حساب بالفعل؟",
"signUp.continue.subtitle": "يرجى إكمال البيانات المتبقية للمتابعة.",
"signUp.continue.title": "أكمل الحقول الناقصة",
"signUp.emailCode.formSubtitle": "أدخل رمز التحقق المرسل إلى بريدك الإلكتروني",
"signUp.emailCode.formTitle": "رمز التحقق",
"signUp.emailCode.resendButton": "لم تستلم الرمز؟ أعد الإرسال",
"signUp.emailCode.subtitle": "أدخل رمز التحقق المرسل إلى بريدك الإلكتروني",
"signUp.emailCode.title": "تحقق من بريدك الإلكتروني",
"signUp.emailLink.formSubtitle": "استخدم رابط التحقق المرسل إلى بريدك الإلكتروني",
"signUp.emailLink.formTitle": "رابط التحقق",
"signUp.emailLink.loading.title": "جارٍ إنشاء الحساب...",
"signUp.emailLink.resendButton": "لم تستلم الرابط؟ أعد الإرسال",
"signUp.emailLink.subtitle": "للمتابعة إلى {{applicationName}}",
"signUp.emailLink.title": "تحقق من بريدك الإلكتروني",
"signUp.emailLink.verified.title": "تم إنشاء الحساب بنجاح",
"signUp.emailLink.verifiedSwitchTab.subtitle": "ارجع إلى التبويب الجديد للمتابعة",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "ارجع إلى التبويب السابق للمتابعة",
"signUp.emailLink.verifiedSwitchTab.title": "تم التحقق من البريد الإلكتروني بنجاح",
"signUp.phoneCode.formSubtitle": "أدخل رمز التحقق المرسل إلى رقم هاتفك",
"signUp.phoneCode.formTitle": "رمز التحقق",
"signUp.phoneCode.resendButton": "لم تستلم الرمز؟ أعد الإرسال",
"signUp.phoneCode.subtitle": "أدخل رمز التحقق المرسل إلى هاتفك",
"signUp.phoneCode.title": "تحقق من هاتفك",
"signUp.start.actionLink": "تسجيل الدخول",
"signUp.start.actionText": "هل لديك حساب بالفعل؟",
"signUp.start.subtitle": "مرحبًا بك! يرجى تعبئة البيانات للبدء.",
"signUp.start.title": "أنشئ حسابك",
"socialButtonsBlockButton": "المتابعة باستخدام {{provider|titleize}}",
"unstable__errors.captcha_invalid": "فشل التسجيل بسبب عدم اجتياز التحقق الأمني. يرجى تحديث الصفحة والمحاولة مرة أخرى أو التواصل مع الدعم للمزيد من المساعدة.",
"unstable__errors.captcha_unavailable": "فشل التسجيل بسبب عدم اجتياز التحقق من الروبوتات. يرجى تحديث الصفحة والمحاولة مرة أخرى أو التواصل مع الدعم للمزيد من المساعدة.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "عنوان البريد الإلكتروني هذا مستخدم بالفعل. يرجى تجربة عنوان آخر.",
"unstable__errors.form_identifier_exists__phone_number": "رقم الهاتف هذا مستخدم بالفعل. يرجى تجربة رقم آخر.",
"unstable__errors.form_identifier_exists__username": "اسم المستخدم هذا مستخدم بالفعل. يرجى تجربة اسم آخر.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "يجب أن يكون عنوان البريد الإلكتروني صالحًا.",
"unstable__errors.form_param_format_invalid__phone_number": "يجب أن يكون رقم الهاتف بصيغة دولية صحيحة.",
"unstable__errors.form_param_max_length_exceeded__first_name": "يجب ألا يتجاوز الاسم الأول 256 حرفًا.",
"unstable__errors.form_param_max_length_exceeded__last_name": "يجب ألا يتجاوز اسم العائلة 256 حرفًا.",
"unstable__errors.form_param_max_length_exceeded__name": "يجب ألا يتجاوز الاسم 256 حرفًا.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "كلمة المرور الخاصة بك غير قوية بما فيه الكفاية.",
"unstable__errors.form_password_pwned": "تم العثور على هذه الكلمة المرور ضمن تسريب بيانات ولا يمكن استخدامها. يرجى تجربة كلمة مرور أخرى.",
"unstable__errors.form_password_pwned__sign_in": "تم العثور على هذه الكلمة المرور ضمن تسريب بيانات ولا يمكن استخدامها. يرجى إعادة تعيين كلمة المرور.",
"unstable__errors.form_password_size_in_bytes_exceeded": "تجاوزت كلمة المرور الحد الأقصى المسموح به من البايتات. يرجى تقصيرها أو إزالة بعض الرموز الخاصة.",
"unstable__errors.form_password_validation_failed": "كلمة المرور غير صحيحة",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "لا يمكنك حذف آخر وسيلة تعريف.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "يوجد مفتاح مرور مسجل بالفعل على هذا الجهاز.",
"unstable__errors.passkey_not_supported": "مفاتيح المرور غير مدعومة على هذا الجهاز.",
"unstable__errors.passkey_pa_not_supported": "يتطلب التسجيل مصادق منصة، لكن الجهاز لا يدعمه.",
"unstable__errors.passkey_registration_cancelled": "تم إلغاء تسجيل مفتاح المرور أو انتهت المهلة.",
"unstable__errors.passkey_retrieval_cancelled": "تم إلغاء التحقق من مفتاح المرور أو انتهت المهلة.",
"unstable__errors.passwordComplexity.maximumLength": "أقل من {{length}} حرفًا",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} حرفًا أو أكثر",
"unstable__errors.passwordComplexity.requireLowercase": "حرف صغير",
"unstable__errors.passwordComplexity.requireNumbers": "رقم",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "رمز خاص",
"unstable__errors.passwordComplexity.requireUppercase": "حرف كبير",
"unstable__errors.passwordComplexity.sentencePrefix": "يجب أن تحتوي كلمة المرور على",
"unstable__errors.phone_number_exists": "رقم الهاتف هذا مستخدم بالفعل. يرجى تجربة رقم آخر.",
"unstable__errors.zxcvbn.couldBeStronger": "كلمة المرور تعمل، لكنها يمكن أن تكون أقوى. جرب إضافة المزيد من الأحرف.",
"unstable__errors.zxcvbn.goodPassword": "كلمة المرور الخاصة بك تستوفي جميع المتطلبات اللازمة.",
"unstable__errors.zxcvbn.notEnough": "كلمة المرور الخاصة بك غير قوية بما فيه الكفاية.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "استخدم بعض الأحرف الكبيرة، وليس جميعها.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "أضف كلمات أكثر وأقل شيوعًا.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "تجنب السنوات المرتبطة بك.",
"unstable__errors.zxcvbn.suggestions.capitalization": "استخدم أكثر من حرف كبير واحد.",
"unstable__errors.zxcvbn.suggestions.dates": "تجنب التواريخ والسنوات المرتبطة بك.",
"unstable__errors.zxcvbn.suggestions.l33t": "تجنب الاستبدالات المتوقعة مثل '@' بدلاً من 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "استخدم أنماط لوحة مفاتيح أطول وغيّر اتجاه الكتابة عدة مرات.",
"unstable__errors.zxcvbn.suggestions.noNeed": "يمكنك إنشاء كلمات مرور قوية دون استخدام رموز أو أرقام أو أحرف كبيرة.",
"unstable__errors.zxcvbn.suggestions.pwned": "إذا كنت تستخدم هذه الكلمة في مكان آخر، يجب عليك تغييرها.",
"unstable__errors.zxcvbn.suggestions.recentYears": "تجنب السنوات الحديثة.",
"unstable__errors.zxcvbn.suggestions.repeated": "تجنب تكرار الكلمات أو الأحرف.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "تجنب كتابة الكلمات الشائعة بشكل معكوس.",
"unstable__errors.zxcvbn.suggestions.sequences": "تجنب تسلسلات الأحرف الشائعة.",
"unstable__errors.zxcvbn.suggestions.useWords": "استخدم عدة كلمات، لكن تجنب العبارات الشائعة.",
"unstable__errors.zxcvbn.warnings.common": "هذه كلمة مرور شائعة الاستخدام.",
"unstable__errors.zxcvbn.warnings.commonNames": "الأسماء والألقاب الشائعة يسهل تخمينها.",
"unstable__errors.zxcvbn.warnings.dates": "التواريخ يسهل تخمينها.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "أنماط الأحرف المتكررة مثل \"abcabcabc\" يسهل تخمينها.",
"unstable__errors.zxcvbn.warnings.keyPattern": "أنماط لوحة المفاتيح القصيرة يسهل تخمينها.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "الأسماء أو الألقاب المفردة يسهل تخمينها.",
"unstable__errors.zxcvbn.warnings.pwned": "تم تسريب كلمة المرور الخاصة بك في خرق بيانات على الإنترنت.",
"unstable__errors.zxcvbn.warnings.recentYears": "السنوات الحديثة يسهل تخمينها.",
"unstable__errors.zxcvbn.warnings.sequences": "تسلسلات الأحرف الشائعة مثل \"abc\" يسهل تخمينها.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "تشبه كلمة مرور شائعة الاستخدام.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "الأحرف المتكررة مثل \"aaa\" يسهل تخمينها.",
"unstable__errors.zxcvbn.warnings.straightRow": "صفوف مستقيمة من المفاتيح على لوحة المفاتيح يسهل تخمينها.",
"unstable__errors.zxcvbn.warnings.topHundred": "هذه كلمة مرور مستخدمة بشكل متكرر.",
"unstable__errors.zxcvbn.warnings.topTen": "هذه كلمة مرور مستخدمة بكثرة.",
"unstable__errors.zxcvbn.warnings.userInputs": "يجب ألا تحتوي على بيانات شخصية أو متعلقة بالصفحة.",
"unstable__errors.zxcvbn.warnings.wordByItself": "الكلمات المفردة يسهل تخمينها.",
"userButton.action__addAccount": "إضافة حساب",
"userButton.action__manageAccount": "إدارة الحساب",
"userButton.action__signOut": "تسجيل الخروج",
"userButton.action__signOutAll": "تسجيل الخروج من جميع الحسابات",
"userProfile.backupCodePage.actionLabel__copied": "تم النسخ!",
"userProfile.backupCodePage.actionLabel__copy": "نسخ الكل",
"userProfile.backupCodePage.actionLabel__download": "تنزيل .txt",
"userProfile.backupCodePage.actionLabel__print": "طباعة",
"userProfile.backupCodePage.infoText1": "سيتم تفعيل رموز النسخ الاحتياطي لهذا الحساب.",
"userProfile.backupCodePage.infoText2": "احتفظ برموز النسخ الاحتياطي في مكان آمن وسري. يمكنك إعادة توليد الرموز إذا كنت تشك في أنها قد تم اختراقها.",
"userProfile.backupCodePage.subtitle__codelist": "احتفظ بها في مكان آمن وسري.",
"userProfile.backupCodePage.successMessage": "تم تفعيل رموز النسخ الاحتياطي. يمكنك استخدام أحد هذه الرموز لتسجيل الدخول إلى حسابك إذا فقدت الوصول إلى جهاز المصادقة. يمكن استخدام كل رمز مرة واحدة فقط.",
"userProfile.backupCodePage.successSubtitle": "يمكنك استخدام أحد هذه الرموز لتسجيل الدخول إلى حسابك إذا فقدت الوصول إلى جهاز المصادقة.",
"userProfile.backupCodePage.title": "إضافة تحقق برمز احتياطي",
"userProfile.backupCodePage.title__codelist": "رموز النسخ الاحتياطي",
"userProfile.connectedAccountPage.formHint": "اختر مزودًا لربط حسابك.",
"userProfile.connectedAccountPage.formHint__noAccounts": "لا توجد مزودات حسابات خارجية متاحة.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} سيتم إزالته من هذا الحساب.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "لن تتمكن من استخدام هذا الحساب المرتبط بعد الآن، وقد تتوقف بعض الميزات المعتمدة عليه.",
"userProfile.connectedAccountPage.removeResource.successMessage": "تمت إزالة {{connectedAccount}} من حسابك.",
"userProfile.connectedAccountPage.removeResource.title": "إزالة الحساب المرتبط",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "تمت إضافة المزود إلى حسابك",
"userProfile.connectedAccountPage.title": "إضافة حساب مرتبط",
"userProfile.deletePage.actionDescription": "اكتب \"حذف الحساب\" أدناه للمتابعة.",
"userProfile.deletePage.confirm": "حذف الحساب",
"userProfile.deletePage.messageLine1": "هل أنت متأكد أنك تريد حذف حسابك؟",
"userProfile.deletePage.messageLine2": "هذا الإجراء دائم ولا يمكن التراجع عنه.",
"userProfile.deletePage.title": "حذف الحساب",
"userProfile.emailAddressPage.emailCode.formHint": "سيتم إرسال رسالة بريد إلكتروني تحتوي على رمز تحقق إلى هذا العنوان.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "أدخل رمز التحقق المرسل إلى {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "رمز التحقق",
"userProfile.emailAddressPage.emailCode.resendButton": "لم يصلك الرمز؟ أعد الإرسال",
"userProfile.emailAddressPage.emailCode.successMessage": "تمت إضافة البريد الإلكتروني {{identifier}} إلى حسابك.",
"userProfile.emailAddressPage.emailLink.formHint": "سيتم إرسال رسالة بريد إلكتروني تحتوي على رابط تحقق إلى هذا العنوان.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "انقر على رابط التحقق في البريد الإلكتروني المرسل إلى {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "رابط التحقق",
"userProfile.emailAddressPage.emailLink.resendButton": "لم يصلك الرابط؟ أعد الإرسال",
"userProfile.emailAddressPage.emailLink.successMessage": "تمت إضافة البريد الإلكتروني {{identifier}} إلى حسابك.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} سيتم إزالته من هذا الحساب.",
"userProfile.emailAddressPage.removeResource.messageLine2": "لن تتمكن من تسجيل الدخول باستخدام هذا البريد الإلكتروني بعد الآن.",
"userProfile.emailAddressPage.removeResource.successMessage": "تمت إزالة {{emailAddress}} من حسابك.",
"userProfile.emailAddressPage.removeResource.title": "إزالة عنوان البريد الإلكتروني",
"userProfile.emailAddressPage.title": "إضافة عنوان بريد إلكتروني",
"userProfile.emailAddressPage.verifyTitle": "تحقق من عنوان البريد الإلكتروني",
"userProfile.formButtonPrimary__add": "إضافة",
"userProfile.formButtonPrimary__continue": "متابعة",
"userProfile.formButtonPrimary__finish": "إنهاء",
"userProfile.formButtonPrimary__remove": "إزالة",
"userProfile.formButtonPrimary__save": "حفظ",
"userProfile.formButtonReset": "إلغاء",
"userProfile.mfaPage.formHint": "اختر طريقة للإضافة.",
"userProfile.mfaPage.title": "إضافة تحقق بخطوتين",
"userProfile.mfaPhoneCodePage.backButton": "استخدام رقم موجود",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "إضافة رقم هاتف",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} لن يتلقى رموز التحقق عند تسجيل الدخول.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "قد لا يكون حسابك آمناً كما كان. هل ترغب في المتابعة؟",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "تمت إزالة التحقق بخطوتين عبر رمز SMS لـ {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "إزالة التحقق بخطوتين",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "اختر رقم هاتف موجود لتسجيله في التحقق بخطوتين عبر رمز SMS أو أضف رقمًا جديدًا.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "لا توجد أرقام هواتف متاحة للتسجيل في التحقق بخطوتين عبر رمز SMS، يرجى إضافة رقم جديد.",
"userProfile.mfaPhoneCodePage.successMessage1": "عند تسجيل الدخول، ستحتاج إلى إدخال رمز تحقق يُرسل إلى هذا الرقم كخطوة إضافية.",
"userProfile.mfaPhoneCodePage.successMessage2": "احفظ رموز النسخ الاحتياطي واحتفظ بها في مكان آمن. إذا فقدت الوصول إلى جهاز المصادقة، يمكنك استخدام الرموز لتسجيل الدخول.",
"userProfile.mfaPhoneCodePage.successTitle": "تم تفعيل التحقق برمز SMS",
"userProfile.mfaPhoneCodePage.title": "إضافة تحقق برمز SMS",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "مسح رمز QR بدلاً من ذلك",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "لا يمكنك مسح رمز QR؟",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "قم بإعداد طريقة تسجيل دخول جديدة في تطبيق المصادقة الخاص بك وامسح رمز QR التالي لربطه بحسابك.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "قم بإعداد طريقة تسجيل دخول جديدة في تطبيق المصادقة وأدخل المفتاح الموضح أدناه.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "تأكد من تفعيل كلمات المرور المؤقتة أو المستندة إلى الوقت، ثم أكمل ربط الحساب.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "بدلاً من ذلك، إذا كان تطبيق المصادقة يدعم TOTP URIs، يمكنك نسخ الرابط الكامل.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "لن يُطلب منك إدخال رموز التحقق من هذا التطبيق عند تسجيل الدخول.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "قد لا يكون حسابك آمناً كما كان. هل ترغب في المتابعة؟",
"userProfile.mfaTOTPPage.removeResource.successMessage": "تمت إزالة التحقق بخطوتين عبر تطبيق المصادقة.",
"userProfile.mfaTOTPPage.removeResource.title": "إزالة التحقق بخطوتين",
"userProfile.mfaTOTPPage.successMessage": "تم تفعيل التحقق بخطوتين. عند تسجيل الدخول، ستحتاج إلى إدخال رمز تحقق من تطبيق المصادقة كخطوة إضافية.",
"userProfile.mfaTOTPPage.title": "إضافة تطبيق مصادقة",
"userProfile.mfaTOTPPage.verifySubtitle": "أدخل رمز التحقق الذي أنشأه تطبيق المصادقة",
"userProfile.mfaTOTPPage.verifyTitle": "رمز التحقق",
"userProfile.mobileButton__menu": "القائمة",
"userProfile.navbar.account": "الملف الشخصي",
"userProfile.navbar.description": "إدارة معلومات حسابك.",
"userProfile.navbar.security": "الأمان",
"userProfile.navbar.title": "الحساب",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} سيتم إزالته من هذا الحساب.",
"userProfile.passkeyScreen.removeResource.title": "إزالة مفتاح المرور",
"userProfile.passkeyScreen.subtitle__rename": "يمكنك تغيير اسم مفتاح المرور لتسهيل العثور عليه.",
"userProfile.passkeyScreen.title__rename": "إعادة تسمية مفتاح المرور",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "يُوصى بتسجيل الخروج من جميع الأجهزة الأخرى التي قد استخدمت كلمة المرور القديمة.",
"userProfile.passwordPage.readonly": "لا يمكن تعديل كلمة المرور حالياً لأنك تسجل الدخول فقط عبر الاتصال المؤسسي.",
"userProfile.passwordPage.successMessage__set": "تم تعيين كلمة المرور الخاصة بك.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "تم تسجيل الخروج من جميع الأجهزة الأخرى.",
"userProfile.passwordPage.successMessage__update": "تم تحديث كلمة المرور الخاصة بك.",
"userProfile.passwordPage.title__set": "تعيين كلمة المرور",
"userProfile.passwordPage.title__update": "تحديث كلمة المرور",
"userProfile.phoneNumberPage.infoText": "سيتم إرسال رسالة نصية تحتوي على رمز تحقق إلى هذا الرقم. قد يتم تطبيق رسوم على الرسائل والبيانات.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} سيتم إزالته من هذا الحساب.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "لن تتمكن من تسجيل الدخول باستخدام هذا الرقم بعد الآن.",
"userProfile.phoneNumberPage.removeResource.successMessage": "تمت إزالة {{phoneNumber}} من حسابك.",
"userProfile.phoneNumberPage.removeResource.title": "إزالة رقم الهاتف",
"userProfile.phoneNumberPage.successMessage": "تمت إضافة {{identifier}} إلى حسابك.",
"userProfile.phoneNumberPage.title": "إضافة رقم هاتف",
"userProfile.phoneNumberPage.verifySubtitle": "أدخل رمز التحقق المرسل إلى {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "تحقق من رقم الهاتف",
"userProfile.profilePage.fileDropAreaHint": "الحجم الموصى به 1:1، حتى 10 ميجابايت.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "إزالة",
"userProfile.profilePage.imageFormSubtitle": "تحميل",
"userProfile.profilePage.imageFormTitle": "صورة الملف الشخصي",
"userProfile.profilePage.readonly": "تم توفير معلومات ملفك الشخصي من خلال الاتصال المؤسسي ولا يمكن تعديلها.",
"userProfile.profilePage.successMessage": "تم تحديث ملفك الشخصي.",
"userProfile.profilePage.title": "تحديث الملف الشخصي",
"userProfile.start.activeDevicesSection.destructiveAction": "تسجيل الخروج من الجهاز",
"userProfile.start.activeDevicesSection.title": "الأجهزة النشطة",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "حاول مرة أخرى",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "قم بالتفويض الآن",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "إزالة",
"userProfile.start.connectedAccountsSection.primaryButton": "ربط الحساب",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "تم تحديث الأذونات المطلوبة، وقد تواجه وظائف محدودة. يرجى إعادة تفويض هذا التطبيق لتجنب أي مشاكل",
"userProfile.start.connectedAccountsSection.title": "الحسابات المرتبطة",
"userProfile.start.dangerSection.deleteAccountButton": "حذف الحساب",
"userProfile.start.dangerSection.title": "حذف الحساب",
"userProfile.start.emailAddressesSection.destructiveAction": "إزالة البريد الإلكتروني",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "تعيين كافتراضي",
"userProfile.start.emailAddressesSection.detailsAction__primary": "إكمال التحقق",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "تحقق",
"userProfile.start.emailAddressesSection.primaryButton": "إضافة عنوان بريد إلكتروني",
"userProfile.start.emailAddressesSection.title": "عناوين البريد الإلكتروني",
"userProfile.start.enterpriseAccountsSection.title": "حسابات المؤسسات",
"userProfile.start.headerTitle__account": "تفاصيل الملف الشخصي",
"userProfile.start.headerTitle__security": "الأمان",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "إعادة التوليد",
"userProfile.start.mfaSection.backupCodes.headerTitle": "رموز النسخ الاحتياطي",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "احصل على مجموعة جديدة من رموز النسخ الاحتياطي الآمنة. سيتم حذف الرموز السابقة ولن تكون صالحة للاستخدام.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "إعادة توليد رموز النسخ الاحتياطي",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "تعيين كافتراضي",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "إزالة",
"userProfile.start.mfaSection.primaryButton": "إضافة التحقق بخطوتين",
"userProfile.start.mfaSection.title": "التحقق بخطوتين",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "إزالة",
"userProfile.start.mfaSection.totp.headerTitle": "تطبيق المصادقة",
"userProfile.start.passkeysSection.menuAction__destructive": "إزالة",
"userProfile.start.passkeysSection.menuAction__rename": "إعادة التسمية",
"userProfile.start.passkeysSection.title": "مفاتيح المرور",
"userProfile.start.passwordSection.primaryButton__setPassword": "تعيين كلمة المرور",
"userProfile.start.passwordSection.primaryButton__updatePassword": "تحديث كلمة المرور",
"userProfile.start.passwordSection.title": "كلمة المرور",
"userProfile.start.phoneNumbersSection.destructiveAction": "إزالة رقم الهاتف",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "تعيين كافتراضي",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "إكمال التحقق",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "تحقق من رقم الهاتف",
"userProfile.start.phoneNumbersSection.primaryButton": "إضافة رقم هاتف",
"userProfile.start.phoneNumbersSection.title": "أرقام الهاتف",
"userProfile.start.profileSection.primaryButton": "تحديث الملف الشخصي",
"userProfile.start.profileSection.title": "الملف الشخصي",
"userProfile.start.usernameSection.primaryButton__setUsername": "تعيين اسم المستخدم",
"userProfile.start.usernameSection.primaryButton__updateUsername": "تحديث اسم المستخدم",
"userProfile.start.usernameSection.title": "اسم المستخدم",
"userProfile.start.web3WalletsSection.destructiveAction": "إزالة المحفظة",
"userProfile.start.web3WalletsSection.primaryButton": "محافظ Web3",
"userProfile.start.web3WalletsSection.title": "محافظ Web3",
"userProfile.usernamePage.successMessage": "تم تحديث اسم المستخدم الخاص بك.",
"userProfile.usernamePage.title__set": "تعيين اسم المستخدم",
"userProfile.usernamePage.title__update": "تحديث اسم المستخدم",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} سيتم إزالته من هذا الحساب.",
"userProfile.web3WalletPage.removeResource.messageLine2": "لن تتمكن من تسجيل الدخول باستخدام هذه المحفظة Web3 بعد الآن.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} تم إزالته من حسابك.",
"userProfile.web3WalletPage.removeResource.title": "إزالة محفظة Web3",
"userProfile.web3WalletPage.subtitle__availableWallets": "اختر محفظة Web3 لربطها بحسابك.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "لا توجد محافظ Web3 متاحة.",
"userProfile.web3WalletPage.successMessage": "تمت إضافة المحفظة إلى حسابك.",
"userProfile.web3WalletPage.title": "إضافة محفظة Web3"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "متابعة الجلسة",
"clerkAuth.loginSuccess.desc": "{{greeting}}، يسعدنا الاستمرار في خدمتك. لنكمل من حيث توقفنا.",
"clerkAuth.loginSuccess.title": "مرحبًا بعودتك، {{nickName}}",
"error.backHome": "العودة إلى الصفحة الرئيسية",
"error.desc": "حاول مرة أخرى لاحقًا، أو عد إلى العالم المعروف.",
"error.retry": "إعادة التحميل",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "عذرًا، تم استهلاك الحصة المخصصة لهذا المفتاح. يرجى التحقق من رصيد حسابك أو زيادة الحصة والمحاولة مجددًا.",
"response.InvalidAccessCode": "رمز الوصول غير صالح أو فارغ. يرجى إدخال رمز الوصول الصحيح أو إضافة مفتاح API مخصص.",
"response.InvalidBedrockCredentials": "فشل التوثيق مع Bedrock. يرجى التحقق من AccessKeyId/SecretAccessKey والمحاولة مجددًا.",
"response.InvalidClerkUser": "عذرًا، لم تقم بتسجيل الدخول حاليًا. يرجى تسجيل الدخول أو إنشاء حساب للمتابعة.",
"response.InvalidComfyUIArgs": "إعدادات ComfyUI غير صالحة. يرجى التحقق من الإعدادات والمحاولة مجددًا.",
"response.InvalidGithubToken": "رمز GitHub الشخصي غير صحيح أو فارغ. يرجى التحقق من الرمز والمحاولة مجددًا.",
"response.InvalidOllamaArgs": "إعدادات Ollama غير صالحة، يرجى التحقق منها والمحاولة مجددًا.",

View file

@ -1,545 +0,0 @@
{
"backButton": "Назад",
"badge__default": "По подразбиране",
"badge__otherImpersonatorDevice": "Друго устройство за имитация",
"badge__primary": "Основно",
"badge__requiresAction": "Изисква действие",
"badge__thisDevice": "Това устройство",
"badge__unverified": "Непотвърдено",
"badge__userDevice": "Потребителско устройство",
"badge__you": "Вие",
"createOrganization.formButtonSubmit": "Създай организация",
"createOrganization.invitePage.formButtonReset": "Пропусни",
"createOrganization.title": "Създай организация",
"dates.lastDay": "Вчера в {{ date | timeString('bg-BG') }}",
"dates.next6Days": "{{ date | weekday('bg-BG','long') }} в {{ date | timeString('bg-BG') }}",
"dates.nextDay": "Утре в {{ date | timeString('bg-BG') }}",
"dates.numeric": "{{ date | numeric('bg-BG') }}",
"dates.previous6Days": "Миналия {{ date | weekday('bg-BG','long') }} в {{ date | timeString('bg-BG') }}",
"dates.sameDay": "Днес в {{ date | timeString('bg-BG') }}",
"dividerText": "или",
"footerActionLink__useAnotherMethod": "Използвай друг метод",
"footerPageLink__help": "Помощ",
"footerPageLink__privacy": "Поверителност",
"footerPageLink__terms": "Условия",
"formButtonPrimary": "Продължи",
"formButtonPrimary__verify": "Потвърди",
"formFieldAction__forgotPassword": "Забравена парола?",
"formFieldError__matchingPasswords": "Паролите съвпадат.",
"formFieldError__notMatchingPasswords": "Паролите не съвпадат.",
"formFieldError__verificationLinkExpired": "Връзката за потвърждение е изтекла. Моля, поискайте нова връзка.",
"formFieldHintText__optional": "По избор",
"formFieldHintText__slug": "Slug е четим за хора идентификатор, който трябва да е уникален. Често се използва в URL адреси.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Изтрий акаунта",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "primer@email.com, primer2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "moq-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Разреши автоматични покани за този домейн",
"formFieldLabel__backupCode": "Резервен код",
"formFieldLabel__confirmDeletion": "Потвърждение",
"formFieldLabel__confirmPassword": "Потвърди паролата",
"formFieldLabel__currentPassword": "Текуща парола",
"formFieldLabel__emailAddress": "Имейл адрес",
"formFieldLabel__emailAddress_username": "Имейл адрес или потребителско име",
"formFieldLabel__emailAddresses": "Имейл адреси",
"formFieldLabel__firstName": "Собствено име",
"formFieldLabel__lastName": "Фамилно име",
"formFieldLabel__newPassword": "Нова парола",
"formFieldLabel__organizationDomain": "Домейн",
"formFieldLabel__organizationDomainDeletePending": "Изтрий чакащи покани и предложения",
"formFieldLabel__organizationDomainEmailAddress": "Имейл за потвърждение",
"formFieldLabel__organizationDomainEmailAddressDescription": "Въведете имейл адрес под този домейн, за да получите код и да потвърдите домейна.",
"formFieldLabel__organizationName": "Име",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "Име на ключа за достъп",
"formFieldLabel__password": "Парола",
"formFieldLabel__phoneNumber": "Телефонен номер",
"formFieldLabel__role": "Роля",
"formFieldLabel__signOutOfOtherSessions": "Излез от всички други устройства",
"formFieldLabel__username": "Потребителско име",
"impersonationFab.action__signOut": "Изход",
"impersonationFab.title": "Вписан като {{identifier}}",
"locale": "bg-BG",
"maintenanceMode": "В момента извършваме поддръжка, но не се притеснявайте — това няма да отнеме повече от няколко минути.",
"membershipRole__admin": "Администратор",
"membershipRole__basicMember": "Член",
"membershipRole__guestMember": "Гост",
"organizationList.action__createOrganization": "Създай организация",
"organizationList.action__invitationAccept": "Присъедини се",
"organizationList.action__suggestionsAccept": "Заяви присъединяване",
"organizationList.createOrganization": "Създай организация",
"organizationList.invitationAcceptedLabel": "Присъедини се",
"organizationList.subtitle": "за да продължите към {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "Очаква одобрение",
"organizationList.title": "Изберете акаунт",
"organizationList.titleWithoutPersonal": "Изберете организация",
"organizationProfile.badge__automaticInvitation": "Автоматични покани",
"organizationProfile.badge__automaticSuggestion": "Автоматични предложения",
"organizationProfile.badge__manualInvitation": "Без автоматично присъединяване",
"organizationProfile.badge__unverified": "Непотвърдено",
"organizationProfile.createDomainPage.subtitle": "Добавете домейна за потвърждение. Потребители с имейл адреси под този домейн могат автоматично да се присъединят или да заявят присъединяване към организацията.",
"organizationProfile.createDomainPage.title": "Добави домейн",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "Поканите не можаха да бъдат изпратени. Вече има чакащи покани за следните имейл адреси: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Изпрати покани",
"organizationProfile.invitePage.selectDropdown__role": "Изберете роля",
"organizationProfile.invitePage.subtitle": "Въведете или поставете един или повече имейл адреси, разделени със запетая или интервал.",
"organizationProfile.invitePage.successMessage": "Поканите бяха изпратени успешно",
"organizationProfile.invitePage.title": "Покани нови членове",
"organizationProfile.membersPage.action__invite": "Покани",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Премахни член",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Присъединил се",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Роля",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Потребител",
"organizationProfile.membersPage.detailsTitle__emptyRow": "Няма членове за показване",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Поканете потребители чрез свързване на имейл домейн с вашата организация. Всеки, който се регистрира с имейл от съответстващ домейн, ще може да се присъедини по всяко време.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Автоматични покани",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Управлявай потвърдени домейни",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Няма покани за показване",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Отмени поканата",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Поканен",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Потребители, които се регистрират с имейл от съответстващ домейн, ще виждат предложение да се присъединят към вашата организация.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Автоматични предложения",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Управлявай потвърдени домейни",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Одобри",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Отхвърли",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Заявено присъединяване",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Няма заявки за показване",
"organizationProfile.membersPage.start.headerTitle__invitations": "Покани",
"organizationProfile.membersPage.start.headerTitle__members": "Членове",
"organizationProfile.membersPage.start.headerTitle__requests": "Заявки",
"organizationProfile.navbar.description": "Управлявайте вашата организация.",
"organizationProfile.navbar.general": "Общи",
"organizationProfile.navbar.members": "Членове",
"organizationProfile.navbar.title": "Организация",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Въведете \"{{organizationName}}\" по-долу, за да продължите.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Сигурни ли сте, че искате да изтриете тази организация?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Това действие е постоянно и необратимо.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Организацията беше изтрита.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Изтриване на организация",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Въведете \"{{organizationName}}\" по-долу, за да продължите.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Сигурни ли сте, че искате да напуснете тази организация? Ще загубите достъп до нея и нейните приложения.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Това действие е постоянно и необратимо.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Напуснахте организацията.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Напускане на организация",
"organizationProfile.profilePage.dangerSection.title": "Опасност",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Управление",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Изтриване",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Потвърждаване",
"organizationProfile.profilePage.domainSection.primaryButton": "Добавяне на домейн",
"organizationProfile.profilePage.domainSection.subtitle": "Позволете на потребителите автоматично да се присъединяват към организацията или да поискат достъп въз основа на потвърден имейл домейн.",
"organizationProfile.profilePage.domainSection.title": "Потвърдени домейни",
"organizationProfile.profilePage.successMessage": "Организацията беше актуализирана.",
"organizationProfile.profilePage.title": "Актуализиране на профил",
"organizationProfile.removeDomainPage.messageLine1": "Имейл домейнът {{domain}} ще бъде премахнат.",
"organizationProfile.removeDomainPage.messageLine2": "Потребителите няма да могат автоматично да се присъединяват към организацията след това.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} беше премахнат.",
"organizationProfile.removeDomainPage.title": "Премахване на домейн",
"organizationProfile.start.headerTitle__general": "Общи",
"organizationProfile.start.headerTitle__members": "Членове",
"organizationProfile.start.profileSection.primaryButton": "Актуализиране на профил",
"organizationProfile.start.profileSection.title": "Профил на организацията",
"organizationProfile.start.profileSection.uploadAction__title": "Лого",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Премахването на този домейн ще засегне поканените потребители.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Премахване на домейн",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Премахнете този домейн от потвърдените домейни",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Премахване на домейн",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Потребителите автоматично се поканват да се присъединят към организацията при регистрация и могат да се присъединят по всяко време.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Автоматични покани",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Потребителите получават предложение да поискат присъединяване, но трябва да бъдат одобрени от администратор.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Автоматични предложения",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Промяната на режима на записване ще засегне само нови потребители.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Изпратени чакащи покани: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Изпратени чакащи предложения: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Потребителите могат да бъдат поканени само ръчно в организацията.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Без автоматично записване",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Изберете как потребителите от този домейн могат да се присъединят към организацията.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Опасност",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Опции за записване",
"organizationProfile.verifiedDomainPage.subtitle": "Домейнът {{domain}} е потвърден. Продължете, като изберете режим на записване.",
"organizationProfile.verifiedDomainPage.title": "Актуализиране на {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "Въведете кода за потвърждение, изпратен на вашия имейл адрес",
"organizationProfile.verifyDomainPage.formTitle": "Код за потвърждение",
"organizationProfile.verifyDomainPage.resendButton": "Не сте получили код? Изпратете отново",
"organizationProfile.verifyDomainPage.subtitle": "Домейнът {{domainName}} трябва да бъде потвърден чрез имейл.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "Код за потвърждение беше изпратен на {{emailAddress}}. Въведете кода, за да продължите.",
"organizationProfile.verifyDomainPage.title": "Потвърдете домейн",
"organizationSwitcher.action__createOrganization": "Създаване на организация",
"organizationSwitcher.action__invitationAccept": "Присъединяване",
"organizationSwitcher.action__manageOrganization": "Управление",
"organizationSwitcher.action__suggestionsAccept": "Заяви присъединяване",
"organizationSwitcher.notSelected": "Няма избрана организация",
"organizationSwitcher.personalWorkspace": "Личен акаунт",
"organizationSwitcher.suggestionsAcceptedLabel": "Очаква одобрение",
"paginationButton__next": "Следваща",
"paginationButton__previous": "Предишна",
"paginationRowText__displaying": "Показване",
"paginationRowText__of": "от",
"signIn.accountSwitcher.action__addAccount": "Добавяне на акаунт",
"signIn.accountSwitcher.action__signOutAll": "Изход от всички акаунти",
"signIn.accountSwitcher.subtitle": "Изберете акаунта, с който искате да продължите.",
"signIn.accountSwitcher.title": "Изберете акаунт",
"signIn.alternativeMethods.actionLink": "Получете помощ",
"signIn.alternativeMethods.actionText": "Нямате нито един от тези?",
"signIn.alternativeMethods.blockButton__backupCode": "Използвайте резервен код",
"signIn.alternativeMethods.blockButton__emailCode": "Изпратете код по имейл на {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "Изпратете линк по имейл на {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "Вход с ключ за достъп",
"signIn.alternativeMethods.blockButton__password": "Вход с парола",
"signIn.alternativeMethods.blockButton__phoneCode": "Изпратете SMS код на {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "Използвайте приложението за удостоверяване",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Свържете се с поддръжка по имейл",
"signIn.alternativeMethods.getHelp.content": "Ако имате затруднения с влизането в акаунта си, пишете ни и ще ви помогнем да възстановите достъпа възможно най-скоро.",
"signIn.alternativeMethods.getHelp.title": "Получете помощ",
"signIn.alternativeMethods.subtitle": "Имате проблеми? Можете да използвате някой от тези методи за вход.",
"signIn.alternativeMethods.title": "Използвайте друг метод",
"signIn.backupCodeMfa.subtitle": "Вашият резервен код е този, който сте получили при настройване на двустепенно удостоверяване.",
"signIn.backupCodeMfa.title": "Въведете резервен код",
"signIn.emailCode.formTitle": "Код за потвърждение",
"signIn.emailCode.resendButton": "Не сте получили код? Изпратете отново",
"signIn.emailCode.subtitle": "за да продължите към {{applicationName}}",
"signIn.emailCode.title": "Проверете имейла си",
"signIn.emailLink.expired.subtitle": "Върнете се в оригиналния раздел, за да продължите.",
"signIn.emailLink.expired.title": "Този линк за потвърждение е изтекъл",
"signIn.emailLink.failed.subtitle": "Върнете се в оригиналния раздел, за да продължите.",
"signIn.emailLink.failed.title": "Този линк за потвърждение е невалиден",
"signIn.emailLink.formSubtitle": "Използвайте линка за потвърждение, изпратен на вашия имейл",
"signIn.emailLink.formTitle": "Линк за потвърждение",
"signIn.emailLink.loading.subtitle": "Ще бъдете пренасочени скоро",
"signIn.emailLink.loading.title": "Влизане...",
"signIn.emailLink.resendButton": "Не сте получили линк? Изпратете отново",
"signIn.emailLink.subtitle": "за да продължите към {{applicationName}}",
"signIn.emailLink.title": "Проверете имейла си",
"signIn.emailLink.unusedTab.title": "Можете да затворите този раздел",
"signIn.emailLink.verified.subtitle": "Ще бъдете пренасочени скоро",
"signIn.emailLink.verified.title": "Успешно влязохте в системата",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Върнете се в оригиналния раздел, за да продължите",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Върнете се в новоотворения раздел, за да продължите",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Влязохте в друг раздел",
"signIn.forgotPassword.formTitle": "Код за нулиране на парола",
"signIn.forgotPassword.resendButton": "Не сте получили код? Изпратете отново",
"signIn.forgotPassword.subtitle": "за да нулирате паролата си",
"signIn.forgotPassword.subtitle_email": "Първо въведете кода, изпратен на вашия имейл адрес",
"signIn.forgotPassword.subtitle_phone": "Първо въведете кода, изпратен на вашия телефон",
"signIn.forgotPassword.title": "Нулиране на парола",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Нулирайте паролата си",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Или влезте с друг метод",
"signIn.forgotPasswordAlternativeMethods.title": "Забравена парола?",
"signIn.noAvailableMethods.message": "Не може да се продължи с влизането. Няма наличен метод за удостоверяване.",
"signIn.noAvailableMethods.subtitle": "Възникна грешка",
"signIn.noAvailableMethods.title": "Не може да се влезе",
"signIn.passkey.subtitle": "Използването на ключ за достъп потвърждава, че вие сте това. Устройството ви може да поиска пръстов отпечатък, лице или заключване на екрана.",
"signIn.passkey.title": "Използвайте ключ за достъп",
"signIn.password.actionLink": "Използвайте друг метод",
"signIn.password.subtitle": "Въведете паролата, свързана с вашия акаунт",
"signIn.password.title": "Въведете паролата си",
"signIn.passwordPwned.title": "Паролата е компрометирана",
"signIn.phoneCode.formTitle": "Код за потвърждение",
"signIn.phoneCode.resendButton": "Не сте получили код? Изпратете отново",
"signIn.phoneCode.subtitle": "за да продължите към {{applicationName}}",
"signIn.phoneCode.title": "Проверете телефона си",
"signIn.phoneCodeMfa.formTitle": "Код за потвърждение",
"signIn.phoneCodeMfa.resendButton": "Не сте получили код? Изпратете отново",
"signIn.phoneCodeMfa.subtitle": "За да продължите, въведете кода за потвърждение, изпратен на телефона ви",
"signIn.phoneCodeMfa.title": "Проверете телефона си",
"signIn.resetPassword.formButtonPrimary": "Нулиране на парола",
"signIn.resetPassword.requiredMessage": "От съображения за сигурност е необходимо да нулирате паролата си.",
"signIn.resetPassword.successMessage": "Паролата ви беше успешно променена. Влизате, моля изчакайте.",
"signIn.resetPassword.title": "Задайте нова парола",
"signIn.resetPasswordMfa.detailsLabel": "Трябва да потвърдим самоличността ви преди нулиране на паролата.",
"signIn.start.actionLink": "Регистрирайте се",
"signIn.start.actionLink__use_email": "Използвайте имейл",
"signIn.start.actionLink__use_email_username": "Използвайте имейл или потребителско име",
"signIn.start.actionLink__use_passkey": "Използвайте ключ за достъп",
"signIn.start.actionLink__use_phone": "Използвайте телефон",
"signIn.start.actionLink__use_username": "Използвайте потребителско име",
"signIn.start.actionText": "Нямате акаунт?",
"signIn.start.subtitle": "Добре дошли отново! Моля, влезте, за да продължите",
"signIn.start.title": "Влезте в {{applicationName}}",
"signIn.totpMfa.formTitle": "Код за потвърждение",
"signIn.totpMfa.subtitle": "За да продължите, въведете кода за потвърждение, генериран от вашето приложение за удостоверяване",
"signIn.totpMfa.title": "Двуфакторна автентикация",
"signInEnterPasswordTitle": "Въведете паролата си",
"signUp.continue.actionLink": "Вход",
"signUp.continue.actionText": "Вече имате акаунт?",
"signUp.continue.subtitle": "Моля, попълнете останалите данни, за да продължите.",
"signUp.continue.title": "Попълнете липсващите полета",
"signUp.emailCode.formSubtitle": "Въведете кода за потвърждение, изпратен на вашия имейл адрес",
"signUp.emailCode.formTitle": "Код за потвърждение",
"signUp.emailCode.resendButton": "Не сте получили код? Изпратете отново",
"signUp.emailCode.subtitle": "Въведете кода за потвърждение, изпратен на вашия имейл",
"signUp.emailCode.title": "Потвърдете имейла си",
"signUp.emailLink.formSubtitle": "Използвайте връзката за потвърждение, изпратена на вашия имейл адрес",
"signUp.emailLink.formTitle": "Връзка за потвърждение",
"signUp.emailLink.loading.title": "Регистриране...",
"signUp.emailLink.resendButton": "Не сте получили връзка? Изпратете отново",
"signUp.emailLink.subtitle": "за да продължите към {{applicationName}}",
"signUp.emailLink.title": "Потвърдете имейла си",
"signUp.emailLink.verified.title": "Успешна регистрация",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Върнете се в новоотворения раздел, за да продължите",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Върнете се в предишния раздел, за да продължите",
"signUp.emailLink.verifiedSwitchTab.title": "Имейлът е успешно потвърден",
"signUp.phoneCode.formSubtitle": "Въведете кода за потвърждение, изпратен на вашия телефонен номер",
"signUp.phoneCode.formTitle": "Код за потвърждение",
"signUp.phoneCode.resendButton": "Не сте получили код? Изпратете отново",
"signUp.phoneCode.subtitle": "Въведете кода за потвърждение, изпратен на вашия телефон",
"signUp.phoneCode.title": "Потвърдете телефона си",
"signUp.start.actionLink": "Вход",
"signUp.start.actionText": "Вече имате акаунт?",
"signUp.start.subtitle": "Добре дошли! Моля, попълнете данните, за да започнете.",
"signUp.start.title": "Създайте акаунт",
"socialButtonsBlockButton": "Продължи с {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Регистрацията не бе успешна поради неуспешна проверка за сигурност. Моля, презаредете страницата и опитайте отново или се свържете с поддръжката за помощ.",
"unstable__errors.captcha_unavailable": "Регистрацията не бе успешна поради неуспешна проверка срещу ботове. Моля, презаредете страницата и опитайте отново или се свържете с поддръжката за помощ.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Този имейл адрес вече е зает. Моля, опитайте с друг.",
"unstable__errors.form_identifier_exists__phone_number": "Този телефонен номер вече е зает. Моля, опитайте с друг.",
"unstable__errors.form_identifier_exists__username": "Това потребителско име вече е заето. Моля, опитайте с друго.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "Имейл адресът трябва да е валиден.",
"unstable__errors.form_param_format_invalid__phone_number": "Телефонният номер трябва да е във валиден международен формат.",
"unstable__errors.form_param_max_length_exceeded__first_name": "Първото име не трябва да надвишава 256 знака.",
"unstable__errors.form_param_max_length_exceeded__last_name": "Фамилията не трябва да надвишава 256 знака.",
"unstable__errors.form_param_max_length_exceeded__name": "Името не трябва да надвишава 256 знака.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Вашата парола не е достатъчно сигурна.",
"unstable__errors.form_password_pwned": "Тази парола е била компрометирана при пробив в сигурността и не може да бъде използвана. Моля, изберете друга парола.",
"unstable__errors.form_password_pwned__sign_in": "Тази парола е била компрометирана при пробив в сигурността и не може да бъде използвана. Моля, нулирайте паролата си.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Вашата парола надвишава максималния допустим брой байтове. Моля, съкратете я или премахнете някои специални символи.",
"unstable__errors.form_password_validation_failed": "Невалидна парола",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "Не можете да изтриете последната си идентификация.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Вече има регистриран ключ за достъп на това устройство.",
"unstable__errors.passkey_not_supported": "Ключовете за достъп не се поддържат на това устройство.",
"unstable__errors.passkey_pa_not_supported": "Регистрацията изисква платформен автентификатор, но устройството не го поддържа.",
"unstable__errors.passkey_registration_cancelled": "Регистрацията на ключ за достъп беше отменена или изтече времето.",
"unstable__errors.passkey_retrieval_cancelled": "Потвърждението с ключ за достъп беше отменено или изтече времето.",
"unstable__errors.passwordComplexity.maximumLength": "по-малко от {{length}} знака",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} или повече знака",
"unstable__errors.passwordComplexity.requireLowercase": "малка буква",
"unstable__errors.passwordComplexity.requireNumbers": "цифра",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "специален символ",
"unstable__errors.passwordComplexity.requireUppercase": "главна буква",
"unstable__errors.passwordComplexity.sentencePrefix": "Вашата парола трябва да съдържа",
"unstable__errors.phone_number_exists": "Този телефонен номер вече е зает. Моля, опитайте с друг.",
"unstable__errors.zxcvbn.couldBeStronger": "Паролата ви е приемлива, но може да бъде по-сигурна. Опитайте да добавите още символи.",
"unstable__errors.zxcvbn.goodPassword": "Паролата ви отговаря на всички изисквания.",
"unstable__errors.zxcvbn.notEnough": "Паролата ви не е достатъчно сигурна.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Използвайте главни букви, но не всички.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Добавете по-рядко срещани думи.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Избягвайте години, свързани с вас.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Използвайте главни букви не само в началото.",
"unstable__errors.zxcvbn.suggestions.dates": "Избягвайте дати и години, свързани с вас.",
"unstable__errors.zxcvbn.suggestions.l33t": "Избягвайте предвидими замени на букви като '@' вместо 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Използвайте по-дълги клавиатурни модели и сменяйте посоката на писане.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Можете да създадете сигурна парола и без символи, цифри или главни букви.",
"unstable__errors.zxcvbn.suggestions.pwned": "Ако използвате тази парола и на други места, трябва да я смените.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Избягвайте скорошни години.",
"unstable__errors.zxcvbn.suggestions.repeated": "Избягвайте повтарящи се думи и символи.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Избягвайте обърнати изписвания на често срещани думи.",
"unstable__errors.zxcvbn.suggestions.sequences": "Избягвайте често срещани последователности от символи.",
"unstable__errors.zxcvbn.suggestions.useWords": "Използвайте няколко думи, но избягвайте често срещани фрази.",
"unstable__errors.zxcvbn.warnings.common": "Това е често използвана парола.",
"unstable__errors.zxcvbn.warnings.commonNames": "Често срещаните имена и фамилии са лесни за отгатване.",
"unstable__errors.zxcvbn.warnings.dates": "Датите са лесни за отгатване.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Повтарящи се модели като \"abcabcabc\" са лесни за отгатване.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Кратките клавиатурни модели са лесни за отгатване.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Самостоятелни имена или фамилии са лесни за отгатване.",
"unstable__errors.zxcvbn.warnings.pwned": "Вашата парола е била разкрита при пробив в сигурността в интернет.",
"unstable__errors.zxcvbn.warnings.recentYears": "Скорошните години са лесни за отгатване.",
"unstable__errors.zxcvbn.warnings.sequences": "Често срещани последователности като \"abc\" са лесни за отгатване.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "Това е подобно на често използвана парола.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Повтарящи се символи като \"aaa\" са лесни за отгатване.",
"unstable__errors.zxcvbn.warnings.straightRow": "Прави редове от клавиши на клавиатурата са лесни за отгатване.",
"unstable__errors.zxcvbn.warnings.topHundred": "Това е често използвана парола.",
"unstable__errors.zxcvbn.warnings.topTen": "Това е една от най-често използваните пароли.",
"unstable__errors.zxcvbn.warnings.userInputs": "Не трябва да има лични или свързани с профила данни.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Единични думи са лесни за отгатване.",
"userButton.action__addAccount": "Добавяне на акаунт",
"userButton.action__manageAccount": "Управление на акаунта",
"userButton.action__signOut": "Изход",
"userButton.action__signOutAll": "Изход от всички акаунти",
"userProfile.backupCodePage.actionLabel__copied": "Копирано!",
"userProfile.backupCodePage.actionLabel__copy": "Копирай всички",
"userProfile.backupCodePage.actionLabel__download": "Изтегли .txt",
"userProfile.backupCodePage.actionLabel__print": "Печат",
"userProfile.backupCodePage.infoText1": "Резервните кодове ще бъдат активирани за този акаунт.",
"userProfile.backupCodePage.infoText2": "Пазете резервните кодове в тайна и ги съхранявайте сигурно. Можете да генерирате нови, ако подозирате, че са компрометирани.",
"userProfile.backupCodePage.subtitle__codelist": "Съхранявайте ги сигурно и ги пазете в тайна.",
"userProfile.backupCodePage.successMessage": "Резервните кодове са активирани. Можете да използвате един от тях, за да влезете в акаунта си, ако загубите достъп до устройството за удостоверяване. Всеки код може да се използва само веднъж.",
"userProfile.backupCodePage.successSubtitle": "Можете да използвате един от тях, за да влезете в акаунта си, ако загубите достъп до устройството за удостоверяване.",
"userProfile.backupCodePage.title": "Добавяне на удостоверяване с резервен код",
"userProfile.backupCodePage.title__codelist": "Резервни кодове",
"userProfile.connectedAccountPage.formHint": "Изберете доставчик, за да свържете акаунта си.",
"userProfile.connectedAccountPage.formHint__noAccounts": "Няма налични външни доставчици на акаунти.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} ще бъде премахнат от този акаунт.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Няма да можете да използвате този свързан акаунт и свързаните функции ще спрат да работят.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} беше премахнат от акаунта ви.",
"userProfile.connectedAccountPage.removeResource.title": "Премахване на свързан акаунт",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "Доставчикът беше добавен към акаунта ви",
"userProfile.connectedAccountPage.title": "Добавяне на свързан акаунт",
"userProfile.deletePage.actionDescription": "Въведете \"Изтриване на акаунт\" по-долу, за да продължите.",
"userProfile.deletePage.confirm": "Изтриване на акаунт",
"userProfile.deletePage.messageLine1": "Сигурни ли сте, че искате да изтриете акаунта си?",
"userProfile.deletePage.messageLine2": "Това действие е постоянно и необратимо.",
"userProfile.deletePage.title": "Изтриване на акаунт",
"userProfile.emailAddressPage.emailCode.formHint": "Ще бъде изпратен имейл с код за потвърждение на този адрес.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Въведете кода за потвърждение, изпратен до {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "Код за потвърждение",
"userProfile.emailAddressPage.emailCode.resendButton": "Не сте получили код? Изпрати отново",
"userProfile.emailAddressPage.emailCode.successMessage": "Имейлът {{identifier}} беше добавен към акаунта ви.",
"userProfile.emailAddressPage.emailLink.formHint": "Ще бъде изпратен имейл с връзка за потвърждение на този адрес.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Кликнете върху връзката за потвърждение в имейла, изпратен до {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "Връзка за потвърждение",
"userProfile.emailAddressPage.emailLink.resendButton": "Не сте получили връзка? Изпрати отново",
"userProfile.emailAddressPage.emailLink.successMessage": "Имейлът {{identifier}} беше добавен към акаунта ви.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} ще бъде премахнат от този акаунт.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Няма да можете да влизате с този имейл адрес.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} беше премахнат от акаунта ви.",
"userProfile.emailAddressPage.removeResource.title": "Премахване на имейл адрес",
"userProfile.emailAddressPage.title": "Добавяне на имейл адрес",
"userProfile.emailAddressPage.verifyTitle": "Потвърждаване на имейл адрес",
"userProfile.formButtonPrimary__add": "Добави",
"userProfile.formButtonPrimary__continue": "Продължи",
"userProfile.formButtonPrimary__finish": "Завърши",
"userProfile.formButtonPrimary__remove": "Премахни",
"userProfile.formButtonPrimary__save": "Запази",
"userProfile.formButtonReset": "Отказ",
"userProfile.mfaPage.formHint": "Изберете метод за добавяне.",
"userProfile.mfaPage.title": "Добавяне на двустепенно удостоверяване",
"userProfile.mfaPhoneCodePage.backButton": "Използвай съществуващ номер",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Добави телефонен номер",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} вече няма да получава кодове за потвърждение при влизане.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Акаунтът ви може да не е толкова сигурен. Сигурни ли сте, че искате да продължите?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "Двустепенното удостоверяване чрез SMS код беше премахнато за {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "Премахване на двустепенно удостоверяване",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Изберете съществуващ номер или добавете нов за двустепенно удостоверяване чрез SMS код.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "Няма налични телефонни номера. Моля, добавете нов.",
"userProfile.mfaPhoneCodePage.successMessage1": "При влизане ще трябва да въведете код за потвърждение, изпратен на този номер.",
"userProfile.mfaPhoneCodePage.successMessage2": "Запазете тези резервни кодове на сигурно място. Ако загубите достъп до устройството си, можете да ги използвате за вход.",
"userProfile.mfaPhoneCodePage.successTitle": "Удостоверяване чрез SMS код е активирано",
"userProfile.mfaPhoneCodePage.title": "Добавяне на удостоверяване чрез SMS код",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "Сканирай QR код вместо това",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "Не можете да сканирате QR код?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Настройте нов метод за вход в приложението си за удостоверяване и сканирайте QR кода, за да го свържете с акаунта си.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Настройте нов метод за вход и въведете предоставения по-долу ключ.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Уверете се, че е активирана опцията за еднократни или базирани на време пароли, след което завършете свързването.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Ако приложението ви поддържа TOTP URI, можете да копирате пълния URI.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Кодовете за потвърждение от това приложение вече няма да се изискват при вход.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Акаунтът ви може да не е толкова сигурен. Сигурни ли сте, че искате да продължите?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "Двустепенното удостоверяване чрез приложение за удостоверяване беше премахнато.",
"userProfile.mfaTOTPPage.removeResource.title": "Премахване на двустепенно удостоверяване",
"userProfile.mfaTOTPPage.successMessage": "Двустепенното удостоверяване е активирано. При вход ще трябва да въведете код от приложението за удостоверяване.",
"userProfile.mfaTOTPPage.title": "Добавяне на приложение за удостоверяване",
"userProfile.mfaTOTPPage.verifySubtitle": "Въведете кода за потвърждение, генериран от приложението ви",
"userProfile.mfaTOTPPage.verifyTitle": "Код за потвърждение",
"userProfile.mobileButton__menu": "Меню",
"userProfile.navbar.account": "Профил",
"userProfile.navbar.description": "Управлявайте информацията за акаунта си.",
"userProfile.navbar.security": "Сигурност",
"userProfile.navbar.title": "Акаунт",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} ще бъде премахнат от този акаунт.",
"userProfile.passkeyScreen.removeResource.title": "Премахване на ключ за достъп",
"userProfile.passkeyScreen.subtitle__rename": "Можете да промените името на ключа за достъп, за да го намирате по-лесно.",
"userProfile.passkeyScreen.title__rename": "Преименуване на ключ за достъп",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Препоръчително е да излезете от всички други устройства, които може да са използвали старата ви парола.",
"userProfile.passwordPage.readonly": "В момента не можете да редактирате паролата си, тъй като влизате само чрез фирмената връзка.",
"userProfile.passwordPage.successMessage__set": "Паролата ви беше зададена.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Всички други устройства бяха изключени.",
"userProfile.passwordPage.successMessage__update": "Паролата ви беше актуализирана.",
"userProfile.passwordPage.title__set": "Задаване на парола",
"userProfile.passwordPage.title__update": "Актуализиране на парола",
"userProfile.phoneNumberPage.infoText": "Ще бъде изпратено текстово съобщение с код за потвърждение на този телефонен номер. Може да се прилагат такси за съобщения и данни.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} ще бъде премахнат от този акаунт.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Няма да можете да влизате с този телефонен номер.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} беше премахнат от акаунта ви.",
"userProfile.phoneNumberPage.removeResource.title": "Премахване на телефонен номер",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} беше добавен към акаунта ви.",
"userProfile.phoneNumberPage.title": "Добавяне на телефонен номер",
"userProfile.phoneNumberPage.verifySubtitle": "Въведете кода за потвърждение, изпратен на {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "Потвърждаване на телефонен номер",
"userProfile.profilePage.fileDropAreaHint": "Препоръчителен размер 1:1, до 10MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Премахване",
"userProfile.profilePage.imageFormSubtitle": "Качване",
"userProfile.profilePage.imageFormTitle": "Профилна снимка",
"userProfile.profilePage.readonly": "Информацията за профила ви е предоставена от фирмената връзка и не може да бъде редактирана.",
"userProfile.profilePage.successMessage": "Профилът ви беше актуализиран.",
"userProfile.profilePage.title": "Актуализиране на профил",
"userProfile.start.activeDevicesSection.destructiveAction": "Изход от устройството",
"userProfile.start.activeDevicesSection.title": "Активни устройства",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Опитайте отново",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Упълномощи сега",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Премахване",
"userProfile.start.connectedAccountsSection.primaryButton": "Свържи акаунт",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "Изискваните разрешения са актуализирани и може да изпитвате ограничена функционалност. Моля, упълномощете отново това приложение, за да избегнете проблеми.",
"userProfile.start.connectedAccountsSection.title": "Свързани акаунти",
"userProfile.start.dangerSection.deleteAccountButton": "Изтриване на акаунт",
"userProfile.start.dangerSection.title": "Изтриване на акаунт",
"userProfile.start.emailAddressesSection.destructiveAction": "Премахване на имейл",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Задай като основен",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Завърши потвърждението",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Потвърди",
"userProfile.start.emailAddressesSection.primaryButton": "Добави имейл адрес",
"userProfile.start.emailAddressesSection.title": "Имейл адреси",
"userProfile.start.enterpriseAccountsSection.title": "Фирмени акаунти",
"userProfile.start.headerTitle__account": "Данни за профила",
"userProfile.start.headerTitle__security": "Сигурност",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Генерирай отново",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Резервни кодове",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Получете нов набор от защитени резервни кодове. Предишните кодове ще бъдат изтрити и няма да могат да се използват.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Генерирай отново резервни кодове",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Задай като по подразбиране",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Премахване",
"userProfile.start.mfaSection.primaryButton": "Добави двустепенна проверка",
"userProfile.start.mfaSection.title": "Двустепенна проверка",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Премахване",
"userProfile.start.mfaSection.totp.headerTitle": "Приложение за удостоверяване",
"userProfile.start.passkeysSection.menuAction__destructive": "Премахване",
"userProfile.start.passkeysSection.menuAction__rename": "Преименуване",
"userProfile.start.passkeysSection.title": "Ключове за достъп",
"userProfile.start.passwordSection.primaryButton__setPassword": "Задай парола",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Актуализирай парола",
"userProfile.start.passwordSection.title": "Парола",
"userProfile.start.phoneNumbersSection.destructiveAction": "Премахване на телефонен номер",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Задай като основен",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Завърши потвърждението",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Потвърди телефонен номер",
"userProfile.start.phoneNumbersSection.primaryButton": "Добави телефонен номер",
"userProfile.start.phoneNumbersSection.title": "Телефонни номера",
"userProfile.start.profileSection.primaryButton": "Актуализирай профил",
"userProfile.start.profileSection.title": "Профил",
"userProfile.start.usernameSection.primaryButton__setUsername": "Задай потребителско име",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Актуализирай потребителско име",
"userProfile.start.usernameSection.title": "Потребителско име",
"userProfile.start.web3WalletsSection.destructiveAction": "Премахване на портфейл",
"userProfile.start.web3WalletsSection.primaryButton": "Web3 портфейли",
"userProfile.start.web3WalletsSection.title": "Web3 портфейли",
"userProfile.usernamePage.successMessage": "Потребителското ви име беше актуализирано.",
"userProfile.usernamePage.title__set": "Задаване на потребителско име",
"userProfile.usernamePage.title__update": "Актуализиране на потребителско име",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} ще бъде премахнат от този акаунт.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Няма да можете да влизате с този web3 портфейл.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} беше премахнат от акаунта ви.",
"userProfile.web3WalletPage.removeResource.title": "Премахване на web3 портфейл",
"userProfile.web3WalletPage.subtitle__availableWallets": "Изберете web3 портфейл, който да свържете с акаунта си.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Няма налични web3 портфейли.",
"userProfile.web3WalletPage.successMessage": "Портфейлът беше добавен към акаунта ви.",
"userProfile.web3WalletPage.title": "Добавяне на web3 портфейл"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Продължи сесията",
"clerkAuth.loginSuccess.desc": "{{greeting}}, радваме се да продължим да ви обслужваме. Нека продължим оттам, откъдето спряхме.",
"clerkAuth.loginSuccess.title": "Добре дошъл отново, {{nickName}}",
"error.backHome": "Обратно към началната страница",
"error.desc": "Опитайте отново по-късно или се върнете към познатия свят.",
"error.retry": "Презареди",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Съжаляваме, достигнат е лимитът за този ключ. Проверете баланса си или увеличете квотата.",
"response.InvalidAccessCode": "Невалиден или празен код за достъп. Въведете правилния код или добавете персонализиран API ключ.",
"response.InvalidBedrockCredentials": "Неуспешна автентикация с Bedrock. Проверете AccessKeyId/SecretAccessKey и опитайте отново.",
"response.InvalidClerkUser": "Съжаляваме, не сте влезли. Влезте или се регистрирайте, за да продължите.",
"response.InvalidComfyUIArgs": "Невалидна конфигурация на ComfyUI. Проверете настройките и опитайте отново.",
"response.InvalidGithubToken": "Невалиден или празен GitHub токен. Проверете го и опитайте отново.",
"response.InvalidOllamaArgs": "Невалидна конфигурация на Ollama. Проверете настройките и опитайте отново.",

View file

@ -1,545 +0,0 @@
{
"backButton": "Zurück",
"badge__default": "Standard",
"badge__otherImpersonatorDevice": "Anderes Gerät eines Imitators",
"badge__primary": "Primär",
"badge__requiresAction": "Aktion erforderlich",
"badge__thisDevice": "Dieses Gerät",
"badge__unverified": "Nicht verifiziert",
"badge__userDevice": "Benutzergerät",
"badge__you": "Du",
"createOrganization.formButtonSubmit": "Organisation erstellen",
"createOrganization.invitePage.formButtonReset": "Überspringen",
"createOrganization.title": "Organisation erstellen",
"dates.lastDay": "Gestern um {{ date | timeString('de-DE') }}",
"dates.next6Days": "{{ date | weekday('de-DE','long') }} um {{ date | timeString('de-DE') }}",
"dates.nextDay": "Morgen um {{ date | timeString('de-DE') }}",
"dates.numeric": "{{ date | numeric('de-DE') }}",
"dates.previous6Days": "Letzten {{ date | weekday('de-DE','long') }} um {{ date | timeString('de-DE') }}",
"dates.sameDay": "Heute um {{ date | timeString('de-DE') }}",
"dividerText": "oder",
"footerActionLink__useAnotherMethod": "Andere Methode verwenden",
"footerPageLink__help": "Hilfe",
"footerPageLink__privacy": "Datenschutz",
"footerPageLink__terms": "Nutzungsbedingungen",
"formButtonPrimary": "Weiter",
"formButtonPrimary__verify": "Verifizieren",
"formFieldAction__forgotPassword": "Passwort vergessen?",
"formFieldError__matchingPasswords": "Passwörter stimmen überein.",
"formFieldError__notMatchingPasswords": "Passwörter stimmen nicht überein.",
"formFieldError__verificationLinkExpired": "Der Verifizierungslink ist abgelaufen. Bitte fordere einen neuen Link an.",
"formFieldHintText__optional": "Optional",
"formFieldHintText__slug": "Ein Slug ist eine lesbare ID, die eindeutig sein muss. Er wird häufig in URLs verwendet.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Konto löschen",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "beispiel@email.com, beispiel2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "meine-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Automatische Einladungen für diese Domain aktivieren",
"formFieldLabel__backupCode": "Backup-Code",
"formFieldLabel__confirmDeletion": "Bestätigung",
"formFieldLabel__confirmPassword": "Passwort bestätigen",
"formFieldLabel__currentPassword": "Aktuelles Passwort",
"formFieldLabel__emailAddress": "E-Mail-Adresse",
"formFieldLabel__emailAddress_username": "E-Mail-Adresse oder Benutzername",
"formFieldLabel__emailAddresses": "E-Mail-Adressen",
"formFieldLabel__firstName": "Vorname",
"formFieldLabel__lastName": "Nachname",
"formFieldLabel__newPassword": "Neues Passwort",
"formFieldLabel__organizationDomain": "Domain",
"formFieldLabel__organizationDomainDeletePending": "Ausstehende Einladungen und Vorschläge löschen",
"formFieldLabel__organizationDomainEmailAddress": "Verifizierungs-E-Mail-Adresse",
"formFieldLabel__organizationDomainEmailAddressDescription": "Gib eine E-Mail-Adresse unter dieser Domain ein, um einen Code zu erhalten und die Domain zu verifizieren.",
"formFieldLabel__organizationName": "Name",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "Name des Passkeys",
"formFieldLabel__password": "Passwort",
"formFieldLabel__phoneNumber": "Telefonnummer",
"formFieldLabel__role": "Rolle",
"formFieldLabel__signOutOfOtherSessions": "Von allen anderen Geräten abmelden",
"formFieldLabel__username": "Benutzername",
"impersonationFab.action__signOut": "Abmelden",
"impersonationFab.title": "Angemeldet als {{identifier}}",
"locale": "de-DE",
"maintenanceMode": "Wir führen derzeit Wartungsarbeiten durch. Keine Sorge, es sollte nur wenige Minuten dauern.",
"membershipRole__admin": "Administrator",
"membershipRole__basicMember": "Mitglied",
"membershipRole__guestMember": "Gast",
"organizationList.action__createOrganization": "Organisation erstellen",
"organizationList.action__invitationAccept": "Beitreten",
"organizationList.action__suggestionsAccept": "Beitritt anfragen",
"organizationList.createOrganization": "Organisation erstellen",
"organizationList.invitationAcceptedLabel": "Beigetreten",
"organizationList.subtitle": "um mit {{applicationName}} fortzufahren",
"organizationList.suggestionsAcceptedLabel": "Genehmigung ausstehend",
"organizationList.title": "Wähle ein Konto",
"organizationList.titleWithoutPersonal": "Wähle eine Organisation",
"organizationProfile.badge__automaticInvitation": "Automatische Einladungen",
"organizationProfile.badge__automaticSuggestion": "Automatische Vorschläge",
"organizationProfile.badge__manualInvitation": "Keine automatische Aufnahme",
"organizationProfile.badge__unverified": "Nicht verifiziert",
"organizationProfile.createDomainPage.subtitle": "Füge die Domain hinzu, um sie zu verifizieren. Nutzer mit E-Mail-Adressen unter dieser Domain können der Organisation automatisch beitreten oder eine Anfrage stellen.",
"organizationProfile.createDomainPage.title": "Domain hinzufügen",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "Die Einladungen konnten nicht gesendet werden. Für folgende E-Mail-Adressen bestehen bereits ausstehende Einladungen: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Einladungen senden",
"organizationProfile.invitePage.selectDropdown__role": "Rolle auswählen",
"organizationProfile.invitePage.subtitle": "Gib eine oder mehrere E-Mail-Adressen ein oder füge sie ein, getrennt durch Leerzeichen oder Kommas.",
"organizationProfile.invitePage.successMessage": "Einladungen erfolgreich gesendet",
"organizationProfile.invitePage.title": "Neue Mitglieder einladen",
"organizationProfile.membersPage.action__invite": "Einladen",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Mitglied entfernen",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Beigetreten",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Rolle",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Benutzer",
"organizationProfile.membersPage.detailsTitle__emptyRow": "Keine Mitglieder zum Anzeigen",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Lade Nutzer ein, indem du eine E-Mail-Domain mit deiner Organisation verknüpfst. Jeder, der sich mit einer passenden E-Mail-Domain registriert, kann jederzeit beitreten.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Automatische Einladungen",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Verifizierte Domains verwalten",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Keine Einladungen zum Anzeigen",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Einladung widerrufen",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Eingeladen",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Nutzer, die sich mit einer passenden E-Mail-Domain registrieren, sehen einen Vorschlag, deiner Organisation beizutreten.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Automatische Vorschläge",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Verifizierte Domains verwalten",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Genehmigen",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Ablehnen",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Zugriff angefragt",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Keine Anfragen zum Anzeigen",
"organizationProfile.membersPage.start.headerTitle__invitations": "Einladungen",
"organizationProfile.membersPage.start.headerTitle__members": "Mitglieder",
"organizationProfile.membersPage.start.headerTitle__requests": "Anfragen",
"organizationProfile.navbar.description": "Verwalte deine Organisation.",
"organizationProfile.navbar.general": "Allgemein",
"organizationProfile.navbar.members": "Mitglieder",
"organizationProfile.navbar.title": "Organisation",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Gib unten \"{{organizationName}}\" ein, um fortzufahren.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Bist du sicher, dass du diese Organisation löschen möchtest?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Diese Aktion ist dauerhaft und kann nicht rückgängig gemacht werden.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Du hast die Organisation gelöscht.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Organisation löschen",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Gib unten \"{{organizationName}}\" ein, um fortzufahren.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Bist du sicher, dass du diese Organisation verlassen möchtest? Du verlierst den Zugriff auf diese Organisation und ihre Anwendungen.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Diese Aktion ist dauerhaft und kann nicht rückgängig gemacht werden.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Du hast die Organisation verlassen.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Organisation verlassen",
"organizationProfile.profilePage.dangerSection.title": "Gefahrenbereich",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Verwalten",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Löschen",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Verifizieren",
"organizationProfile.profilePage.domainSection.primaryButton": "Domain hinzufügen",
"organizationProfile.profilePage.domainSection.subtitle": "Erlaube Nutzern, der Organisation automatisch beizutreten oder eine Anfrage zu stellen, basierend auf einer verifizierten E-Mail-Domain.",
"organizationProfile.profilePage.domainSection.title": "Verifizierte Domains",
"organizationProfile.profilePage.successMessage": "Die Organisation wurde aktualisiert.",
"organizationProfile.profilePage.title": "Profil aktualisieren",
"organizationProfile.removeDomainPage.messageLine1": "Die E-Mail-Domain {{domain}} wird entfernt.",
"organizationProfile.removeDomainPage.messageLine2": "Benutzer können der Organisation danach nicht mehr automatisch beitreten.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} wurde entfernt.",
"organizationProfile.removeDomainPage.title": "Domain entfernen",
"organizationProfile.start.headerTitle__general": "Allgemein",
"organizationProfile.start.headerTitle__members": "Mitglieder",
"organizationProfile.start.profileSection.primaryButton": "Profil aktualisieren",
"organizationProfile.start.profileSection.title": "Organisationsprofil",
"organizationProfile.start.profileSection.uploadAction__title": "Logo",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Das Entfernen dieser Domain wirkt sich auf eingeladene Benutzer aus.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Domain entfernen",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Diese Domain aus Ihren verifizierten Domains entfernen",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Domain entfernen",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Benutzer werden beim Registrieren automatisch eingeladen und können jederzeit beitreten.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Automatische Einladungen",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Benutzer erhalten einen Vorschlag, eine Beitrittsanfrage zu stellen, müssen jedoch von einem Administrator genehmigt werden.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Automatische Vorschläge",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Die Änderung des Einschreibemodus betrifft nur neue Benutzer.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Ausstehende Einladungen an Benutzer: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Ausstehende Vorschläge an Benutzer: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Benutzer können nur manuell zur Organisation eingeladen werden.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Keine automatische Einschreibung",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Wählen Sie aus, wie Benutzer dieser Domain der Organisation beitreten können.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Gefahr",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Einschreibeoptionen",
"organizationProfile.verifiedDomainPage.subtitle": "Die Domain {{domain}} wurde verifiziert. Wählen Sie nun den Einschreibemodus.",
"organizationProfile.verifiedDomainPage.title": "{{domain}} aktualisieren",
"organizationProfile.verifyDomainPage.formSubtitle": "Geben Sie den Bestätigungscode ein, der an Ihre E-Mail-Adresse gesendet wurde",
"organizationProfile.verifyDomainPage.formTitle": "Bestätigungscode",
"organizationProfile.verifyDomainPage.resendButton": "Keinen Code erhalten? Erneut senden",
"organizationProfile.verifyDomainPage.subtitle": "Die Domain {{domainName}} muss per E-Mail verifiziert werden.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "Ein Bestätigungscode wurde an {{emailAddress}} gesendet. Geben Sie den Code ein, um fortzufahren.",
"organizationProfile.verifyDomainPage.title": "Domain verifizieren",
"organizationSwitcher.action__createOrganization": "Organisation erstellen",
"organizationSwitcher.action__invitationAccept": "Beitreten",
"organizationSwitcher.action__manageOrganization": "Verwalten",
"organizationSwitcher.action__suggestionsAccept": "Beitritt anfragen",
"organizationSwitcher.notSelected": "Keine Organisation ausgewählt",
"organizationSwitcher.personalWorkspace": "Persönliches Konto",
"organizationSwitcher.suggestionsAcceptedLabel": "Genehmigung ausstehend",
"paginationButton__next": "Weiter",
"paginationButton__previous": "Zurück",
"paginationRowText__displaying": "Angezeigt",
"paginationRowText__of": "von",
"signIn.accountSwitcher.action__addAccount": "Konto hinzufügen",
"signIn.accountSwitcher.action__signOutAll": "Von allen Konten abmelden",
"signIn.accountSwitcher.subtitle": "Wählen Sie das Konto, mit dem Sie fortfahren möchten.",
"signIn.accountSwitcher.title": "Konto auswählen",
"signIn.alternativeMethods.actionLink": "Hilfe erhalten",
"signIn.alternativeMethods.actionText": "Keine dieser Optionen verfügbar?",
"signIn.alternativeMethods.blockButton__backupCode": "Backup-Code verwenden",
"signIn.alternativeMethods.blockButton__emailCode": "Code an {{identifier}} senden",
"signIn.alternativeMethods.blockButton__emailLink": "Link an {{identifier}} senden",
"signIn.alternativeMethods.blockButton__passkey": "Mit Passkey anmelden",
"signIn.alternativeMethods.blockButton__password": "Mit Passwort anmelden",
"signIn.alternativeMethods.blockButton__phoneCode": "SMS-Code an {{identifier}} senden",
"signIn.alternativeMethods.blockButton__totp": "Authenticator-App verwenden",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Support kontaktieren",
"signIn.alternativeMethods.getHelp.content": "Wenn Sie Probleme beim Anmelden haben, schreiben Sie uns eine E-Mail. Wir helfen Ihnen, so schnell wie möglich wieder Zugriff zu erhalten.",
"signIn.alternativeMethods.getHelp.title": "Hilfe erhalten",
"signIn.alternativeMethods.subtitle": "Probleme bei der Anmeldung? Verwenden Sie eine der folgenden Methoden.",
"signIn.alternativeMethods.title": "Andere Methode verwenden",
"signIn.backupCodeMfa.subtitle": "Ihr Backup-Code wurde bei der Einrichtung der Zwei-Faktor-Authentifizierung bereitgestellt.",
"signIn.backupCodeMfa.title": "Backup-Code eingeben",
"signIn.emailCode.formTitle": "Bestätigungscode",
"signIn.emailCode.resendButton": "Keinen Code erhalten? Erneut senden",
"signIn.emailCode.subtitle": "um mit {{applicationName}} fortzufahren",
"signIn.emailCode.title": "E-Mail überprüfen",
"signIn.emailLink.expired.subtitle": "Kehren Sie zum ursprünglichen Tab zurück, um fortzufahren.",
"signIn.emailLink.expired.title": "Dieser Bestätigungslink ist abgelaufen",
"signIn.emailLink.failed.subtitle": "Kehren Sie zum ursprünglichen Tab zurück, um fortzufahren.",
"signIn.emailLink.failed.title": "Dieser Bestätigungslink ist ungültig",
"signIn.emailLink.formSubtitle": "Verwenden Sie den Bestätigungslink, der an Ihre E-Mail gesendet wurde",
"signIn.emailLink.formTitle": "Bestätigungslink",
"signIn.emailLink.loading.subtitle": "Sie werden in Kürze weitergeleitet",
"signIn.emailLink.loading.title": "Anmeldung läuft...",
"signIn.emailLink.resendButton": "Keinen Link erhalten? Erneut senden",
"signIn.emailLink.subtitle": "um mit {{applicationName}} fortzufahren",
"signIn.emailLink.title": "E-Mail überprüfen",
"signIn.emailLink.unusedTab.title": "Sie können diesen Tab schließen",
"signIn.emailLink.verified.subtitle": "Sie werden in Kürze weitergeleitet",
"signIn.emailLink.verified.title": "Erfolgreich angemeldet",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Zum ursprünglichen Tab zurückkehren, um fortzufahren",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Zum neu geöffneten Tab zurückkehren, um fortzufahren",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "In anderem Tab angemeldet",
"signIn.forgotPassword.formTitle": "Code zum Zurücksetzen des Passworts",
"signIn.forgotPassword.resendButton": "Keinen Code erhalten? Erneut senden",
"signIn.forgotPassword.subtitle": "um Ihr Passwort zurückzusetzen",
"signIn.forgotPassword.subtitle_email": "Geben Sie zuerst den Code ein, der an Ihre E-Mail-Adresse gesendet wurde",
"signIn.forgotPassword.subtitle_phone": "Geben Sie zuerst den Code ein, der an Ihr Telefon gesendet wurde",
"signIn.forgotPassword.title": "Passwort zurücksetzen",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Passwort zurücksetzen",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Oder mit einer anderen Methode anmelden",
"signIn.forgotPasswordAlternativeMethods.title": "Passwort vergessen?",
"signIn.noAvailableMethods.message": "Anmeldung nicht möglich. Es steht kein Authentifizierungsfaktor zur Verfügung.",
"signIn.noAvailableMethods.subtitle": "Ein Fehler ist aufgetreten",
"signIn.noAvailableMethods.title": "Anmeldung nicht möglich",
"signIn.passkey.subtitle": "Die Verwendung Ihres Passkeys bestätigt Ihre Identität. Ihr Gerät kann nach Fingerabdruck, Gesicht oder Bildschirmsperre fragen.",
"signIn.passkey.title": "Passkey verwenden",
"signIn.password.actionLink": "Andere Methode verwenden",
"signIn.password.subtitle": "Geben Sie das Passwort ein, das mit Ihrem Konto verknüpft ist",
"signIn.password.title": "Passwort eingeben",
"signIn.passwordPwned.title": "Passwort kompromittiert",
"signIn.phoneCode.formTitle": "Bestätigungscode",
"signIn.phoneCode.resendButton": "Keinen Code erhalten? Erneut senden",
"signIn.phoneCode.subtitle": "um mit {{applicationName}} fortzufahren",
"signIn.phoneCode.title": "Telefon überprüfen",
"signIn.phoneCodeMfa.formTitle": "Bestätigungscode",
"signIn.phoneCodeMfa.resendButton": "Keinen Code erhalten? Erneut senden",
"signIn.phoneCodeMfa.subtitle": "Geben Sie den an Ihr Telefon gesendeten Code ein, um fortzufahren",
"signIn.phoneCodeMfa.title": "Telefon überprüfen",
"signIn.resetPassword.formButtonPrimary": "Passwort zurücksetzen",
"signIn.resetPassword.requiredMessage": "Aus Sicherheitsgründen ist es erforderlich, Ihr Passwort zurückzusetzen.",
"signIn.resetPassword.successMessage": "Ihr Passwort wurde erfolgreich geändert. Sie werden nun angemeldet, bitte einen Moment Geduld.",
"signIn.resetPassword.title": "Neues Passwort festlegen",
"signIn.resetPasswordMfa.detailsLabel": "Wir müssen Ihre Identität überprüfen, bevor Sie Ihr Passwort zurücksetzen können.",
"signIn.start.actionLink": "Registrieren",
"signIn.start.actionLink__use_email": "E-Mail verwenden",
"signIn.start.actionLink__use_email_username": "E-Mail oder Benutzername verwenden",
"signIn.start.actionLink__use_passkey": "Stattdessen Passkey verwenden",
"signIn.start.actionLink__use_phone": "Telefon verwenden",
"signIn.start.actionLink__use_username": "Benutzernamen verwenden",
"signIn.start.actionText": "Noch kein Konto?",
"signIn.start.subtitle": "Willkommen zurück! Bitte melden Sie sich an, um fortzufahren.",
"signIn.start.title": "Anmelden bei {{applicationName}}",
"signIn.totpMfa.formTitle": "Bestätigungscode",
"signIn.totpMfa.subtitle": "Bitte geben Sie den Bestätigungscode ein, der von Ihrer Authentifizierungs-App generiert wurde, um fortzufahren.",
"signIn.totpMfa.title": "Zwei-Faktor-Authentifizierung",
"signInEnterPasswordTitle": "Geben Sie Ihr Passwort ein",
"signUp.continue.actionLink": "Anmelden",
"signUp.continue.actionText": "Bereits ein Konto?",
"signUp.continue.subtitle": "Bitte füllen Sie die restlichen Angaben aus, um fortzufahren.",
"signUp.continue.title": "Fehlende Felder ausfüllen",
"signUp.emailCode.formSubtitle": "Geben Sie den Bestätigungscode ein, der an Ihre E-Mail-Adresse gesendet wurde",
"signUp.emailCode.formTitle": "Bestätigungscode",
"signUp.emailCode.resendButton": "Keinen Code erhalten? Erneut senden",
"signUp.emailCode.subtitle": "Geben Sie den Bestätigungscode ein, der an Ihre E-Mail gesendet wurde",
"signUp.emailCode.title": "E-Mail bestätigen",
"signUp.emailLink.formSubtitle": "Verwenden Sie den Bestätigungslink, der an Ihre E-Mail-Adresse gesendet wurde",
"signUp.emailLink.formTitle": "Bestätigungslink",
"signUp.emailLink.loading.title": "Registrierung läuft...",
"signUp.emailLink.resendButton": "Keinen Link erhalten? Erneut senden",
"signUp.emailLink.subtitle": "um mit {{applicationName}} fortzufahren",
"signUp.emailLink.title": "E-Mail bestätigen",
"signUp.emailLink.verified.title": "Erfolgreich registriert",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Wechseln Sie zurück zum neu geöffneten Tab, um fortzufahren",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Wechseln Sie zurück zum vorherigen Tab, um fortzufahren",
"signUp.emailLink.verifiedSwitchTab.title": "E-Mail erfolgreich bestätigt",
"signUp.phoneCode.formSubtitle": "Geben Sie den Bestätigungscode ein, der an Ihre Telefonnummer gesendet wurde",
"signUp.phoneCode.formTitle": "Bestätigungscode",
"signUp.phoneCode.resendButton": "Keinen Code erhalten? Erneut senden",
"signUp.phoneCode.subtitle": "Geben Sie den Bestätigungscode ein, der an Ihr Telefon gesendet wurde",
"signUp.phoneCode.title": "Telefonnummer bestätigen",
"signUp.start.actionLink": "Anmelden",
"signUp.start.actionText": "Bereits ein Konto?",
"signUp.start.subtitle": "Willkommen! Bitte füllen Sie die Angaben aus, um zu starten.",
"signUp.start.title": "Konto erstellen",
"socialButtonsBlockButton": "Weiter mit {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Registrierung fehlgeschlagen aufgrund fehlgeschlagener Sicherheitsüberprüfung. Bitte aktualisieren Sie die Seite oder wenden Sie sich an den Support.",
"unstable__errors.captcha_unavailable": "Registrierung fehlgeschlagen aufgrund fehlgeschlagener Bot-Überprüfung. Bitte aktualisieren Sie die Seite oder wenden Sie sich an den Support.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Diese E-Mail-Adresse ist bereits vergeben. Bitte versuchen Sie eine andere.",
"unstable__errors.form_identifier_exists__phone_number": "Diese Telefonnummer ist bereits vergeben. Bitte versuchen Sie eine andere.",
"unstable__errors.form_identifier_exists__username": "Dieser Benutzername ist bereits vergeben. Bitte versuchen Sie einen anderen.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "Die E-Mail-Adresse muss gültig sein.",
"unstable__errors.form_param_format_invalid__phone_number": "Die Telefonnummer muss im internationalen Format vorliegen.",
"unstable__errors.form_param_max_length_exceeded__first_name": "Der Vorname darf maximal 256 Zeichen lang sein.",
"unstable__errors.form_param_max_length_exceeded__last_name": "Der Nachname darf maximal 256 Zeichen lang sein.",
"unstable__errors.form_param_max_length_exceeded__name": "Der Name darf maximal 256 Zeichen lang sein.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Ihr Passwort ist nicht stark genug.",
"unstable__errors.form_password_pwned": "Dieses Passwort wurde bei einem Datenleck gefunden und kann nicht verwendet werden. Bitte wählen Sie ein anderes.",
"unstable__errors.form_password_pwned__sign_in": "Dieses Passwort wurde bei einem Datenleck gefunden und kann nicht verwendet werden. Bitte setzen Sie Ihr Passwort zurück.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Ihr Passwort überschreitet die maximale erlaubte Byte-Anzahl. Bitte kürzen Sie es oder entfernen Sie Sonderzeichen.",
"unstable__errors.form_password_validation_failed": "Falsches Passwort",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "Sie können Ihre letzte Identifikation nicht löschen.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Ein Passkey ist bereits auf diesem Gerät registriert.",
"unstable__errors.passkey_not_supported": "Passkeys werden auf diesem Gerät nicht unterstützt.",
"unstable__errors.passkey_pa_not_supported": "Für die Registrierung ist ein Plattform-Authenticator erforderlich, der auf diesem Gerät nicht unterstützt wird.",
"unstable__errors.passkey_registration_cancelled": "Die Registrierung des Passkeys wurde abgebrochen oder ist abgelaufen.",
"unstable__errors.passkey_retrieval_cancelled": "Die Verifizierung des Passkeys wurde abgebrochen oder ist abgelaufen.",
"unstable__errors.passwordComplexity.maximumLength": "weniger als {{length}} Zeichen",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} oder mehr Zeichen",
"unstable__errors.passwordComplexity.requireLowercase": "einen Kleinbuchstaben",
"unstable__errors.passwordComplexity.requireNumbers": "eine Zahl",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "ein Sonderzeichen",
"unstable__errors.passwordComplexity.requireUppercase": "einen Großbuchstaben",
"unstable__errors.passwordComplexity.sentencePrefix": "Ihr Passwort muss enthalten",
"unstable__errors.phone_number_exists": "Diese Telefonnummer ist bereits vergeben. Bitte versuchen Sie eine andere.",
"unstable__errors.zxcvbn.couldBeStronger": "Ihr Passwort ist gültig, könnte aber stärker sein. Fügen Sie mehr Zeichen hinzu.",
"unstable__errors.zxcvbn.goodPassword": "Ihr Passwort erfüllt alle Anforderungen.",
"unstable__errors.zxcvbn.notEnough": "Ihr Passwort ist nicht stark genug.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Verwenden Sie Großbuchstaben nur teilweise.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Fügen Sie weitere, weniger gebräuchliche Wörter hinzu.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Vermeiden Sie Jahre, die mit Ihnen in Verbindung stehen.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Verwenden Sie mehr als nur den ersten Großbuchstaben.",
"unstable__errors.zxcvbn.suggestions.dates": "Vermeiden Sie Daten und Jahre, die mit Ihnen in Verbindung stehen.",
"unstable__errors.zxcvbn.suggestions.l33t": "Vermeiden Sie vorhersehbare Buchstabenersetzungen wie '@' für 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Verwenden Sie längere Tastaturmuster und ändern Sie die Tipp-Richtung mehrfach.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Sie können starke Passwörter auch ohne Symbole, Zahlen oder Großbuchstaben erstellen.",
"unstable__errors.zxcvbn.suggestions.pwned": "Wenn Sie dieses Passwort auch anderswo verwenden, sollten Sie es ändern.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Vermeiden Sie aktuelle Jahreszahlen.",
"unstable__errors.zxcvbn.suggestions.repeated": "Vermeiden Sie wiederholte Wörter und Zeichen.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Vermeiden Sie rückwärts geschriebene gebräuchliche Wörter.",
"unstable__errors.zxcvbn.suggestions.sequences": "Vermeiden Sie gängige Zeichenfolgen.",
"unstable__errors.zxcvbn.suggestions.useWords": "Verwenden Sie mehrere Wörter, aber vermeiden Sie gängige Phrasen.",
"unstable__errors.zxcvbn.warnings.common": "Dies ist ein häufig verwendetes Passwort.",
"unstable__errors.zxcvbn.warnings.commonNames": "Gängige Namen und Nachnamen sind leicht zu erraten.",
"unstable__errors.zxcvbn.warnings.dates": "Daten sind leicht zu erraten.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Wiederholte Muster wie \"abcabcabc\" sind leicht zu erraten.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Kurze Tastaturmuster sind leicht zu erraten.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Einzelne Namen oder Nachnamen sind leicht zu erraten.",
"unstable__errors.zxcvbn.warnings.pwned": "Ihr Passwort wurde bei einem Datenleck im Internet veröffentlicht.",
"unstable__errors.zxcvbn.warnings.recentYears": "Aktuelle Jahreszahlen sind leicht zu erraten.",
"unstable__errors.zxcvbn.warnings.sequences": "Gängige Zeichenfolgen wie \"abc\" sind leicht zu erraten.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "Dies ähnelt einem häufig verwendeten Passwort.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Wiederholte Zeichen wie \"aaa\" sind leicht zu erraten.",
"unstable__errors.zxcvbn.warnings.straightRow": "Gerade Tastenreihen auf Ihrer Tastatur sind leicht zu erraten.",
"unstable__errors.zxcvbn.warnings.topHundred": "Dies ist ein sehr häufig verwendetes Passwort.",
"unstable__errors.zxcvbn.warnings.topTen": "Dies ist eines der am häufigsten verwendeten Passwörter.",
"unstable__errors.zxcvbn.warnings.userInputs": "Es sollten keine persönlichen oder seitenbezogenen Daten enthalten sein.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Einzelne Wörter sind leicht zu erraten.",
"userButton.action__addAccount": "Konto hinzufügen",
"userButton.action__manageAccount": "Konto verwalten",
"userButton.action__signOut": "Abmelden",
"userButton.action__signOutAll": "Von allen Konten abmelden",
"userProfile.backupCodePage.actionLabel__copied": "Kopiert!",
"userProfile.backupCodePage.actionLabel__copy": "Alle kopieren",
"userProfile.backupCodePage.actionLabel__download": ".txt herunterladen",
"userProfile.backupCodePage.actionLabel__print": "Drucken",
"userProfile.backupCodePage.infoText1": "Sicherungscodes werden für dieses Konto aktiviert.",
"userProfile.backupCodePage.infoText2": "Bewahren Sie die Sicherungscodes geheim und sicher auf. Sie können neue Codes generieren, wenn Sie vermuten, dass sie kompromittiert wurden.",
"userProfile.backupCodePage.subtitle__codelist": "Sicher aufbewahren und geheim halten.",
"userProfile.backupCodePage.successMessage": "Sicherungscodes sind jetzt aktiviert. Sie können einen dieser Codes verwenden, um sich bei Ihrem Konto anzumelden, falls Sie keinen Zugriff mehr auf Ihr Authentifizierungsgerät haben. Jeder Code kann nur einmal verwendet werden.",
"userProfile.backupCodePage.successSubtitle": "Sie können einen dieser Codes verwenden, um sich bei Ihrem Konto anzumelden, falls Sie keinen Zugriff mehr auf Ihr Authentifizierungsgerät haben.",
"userProfile.backupCodePage.title": "Sicherungscode-Verifizierung hinzufügen",
"userProfile.backupCodePage.title__codelist": "Sicherungscodes",
"userProfile.connectedAccountPage.formHint": "Wählen Sie einen Anbieter, um Ihr Konto zu verbinden.",
"userProfile.connectedAccountPage.formHint__noAccounts": "Es sind keine externen Kontenanbieter verfügbar.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} wird von diesem Konto entfernt.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Sie können dieses verbundene Konto nicht mehr verwenden und abhängige Funktionen werden nicht mehr funktionieren.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} wurde von Ihrem Konto entfernt.",
"userProfile.connectedAccountPage.removeResource.title": "Verknüpftes Konto entfernen",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "Der Anbieter wurde Ihrem Konto hinzugefügt",
"userProfile.connectedAccountPage.title": "Verknüpftes Konto hinzufügen",
"userProfile.deletePage.actionDescription": "Geben Sie unten „Konto löschen“ ein, um fortzufahren.",
"userProfile.deletePage.confirm": "Konto löschen",
"userProfile.deletePage.messageLine1": "Sind Sie sicher, dass Sie Ihr Konto löschen möchten?",
"userProfile.deletePage.messageLine2": "Diese Aktion ist dauerhaft und kann nicht rückgängig gemacht werden.",
"userProfile.deletePage.title": "Konto löschen",
"userProfile.emailAddressPage.emailCode.formHint": "Eine E-Mail mit einem Bestätigungscode wird an diese Adresse gesendet.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Geben Sie den Bestätigungscode ein, der an {{identifier}} gesendet wurde",
"userProfile.emailAddressPage.emailCode.formTitle": "Bestätigungscode",
"userProfile.emailAddressPage.emailCode.resendButton": "Keinen Code erhalten? Erneut senden",
"userProfile.emailAddressPage.emailCode.successMessage": "Die E-Mail-Adresse {{identifier}} wurde Ihrem Konto hinzugefügt.",
"userProfile.emailAddressPage.emailLink.formHint": "Eine E-Mail mit einem Bestätigungslink wird an diese Adresse gesendet.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Klicken Sie auf den Bestätigungslink in der E-Mail, die an {{identifier}} gesendet wurde",
"userProfile.emailAddressPage.emailLink.formTitle": "Bestätigungslink",
"userProfile.emailAddressPage.emailLink.resendButton": "Keinen Link erhalten? Erneut senden",
"userProfile.emailAddressPage.emailLink.successMessage": "Die E-Mail-Adresse {{identifier}} wurde Ihrem Konto hinzugefügt.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} wird von diesem Konto entfernt.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Sie können sich nicht mehr mit dieser E-Mail-Adresse anmelden.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} wurde von Ihrem Konto entfernt.",
"userProfile.emailAddressPage.removeResource.title": "E-Mail-Adresse entfernen",
"userProfile.emailAddressPage.title": "E-Mail-Adresse hinzufügen",
"userProfile.emailAddressPage.verifyTitle": "E-Mail-Adresse bestätigen",
"userProfile.formButtonPrimary__add": "Hinzufügen",
"userProfile.formButtonPrimary__continue": "Weiter",
"userProfile.formButtonPrimary__finish": "Fertigstellen",
"userProfile.formButtonPrimary__remove": "Entfernen",
"userProfile.formButtonPrimary__save": "Speichern",
"userProfile.formButtonReset": "Abbrechen",
"userProfile.mfaPage.formHint": "Wählen Sie eine Methode zum Hinzufügen.",
"userProfile.mfaPage.title": "Zwei-Faktor-Verifizierung hinzufügen",
"userProfile.mfaPhoneCodePage.backButton": "Vorhandene Nummer verwenden",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Telefonnummer hinzufügen",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} erhält keine Verifizierungscodes mehr beim Anmelden.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Ihr Konto ist möglicherweise weniger sicher. Möchten Sie wirklich fortfahren?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "SMS-Code-Zwei-Faktor-Verifizierung wurde für {{mfaPhoneCode}} entfernt",
"userProfile.mfaPhoneCodePage.removeResource.title": "Zwei-Faktor-Verifizierung entfernen",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Wählen Sie eine vorhandene Telefonnummer zur Registrierung für die SMS-Code-Zwei-Faktor-Verifizierung oder fügen Sie eine neue hinzu.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "Es sind keine Telefonnummern verfügbar. Bitte fügen Sie eine neue hinzu.",
"userProfile.mfaPhoneCodePage.successMessage1": "Beim Anmelden müssen Sie zusätzlich einen an diese Telefonnummer gesendeten Verifizierungscode eingeben.",
"userProfile.mfaPhoneCodePage.successMessage2": "Speichern Sie diese Sicherungscodes an einem sicheren Ort. Wenn Sie den Zugriff auf Ihr Authentifizierungsgerät verlieren, können Sie diese Codes verwenden.",
"userProfile.mfaPhoneCodePage.successTitle": "SMS-Code-Verifizierung aktiviert",
"userProfile.mfaPhoneCodePage.title": "SMS-Code-Verifizierung hinzufügen",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "Stattdessen QR-Code scannen",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "QR-Code kann nicht gescannt werden?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Richten Sie eine neue Anmeldemethode in Ihrer Authentifizierungs-App ein und scannen Sie den folgenden QR-Code, um sie mit Ihrem Konto zu verknüpfen.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Richten Sie eine neue Anmeldemethode in Ihrer Authentifizierungs-App ein und geben Sie den unten angegebenen Schlüssel ein.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Stellen Sie sicher, dass zeitbasierte oder Einmalpasswörter aktiviert sind, und schließen Sie die Verknüpfung Ihres Kontos ab.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Alternativ können Sie, wenn Ihre App TOTP-URIs unterstützt, auch die vollständige URI kopieren.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Verifizierungscodes dieser Authentifizierungs-App werden beim Anmelden nicht mehr benötigt.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Ihr Konto ist möglicherweise weniger sicher. Möchten Sie wirklich fortfahren?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "Zwei-Faktor-Verifizierung über Authentifizierungs-App wurde entfernt.",
"userProfile.mfaTOTPPage.removeResource.title": "Zwei-Faktor-Verifizierung entfernen",
"userProfile.mfaTOTPPage.successMessage": "Zwei-Faktor-Verifizierung ist jetzt aktiviert. Beim Anmelden müssen Sie zusätzlich einen Code aus Ihrer Authentifizierungs-App eingeben.",
"userProfile.mfaTOTPPage.title": "Authentifizierungs-App hinzufügen",
"userProfile.mfaTOTPPage.verifySubtitle": "Geben Sie den von Ihrer Authentifizierungs-App generierten Code ein",
"userProfile.mfaTOTPPage.verifyTitle": "Verifizierungscode",
"userProfile.mobileButton__menu": "Menü",
"userProfile.navbar.account": "Profil",
"userProfile.navbar.description": "Verwalten Sie Ihre Kontoinformationen.",
"userProfile.navbar.security": "Sicherheit",
"userProfile.navbar.title": "Konto",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} wird von diesem Konto entfernt.",
"userProfile.passkeyScreen.removeResource.title": "Passkey entfernen",
"userProfile.passkeyScreen.subtitle__rename": "Sie können den Namen des Passkeys ändern, um ihn leichter zu finden.",
"userProfile.passkeyScreen.title__rename": "Passkey umbenennen",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Es wird empfohlen, sich von allen anderen Geräten abzumelden, die Ihr altes Passwort verwendet haben könnten.",
"userProfile.passwordPage.readonly": "Ihr Passwort kann derzeit nicht bearbeitet werden, da Sie sich nur über die Unternehmensverbindung anmelden können.",
"userProfile.passwordPage.successMessage__set": "Ihr Passwort wurde festgelegt.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Alle anderen Geräte wurden abgemeldet.",
"userProfile.passwordPage.successMessage__update": "Ihr Passwort wurde aktualisiert.",
"userProfile.passwordPage.title__set": "Passwort festlegen",
"userProfile.passwordPage.title__update": "Passwort aktualisieren",
"userProfile.phoneNumberPage.infoText": "Eine SMS mit einem Verifizierungscode wird an diese Telefonnummer gesendet. Es können Gebühren für Nachrichten und Daten anfallen.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} wird von diesem Konto entfernt.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Sie können sich nicht mehr mit dieser Telefonnummer anmelden.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} wurde von Ihrem Konto entfernt.",
"userProfile.phoneNumberPage.removeResource.title": "Telefonnummer entfernen",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} wurde Ihrem Konto hinzugefügt.",
"userProfile.phoneNumberPage.title": "Telefonnummer hinzufügen",
"userProfile.phoneNumberPage.verifySubtitle": "Geben Sie den an {{identifier}} gesendeten Verifizierungscode ein",
"userProfile.phoneNumberPage.verifyTitle": "Telefonnummer bestätigen",
"userProfile.profilePage.fileDropAreaHint": "Empfohlenes Seitenverhältnis 1:1, bis zu 10 MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Entfernen",
"userProfile.profilePage.imageFormSubtitle": "Hochladen",
"userProfile.profilePage.imageFormTitle": "Profilbild",
"userProfile.profilePage.readonly": "Ihre Profilinformationen wurden über die Unternehmensverbindung bereitgestellt und können nicht bearbeitet werden.",
"userProfile.profilePage.successMessage": "Ihr Profil wurde aktualisiert.",
"userProfile.profilePage.title": "Profil aktualisieren",
"userProfile.start.activeDevicesSection.destructiveAction": "Gerät abmelden",
"userProfile.start.activeDevicesSection.title": "Aktive Geräte",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Erneut versuchen",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Jetzt autorisieren",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Entfernen",
"userProfile.start.connectedAccountsSection.primaryButton": "Konto verbinden",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "Die erforderlichen Berechtigungen wurden aktualisiert. Bitte autorisieren Sie diese Anwendung erneut, um Einschränkungen zu vermeiden.",
"userProfile.start.connectedAccountsSection.title": "Verknüpfte Konten",
"userProfile.start.dangerSection.deleteAccountButton": "Konto löschen",
"userProfile.start.dangerSection.title": "Konto löschen",
"userProfile.start.emailAddressesSection.destructiveAction": "E-Mail entfernen",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Als primär festlegen",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Verifizierung abschließen",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Bestätigen",
"userProfile.start.emailAddressesSection.primaryButton": "E-Mail-Adresse hinzufügen",
"userProfile.start.emailAddressesSection.title": "E-Mail-Adressen",
"userProfile.start.enterpriseAccountsSection.title": "Unternehmenskonten",
"userProfile.start.headerTitle__account": "Profildetails",
"userProfile.start.headerTitle__security": "Sicherheit",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Neu generieren",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Sicherungscodes",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Erhalten Sie einen neuen Satz sicherer Sicherungscodes. Vorherige Codes werden gelöscht und sind nicht mehr nutzbar.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Sicherungscodes neu generieren",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Als Standard festlegen",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Entfernen",
"userProfile.start.mfaSection.primaryButton": "Zwei-Faktor-Verifizierung hinzufügen",
"userProfile.start.mfaSection.title": "Zwei-Faktor-Verifizierung",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Entfernen",
"userProfile.start.mfaSection.totp.headerTitle": "Authentifizierungs-App",
"userProfile.start.passkeysSection.menuAction__destructive": "Entfernen",
"userProfile.start.passkeysSection.menuAction__rename": "Umbenennen",
"userProfile.start.passkeysSection.title": "Passkeys",
"userProfile.start.passwordSection.primaryButton__setPassword": "Passwort festlegen",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Passwort aktualisieren",
"userProfile.start.passwordSection.title": "Passwort",
"userProfile.start.phoneNumbersSection.destructiveAction": "Telefonnummer entfernen",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Als primär festlegen",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Verifizierung abschließen",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Telefonnummer bestätigen",
"userProfile.start.phoneNumbersSection.primaryButton": "Telefonnummer hinzufügen",
"userProfile.start.phoneNumbersSection.title": "Telefonnummern",
"userProfile.start.profileSection.primaryButton": "Profil aktualisieren",
"userProfile.start.profileSection.title": "Profil",
"userProfile.start.usernameSection.primaryButton__setUsername": "Benutzernamen festlegen",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Benutzernamen aktualisieren",
"userProfile.start.usernameSection.title": "Benutzername",
"userProfile.start.web3WalletsSection.destructiveAction": "Wallet entfernen",
"userProfile.start.web3WalletsSection.primaryButton": "Web3-Wallets",
"userProfile.start.web3WalletsSection.title": "Web3-Wallets",
"userProfile.usernamePage.successMessage": "Ihr Benutzername wurde aktualisiert.",
"userProfile.usernamePage.title__set": "Benutzernamen festlegen",
"userProfile.usernamePage.title__update": "Benutzernamen aktualisieren",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} wird von diesem Konto entfernt.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Sie können sich nicht mehr mit dieser Web3-Wallet anmelden.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} wurde von Ihrem Konto entfernt.",
"userProfile.web3WalletPage.removeResource.title": "Web3-Wallet entfernen",
"userProfile.web3WalletPage.subtitle__availableWallets": "Wählen Sie eine Web3-Wallet, um sie mit Ihrem Konto zu verbinden.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Es sind keine Web3-Wallets verfügbar.",
"userProfile.web3WalletPage.successMessage": "Die Wallet wurde Ihrem Konto hinzugefügt.",
"userProfile.web3WalletPage.title": "Web3-Wallet hinzufügen"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Sitzung fortsetzen",
"clerkAuth.loginSuccess.desc": "{{greeting}}, schön, Sie wiederzusehen. Lassen Sie uns dort weitermachen, wo wir aufgehört haben.",
"clerkAuth.loginSuccess.title": "Willkommen zurück, {{nickName}}",
"error.backHome": "Zurück zur Startseite",
"error.desc": "Versuchen Sie es später erneut oder kehren Sie in die bekannte Welt zurück.",
"error.retry": "Neu laden",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Das Kontingent für diesen Schlüssel ist aufgebraucht. Bitte prüfen Sie Ihr Guthaben.",
"response.InvalidAccessCode": "Ungültiger oder leerer Zugangscode. Bitte geben Sie den richtigen Code ein.",
"response.InvalidBedrockCredentials": "Bedrock-Authentifizierung fehlgeschlagen. Bitte überprüfen Sie Ihre Zugangsdaten.",
"response.InvalidClerkUser": "Sie sind nicht angemeldet. Bitte melden Sie sich an oder registrieren Sie sich.",
"response.InvalidComfyUIArgs": "Ungültige ComfyUI-Konfiguration. Bitte prüfen Sie die Einstellungen.",
"response.InvalidGithubToken": "Ungültiger oder leerer GitHub-Personal-Access-Token.",
"response.InvalidOllamaArgs": "Ungültige Ollama-Konfiguration. Bitte prüfen Sie die Einstellungen.",

View file

@ -1,545 +0,0 @@
{
"backButton": "Back",
"badge__default": "Default",
"badge__otherImpersonatorDevice": "Other impersonator device",
"badge__primary": "Primary",
"badge__requiresAction": "Requires action",
"badge__thisDevice": "This device",
"badge__unverified": "Unverified",
"badge__userDevice": "User device",
"badge__you": "You",
"createOrganization.formButtonSubmit": "Create organization",
"createOrganization.invitePage.formButtonReset": "Skip",
"createOrganization.title": "Create organization",
"dates.lastDay": "Yesterday at {{ date | timeString('en-US') }}",
"dates.next6Days": "{{ date | weekday('en-US','long') }} at {{ date | timeString('en-US') }}",
"dates.nextDay": "Tomorrow at {{ date | timeString('en-US') }}",
"dates.numeric": "{{ date | numeric('en-US') }}",
"dates.previous6Days": "Last {{ date | weekday('en-US','long') }} at {{ date | timeString('en-US') }}",
"dates.sameDay": "Today at {{ date | timeString('en-US') }}",
"dividerText": "or",
"footerActionLink__useAnotherMethod": "Use another method",
"footerPageLink__help": "Help",
"footerPageLink__privacy": "Privacy",
"footerPageLink__terms": "Terms",
"formButtonPrimary": "Continue",
"formButtonPrimary__verify": "Verify",
"formFieldAction__forgotPassword": "Forgot password?",
"formFieldError__matchingPasswords": "Passwords match.",
"formFieldError__notMatchingPasswords": "Passwords don't match.",
"formFieldError__verificationLinkExpired": "The verification link expired. Please request a new link.",
"formFieldHintText__optional": "Optional",
"formFieldHintText__slug": "A slug is a human-readable ID that must be unique. Its often used in URLs.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Delete account",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "example@email.com, example2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "my-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Enable automatic invitations for this domain",
"formFieldLabel__backupCode": "Backup code",
"formFieldLabel__confirmDeletion": "Confirmation",
"formFieldLabel__confirmPassword": "Confirm password",
"formFieldLabel__currentPassword": "Current password",
"formFieldLabel__emailAddress": "Email address",
"formFieldLabel__emailAddress_username": "Email address or username",
"formFieldLabel__emailAddresses": "Email addresses",
"formFieldLabel__firstName": "First name",
"formFieldLabel__lastName": "Last name",
"formFieldLabel__newPassword": "New password",
"formFieldLabel__organizationDomain": "Domain",
"formFieldLabel__organizationDomainDeletePending": "Delete pending invitations and suggestions",
"formFieldLabel__organizationDomainEmailAddress": "Verification email address",
"formFieldLabel__organizationDomainEmailAddressDescription": "Enter an email address under this domain to receive a code and verify this domain.",
"formFieldLabel__organizationName": "Name",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "Name of passkey",
"formFieldLabel__password": "Password",
"formFieldLabel__phoneNumber": "Phone number",
"formFieldLabel__role": "Role",
"formFieldLabel__signOutOfOtherSessions": "Sign out of all other devices",
"formFieldLabel__username": "Username",
"impersonationFab.action__signOut": "Sign out",
"impersonationFab.title": "Signed in as {{identifier}}",
"locale": "en-US",
"maintenanceMode": "We are currently undergoing maintenance, but don't worry, it shouldn't take more than a few minutes.",
"membershipRole__admin": "Admin",
"membershipRole__basicMember": "Member",
"membershipRole__guestMember": "Guest",
"organizationList.action__createOrganization": "Create organization",
"organizationList.action__invitationAccept": "Join",
"organizationList.action__suggestionsAccept": "Request to join",
"organizationList.createOrganization": "Create Organization",
"organizationList.invitationAcceptedLabel": "Joined",
"organizationList.subtitle": "to continue to {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "Pending approval",
"organizationList.title": "Choose an account",
"organizationList.titleWithoutPersonal": "Choose an organization",
"organizationProfile.badge__automaticInvitation": "Automatic invitations",
"organizationProfile.badge__automaticSuggestion": "Automatic suggestions",
"organizationProfile.badge__manualInvitation": "No automatic enrollment",
"organizationProfile.badge__unverified": "Unverified",
"organizationProfile.createDomainPage.subtitle": "Add the domain to verify. Users with email addresses at this domain can join the organization automatically or request to join.",
"organizationProfile.createDomainPage.title": "Add domain",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "The invitations could not be sent. There are already pending invitations for the following email addresses: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Send invitations",
"organizationProfile.invitePage.selectDropdown__role": "Select role",
"organizationProfile.invitePage.subtitle": "Enter or paste one or more email addresses, separated by spaces or commas.",
"organizationProfile.invitePage.successMessage": "Invitations successfully sent",
"organizationProfile.invitePage.title": "Invite new members",
"organizationProfile.membersPage.action__invite": "Invite",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Remove member",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Joined",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Role",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "User",
"organizationProfile.membersPage.detailsTitle__emptyRow": "No members to display",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Invite users by connecting an email domain with your organization. Anyone who signs up with a matching email domain will be able to join the organization anytime.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Automatic invitations",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Manage verified domains",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "No invitations to display",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Revoke invitation",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Invited",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Users who sign up with a matching email domain, will be able to see a suggestion to request to join your organization.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Automatic suggestions",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Manage verified domains",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Approve",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Reject",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Requested access",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "No requests to display",
"organizationProfile.membersPage.start.headerTitle__invitations": "Invitations",
"organizationProfile.membersPage.start.headerTitle__members": "Members",
"organizationProfile.membersPage.start.headerTitle__requests": "Requests",
"organizationProfile.navbar.description": "Manage your organization.",
"organizationProfile.navbar.general": "General",
"organizationProfile.navbar.members": "Members",
"organizationProfile.navbar.title": "Organization",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Type \"{{organizationName}}\" below to continue.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Are you sure you want to delete this organization?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "This action is permanent and irreversible.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "You have deleted the organization.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Delete organization",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Type \"{{organizationName}}\" below to continue.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Are you sure you want to leave this organization? You will lose access to this organization and its applications.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "This action is permanent and irreversible.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "You have left the organization.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Leave organization",
"organizationProfile.profilePage.dangerSection.title": "Danger",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Manage",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Delete",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Verify",
"organizationProfile.profilePage.domainSection.primaryButton": "Add domain",
"organizationProfile.profilePage.domainSection.subtitle": "Allow users to join the organization automatically or request to join based on a verified email domain.",
"organizationProfile.profilePage.domainSection.title": "Verified domains",
"organizationProfile.profilePage.successMessage": "The organization has been updated.",
"organizationProfile.profilePage.title": "Update profile",
"organizationProfile.removeDomainPage.messageLine1": "The email domain {{domain}} will be removed.",
"organizationProfile.removeDomainPage.messageLine2": "Users wont be able to join the organization automatically after this.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} has been removed.",
"organizationProfile.removeDomainPage.title": "Remove domain",
"organizationProfile.start.headerTitle__general": "General",
"organizationProfile.start.headerTitle__members": "Members",
"organizationProfile.start.profileSection.primaryButton": "Update profile",
"organizationProfile.start.profileSection.title": "Organization Profile",
"organizationProfile.start.profileSection.uploadAction__title": "Logo",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Removing this domain will affect invited users.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Remove domain",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Remove this domain from your verified domains",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Remove domain",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Users are automatically invited to join the organization when they sign-up and can join anytime.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Automatic invitations",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Users receive a suggestion to request to join, but must be approved by an admin before they are able to join the organization.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Automatic suggestions",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Changing the enrollment mode will only affect new users.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Pending invitations sent to users: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Pending suggestions sent to users: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Users can only be invited manually to the organization.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "No automatic enrollment",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Choose how users from this domain can join the organization.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Danger",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Enrollment options",
"organizationProfile.verifiedDomainPage.subtitle": "The domain {{domain}} is now verified. Continue by selecting enrollment mode.",
"organizationProfile.verifiedDomainPage.title": "Update {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "Enter the verification code sent to your email address",
"organizationProfile.verifyDomainPage.formTitle": "Verification code",
"organizationProfile.verifyDomainPage.resendButton": "Didn't receive a code? Resend",
"organizationProfile.verifyDomainPage.subtitle": "The domain {{domainName}} needs to be verified via email.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "A verification code was sent to {{emailAddress}}. Enter the code to continue.",
"organizationProfile.verifyDomainPage.title": "Verify domain",
"organizationSwitcher.action__createOrganization": "Create organization",
"organizationSwitcher.action__invitationAccept": "Join",
"organizationSwitcher.action__manageOrganization": "Manage",
"organizationSwitcher.action__suggestionsAccept": "Request to join",
"organizationSwitcher.notSelected": "No organization selected",
"organizationSwitcher.personalWorkspace": "Personal account",
"organizationSwitcher.suggestionsAcceptedLabel": "Pending approval",
"paginationButton__next": "Next",
"paginationButton__previous": "Previous",
"paginationRowText__displaying": "Displaying",
"paginationRowText__of": "of",
"signIn.accountSwitcher.action__addAccount": "Add account",
"signIn.accountSwitcher.action__signOutAll": "Sign out of all accounts",
"signIn.accountSwitcher.subtitle": "Select the account with which you wish to continue.",
"signIn.accountSwitcher.title": "Choose an account",
"signIn.alternativeMethods.actionLink": "Get help",
"signIn.alternativeMethods.actionText": "Dont have any of these?",
"signIn.alternativeMethods.blockButton__backupCode": "Use a backup code",
"signIn.alternativeMethods.blockButton__emailCode": "Email code to {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "Email link to {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "Sign in with your passkey",
"signIn.alternativeMethods.blockButton__password": "Sign in with your password",
"signIn.alternativeMethods.blockButton__phoneCode": "Send SMS code to {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "Use your authenticator app",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Email support",
"signIn.alternativeMethods.getHelp.content": "If youre experiencing difficulty signing into your account, email us and we will work with you to restore access as soon as possible.",
"signIn.alternativeMethods.getHelp.title": "Get help",
"signIn.alternativeMethods.subtitle": "Facing issues? You can use any of these methods to sign in.",
"signIn.alternativeMethods.title": "Use another method",
"signIn.backupCodeMfa.subtitle": "Your backup code is the one you got when setting up two-step authentication.",
"signIn.backupCodeMfa.title": "Enter a backup code",
"signIn.emailCode.formTitle": "Verification code",
"signIn.emailCode.resendButton": "Didn't receive a code? Resend",
"signIn.emailCode.subtitle": "to continue to {{applicationName}}",
"signIn.emailCode.title": "Check your email",
"signIn.emailLink.expired.subtitle": "Return to the original tab to continue.",
"signIn.emailLink.expired.title": "This verification link has expired",
"signIn.emailLink.failed.subtitle": "Return to the original tab to continue.",
"signIn.emailLink.failed.title": "This verification link is invalid",
"signIn.emailLink.formSubtitle": "Use the verification link sent to your email",
"signIn.emailLink.formTitle": "Verification link",
"signIn.emailLink.loading.subtitle": "You will be redirected soon",
"signIn.emailLink.loading.title": "Signing in...",
"signIn.emailLink.resendButton": "Didn't receive a link? Resend",
"signIn.emailLink.subtitle": "to continue to {{applicationName}}",
"signIn.emailLink.title": "Check your email",
"signIn.emailLink.unusedTab.title": "You may close this tab",
"signIn.emailLink.verified.subtitle": "You will be redirected soon",
"signIn.emailLink.verified.title": "Successfully signed in",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Return to original tab to continue",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Return to the newly opened tab to continue",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Signed in on other tab",
"signIn.forgotPassword.formTitle": "Reset password code",
"signIn.forgotPassword.resendButton": "Didn't receive a code? Resend",
"signIn.forgotPassword.subtitle": "to reset your password",
"signIn.forgotPassword.subtitle_email": "First, enter the code sent to your email address",
"signIn.forgotPassword.subtitle_phone": "First, enter the code sent to your phone",
"signIn.forgotPassword.title": "Reset password",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Reset your password",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Or, sign in with another method",
"signIn.forgotPasswordAlternativeMethods.title": "Forgot Password?",
"signIn.noAvailableMethods.message": "Cannot proceed with sign in. There's no available authentication factor.",
"signIn.noAvailableMethods.subtitle": "An error occurred",
"signIn.noAvailableMethods.title": "Cannot sign in",
"signIn.passkey.subtitle": "Using your passkey confirms it's you. Your device may ask for your fingerprint, face or screen lock.",
"signIn.passkey.title": "Use your passkey",
"signIn.password.actionLink": "Use another method",
"signIn.password.subtitle": "Enter the password associated with your account",
"signIn.password.title": "Enter your password",
"signIn.passwordPwned.title": "Password compromised",
"signIn.phoneCode.formTitle": "Verification code",
"signIn.phoneCode.resendButton": "Didn't receive a code? Resend",
"signIn.phoneCode.subtitle": "to continue to {{applicationName}}",
"signIn.phoneCode.title": "Check your phone",
"signIn.phoneCodeMfa.formTitle": "Verification code",
"signIn.phoneCodeMfa.resendButton": "Didn't receive a code? Resend",
"signIn.phoneCodeMfa.subtitle": "To continue, please enter the verification code sent to your phone",
"signIn.phoneCodeMfa.title": "Check your phone",
"signIn.resetPassword.formButtonPrimary": "Reset Password",
"signIn.resetPassword.requiredMessage": "For security reasons, it is required to reset your password.",
"signIn.resetPassword.successMessage": "Your password was successfully changed. Signing you in, please wait a moment.",
"signIn.resetPassword.title": "Set new password",
"signIn.resetPasswordMfa.detailsLabel": "We need to verify your identity before resetting your password.",
"signIn.start.actionLink": "Sign up",
"signIn.start.actionLink__use_email": "Use email",
"signIn.start.actionLink__use_email_username": "Use email or username",
"signIn.start.actionLink__use_passkey": "Use passkey instead",
"signIn.start.actionLink__use_phone": "Use phone",
"signIn.start.actionLink__use_username": "Use username",
"signIn.start.actionText": "Dont have an account?",
"signIn.start.subtitle": "Welcome back! Please sign in to continue",
"signIn.start.title": "Sign in to {{applicationName}}",
"signIn.totpMfa.formTitle": "Verification code",
"signIn.totpMfa.subtitle": "To continue, please enter the verification code generated by your authenticator app",
"signIn.totpMfa.title": "Two-step verification",
"signInEnterPasswordTitle": "Enter your password",
"signUp.continue.actionLink": "Sign in",
"signUp.continue.actionText": "Already have an account?",
"signUp.continue.subtitle": "Please fill in the remaining details to continue.",
"signUp.continue.title": "Fill in missing fields",
"signUp.emailCode.formSubtitle": "Enter the verification code sent to your email address",
"signUp.emailCode.formTitle": "Verification code",
"signUp.emailCode.resendButton": "Didn't receive a code? Resend",
"signUp.emailCode.subtitle": "Enter the verification code sent to your email",
"signUp.emailCode.title": "Verify your email",
"signUp.emailLink.formSubtitle": "Use the verification link sent to your email address",
"signUp.emailLink.formTitle": "Verification link",
"signUp.emailLink.loading.title": "Signing up...",
"signUp.emailLink.resendButton": "Didn't receive a link? Resend",
"signUp.emailLink.subtitle": "to continue to {{applicationName}}",
"signUp.emailLink.title": "Verify your email",
"signUp.emailLink.verified.title": "Successfully signed up",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Return to the newly opened tab to continue",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Return to previous tab to continue",
"signUp.emailLink.verifiedSwitchTab.title": "Successfully verified email",
"signUp.phoneCode.formSubtitle": "Enter the verification code sent to your phone number",
"signUp.phoneCode.formTitle": "Verification code",
"signUp.phoneCode.resendButton": "Didn't receive a code? Resend",
"signUp.phoneCode.subtitle": "Enter the verification code sent to your phone",
"signUp.phoneCode.title": "Verify your phone",
"signUp.start.actionLink": "Sign in",
"signUp.start.actionText": "Already have an account?",
"signUp.start.subtitle": "Welcome! Please fill in the details to get started.",
"signUp.start.title": "Create your account",
"socialButtonsBlockButton": "Continue with {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Sign up unsuccessful due to failed security validations. Please refresh the page to try again or reach out to support for more assistance.",
"unstable__errors.captcha_unavailable": "Sign up unsuccessful due to failed bot validation. Please refresh the page to try again or reach out to support for more assistance.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "This email address is taken. Please try another.",
"unstable__errors.form_identifier_exists__phone_number": "This phone number is taken. Please try another.",
"unstable__errors.form_identifier_exists__username": "This username is taken. Please try another.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "Email address must be a valid email address.",
"unstable__errors.form_param_format_invalid__phone_number": "Phone number must be in a valid international format",
"unstable__errors.form_param_max_length_exceeded__first_name": "First name should not exceed 256 characters.",
"unstable__errors.form_param_max_length_exceeded__last_name": "Last name should not exceed 256 characters.",
"unstable__errors.form_param_max_length_exceeded__name": "Name should not exceed 256 characters.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Your password is not strong enough.",
"unstable__errors.form_password_pwned": "This password has been found as part of a breach and can not be used, please try another password instead.",
"unstable__errors.form_password_pwned__sign_in": "This password has been found as part of a breach and can not be used, please reset your password.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Your password has exceeded the maximum number of bytes allowed, please shorten it or remove some special characters.",
"unstable__errors.form_password_validation_failed": "Incorrect Password",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "You cannot delete your last identification.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "A passkey is already registered with this device.",
"unstable__errors.passkey_not_supported": "Passkeys are not supported on this device.",
"unstable__errors.passkey_pa_not_supported": "Registration requires a platform authenticator but the device does not support it.",
"unstable__errors.passkey_registration_cancelled": "Passkey registration was cancelled or timed out.",
"unstable__errors.passkey_retrieval_cancelled": "Passkey verification was cancelled or timed out.",
"unstable__errors.passwordComplexity.maximumLength": "less than {{length}} characters",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} or more characters",
"unstable__errors.passwordComplexity.requireLowercase": "a lowercase letter",
"unstable__errors.passwordComplexity.requireNumbers": "a number",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "a special character",
"unstable__errors.passwordComplexity.requireUppercase": "an uppercase letter",
"unstable__errors.passwordComplexity.sentencePrefix": "Your password must contain",
"unstable__errors.phone_number_exists": "This phone number is taken. Please try another.",
"unstable__errors.zxcvbn.couldBeStronger": "Your password works, but could be stronger. Try adding more characters.",
"unstable__errors.zxcvbn.goodPassword": "Your password meets all the necessary requirements.",
"unstable__errors.zxcvbn.notEnough": "Your password is not strong enough.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Capitalize some, but not all letters.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Add more words that are less common.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Avoid years that are associated with you.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Capitalize more than the first letter.",
"unstable__errors.zxcvbn.suggestions.dates": "Avoid dates and years that are associated with you.",
"unstable__errors.zxcvbn.suggestions.l33t": "Avoid predictable letter substitutions like '@' for 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Use longer keyboard patterns and change typing direction multiple times.",
"unstable__errors.zxcvbn.suggestions.noNeed": "You can create strong passwords without using symbols, numbers, or uppercase letters.",
"unstable__errors.zxcvbn.suggestions.pwned": "If you use this password elsewhere, you should change it.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Avoid recent years.",
"unstable__errors.zxcvbn.suggestions.repeated": "Avoid repeated words and characters.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Avoid reversed spellings of common words.",
"unstable__errors.zxcvbn.suggestions.sequences": "Avoid common character sequences.",
"unstable__errors.zxcvbn.suggestions.useWords": "Use multiple words, but avoid common phrases.",
"unstable__errors.zxcvbn.warnings.common": "This is a commonly used password.",
"unstable__errors.zxcvbn.warnings.commonNames": "Common names and surnames are easy to guess.",
"unstable__errors.zxcvbn.warnings.dates": "Dates are easy to guess.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Repeated character patterns like \"abcabcabc\" are easy to guess.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Short keyboard patterns are easy to guess.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Single names or surnames are easy to guess.",
"unstable__errors.zxcvbn.warnings.pwned": "Your password was exposed by a data breach on the Internet.",
"unstable__errors.zxcvbn.warnings.recentYears": "Recent years are easy to guess.",
"unstable__errors.zxcvbn.warnings.sequences": "Common character sequences like \"abc\" are easy to guess.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "This is similar to a commonly used password.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Repeated characters like \"aaa\" are easy to guess.",
"unstable__errors.zxcvbn.warnings.straightRow": "Straight rows of keys on your keyboard are easy to guess.",
"unstable__errors.zxcvbn.warnings.topHundred": "This is a frequently used password.",
"unstable__errors.zxcvbn.warnings.topTen": "This is a heavily used password.",
"unstable__errors.zxcvbn.warnings.userInputs": "There should not be any personal or page related data.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Single words are easy to guess.",
"userButton.action__addAccount": "Add account",
"userButton.action__manageAccount": "Manage account",
"userButton.action__signOut": "Sign out",
"userButton.action__signOutAll": "Sign out of all accounts",
"userProfile.backupCodePage.actionLabel__copied": "Copied!",
"userProfile.backupCodePage.actionLabel__copy": "Copy all",
"userProfile.backupCodePage.actionLabel__download": "Download .txt",
"userProfile.backupCodePage.actionLabel__print": "Print",
"userProfile.backupCodePage.infoText1": "Backup codes will be enabled for this account.",
"userProfile.backupCodePage.infoText2": "Keep the backup codes secret and store them securely. You may regenerate backup codes if you suspect they have been compromised.",
"userProfile.backupCodePage.subtitle__codelist": "Store them securely and keep them secret.",
"userProfile.backupCodePage.successMessage": "Backup codes are now enabled. You can use one of these to sign in to your account, if you lose access to your authentication device. Each code can only be used once.",
"userProfile.backupCodePage.successSubtitle": "You can use one of these to sign in to your account, if you lose access to your authentication device.",
"userProfile.backupCodePage.title": "Add backup code verification",
"userProfile.backupCodePage.title__codelist": "Backup codes",
"userProfile.connectedAccountPage.formHint": "Select a provider to connect your account.",
"userProfile.connectedAccountPage.formHint__noAccounts": "There are no available external account providers.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} will be removed from this account.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "You will no longer be able to use this connected account and any dependent features will no longer work.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} has been removed from your account.",
"userProfile.connectedAccountPage.removeResource.title": "Remove connected account",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "The provider has been added to your account",
"userProfile.connectedAccountPage.title": "Add connected account",
"userProfile.deletePage.actionDescription": "Type \"Delete account\" below to continue.",
"userProfile.deletePage.confirm": "Delete account",
"userProfile.deletePage.messageLine1": "Are you sure you want to delete your account?",
"userProfile.deletePage.messageLine2": "This action is permanent and irreversible.",
"userProfile.deletePage.title": "Delete account",
"userProfile.emailAddressPage.emailCode.formHint": "An email containing a verification code will be sent to this email address.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Enter the verification code sent to {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "Verification code",
"userProfile.emailAddressPage.emailCode.resendButton": "Didn't receive a code? Resend",
"userProfile.emailAddressPage.emailCode.successMessage": "The email {{identifier}} has been added to your account.",
"userProfile.emailAddressPage.emailLink.formHint": "An email containing a verification link will be sent to this email address.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Click on the verification link in the email sent to {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "Verification link",
"userProfile.emailAddressPage.emailLink.resendButton": "Didn't receive a link? Resend",
"userProfile.emailAddressPage.emailLink.successMessage": "The email {{identifier}} has been added to your account.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} will be removed from this account.",
"userProfile.emailAddressPage.removeResource.messageLine2": "You will no longer be able to sign in using this email address.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} has been removed from your account.",
"userProfile.emailAddressPage.removeResource.title": "Remove email address",
"userProfile.emailAddressPage.title": "Add email address",
"userProfile.emailAddressPage.verifyTitle": "Verify email address",
"userProfile.formButtonPrimary__add": "Add",
"userProfile.formButtonPrimary__continue": "Continue",
"userProfile.formButtonPrimary__finish": "Finish",
"userProfile.formButtonPrimary__remove": "Remove",
"userProfile.formButtonPrimary__save": "Save",
"userProfile.formButtonReset": "Cancel",
"userProfile.mfaPage.formHint": "Select a method to add.",
"userProfile.mfaPage.title": "Add two-step verification",
"userProfile.mfaPhoneCodePage.backButton": "Use existing number",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Add phone number",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} will be no longer receiving verification codes when signing in.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Your account may not be as secure. Are you sure you want to continue?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "SMS code two-step verification has been removed for {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "Remove two-step verification",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Select an existing phone number to register for SMS code two-step verification or add a new one.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "There are no available phone numbers to register for SMS code two-step verification, please add a new one.",
"userProfile.mfaPhoneCodePage.successMessage1": "When signing in, you will need to enter a verification code sent to this phone number as an additional step.",
"userProfile.mfaPhoneCodePage.successMessage2": "Save these backup codes and store them somewhere safe. If you lose access to your authentication device, you can use backup codes to sign in.",
"userProfile.mfaPhoneCodePage.successTitle": "SMS code verification enabled",
"userProfile.mfaPhoneCodePage.title": "Add SMS code verification",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "Scan QR code instead",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "Cant scan QR code?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Set up a new sign-in method in your authenticator app and scan the following QR code to link it to your account.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Set up a new sign-in method in your authenticator and enter the Key provided below.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Make sure Time-based or One-time passwords is enabled, then finish linking your account.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Alternatively, if your authenticator supports TOTP URIs, you can also copy the full URI.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Verification codes from this authenticator will no longer be required when signing in.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Your account may not be as secure. Are you sure you want to continue?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "Two-step verification via authenticator application has been removed.",
"userProfile.mfaTOTPPage.removeResource.title": "Remove two-step verification",
"userProfile.mfaTOTPPage.successMessage": "Two-step verification is now enabled. When signing in, you will need to enter a verification code from this authenticator as an additional step.",
"userProfile.mfaTOTPPage.title": "Add authenticator application",
"userProfile.mfaTOTPPage.verifySubtitle": "Enter verification code generated by your authenticator",
"userProfile.mfaTOTPPage.verifyTitle": "Verification code",
"userProfile.mobileButton__menu": "Menu",
"userProfile.navbar.account": "Profile",
"userProfile.navbar.description": "Manage your account info.",
"userProfile.navbar.security": "Security",
"userProfile.navbar.title": "Account",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} will be removed from this account.",
"userProfile.passkeyScreen.removeResource.title": "Remove passkey",
"userProfile.passkeyScreen.subtitle__rename": "You can change the passkey name to make it easier to find.",
"userProfile.passkeyScreen.title__rename": "Rename Passkey",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "It is recommended to sign out of all other devices which may have used your old password.",
"userProfile.passwordPage.readonly": "Your password can currently not be edited because you can sign in only via the enterprise connection.",
"userProfile.passwordPage.successMessage__set": "Your password has been set.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "All other devices have been signed out.",
"userProfile.passwordPage.successMessage__update": "Your password has been updated.",
"userProfile.passwordPage.title__set": "Set password",
"userProfile.passwordPage.title__update": "Update password",
"userProfile.phoneNumberPage.infoText": "A text message containing a verification code will be sent to this phone number. Message and data rates may apply.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} will be removed from this account.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "You will no longer be able to sign in using this phone number.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} has been removed from your account.",
"userProfile.phoneNumberPage.removeResource.title": "Remove phone number",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} has been added to your account.",
"userProfile.phoneNumberPage.title": "Add phone number",
"userProfile.phoneNumberPage.verifySubtitle": "Enter the verification code sent to {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "Verify phone number",
"userProfile.profilePage.fileDropAreaHint": "Recommended size 1:1, up to 10MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Remove",
"userProfile.profilePage.imageFormSubtitle": "Upload",
"userProfile.profilePage.imageFormTitle": "Profile image",
"userProfile.profilePage.readonly": "Your profile information has been provided by the enterprise connection and cannot be edited.",
"userProfile.profilePage.successMessage": "Your profile has been updated.",
"userProfile.profilePage.title": "Update profile",
"userProfile.start.activeDevicesSection.destructiveAction": "Sign out of device",
"userProfile.start.activeDevicesSection.title": "Active devices",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Try again",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Authorize now",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Remove",
"userProfile.start.connectedAccountsSection.primaryButton": "Connect account",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "The required scopes have been updated, and you may be experiencing limited functionality. Please re-authorize this application to avoid any issues",
"userProfile.start.connectedAccountsSection.title": "Connected accounts",
"userProfile.start.dangerSection.deleteAccountButton": "Delete account",
"userProfile.start.dangerSection.title": "Delete account",
"userProfile.start.emailAddressesSection.destructiveAction": "Remove email",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Set as primary",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Complete verification",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Verify",
"userProfile.start.emailAddressesSection.primaryButton": "Add email address",
"userProfile.start.emailAddressesSection.title": "Email addresses",
"userProfile.start.enterpriseAccountsSection.title": "Enterprise accounts",
"userProfile.start.headerTitle__account": "Profile details",
"userProfile.start.headerTitle__security": "Security",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Regenerate",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Backup codes",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Get a fresh set of secure backup codes. Prior backup codes will be deleted and cannot be used.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Regenerate backup codes",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Set as default",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Remove",
"userProfile.start.mfaSection.primaryButton": "Add two-step verification",
"userProfile.start.mfaSection.title": "Two-step verification",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Remove",
"userProfile.start.mfaSection.totp.headerTitle": "Authenticator application",
"userProfile.start.passkeysSection.menuAction__destructive": "Remove",
"userProfile.start.passkeysSection.menuAction__rename": "Rename",
"userProfile.start.passkeysSection.title": "Passkeys",
"userProfile.start.passwordSection.primaryButton__setPassword": "Set password",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Update password",
"userProfile.start.passwordSection.title": "Password",
"userProfile.start.phoneNumbersSection.destructiveAction": "Remove phone number",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Set as primary",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Complete verification",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Verify phone number",
"userProfile.start.phoneNumbersSection.primaryButton": "Add phone number",
"userProfile.start.phoneNumbersSection.title": "Phone numbers",
"userProfile.start.profileSection.primaryButton": "Update profile",
"userProfile.start.profileSection.title": "Profile",
"userProfile.start.usernameSection.primaryButton__setUsername": "Set username",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Update username",
"userProfile.start.usernameSection.title": "Username",
"userProfile.start.web3WalletsSection.destructiveAction": "Remove wallet",
"userProfile.start.web3WalletsSection.primaryButton": "Web3 wallets",
"userProfile.start.web3WalletsSection.title": "Web3 wallets",
"userProfile.usernamePage.successMessage": "Your username has been updated.",
"userProfile.usernamePage.title__set": "Set username",
"userProfile.usernamePage.title__update": "Update username",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} will be removed from this account.",
"userProfile.web3WalletPage.removeResource.messageLine2": "You will no longer be able to sign in using this web3 wallet.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} has been removed from your account.",
"userProfile.web3WalletPage.removeResource.title": "Remove web3 wallet",
"userProfile.web3WalletPage.subtitle__availableWallets": "Select a web3 wallet to connect to your account.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "There are no available web3 wallets.",
"userProfile.web3WalletPage.successMessage": "The wallet has been added to your account.",
"userProfile.web3WalletPage.title": "Add web3 wallet"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Continue Session",
"clerkAuth.loginSuccess.desc": "{{greeting}}, it's great to continue serving you. Let's pick up where we left off.",
"clerkAuth.loginSuccess.title": "Welcome back, {{nickName}}",
"error.backHome": "Back to Home",
"error.desc": "Give it a try later, or go back to the known world.",
"error.retry": "Reload",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Sorry, the quota for this key has been reached. Please check if your account balance is sufficient or try again after increasing the key's quota.",
"response.InvalidAccessCode": "Invalid access code or empty. Please enter the correct access code or add a custom API Key.",
"response.InvalidBedrockCredentials": "Bedrock authentication failed. Please check the AccessKeyId/SecretAccessKey and retry.",
"response.InvalidClerkUser": "Sorry, you are not currently logged in. Please log in or register an account to continue.",
"response.InvalidComfyUIArgs": "Invalid ComfyUI configuration. Please check the settings and try again.",
"response.InvalidGithubToken": "The GitHub Personal Access Token is incorrect or empty. Please check your GitHub Personal Access Token and try again.",
"response.InvalidOllamaArgs": "Invalid Ollama configuration, please check Ollama configuration and try again",

View file

@ -1,545 +0,0 @@
{
"backButton": "Volver",
"badge__default": "Predeterminado",
"badge__otherImpersonatorDevice": "Otro dispositivo suplantador",
"badge__primary": "Principal",
"badge__requiresAction": "Requiere acción",
"badge__thisDevice": "Este dispositivo",
"badge__unverified": "No verificado",
"badge__userDevice": "Dispositivo del usuario",
"badge__you": "Tú",
"createOrganization.formButtonSubmit": "Crear organización",
"createOrganization.invitePage.formButtonReset": "Omitir",
"createOrganization.title": "Crear organización",
"dates.lastDay": "Ayer a las {{ date | timeString('es-ES') }}",
"dates.next6Days": "{{ date | weekday('es-ES','long') }} a las {{ date | timeString('es-ES') }}",
"dates.nextDay": "Mañana a las {{ date | timeString('es-ES') }}",
"dates.numeric": "{{ date | numeric('es-ES') }}",
"dates.previous6Days": "El pasado {{ date | weekday('es-ES','long') }} a las {{ date | timeString('es-ES') }}",
"dates.sameDay": "Hoy a las {{ date | timeString('es-ES') }}",
"dividerText": "o",
"footerActionLink__useAnotherMethod": "Usar otro método",
"footerPageLink__help": "Ayuda",
"footerPageLink__privacy": "Privacidad",
"footerPageLink__terms": "Términos",
"formButtonPrimary": "Continuar",
"formButtonPrimary__verify": "Verificar",
"formFieldAction__forgotPassword": "¿Olvidaste tu contraseña?",
"formFieldError__matchingPasswords": "Las contraseñas coinciden.",
"formFieldError__notMatchingPasswords": "Las contraseñas no coinciden.",
"formFieldError__verificationLinkExpired": "El enlace de verificación ha expirado. Solicita uno nuevo.",
"formFieldHintText__optional": "Opcional",
"formFieldHintText__slug": "Un slug es un identificador legible que debe ser único. A menudo se usa en URLs.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Eliminar cuenta",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "ejemplo@email.com, ejemplo2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "mi-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Habilitar invitaciones automáticas para este dominio",
"formFieldLabel__backupCode": "Código de respaldo",
"formFieldLabel__confirmDeletion": "Confirmación",
"formFieldLabel__confirmPassword": "Confirmar contraseña",
"formFieldLabel__currentPassword": "Contraseña actual",
"formFieldLabel__emailAddress": "Dirección de correo electrónico",
"formFieldLabel__emailAddress_username": "Correo electrónico o nombre de usuario",
"formFieldLabel__emailAddresses": "Direcciones de correo electrónico",
"formFieldLabel__firstName": "Nombre",
"formFieldLabel__lastName": "Apellido",
"formFieldLabel__newPassword": "Nueva contraseña",
"formFieldLabel__organizationDomain": "Dominio",
"formFieldLabel__organizationDomainDeletePending": "Eliminar invitaciones y sugerencias pendientes",
"formFieldLabel__organizationDomainEmailAddress": "Correo electrónico de verificación",
"formFieldLabel__organizationDomainEmailAddressDescription": "Introduce una dirección de correo bajo este dominio para recibir un código y verificar el dominio.",
"formFieldLabel__organizationName": "Nombre",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "Nombre de la clave de acceso",
"formFieldLabel__password": "Contraseña",
"formFieldLabel__phoneNumber": "Número de teléfono",
"formFieldLabel__role": "Rol",
"formFieldLabel__signOutOfOtherSessions": "Cerrar sesión en todos los demás dispositivos",
"formFieldLabel__username": "Nombre de usuario",
"impersonationFab.action__signOut": "Cerrar sesión",
"impersonationFab.title": "Conectado como {{identifier}}",
"locale": "es-ES",
"maintenanceMode": "Actualmente estamos realizando tareas de mantenimiento, pero no te preocupes, no debería tardar más de unos minutos.",
"membershipRole__admin": "Administrador",
"membershipRole__basicMember": "Miembro",
"membershipRole__guestMember": "Invitado",
"organizationList.action__createOrganization": "Crear organización",
"organizationList.action__invitationAccept": "Unirse",
"organizationList.action__suggestionsAccept": "Solicitar unirse",
"organizationList.createOrganization": "Crear organización",
"organizationList.invitationAcceptedLabel": "Unido",
"organizationList.subtitle": "para continuar en {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "Pendiente de aprobación",
"organizationList.title": "Elige una cuenta",
"organizationList.titleWithoutPersonal": "Elige una organización",
"organizationProfile.badge__automaticInvitation": "Invitaciones automáticas",
"organizationProfile.badge__automaticSuggestion": "Sugerencias automáticas",
"organizationProfile.badge__manualInvitation": "Sin inscripción automática",
"organizationProfile.badge__unverified": "No verificado",
"organizationProfile.createDomainPage.subtitle": "Agrega el dominio para verificarlo. Los usuarios con correos bajo este dominio pueden unirse automáticamente o solicitar unirse.",
"organizationProfile.createDomainPage.title": "Agregar dominio",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "No se pudieron enviar las invitaciones. Ya existen invitaciones pendientes para las siguientes direcciones: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Enviar invitaciones",
"organizationProfile.invitePage.selectDropdown__role": "Seleccionar rol",
"organizationProfile.invitePage.subtitle": "Introduce o pega una o más direcciones de correo, separadas por espacios o comas.",
"organizationProfile.invitePage.successMessage": "Invitaciones enviadas con éxito",
"organizationProfile.invitePage.title": "Invitar nuevos miembros",
"organizationProfile.membersPage.action__invite": "Invitar",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Eliminar miembro",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Se unió",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Rol",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Usuario",
"organizationProfile.membersPage.detailsTitle__emptyRow": "No hay miembros para mostrar",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Invita usuarios conectando un dominio de correo con tu organización. Cualquiera que se registre con un correo coincidente podrá unirse en cualquier momento.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Invitaciones automáticas",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Gestionar dominios verificados",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "No hay invitaciones para mostrar",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Revocar invitación",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Invitado",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Los usuarios que se registren con un dominio de correo coincidente verán una sugerencia para solicitar unirse a tu organización.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Sugerencias automáticas",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Gestionar dominios verificados",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Aprobar",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Rechazar",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Acceso solicitado",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "No hay solicitudes para mostrar",
"organizationProfile.membersPage.start.headerTitle__invitations": "Invitaciones",
"organizationProfile.membersPage.start.headerTitle__members": "Miembros",
"organizationProfile.membersPage.start.headerTitle__requests": "Solicitudes",
"organizationProfile.navbar.description": "Gestiona tu organización.",
"organizationProfile.navbar.general": "General",
"organizationProfile.navbar.members": "Miembros",
"organizationProfile.navbar.title": "Organización",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Escribe \"{{organizationName}}\" abajo para continuar.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "¿Estás seguro de que deseas eliminar esta organización?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Esta acción es permanente e irreversible.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Has eliminado la organización.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Eliminar organización",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Escribe \"{{organizationName}}\" abajo para continuar.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "¿Estás seguro de que deseas salir de esta organización? Perderás el acceso a esta organización y sus aplicaciones.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Esta acción es permanente e irreversible.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Has salido de la organización.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Salir de la organización",
"organizationProfile.profilePage.dangerSection.title": "Peligro",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Gestionar",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Eliminar",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Verificar",
"organizationProfile.profilePage.domainSection.primaryButton": "Agregar dominio",
"organizationProfile.profilePage.domainSection.subtitle": "Permite que los usuarios se unan automáticamente a la organización o soliciten unirse según un dominio de correo electrónico verificado.",
"organizationProfile.profilePage.domainSection.title": "Dominios verificados",
"organizationProfile.profilePage.successMessage": "La organización ha sido actualizada.",
"organizationProfile.profilePage.title": "Actualizar perfil",
"organizationProfile.removeDomainPage.messageLine1": "El dominio de correo electrónico {{domain}} será eliminado.",
"organizationProfile.removeDomainPage.messageLine2": "Los usuarios ya no podrán unirse automáticamente a la organización después de esto.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} ha sido eliminado.",
"organizationProfile.removeDomainPage.title": "Eliminar dominio",
"organizationProfile.start.headerTitle__general": "General",
"organizationProfile.start.headerTitle__members": "Miembros",
"organizationProfile.start.profileSection.primaryButton": "Actualizar perfil",
"organizationProfile.start.profileSection.title": "Perfil de la organización",
"organizationProfile.start.profileSection.uploadAction__title": "Logotipo",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Eliminar este dominio afectará a los usuarios invitados.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Eliminar dominio",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Elimina este dominio de tus dominios verificados",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Eliminar dominio",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Los usuarios son invitados automáticamente a unirse a la organización al registrarse y pueden unirse en cualquier momento.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Invitaciones automáticas",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Los usuarios reciben una sugerencia para solicitar unirse, pero deben ser aprobados por un administrador antes de poder unirse a la organización.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Sugerencias automáticas",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Cambiar el modo de inscripción solo afectará a los nuevos usuarios.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Invitaciones pendientes enviadas a usuarios: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Sugerencias pendientes enviadas a usuarios: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Los usuarios solo pueden ser invitados manualmente a la organización.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Sin inscripción automática",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Elige cómo los usuarios de este dominio pueden unirse a la organización.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Peligro",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Opciones de inscripción",
"organizationProfile.verifiedDomainPage.subtitle": "El dominio {{domain}} ya está verificado. Continúa seleccionando el modo de inscripción.",
"organizationProfile.verifiedDomainPage.title": "Actualizar {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "Introduce el código de verificación enviado a tu dirección de correo electrónico",
"organizationProfile.verifyDomainPage.formTitle": "Código de verificación",
"organizationProfile.verifyDomainPage.resendButton": "¿No recibiste un código? Reenviar",
"organizationProfile.verifyDomainPage.subtitle": "El dominio {{domainName}} debe ser verificado por correo electrónico.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "Se ha enviado un código de verificación a {{emailAddress}}. Introduce el código para continuar.",
"organizationProfile.verifyDomainPage.title": "Verificar dominio",
"organizationSwitcher.action__createOrganization": "Crear organización",
"organizationSwitcher.action__invitationAccept": "Unirse",
"organizationSwitcher.action__manageOrganization": "Gestionar",
"organizationSwitcher.action__suggestionsAccept": "Solicitar unirse",
"organizationSwitcher.notSelected": "Ninguna organización seleccionada",
"organizationSwitcher.personalWorkspace": "Cuenta personal",
"organizationSwitcher.suggestionsAcceptedLabel": "Pendiente de aprobación",
"paginationButton__next": "Siguiente",
"paginationButton__previous": "Anterior",
"paginationRowText__displaying": "Mostrando",
"paginationRowText__of": "de",
"signIn.accountSwitcher.action__addAccount": "Agregar cuenta",
"signIn.accountSwitcher.action__signOutAll": "Cerrar sesión en todas las cuentas",
"signIn.accountSwitcher.subtitle": "Selecciona la cuenta con la que deseas continuar.",
"signIn.accountSwitcher.title": "Elige una cuenta",
"signIn.alternativeMethods.actionLink": "Obtener ayuda",
"signIn.alternativeMethods.actionText": "¿No tienes ninguno de estos?",
"signIn.alternativeMethods.blockButton__backupCode": "Usar un código de respaldo",
"signIn.alternativeMethods.blockButton__emailCode": "Enviar código por correo a {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "Enviar enlace por correo a {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "Iniciar sesión con tu clave de acceso",
"signIn.alternativeMethods.blockButton__password": "Iniciar sesión con tu contraseña",
"signIn.alternativeMethods.blockButton__phoneCode": "Enviar código SMS a {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "Usar tu app de autenticación",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Contactar soporte por correo",
"signIn.alternativeMethods.getHelp.content": "Si tienes problemas para acceder a tu cuenta, escríbenos y trabajaremos contigo para restaurar el acceso lo antes posible.",
"signIn.alternativeMethods.getHelp.title": "Obtener ayuda",
"signIn.alternativeMethods.subtitle": "¿Tienes problemas? Puedes usar cualquiera de estos métodos para iniciar sesión.",
"signIn.alternativeMethods.title": "Usar otro método",
"signIn.backupCodeMfa.subtitle": "Tu código de respaldo es el que recibiste al configurar la autenticación en dos pasos.",
"signIn.backupCodeMfa.title": "Introduce un código de respaldo",
"signIn.emailCode.formTitle": "Código de verificación",
"signIn.emailCode.resendButton": "¿No recibiste un código? Reenviar",
"signIn.emailCode.subtitle": "para continuar en {{applicationName}}",
"signIn.emailCode.title": "Revisa tu correo",
"signIn.emailLink.expired.subtitle": "Vuelve a la pestaña original para continuar.",
"signIn.emailLink.expired.title": "Este enlace de verificación ha expirado",
"signIn.emailLink.failed.subtitle": "Vuelve a la pestaña original para continuar.",
"signIn.emailLink.failed.title": "Este enlace de verificación no es válido",
"signIn.emailLink.formSubtitle": "Usa el enlace de verificación enviado a tu correo",
"signIn.emailLink.formTitle": "Enlace de verificación",
"signIn.emailLink.loading.subtitle": "Serás redirigido en breve",
"signIn.emailLink.loading.title": "Iniciando sesión...",
"signIn.emailLink.resendButton": "¿No recibiste un enlace? Reenviar",
"signIn.emailLink.subtitle": "para continuar en {{applicationName}}",
"signIn.emailLink.title": "Revisa tu correo",
"signIn.emailLink.unusedTab.title": "Puedes cerrar esta pestaña",
"signIn.emailLink.verified.subtitle": "Serás redirigido en breve",
"signIn.emailLink.verified.title": "Sesión iniciada con éxito",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Vuelve a la pestaña original para continuar",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Vuelve a la nueva pestaña para continuar",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Sesión iniciada en otra pestaña",
"signIn.forgotPassword.formTitle": "Código para restablecer contraseña",
"signIn.forgotPassword.resendButton": "¿No recibiste un código? Reenviar",
"signIn.forgotPassword.subtitle": "para restablecer tu contraseña",
"signIn.forgotPassword.subtitle_email": "Primero, introduce el código enviado a tu correo electrónico",
"signIn.forgotPassword.subtitle_phone": "Primero, introduce el código enviado a tu teléfono",
"signIn.forgotPassword.title": "Restablecer contraseña",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Restablecer tu contraseña",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "O inicia sesión con otro método",
"signIn.forgotPasswordAlternativeMethods.title": "¿Olvidaste tu contraseña?",
"signIn.noAvailableMethods.message": "No se puede continuar con el inicio de sesión. No hay factores de autenticación disponibles.",
"signIn.noAvailableMethods.subtitle": "Ocurrió un error",
"signIn.noAvailableMethods.title": "No se puede iniciar sesión",
"signIn.passkey.subtitle": "Usar tu clave de acceso confirma que eres tú. Tu dispositivo puede pedir tu huella, rostro o bloqueo de pantalla.",
"signIn.passkey.title": "Usar tu clave de acceso",
"signIn.password.actionLink": "Usar otro método",
"signIn.password.subtitle": "Introduce la contraseña asociada a tu cuenta",
"signIn.password.title": "Introduce tu contraseña",
"signIn.passwordPwned.title": "Contraseña comprometida",
"signIn.phoneCode.formTitle": "Código de verificación",
"signIn.phoneCode.resendButton": "¿No recibiste un código? Reenviar",
"signIn.phoneCode.subtitle": "para continuar en {{applicationName}}",
"signIn.phoneCode.title": "Revisa tu teléfono",
"signIn.phoneCodeMfa.formTitle": "Código de verificación",
"signIn.phoneCodeMfa.resendButton": "¿No recibiste un código? Reenviar",
"signIn.phoneCodeMfa.subtitle": "Para continuar, introduce el código de verificación enviado a tu teléfono",
"signIn.phoneCodeMfa.title": "Revisa tu teléfono",
"signIn.resetPassword.formButtonPrimary": "Restablecer contraseña",
"signIn.resetPassword.requiredMessage": "Por razones de seguridad, es necesario restablecer tu contraseña.",
"signIn.resetPassword.successMessage": "Tu contraseña se ha cambiado correctamente. Iniciando sesión, espera un momento.",
"signIn.resetPassword.title": "Establecer nueva contraseña",
"signIn.resetPasswordMfa.detailsLabel": "Necesitamos verificar tu identidad antes de restablecer tu contraseña.",
"signIn.start.actionLink": "Registrarse",
"signIn.start.actionLink__use_email": "Usar correo electrónico",
"signIn.start.actionLink__use_email_username": "Usar correo o nombre de usuario",
"signIn.start.actionLink__use_passkey": "Usar clave de acceso",
"signIn.start.actionLink__use_phone": "Usar teléfono",
"signIn.start.actionLink__use_username": "Usar nombre de usuario",
"signIn.start.actionText": "¿No tienes una cuenta?",
"signIn.start.subtitle": "¡Bienvenido de nuevo! Inicia sesión para continuar",
"signIn.start.title": "Inicia sesión en {{applicationName}}",
"signIn.totpMfa.formTitle": "Código de verificación",
"signIn.totpMfa.subtitle": "Para continuar, introduce el código generado por tu app de autenticación",
"signIn.totpMfa.title": "Verificación en dos pasos",
"signInEnterPasswordTitle": "Introduce tu contraseña",
"signUp.continue.actionLink": "Iniciar sesión",
"signUp.continue.actionText": "¿Ya tienes una cuenta?",
"signUp.continue.subtitle": "Por favor, completa los datos restantes para continuar.",
"signUp.continue.title": "Completa los campos faltantes",
"signUp.emailCode.formSubtitle": "Introduce el código de verificación enviado a tu correo electrónico",
"signUp.emailCode.formTitle": "Código de verificación",
"signUp.emailCode.resendButton": "¿No recibiste un código? Reenviar",
"signUp.emailCode.subtitle": "Introduce el código de verificación enviado a tu correo",
"signUp.emailCode.title": "Verifica tu correo",
"signUp.emailLink.formSubtitle": "Usa el enlace de verificación enviado a tu correo electrónico",
"signUp.emailLink.formTitle": "Enlace de verificación",
"signUp.emailLink.loading.title": "Registrando...",
"signUp.emailLink.resendButton": "¿No recibiste un enlace? Reenviar",
"signUp.emailLink.subtitle": "para continuar en {{applicationName}}",
"signUp.emailLink.title": "Verifica tu correo",
"signUp.emailLink.verified.title": "Registro exitoso",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Vuelve a la nueva pestaña para continuar",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Vuelve a la pestaña anterior para continuar",
"signUp.emailLink.verifiedSwitchTab.title": "Correo verificado con éxito",
"signUp.phoneCode.formSubtitle": "Introduce el código de verificación enviado a tu número de teléfono",
"signUp.phoneCode.formTitle": "Código de verificación",
"signUp.phoneCode.resendButton": "¿No recibiste un código? Reenviar",
"signUp.phoneCode.subtitle": "Introduce el código de verificación enviado a tu teléfono",
"signUp.phoneCode.title": "Verifica tu teléfono",
"signUp.start.actionLink": "Iniciar sesión",
"signUp.start.actionText": "¿Ya tienes una cuenta?",
"signUp.start.subtitle": "¡Bienvenido! Completa los datos para comenzar.",
"signUp.start.title": "Crea tu cuenta",
"socialButtonsBlockButton": "Continuar con {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Registro no exitoso debido a fallos en las validaciones de seguridad. Por favor, actualiza la página para intentarlo de nuevo o contacta con soporte para obtener ayuda.",
"unstable__errors.captcha_unavailable": "Registro no exitoso debido a fallos en la validación contra bots. Por favor, actualiza la página para intentarlo de nuevo o contacta con soporte para obtener ayuda.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Esta dirección de correo electrónico ya está en uso. Por favor, prueba con otra.",
"unstable__errors.form_identifier_exists__phone_number": "Este número de teléfono ya está en uso. Por favor, prueba con otro.",
"unstable__errors.form_identifier_exists__username": "Este nombre de usuario ya está en uso. Por favor, prueba con otro.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "La dirección de correo electrónico debe ser válida.",
"unstable__errors.form_param_format_invalid__phone_number": "El número de teléfono debe tener un formato internacional válido.",
"unstable__errors.form_param_max_length_exceeded__first_name": "El nombre no debe superar los 256 caracteres.",
"unstable__errors.form_param_max_length_exceeded__last_name": "El apellido no debe superar los 256 caracteres.",
"unstable__errors.form_param_max_length_exceeded__name": "El nombre no debe superar los 256 caracteres.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Tu contraseña no es lo suficientemente segura.",
"unstable__errors.form_password_pwned": "Esta contraseña ha sido comprometida en una filtración de datos y no puede ser utilizada. Por favor, elige otra.",
"unstable__errors.form_password_pwned__sign_in": "Esta contraseña ha sido comprometida en una filtración de datos y no puede ser utilizada. Por favor, restablece tu contraseña.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Tu contraseña ha superado el número máximo de bytes permitidos. Por favor, acórtala o elimina algunos caracteres especiales.",
"unstable__errors.form_password_validation_failed": "Contraseña incorrecta",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "No puedes eliminar tu última identificación.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Ya hay una clave registrada en este dispositivo.",
"unstable__errors.passkey_not_supported": "Las claves no son compatibles con este dispositivo.",
"unstable__errors.passkey_pa_not_supported": "El registro requiere un autenticador de plataforma, pero el dispositivo no lo admite.",
"unstable__errors.passkey_registration_cancelled": "El registro de la clave fue cancelado o expiró.",
"unstable__errors.passkey_retrieval_cancelled": "La verificación de la clave fue cancelada o expiró.",
"unstable__errors.passwordComplexity.maximumLength": "menos de {{length}} caracteres",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} o más caracteres",
"unstable__errors.passwordComplexity.requireLowercase": "una letra minúscula",
"unstable__errors.passwordComplexity.requireNumbers": "un número",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "un carácter especial",
"unstable__errors.passwordComplexity.requireUppercase": "una letra mayúscula",
"unstable__errors.passwordComplexity.sentencePrefix": "Tu contraseña debe contener",
"unstable__errors.phone_number_exists": "Este número de teléfono ya está en uso. Por favor, prueba con otro.",
"unstable__errors.zxcvbn.couldBeStronger": "Tu contraseña funciona, pero podría ser más segura. Intenta agregar más caracteres.",
"unstable__errors.zxcvbn.goodPassword": "Tu contraseña cumple con todos los requisitos necesarios.",
"unstable__errors.zxcvbn.notEnough": "Tu contraseña no es lo suficientemente segura.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Usa mayúsculas solo en algunas letras, no en todas.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Agrega más palabras que no sean comunes.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Evita años que estén relacionados contigo.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Usa mayúsculas en más de la primera letra.",
"unstable__errors.zxcvbn.suggestions.dates": "Evita fechas y años que estén relacionados contigo.",
"unstable__errors.zxcvbn.suggestions.l33t": "Evita sustituciones predecibles como '@' por 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Usa patrones de teclado más largos y cambia la dirección de escritura varias veces.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Puedes crear contraseñas seguras sin usar símbolos, números o letras mayúsculas.",
"unstable__errors.zxcvbn.suggestions.pwned": "Si usas esta contraseña en otros sitios, deberías cambiarla.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Evita años recientes.",
"unstable__errors.zxcvbn.suggestions.repeated": "Evita palabras y caracteres repetidos.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Evita escribir palabras comunes al revés.",
"unstable__errors.zxcvbn.suggestions.sequences": "Evita secuencias comunes de caracteres.",
"unstable__errors.zxcvbn.suggestions.useWords": "Usa varias palabras, pero evita frases comunes.",
"unstable__errors.zxcvbn.warnings.common": "Esta es una contraseña comúnmente utilizada.",
"unstable__errors.zxcvbn.warnings.commonNames": "Los nombres y apellidos comunes son fáciles de adivinar.",
"unstable__errors.zxcvbn.warnings.dates": "Las fechas son fáciles de adivinar.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Patrones repetidos como \"abcabcabc\" son fáciles de adivinar.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Los patrones cortos de teclado son fáciles de adivinar.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Nombres o apellidos solos son fáciles de adivinar.",
"unstable__errors.zxcvbn.warnings.pwned": "Tu contraseña fue expuesta en una filtración de datos en Internet.",
"unstable__errors.zxcvbn.warnings.recentYears": "Los años recientes son fáciles de adivinar.",
"unstable__errors.zxcvbn.warnings.sequences": "Secuencias comunes como \"abc\" son fáciles de adivinar.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "Es similar a una contraseña comúnmente utilizada.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Caracteres repetidos como \"aaa\" son fáciles de adivinar.",
"unstable__errors.zxcvbn.warnings.straightRow": "Filas rectas de teclas en tu teclado son fáciles de adivinar.",
"unstable__errors.zxcvbn.warnings.topHundred": "Esta es una contraseña muy utilizada.",
"unstable__errors.zxcvbn.warnings.topTen": "Esta es una de las contraseñas más utilizadas.",
"unstable__errors.zxcvbn.warnings.userInputs": "No debe haber datos personales o relacionados con la página.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Palabras individuales son fáciles de adivinar.",
"userButton.action__addAccount": "Agregar cuenta",
"userButton.action__manageAccount": "Administrar cuenta",
"userButton.action__signOut": "Cerrar sesión",
"userButton.action__signOutAll": "Cerrar sesión en todas las cuentas",
"userProfile.backupCodePage.actionLabel__copied": "¡Copiado!",
"userProfile.backupCodePage.actionLabel__copy": "Copiar todo",
"userProfile.backupCodePage.actionLabel__download": "Descargar .txt",
"userProfile.backupCodePage.actionLabel__print": "Imprimir",
"userProfile.backupCodePage.infoText1": "Los códigos de respaldo estarán habilitados para esta cuenta.",
"userProfile.backupCodePage.infoText2": "Mantén los códigos de respaldo en secreto y guárdalos de forma segura. Puedes regenerarlos si sospechas que han sido comprometidos.",
"userProfile.backupCodePage.subtitle__codelist": "Guárdalos de forma segura y mantenlos en secreto.",
"userProfile.backupCodePage.successMessage": "Los códigos de respaldo están habilitados. Puedes usar uno de ellos para iniciar sesión si pierdes el acceso a tu dispositivo de autenticación. Cada código solo puede usarse una vez.",
"userProfile.backupCodePage.successSubtitle": "Puedes usar uno de estos códigos para iniciar sesión si pierdes el acceso a tu dispositivo de autenticación.",
"userProfile.backupCodePage.title": "Agregar verificación con código de respaldo",
"userProfile.backupCodePage.title__codelist": "Códigos de respaldo",
"userProfile.connectedAccountPage.formHint": "Selecciona un proveedor para conectar tu cuenta.",
"userProfile.connectedAccountPage.formHint__noAccounts": "No hay proveedores de cuentas externas disponibles.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} se eliminará de esta cuenta.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Ya no podrás usar esta cuenta conectada y las funciones dependientes dejarán de funcionar.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} se ha eliminado de tu cuenta.",
"userProfile.connectedAccountPage.removeResource.title": "Eliminar cuenta conectada",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "El proveedor se ha agregado a tu cuenta",
"userProfile.connectedAccountPage.title": "Agregar cuenta conectada",
"userProfile.deletePage.actionDescription": "Escribe \"Eliminar cuenta\" a continuación para continuar.",
"userProfile.deletePage.confirm": "Eliminar cuenta",
"userProfile.deletePage.messageLine1": "¿Estás seguro de que deseas eliminar tu cuenta?",
"userProfile.deletePage.messageLine2": "Esta acción es permanente e irreversible.",
"userProfile.deletePage.title": "Eliminar cuenta",
"userProfile.emailAddressPage.emailCode.formHint": "Se enviará un correo electrónico con un código de verificación a esta dirección.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Introduce el código de verificación enviado a {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "Código de verificación",
"userProfile.emailAddressPage.emailCode.resendButton": "¿No recibiste un código? Reenviar",
"userProfile.emailAddressPage.emailCode.successMessage": "El correo {{identifier}} se ha agregado a tu cuenta.",
"userProfile.emailAddressPage.emailLink.formHint": "Se enviará un correo electrónico con un enlace de verificación a esta dirección.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Haz clic en el enlace de verificación enviado a {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "Enlace de verificación",
"userProfile.emailAddressPage.emailLink.resendButton": "¿No recibiste un enlace? Reenviar",
"userProfile.emailAddressPage.emailLink.successMessage": "El correo {{identifier}} se ha agregado a tu cuenta.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} se eliminará de esta cuenta.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Ya no podrás iniciar sesión con esta dirección de correo electrónico.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} se ha eliminado de tu cuenta.",
"userProfile.emailAddressPage.removeResource.title": "Eliminar dirección de correo electrónico",
"userProfile.emailAddressPage.title": "Agregar dirección de correo electrónico",
"userProfile.emailAddressPage.verifyTitle": "Verificar dirección de correo electrónico",
"userProfile.formButtonPrimary__add": "Agregar",
"userProfile.formButtonPrimary__continue": "Continuar",
"userProfile.formButtonPrimary__finish": "Finalizar",
"userProfile.formButtonPrimary__remove": "Eliminar",
"userProfile.formButtonPrimary__save": "Guardar",
"userProfile.formButtonReset": "Cancelar",
"userProfile.mfaPage.formHint": "Selecciona un método para agregar.",
"userProfile.mfaPage.title": "Agregar verificación en dos pasos",
"userProfile.mfaPhoneCodePage.backButton": "Usar número existente",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Agregar número de teléfono",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} ya no recibirá códigos de verificación al iniciar sesión.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Tu cuenta puede no estar tan segura. ¿Estás seguro de que deseas continuar?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "Se ha eliminado la verificación en dos pasos por SMS para {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "Eliminar verificación en dos pasos",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Selecciona un número de teléfono existente para registrar la verificación por SMS o agrega uno nuevo.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "No hay números de teléfono disponibles para registrar la verificación por SMS, por favor agrega uno nuevo.",
"userProfile.mfaPhoneCodePage.successMessage1": "Al iniciar sesión, deberás ingresar un código de verificación enviado a este número de teléfono como paso adicional.",
"userProfile.mfaPhoneCodePage.successMessage2": "Guarda estos códigos de respaldo y consérvalos en un lugar seguro. Si pierdes el acceso a tu dispositivo de autenticación, puedes usarlos para iniciar sesión.",
"userProfile.mfaPhoneCodePage.successTitle": "Verificación por SMS habilitada",
"userProfile.mfaPhoneCodePage.title": "Agregar verificación por SMS",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "Escanear código QR en su lugar",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "¿No puedes escanear el código QR?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Configura un nuevo método de inicio de sesión en tu app de autenticación y escanea el siguiente código QR para vincularlo a tu cuenta.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Configura un nuevo método de inicio de sesión en tu app de autenticación e introduce la clave proporcionada a continuación.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Asegúrate de que esté habilitada la opción de contraseñas basadas en tiempo o de un solo uso, luego finaliza la vinculación.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Alternativamente, si tu app de autenticación admite URIs TOTP, también puedes copiar el URI completo.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Ya no se requerirán códigos de verificación de esta app de autenticación al iniciar sesión.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Tu cuenta puede no estar tan segura. ¿Estás seguro de que deseas continuar?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "Se ha eliminado la verificación en dos pasos mediante aplicación de autenticación.",
"userProfile.mfaTOTPPage.removeResource.title": "Eliminar verificación en dos pasos",
"userProfile.mfaTOTPPage.successMessage": "La verificación en dos pasos está habilitada. Al iniciar sesión, deberás ingresar un código de verificación de esta app como paso adicional.",
"userProfile.mfaTOTPPage.title": "Agregar aplicación de autenticación",
"userProfile.mfaTOTPPage.verifySubtitle": "Introduce el código generado por tu app de autenticación",
"userProfile.mfaTOTPPage.verifyTitle": "Código de verificación",
"userProfile.mobileButton__menu": "Menú",
"userProfile.navbar.account": "Perfil",
"userProfile.navbar.description": "Administra la información de tu cuenta.",
"userProfile.navbar.security": "Seguridad",
"userProfile.navbar.title": "Cuenta",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} se eliminará de esta cuenta.",
"userProfile.passkeyScreen.removeResource.title": "Eliminar clave de acceso",
"userProfile.passkeyScreen.subtitle__rename": "Puedes cambiar el nombre de la clave para encontrarla más fácilmente.",
"userProfile.passkeyScreen.title__rename": "Renombrar clave de acceso",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Se recomienda cerrar sesión en todos los dispositivos que hayan usado tu contraseña anterior.",
"userProfile.passwordPage.readonly": "Actualmente no puedes editar tu contraseña porque solo puedes iniciar sesión mediante la conexión empresarial.",
"userProfile.passwordPage.successMessage__set": "Tu contraseña ha sido establecida.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Se ha cerrado sesión en todos los demás dispositivos.",
"userProfile.passwordPage.successMessage__update": "Tu contraseña ha sido actualizada.",
"userProfile.passwordPage.title__set": "Establecer contraseña",
"userProfile.passwordPage.title__update": "Actualizar contraseña",
"userProfile.phoneNumberPage.infoText": "Se enviará un mensaje de texto con un código de verificación a este número. Pueden aplicarse tarifas por mensajes y datos.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} se eliminará de esta cuenta.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Ya no podrás iniciar sesión con este número de teléfono.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} se ha eliminado de tu cuenta.",
"userProfile.phoneNumberPage.removeResource.title": "Eliminar número de teléfono",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} se ha agregado a tu cuenta.",
"userProfile.phoneNumberPage.title": "Agregar número de teléfono",
"userProfile.phoneNumberPage.verifySubtitle": "Introduce el código de verificación enviado a {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "Verificar número de teléfono",
"userProfile.profilePage.fileDropAreaHint": "Tamaño recomendado 1:1, hasta 10MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Eliminar",
"userProfile.profilePage.imageFormSubtitle": "Subir",
"userProfile.profilePage.imageFormTitle": "Imagen de perfil",
"userProfile.profilePage.readonly": "La información de tu perfil ha sido proporcionada por la conexión empresarial y no puede ser editada.",
"userProfile.profilePage.successMessage": "Tu perfil ha sido actualizado.",
"userProfile.profilePage.title": "Actualizar perfil",
"userProfile.start.activeDevicesSection.destructiveAction": "Cerrar sesión en el dispositivo",
"userProfile.start.activeDevicesSection.title": "Dispositivos activos",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Intentar de nuevo",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Autorizar ahora",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Eliminar",
"userProfile.start.connectedAccountsSection.primaryButton": "Conectar cuenta",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "Se han actualizado los permisos requeridos y podrías estar experimentando funcionalidad limitada. Por favor, vuelve a autorizar esta aplicación para evitar problemas.",
"userProfile.start.connectedAccountsSection.title": "Cuentas conectadas",
"userProfile.start.dangerSection.deleteAccountButton": "Eliminar cuenta",
"userProfile.start.dangerSection.title": "Eliminar cuenta",
"userProfile.start.emailAddressesSection.destructiveAction": "Eliminar correo",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Establecer como principal",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Completar verificación",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Verificar",
"userProfile.start.emailAddressesSection.primaryButton": "Agregar dirección de correo",
"userProfile.start.emailAddressesSection.title": "Direcciones de correo",
"userProfile.start.enterpriseAccountsSection.title": "Cuentas empresariales",
"userProfile.start.headerTitle__account": "Detalles del perfil",
"userProfile.start.headerTitle__security": "Seguridad",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Regenerar",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Códigos de respaldo",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Obtén un nuevo conjunto de códigos de respaldo seguros. Los anteriores serán eliminados y no podrán usarse.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Regenerar códigos de respaldo",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Establecer como predeterminado",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Eliminar",
"userProfile.start.mfaSection.primaryButton": "Agregar verificación en dos pasos",
"userProfile.start.mfaSection.title": "Verificación en dos pasos",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Eliminar",
"userProfile.start.mfaSection.totp.headerTitle": "Aplicación de autenticación",
"userProfile.start.passkeysSection.menuAction__destructive": "Eliminar",
"userProfile.start.passkeysSection.menuAction__rename": "Renombrar",
"userProfile.start.passkeysSection.title": "Claves de acceso",
"userProfile.start.passwordSection.primaryButton__setPassword": "Establecer contraseña",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Actualizar contraseña",
"userProfile.start.passwordSection.title": "Contraseña",
"userProfile.start.phoneNumbersSection.destructiveAction": "Eliminar número de teléfono",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Establecer como principal",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Completar verificación",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Verificar número de teléfono",
"userProfile.start.phoneNumbersSection.primaryButton": "Agregar número de teléfono",
"userProfile.start.phoneNumbersSection.title": "Números de teléfono",
"userProfile.start.profileSection.primaryButton": "Actualizar perfil",
"userProfile.start.profileSection.title": "Perfil",
"userProfile.start.usernameSection.primaryButton__setUsername": "Establecer nombre de usuario",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Actualizar nombre de usuario",
"userProfile.start.usernameSection.title": "Nombre de usuario",
"userProfile.start.web3WalletsSection.destructiveAction": "Eliminar billetera",
"userProfile.start.web3WalletsSection.primaryButton": "Billeteras Web3",
"userProfile.start.web3WalletsSection.title": "Billeteras Web3",
"userProfile.usernamePage.successMessage": "Tu nombre de usuario ha sido actualizado.",
"userProfile.usernamePage.title__set": "Establecer nombre de usuario",
"userProfile.usernamePage.title__update": "Actualizar nombre de usuario",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} se eliminará de esta cuenta.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Ya no podrás iniciar sesión con esta billetera Web3.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} se ha eliminado de tu cuenta.",
"userProfile.web3WalletPage.removeResource.title": "Eliminar billetera Web3",
"userProfile.web3WalletPage.subtitle__availableWallets": "Selecciona una billetera Web3 para conectar a tu cuenta.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "No hay billeteras Web3 disponibles.",
"userProfile.web3WalletPage.successMessage": "La billetera se ha agregado a tu cuenta.",
"userProfile.web3WalletPage.title": "Agregar billetera Web3"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Continuar sesión",
"clerkAuth.loginSuccess.desc": "{{greeting}}, es un placer seguir atendiéndote. Continuemos donde lo dejamos.",
"clerkAuth.loginSuccess.title": "Bienvenido de nuevo, {{nickName}}",
"error.backHome": "Volver al inicio",
"error.desc": "Inténtalo más tarde o regresa al mundo conocido.",
"error.retry": "Recargar",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Lo sentimos, se ha alcanzado la cuota de esta clave. Verifica tu saldo o aumenta la cuota.",
"response.InvalidAccessCode": "Código de acceso inválido o vacío. Ingresa el código correcto o una API Key personalizada.",
"response.InvalidBedrockCredentials": "Error de autenticación de Bedrock. Verifica AccessKeyId/SecretAccessKey.",
"response.InvalidClerkUser": "Lo sentimos, no has iniciado sesión. Inicia sesión o regístrate para continuar.",
"response.InvalidComfyUIArgs": "Configuración inválida de ComfyUI. Verifica los ajustes.",
"response.InvalidGithubToken": "El token de acceso personal de GitHub es incorrecto o está vacío.",
"response.InvalidOllamaArgs": "Configuración inválida de Ollama. Verifica los ajustes.",

View file

@ -1,545 +0,0 @@
{
"backButton": "بازگشت",
"badge__default": "پیش‌فرض",
"badge__otherImpersonatorDevice": "دستگاه جعل هویت دیگر",
"badge__primary": "اصلی",
"badge__requiresAction": "نیاز به اقدام",
"badge__thisDevice": "این دستگاه",
"badge__unverified": "تأیید نشده",
"badge__userDevice": "دستگاه کاربر",
"badge__you": "شما",
"createOrganization.formButtonSubmit": "ایجاد سازمان",
"createOrganization.invitePage.formButtonReset": "رد کردن",
"createOrganization.title": "ایجاد سازمان",
"dates.lastDay": "دیروز در {{ date | timeString('fa-IR') }}",
"dates.next6Days": "{{ date | weekday('fa-IR','long') }} در {{ date | timeString('fa-IR') }}",
"dates.nextDay": "فردا در {{ date | timeString('fa-IR') }}",
"dates.numeric": "{{ date | numeric('fa-IR') }}",
"dates.previous6Days": "{{ date | weekday('fa-IR','long') }} گذشته در {{ date | timeString('fa-IR') }}",
"dates.sameDay": "امروز در {{ date | timeString('fa-IR') }}",
"dividerText": "یا",
"footerActionLink__useAnotherMethod": "استفاده از روش دیگر",
"footerPageLink__help": "راهنما",
"footerPageLink__privacy": "حریم خصوصی",
"footerPageLink__terms": "شرایط",
"formButtonPrimary": "ادامه",
"formButtonPrimary__verify": "تأیید",
"formFieldAction__forgotPassword": "رمز عبور را فراموش کرده‌اید؟",
"formFieldError__matchingPasswords": "رمزهای عبور مطابقت دارند.",
"formFieldError__notMatchingPasswords": "رمزهای عبور مطابقت ندارند.",
"formFieldError__verificationLinkExpired": "لینک تأیید منقضی شده است. لطفاً لینک جدیدی درخواست دهید.",
"formFieldHintText__optional": "اختیاری",
"formFieldHintText__slug": "اسلاگ یک شناسه قابل خواندن برای انسان است که باید یکتا باشد. معمولاً در URLها استفاده می‌شود.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "حذف حساب",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "example@email.com, example2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "my-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "فعال‌سازی دعوت‌نامه خودکار برای این دامنه",
"formFieldLabel__backupCode": "کد پشتیبان",
"formFieldLabel__confirmDeletion": "تأیید",
"formFieldLabel__confirmPassword": "تأیید رمز عبور",
"formFieldLabel__currentPassword": "رمز عبور فعلی",
"formFieldLabel__emailAddress": "آدرس ایمیل",
"formFieldLabel__emailAddress_username": "ایمیل یا نام کاربری",
"formFieldLabel__emailAddresses": "آدرس‌های ایمیل",
"formFieldLabel__firstName": "نام",
"formFieldLabel__lastName": "نام خانوادگی",
"formFieldLabel__newPassword": "رمز عبور جدید",
"formFieldLabel__organizationDomain": "دامنه",
"formFieldLabel__organizationDomainDeletePending": "حذف دعوت‌نامه‌ها و پیشنهادهای در انتظار",
"formFieldLabel__organizationDomainEmailAddress": "آدرس ایمیل تأیید",
"formFieldLabel__organizationDomainEmailAddressDescription": "یک آدرس ایمیل در این دامنه وارد کنید تا کد دریافت کرده و دامنه را تأیید کنید.",
"formFieldLabel__organizationName": "نام",
"formFieldLabel__organizationSlug": "اسلاگ",
"formFieldLabel__passkeyName": "نام کلید عبور",
"formFieldLabel__password": "رمز عبور",
"formFieldLabel__phoneNumber": "شماره تلفن",
"formFieldLabel__role": "نقش",
"formFieldLabel__signOutOfOtherSessions": "خروج از تمام دستگاه‌های دیگر",
"formFieldLabel__username": "نام کاربری",
"impersonationFab.action__signOut": "خروج",
"impersonationFab.title": "وارد شده به عنوان {{identifier}}",
"locale": "fa-IR",
"maintenanceMode": "در حال حاضر در حال انجام عملیات نگهداری هستیم، اما نگران نباشید، این کار بیش از چند دقیقه طول نخواهد کشید.",
"membershipRole__admin": "مدیر",
"membershipRole__basicMember": "عضو",
"membershipRole__guestMember": "مهمان",
"organizationList.action__createOrganization": "ایجاد سازمان",
"organizationList.action__invitationAccept": "پیوستن",
"organizationList.action__suggestionsAccept": "درخواست عضویت",
"organizationList.createOrganization": "ایجاد سازمان",
"organizationList.invitationAcceptedLabel": "پیوسته‌اید",
"organizationList.subtitle": "برای ادامه به {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "در انتظار تأیید",
"organizationList.title": "یک حساب انتخاب کنید",
"organizationList.titleWithoutPersonal": "یک سازمان انتخاب کنید",
"organizationProfile.badge__automaticInvitation": "دعوت‌نامه خودکار",
"organizationProfile.badge__automaticSuggestion": "پیشنهاد خودکار",
"organizationProfile.badge__manualInvitation": "ثبت‌نام خودکار ندارد",
"organizationProfile.badge__unverified": "تأیید نشده",
"organizationProfile.createDomainPage.subtitle": "دامنه را برای تأیید اضافه کنید. کاربران با ایمیل در این دامنه می‌توانند به‌صورت خودکار به سازمان بپیوندند یا درخواست عضویت دهند.",
"organizationProfile.createDomainPage.title": "افزودن دامنه",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "دعوت‌نامه‌ها ارسال نشدند. برای آدرس‌های ایمیل زیر قبلاً دعوت‌نامه در انتظار وجود دارد: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "ارسال دعوت‌نامه‌ها",
"organizationProfile.invitePage.selectDropdown__role": "انتخاب نقش",
"organizationProfile.invitePage.subtitle": "یک یا چند آدرس ایمیل را وارد یا جای‌گذاری کنید، با فاصله یا کاما جدا شده.",
"organizationProfile.invitePage.successMessage": "دعوت‌نامه‌ها با موفقیت ارسال شدند",
"organizationProfile.invitePage.title": "دعوت اعضای جدید",
"organizationProfile.membersPage.action__invite": "دعوت",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "حذف عضو",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "تاریخ عضویت",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "نقش",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "کاربر",
"organizationProfile.membersPage.detailsTitle__emptyRow": "عضوی برای نمایش وجود ندارد",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "با اتصال یک دامنه ایمیل به سازمان خود، کاربران را دعوت کنید. هر کسی که با دامنه ایمیل مطابقت داشته باشد، می‌تواند در هر زمان به سازمان بپیوندد.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "دعوت‌نامه‌های خودکار",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "مدیریت دامنه‌های تأیید شده",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "دعوت‌نامه‌ای برای نمایش وجود ندارد",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "لغو دعوت‌نامه",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "تاریخ دعوت",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "کاربرانی که با دامنه ایمیل مطابقت دارند، پیشنهاد عضویت در سازمان شما را مشاهده خواهند کرد.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "پیشنهادهای خودکار",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "مدیریت دامنه‌های تأیید شده",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "تأیید",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "رد",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "درخواست دسترسی",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "درخواستی برای نمایش وجود ندارد",
"organizationProfile.membersPage.start.headerTitle__invitations": "دعوت‌نامه‌ها",
"organizationProfile.membersPage.start.headerTitle__members": "اعضا",
"organizationProfile.membersPage.start.headerTitle__requests": "درخواست‌ها",
"organizationProfile.navbar.description": "مدیریت سازمان شما.",
"organizationProfile.navbar.general": "عمومی",
"organizationProfile.navbar.members": "اعضا",
"organizationProfile.navbar.title": "سازمان",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "برای ادامه، عبارت «{{organizationName}}» را در زیر وارد کنید.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "آیا مطمئن هستید که می‌خواهید این سازمان را حذف کنید؟",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "این اقدام دائمی و غیرقابل بازگشت است.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "سازمان با موفقیت حذف شد.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "حذف سازمان",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "برای ادامه، عبارت «{{organizationName}}» را در زیر وارد کنید.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "آیا مطمئن هستید که می‌خواهید این سازمان را ترک کنید؟ با این کار دسترسی شما به این سازمان و برنامه‌های آن از بین می‌رود.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "این اقدام دائمی و غیرقابل بازگشت است.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "شما سازمان را ترک کردید.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "ترک سازمان",
"organizationProfile.profilePage.dangerSection.title": "خطر",
"organizationProfile.profilePage.domainSection.menuAction__manage": "مدیریت",
"organizationProfile.profilePage.domainSection.menuAction__remove": "حذف",
"organizationProfile.profilePage.domainSection.menuAction__verify": "تأیید",
"organizationProfile.profilePage.domainSection.primaryButton": "افزودن دامنه",
"organizationProfile.profilePage.domainSection.subtitle": "به کاربران اجازه دهید بر اساس دامنه ایمیل تأییدشده، به‌طور خودکار به سازمان بپیوندند یا درخواست عضویت دهند.",
"organizationProfile.profilePage.domainSection.title": "دامنه‌های تأییدشده",
"organizationProfile.profilePage.successMessage": "سازمان با موفقیت به‌روزرسانی شد.",
"organizationProfile.profilePage.title": "به‌روزرسانی پروفایل",
"organizationProfile.removeDomainPage.messageLine1": "دامنه ایمیل {{domain}} حذف خواهد شد.",
"organizationProfile.removeDomainPage.messageLine2": "پس از این، کاربران نمی‌توانند به‌طور خودکار به سازمان بپیوندند.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} با موفقیت حذف شد.",
"organizationProfile.removeDomainPage.title": "حذف دامنه",
"organizationProfile.start.headerTitle__general": "عمومی",
"organizationProfile.start.headerTitle__members": "اعضا",
"organizationProfile.start.profileSection.primaryButton": "به‌روزرسانی پروفایل",
"organizationProfile.start.profileSection.title": "پروفایل سازمان",
"organizationProfile.start.profileSection.uploadAction__title": "لوگو",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "حذف این دامنه بر کاربران دعوت‌شده تأثیر خواهد گذاشت.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "حذف دامنه",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "این دامنه را از دامنه‌های تأییدشده خود حذف کنید",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "حذف دامنه",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "کاربران هنگام ثبت‌نام به‌طور خودکار دعوت می‌شوند و می‌توانند در هر زمان به سازمان بپیوندند.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "دعوت‌نامه‌های خودکار",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "به کاربران پیشنهاد داده می‌شود که درخواست عضویت دهند، اما باید توسط مدیر تأیید شوند تا بتوانند به سازمان بپیوندند.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "پیشنهادهای خودکار",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "تغییر حالت عضویت فقط بر کاربران جدید تأثیر خواهد گذاشت.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "دعوت‌نامه‌های در انتظار ارسال‌شده به کاربران: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "پیشنهادهای در انتظار ارسال‌شده به کاربران: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "کاربران فقط به‌صورت دستی می‌توانند به سازمان دعوت شوند.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "بدون عضویت خودکار",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "نحوه عضویت کاربران از این دامنه در سازمان را انتخاب کنید.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "خطر",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "گزینه‌های عضویت",
"organizationProfile.verifiedDomainPage.subtitle": "دامنه {{domain}} اکنون تأیید شده است. برای ادامه، حالت عضویت را انتخاب کنید.",
"organizationProfile.verifiedDomainPage.title": "به‌روزرسانی {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "کد تأیید ارسال‌شده به آدرس ایمیل خود را وارد کنید",
"organizationProfile.verifyDomainPage.formTitle": "کد تأیید",
"organizationProfile.verifyDomainPage.resendButton": "کدی دریافت نکردید؟ ارسال مجدد",
"organizationProfile.verifyDomainPage.subtitle": "دامنه {{domainName}} باید از طریق ایمیل تأیید شود.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "کد تأیید به {{emailAddress}} ارسال شد. برای ادامه، کد را وارد کنید.",
"organizationProfile.verifyDomainPage.title": "تأیید دامنه",
"organizationSwitcher.action__createOrganization": "ایجاد سازمان",
"organizationSwitcher.action__invitationAccept": "پیوستن",
"organizationSwitcher.action__manageOrganization": "مدیریت",
"organizationSwitcher.action__suggestionsAccept": "درخواست عضویت",
"organizationSwitcher.notSelected": "هیچ سازمانی انتخاب نشده است",
"organizationSwitcher.personalWorkspace": "حساب شخصی",
"organizationSwitcher.suggestionsAcceptedLabel": "در انتظار تأیید",
"paginationButton__next": "بعدی",
"paginationButton__previous": "قبلی",
"paginationRowText__displaying": "نمایش",
"paginationRowText__of": "از",
"signIn.accountSwitcher.action__addAccount": "افزودن حساب",
"signIn.accountSwitcher.action__signOutAll": "خروج از همه حساب‌ها",
"signIn.accountSwitcher.subtitle": "حسابی را که می‌خواهید با آن ادامه دهید انتخاب کنید.",
"signIn.accountSwitcher.title": "انتخاب حساب",
"signIn.alternativeMethods.actionLink": "دریافت کمک",
"signIn.alternativeMethods.actionText": "هیچ‌کدام از این‌ها را ندارید؟",
"signIn.alternativeMethods.blockButton__backupCode": "استفاده از کد پشتیبان",
"signIn.alternativeMethods.blockButton__emailCode": "ارسال کد به ایمیل {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "ارسال لینک به ایمیل {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "ورود با کلید عبور",
"signIn.alternativeMethods.blockButton__password": "ورود با گذرواژه",
"signIn.alternativeMethods.blockButton__phoneCode": "ارسال کد پیامکی به {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "استفاده از اپلیکیشن احراز هویت",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "ارسال ایمیل به پشتیبانی",
"signIn.alternativeMethods.getHelp.content": "اگر در ورود به حساب خود با مشکلی مواجه هستید، با ما تماس بگیرید تا در اسرع وقت دسترسی شما را بازیابی کنیم.",
"signIn.alternativeMethods.getHelp.title": "دریافت کمک",
"signIn.alternativeMethods.subtitle": "مشکلی دارید؟ می‌توانید از هر یک از روش‌های زیر برای ورود استفاده کنید.",
"signIn.alternativeMethods.title": "استفاده از روش دیگر",
"signIn.backupCodeMfa.subtitle": "کد پشتیبان همان کدی است که هنگام فعال‌سازی احراز هویت دو مرحله‌ای دریافت کرده‌اید.",
"signIn.backupCodeMfa.title": "وارد کردن کد پشتیبان",
"signIn.emailCode.formTitle": "کد تأیید",
"signIn.emailCode.resendButton": "کدی دریافت نکردید؟ ارسال مجدد",
"signIn.emailCode.subtitle": "برای ادامه به {{applicationName}}",
"signIn.emailCode.title": "ایمیل خود را بررسی کنید",
"signIn.emailLink.expired.subtitle": "برای ادامه به تب اصلی بازگردید.",
"signIn.emailLink.expired.title": "لینک تأیید منقضی شده است",
"signIn.emailLink.failed.subtitle": "برای ادامه به تب اصلی بازگردید.",
"signIn.emailLink.failed.title": "لینک تأیید نامعتبر است",
"signIn.emailLink.formSubtitle": "از لینک تأییدی که به ایمیل شما ارسال شده استفاده کنید",
"signIn.emailLink.formTitle": "لینک تأیید",
"signIn.emailLink.loading.subtitle": "به‌زودی هدایت خواهید شد",
"signIn.emailLink.loading.title": "در حال ورود...",
"signIn.emailLink.resendButton": "لینکی دریافت نکردید؟ ارسال مجدد",
"signIn.emailLink.subtitle": "برای ادامه به {{applicationName}}",
"signIn.emailLink.title": "ایمیل خود را بررسی کنید",
"signIn.emailLink.unusedTab.title": "می‌توانید این تب را ببندید",
"signIn.emailLink.verified.subtitle": "به‌زودی هدایت خواهید شد",
"signIn.emailLink.verified.title": "با موفقیت وارد شدید",
"signIn.emailLink.verifiedSwitchTab.subtitle": "برای ادامه به تب اصلی بازگردید",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "برای ادامه به تب جدید بازگردید",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "ورود در تب دیگر انجام شد",
"signIn.forgotPassword.formTitle": "کد بازنشانی گذرواژه",
"signIn.forgotPassword.resendButton": "کدی دریافت نکردید؟ ارسال مجدد",
"signIn.forgotPassword.subtitle": "برای بازنشانی گذرواژه خود",
"signIn.forgotPassword.subtitle_email": "ابتدا کدی را که به ایمیل شما ارسال شده وارد کنید",
"signIn.forgotPassword.subtitle_phone": "ابتدا کدی را که به تلفن شما ارسال شده وارد کنید",
"signIn.forgotPassword.title": "بازنشانی گذرواژه",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "بازنشانی گذرواژه",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "یا با روش دیگری وارد شوید",
"signIn.forgotPasswordAlternativeMethods.title": "گذرواژه را فراموش کرده‌اید؟",
"signIn.noAvailableMethods.message": "امکان ورود وجود ندارد. هیچ روش احراز هویتی در دسترس نیست.",
"signIn.noAvailableMethods.subtitle": "خطایی رخ داده است",
"signIn.noAvailableMethods.title": "ورود ممکن نیست",
"signIn.passkey.subtitle": "استفاده از کلید عبور تأیید می‌کند که شما هستید. ممکن است دستگاه شما اثر انگشت، چهره یا قفل صفحه را درخواست کند.",
"signIn.passkey.title": "استفاده از کلید عبور",
"signIn.password.actionLink": "استفاده از روش دیگر",
"signIn.password.subtitle": "گذرواژه مرتبط با حساب خود را وارد کنید",
"signIn.password.title": "گذرواژه خود را وارد کنید",
"signIn.passwordPwned.title": "گذرواژه به خطر افتاده است",
"signIn.phoneCode.formTitle": "کد تأیید",
"signIn.phoneCode.resendButton": "کدی دریافت نکردید؟ ارسال مجدد",
"signIn.phoneCode.subtitle": "برای ادامه به {{applicationName}}",
"signIn.phoneCode.title": "تلفن خود را بررسی کنید",
"signIn.phoneCodeMfa.formTitle": "کد تأیید",
"signIn.phoneCodeMfa.resendButton": "کدی دریافت نکردید؟ ارسال مجدد",
"signIn.phoneCodeMfa.subtitle": "برای ادامه، لطفاً کدی را که به تلفن شما ارسال شده وارد کنید",
"signIn.phoneCodeMfa.title": "تلفن خود را بررسی کنید",
"signIn.resetPassword.formButtonPrimary": "بازنشانی گذرواژه",
"signIn.resetPassword.requiredMessage": "به دلایل امنیتی، بازنشانی گذرواژه الزامی است.",
"signIn.resetPassword.successMessage": "گذرواژه شما با موفقیت تغییر یافت. در حال ورود، لطفاً صبر کنید.",
"signIn.resetPassword.title": "تنظیم گذرواژه جدید",
"signIn.resetPasswordMfa.detailsLabel": "قبل از بازنشانی گذرواژه، باید هویت شما تأیید شود.",
"signIn.start.actionLink": "ثبت‌نام",
"signIn.start.actionLink__use_email": "استفاده از ایمیل",
"signIn.start.actionLink__use_email_username": "استفاده از ایمیل یا نام کاربری",
"signIn.start.actionLink__use_passkey": "استفاده از کلید عبور",
"signIn.start.actionLink__use_phone": "استفاده از تلفن",
"signIn.start.actionLink__use_username": "استفاده از نام کاربری",
"signIn.start.actionText": "حساب کاربری ندارید؟",
"signIn.start.subtitle": "خوش آمدید! لطفاً برای ادامه وارد شوید",
"signIn.start.title": "ورود به {{applicationName}}",
"signIn.totpMfa.formTitle": "کد تأیید",
"signIn.totpMfa.subtitle": "برای ادامه، لطفاً کدی را که توسط اپلیکیشن احراز هویت شما تولید شده وارد کنید",
"signIn.totpMfa.title": "احراز هویت دو مرحله‌ای",
"signInEnterPasswordTitle": "گذرواژه خود را وارد کنید",
"signUp.continue.actionLink": "ورود",
"signUp.continue.actionText": "قبلاً حساب دارید؟",
"signUp.continue.subtitle": "لطفاً اطلاعات باقی‌مانده را برای ادامه تکمیل کنید.",
"signUp.continue.title": "تکمیل اطلاعات",
"signUp.emailCode.formSubtitle": "کد تأیید ارسال‌شده به ایمیل خود را وارد کنید",
"signUp.emailCode.formTitle": "کد تأیید",
"signUp.emailCode.resendButton": "کدی دریافت نکردید؟ ارسال مجدد",
"signUp.emailCode.subtitle": "کد تأیید ارسال‌شده به ایمیل خود را وارد کنید",
"signUp.emailCode.title": "تأیید ایمیل",
"signUp.emailLink.formSubtitle": "از لینک تأییدی که به ایمیل شما ارسال شده استفاده کنید",
"signUp.emailLink.formTitle": "لینک تأیید",
"signUp.emailLink.loading.title": "در حال ثبت‌نام...",
"signUp.emailLink.resendButton": "لینکی دریافت نکردید؟ ارسال مجدد",
"signUp.emailLink.subtitle": "برای ادامه به {{applicationName}}",
"signUp.emailLink.title": "تأیید ایمیل",
"signUp.emailLink.verified.title": "ثبت‌نام با موفقیت انجام شد",
"signUp.emailLink.verifiedSwitchTab.subtitle": "برای ادامه به تب جدید بازگردید",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "برای ادامه به تب قبلی بازگردید",
"signUp.emailLink.verifiedSwitchTab.title": "ایمیل با موفقیت تأیید شد",
"signUp.phoneCode.formSubtitle": "کد تأیید ارسال‌شده به شماره تلفن خود را وارد کنید",
"signUp.phoneCode.formTitle": "کد تأیید",
"signUp.phoneCode.resendButton": "کدی دریافت نکردید؟ ارسال مجدد",
"signUp.phoneCode.subtitle": "کد تأیید ارسال‌شده به تلفن خود را وارد کنید",
"signUp.phoneCode.title": "تأیید تلفن",
"signUp.start.actionLink": "ورود",
"signUp.start.actionText": "قبلاً حساب دارید؟",
"signUp.start.subtitle": "خوش آمدید! لطفاً اطلاعات را برای شروع وارد کنید.",
"signUp.start.title": "ایجاد حساب کاربری",
"socialButtonsBlockButton": "ادامه با {{provider|titleize}}",
"unstable__errors.captcha_invalid": "ثبت‌نام ناموفق بود به دلیل عدم تأیید اعتبار امنیتی. لطفاً صفحه را بازنشانی کرده و دوباره تلاش کنید یا برای دریافت کمک بیشتر با پشتیبانی تماس بگیرید.",
"unstable__errors.captcha_unavailable": "ثبت‌نام ناموفق بود به دلیل عدم تأیید ربات. لطفاً صفحه را بازنشانی کرده و دوباره تلاش کنید یا برای دریافت کمک بیشتر با پشتیبانی تماس بگیرید.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "این آدرس ایمیل قبلاً استفاده شده است. لطفاً آدرس دیگری را امتحان کنید.",
"unstable__errors.form_identifier_exists__phone_number": "این شماره تلفن قبلاً استفاده شده است. لطفاً شماره دیگری را امتحان کنید.",
"unstable__errors.form_identifier_exists__username": "این نام کاربری قبلاً استفاده شده است. لطفاً نام دیگری را امتحان کنید.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "آدرس ایمیل باید معتبر باشد.",
"unstable__errors.form_param_format_invalid__phone_number": "شماره تلفن باید در قالب بین‌المللی معتبر باشد.",
"unstable__errors.form_param_max_length_exceeded__first_name": "نام نباید بیش از ۲۵۶ کاراکتر باشد.",
"unstable__errors.form_param_max_length_exceeded__last_name": "نام خانوادگی نباید بیش از ۲۵۶ کاراکتر باشد.",
"unstable__errors.form_param_max_length_exceeded__name": "نام نباید بیش از ۲۵۶ کاراکتر باشد.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "رمز عبور شما به اندازه کافی قوی نیست.",
"unstable__errors.form_password_pwned": "این رمز عبور در یک نشت اطلاعاتی یافت شده و قابل استفاده نیست. لطفاً رمز عبور دیگری انتخاب کنید.",
"unstable__errors.form_password_pwned__sign_in": "این رمز عبور در یک نشت اطلاعاتی یافت شده و قابل استفاده نیست. لطفاً رمز عبور خود را بازنشانی کنید.",
"unstable__errors.form_password_size_in_bytes_exceeded": "رمز عبور شما از حداکثر حجم مجاز فراتر رفته است. لطفاً آن را کوتاه‌تر کرده یا برخی از کاراکترهای خاص را حذف کنید.",
"unstable__errors.form_password_validation_failed": "رمز عبور نادرست است",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "شما نمی‌توانید آخرین شناسه خود را حذف کنید.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "یک کلید عبور قبلاً در این دستگاه ثبت شده است.",
"unstable__errors.passkey_not_supported": "کلیدهای عبور در این دستگاه پشتیبانی نمی‌شوند.",
"unstable__errors.passkey_pa_not_supported": "ثبت‌نام نیاز به احراز هویت پلتفرم دارد اما این دستگاه از آن پشتیبانی نمی‌کند.",
"unstable__errors.passkey_registration_cancelled": "ثبت‌نام کلید عبور لغو شد یا زمان آن به پایان رسید.",
"unstable__errors.passkey_retrieval_cancelled": "تأیید کلید عبور لغو شد یا زمان آن به پایان رسید.",
"unstable__errors.passwordComplexity.maximumLength": "کمتر از {{length}} کاراکتر",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} کاراکتر یا بیشتر",
"unstable__errors.passwordComplexity.requireLowercase": "یک حرف کوچک",
"unstable__errors.passwordComplexity.requireNumbers": "یک عدد",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "یک کاراکتر خاص",
"unstable__errors.passwordComplexity.requireUppercase": "یک حرف بزرگ",
"unstable__errors.passwordComplexity.sentencePrefix": "رمز عبور شما باید شامل موارد زیر باشد",
"unstable__errors.phone_number_exists": "این شماره تلفن قبلاً استفاده شده است. لطفاً شماره دیگری را امتحان کنید.",
"unstable__errors.zxcvbn.couldBeStronger": "رمز عبور شما قابل قبول است، اما می‌تواند قوی‌تر باشد. سعی کنید کاراکترهای بیشتری اضافه کنید.",
"unstable__errors.zxcvbn.goodPassword": "رمز عبور شما تمام الزامات لازم را دارد.",
"unstable__errors.zxcvbn.notEnough": "رمز عبور شما به اندازه کافی قوی نیست.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "برخی حروف را بزرگ بنویسید، اما نه همه را.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "کلمات بیشتری اضافه کنید که رایج نباشند.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "از سال‌هایی که با شما مرتبط هستند خودداری کنید.",
"unstable__errors.zxcvbn.suggestions.capitalization": "بیش از یک حرف اول را بزرگ بنویسید.",
"unstable__errors.zxcvbn.suggestions.dates": "از تاریخ‌ها و سال‌هایی که با شما مرتبط هستند خودداری کنید.",
"unstable__errors.zxcvbn.suggestions.l33t": "از جایگزینی‌های قابل پیش‌بینی مانند '@' به جای 'a' خودداری کنید.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "از الگوهای طولانی‌تر صفحه‌کلید استفاده کنید و چند بار جهت تایپ را تغییر دهید.",
"unstable__errors.zxcvbn.suggestions.noNeed": "می‌توانید رمز عبور قوی بدون استفاده از نمادها، اعداد یا حروف بزرگ بسازید.",
"unstable__errors.zxcvbn.suggestions.pwned": "اگر از این رمز عبور در جای دیگری استفاده کرده‌اید، آن را تغییر دهید.",
"unstable__errors.zxcvbn.suggestions.recentYears": "از سال‌های اخیر خودداری کنید.",
"unstable__errors.zxcvbn.suggestions.repeated": "از کلمات و کاراکترهای تکراری خودداری کنید.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "از نوشتن معکوس کلمات رایج خودداری کنید.",
"unstable__errors.zxcvbn.suggestions.sequences": "از توالی‌های رایج کاراکترها خودداری کنید.",
"unstable__errors.zxcvbn.suggestions.useWords": "از چند کلمه استفاده کنید، اما از عبارات رایج پرهیز کنید.",
"unstable__errors.zxcvbn.warnings.common": "این یک رمز عبور رایج است.",
"unstable__errors.zxcvbn.warnings.commonNames": "نام‌ها و نام‌خانوادگی‌های رایج به راحتی قابل حدس هستند.",
"unstable__errors.zxcvbn.warnings.dates": "تاریخ‌ها به راحتی قابل حدس هستند.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "الگوهای تکراری مانند \"abcabcabc\" به راحتی قابل حدس هستند.",
"unstable__errors.zxcvbn.warnings.keyPattern": "الگوهای کوتاه صفحه‌کلید به راحتی قابل حدس هستند.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "نام‌ها یا نام‌خانوادگی‌های تکی به راحتی قابل حدس هستند.",
"unstable__errors.zxcvbn.warnings.pwned": "رمز عبور شما در یک نشت اطلاعاتی در اینترنت افشا شده است.",
"unstable__errors.zxcvbn.warnings.recentYears": "سال‌های اخیر به راحتی قابل حدس هستند.",
"unstable__errors.zxcvbn.warnings.sequences": "توالی‌های رایج مانند \"abc\" به راحتی قابل حدس هستند.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "این رمز عبور شبیه به رمزهای رایج است.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "کاراکترهای تکراری مانند \"aaa\" به راحتی قابل حدس هستند.",
"unstable__errors.zxcvbn.warnings.straightRow": "ردیف‌های مستقیم کلیدها روی صفحه‌کلید به راحتی قابل حدس هستند.",
"unstable__errors.zxcvbn.warnings.topHundred": "این رمز عبور بسیار پرکاربرد است.",
"unstable__errors.zxcvbn.warnings.topTen": "این رمز عبور یکی از پرکاربردترین‌هاست.",
"unstable__errors.zxcvbn.warnings.userInputs": "نباید هیچ اطلاعات شخصی یا مرتبط با صفحه وارد شود.",
"unstable__errors.zxcvbn.warnings.wordByItself": "کلمات تکی به راحتی قابل حدس هستند.",
"userButton.action__addAccount": "افزودن حساب",
"userButton.action__manageAccount": "مدیریت حساب",
"userButton.action__signOut": "خروج",
"userButton.action__signOutAll": "خروج از همه حساب‌ها",
"userProfile.backupCodePage.actionLabel__copied": "کپی شد!",
"userProfile.backupCodePage.actionLabel__copy": "کپی همه",
"userProfile.backupCodePage.actionLabel__download": "دانلود .txt",
"userProfile.backupCodePage.actionLabel__print": "چاپ",
"userProfile.backupCodePage.infoText1": "کدهای پشتیبان برای این حساب فعال خواهند شد.",
"userProfile.backupCodePage.infoText2": "کدهای پشتیبان را محرمانه نگه دارید و در مکانی امن ذخیره کنید. در صورت مشکوک بودن به افشای آن‌ها، می‌توانید کدهای پشتیبان جدید تولید کنید.",
"userProfile.backupCodePage.subtitle__codelist": "آن‌ها را در مکانی امن نگه دارید و محرمانه بمانند.",
"userProfile.backupCodePage.successMessage": "کدهای پشتیبان اکنون فعال شده‌اند. در صورت از دست دادن دسترسی به دستگاه احراز هویت، می‌توانید با یکی از این کدها وارد حساب خود شوید. هر کد فقط یک‌بار قابل استفاده است.",
"userProfile.backupCodePage.successSubtitle": "در صورت از دست دادن دسترسی به دستگاه احراز هویت، می‌توانید با یکی از این کدها وارد حساب خود شوید.",
"userProfile.backupCodePage.title": "افزودن تأیید با کد پشتیبان",
"userProfile.backupCodePage.title__codelist": "کدهای پشتیبان",
"userProfile.connectedAccountPage.formHint": "یک ارائه‌دهنده برای اتصال حساب خود انتخاب کنید.",
"userProfile.connectedAccountPage.formHint__noAccounts": "هیچ ارائه‌دهنده حساب خارجی در دسترس نیست.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} از این حساب حذف خواهد شد.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "دیگر نمی‌توانید از این حساب متصل استفاده کنید و ویژگی‌های وابسته نیز کار نخواهند کرد.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} از حساب شما حذف شد.",
"userProfile.connectedAccountPage.removeResource.title": "حذف حساب متصل",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "ارائه‌دهنده به حساب شما افزوده شد.",
"userProfile.connectedAccountPage.title": "افزودن حساب متصل",
"userProfile.deletePage.actionDescription": "برای ادامه، عبارت «Delete account» را وارد کنید.",
"userProfile.deletePage.confirm": "حذف حساب",
"userProfile.deletePage.messageLine1": "آیا مطمئن هستید که می‌خواهید حساب خود را حذف کنید؟",
"userProfile.deletePage.messageLine2": "این اقدام دائمی و غیرقابل بازگشت است.",
"userProfile.deletePage.title": "حذف حساب",
"userProfile.emailAddressPage.emailCode.formHint": "یک ایمیل حاوی کد تأیید به این آدرس ارسال خواهد شد.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "کد تأیید ارسال‌شده به {{identifier}} را وارد کنید",
"userProfile.emailAddressPage.emailCode.formTitle": "کد تأیید",
"userProfile.emailAddressPage.emailCode.resendButton": "کدی دریافت نکردید؟ ارسال مجدد",
"userProfile.emailAddressPage.emailCode.successMessage": "ایمیل {{identifier}} به حساب شما افزوده شد.",
"userProfile.emailAddressPage.emailLink.formHint": "یک ایمیل حاوی لینک تأیید به این آدرس ارسال خواهد شد.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "روی لینک تأیید در ایمیل ارسال‌شده به {{identifier}} کلیک کنید",
"userProfile.emailAddressPage.emailLink.formTitle": "لینک تأیید",
"userProfile.emailAddressPage.emailLink.resendButton": "لینکی دریافت نکردید؟ ارسال مجدد",
"userProfile.emailAddressPage.emailLink.successMessage": "ایمیل {{identifier}} به حساب شما افزوده شد.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} از این حساب حذف خواهد شد.",
"userProfile.emailAddressPage.removeResource.messageLine2": "دیگر نمی‌توانید با استفاده از این ایمیل وارد شوید.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} از حساب شما حذف شد.",
"userProfile.emailAddressPage.removeResource.title": "حذف آدرس ایمیل",
"userProfile.emailAddressPage.title": "افزودن آدرس ایمیل",
"userProfile.emailAddressPage.verifyTitle": "تأیید آدرس ایمیل",
"userProfile.formButtonPrimary__add": "افزودن",
"userProfile.formButtonPrimary__continue": "ادامه",
"userProfile.formButtonPrimary__finish": "پایان",
"userProfile.formButtonPrimary__remove": "حذف",
"userProfile.formButtonPrimary__save": "ذخیره",
"userProfile.formButtonReset": "لغو",
"userProfile.mfaPage.formHint": "یک روش برای افزودن انتخاب کنید.",
"userProfile.mfaPage.title": "افزودن تأیید دومرحله‌ای",
"userProfile.mfaPhoneCodePage.backButton": "استفاده از شماره موجود",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "افزودن شماره تلفن",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} دیگر کدهای تأیید دریافت نخواهد کرد.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "ممکن است امنیت حساب شما کاهش یابد. آیا مطمئن هستید که می‌خواهید ادامه دهید؟",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "تأیید دومرحله‌ای با کد پیامک برای {{mfaPhoneCode}} حذف شد.",
"userProfile.mfaPhoneCodePage.removeResource.title": "حذف تأیید دومرحله‌ای",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "یک شماره موجود را برای ثبت‌نام در تأیید دومرحله‌ای با پیامک انتخاب کنید یا شماره جدیدی اضافه کنید.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "هیچ شماره‌ای برای ثبت‌نام در تأیید دومرحله‌ای با پیامک در دسترس نیست، لطفاً شماره جدیدی اضافه کنید.",
"userProfile.mfaPhoneCodePage.successMessage1": "در هنگام ورود، باید کدی که به این شماره ارسال می‌شود را وارد کنید.",
"userProfile.mfaPhoneCodePage.successMessage2": "این کدهای پشتیبان را ذخیره کرده و در مکانی امن نگه دارید. در صورت از دست دادن دسترسی به دستگاه احراز هویت، می‌توانید از آن‌ها استفاده کنید.",
"userProfile.mfaPhoneCodePage.successTitle": "تأیید با کد پیامک فعال شد",
"userProfile.mfaPhoneCodePage.title": "افزودن تأیید با کد پیامک",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "اسکن کد QR به‌جای آن",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "نمی‌توانید کد QR را اسکن کنید؟",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "یک روش ورود جدید در برنامه احراز هویت خود تنظیم کرده و کد QR زیر را اسکن کنید تا به حساب شما متصل شود.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "یک روش ورود جدید در برنامه احراز هویت خود تنظیم کرده و کلید زیر را وارد کنید.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "مطمئن شوید که رمزهای یک‌بار مصرف یا مبتنی بر زمان فعال هستند، سپس اتصال را کامل کنید.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "همچنین، اگر برنامه شما از URIهای TOTP پشتیبانی می‌کند، می‌توانید URI کامل را کپی کنید.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "کدهای تأیید از این برنامه احراز هویت دیگر مورد نیاز نخواهند بود.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "ممکن است امنیت حساب شما کاهش یابد. آیا مطمئن هستید که می‌خواهید ادامه دهید؟",
"userProfile.mfaTOTPPage.removeResource.successMessage": "تأیید دومرحله‌ای از طریق برنامه احراز هویت حذف شد.",
"userProfile.mfaTOTPPage.removeResource.title": "حذف تأیید دومرحله‌ای",
"userProfile.mfaTOTPPage.successMessage": "تأیید دومرحله‌ای اکنون فعال است. هنگام ورود، باید کدی از این برنامه احراز هویت وارد کنید.",
"userProfile.mfaTOTPPage.title": "افزودن برنامه احراز هویت",
"userProfile.mfaTOTPPage.verifySubtitle": "کد تأیید تولیدشده توسط برنامه احراز هویت خود را وارد کنید",
"userProfile.mfaTOTPPage.verifyTitle": "کد تأیید",
"userProfile.mobileButton__menu": "منو",
"userProfile.navbar.account": "پروفایل",
"userProfile.navbar.description": "اطلاعات حساب خود را مدیریت کنید.",
"userProfile.navbar.security": "امنیت",
"userProfile.navbar.title": "حساب",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} از این حساب حذف خواهد شد.",
"userProfile.passkeyScreen.removeResource.title": "حذف کلید عبور",
"userProfile.passkeyScreen.subtitle__rename": "می‌توانید نام کلید عبور را تغییر دهید تا راحت‌تر آن را پیدا کنید.",
"userProfile.passkeyScreen.title__rename": "تغییر نام کلید عبور",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "توصیه می‌شود از تمام دستگاه‌های دیگر که ممکن است از رمز عبور قدیمی شما استفاده کرده باشند خارج شوید.",
"userProfile.passwordPage.readonly": "در حال حاضر نمی‌توانید رمز عبور خود را ویرایش کنید زیرا فقط از طریق اتصال سازمانی می‌توانید وارد شوید.",
"userProfile.passwordPage.successMessage__set": "رمز عبور شما تنظیم شد.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "تمام دستگاه‌های دیگر خارج شدند.",
"userProfile.passwordPage.successMessage__update": "رمز عبور شما به‌روزرسانی شد.",
"userProfile.passwordPage.title__set": "تنظیم رمز عبور",
"userProfile.passwordPage.title__update": "به‌روزرسانی رمز عبور",
"userProfile.phoneNumberPage.infoText": "یک پیامک حاوی کد تأیید به این شماره تلفن ارسال خواهد شد. ممکن است هزینه‌هایی برای پیام و داده اعمال شود.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} از این حساب حذف خواهد شد.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "دیگر نمی‌توانید با استفاده از این شماره تلفن وارد شوید.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} از حساب شما حذف شد.",
"userProfile.phoneNumberPage.removeResource.title": "حذف شماره تلفن",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} به حساب شما افزوده شد.",
"userProfile.phoneNumberPage.title": "افزودن شماره تلفن",
"userProfile.phoneNumberPage.verifySubtitle": "کد تأیید ارسال‌شده به {{identifier}} را وارد کنید.",
"userProfile.phoneNumberPage.verifyTitle": "تأیید شماره تلفن",
"userProfile.profilePage.fileDropAreaHint": "اندازه پیشنهادی ۱:۱، حداکثر ۱۰ مگابایت.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "حذف",
"userProfile.profilePage.imageFormSubtitle": "بارگذاری",
"userProfile.profilePage.imageFormTitle": "تصویر پروفایل",
"userProfile.profilePage.readonly": "اطلاعات پروفایل شما توسط اتصال سازمانی ارائه شده و قابل ویرایش نیست.",
"userProfile.profilePage.successMessage": "پروفایل شما به‌روزرسانی شد.",
"userProfile.profilePage.title": "به‌روزرسانی پروفایل",
"userProfile.start.activeDevicesSection.destructiveAction": "خروج از دستگاه",
"userProfile.start.activeDevicesSection.title": "دستگاه‌های فعال",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "دوباره تلاش کنید",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "اکنون مجوز دهید",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "حذف",
"userProfile.start.connectedAccountsSection.primaryButton": "اتصال حساب",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "سطوح دسترسی مورد نیاز به‌روزرسانی شده‌اند و ممکن است عملکرد محدودی را تجربه کنید. لطفاً برای جلوگیری از بروز مشکل، این برنامه را مجدداً مجاز کنید.",
"userProfile.start.connectedAccountsSection.title": "حساب‌های متصل",
"userProfile.start.dangerSection.deleteAccountButton": "حذف حساب",
"userProfile.start.dangerSection.title": "حذف حساب",
"userProfile.start.emailAddressesSection.destructiveAction": "حذف ایمیل",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "تنظیم به عنوان اصلی",
"userProfile.start.emailAddressesSection.detailsAction__primary": "تکمیل تأیید",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "تأیید",
"userProfile.start.emailAddressesSection.primaryButton": "افزودن آدرس ایمیل",
"userProfile.start.emailAddressesSection.title": "آدرس‌های ایمیل",
"userProfile.start.enterpriseAccountsSection.title": "حساب‌های سازمانی",
"userProfile.start.headerTitle__account": "جزئیات پروفایل",
"userProfile.start.headerTitle__security": "امنیت",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "تولید مجدد",
"userProfile.start.mfaSection.backupCodes.headerTitle": "کدهای پشتیبان",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "مجموعه‌ای جدید از کدهای پشتیبان امن دریافت کنید. کدهای قبلی حذف شده و قابل استفاده نخواهند بود.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "تولید مجدد کدهای پشتیبان",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "تنظیم به عنوان پیش‌فرض",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "حذف",
"userProfile.start.mfaSection.primaryButton": "افزودن تأیید دومرحله‌ای",
"userProfile.start.mfaSection.title": "تأیید دومرحله‌ای",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "حذف",
"userProfile.start.mfaSection.totp.headerTitle": "برنامه احراز هویت",
"userProfile.start.passkeysSection.menuAction__destructive": "حذف",
"userProfile.start.passkeysSection.menuAction__rename": "تغییر نام",
"userProfile.start.passkeysSection.title": "کلیدهای عبور",
"userProfile.start.passwordSection.primaryButton__setPassword": "تنظیم رمز عبور",
"userProfile.start.passwordSection.primaryButton__updatePassword": "به‌روزرسانی رمز عبور",
"userProfile.start.passwordSection.title": "رمز عبور",
"userProfile.start.phoneNumbersSection.destructiveAction": "حذف شماره تلفن",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "تنظیم به عنوان اصلی",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "تکمیل تأیید",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "تأیید شماره تلفن",
"userProfile.start.phoneNumbersSection.primaryButton": "افزودن شماره تلفن",
"userProfile.start.phoneNumbersSection.title": "شماره‌های تلفن",
"userProfile.start.profileSection.primaryButton": "به‌روزرسانی پروفایل",
"userProfile.start.profileSection.title": "پروفایل",
"userProfile.start.usernameSection.primaryButton__setUsername": "تنظیم نام کاربری",
"userProfile.start.usernameSection.primaryButton__updateUsername": "به‌روزرسانی نام کاربری",
"userProfile.start.usernameSection.title": "نام کاربری",
"userProfile.start.web3WalletsSection.destructiveAction": "حذف کیف پول",
"userProfile.start.web3WalletsSection.primaryButton": "کیف پول‌های Web3",
"userProfile.start.web3WalletsSection.title": "کیف پول‌های Web3",
"userProfile.usernamePage.successMessage": "نام کاربری شما به‌روزرسانی شد.",
"userProfile.usernamePage.title__set": "تنظیم نام کاربری",
"userProfile.usernamePage.title__update": "به‌روزرسانی نام کاربری",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} از این حساب حذف خواهد شد.",
"userProfile.web3WalletPage.removeResource.messageLine2": "دیگر نمی‌توانید با استفاده از این کیف پول Web3 وارد شوید.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} از حساب شما حذف شد.",
"userProfile.web3WalletPage.removeResource.title": "حذف کیف پول Web3",
"userProfile.web3WalletPage.subtitle__availableWallets": "یک کیف پول Web3 برای اتصال به حساب خود انتخاب کنید.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "هیچ کیف پول Web3 در دسترس نیست.",
"userProfile.web3WalletPage.successMessage": "کیف پول به حساب شما افزوده شد.",
"userProfile.web3WalletPage.title": "افزودن کیف پول Web3"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "ادامه جلسه",
"clerkAuth.loginSuccess.desc": "{{greeting}}، خوشحالیم که دوباره در خدمت شما هستیم. بیایید از جایی که متوقف شدیم ادامه دهیم.",
"clerkAuth.loginSuccess.title": "خوش آمدید، {{nickName}}",
"error.backHome": "بازگشت به خانه",
"error.desc": "بعداً دوباره امتحان کنید یا به دنیای آشنا بازگردید.",
"error.retry": "بارگذاری مجدد",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "متأسفیم، سهمیه این کلید به پایان رسیده است. لطفاً موجودی حساب خود را بررسی کرده یا پس از افزایش سهمیه دوباره تلاش کنید.",
"response.InvalidAccessCode": "کد دسترسی نامعتبر یا خالی است. لطفاً کد صحیح را وارد کرده یا یک کلید API سفارشی اضافه کنید.",
"response.InvalidBedrockCredentials": "احراز هویت Bedrock ناموفق بود. لطفاً AccessKeyId/SecretAccessKey را بررسی کرده و دوباره تلاش کنید.",
"response.InvalidClerkUser": "متأسفیم، شما وارد نشده‌اید. لطفاً وارد شوید یا یک حساب کاربری ایجاد کنید.",
"response.InvalidComfyUIArgs": "پیکربندی ComfyUI نامعتبر است. لطفاً تنظیمات را بررسی کرده و دوباره تلاش کنید.",
"response.InvalidGithubToken": "توکن دسترسی شخصی GitHub نادرست یا خالی است. لطفاً آن را بررسی کرده و دوباره تلاش کنید.",
"response.InvalidOllamaArgs": "پیکربندی Ollama نامعتبر است. لطفاً تنظیمات را بررسی کرده و دوباره تلاش کنید.",

View file

@ -1,545 +0,0 @@
{
"backButton": "Retour",
"badge__default": "Par défaut",
"badge__otherImpersonatorDevice": "Autre appareil usurpateur",
"badge__primary": "Principal",
"badge__requiresAction": "Action requise",
"badge__thisDevice": "Cet appareil",
"badge__unverified": "Non vérifié",
"badge__userDevice": "Appareil utilisateur",
"badge__you": "Vous",
"createOrganization.formButtonSubmit": "Créer une organisation",
"createOrganization.invitePage.formButtonReset": "Ignorer",
"createOrganization.title": "Créer une organisation",
"dates.lastDay": "Hier à {{ date | timeString('fr-FR') }}",
"dates.next6Days": "{{ date | weekday('fr-FR','long') }} à {{ date | timeString('fr-FR') }}",
"dates.nextDay": "Demain à {{ date | timeString('fr-FR') }}",
"dates.numeric": "{{ date | numeric('fr-FR') }}",
"dates.previous6Days": "{{ date | weekday('fr-FR','long') }} dernier à {{ date | timeString('fr-FR') }}",
"dates.sameDay": "Aujourdhui à {{ date | timeString('fr-FR') }}",
"dividerText": "ou",
"footerActionLink__useAnotherMethod": "Utiliser une autre méthode",
"footerPageLink__help": "Aide",
"footerPageLink__privacy": "Confidentialité",
"footerPageLink__terms": "Conditions",
"formButtonPrimary": "Continuer",
"formButtonPrimary__verify": "Vérifier",
"formFieldAction__forgotPassword": "Mot de passe oublié ?",
"formFieldError__matchingPasswords": "Les mots de passe correspondent.",
"formFieldError__notMatchingPasswords": "Les mots de passe ne correspondent pas.",
"formFieldError__verificationLinkExpired": "Le lien de vérification a expiré. Veuillez demander un nouveau lien.",
"formFieldHintText__optional": "Optionnel",
"formFieldHintText__slug": "Un identifiant lisible par lhumain qui doit être unique. Il est souvent utilisé dans les URL.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Supprimer le compte",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "exemple@email.com, exemple2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "mon-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Activer les invitations automatiques pour ce domaine",
"formFieldLabel__backupCode": "Code de secours",
"formFieldLabel__confirmDeletion": "Confirmation",
"formFieldLabel__confirmPassword": "Confirmer le mot de passe",
"formFieldLabel__currentPassword": "Mot de passe actuel",
"formFieldLabel__emailAddress": "Adresse e-mail",
"formFieldLabel__emailAddress_username": "Adresse e-mail ou nom dutilisateur",
"formFieldLabel__emailAddresses": "Adresses e-mail",
"formFieldLabel__firstName": "Prénom",
"formFieldLabel__lastName": "Nom",
"formFieldLabel__newPassword": "Nouveau mot de passe",
"formFieldLabel__organizationDomain": "Domaine",
"formFieldLabel__organizationDomainDeletePending": "Supprimer les invitations et suggestions en attente",
"formFieldLabel__organizationDomainEmailAddress": "Adresse e-mail de vérification",
"formFieldLabel__organizationDomainEmailAddressDescription": "Saisissez une adresse e-mail sous ce domaine pour recevoir un code et vérifier ce domaine.",
"formFieldLabel__organizationName": "Nom",
"formFieldLabel__organizationSlug": "Identifiant (slug)",
"formFieldLabel__passkeyName": "Nom de la clé daccès",
"formFieldLabel__password": "Mot de passe",
"formFieldLabel__phoneNumber": "Numéro de téléphone",
"formFieldLabel__role": "Rôle",
"formFieldLabel__signOutOfOtherSessions": "Se déconnecter de tous les autres appareils",
"formFieldLabel__username": "Nom dutilisateur",
"impersonationFab.action__signOut": "Se déconnecter",
"impersonationFab.title": "Connecté en tant que {{identifier}}",
"locale": "fr-FR",
"maintenanceMode": "Nous effectuons actuellement une maintenance, mais ne vous inquiétez pas, cela ne devrait pas prendre plus de quelques minutes.",
"membershipRole__admin": "Administrateur",
"membershipRole__basicMember": "Membre",
"membershipRole__guestMember": "Invité",
"organizationList.action__createOrganization": "Créer une organisation",
"organizationList.action__invitationAccept": "Rejoindre",
"organizationList.action__suggestionsAccept": "Demander à rejoindre",
"organizationList.createOrganization": "Créer une organisation",
"organizationList.invitationAcceptedLabel": "Rejoint",
"organizationList.subtitle": "pour continuer vers {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "En attente dapprobation",
"organizationList.title": "Choisissez un compte",
"organizationList.titleWithoutPersonal": "Choisissez une organisation",
"organizationProfile.badge__automaticInvitation": "Invitations automatiques",
"organizationProfile.badge__automaticSuggestion": "Suggestions automatiques",
"organizationProfile.badge__manualInvitation": "Aucune inscription automatique",
"organizationProfile.badge__unverified": "Non vérifié",
"organizationProfile.createDomainPage.subtitle": "Ajoutez le domaine à vérifier. Les utilisateurs avec une adresse e-mail sur ce domaine peuvent rejoindre automatiquement lorganisation ou demander à la rejoindre.",
"organizationProfile.createDomainPage.title": "Ajouter un domaine",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "Les invitations nont pas pu être envoyées. Il y a déjà des invitations en attente pour les adresses suivantes : {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Envoyer les invitations",
"organizationProfile.invitePage.selectDropdown__role": "Sélectionner un rôle",
"organizationProfile.invitePage.subtitle": "Saisissez ou collez une ou plusieurs adresses e-mail, séparées par des espaces ou des virgules.",
"organizationProfile.invitePage.successMessage": "Invitations envoyées avec succès",
"organizationProfile.invitePage.title": "Inviter de nouveaux membres",
"organizationProfile.membersPage.action__invite": "Inviter",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Supprimer le membre",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Rejoint",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Rôle",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Utilisateur",
"organizationProfile.membersPage.detailsTitle__emptyRow": "Aucun membre à afficher",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Invitez des utilisateurs en connectant un domaine e-mail à votre organisation. Toute personne sinscrivant avec un domaine correspondant pourra rejoindre lorganisation à tout moment.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Invitations automatiques",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Gérer les domaines vérifiés",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Aucune invitation à afficher",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Révoquer linvitation",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Invité",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Les utilisateurs qui sinscrivent avec un domaine e-mail correspondant verront une suggestion pour demander à rejoindre votre organisation.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Suggestions automatiques",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Gérer les domaines vérifiés",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Approuver",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Rejeter",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Accès demandé",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Aucune demande à afficher",
"organizationProfile.membersPage.start.headerTitle__invitations": "Invitations",
"organizationProfile.membersPage.start.headerTitle__members": "Membres",
"organizationProfile.membersPage.start.headerTitle__requests": "Demandes",
"organizationProfile.navbar.description": "Gérez votre organisation.",
"organizationProfile.navbar.general": "Général",
"organizationProfile.navbar.members": "Membres",
"organizationProfile.navbar.title": "Organisation",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Tapez « {{organizationName}} » ci-dessous pour continuer.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Êtes-vous sûr de vouloir supprimer cette organisation ?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Cette action est permanente et irréversible.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Vous avez supprimé l'organisation.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Supprimer l'organisation",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Tapez « {{organizationName}} » ci-dessous pour continuer.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Êtes-vous sûr de vouloir quitter cette organisation ? Vous perdrez l'accès à cette organisation et à ses applications.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Cette action est permanente et irréversible.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Vous avez quitté l'organisation.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Quitter l'organisation",
"organizationProfile.profilePage.dangerSection.title": "Danger",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Gérer",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Supprimer",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Vérifier",
"organizationProfile.profilePage.domainSection.primaryButton": "Ajouter un domaine",
"organizationProfile.profilePage.domainSection.subtitle": "Permettez aux utilisateurs de rejoindre automatiquement l'organisation ou d'en faire la demande en fonction d'un domaine email vérifié.",
"organizationProfile.profilePage.domainSection.title": "Domaines vérifiés",
"organizationProfile.profilePage.successMessage": "L'organisation a été mise à jour.",
"organizationProfile.profilePage.title": "Mettre à jour le profil",
"organizationProfile.removeDomainPage.messageLine1": "Le domaine email {{domain}} sera supprimé.",
"organizationProfile.removeDomainPage.messageLine2": "Les utilisateurs ne pourront plus rejoindre automatiquement l'organisation après cela.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} a été supprimé.",
"organizationProfile.removeDomainPage.title": "Supprimer le domaine",
"organizationProfile.start.headerTitle__general": "Général",
"organizationProfile.start.headerTitle__members": "Membres",
"organizationProfile.start.profileSection.primaryButton": "Mettre à jour le profil",
"organizationProfile.start.profileSection.title": "Profil de l'organisation",
"organizationProfile.start.profileSection.uploadAction__title": "Logo",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "La suppression de ce domaine affectera les utilisateurs invités.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Supprimer le domaine",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Supprimez ce domaine de vos domaines vérifiés",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Supprimer le domaine",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Les utilisateurs sont automatiquement invités à rejoindre l'organisation lors de leur inscription et peuvent la rejoindre à tout moment.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Invitations automatiques",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Les utilisateurs reçoivent une suggestion pour demander à rejoindre, mais doivent être approuvés par un administrateur avant de pouvoir rejoindre l'organisation.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Suggestions automatiques",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Le changement du mode d'inscription n'affectera que les nouveaux utilisateurs.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Invitations en attente envoyées aux utilisateurs : {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Suggestions en attente envoyées aux utilisateurs : {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Les utilisateurs ne peuvent être invités manuellement à rejoindre l'organisation.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Aucune inscription automatique",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Choisissez comment les utilisateurs de ce domaine peuvent rejoindre l'organisation.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Danger",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Options d'inscription",
"organizationProfile.verifiedDomainPage.subtitle": "Le domaine {{domain}} est maintenant vérifié. Continuez en sélectionnant un mode d'inscription.",
"organizationProfile.verifiedDomainPage.title": "Mettre à jour {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "Saisissez le code de vérification envoyé à votre adresse email",
"organizationProfile.verifyDomainPage.formTitle": "Code de vérification",
"organizationProfile.verifyDomainPage.resendButton": "Vous n'avez pas reçu de code ? Renvoyer",
"organizationProfile.verifyDomainPage.subtitle": "Le domaine {{domainName}} doit être vérifié par email.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "Un code de vérification a été envoyé à {{emailAddress}}. Saisissez le code pour continuer.",
"organizationProfile.verifyDomainPage.title": "Vérifier le domaine",
"organizationSwitcher.action__createOrganization": "Créer une organisation",
"organizationSwitcher.action__invitationAccept": "Rejoindre",
"organizationSwitcher.action__manageOrganization": "Gérer",
"organizationSwitcher.action__suggestionsAccept": "Demander à rejoindre",
"organizationSwitcher.notSelected": "Aucune organisation sélectionnée",
"organizationSwitcher.personalWorkspace": "Compte personnel",
"organizationSwitcher.suggestionsAcceptedLabel": "En attente d'approbation",
"paginationButton__next": "Suivant",
"paginationButton__previous": "Précédent",
"paginationRowText__displaying": "Affichage",
"paginationRowText__of": "de",
"signIn.accountSwitcher.action__addAccount": "Ajouter un compte",
"signIn.accountSwitcher.action__signOutAll": "Se déconnecter de tous les comptes",
"signIn.accountSwitcher.subtitle": "Sélectionnez le compte avec lequel vous souhaitez continuer.",
"signIn.accountSwitcher.title": "Choisissez un compte",
"signIn.alternativeMethods.actionLink": "Obtenir de laide",
"signIn.alternativeMethods.actionText": "Vous navez aucun de ces éléments ?",
"signIn.alternativeMethods.blockButton__backupCode": "Utiliser un code de secours",
"signIn.alternativeMethods.blockButton__emailCode": "Envoyer un code par e-mail à {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "Envoyer un lien par e-mail à {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "Se connecter avec votre clé daccès",
"signIn.alternativeMethods.blockButton__password": "Se connecter avec votre mot de passe",
"signIn.alternativeMethods.blockButton__phoneCode": "Envoyer un code SMS à {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "Utiliser votre application dauthentification",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Contacter le support par e-mail",
"signIn.alternativeMethods.getHelp.content": "Si vous rencontrez des difficultés pour vous connecter à votre compte, envoyez-nous un e-mail et nous vous aiderons à rétablir laccès dès que possible.",
"signIn.alternativeMethods.getHelp.title": "Obtenir de laide",
"signIn.alternativeMethods.subtitle": "Des problèmes ? Vous pouvez utiliser lune de ces méthodes pour vous connecter.",
"signIn.alternativeMethods.title": "Utiliser une autre méthode",
"signIn.backupCodeMfa.subtitle": "Votre code de secours est celui que vous avez reçu lors de la configuration de lauthentification à deux facteurs.",
"signIn.backupCodeMfa.title": "Saisir un code de secours",
"signIn.emailCode.formTitle": "Code de vérification",
"signIn.emailCode.resendButton": "Vous navez pas reçu de code ? Renvoyer",
"signIn.emailCode.subtitle": "pour continuer vers {{applicationName}}",
"signIn.emailCode.title": "Vérifiez votre e-mail",
"signIn.emailLink.expired.subtitle": "Revenez à longlet dorigine pour continuer.",
"signIn.emailLink.expired.title": "Ce lien de vérification a expiré",
"signIn.emailLink.failed.subtitle": "Revenez à longlet dorigine pour continuer.",
"signIn.emailLink.failed.title": "Ce lien de vérification est invalide",
"signIn.emailLink.formSubtitle": "Utilisez le lien de vérification envoyé à votre e-mail",
"signIn.emailLink.formTitle": "Lien de vérification",
"signIn.emailLink.loading.subtitle": "Vous allez être redirigé sous peu",
"signIn.emailLink.loading.title": "Connexion en cours...",
"signIn.emailLink.resendButton": "Vous navez pas reçu de lien ? Renvoyer",
"signIn.emailLink.subtitle": "pour continuer vers {{applicationName}}",
"signIn.emailLink.title": "Vérifiez votre e-mail",
"signIn.emailLink.unusedTab.title": "Vous pouvez fermer cet onglet",
"signIn.emailLink.verified.subtitle": "Vous allez être redirigé sous peu",
"signIn.emailLink.verified.title": "Connexion réussie",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Revenez à longlet dorigine pour continuer",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Revenez au nouvel onglet ouvert pour continuer",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Connecté sur un autre onglet",
"signIn.forgotPassword.formTitle": "Code de réinitialisation du mot de passe",
"signIn.forgotPassword.resendButton": "Vous navez pas reçu de code ? Renvoyer",
"signIn.forgotPassword.subtitle": "pour réinitialiser votre mot de passe",
"signIn.forgotPassword.subtitle_email": "Commencez par saisir le code envoyé à votre adresse e-mail",
"signIn.forgotPassword.subtitle_phone": "Commencez par saisir le code envoyé à votre téléphone",
"signIn.forgotPassword.title": "Réinitialiser le mot de passe",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Réinitialiser votre mot de passe",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Ou, connectez-vous avec une autre méthode",
"signIn.forgotPasswordAlternativeMethods.title": "Mot de passe oublié ?",
"signIn.noAvailableMethods.message": "Impossible de poursuivre la connexion. Aucun facteur dauthentification disponible.",
"signIn.noAvailableMethods.subtitle": "Une erreur sest produite",
"signIn.noAvailableMethods.title": "Connexion impossible",
"signIn.passkey.subtitle": "Lutilisation de votre clé daccès confirme votre identité. Votre appareil peut vous demander une empreinte digitale, une reconnaissance faciale ou un code de verrouillage.",
"signIn.passkey.title": "Utiliser votre clé daccès",
"signIn.password.actionLink": "Utiliser une autre méthode",
"signIn.password.subtitle": "Saisissez le mot de passe associé à votre compte",
"signIn.password.title": "Saisissez votre mot de passe",
"signIn.passwordPwned.title": "Mot de passe compromis",
"signIn.phoneCode.formTitle": "Code de vérification",
"signIn.phoneCode.resendButton": "Vous navez pas reçu de code ? Renvoyer",
"signIn.phoneCode.subtitle": "pour continuer vers {{applicationName}}",
"signIn.phoneCode.title": "Vérifiez votre téléphone",
"signIn.phoneCodeMfa.formTitle": "Code de vérification",
"signIn.phoneCodeMfa.resendButton": "Vous navez pas reçu de code ? Renvoyer",
"signIn.phoneCodeMfa.subtitle": "Pour continuer, veuillez saisir le code de vérification envoyé à votre téléphone",
"signIn.phoneCodeMfa.title": "Vérifiez votre téléphone",
"signIn.resetPassword.formButtonPrimary": "Réinitialiser le mot de passe",
"signIn.resetPassword.requiredMessage": "Pour des raisons de sécurité, vous devez réinitialiser votre mot de passe.",
"signIn.resetPassword.successMessage": "Votre mot de passe a été modifié avec succès. Connexion en cours, veuillez patienter.",
"signIn.resetPassword.title": "Définir un nouveau mot de passe",
"signIn.resetPasswordMfa.detailsLabel": "Nous devons vérifier votre identité avant de réinitialiser votre mot de passe.",
"signIn.start.actionLink": "Sinscrire",
"signIn.start.actionLink__use_email": "Utiliser le-mail",
"signIn.start.actionLink__use_email_username": "Utiliser le-mail ou le nom dutilisateur",
"signIn.start.actionLink__use_passkey": "Utiliser une clé daccès",
"signIn.start.actionLink__use_phone": "Utiliser le téléphone",
"signIn.start.actionLink__use_username": "Utiliser le nom dutilisateur",
"signIn.start.actionText": "Vous navez pas de compte ?",
"signIn.start.subtitle": "Bon retour ! Veuillez vous connecter pour continuer",
"signIn.start.title": "Connexion à {{applicationName}}",
"signIn.totpMfa.formTitle": "Code de vérification",
"signIn.totpMfa.subtitle": "Pour continuer, veuillez saisir le code généré par votre application dauthentification",
"signIn.totpMfa.title": "Vérification en deux étapes",
"signInEnterPasswordTitle": "Saisissez votre mot de passe",
"signUp.continue.actionLink": "Se connecter",
"signUp.continue.actionText": "Vous avez déjà un compte ?",
"signUp.continue.subtitle": "Veuillez compléter les informations restantes pour continuer.",
"signUp.continue.title": "Complétez les champs manquants",
"signUp.emailCode.formSubtitle": "Saisissez le code de vérification envoyé à votre adresse e-mail",
"signUp.emailCode.formTitle": "Code de vérification",
"signUp.emailCode.resendButton": "Vous navez pas reçu de code ? Renvoyer",
"signUp.emailCode.subtitle": "Saisissez le code de vérification envoyé à votre e-mail",
"signUp.emailCode.title": "Vérifiez votre e-mail",
"signUp.emailLink.formSubtitle": "Utilisez le lien de vérification envoyé à votre adresse e-mail",
"signUp.emailLink.formTitle": "Lien de vérification",
"signUp.emailLink.loading.title": "Inscription en cours...",
"signUp.emailLink.resendButton": "Vous navez pas reçu de lien ? Renvoyer",
"signUp.emailLink.subtitle": "pour continuer vers {{applicationName}}",
"signUp.emailLink.title": "Vérifiez votre e-mail",
"signUp.emailLink.verified.title": "Inscription réussie",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Revenez au nouvel onglet ouvert pour continuer",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Revenez à longlet précédent pour continuer",
"signUp.emailLink.verifiedSwitchTab.title": "E-mail vérifié avec succès",
"signUp.phoneCode.formSubtitle": "Saisissez le code de vérification envoyé à votre numéro de téléphone",
"signUp.phoneCode.formTitle": "Code de vérification",
"signUp.phoneCode.resendButton": "Vous navez pas reçu de code ? Renvoyer",
"signUp.phoneCode.subtitle": "Saisissez le code de vérification envoyé à votre téléphone",
"signUp.phoneCode.title": "Vérifiez votre téléphone",
"signUp.start.actionLink": "Se connecter",
"signUp.start.actionText": "Vous avez déjà un compte ?",
"signUp.start.subtitle": "Bienvenue ! Veuillez remplir les informations pour commencer.",
"signUp.start.title": "Créer votre compte",
"socialButtonsBlockButton": "Continuer avec {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Échec de l'inscription en raison d'une validation de sécurité. Veuillez actualiser la page pour réessayer ou contacter l'assistance pour obtenir de l'aide.",
"unstable__errors.captcha_unavailable": "Échec de l'inscription en raison d'une validation anti-robot. Veuillez actualiser la page pour réessayer ou contacter l'assistance pour obtenir de l'aide.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Cette adresse e-mail est déjà utilisée. Veuillez en essayer une autre.",
"unstable__errors.form_identifier_exists__phone_number": "Ce numéro de téléphone est déjà utilisé. Veuillez en essayer un autre.",
"unstable__errors.form_identifier_exists__username": "Ce nom d'utilisateur est déjà pris. Veuillez en choisir un autre.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "L'adresse e-mail doit être valide.",
"unstable__errors.form_param_format_invalid__phone_number": "Le numéro de téléphone doit être au format international valide.",
"unstable__errors.form_param_max_length_exceeded__first_name": "Le prénom ne doit pas dépasser 256 caractères.",
"unstable__errors.form_param_max_length_exceeded__last_name": "Le nom de famille ne doit pas dépasser 256 caractères.",
"unstable__errors.form_param_max_length_exceeded__name": "Le nom ne doit pas dépasser 256 caractères.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Votre mot de passe n'est pas assez sécurisé.",
"unstable__errors.form_password_pwned": "Ce mot de passe a été compromis lors d'une fuite de données et ne peut pas être utilisé. Veuillez en choisir un autre.",
"unstable__errors.form_password_pwned__sign_in": "Ce mot de passe a été compromis lors d'une fuite de données et ne peut pas être utilisé. Veuillez réinitialiser votre mot de passe.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Votre mot de passe dépasse la taille maximale autorisée. Veuillez le raccourcir ou retirer certains caractères spéciaux.",
"unstable__errors.form_password_validation_failed": "Mot de passe incorrect",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "Vous ne pouvez pas supprimer votre dernière identification.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Une clé d'accès est déjà enregistrée sur cet appareil.",
"unstable__errors.passkey_not_supported": "Les clés d'accès ne sont pas prises en charge sur cet appareil.",
"unstable__errors.passkey_pa_not_supported": "L'enregistrement nécessite un authentificateur de plateforme, mais l'appareil ne le prend pas en charge.",
"unstable__errors.passkey_registration_cancelled": "L'enregistrement de la clé d'accès a été annulé ou a expiré.",
"unstable__errors.passkey_retrieval_cancelled": "La vérification de la clé d'accès a été annulée ou a expiré.",
"unstable__errors.passwordComplexity.maximumLength": "moins de {{length}} caractères",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} caractères ou plus",
"unstable__errors.passwordComplexity.requireLowercase": "une lettre minuscule",
"unstable__errors.passwordComplexity.requireNumbers": "un chiffre",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "un caractère spécial",
"unstable__errors.passwordComplexity.requireUppercase": "une lettre majuscule",
"unstable__errors.passwordComplexity.sentencePrefix": "Votre mot de passe doit contenir",
"unstable__errors.phone_number_exists": "Ce numéro de téléphone est déjà utilisé. Veuillez en essayer un autre.",
"unstable__errors.zxcvbn.couldBeStronger": "Votre mot de passe fonctionne, mais pourrait être plus fort. Essayez d'ajouter plus de caractères.",
"unstable__errors.zxcvbn.goodPassword": "Votre mot de passe répond à toutes les exigences nécessaires.",
"unstable__errors.zxcvbn.notEnough": "Votre mot de passe n'est pas assez sécurisé.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Utilisez des majuscules pour certaines lettres, mais pas toutes.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Ajoutez des mots moins courants.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Évitez les années qui vous sont associées.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Utilisez des majuscules à d'autres endroits que la première lettre.",
"unstable__errors.zxcvbn.suggestions.dates": "Évitez les dates et années qui vous sont associées.",
"unstable__errors.zxcvbn.suggestions.l33t": "Évitez les substitutions de lettres prévisibles comme '@' pour 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Utilisez des motifs de clavier plus longs et changez plusieurs fois de direction de frappe.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Vous pouvez créer des mots de passe forts sans utiliser de symboles, de chiffres ou de majuscules.",
"unstable__errors.zxcvbn.suggestions.pwned": "Si vous utilisez ce mot de passe ailleurs, vous devriez le changer.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Évitez les années récentes.",
"unstable__errors.zxcvbn.suggestions.repeated": "Évitez les mots et caractères répétés.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Évitez les mots courants écrits à l'envers.",
"unstable__errors.zxcvbn.suggestions.sequences": "Évitez les séquences de caractères courantes.",
"unstable__errors.zxcvbn.suggestions.useWords": "Utilisez plusieurs mots, mais évitez les expressions courantes.",
"unstable__errors.zxcvbn.warnings.common": "Ce mot de passe est couramment utilisé.",
"unstable__errors.zxcvbn.warnings.commonNames": "Les prénoms et noms courants sont faciles à deviner.",
"unstable__errors.zxcvbn.warnings.dates": "Les dates sont faciles à deviner.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Les motifs répétés comme \"abcabcabc\" sont faciles à deviner.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Les motifs de clavier courts sont faciles à deviner.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Les prénoms ou noms seuls sont faciles à deviner.",
"unstable__errors.zxcvbn.warnings.pwned": "Votre mot de passe a été exposé lors d'une fuite de données sur Internet.",
"unstable__errors.zxcvbn.warnings.recentYears": "Les années récentes sont faciles à deviner.",
"unstable__errors.zxcvbn.warnings.sequences": "Les séquences de caractères comme \"abc\" sont faciles à deviner.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "Ce mot de passe est similaire à un mot de passe couramment utilisé.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Les caractères répétés comme \"aaa\" sont faciles à deviner.",
"unstable__errors.zxcvbn.warnings.straightRow": "Les lignes droites de touches sur votre clavier sont faciles à deviner.",
"unstable__errors.zxcvbn.warnings.topHundred": "Ce mot de passe est fréquemment utilisé.",
"unstable__errors.zxcvbn.warnings.topTen": "Ce mot de passe est très utilisé.",
"unstable__errors.zxcvbn.warnings.userInputs": "Il ne doit pas y avoir de données personnelles ou liées à la page.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Les mots seuls sont faciles à deviner.",
"userButton.action__addAccount": "Ajouter un compte",
"userButton.action__manageAccount": "Gérer le compte",
"userButton.action__signOut": "Se déconnecter",
"userButton.action__signOutAll": "Se déconnecter de tous les comptes",
"userProfile.backupCodePage.actionLabel__copied": "Copié !",
"userProfile.backupCodePage.actionLabel__copy": "Tout copier",
"userProfile.backupCodePage.actionLabel__download": "Télécharger .txt",
"userProfile.backupCodePage.actionLabel__print": "Imprimer",
"userProfile.backupCodePage.infoText1": "Les codes de secours seront activés pour ce compte.",
"userProfile.backupCodePage.infoText2": "Gardez les codes de secours secrets et stockez-les en lieu sûr. Vous pouvez régénérer les codes si vous pensez qu'ils ont été compromis.",
"userProfile.backupCodePage.subtitle__codelist": "Stockez-les en toute sécurité et gardez-les secrets.",
"userProfile.backupCodePage.successMessage": "Les codes de secours sont maintenant activés. Vous pouvez en utiliser un pour vous connecter à votre compte si vous perdez l'accès à votre appareil d'authentification. Chaque code ne peut être utilisé qu'une seule fois.",
"userProfile.backupCodePage.successSubtitle": "Vous pouvez utiliser lun de ces codes pour vous connecter à votre compte si vous perdez laccès à votre appareil dauthentification.",
"userProfile.backupCodePage.title": "Ajouter une vérification par code de secours",
"userProfile.backupCodePage.title__codelist": "Codes de secours",
"userProfile.connectedAccountPage.formHint": "Sélectionnez un fournisseur pour connecter votre compte.",
"userProfile.connectedAccountPage.formHint__noAccounts": "Aucun fournisseur de compte externe disponible.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} sera supprimé de ce compte.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Vous ne pourrez plus utiliser ce compte connecté et les fonctionnalités associées ne fonctionneront plus.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} a été supprimé de votre compte.",
"userProfile.connectedAccountPage.removeResource.title": "Supprimer le compte connecté",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "Le fournisseur a été ajouté à votre compte",
"userProfile.connectedAccountPage.title": "Ajouter un compte connecté",
"userProfile.deletePage.actionDescription": "Tapez « Supprimer le compte » ci-dessous pour continuer.",
"userProfile.deletePage.confirm": "Supprimer le compte",
"userProfile.deletePage.messageLine1": "Êtes-vous sûr de vouloir supprimer votre compte ?",
"userProfile.deletePage.messageLine2": "Cette action est permanente et irréversible.",
"userProfile.deletePage.title": "Supprimer le compte",
"userProfile.emailAddressPage.emailCode.formHint": "Un e-mail contenant un code de vérification sera envoyé à cette adresse.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Saisissez le code de vérification envoyé à {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "Code de vérification",
"userProfile.emailAddressPage.emailCode.resendButton": "Vous n'avez pas reçu de code ? Renvoyer",
"userProfile.emailAddressPage.emailCode.successMessage": "L'adresse e-mail {{identifier}} a été ajoutée à votre compte.",
"userProfile.emailAddressPage.emailLink.formHint": "Un e-mail contenant un lien de vérification sera envoyé à cette adresse.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Cliquez sur le lien de vérification dans l'e-mail envoyé à {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "Lien de vérification",
"userProfile.emailAddressPage.emailLink.resendButton": "Vous n'avez pas reçu de lien ? Renvoyer",
"userProfile.emailAddressPage.emailLink.successMessage": "L'adresse e-mail {{identifier}} a été ajoutée à votre compte.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} sera supprimée de ce compte.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Vous ne pourrez plus vous connecter avec cette adresse e-mail.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} a été supprimée de votre compte.",
"userProfile.emailAddressPage.removeResource.title": "Supprimer l'adresse e-mail",
"userProfile.emailAddressPage.title": "Ajouter une adresse e-mail",
"userProfile.emailAddressPage.verifyTitle": "Vérifier l'adresse e-mail",
"userProfile.formButtonPrimary__add": "Ajouter",
"userProfile.formButtonPrimary__continue": "Continuer",
"userProfile.formButtonPrimary__finish": "Terminer",
"userProfile.formButtonPrimary__remove": "Supprimer",
"userProfile.formButtonPrimary__save": "Enregistrer",
"userProfile.formButtonReset": "Annuler",
"userProfile.mfaPage.formHint": "Sélectionnez une méthode à ajouter.",
"userProfile.mfaPage.title": "Ajouter une vérification en deux étapes",
"userProfile.mfaPhoneCodePage.backButton": "Utiliser un numéro existant",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Ajouter un numéro de téléphone",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} ne recevra plus de codes de vérification lors de la connexion.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Votre compte pourrait être moins sécurisé. Voulez-vous vraiment continuer ?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "La vérification en deux étapes par SMS a été supprimée pour {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "Supprimer la vérification en deux étapes",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Sélectionnez un numéro existant pour lenregistrement ou ajoutez-en un nouveau.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "Aucun numéro disponible pour lenregistrement. Veuillez en ajouter un nouveau.",
"userProfile.mfaPhoneCodePage.successMessage1": "Lors de la connexion, vous devrez saisir un code envoyé à ce numéro.",
"userProfile.mfaPhoneCodePage.successMessage2": "Enregistrez ces codes de secours en lieu sûr. Ils peuvent être utilisés si vous perdez laccès à votre appareil.",
"userProfile.mfaPhoneCodePage.successTitle": "Vérification par SMS activée",
"userProfile.mfaPhoneCodePage.title": "Ajouter une vérification par SMS",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "Scanner le QR code à la place",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "Impossible de scanner le QR code ?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Configurez une nouvelle méthode de connexion dans votre application dauthentification et scannez le QR code ci-dessous.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Configurez une nouvelle méthode de connexion et saisissez la clé ci-dessous.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Assurez-vous que les mots de passe à usage unique ou basés sur le temps sont activés, puis terminez la liaison.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Sinon, si votre application prend en charge les URI TOTP, vous pouvez copier lURI complet.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Les codes de vérification de cette application ne seront plus requis à la connexion.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Votre compte pourrait être moins sécurisé. Voulez-vous vraiment continuer ?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "La vérification en deux étapes via lapplication dauthentification a été supprimée.",
"userProfile.mfaTOTPPage.removeResource.title": "Supprimer la vérification en deux étapes",
"userProfile.mfaTOTPPage.successMessage": "La vérification en deux étapes est maintenant activée. Vous devrez saisir un code de votre application dauthentification à chaque connexion.",
"userProfile.mfaTOTPPage.title": "Ajouter une application dauthentification",
"userProfile.mfaTOTPPage.verifySubtitle": "Saisissez le code généré par votre application",
"userProfile.mfaTOTPPage.verifyTitle": "Code de vérification",
"userProfile.mobileButton__menu": "Menu",
"userProfile.navbar.account": "Profil",
"userProfile.navbar.description": "Gérez les informations de votre compte.",
"userProfile.navbar.security": "Sécurité",
"userProfile.navbar.title": "Compte",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} sera supprimée de ce compte.",
"userProfile.passkeyScreen.removeResource.title": "Supprimer la clé daccès",
"userProfile.passkeyScreen.subtitle__rename": "Vous pouvez renommer la clé daccès pour la retrouver plus facilement.",
"userProfile.passkeyScreen.title__rename": "Renommer la clé daccès",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Il est recommandé de vous déconnecter de tous les autres appareils utilisant lancien mot de passe.",
"userProfile.passwordPage.readonly": "Votre mot de passe ne peut pas être modifié car vous vous connectez via une connexion dentreprise.",
"userProfile.passwordPage.successMessage__set": "Votre mot de passe a été défini.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Tous les autres appareils ont été déconnectés.",
"userProfile.passwordPage.successMessage__update": "Votre mot de passe a été mis à jour.",
"userProfile.passwordPage.title__set": "Définir un mot de passe",
"userProfile.passwordPage.title__update": "Mettre à jour le mot de passe",
"userProfile.phoneNumberPage.infoText": "Un SMS contenant un code de vérification sera envoyé à ce numéro. Des frais peuvent sappliquer.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} sera supprimé de ce compte.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Vous ne pourrez plus vous connecter avec ce numéro.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} a été supprimé de votre compte.",
"userProfile.phoneNumberPage.removeResource.title": "Supprimer le numéro de téléphone",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} a été ajouté à votre compte.",
"userProfile.phoneNumberPage.title": "Ajouter un numéro de téléphone",
"userProfile.phoneNumberPage.verifySubtitle": "Saisissez le code envoyé à {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "Vérifier le numéro de téléphone",
"userProfile.profilePage.fileDropAreaHint": "Taille recommandée 1:1, jusquà 10 Mo.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Supprimer",
"userProfile.profilePage.imageFormSubtitle": "Téléverser",
"userProfile.profilePage.imageFormTitle": "Image de profil",
"userProfile.profilePage.readonly": "Les informations de votre profil sont fournies par la connexion dentreprise et ne peuvent pas être modifiées.",
"userProfile.profilePage.successMessage": "Votre profil a été mis à jour.",
"userProfile.profilePage.title": "Mettre à jour le profil",
"userProfile.start.activeDevicesSection.destructiveAction": "Se déconnecter de lappareil",
"userProfile.start.activeDevicesSection.title": "Appareils actifs",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Réessayer",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Autoriser maintenant",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Supprimer",
"userProfile.start.connectedAccountsSection.primaryButton": "Connecter un compte",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "Les autorisations requises ont été mises à jour, ce qui peut limiter certaines fonctionnalités. Veuillez réautoriser cette application pour éviter tout problème.",
"userProfile.start.connectedAccountsSection.title": "Comptes connectés",
"userProfile.start.dangerSection.deleteAccountButton": "Supprimer le compte",
"userProfile.start.dangerSection.title": "Supprimer le compte",
"userProfile.start.emailAddressesSection.destructiveAction": "Supprimer ladresse e-mail",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Définir comme principale",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Terminer la vérification",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Vérifier",
"userProfile.start.emailAddressesSection.primaryButton": "Ajouter une adresse e-mail",
"userProfile.start.emailAddressesSection.title": "Adresses e-mail",
"userProfile.start.enterpriseAccountsSection.title": "Comptes entreprise",
"userProfile.start.headerTitle__account": "Détails du profil",
"userProfile.start.headerTitle__security": "Sécurité",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Régénérer",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Codes de secours",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Obtenez un nouvel ensemble de codes de secours sécurisés. Les anciens codes seront supprimés et ne pourront plus être utilisés.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Régénérer les codes de secours",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Définir par défaut",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Supprimer",
"userProfile.start.mfaSection.primaryButton": "Ajouter une vérification en deux étapes",
"userProfile.start.mfaSection.title": "Vérification en deux étapes",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Supprimer",
"userProfile.start.mfaSection.totp.headerTitle": "Application dauthentification",
"userProfile.start.passkeysSection.menuAction__destructive": "Supprimer",
"userProfile.start.passkeysSection.menuAction__rename": "Renommer",
"userProfile.start.passkeysSection.title": "Clés daccès",
"userProfile.start.passwordSection.primaryButton__setPassword": "Définir un mot de passe",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Mettre à jour le mot de passe",
"userProfile.start.passwordSection.title": "Mot de passe",
"userProfile.start.phoneNumbersSection.destructiveAction": "Supprimer le numéro de téléphone",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Définir comme principal",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Terminer la vérification",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Vérifier le numéro",
"userProfile.start.phoneNumbersSection.primaryButton": "Ajouter un numéro de téléphone",
"userProfile.start.phoneNumbersSection.title": "Numéros de téléphone",
"userProfile.start.profileSection.primaryButton": "Mettre à jour le profil",
"userProfile.start.profileSection.title": "Profil",
"userProfile.start.usernameSection.primaryButton__setUsername": "Définir un nom dutilisateur",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Mettre à jour le nom dutilisateur",
"userProfile.start.usernameSection.title": "Nom dutilisateur",
"userProfile.start.web3WalletsSection.destructiveAction": "Supprimer le portefeuille",
"userProfile.start.web3WalletsSection.primaryButton": "Portefeuilles Web3",
"userProfile.start.web3WalletsSection.title": "Portefeuilles Web3",
"userProfile.usernamePage.successMessage": "Votre nom dutilisateur a été mis à jour.",
"userProfile.usernamePage.title__set": "Définir un nom dutilisateur",
"userProfile.usernamePage.title__update": "Mettre à jour le nom dutilisateur",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} sera supprimé de ce compte.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Vous ne pourrez plus vous connecter avec ce portefeuille Web3.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} a été supprimé de votre compte.",
"userProfile.web3WalletPage.removeResource.title": "Supprimer le portefeuille Web3",
"userProfile.web3WalletPage.subtitle__availableWallets": "Sélectionnez un portefeuille Web3 à connecter à votre compte.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Aucun portefeuille Web3 disponible.",
"userProfile.web3WalletPage.successMessage": "Le portefeuille a été ajouté à votre compte.",
"userProfile.web3WalletPage.title": "Ajouter un portefeuille Web3"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Continuer la session",
"clerkAuth.loginSuccess.desc": "{{greeting}}, ravi de vous retrouver. Reprenons là où nous nous étions arrêtés.",
"clerkAuth.loginSuccess.title": "Bon retour, {{nickName}}",
"error.backHome": "Retour à l'accueil",
"error.desc": "Réessayez plus tard ou revenez dans un territoire connu.",
"error.retry": "Recharger",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Désolé, le quota de cette clé a été atteint. Veuillez vérifier votre solde ou augmenter le quota.",
"response.InvalidAccessCode": "Code d'accès invalide ou vide. Veuillez entrer le bon code ou ajouter une clé API personnalisée.",
"response.InvalidBedrockCredentials": "Échec de l'authentification Bedrock. Veuillez vérifier vos identifiants et réessayer.",
"response.InvalidClerkUser": "Désolé, vous n'êtes pas connecté. Veuillez vous connecter ou créer un compte.",
"response.InvalidComfyUIArgs": "Configuration ComfyUI invalide. Veuillez vérifier les paramètres et réessayer.",
"response.InvalidGithubToken": "Le jeton GitHub est incorrect ou vide. Veuillez le vérifier et réessayer.",
"response.InvalidOllamaArgs": "Configuration Ollama invalide. Veuillez vérifier et réessayer.",

View file

@ -1,545 +0,0 @@
{
"backButton": "Indietro",
"badge__default": "Predefinito",
"badge__otherImpersonatorDevice": "Altro dispositivo impersonatore",
"badge__primary": "Primario",
"badge__requiresAction": "Richiede azione",
"badge__thisDevice": "Questo dispositivo",
"badge__unverified": "Non verificato",
"badge__userDevice": "Dispositivo utente",
"badge__you": "Tu",
"createOrganization.formButtonSubmit": "Crea organizzazione",
"createOrganization.invitePage.formButtonReset": "Salta",
"createOrganization.title": "Crea organizzazione",
"dates.lastDay": "Ieri alle {{ date | timeString('it-IT') }}",
"dates.next6Days": "{{ date | weekday('it-IT','long') }} alle {{ date | timeString('it-IT') }}",
"dates.nextDay": "Domani alle {{ date | timeString('it-IT') }}",
"dates.numeric": "{{ date | numeric('it-IT') }}",
"dates.previous6Days": "Lo scorso {{ date | weekday('it-IT','long') }} alle {{ date | timeString('it-IT') }}",
"dates.sameDay": "Oggi alle {{ date | timeString('it-IT') }}",
"dividerText": "oppure",
"footerActionLink__useAnotherMethod": "Usa un altro metodo",
"footerPageLink__help": "Aiuto",
"footerPageLink__privacy": "Privacy",
"footerPageLink__terms": "Termini",
"formButtonPrimary": "Continua",
"formButtonPrimary__verify": "Verifica",
"formFieldAction__forgotPassword": "Password dimenticata?",
"formFieldError__matchingPasswords": "Le password corrispondono.",
"formFieldError__notMatchingPasswords": "Le password non corrispondono.",
"formFieldError__verificationLinkExpired": "Il link di verifica è scaduto. Richiedi un nuovo link.",
"formFieldHintText__optional": "Facoltativo",
"formFieldHintText__slug": "Uno slug è un identificativo leggibile che deve essere univoco. Spesso viene usato negli URL.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Elimina account",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "esempio@email.com, esempio2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "mia-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Abilita inviti automatici per questo dominio",
"formFieldLabel__backupCode": "Codice di backup",
"formFieldLabel__confirmDeletion": "Conferma",
"formFieldLabel__confirmPassword": "Conferma password",
"formFieldLabel__currentPassword": "Password attuale",
"formFieldLabel__emailAddress": "Indirizzo email",
"formFieldLabel__emailAddress_username": "Email o nome utente",
"formFieldLabel__emailAddresses": "Indirizzi email",
"formFieldLabel__firstName": "Nome",
"formFieldLabel__lastName": "Cognome",
"formFieldLabel__newPassword": "Nuova password",
"formFieldLabel__organizationDomain": "Dominio",
"formFieldLabel__organizationDomainDeletePending": "Elimina inviti e suggerimenti in sospeso",
"formFieldLabel__organizationDomainEmailAddress": "Email di verifica",
"formFieldLabel__organizationDomainEmailAddressDescription": "Inserisci un indirizzo email sotto questo dominio per ricevere un codice e verificare il dominio.",
"formFieldLabel__organizationName": "Nome",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "Nome della passkey",
"formFieldLabel__password": "Password",
"formFieldLabel__phoneNumber": "Numero di telefono",
"formFieldLabel__role": "Ruolo",
"formFieldLabel__signOutOfOtherSessions": "Disconnetti da tutti gli altri dispositivi",
"formFieldLabel__username": "Nome utente",
"impersonationFab.action__signOut": "Disconnetti",
"impersonationFab.title": "Accesso come {{identifier}}",
"locale": "it-IT",
"maintenanceMode": "Stiamo effettuando manutenzione, ma non preoccuparti, dovrebbe durare solo pochi minuti.",
"membershipRole__admin": "Amministratore",
"membershipRole__basicMember": "Membro",
"membershipRole__guestMember": "Ospite",
"organizationList.action__createOrganization": "Crea organizzazione",
"organizationList.action__invitationAccept": "Unisciti",
"organizationList.action__suggestionsAccept": "Richiedi di unirti",
"organizationList.createOrganization": "Crea organizzazione",
"organizationList.invitationAcceptedLabel": "Unito",
"organizationList.subtitle": "per continuare su {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "In attesa di approvazione",
"organizationList.title": "Scegli un account",
"organizationList.titleWithoutPersonal": "Scegli un'organizzazione",
"organizationProfile.badge__automaticInvitation": "Inviti automatici",
"organizationProfile.badge__automaticSuggestion": "Suggerimenti automatici",
"organizationProfile.badge__manualInvitation": "Nessuna iscrizione automatica",
"organizationProfile.badge__unverified": "Non verificato",
"organizationProfile.createDomainPage.subtitle": "Aggiungi il dominio da verificare. Gli utenti con email su questo dominio possono unirsi automaticamente o richiedere di unirsi all'organizzazione.",
"organizationProfile.createDomainPage.title": "Aggiungi dominio",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "Impossibile inviare gli inviti. Ci sono già inviti in sospeso per i seguenti indirizzi email: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Invia inviti",
"organizationProfile.invitePage.selectDropdown__role": "Seleziona ruolo",
"organizationProfile.invitePage.subtitle": "Inserisci o incolla uno o più indirizzi email, separati da spazi o virgole.",
"organizationProfile.invitePage.successMessage": "Inviti inviati con successo",
"organizationProfile.invitePage.title": "Invita nuovi membri",
"organizationProfile.membersPage.action__invite": "Invita",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Rimuovi membro",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Data di adesione",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Ruolo",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Utente",
"organizationProfile.membersPage.detailsTitle__emptyRow": "Nessun membro da mostrare",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Invita utenti collegando un dominio email alla tua organizzazione. Chi si registra con un dominio corrispondente potrà unirsi in qualsiasi momento.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Inviti automatici",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Gestisci domini verificati",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Nessun invito da mostrare",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Revoca invito",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Invitato",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Gli utenti che si registrano con un dominio email corrispondente vedranno un suggerimento per richiedere l'accesso alla tua organizzazione.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Suggerimenti automatici",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Gestisci domini verificati",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Approva",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Rifiuta",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Accesso richiesto",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Nessuna richiesta da mostrare",
"organizationProfile.membersPage.start.headerTitle__invitations": "Inviti",
"organizationProfile.membersPage.start.headerTitle__members": "Membri",
"organizationProfile.membersPage.start.headerTitle__requests": "Richieste",
"organizationProfile.navbar.description": "Gestisci la tua organizzazione.",
"organizationProfile.navbar.general": "Generale",
"organizationProfile.navbar.members": "Membri",
"organizationProfile.navbar.title": "Organizzazione",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Digita \"{{organizationName}}\" qui sotto per continuare.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Sei sicuro di voler eliminare questa organizzazione?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Questa azione è permanente e irreversibile.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Hai eliminato l'organizzazione.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Elimina organizzazione",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Digita \"{{organizationName}}\" qui sotto per continuare.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Sei sicuro di voler uscire da questa organizzazione? Perderai l'accesso a questa organizzazione e alle sue applicazioni.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Questa azione è permanente e irreversibile.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Hai lasciato l'organizzazione.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Esci dall'organizzazione",
"organizationProfile.profilePage.dangerSection.title": "Pericolo",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Gestisci",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Elimina",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Verifica",
"organizationProfile.profilePage.domainSection.primaryButton": "Aggiungi dominio",
"organizationProfile.profilePage.domainSection.subtitle": "Consenti agli utenti di unirsi automaticamente all'organizzazione o di richiedere l'accesso in base a un dominio email verificato.",
"organizationProfile.profilePage.domainSection.title": "Domini verificati",
"organizationProfile.profilePage.successMessage": "L'organizzazione è stata aggiornata.",
"organizationProfile.profilePage.title": "Aggiorna profilo",
"organizationProfile.removeDomainPage.messageLine1": "Il dominio email {{domain}} verrà rimosso.",
"organizationProfile.removeDomainPage.messageLine2": "Gli utenti non potranno più unirsi automaticamente all'organizzazione.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} è stato rimosso.",
"organizationProfile.removeDomainPage.title": "Rimuovi dominio",
"organizationProfile.start.headerTitle__general": "Generale",
"organizationProfile.start.headerTitle__members": "Membri",
"organizationProfile.start.profileSection.primaryButton": "Aggiorna profilo",
"organizationProfile.start.profileSection.title": "Profilo dell'organizzazione",
"organizationProfile.start.profileSection.uploadAction__title": "Logo",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "La rimozione di questo dominio influenzerà gli utenti invitati.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Rimuovi dominio",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Rimuovi questo dominio dai tuoi domini verificati",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Rimuovi dominio",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Gli utenti vengono invitati automaticamente a unirsi all'organizzazione al momento della registrazione e possono accedervi in qualsiasi momento.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Inviti automatici",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Gli utenti ricevono un suggerimento per richiedere l'accesso, ma devono essere approvati da un amministratore prima di poter entrare nell'organizzazione.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Suggerimenti automatici",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "La modifica della modalità di iscrizione influenzerà solo i nuovi utenti.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Inviti in sospeso inviati agli utenti: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Suggerimenti in sospeso inviati agli utenti: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Gli utenti possono essere invitati all'organizzazione solo manualmente.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Nessuna iscrizione automatica",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Scegli come gli utenti di questo dominio possono unirsi all'organizzazione.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Pericolo",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Opzioni di iscrizione",
"organizationProfile.verifiedDomainPage.subtitle": "Il dominio {{domain}} è ora verificato. Continua selezionando la modalità di iscrizione.",
"organizationProfile.verifiedDomainPage.title": "Aggiorna {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "Inserisci il codice di verifica inviato al tuo indirizzo email",
"organizationProfile.verifyDomainPage.formTitle": "Codice di verifica",
"organizationProfile.verifyDomainPage.resendButton": "Non hai ricevuto un codice? Invia di nuovo",
"organizationProfile.verifyDomainPage.subtitle": "Il dominio {{domainName}} deve essere verificato tramite email.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "Un codice di verifica è stato inviato a {{emailAddress}}. Inserisci il codice per continuare.",
"organizationProfile.verifyDomainPage.title": "Verifica dominio",
"organizationSwitcher.action__createOrganization": "Crea organizzazione",
"organizationSwitcher.action__invitationAccept": "Unisciti",
"organizationSwitcher.action__manageOrganization": "Gestisci",
"organizationSwitcher.action__suggestionsAccept": "Richiedi accesso",
"organizationSwitcher.notSelected": "Nessuna organizzazione selezionata",
"organizationSwitcher.personalWorkspace": "Account personale",
"organizationSwitcher.suggestionsAcceptedLabel": "In attesa di approvazione",
"paginationButton__next": "Avanti",
"paginationButton__previous": "Indietro",
"paginationRowText__displaying": "Visualizzazione",
"paginationRowText__of": "di",
"signIn.accountSwitcher.action__addAccount": "Aggiungi account",
"signIn.accountSwitcher.action__signOutAll": "Esci da tutti gli account",
"signIn.accountSwitcher.subtitle": "Seleziona l'account con cui desideri continuare.",
"signIn.accountSwitcher.title": "Scegli un account",
"signIn.alternativeMethods.actionLink": "Ottieni aiuto",
"signIn.alternativeMethods.actionText": "Non hai nessuno di questi?",
"signIn.alternativeMethods.blockButton__backupCode": "Usa un codice di backup",
"signIn.alternativeMethods.blockButton__emailCode": "Invia codice email a {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "Invia link email a {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "Accedi con la tua passkey",
"signIn.alternativeMethods.blockButton__password": "Accedi con la tua password",
"signIn.alternativeMethods.blockButton__phoneCode": "Invia codice SMS a {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "Usa la tua app di autenticazione",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Contatta il supporto via email",
"signIn.alternativeMethods.getHelp.content": "Se hai difficoltà ad accedere al tuo account, scrivici e collaboreremo con te per ripristinare l'accesso il prima possibile.",
"signIn.alternativeMethods.getHelp.title": "Ottieni aiuto",
"signIn.alternativeMethods.subtitle": "Problemi di accesso? Puoi utilizzare uno di questi metodi per accedere.",
"signIn.alternativeMethods.title": "Usa un altro metodo",
"signIn.backupCodeMfa.subtitle": "Il tuo codice di backup è quello che hai ricevuto durante la configurazione dell'autenticazione a due fattori.",
"signIn.backupCodeMfa.title": "Inserisci un codice di backup",
"signIn.emailCode.formTitle": "Codice di verifica",
"signIn.emailCode.resendButton": "Non hai ricevuto il codice? Invia di nuovo",
"signIn.emailCode.subtitle": "per continuare su {{applicationName}}",
"signIn.emailCode.title": "Controlla la tua email",
"signIn.emailLink.expired.subtitle": "Torna alla scheda originale per continuare.",
"signIn.emailLink.expired.title": "Questo link di verifica è scaduto",
"signIn.emailLink.failed.subtitle": "Torna alla scheda originale per continuare.",
"signIn.emailLink.failed.title": "Questo link di verifica non è valido",
"signIn.emailLink.formSubtitle": "Usa il link di verifica inviato alla tua email",
"signIn.emailLink.formTitle": "Link di verifica",
"signIn.emailLink.loading.subtitle": "Verrai reindirizzato a breve",
"signIn.emailLink.loading.title": "Accesso in corso...",
"signIn.emailLink.resendButton": "Non hai ricevuto il link? Invia di nuovo",
"signIn.emailLink.subtitle": "per continuare su {{applicationName}}",
"signIn.emailLink.title": "Controlla la tua email",
"signIn.emailLink.unusedTab.title": "Puoi chiudere questa scheda",
"signIn.emailLink.verified.subtitle": "Verrai reindirizzato a breve",
"signIn.emailLink.verified.title": "Accesso effettuato con successo",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Torna alla scheda originale per continuare",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Torna alla nuova scheda aperta per continuare",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Accesso effettuato in un'altra scheda",
"signIn.forgotPassword.formTitle": "Codice per reimpostare la password",
"signIn.forgotPassword.resendButton": "Non hai ricevuto il codice? Invia di nuovo",
"signIn.forgotPassword.subtitle": "per reimpostare la tua password",
"signIn.forgotPassword.subtitle_email": "Per prima cosa, inserisci il codice inviato al tuo indirizzo email",
"signIn.forgotPassword.subtitle_phone": "Per prima cosa, inserisci il codice inviato al tuo telefono",
"signIn.forgotPassword.title": "Reimposta password",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Reimposta la tua password",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Oppure, accedi con un altro metodo",
"signIn.forgotPasswordAlternativeMethods.title": "Hai dimenticato la password?",
"signIn.noAvailableMethods.message": "Impossibile procedere con l'accesso. Nessun metodo di autenticazione disponibile.",
"signIn.noAvailableMethods.subtitle": "Si è verificato un errore",
"signIn.noAvailableMethods.title": "Impossibile accedere",
"signIn.passkey.subtitle": "Utilizzando la tua passkey confermi la tua identità. Il tuo dispositivo potrebbe richiedere impronta digitale, riconoscimento facciale o blocco schermo.",
"signIn.passkey.title": "Usa la tua passkey",
"signIn.password.actionLink": "Usa un altro metodo",
"signIn.password.subtitle": "Inserisci la password associata al tuo account",
"signIn.password.title": "Inserisci la tua password",
"signIn.passwordPwned.title": "Password compromessa",
"signIn.phoneCode.formTitle": "Codice di verifica",
"signIn.phoneCode.resendButton": "Non hai ricevuto il codice? Invia di nuovo",
"signIn.phoneCode.subtitle": "per continuare su {{applicationName}}",
"signIn.phoneCode.title": "Controlla il tuo telefono",
"signIn.phoneCodeMfa.formTitle": "Codice di verifica",
"signIn.phoneCodeMfa.resendButton": "Non hai ricevuto il codice? Invia di nuovo",
"signIn.phoneCodeMfa.subtitle": "Per continuare, inserisci il codice di verifica inviato al tuo telefono",
"signIn.phoneCodeMfa.title": "Controlla il tuo telefono",
"signIn.resetPassword.formButtonPrimary": "Reimposta password",
"signIn.resetPassword.requiredMessage": "Per motivi di sicurezza, è necessario reimpostare la password.",
"signIn.resetPassword.successMessage": "La tua password è stata modificata con successo. Accesso in corso, attendi un momento.",
"signIn.resetPassword.title": "Imposta nuova password",
"signIn.resetPasswordMfa.detailsLabel": "Dobbiamo verificare la tua identità prima di reimpostare la password.",
"signIn.start.actionLink": "Registrati",
"signIn.start.actionLink__use_email": "Usa email",
"signIn.start.actionLink__use_email_username": "Usa email o nome utente",
"signIn.start.actionLink__use_passkey": "Usa passkey",
"signIn.start.actionLink__use_phone": "Usa telefono",
"signIn.start.actionLink__use_username": "Usa nome utente",
"signIn.start.actionText": "Non hai un account?",
"signIn.start.subtitle": "Bentornato! Effettua l'accesso per continuare",
"signIn.start.title": "Accedi a {{applicationName}}",
"signIn.totpMfa.formTitle": "Codice di verifica",
"signIn.totpMfa.subtitle": "Per continuare, inserisci il codice di verifica generato dalla tua app di autenticazione",
"signIn.totpMfa.title": "Verifica in due passaggi",
"signInEnterPasswordTitle": "Inserisci la tua password",
"signUp.continue.actionLink": "Accedi",
"signUp.continue.actionText": "Hai già un account?",
"signUp.continue.subtitle": "Completa i dati mancanti per continuare.",
"signUp.continue.title": "Completa i campi mancanti",
"signUp.emailCode.formSubtitle": "Inserisci il codice di verifica inviato al tuo indirizzo email",
"signUp.emailCode.formTitle": "Codice di verifica",
"signUp.emailCode.resendButton": "Non hai ricevuto il codice? Invia di nuovo",
"signUp.emailCode.subtitle": "Inserisci il codice di verifica inviato alla tua email",
"signUp.emailCode.title": "Verifica la tua email",
"signUp.emailLink.formSubtitle": "Usa il link di verifica inviato al tuo indirizzo email",
"signUp.emailLink.formTitle": "Link di verifica",
"signUp.emailLink.loading.title": "Registrazione in corso...",
"signUp.emailLink.resendButton": "Non hai ricevuto il link? Invia di nuovo",
"signUp.emailLink.subtitle": "per continuare su {{applicationName}}",
"signUp.emailLink.title": "Verifica la tua email",
"signUp.emailLink.verified.title": "Registrazione completata con successo",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Torna alla nuova scheda aperta per continuare",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Torna alla scheda precedente per continuare",
"signUp.emailLink.verifiedSwitchTab.title": "Email verificata con successo",
"signUp.phoneCode.formSubtitle": "Inserisci il codice di verifica inviato al tuo numero di telefono",
"signUp.phoneCode.formTitle": "Codice di verifica",
"signUp.phoneCode.resendButton": "Non hai ricevuto il codice? Invia di nuovo",
"signUp.phoneCode.subtitle": "Inserisci il codice di verifica inviato al tuo telefono",
"signUp.phoneCode.title": "Verifica il tuo telefono",
"signUp.start.actionLink": "Accedi",
"signUp.start.actionText": "Hai già un account?",
"signUp.start.subtitle": "Benvenuto! Compila i dati per iniziare.",
"signUp.start.title": "Crea il tuo account",
"socialButtonsBlockButton": "Continua con {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Registrazione non riuscita a causa di errori di sicurezza. Ricarica la pagina per riprovare o contatta l'assistenza per ulteriore supporto.",
"unstable__errors.captcha_unavailable": "Registrazione non riuscita a causa di errore nella verifica anti-bot. Ricarica la pagina per riprovare o contatta l'assistenza per ulteriore supporto.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Questo indirizzo email è già in uso. Prova con un altro.",
"unstable__errors.form_identifier_exists__phone_number": "Questo numero di telefono è già in uso. Prova con un altro.",
"unstable__errors.form_identifier_exists__username": "Questo nome utente è già in uso. Prova con un altro.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "L'indirizzo email deve essere valido.",
"unstable__errors.form_param_format_invalid__phone_number": "Il numero di telefono deve essere in un formato internazionale valido.",
"unstable__errors.form_param_max_length_exceeded__first_name": "Il nome non deve superare i 256 caratteri.",
"unstable__errors.form_param_max_length_exceeded__last_name": "Il cognome non deve superare i 256 caratteri.",
"unstable__errors.form_param_max_length_exceeded__name": "Il nome non deve superare i 256 caratteri.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "La tua password non è abbastanza sicura.",
"unstable__errors.form_password_pwned": "Questa password è stata compromessa in una violazione dei dati e non può essere utilizzata. Prova con un'altra.",
"unstable__errors.form_password_pwned__sign_in": "Questa password è stata compromessa in una violazione dei dati e non può essere utilizzata. Reimposta la tua password.",
"unstable__errors.form_password_size_in_bytes_exceeded": "La tua password supera il numero massimo di byte consentiti. Accorciala o rimuovi alcuni caratteri speciali.",
"unstable__errors.form_password_validation_failed": "Password errata",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "Non puoi eliminare la tua ultima identificazione.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Una passkey è già registrata su questo dispositivo.",
"unstable__errors.passkey_not_supported": "Le passkey non sono supportate su questo dispositivo.",
"unstable__errors.passkey_pa_not_supported": "La registrazione richiede un autenticatore di piattaforma, ma il dispositivo non lo supporta.",
"unstable__errors.passkey_registration_cancelled": "La registrazione della passkey è stata annullata o è scaduta.",
"unstable__errors.passkey_retrieval_cancelled": "La verifica della passkey è stata annullata o è scaduta.",
"unstable__errors.passwordComplexity.maximumLength": "meno di {{length}} caratteri",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} o più caratteri",
"unstable__errors.passwordComplexity.requireLowercase": "una lettera minuscola",
"unstable__errors.passwordComplexity.requireNumbers": "un numero",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "un carattere speciale",
"unstable__errors.passwordComplexity.requireUppercase": "una lettera maiuscola",
"unstable__errors.passwordComplexity.sentencePrefix": "La tua password deve contenere",
"unstable__errors.phone_number_exists": "Questo numero di telefono è già in uso. Prova con un altro.",
"unstable__errors.zxcvbn.couldBeStronger": "La tua password funziona, ma potrebbe essere più sicura. Prova ad aggiungere più caratteri.",
"unstable__errors.zxcvbn.goodPassword": "La tua password soddisfa tutti i requisiti necessari.",
"unstable__errors.zxcvbn.notEnough": "La tua password non è abbastanza sicura.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Usa lettere maiuscole solo in parte.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Aggiungi parole meno comuni.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Evita anni associati a te.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Usa più lettere maiuscole, non solo la prima.",
"unstable__errors.zxcvbn.suggestions.dates": "Evita date e anni associati a te.",
"unstable__errors.zxcvbn.suggestions.l33t": "Evita sostituzioni prevedibili come '@' al posto di 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Usa sequenze di tasti più lunghe e cambia direzione di digitazione più volte.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Puoi creare password sicure anche senza simboli, numeri o lettere maiuscole.",
"unstable__errors.zxcvbn.suggestions.pwned": "Se usi questa password altrove, dovresti cambiarla.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Evita anni recenti.",
"unstable__errors.zxcvbn.suggestions.repeated": "Evita parole e caratteri ripetuti.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Evita parole comuni scritte al contrario.",
"unstable__errors.zxcvbn.suggestions.sequences": "Evita sequenze di caratteri comuni.",
"unstable__errors.zxcvbn.suggestions.useWords": "Usa più parole, ma evita frasi comuni.",
"unstable__errors.zxcvbn.warnings.common": "Questa è una password comunemente usata.",
"unstable__errors.zxcvbn.warnings.commonNames": "Nomi e cognomi comuni sono facili da indovinare.",
"unstable__errors.zxcvbn.warnings.dates": "Le date sono facili da indovinare.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Pattern ripetuti come \"abcabcabc\" sono facili da indovinare.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Pattern di tastiera brevi sono facili da indovinare.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Nomi o cognomi singoli sono facili da indovinare.",
"unstable__errors.zxcvbn.warnings.pwned": "La tua password è stata esposta in una violazione dei dati online.",
"unstable__errors.zxcvbn.warnings.recentYears": "Gli anni recenti sono facili da indovinare.",
"unstable__errors.zxcvbn.warnings.sequences": "Sequenze comuni come \"abc\" sono facili da indovinare.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "Questa è simile a una password comunemente usata.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Caratteri ripetuti come \"aaa\" sono facili da indovinare.",
"unstable__errors.zxcvbn.warnings.straightRow": "Righe dritte di tasti sulla tastiera sono facili da indovinare.",
"unstable__errors.zxcvbn.warnings.topHundred": "Questa è una password usata frequentemente.",
"unstable__errors.zxcvbn.warnings.topTen": "Questa è una delle password più usate.",
"unstable__errors.zxcvbn.warnings.userInputs": "Non dovrebbero esserci dati personali o relativi alla pagina.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Parole singole sono facili da indovinare.",
"userButton.action__addAccount": "Aggiungi account",
"userButton.action__manageAccount": "Gestisci account",
"userButton.action__signOut": "Esci",
"userButton.action__signOutAll": "Esci da tutti gli account",
"userProfile.backupCodePage.actionLabel__copied": "Copiato!",
"userProfile.backupCodePage.actionLabel__copy": "Copia tutto",
"userProfile.backupCodePage.actionLabel__download": "Scarica .txt",
"userProfile.backupCodePage.actionLabel__print": "Stampa",
"userProfile.backupCodePage.infoText1": "I codici di backup saranno abilitati per questo account.",
"userProfile.backupCodePage.infoText2": "Tieni i codici di backup segreti e conservali in un luogo sicuro. Puoi rigenerarli se sospetti che siano stati compromessi.",
"userProfile.backupCodePage.subtitle__codelist": "Conservali in modo sicuro e mantienili segreti.",
"userProfile.backupCodePage.successMessage": "I codici di backup sono stati abilitati. Puoi usarne uno per accedere al tuo account se perdi l'accesso al dispositivo di autenticazione. Ogni codice può essere usato una sola volta.",
"userProfile.backupCodePage.successSubtitle": "Puoi usare uno di questi codici per accedere al tuo account se perdi l'accesso al dispositivo di autenticazione.",
"userProfile.backupCodePage.title": "Aggiungi verifica con codice di backup",
"userProfile.backupCodePage.title__codelist": "Codici di backup",
"userProfile.connectedAccountPage.formHint": "Seleziona un provider per collegare il tuo account.",
"userProfile.connectedAccountPage.formHint__noAccounts": "Non ci sono provider di account esterni disponibili.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} sarà rimosso da questo account.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Non potrai più utilizzare questo account collegato e le funzionalità dipendenti non funzioneranno più.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} è stato rimosso dal tuo account.",
"userProfile.connectedAccountPage.removeResource.title": "Rimuovi account collegato",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "Il provider è stato aggiunto al tuo account",
"userProfile.connectedAccountPage.title": "Aggiungi account collegato",
"userProfile.deletePage.actionDescription": "Digita \"Elimina account\" qui sotto per continuare.",
"userProfile.deletePage.confirm": "Elimina account",
"userProfile.deletePage.messageLine1": "Sei sicuro di voler eliminare il tuo account?",
"userProfile.deletePage.messageLine2": "Questa azione è permanente e irreversibile.",
"userProfile.deletePage.title": "Elimina account",
"userProfile.emailAddressPage.emailCode.formHint": "Un'email contenente un codice di verifica sarà inviata a questo indirizzo.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Inserisci il codice di verifica inviato a {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "Codice di verifica",
"userProfile.emailAddressPage.emailCode.resendButton": "Non hai ricevuto il codice? Invia di nuovo",
"userProfile.emailAddressPage.emailCode.successMessage": "L'email {{identifier}} è stata aggiunta al tuo account.",
"userProfile.emailAddressPage.emailLink.formHint": "Un'email contenente un link di verifica sarà inviata a questo indirizzo.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Clicca sul link di verifica nell'email inviata a {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "Link di verifica",
"userProfile.emailAddressPage.emailLink.resendButton": "Non hai ricevuto il link? Invia di nuovo",
"userProfile.emailAddressPage.emailLink.successMessage": "L'email {{identifier}} è stata aggiunta al tuo account.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} sarà rimosso da questo account.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Non potrai più accedere utilizzando questo indirizzo email.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} è stato rimosso dal tuo account.",
"userProfile.emailAddressPage.removeResource.title": "Rimuovi indirizzo email",
"userProfile.emailAddressPage.title": "Aggiungi indirizzo email",
"userProfile.emailAddressPage.verifyTitle": "Verifica indirizzo email",
"userProfile.formButtonPrimary__add": "Aggiungi",
"userProfile.formButtonPrimary__continue": "Continua",
"userProfile.formButtonPrimary__finish": "Fine",
"userProfile.formButtonPrimary__remove": "Rimuovi",
"userProfile.formButtonPrimary__save": "Salva",
"userProfile.formButtonReset": "Annulla",
"userProfile.mfaPage.formHint": "Seleziona un metodo da aggiungere.",
"userProfile.mfaPage.title": "Aggiungi verifica in due passaggi",
"userProfile.mfaPhoneCodePage.backButton": "Usa numero esistente",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Aggiungi numero di telefono",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} non riceverà più codici di verifica all'accesso.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Il tuo account potrebbe non essere più sicuro. Sei sicuro di voler continuare?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "La verifica in due passaggi tramite SMS è stata rimossa per {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "Rimuovi verifica in due passaggi",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Seleziona un numero di telefono esistente per registrarti alla verifica in due passaggi tramite SMS o aggiungine uno nuovo.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "Non ci sono numeri di telefono disponibili per la verifica in due passaggi tramite SMS, aggiungine uno nuovo.",
"userProfile.mfaPhoneCodePage.successMessage1": "All'accesso, dovrai inserire un codice di verifica inviato a questo numero di telefono come passaggio aggiuntivo.",
"userProfile.mfaPhoneCodePage.successMessage2": "Salva questi codici di backup e conservali in un luogo sicuro. Se perdi l'accesso al dispositivo di autenticazione, puoi usarli per accedere.",
"userProfile.mfaPhoneCodePage.successTitle": "Verifica tramite SMS abilitata",
"userProfile.mfaPhoneCodePage.title": "Aggiungi verifica tramite SMS",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "Scansiona codice QR",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "Non riesci a scansionare il codice QR?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Configura un nuovo metodo di accesso nella tua app di autenticazione e scansiona il codice QR per collegarlo al tuo account.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Configura un nuovo metodo di accesso nella tua app di autenticazione e inserisci la chiave fornita qui sotto.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Assicurati che l'opzione Password basate sul tempo o monouso sia abilitata, poi completa il collegamento dell'account.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "In alternativa, se la tua app supporta URI TOTP, puoi copiare l'URI completo.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "I codici di verifica da questa app non saranno più richiesti all'accesso.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Il tuo account potrebbe non essere più sicuro. Sei sicuro di voler continuare?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "La verifica in due passaggi tramite app di autenticazione è stata rimossa.",
"userProfile.mfaTOTPPage.removeResource.title": "Rimuovi verifica in due passaggi",
"userProfile.mfaTOTPPage.successMessage": "La verifica in due passaggi è stata abilitata. All'accesso, dovrai inserire un codice di verifica generato da questa app.",
"userProfile.mfaTOTPPage.title": "Aggiungi app di autenticazione",
"userProfile.mfaTOTPPage.verifySubtitle": "Inserisci il codice di verifica generato dalla tua app",
"userProfile.mfaTOTPPage.verifyTitle": "Codice di verifica",
"userProfile.mobileButton__menu": "Menu",
"userProfile.navbar.account": "Profilo",
"userProfile.navbar.description": "Gestisci le informazioni del tuo account.",
"userProfile.navbar.security": "Sicurezza",
"userProfile.navbar.title": "Account",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} sarà rimosso da questo account.",
"userProfile.passkeyScreen.removeResource.title": "Rimuovi passkey",
"userProfile.passkeyScreen.subtitle__rename": "Puoi cambiare il nome della passkey per trovarla più facilmente.",
"userProfile.passkeyScreen.title__rename": "Rinomina passkey",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Si consiglia di uscire da tutti gli altri dispositivi che potrebbero aver utilizzato la vecchia password.",
"userProfile.passwordPage.readonly": "Attualmente non puoi modificare la password perché puoi accedere solo tramite connessione aziendale.",
"userProfile.passwordPage.successMessage__set": "La tua password è stata impostata.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Tutti gli altri dispositivi sono stati disconnessi.",
"userProfile.passwordPage.successMessage__update": "La tua password è stata aggiornata.",
"userProfile.passwordPage.title__set": "Imposta password",
"userProfile.passwordPage.title__update": "Aggiorna password",
"userProfile.phoneNumberPage.infoText": "Un messaggio di testo contenente un codice di verifica sarà inviato a questo numero. Potrebbero essere applicati costi per messaggi e dati.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} sarà rimosso da questo account.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Non potrai più accedere utilizzando questo numero di telefono.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} è stato rimosso dal tuo account.",
"userProfile.phoneNumberPage.removeResource.title": "Rimuovi numero di telefono",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} è stato aggiunto al tuo account.",
"userProfile.phoneNumberPage.title": "Aggiungi numero di telefono",
"userProfile.phoneNumberPage.verifySubtitle": "Inserisci il codice di verifica inviato a {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "Verifica numero di telefono",
"userProfile.profilePage.fileDropAreaHint": "Dimensione consigliata 1:1, fino a 10MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Rimuovi",
"userProfile.profilePage.imageFormSubtitle": "Carica",
"userProfile.profilePage.imageFormTitle": "Immagine del profilo",
"userProfile.profilePage.readonly": "Le informazioni del tuo profilo sono state fornite dalla connessione aziendale e non possono essere modificate.",
"userProfile.profilePage.successMessage": "Il tuo profilo è stato aggiornato.",
"userProfile.profilePage.title": "Aggiorna profilo",
"userProfile.start.activeDevicesSection.destructiveAction": "Disconnetti dispositivo",
"userProfile.start.activeDevicesSection.title": "Dispositivi attivi",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Riprova",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Autorizza ora",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Rimuovi",
"userProfile.start.connectedAccountsSection.primaryButton": "Collega account",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "Gli ambiti richiesti sono stati aggiornati e potresti riscontrare funzionalità limitate. Autorizza nuovamente questa applicazione per evitare problemi.",
"userProfile.start.connectedAccountsSection.title": "Account collegati",
"userProfile.start.dangerSection.deleteAccountButton": "Elimina account",
"userProfile.start.dangerSection.title": "Elimina account",
"userProfile.start.emailAddressesSection.destructiveAction": "Rimuovi email",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Imposta come principale",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Completa la verifica",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Verifica",
"userProfile.start.emailAddressesSection.primaryButton": "Aggiungi indirizzo email",
"userProfile.start.emailAddressesSection.title": "Indirizzi email",
"userProfile.start.enterpriseAccountsSection.title": "Account aziendali",
"userProfile.start.headerTitle__account": "Dettagli del profilo",
"userProfile.start.headerTitle__security": "Sicurezza",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Rigenera",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Codici di backup",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Ottieni un nuovo set di codici di backup sicuri. I codici precedenti verranno eliminati e non potranno più essere utilizzati.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Rigenera codici di backup",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Imposta come predefinito",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Rimuovi",
"userProfile.start.mfaSection.primaryButton": "Aggiungi verifica in due passaggi",
"userProfile.start.mfaSection.title": "Verifica in due passaggi",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Rimuovi",
"userProfile.start.mfaSection.totp.headerTitle": "Applicazione di autenticazione",
"userProfile.start.passkeysSection.menuAction__destructive": "Rimuovi",
"userProfile.start.passkeysSection.menuAction__rename": "Rinomina",
"userProfile.start.passkeysSection.title": "Passkey",
"userProfile.start.passwordSection.primaryButton__setPassword": "Imposta password",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Aggiorna password",
"userProfile.start.passwordSection.title": "Password",
"userProfile.start.phoneNumbersSection.destructiveAction": "Rimuovi numero di telefono",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Imposta come principale",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Completa la verifica",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Verifica numero di telefono",
"userProfile.start.phoneNumbersSection.primaryButton": "Aggiungi numero di telefono",
"userProfile.start.phoneNumbersSection.title": "Numeri di telefono",
"userProfile.start.profileSection.primaryButton": "Aggiorna profilo",
"userProfile.start.profileSection.title": "Profilo",
"userProfile.start.usernameSection.primaryButton__setUsername": "Imposta nome utente",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Aggiorna nome utente",
"userProfile.start.usernameSection.title": "Nome utente",
"userProfile.start.web3WalletsSection.destructiveAction": "Rimuovi wallet",
"userProfile.start.web3WalletsSection.primaryButton": "Wallet Web3",
"userProfile.start.web3WalletsSection.title": "Wallet Web3",
"userProfile.usernamePage.successMessage": "Il tuo nome utente è stato aggiornato.",
"userProfile.usernamePage.title__set": "Imposta nome utente",
"userProfile.usernamePage.title__update": "Aggiorna nome utente",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} verrà rimosso da questo account.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Non potrai più accedere utilizzando questo wallet Web3.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} è stato rimosso dal tuo account.",
"userProfile.web3WalletPage.removeResource.title": "Rimuovi wallet Web3",
"userProfile.web3WalletPage.subtitle__availableWallets": "Seleziona un wallet Web3 da collegare al tuo account.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Non ci sono wallet Web3 disponibili.",
"userProfile.web3WalletPage.successMessage": "Il wallet è stato aggiunto al tuo account.",
"userProfile.web3WalletPage.title": "Aggiungi wallet Web3"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Continua la sessione",
"clerkAuth.loginSuccess.desc": "{{greeting}}, è un piacere continuare a servirti. Riprendiamo da dove ci siamo interrotti.",
"clerkAuth.loginSuccess.title": "Bentornato, {{nickName}}",
"error.backHome": "Torna alla Home",
"error.desc": "Riprova più tardi o torna al mondo conosciuto.",
"error.retry": "Ricarica",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Spiacenti, la quota per questa chiave è stata raggiunta. Verifica il saldo del tuo account o aumenta la quota della chiave.",
"response.InvalidAccessCode": "Codice di accesso non valido o vuoto. Inserisci il codice corretto o aggiungi una API Key personalizzata.",
"response.InvalidBedrockCredentials": "Autenticazione Bedrock fallita. Verifica AccessKeyId/SecretAccessKey e riprova.",
"response.InvalidClerkUser": "Spiacenti, non sei attualmente connesso. Accedi o registrati per continuare.",
"response.InvalidComfyUIArgs": "Configurazione ComfyUI non valida. Controlla le impostazioni e riprova.",
"response.InvalidGithubToken": "Il token personale GitHub è errato o vuoto. Verifica il token e riprova.",
"response.InvalidOllamaArgs": "Configurazione Ollama non valida. Controlla le impostazioni e riprova.",

View file

@ -1,545 +0,0 @@
{
"backButton": "戻る",
"badge__default": "デフォルト",
"badge__otherImpersonatorDevice": "他のなりすましデバイス",
"badge__primary": "プライマリ",
"badge__requiresAction": "アクションが必要",
"badge__thisDevice": "このデバイス",
"badge__unverified": "未確認",
"badge__userDevice": "ユーザーデバイス",
"badge__you": "あなた",
"createOrganization.formButtonSubmit": "組織を作成",
"createOrganization.invitePage.formButtonReset": "スキップ",
"createOrganization.title": "組織を作成",
"dates.lastDay": "昨日 {{ date | timeString('ja-JP') }}",
"dates.next6Days": "{{ date | weekday('ja-JP','long') }} {{ date | timeString('ja-JP') }}",
"dates.nextDay": "明日 {{ date | timeString('ja-JP') }}",
"dates.numeric": "{{ date | numeric('ja-JP') }}",
"dates.previous6Days": "先週の{{ date | weekday('ja-JP','long') }} {{ date | timeString('ja-JP') }}",
"dates.sameDay": "今日 {{ date | timeString('ja-JP') }}",
"dividerText": "または",
"footerActionLink__useAnotherMethod": "他の方法を使用",
"footerPageLink__help": "ヘルプ",
"footerPageLink__privacy": "プライバシー",
"footerPageLink__terms": "利用規約",
"formButtonPrimary": "続行",
"formButtonPrimary__verify": "確認",
"formFieldAction__forgotPassword": "パスワードを忘れましたか?",
"formFieldError__matchingPasswords": "パスワードが一致しています。",
"formFieldError__notMatchingPasswords": "パスワードが一致しません。",
"formFieldError__verificationLinkExpired": "確認リンクの有効期限が切れています。新しいリンクをリクエストしてください。",
"formFieldHintText__optional": "任意",
"formFieldHintText__slug": "スラッグはユニークで人間が読めるIDです。URLでよく使用されます。",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "アカウントを削除",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "example@email.com, example2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "my-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "このドメインの自動招待を有効にする",
"formFieldLabel__backupCode": "バックアップコード",
"formFieldLabel__confirmDeletion": "確認",
"formFieldLabel__confirmPassword": "パスワードを確認",
"formFieldLabel__currentPassword": "現在のパスワード",
"formFieldLabel__emailAddress": "メールアドレス",
"formFieldLabel__emailAddress_username": "メールアドレスまたはユーザー名",
"formFieldLabel__emailAddresses": "メールアドレス",
"formFieldLabel__firstName": "名",
"formFieldLabel__lastName": "姓",
"formFieldLabel__newPassword": "新しいパスワード",
"formFieldLabel__organizationDomain": "ドメイン",
"formFieldLabel__organizationDomainDeletePending": "保留中の招待と提案を削除",
"formFieldLabel__organizationDomainEmailAddress": "検証メールアドレス",
"formFieldLabel__organizationDomainEmailAddressDescription": "このドメインの下でコードを受信してこのドメインを確認するためのメールアドレスを入力してください。",
"formFieldLabel__organizationName": "名前",
"formFieldLabel__organizationSlug": "スラッグ",
"formFieldLabel__passkeyName": "パスキーの名前",
"formFieldLabel__password": "パスワード",
"formFieldLabel__phoneNumber": "電話番号",
"formFieldLabel__role": "役割",
"formFieldLabel__signOutOfOtherSessions": "他のデバイスからサインアウト",
"formFieldLabel__username": "ユーザー名",
"impersonationFab.action__signOut": "サインアウト",
"impersonationFab.title": "{{identifier}} としてサインインしています",
"locale": "ja-JP",
"maintenanceMode": "現在、メンテナンス中ですが、心配しないでください。数分以内に完了するはずです。",
"membershipRole__admin": "管理者",
"membershipRole__basicMember": "メンバー",
"membershipRole__guestMember": "ゲスト",
"organizationList.action__createOrganization": "組織を作成",
"organizationList.action__invitationAccept": "参加する",
"organizationList.action__suggestionsAccept": "参加リクエスト",
"organizationList.createOrganization": "組織を作成",
"organizationList.invitationAcceptedLabel": "参加済み",
"organizationList.subtitle": "{{applicationName}} を続行するため",
"organizationList.suggestionsAcceptedLabel": "承認待ち",
"organizationList.title": "アカウントを選択",
"organizationList.titleWithoutPersonal": "組織を選択",
"organizationProfile.badge__automaticInvitation": "自動招待",
"organizationProfile.badge__automaticSuggestion": "自動提案",
"organizationProfile.badge__manualInvitation": "自動登録なし",
"organizationProfile.badge__unverified": "未確認",
"organizationProfile.createDomainPage.subtitle": "ドメインを追加して確認してください。このドメインのメールアドレスを持つユーザーは、組織に自動的に参加するか、参加をリクエストできます。",
"organizationProfile.createDomainPage.title": "ドメインを追加",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "招待状を送信できませんでした。次のメールアドレスには既に保留中の招待状があります:{{email_addresses}}。",
"organizationProfile.invitePage.formButtonPrimary__continue": "招待状を送信",
"organizationProfile.invitePage.selectDropdown__role": "役割を選択",
"organizationProfile.invitePage.subtitle": "1つ以上のメールアドレスを入力または貼り付けてください。スペースやカンマで区切ってください。",
"organizationProfile.invitePage.successMessage": "招待状が正常に送信されました",
"organizationProfile.invitePage.title": "新しいメンバーを招待",
"organizationProfile.membersPage.action__invite": "招待",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "メンバーを削除",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "アクション",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "参加日",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "役割",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "ユーザー",
"organizationProfile.membersPage.detailsTitle__emptyRow": "表示するメンバーはありません",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "組織とメールドメインを接続してユーザーを招待します。一致するメールドメインでサインアップしたユーザーはいつでも組織に参加できます。",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "自動招待",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "確認済みドメインを管理",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "表示する招待状はありません",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "招待を取り消す",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "招待中",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "一致するメールドメインでサインアップしたユーザーは、組織に参加をリクエストする提案を見ることができます。",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "自動提案",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "確認済みドメインを管理",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "承認",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "拒否",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "リクエスト済み",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "表示するリクエストはありません",
"organizationProfile.membersPage.start.headerTitle__invitations": "招待状",
"organizationProfile.membersPage.start.headerTitle__members": "メンバー",
"organizationProfile.membersPage.start.headerTitle__requests": "リクエスト",
"organizationProfile.navbar.description": "組織を管理します",
"organizationProfile.navbar.general": "一般",
"organizationProfile.navbar.members": "メンバー",
"organizationProfile.navbar.title": "組織",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "{{organizationName}} を入力して続行してください。",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "この組織を削除してもよろしいですか?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "この操作は取り消せません。",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "組織を削除しました",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "組織を削除",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "{{organizationName}} を入力して続行してください。",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "この組織を退出してもよろしいですか?",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "この操作は取り消せません。",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "組織を退出しました",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "組織を退出",
"organizationProfile.profilePage.dangerSection.title": "危険",
"organizationProfile.profilePage.domainSection.menuAction__manage": "管理",
"organizationProfile.profilePage.domainSection.menuAction__remove": "削除",
"organizationProfile.profilePage.domainSection.menuAction__verify": "確認",
"organizationProfile.profilePage.domainSection.primaryButton": "ドメインを追加",
"organizationProfile.profilePage.domainSection.subtitle": "確認済みメールドメインに基づいてユーザーが組織に自動的に参加するか、参加をリクエストできるようにします。",
"organizationProfile.profilePage.domainSection.title": "確認済みドメイン",
"organizationProfile.profilePage.successMessage": "組織が更新されました",
"organizationProfile.profilePage.title": "プロフィールを更新",
"organizationProfile.removeDomainPage.messageLine1": "{{domain}} のメールドメインが削除されます。",
"organizationProfile.removeDomainPage.messageLine2": "この後、ユーザーは組織に自動的に参加できなくなります。",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} が削除されました",
"organizationProfile.removeDomainPage.title": "ドメインを削除",
"organizationProfile.start.headerTitle__general": "一般",
"organizationProfile.start.headerTitle__members": "メンバー",
"organizationProfile.start.profileSection.primaryButton": "プロフィールを更新",
"organizationProfile.start.profileSection.title": "組織プロフィール",
"organizationProfile.start.profileSection.uploadAction__title": "ロゴをアップロード",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "このドメインを削除すると招待中のユーザーに影響します",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "ドメインを削除",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "このドメインを確認済みドメインから削除します",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "ドメインを削除",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "ユーザーはサインアップ時に組織に自動的に招待され、いつでも参加できます。",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "自動招待",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "ユーザーは参加をリクエストする提案を受け取りますが、管理者の承認が必要です。",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "自動提案",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "登録モードの変更は新規ユーザーにのみ影響します",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "ユーザーに送信された保留中の招待状:{{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "ユーザーに送信された保留中の提案:{{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "ユーザーは組織に手動でのみ招待できます。",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "自動登録なし",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "このドメインからのユーザーが組織に参加する方法を選択してください",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "危険",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "登録オプション",
"organizationProfile.verifiedDomainPage.subtitle": "ドメイン {{domain}} が確認済みです。登録モードを選択して続行してください",
"organizationProfile.verifiedDomainPage.title": "{{domain}} を更新",
"organizationProfile.verifyDomainPage.formSubtitle": "メールアドレスに送信された確認コードを入力してください",
"organizationProfile.verifyDomainPage.formTitle": "確認コード",
"organizationProfile.verifyDomainPage.resendButton": "コードを受信していませんか? 再送信",
"organizationProfile.verifyDomainPage.subtitle": "{{domainName}} のドメインをメールで確認する必要があります",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "確認コードが {{emailAddress}} に送信されました。コードを入力して続行してください",
"organizationProfile.verifyDomainPage.title": "ドメインを確認",
"organizationSwitcher.action__createOrganization": "組織を作成",
"organizationSwitcher.action__invitationAccept": "参加する",
"organizationSwitcher.action__manageOrganization": "管理",
"organizationSwitcher.action__suggestionsAccept": "参加リクエスト",
"organizationSwitcher.notSelected": "選択されている組織はありません",
"organizationSwitcher.personalWorkspace": "個人アカウント",
"organizationSwitcher.suggestionsAcceptedLabel": "承認待ち",
"paginationButton__next": "次へ",
"paginationButton__previous": "前へ",
"paginationRowText__displaying": "表示中",
"paginationRowText__of": "/",
"signIn.accountSwitcher.action__addAccount": "アカウントを追加",
"signIn.accountSwitcher.action__signOutAll": "すべてのアカウントからサインアウト",
"signIn.accountSwitcher.subtitle": "続行するアカウントを選択してください。",
"signIn.accountSwitcher.title": "アカウントを選択",
"signIn.alternativeMethods.actionLink": "ヘルプを受ける",
"signIn.alternativeMethods.actionText": "これらのいずれも持っていない場合",
"signIn.alternativeMethods.blockButton__backupCode": "バックアップコードを使用",
"signIn.alternativeMethods.blockButton__emailCode": "{{identifier}} にメールコードを送信",
"signIn.alternativeMethods.blockButton__emailLink": "{{identifier}} にメールリンクを送信",
"signIn.alternativeMethods.blockButton__passkey": "パスキーを使用してサインイン",
"signIn.alternativeMethods.blockButton__password": "パスワードでサインイン",
"signIn.alternativeMethods.blockButton__phoneCode": "{{identifier}} にSMSコードを送信",
"signIn.alternativeMethods.blockButton__totp": "認証アプリを使用",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "メールサポート",
"signIn.alternativeMethods.getHelp.content": "アカウントにサインインできない場合は、お問い合わせいただければ、できるだけ早くアクセスを回復するために協力します。",
"signIn.alternativeMethods.getHelp.title": "ヘルプを受ける",
"signIn.alternativeMethods.subtitle": "問題が発生していますか?これらの方法のいずれかを使用してサインインできます。",
"signIn.alternativeMethods.title": "別の方法を使用",
"signIn.backupCodeMfa.subtitle": "バックアップコードは、2段階認証を設定する際に受け取ったものです。",
"signIn.backupCodeMfa.title": "バックアップコードを入力",
"signIn.emailCode.formTitle": "確認コード",
"signIn.emailCode.resendButton": "コードが届かない場合は再送信",
"signIn.emailCode.subtitle": "{{applicationName}} へ続行するために",
"signIn.emailCode.title": "メールを確認",
"signIn.emailLink.expired.subtitle": "続行するには元のタブに戻ってください。",
"signIn.emailLink.expired.title": "この検証リンクは期限切れです",
"signIn.emailLink.failed.subtitle": "続行するには元のタブに戻ってください。",
"signIn.emailLink.failed.title": "この検証リンクは無効です",
"signIn.emailLink.formSubtitle": "メールに送信された検証リンクを使用",
"signIn.emailLink.formTitle": "検証リンク",
"signIn.emailLink.loading.subtitle": "すぐにリダイレクトされます",
"signIn.emailLink.loading.title": "サインイン中...",
"signIn.emailLink.resendButton": "リンクが届かない場合は再送信",
"signIn.emailLink.subtitle": "{{applicationName}} へ続行するために",
"signIn.emailLink.title": "メールを確認",
"signIn.emailLink.unusedTab.title": "このタブを閉じても構いません",
"signIn.emailLink.verified.subtitle": "すぐにリダイレクトされます",
"signIn.emailLink.verified.title": "正常にサインインしました",
"signIn.emailLink.verifiedSwitchTab.subtitle": "続行するには元のタブに戻ってください",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "続行するには新しく開いたタブに戻ってください",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "他のタブでサインイン済み",
"signIn.forgotPassword.formTitle": "パスワードをリセットするコード",
"signIn.forgotPassword.resendButton": "コードが届かない場合は再送信",
"signIn.forgotPassword.subtitle": "パスワードをリセットするため",
"signIn.forgotPassword.subtitle_email": "まず、メールアドレスに送信されたコードを入力してください",
"signIn.forgotPassword.subtitle_phone": "まず、電話に送信されたコードを入力してください",
"signIn.forgotPassword.title": "パスワードをリセット",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "パスワードをリセット",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "または、他の方法でサインイン",
"signIn.forgotPasswordAlternativeMethods.title": "パスワードを忘れましたか?",
"signIn.noAvailableMethods.message": "サインインを続行できません。利用可能な認証要素がありません。",
"signIn.noAvailableMethods.subtitle": "エラーが発生しました",
"signIn.noAvailableMethods.title": "サインインできません",
"signIn.passkey.subtitle": "パスキーを使用することで、あなたであることが確認されます。デバイスが指紋、顔認証、または画面ロックを要求する場合があります。",
"signIn.passkey.title": "パスキーを使用",
"signIn.password.actionLink": "他の方法を使用",
"signIn.password.subtitle": "アカウントに関連付けられたパスワードを入力してください",
"signIn.password.title": "パスワードを入力",
"signIn.passwordPwned.title": "パスワードが危険にさらされています",
"signIn.phoneCode.formTitle": "確認コード",
"signIn.phoneCode.resendButton": "コードが届かない場合は再送信",
"signIn.phoneCode.subtitle": "{{applicationName}} へ続行するために",
"signIn.phoneCode.title": "携帯電話を確認",
"signIn.phoneCodeMfa.formTitle": "確認コード",
"signIn.phoneCodeMfa.resendButton": "コードが届かない場合は再送信",
"signIn.phoneCodeMfa.subtitle": "続行するには、携帯電話に送信された確認コードを入力してください",
"signIn.phoneCodeMfa.title": "携帯電話を確認",
"signIn.resetPassword.formButtonPrimary": "パスワードをリセット",
"signIn.resetPassword.requiredMessage": "セキュリティ上の理由から、パスワードをリセットする必要があります。",
"signIn.resetPassword.successMessage": "パスワードが正常に変更されました。サインイン中です、しばらくお待ちください。",
"signIn.resetPassword.title": "新しいパスワードを設定",
"signIn.resetPasswordMfa.detailsLabel": "パスワードをリセットする前に、あなたの身元を確認する必要があります。",
"signIn.start.actionLink": "サインアップ",
"signIn.start.actionLink__use_email": "メールを使用",
"signIn.start.actionLink__use_email_username": "メールまたはユーザー名を使用",
"signIn.start.actionLink__use_passkey": "代わりにパスキーを使用",
"signIn.start.actionLink__use_phone": "電話を使用",
"signIn.start.actionLink__use_username": "ユーザー名を使用",
"signIn.start.actionText": "アカウントを持っていませんか?",
"signIn.start.subtitle": "お帰りなさい!続行するにはサインインしてください",
"signIn.start.title": "{{applicationName}} にサインイン",
"signIn.totpMfa.formTitle": "確認コード",
"signIn.totpMfa.subtitle": "続行するには、認証アプリで生成された確認コードを入力してください",
"signIn.totpMfa.title": "2段階認証",
"signInEnterPasswordTitle": "パスワードを入力",
"signUp.continue.actionLink": "サインイン",
"signUp.continue.actionText": "すでにアカウントをお持ちですか?",
"signUp.continue.subtitle": "続行するために残りの詳細を入力してください",
"signUp.continue.title": "残りのフィールドを入力",
"signUp.emailCode.formSubtitle": "メールアドレスに送信された検証コードを入力",
"signUp.emailCode.formTitle": "検証コード",
"signUp.emailCode.resendButton": "コードが届かない場合は再送信",
"signUp.emailCode.subtitle": "メールアドレスに送信された検証コードを入力してください",
"signUp.emailCode.title": "メールを検証",
"signUp.emailLink.formSubtitle": "メールアドレスに送信された検証リンクを使用",
"signUp.emailLink.formTitle": "検証リンク",
"signUp.emailLink.loading.title": "サインアップ中...",
"signUp.emailLink.resendButton": "リンクが届かない場合は再送信",
"signUp.emailLink.subtitle": "{{applicationName}} へ続行するために",
"signUp.emailLink.title": "メールを検証",
"signUp.emailLink.verified.title": "正常にサインアップしました",
"signUp.emailLink.verifiedSwitchTab.subtitle": "続行するには新しく開いたタブに戻ってください",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "続行するには前のタブに戻ってください",
"signUp.emailLink.verifiedSwitchTab.title": "メールが正常に検証されました",
"signUp.phoneCode.formSubtitle": "電話番号に送信された検証コードを入力",
"signUp.phoneCode.formTitle": "検証コード",
"signUp.phoneCode.resendButton": "コードが届かない場合は再送信",
"signUp.phoneCode.subtitle": "電話番号に送信された検証コードを入力してください",
"signUp.phoneCode.title": "電話を検証",
"signUp.start.actionLink": "サインイン",
"signUp.start.actionText": "すでにアカウントをお持ちですか?",
"signUp.start.subtitle": "ようこそ!始めるには詳細を入力してください",
"signUp.start.title": "アカウントを作成",
"socialButtonsBlockButton": "{{provider|titleize}} で続行",
"unstable__errors.captcha_invalid": "セキュリティ検証に失敗したため、サインアップできませんでした。もう一度試すにはページを更新するか、サポートにお問い合わせください。",
"unstable__errors.captcha_unavailable": "ボット検証に失敗したため、サインアップできませんでした。もう一度試すにはページを更新するか、サポートにお問い合わせください。",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "このメールアドレスは既に使用されています。別のものをお試しください。",
"unstable__errors.form_identifier_exists__phone_number": "この電話番号は既に使用されています。別のものをお試しください。",
"unstable__errors.form_identifier_exists__username": "このユーザー名は既に使用されています。別のものをお試しください。",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "有効なメールアドレスを入力してください。",
"unstable__errors.form_param_format_invalid__phone_number": "有効な国際フォーマットの電話番号を入力してください。",
"unstable__errors.form_param_max_length_exceeded__first_name": "名前は256文字を超えることはできません。",
"unstable__errors.form_param_max_length_exceeded__last_name": "姓は256文字を超えることはできません。",
"unstable__errors.form_param_max_length_exceeded__name": "名前は256文字を超えることはできません。",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "パスワードが強力ではありません。",
"unstable__errors.form_password_pwned": "このパスワードは侵害の一部として見つかったため使用できません。別のパスワードをお試しください。",
"unstable__errors.form_password_pwned__sign_in": "このパスワードは侵害の一部として見つかったため使用できません。パスワードをリセットしてください。",
"unstable__errors.form_password_size_in_bytes_exceeded": "パスワードが許容されるバイト数を超えています。短くするか、一部の特殊文字を削除してください。",
"unstable__errors.form_password_validation_failed": "パスワードが間違っています。",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "最後の識別情報を削除することはできません。",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "このデバイスにはすでにパスキーが登録されています。",
"unstable__errors.passkey_not_supported": "このデバイスではパスキーはサポートされていません。",
"unstable__errors.passkey_pa_not_supported": "登録にはプラットフォーム認証子が必要ですが、デバイスがサポートしていません。",
"unstable__errors.passkey_registration_cancelled": "パスキーの登録がキャンセルされたか、タイムアウトしました。",
"unstable__errors.passkey_retrieval_cancelled": "パスキーの確認がキャンセルされたか、タイムアウトしました。",
"unstable__errors.passwordComplexity.maximumLength": "{{length}}文字未満",
"unstable__errors.passwordComplexity.minimumLength": "{{length}}文字以上",
"unstable__errors.passwordComplexity.requireLowercase": "小文字の文字",
"unstable__errors.passwordComplexity.requireNumbers": "数字",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "特殊文字",
"unstable__errors.passwordComplexity.requireUppercase": "大文字の文字",
"unstable__errors.passwordComplexity.sentencePrefix": "パスワードには次の要素が含まれる必要があります",
"unstable__errors.phone_number_exists": "この電話番号は既に使用されています。別のものをお試しください。",
"unstable__errors.zxcvbn.couldBeStronger": "パスワードは機能しますが、もっと強力にすることができます。もっと文字を追加してみてください。",
"unstable__errors.zxcvbn.goodPassword": "パスワードはすべての必要条件を満たしています。",
"unstable__errors.zxcvbn.notEnough": "パスワードが強力ではありません。",
"unstable__errors.zxcvbn.suggestions.allUppercase": "すべての文字を大文字にする",
"unstable__errors.zxcvbn.suggestions.anotherWord": "一般的でない単語を追加する",
"unstable__errors.zxcvbn.suggestions.associatedYears": "自分に関連する年を避ける",
"unstable__errors.zxcvbn.suggestions.capitalization": "最初の文字以外も大文字にする",
"unstable__errors.zxcvbn.suggestions.dates": "自分に関連する日付を避ける",
"unstable__errors.zxcvbn.suggestions.l33t": "予測可能な文字の置換(例:'a' を '@' に)を避ける",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "長いキーボードパターンを使用し、入力方向を複数回変更する",
"unstable__errors.zxcvbn.suggestions.noNeed": "記号、数字、大文字を使用せずに強力なパスワードを作成できます",
"unstable__errors.zxcvbn.suggestions.pwned": "他の場所でこのパスワードを使用している場合は変更してください",
"unstable__errors.zxcvbn.suggestions.recentYears": "最近の年を避ける",
"unstable__errors.zxcvbn.suggestions.repeated": "繰り返された単語や文字を避ける",
"unstable__errors.zxcvbn.suggestions.reverseWords": "一般的な単語の逆スペルを避ける",
"unstable__errors.zxcvbn.suggestions.sequences": "一般的な文字のシーケンスを避ける",
"unstable__errors.zxcvbn.suggestions.useWords": "複数の単語を使用するが、一般的なフレーズは避ける",
"unstable__errors.zxcvbn.warnings.common": "これは一般的に使用されるパスワードです",
"unstable__errors.zxcvbn.warnings.commonNames": "一般的な名前や姓は推測されやすいです",
"unstable__errors.zxcvbn.warnings.dates": "日付は推測されやすいです",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "「abcabcabc」のような繰り返し文字パターンは推測されやすいです",
"unstable__errors.zxcvbn.warnings.keyPattern": "短いキーボードパターンは推測されやすいです",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "単独の名前や姓は推測されやすいです",
"unstable__errors.zxcvbn.warnings.pwned": "インターネット上のデータ侵害でパスワードが公開されました",
"unstable__errors.zxcvbn.warnings.recentYears": "最近の年は推測されやすいです",
"unstable__errors.zxcvbn.warnings.sequences": "「abc」のような一般的な文字のシーケンスは推測されやすいです",
"unstable__errors.zxcvbn.warnings.similarToCommon": "これは一般的に使用されるパスワードに類似しています",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "「aaa」のような繰り返し文字は推測されやすいです",
"unstable__errors.zxcvbn.warnings.straightRow": "キーボードの直線的な行は推測されやすいです",
"unstable__errors.zxcvbn.warnings.topHundred": "これは頻繁に使用されるパスワードです",
"unstable__errors.zxcvbn.warnings.topTen": "これは非常に使用されるパスワードです",
"unstable__errors.zxcvbn.warnings.userInputs": "個人情報やページ関連のデータを含めないでください",
"unstable__errors.zxcvbn.warnings.wordByItself": "単語単体は推測されやすいです",
"userButton.action__addAccount": "アカウントを追加",
"userButton.action__manageAccount": "アカウントを管理",
"userButton.action__signOut": "サインアウト",
"userButton.action__signOutAll": "すべてのアカウントからサインアウト",
"userProfile.backupCodePage.actionLabel__copied": "コピーしました!",
"userProfile.backupCodePage.actionLabel__copy": "すべてコピー",
"userProfile.backupCodePage.actionLabel__download": ".txt ダウンロード",
"userProfile.backupCodePage.actionLabel__print": "印刷",
"userProfile.backupCodePage.infoText1": "このアカウントのバックアップコードが有効になります。",
"userProfile.backupCodePage.infoText2": "バックアップコードは秘密に保ち、安全に保管してください。疑わしい場合はバックアップコードを再生成できます。",
"userProfile.backupCodePage.subtitle__codelist": "安全に保管し、秘密にしてください。",
"userProfile.backupCodePage.successMessage": "バックアップコードが有効になりました。認証デバイスへのアクセスが失われた場合、これらのいずれかを使用してアカウントにサインインできます。各コードは1回しか使用できません。",
"userProfile.backupCodePage.successSubtitle": "認証デバイスへのアクセスが失われた場合、これらのいずれかを使用してアカウントにサインインできます。",
"userProfile.backupCodePage.title": "バックアップコードの検証を追加",
"userProfile.backupCodePage.title__codelist": "バックアップコード",
"userProfile.connectedAccountPage.formHint": "アカウントを接続するプロバイダを選択してください。",
"userProfile.connectedAccountPage.formHint__noAccounts": "利用可能な外部アカウントプロバイダはありません。",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} はこのアカウントから削除されます。",
"userProfile.connectedAccountPage.removeResource.messageLine2": "この接続されたアカウントを使用したり、依存する機能を使用したりすることはできなくなります。",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} がアカウントから削除されました。",
"userProfile.connectedAccountPage.removeResource.title": "接続されたアカウントを削除",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "プロバイダがアカウントに追加されました",
"userProfile.connectedAccountPage.title": "接続されたアカウントを追加",
"userProfile.deletePage.actionDescription": "\"アカウントを削除\" と入力して続行してください。",
"userProfile.deletePage.confirm": "アカウントを削除",
"userProfile.deletePage.messageLine1": "アカウントを削除してもよろしいですか?",
"userProfile.deletePage.messageLine2": "この操作は永久的で取り消しできません。",
"userProfile.deletePage.title": "アカウントを削除",
"userProfile.emailAddressPage.emailCode.formHint": "このメールアドレスに送信された確認コードを含むメールが送信されます。",
"userProfile.emailAddressPage.emailCode.formSubtitle": "{{identifier}} に送信された確認コードを入力してください。",
"userProfile.emailAddressPage.emailCode.formTitle": "確認コード",
"userProfile.emailAddressPage.emailCode.resendButton": "コードを受信していませんか? 再送信",
"userProfile.emailAddressPage.emailCode.successMessage": "メール {{identifier}} がアカウントに追加されました。",
"userProfile.emailAddressPage.emailLink.formHint": "このメールアドレスに送信された確認リンクを含むメールが送信されます。",
"userProfile.emailAddressPage.emailLink.formSubtitle": "{{identifier}} に送信されたメール内の確認リンクをクリックしてください。",
"userProfile.emailAddressPage.emailLink.formTitle": "確認リンク",
"userProfile.emailAddressPage.emailLink.resendButton": "リンクを受信していませんか? 再送信",
"userProfile.emailAddressPage.emailLink.successMessage": "メール {{identifier}} がアカウントに追加されました。",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} はこのアカウントから削除されます。",
"userProfile.emailAddressPage.removeResource.messageLine2": "このメールアドレスを使用してサインインすることはできなくなります。",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} がアカウントから削除されました。",
"userProfile.emailAddressPage.removeResource.title": "メールアドレスを削除",
"userProfile.emailAddressPage.title": "メールアドレスを追加",
"userProfile.emailAddressPage.verifyTitle": "メールアドレスを確認",
"userProfile.formButtonPrimary__add": "追加",
"userProfile.formButtonPrimary__continue": "続行",
"userProfile.formButtonPrimary__finish": "完了",
"userProfile.formButtonPrimary__remove": "削除",
"userProfile.formButtonPrimary__save": "保存",
"userProfile.formButtonReset": "キャンセル",
"userProfile.mfaPage.formHint": "追加する方法を選択してください。",
"userProfile.mfaPage.title": "2段階認証を追加",
"userProfile.mfaPhoneCodePage.backButton": "既存の番号を使用",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "電話番号を追加",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "サインイン時にこの番号からの確認コードが不要になります。",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "アカウントのセキュリティが低下する可能性があります。続行しますか?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "{{mfaPhoneCode}} のSMSコード2段階認証が削除されました。",
"userProfile.mfaPhoneCodePage.removeResource.title": "2段階認証を削除",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "SMSコード2段階認証に登録する既存の電話番号を選択するか、新しい電話番号を追加してください。",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "SMSコード2段階認証に登録する利用可能な電話番号はありません。新しい電話番号を追加してください。",
"userProfile.mfaPhoneCodePage.successMessage1": "サインイン時に、この電話番号に送信された確認コードを追加の手順として入力する必要があります。",
"userProfile.mfaPhoneCodePage.successMessage2": "これらのバックアップコードを保存し、安全な場所に保管してください。認証デバイスへのアクセスが失われた場合、バックアップコードを使用できます。",
"userProfile.mfaPhoneCodePage.successTitle": "SMSコード検証が有効になりました",
"userProfile.mfaPhoneCodePage.title": "SMSコード検証を追加",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "代わりにQRコードをスキャン",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "QRコードをスキャンできませんか",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "認証アプリで新しいサインイン方法を設定し、以下のQRコードをスキャンしてアカウントにリンクしてください。",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "認証アプリで新しいサインイン方法を設定し、以下のキーを入力してください。",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "タイムベースまたはワンタイムパスワードが有効になっていることを確認し、アカウントのリンクを完了してください。",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "代替として、認証アプリがTOTP URIをサポートしている場合は、フルURIをコピーすることもできます。",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "この認証アプリからの確認コードは、サインイン時に不要になります。",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "アカウントのセキュリティが低下する可能性があります。続行しますか?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "認証アプリによる2段階認証が削除されました。",
"userProfile.mfaTOTPPage.removeResource.title": "2段階認証を削除",
"userProfile.mfaTOTPPage.successMessage": "2段階認証が有効になりました。サインイン時に、この認証アプリからの確認コードを追加の手順として入力する必要があります。",
"userProfile.mfaTOTPPage.title": "認証アプリを追加",
"userProfile.mfaTOTPPage.verifySubtitle": "認証アプリで生成された確認コードを入力してください",
"userProfile.mfaTOTPPage.verifyTitle": "確認コード",
"userProfile.mobileButton__menu": "メニュー",
"userProfile.navbar.account": "プロフィール",
"userProfile.navbar.description": "アカウント情報を管理します。",
"userProfile.navbar.security": "セキュリティ",
"userProfile.navbar.title": "アカウント",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} がこのアカウントから削除されます。",
"userProfile.passkeyScreen.removeResource.title": "パスキーを削除",
"userProfile.passkeyScreen.subtitle__rename": "パスキー名を変更して見つけやすくすることができます。",
"userProfile.passkeyScreen.title__rename": "パスキーの名前を変更",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "古いパスワードを使用した可能性のあるすべての他のデバイスからサインアウトすることをお勧めします。",
"userProfile.passwordPage.readonly": "現在、パスワードを編集できません。企業接続を介してのみサインインできます。",
"userProfile.passwordPage.successMessage__set": "パスワードが設定されました。",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "すべての他のデバイスからサインアウトされました。",
"userProfile.passwordPage.successMessage__update": "パスワードが更新されました。",
"userProfile.passwordPage.title__set": "パスワードを設定",
"userProfile.passwordPage.title__update": "パスワードを更新",
"userProfile.phoneNumberPage.infoText": "検証コードが含まれたテキストメッセージがこの電話番号に送信されます。メッセージ料金が発生する場合があります。",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} がこのアカウントから削除されます。",
"userProfile.phoneNumberPage.removeResource.messageLine2": "この電話番号を使用してサインインすることはできなくなります。",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} がアカウントから削除されました。",
"userProfile.phoneNumberPage.removeResource.title": "電話番号を削除",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} がアカウントに追加されました。",
"userProfile.phoneNumberPage.title": "電話番号を追加",
"userProfile.phoneNumberPage.verifySubtitle": "{{identifier}} に送信された検証コードを入力してください。",
"userProfile.phoneNumberPage.verifyTitle": "電話番号を検証",
"userProfile.profilePage.fileDropAreaHint": "推奨サイズ 1:1、最大10MB。",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "削除",
"userProfile.profilePage.imageFormSubtitle": "アップロード",
"userProfile.profilePage.imageFormTitle": "プロフィール画像",
"userProfile.profilePage.readonly": "プロフィール情報は企業接続によって提供され、編集できません。",
"userProfile.profilePage.successMessage": "プロフィールが更新されました。",
"userProfile.profilePage.title": "プロフィールを更新",
"userProfile.start.activeDevicesSection.destructiveAction": "デバイスからサインアウト",
"userProfile.start.activeDevicesSection.title": "アクティブデバイス",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "再試行",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "今すぐ認証",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "削除",
"userProfile.start.connectedAccountsSection.primaryButton": "アカウントを接続",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "必要なスコープが更新されており、機能が制限されている可能性があります。問題を回避するために、このアプリケーションを再認証してください。",
"userProfile.start.connectedAccountsSection.title": "接続されたアカウント",
"userProfile.start.dangerSection.deleteAccountButton": "アカウントを削除",
"userProfile.start.dangerSection.title": "アカウントを削除",
"userProfile.start.emailAddressesSection.destructiveAction": "メールを削除",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "プライマリに設定",
"userProfile.start.emailAddressesSection.detailsAction__primary": "検証を完了",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "検証",
"userProfile.start.emailAddressesSection.primaryButton": "メールアドレスを追加",
"userProfile.start.emailAddressesSection.title": "メールアドレス",
"userProfile.start.enterpriseAccountsSection.title": "エンタープライズアカウント",
"userProfile.start.headerTitle__account": "プロフィール詳細",
"userProfile.start.headerTitle__security": "セキュリティ",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "再生成",
"userProfile.start.mfaSection.backupCodes.headerTitle": "バックアップコード",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "安全なバックアップコードの新しいセットを取得します。以前のバックアップコードは削除され、使用できなくなります。",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "バックアップコードを再生成",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "デフォルトに設定",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "削除",
"userProfile.start.mfaSection.primaryButton": "2段階認証を追加",
"userProfile.start.mfaSection.title": "2段階認証",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "削除",
"userProfile.start.mfaSection.totp.headerTitle": "認証アプリケーション",
"userProfile.start.passkeysSection.menuAction__destructive": "削除",
"userProfile.start.passkeysSection.menuAction__rename": "名前を変更",
"userProfile.start.passkeysSection.title": "パスキー",
"userProfile.start.passwordSection.primaryButton__setPassword": "パスワードを設定",
"userProfile.start.passwordSection.primaryButton__updatePassword": "パスワードを更新",
"userProfile.start.passwordSection.title": "パスワード",
"userProfile.start.phoneNumbersSection.destructiveAction": "電話番号を削除",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "プライマリに設定",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "検証を完了",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "電話番号を検証",
"userProfile.start.phoneNumbersSection.primaryButton": "電話番号を追加",
"userProfile.start.phoneNumbersSection.title": "電話番号",
"userProfile.start.profileSection.primaryButton": "プロフィールを更新",
"userProfile.start.profileSection.title": "プロフィール",
"userProfile.start.usernameSection.primaryButton__setUsername": "ユーザー名を設定",
"userProfile.start.usernameSection.primaryButton__updateUsername": "ユーザー名を更新",
"userProfile.start.usernameSection.title": "ユーザー名",
"userProfile.start.web3WalletsSection.destructiveAction": "ウォレットを削除",
"userProfile.start.web3WalletsSection.primaryButton": "Web3ウォレット",
"userProfile.start.web3WalletsSection.title": "Web3ウォレット",
"userProfile.usernamePage.successMessage": "ユーザー名が更新されました。",
"userProfile.usernamePage.title__set": "ユーザー名を設定",
"userProfile.usernamePage.title__update": "ユーザー名を更新",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} がこのアカウントから削除されます。",
"userProfile.web3WalletPage.removeResource.messageLine2": "このWeb3ウォレットを使用してサインインすることはできなくなります。",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} がアカウントから削除されました。",
"userProfile.web3WalletPage.removeResource.title": "Web3ウォレットを削除",
"userProfile.web3WalletPage.subtitle__availableWallets": "アカウントに接続するWeb3ウォレットを選択してください。",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "利用可能なWeb3ウォレットはありません。",
"userProfile.web3WalletPage.successMessage": "ウォレットがアカウントに追加されました。",
"userProfile.web3WalletPage.title": "Web3ウォレットを追加"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "続ける",
"clerkAuth.loginSuccess.desc": "{{greeting}}、{{nickName}} さん。前回のトピックに戻ります。いつでも新しいトピックに切り替えられます",
"clerkAuth.loginSuccess.title": "おかえりなさい、{{nickName}}",
"error.backHome": "ホームに戻る",
"error.desc": "ページが一時的に利用できません。ホームに戻るか、時間を置いて再試行してください(設定は失われません)",
"error.retry": "再読み込み",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "クォータが使い果たされました。残高/クォータ設定を確認するか、使用可能な API キーに切り替えてから再試行してください",
"response.InvalidAccessCode": "アクセスパスワードが空または正しくありません。正しいパスワードを再入力するか、カスタム API キーを使用してください",
"response.InvalidBedrockCredentials": "Bedrock 認証に失敗しました。AccessKeyId/SecretAccessKey を確認してから再試行してください",
"response.InvalidClerkUser": "ログインが必要です。先にログインまたは登録してください",
"response.InvalidComfyUIArgs": "ComfyUI 設定が正しくありません。設定を確認してから再試行してください",
"response.InvalidGithubToken": "GitHub PAT が空または正しくありません。確認してから再試行してください",
"response.InvalidOllamaArgs": "Ollama 設定が正しくありません。設定を確認してから再試行してください",

View file

@ -1,545 +0,0 @@
{
"backButton": "뒤로가기",
"badge__default": "기본",
"badge__otherImpersonatorDevice": "다른 가장 장치",
"badge__primary": "기본",
"badge__requiresAction": "조치 필요",
"badge__thisDevice": "이 장치",
"badge__unverified": "미인증",
"badge__userDevice": "사용자 장치",
"badge__you": "당신",
"createOrganization.formButtonSubmit": "조직 만들기",
"createOrganization.invitePage.formButtonReset": "건너뛰기",
"createOrganization.title": "조직 만들기",
"dates.lastDay": "어제 {{ date | timeString('ko-KR') }}",
"dates.next6Days": "{{ date | weekday('ko-KR','long') }} {{ date | timeString('ko-KR') }}",
"dates.nextDay": "내일 {{ date | timeString('ko-KR') }}",
"dates.numeric": "{{ date | numeric('ko-KR') }}",
"dates.previous6Days": "지난 {{ date | weekday('ko-KR','long') }} {{ date | timeString('ko-KR') }}",
"dates.sameDay": "오늘 {{ date | timeString('ko-KR') }}",
"dividerText": "또는",
"footerActionLink__useAnotherMethod": "다른 방법 사용",
"footerPageLink__help": "도움말",
"footerPageLink__privacy": "개인정보",
"footerPageLink__terms": "약관",
"formButtonPrimary": "계속",
"formButtonPrimary__verify": "인증",
"formFieldAction__forgotPassword": "비밀번호를 잊으셨나요?",
"formFieldError__matchingPasswords": "비밀번호가 일치합니다.",
"formFieldError__notMatchingPasswords": "비밀번호가 일치하지 않습니다.",
"formFieldError__verificationLinkExpired": "인증 링크가 만료되었습니다. 새 링크를 요청하세요.",
"formFieldHintText__optional": "선택 사항",
"formFieldHintText__slug": "슬러그는 사람이 읽을 수 있는 고유 ID로, 일반적으로 URL에 사용됩니다.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "계정 삭제",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "하나 이상의 이메일 주소를 입력하거나 붙여넣으세요. 공백 또는 쉼표로 구분합니다.",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "my-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "이 도메인에 대해 자동 초대 활성화",
"formFieldLabel__backupCode": "백업 코드",
"formFieldLabel__confirmDeletion": "확인",
"formFieldLabel__confirmPassword": "비밀번호 확인",
"formFieldLabel__currentPassword": "현재 비밀번호",
"formFieldLabel__emailAddress": "이메일 주소",
"formFieldLabel__emailAddress_username": "이메일 주소 또는 사용자 이름",
"formFieldLabel__emailAddresses": "이메일 주소",
"formFieldLabel__firstName": "이름",
"formFieldLabel__lastName": "성",
"formFieldLabel__newPassword": "새 비밀번호",
"formFieldLabel__organizationDomain": "도메인",
"formFieldLabel__organizationDomainDeletePending": "보류 중인 초대 및 제안 삭제",
"formFieldLabel__organizationDomainEmailAddress": "이메일 주소 인증",
"formFieldLabel__organizationDomainEmailAddressDescription": "이 도메인에 속한 이메일 주소를 입력하여 인증 코드를 받고 도메인을 인증하세요.",
"formFieldLabel__organizationName": "조직 이름",
"formFieldLabel__organizationSlug": "URL 슬러그",
"formFieldLabel__passkeyName": "패스키 이름",
"formFieldLabel__password": "비밀번호",
"formFieldLabel__phoneNumber": "전화번호",
"formFieldLabel__role": "역할",
"formFieldLabel__signOutOfOtherSessions": "다른 모든 장치에서 로그아웃",
"formFieldLabel__username": "사용자 이름",
"impersonationFab.action__signOut": "로그아웃",
"impersonationFab.title": "{{identifier}}로 로그인됨",
"locale": "ko-KR",
"maintenanceMode": "현재 유지보수 중입니다. 몇 분 내로 완료될 예정이니 걱정하지 마세요.",
"membershipRole__admin": "관리자",
"membershipRole__basicMember": "구성원",
"membershipRole__guestMember": "게스트",
"organizationList.action__createOrganization": "조직 만들기",
"organizationList.action__invitationAccept": "가입",
"organizationList.action__suggestionsAccept": "가입 요청",
"organizationList.createOrganization": "조직 만들기",
"organizationList.invitationAcceptedLabel": "가입됨",
"organizationList.subtitle": "{{applicationName}}을 계속 사용하려면 선택하세요",
"organizationList.suggestionsAcceptedLabel": "승인 대기 중",
"organizationList.title": "계정 선택",
"organizationList.titleWithoutPersonal": "조직 선택",
"organizationProfile.badge__automaticInvitation": "자동 초대",
"organizationProfile.badge__automaticSuggestion": "자동 제안",
"organizationProfile.badge__manualInvitation": "자동 등록 없음",
"organizationProfile.badge__unverified": "미인증",
"organizationProfile.createDomainPage.subtitle": "도메인을 추가하여 인증하세요. 이 도메인의 이메일 주소를 가진 사용자는 자동으로 가입하거나 요청할 수 있습니다.",
"organizationProfile.createDomainPage.title": "도메인 추가",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "초대 전송 실패. 다음 이메일 주소는 이미 보류 중인 초대가 있습니다: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "초대 전송",
"organizationProfile.invitePage.selectDropdown__role": "역할 선택",
"organizationProfile.invitePage.subtitle": "하나 이상의 이메일 주소를 입력하거나 붙여넣으세요. 공백 또는 쉼표로 구분합니다.",
"organizationProfile.invitePage.successMessage": "초대가 성공적으로 전송되었습니다",
"organizationProfile.invitePage.title": "새 구성원 초대",
"organizationProfile.membersPage.action__invite": "초대",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "구성원 제거",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "가입일",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "역할",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "사용자",
"organizationProfile.membersPage.detailsTitle__emptyRow": "표시할 구성원이 없습니다",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "이메일 도메인을 연결하여 사용자를 자동으로 초대합니다. 일치하는 이메일 도메인으로 가입한 사용자는 언제든지 조직에 가입할 수 있습니다.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "자동 초대",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "인증된 도메인 관리",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "표시할 초대가 없습니다",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "초대 취소",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "초대일",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "일치하는 이메일 도메인으로 가입한 사용자는 조직 가입 제안을 볼 수 있습니다.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "자동 제안",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "인증된 도메인 관리",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "승인",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "거부",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "요청일",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "표시할 요청이 없습니다",
"organizationProfile.membersPage.start.headerTitle__invitations": "초대",
"organizationProfile.membersPage.start.headerTitle__members": "구성원",
"organizationProfile.membersPage.start.headerTitle__requests": "요청",
"organizationProfile.navbar.description": "조직 관리",
"organizationProfile.navbar.general": "일반",
"organizationProfile.navbar.members": "구성원",
"organizationProfile.navbar.title": "조직",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "계속하려면 아래에 “{{organizationName}}”을 입력하세요.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "이 조직을 삭제하시겠습니까?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "이 작업은 영구적이며 되돌릴 수 없습니다.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "조직이 삭제되었습니다",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "조직 삭제",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "계속하려면 아래에 “{{organizationName}}”을 입력하세요.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "이 조직을 떠나시겠습니까? 조직 및 애플리케이션에 대한 접근 권한을 잃게 됩니다.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "이 작업은 영구적이며 되돌릴 수 없습니다.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "조직을 떠났습니다",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "조직 떠나기",
"organizationProfile.profilePage.dangerSection.title": "위험",
"organizationProfile.profilePage.domainSection.menuAction__manage": "관리",
"organizationProfile.profilePage.domainSection.menuAction__remove": "삭제",
"organizationProfile.profilePage.domainSection.menuAction__verify": "인증",
"organizationProfile.profilePage.domainSection.primaryButton": "도메인 추가",
"organizationProfile.profilePage.domainSection.subtitle": "인증된 이메일 도메인을 기반으로 사용자가 자동으로 가입하거나 요청할 수 있도록 허용합니다.",
"organizationProfile.profilePage.domainSection.title": "인증된 도메인",
"organizationProfile.profilePage.successMessage": "조직이 업데이트되었습니다",
"organizationProfile.profilePage.title": "프로필 업데이트",
"organizationProfile.removeDomainPage.messageLine1": "이메일 도메인 {{domain}}이 제거됩니다.",
"organizationProfile.removeDomainPage.messageLine2": "이후 사용자는 자동으로 조직에 가입할 수 없습니다.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}}이 제거되었습니다",
"organizationProfile.removeDomainPage.title": "도메인 제거",
"organizationProfile.start.headerTitle__general": "일반",
"organizationProfile.start.headerTitle__members": "구성원",
"organizationProfile.start.profileSection.primaryButton": "프로필 업데이트",
"organizationProfile.start.profileSection.title": "조직 프로필",
"organizationProfile.start.profileSection.uploadAction__title": "로고",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "이 도메인을 제거하면 초대된 사용자에게 영향을 미칩니다.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "도메인 제거",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "인증된 도메인에서 이 도메인을 제거합니다",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "도메인 제거",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "사용자가 가입하면 자동으로 조직에 초대되며 언제든지 가입할 수 있습니다.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "자동 초대",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "사용자는 가입 요청 제안을 받으며, 관리자의 승인이 필요합니다.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "자동 제안",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "등록 모드 변경은 신규 사용자에게만 적용됩니다.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "보류 중인 초대 수: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "보류 중인 제안 수: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "사용자는 수동으로만 조직에 초대될 수 있습니다.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "자동 가입 없음",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "이 도메인의 사용자가 조직에 어떻게 가입할지 선택하세요.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "위험",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "등록 옵션",
"organizationProfile.verifiedDomainPage.subtitle": "도메인 {{domain}}이 인증되었습니다. 계속해서 등록 모드를 선택하세요.",
"organizationProfile.verifiedDomainPage.title": "{{domain}} 업데이트",
"organizationProfile.verifyDomainPage.formSubtitle": "이메일 주소로 전송된 인증 코드를 입력하세요",
"organizationProfile.verifyDomainPage.formTitle": "인증 코드",
"organizationProfile.verifyDomainPage.resendButton": "코드를 받지 못하셨나요? 다시 보내기",
"organizationProfile.verifyDomainPage.subtitle": "도메인 {{domainName}}을 이메일로 인증해야 합니다.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "{{emailAddress}}로 인증 코드가 전송되었습니다. 계속하려면 코드를 입력하세요.",
"organizationProfile.verifyDomainPage.title": "도메인 인증",
"organizationSwitcher.action__createOrganization": "조직 생성",
"organizationSwitcher.action__invitationAccept": "가입",
"organizationSwitcher.action__manageOrganization": "관리",
"organizationSwitcher.action__suggestionsAccept": "가입 요청",
"organizationSwitcher.notSelected": "선택된 조직 없음",
"organizationSwitcher.personalWorkspace": "개인 계정",
"organizationSwitcher.suggestionsAcceptedLabel": "승인 대기 중",
"paginationButton__next": "다음",
"paginationButton__previous": "이전",
"paginationRowText__displaying": "표시 중",
"paginationRowText__of": "중",
"signIn.accountSwitcher.action__addAccount": "계정 추가",
"signIn.accountSwitcher.action__signOutAll": "모든 계정 로그아웃",
"signIn.accountSwitcher.subtitle": "계속하려는 계정을 선택하세요.",
"signIn.accountSwitcher.title": "계정 선택",
"signIn.alternativeMethods.actionLink": "도움 받기",
"signIn.alternativeMethods.actionText": "이러한 방법 중 하나를 사용하시겠어요?",
"signIn.alternativeMethods.blockButton__backupCode": "백업 코드 사용",
"signIn.alternativeMethods.blockButton__emailCode": "{{identifier}}에게 이메일 코드 보내기",
"signIn.alternativeMethods.blockButton__emailLink": "{{identifier}}에게 이메일 링크 보내기",
"signIn.alternativeMethods.blockButton__passkey": "패스키로 로그인",
"signIn.alternativeMethods.blockButton__password": "비밀번호로 로그인",
"signIn.alternativeMethods.blockButton__phoneCode": "{{identifier}}에게 SMS 코드 보내기",
"signIn.alternativeMethods.blockButton__totp": "인증 앱 사용",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "이메일 지원",
"signIn.alternativeMethods.getHelp.content": "계정에 로그인하는 데 어려움을 겪고 계신다면, 이메일을 보내주시면 최대한 빨리 접속을 복구하는 데 도움을 드리겠습니다.",
"signIn.alternativeMethods.getHelp.title": "도움 받기",
"signIn.alternativeMethods.subtitle": "문제가 발생했나요? 이 방법 중 하나를 사용하여 로그인할 수 있습니다.",
"signIn.alternativeMethods.title": "다른 방법 사용",
"signIn.backupCodeMfa.subtitle": "백업 코드는 이중 인증 설정 시 받은 코드입니다.",
"signIn.backupCodeMfa.title": "백업 코드 입력",
"signIn.emailCode.formTitle": "인증 코드",
"signIn.emailCode.resendButton": "코드를 받지 못했나요? 다시 보내기",
"signIn.emailCode.subtitle": "{{applicationName}}으로 계속하려면",
"signIn.emailCode.title": "이메일 확인",
"signIn.emailLink.expired.subtitle": "계속하려면 원래 탭으로 돌아가세요.",
"signIn.emailLink.expired.title": "이 확인 링크가 만료되었습니다.",
"signIn.emailLink.failed.subtitle": "계속하려면 원래 탭으로 돌아가세요.",
"signIn.emailLink.failed.title": "이 확인 링크가 유효하지 않습니다.",
"signIn.emailLink.formSubtitle": "이메일로 보낸 확인 링크 사용",
"signIn.emailLink.formTitle": "확인 링크",
"signIn.emailLink.loading.subtitle": "곧 리디렉션됩니다.",
"signIn.emailLink.loading.title": "로그인 중...",
"signIn.emailLink.resendButton": "링크를 받지 못했나요? 다시 보내기",
"signIn.emailLink.subtitle": "{{applicationName}}으로 계속하려면",
"signIn.emailLink.title": "이메일 확인",
"signIn.emailLink.unusedTab.title": "이 탭을 닫아도 됩니다.",
"signIn.emailLink.verified.subtitle": "곧 리디렉션됩니다.",
"signIn.emailLink.verified.title": "로그인 성공",
"signIn.emailLink.verifiedSwitchTab.subtitle": "계속하려면 원래 탭으로 돌아가세요.",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "계속하려면 새로 열린 탭으로 이동하세요.",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "다른 탭에서 로그인 완료",
"signIn.forgotPassword.formTitle": "비밀번호 재설정 코드",
"signIn.forgotPassword.resendButton": "코드를 받지 못했나요? 다시 보내기",
"signIn.forgotPassword.subtitle": "비밀번호를 재설정하려면",
"signIn.forgotPassword.subtitle_email": "먼저 이메일 주소로 보낸 코드를 입력하세요.",
"signIn.forgotPassword.subtitle_phone": "먼저 전화로 받은 코드를 입력하세요.",
"signIn.forgotPassword.title": "비밀번호 재설정",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "비밀번호 재설정",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "또는 다른 방법으로 로그인",
"signIn.forgotPasswordAlternativeMethods.title": "비밀번호를 잊으셨나요?",
"signIn.noAvailableMethods.message": "로그인 진행 불가. 사용 가능한 인증 요소가 없습니다.",
"signIn.noAvailableMethods.subtitle": "오류가 발생했습니다.",
"signIn.noAvailableMethods.title": "로그인할 수 없음",
"signIn.passkey.subtitle": "패스키를 사용하면 자신임을 확인합니다. 기기에서 지문, 얼굴 또는 화면 잠금을 요청할 수 있습니다.",
"signIn.passkey.title": "패스키 사용",
"signIn.password.actionLink": "다른 방법 사용",
"signIn.password.subtitle": "계정과 관련된 비밀번호를 입력하세요.",
"signIn.password.title": "비밀번호 입력",
"signIn.passwordPwned.title": "비밀번호가 노출되었습니다.",
"signIn.phoneCode.formTitle": "인증 코드",
"signIn.phoneCode.resendButton": "코드를 받지 못했나요? 다시 보내기",
"signIn.phoneCode.subtitle": "{{applicationName}}으로 계속하려면",
"signIn.phoneCode.title": "전화 확인",
"signIn.phoneCodeMfa.formTitle": "인증 코드",
"signIn.phoneCodeMfa.resendButton": "코드를 받지 못했나요? 다시 보내기",
"signIn.phoneCodeMfa.subtitle": "계속하려면 전화로 받은 인증 코드를 입력하세요.",
"signIn.phoneCodeMfa.title": "전화 확인",
"signIn.resetPassword.formButtonPrimary": "비밀번호 재설정",
"signIn.resetPassword.requiredMessage": "보안상의 이유로 비밀번호를 재설정해야 합니다.",
"signIn.resetPassword.successMessage": "비밀번호가 성공적으로 변경되었습니다. 로그인 중입니다. 잠시 기다려 주세요.",
"signIn.resetPassword.title": "새 비밀번호 설정",
"signIn.resetPasswordMfa.detailsLabel": "비밀번호 재설정 전에 정체성을 확인해야 합니다.",
"signIn.start.actionLink": "가입하기",
"signIn.start.actionLink__use_email": "이메일 사용",
"signIn.start.actionLink__use_email_username": "이메일 또는 사용자 이름 사용",
"signIn.start.actionLink__use_passkey": "패스키 사용",
"signIn.start.actionLink__use_phone": "전화 사용",
"signIn.start.actionLink__use_username": "사용자 이름 사용",
"signIn.start.actionText": "계정이 없으신가요?",
"signIn.start.subtitle": "다시 오신 것을 환영합니다! 계속하려면 로그인하세요.",
"signIn.start.title": "{{applicationName}}에 로그인",
"signIn.totpMfa.formTitle": "인증 코드",
"signIn.totpMfa.subtitle": "계속하려면 인증 앱에서 생성된 인증 코드를 입력하세요.",
"signIn.totpMfa.title": "이중 인증",
"signInEnterPasswordTitle": "비밀번호 입력",
"signUp.continue.actionLink": "로그인",
"signUp.continue.actionText": "계정이 있으신가요?",
"signUp.continue.subtitle": "계속하려면 남은 정보를 입력하세요.",
"signUp.continue.title": "누락된 필드 입력",
"signUp.emailCode.formSubtitle": "이메일 주소로 보낸 확인 코드를 입력하세요.",
"signUp.emailCode.formTitle": "인증 코드",
"signUp.emailCode.resendButton": "코드를 받지 못했나요? 다시 보내기",
"signUp.emailCode.subtitle": "이메일로 보낸 확인 코드를 입력하세요.",
"signUp.emailCode.title": "이메일 확인",
"signUp.emailLink.formSubtitle": "이메일 주소로 보낸 확인 링크 사용",
"signUp.emailLink.formTitle": "확인 링크",
"signUp.emailLink.loading.title": "가입 중...",
"signUp.emailLink.resendButton": "링크를 받지 못했나요? 다시 보내기",
"signUp.emailLink.subtitle": "{{applicationName}}으로 계속하려면",
"signUp.emailLink.title": "이메일 확인",
"signUp.emailLink.verified.title": "가입이 완료되었습니다.",
"signUp.emailLink.verifiedSwitchTab.subtitle": "계속하려면 새로 열린 탭으로 이동하세요.",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "이전 탭으로 돌아가려면 새로 열린 탭으로 이동하세요.",
"signUp.emailLink.verifiedSwitchTab.title": "이메일 확인 완료",
"signUp.phoneCode.formSubtitle": "전화번호로 받은 인증 코드를 입력하세요.",
"signUp.phoneCode.formTitle": "인증 코드",
"signUp.phoneCode.resendButton": "코드를 받지 못했나요? 다시 보내기",
"signUp.phoneCode.subtitle": "전화로 받은 인증 코드를 입력하세요.",
"signUp.phoneCode.title": "전화 확인",
"signUp.start.actionLink": "로그인",
"signUp.start.actionText": "계정이 있으신가요?",
"signUp.start.subtitle": "환영합니다! 시작하려면 세부 정보를 입력하세요.",
"signUp.start.title": "계정 생성",
"socialButtonsBlockButton": "{{provider|titleize}}로 계속하기",
"unstable__errors.captcha_invalid": "보안 확인에 실패하여 가입할 수 없습니다. 다시 시도하려면 페이지를 새로 고치거나 지원팀에 문의하십시오.",
"unstable__errors.captcha_unavailable": "봇 확인에 실패하여 가입할 수 없습니다. 다시 시도하려면 페이지를 새로 고치거나 지원팀에 문의하십시오.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "이 이메일 주소는 사용 중입니다. 다른 이메일 주소를 시도하십시오.",
"unstable__errors.form_identifier_exists__phone_number": "이 전화번호는 사용 중입니다. 다른 번호를 시도하십시오.",
"unstable__errors.form_identifier_exists__username": "이 사용자 이름은 사용 중입니다. 다른 이름을 시도하십시오.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "이메일 주소는 유효한 이메일 주소여야 합니다.",
"unstable__errors.form_param_format_invalid__phone_number": "전화번호는 유효한 국제 형식이어야 합니다.",
"unstable__errors.form_param_max_length_exceeded__first_name": "이름은 256자를 초과할 수 없습니다.",
"unstable__errors.form_param_max_length_exceeded__last_name": "성은 256자를 초과할 수 없습니다.",
"unstable__errors.form_param_max_length_exceeded__name": "이름은 256자를 초과할 수 없습니다.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "비밀번호가 충분히 강력하지 않습니다.",
"unstable__errors.form_password_pwned": "이 비밀번호는 누출 사고의 일부로 확인되었으므로 사용할 수 없습니다. 대신 다른 비밀번호를 시도하십시오.",
"unstable__errors.form_password_pwned__sign_in": "이 비밀번호는 누출 사고의 일부로 확인되었으므로 사용할 수 없습니다. 비밀번호를 재설정하십시오.",
"unstable__errors.form_password_size_in_bytes_exceeded": "비밀번호가 허용된 최대 바이트 수를 초과했습니다. 짧게 만들거나 일부 특수 문자를 제거하십시오.",
"unstable__errors.form_password_validation_failed": "잘못된 비밀번호",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "마지막 식별 정보를 삭제할 수 없습니다.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "이 장치에 이미 등록된 패스키가 있습니다.",
"unstable__errors.passkey_not_supported": "이 장치에서 패스키는 지원되지 않습니다.",
"unstable__errors.passkey_pa_not_supported": "등록에는 플랫폼 인증기가 필요하지만 장치가 지원하지 않습니다.",
"unstable__errors.passkey_registration_cancelled": "패스키 등록이 취소되었거나 시간이 초과되었습니다.",
"unstable__errors.passkey_retrieval_cancelled": "패스키 확인이 취소되었거나 시간이 초과되었습니다.",
"unstable__errors.passwordComplexity.maximumLength": "{{length}}자 미만",
"unstable__errors.passwordComplexity.minimumLength": "{{length}}자 이상",
"unstable__errors.passwordComplexity.requireLowercase": "소문자",
"unstable__errors.passwordComplexity.requireNumbers": "숫자",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "특수 문자",
"unstable__errors.passwordComplexity.requireUppercase": "대문자",
"unstable__errors.passwordComplexity.sentencePrefix": "비밀번호는 다음을 포함해야 합니다.",
"unstable__errors.phone_number_exists": "이 전화번호는 사용 중입니다. 다른 번호를 시도하십시오.",
"unstable__errors.zxcvbn.couldBeStronger": "비밀번호가 작동하지만 더 강력해질 수 있습니다. 더 많은 문자를 추가해보세요.",
"unstable__errors.zxcvbn.goodPassword": "비밀번호는 필요한 모든 요구 사항을 충족합니다.",
"unstable__errors.zxcvbn.notEnough": "비밀번호가 충분히 강력하지 않습니다.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "모든 문자를 대문자로 바꾸세요.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "덜 일반적인 단어를 추가하세요.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "자신과 연관된 연도를 피하세요.",
"unstable__errors.zxcvbn.suggestions.capitalization": "첫 글자 이상을 대문자로 바꾸세요.",
"unstable__errors.zxcvbn.suggestions.dates": "자신과 연관된 날짜를 피하세요.",
"unstable__errors.zxcvbn.suggestions.l33t": "'a'를 '@'로 대체하는 예측 가능한 문자 대체를 피하세요.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "더 긴 키보드 패턴을 사용하고 여러 번 타이핑 방향을 변경하세요.",
"unstable__errors.zxcvbn.suggestions.noNeed": "기호, 숫자 또는 대문자를 사용하지 않고도 강력한 비밀번호를 만들 수 있습니다.",
"unstable__errors.zxcvbn.suggestions.pwned": "다른 곳에서 이 비밀번호를 사용한다면 변경해야 합니다.",
"unstable__errors.zxcvbn.suggestions.recentYears": "최근 연도를 피하세요.",
"unstable__errors.zxcvbn.suggestions.repeated": "단어와 문자를 반복하지 마세요.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "일반 단어의 역순 철자를 피하세요.",
"unstable__errors.zxcvbn.suggestions.sequences": "일반적인 문자 시퀀스를 피하세요.",
"unstable__errors.zxcvbn.suggestions.useWords": "여러 단어를 사용하지만 일반적인 구문을 피하세요.",
"unstable__errors.zxcvbn.warnings.common": "이 비밀번호는 흔히 사용됩니다.",
"unstable__errors.zxcvbn.warnings.commonNames": "일반적인 이름과 성은 추측하기 쉽습니다.",
"unstable__errors.zxcvbn.warnings.dates": "날짜는 추측하기 쉽습니다.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "\"abcabcabc\"와 같은 반복된 문자 패턴은 추측하기 쉽습니다.",
"unstable__errors.zxcvbn.warnings.keyPattern": "짧은 키보드 패턴은 추측하기 쉽습니다.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "단일 이름 또는 성은 추측하기 쉽습니다.",
"unstable__errors.zxcvbn.warnings.pwned": "인터넷의 데이터 누출로 비밀번호가 노출되었습니다.",
"unstable__errors.zxcvbn.warnings.recentYears": "최근 연도는 추측하기 쉽습니다.",
"unstable__errors.zxcvbn.warnings.sequences": "\"abc\"와 같은 일반적인 문자 시퀀스는 추측하기 쉽습니다.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "이것은 흔히 사용되는 비밀번호와 유사합니다.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "\"aaa\"와 같이 반복된 문자는 추측하기 쉽습니다.",
"unstable__errors.zxcvbn.warnings.straightRow": "키보드의 직선 행은 추측하기 쉽습니다.",
"unstable__errors.zxcvbn.warnings.topHundred": "이것은 자주 사용되는 비밀번호입니다.",
"unstable__errors.zxcvbn.warnings.topTen": "이것은 많이 사용되는 비밀번호입니다.",
"unstable__errors.zxcvbn.warnings.userInputs": "개인 또는 페이지 관련 데이터를 사용해서는 안 됩니다.",
"unstable__errors.zxcvbn.warnings.wordByItself": "단일 단어는 추측하기 쉽습니다.",
"userButton.action__addAccount": "계정 추가",
"userButton.action__manageAccount": "계정 관리",
"userButton.action__signOut": "로그아웃",
"userButton.action__signOutAll": "모든 계정에서 로그아웃",
"userProfile.backupCodePage.actionLabel__copied": "복사됨!",
"userProfile.backupCodePage.actionLabel__copy": "모두 복사",
"userProfile.backupCodePage.actionLabel__download": "다운로드 .txt",
"userProfile.backupCodePage.actionLabel__print": "인쇄",
"userProfile.backupCodePage.infoText1": "이 계정에 대해 백업 코드가 활성화됩니다.",
"userProfile.backupCodePage.infoText2": "백업 코드를 비밀리에 보관하고 안전하게 저장하세요. 만약 유출되었다고 의심된다면 백업 코드를 재생성할 수 있습니다.",
"userProfile.backupCodePage.subtitle__codelist": "안전하게 보관하고 비밀리에 유지하세요.",
"userProfile.backupCodePage.successMessage": "백업 코드가 이제 활성화되었습니다. 계정에 로그인할 때 인증 장치에 액세스할 수 없는 경우 이 중 하나를 사용할 수 있습니다. 각 코드는 한 번만 사용할 수 있습니다.",
"userProfile.backupCodePage.successSubtitle": "계정에 로그인할 때 인증 장치에 액세스할 수 없는 경우 이 중 하나를 사용할 수 있습니다.",
"userProfile.backupCodePage.title": "백업 코드 확인 추가",
"userProfile.backupCodePage.title__codelist": "백업 코드",
"userProfile.connectedAccountPage.formHint": "계정을 연결할 공급업체를 선택하세요.",
"userProfile.connectedAccountPage.formHint__noAccounts": "사용 가능한 외부 계정 공급업체가 없습니다.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}}이(가) 이 계정에서 제거됩니다.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "이제 더 이상이 연결된 계정을 사용할 수 없으며 종속 기능도 작동하지 않습니다.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}}이(가) 계정에서 제거되었습니다.",
"userProfile.connectedAccountPage.removeResource.title": "연결된 계정 제거",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "공급업체가 계정에 추가되었습니다",
"userProfile.connectedAccountPage.title": "연결된 계정 추가",
"userProfile.deletePage.actionDescription": "계속하려면 \"계정 삭제\"를 입력하세요.",
"userProfile.deletePage.confirm": "계정 삭제",
"userProfile.deletePage.messageLine1": "계정을 삭제하시겠습니까?",
"userProfile.deletePage.messageLine2": "이 작업은 영구적이며 되돌릴 수 없습니다.",
"userProfile.deletePage.title": "계정 삭제",
"userProfile.emailAddressPage.emailCode.formHint": "이 이메일 주소로 인증 코드가 포함된 이메일이 전송됩니다.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "{{identifier}}로 전송된 이메일의 인증 코드를 입력하세요.",
"userProfile.emailAddressPage.emailCode.formTitle": "인증 코드",
"userProfile.emailAddressPage.emailCode.resendButton": "코드를 받지 못했나요? 다시 보내기",
"userProfile.emailAddressPage.emailCode.successMessage": "이 이메일 {{identifier}}이(가) 계정에 추가되었습니다.",
"userProfile.emailAddressPage.emailLink.formHint": "이 이메일 주소로 인증 링크가 포함된 이메일이 전송됩니다.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "{{identifier}}로 전송된 이메일의 인증 링크를 클릭하세요.",
"userProfile.emailAddressPage.emailLink.formTitle": "인증 링크",
"userProfile.emailAddressPage.emailLink.resendButton": "링크를 받지 못했나요? 다시 보내기",
"userProfile.emailAddressPage.emailLink.successMessage": "이 이메일 {{identifier}}이(가) 계정에 추가되었습니다.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}}이(가) 이 계정에서 제거됩니다.",
"userProfile.emailAddressPage.removeResource.messageLine2": "이제 이 이메일 주소를 사용하여 로그인할 수 없습니다.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}}이(가) 계정에서 제거되었습니다.",
"userProfile.emailAddressPage.removeResource.title": "이메일 주소 제거",
"userProfile.emailAddressPage.title": "이메일 주소 추가",
"userProfile.emailAddressPage.verifyTitle": "이메일 주소 확인",
"userProfile.formButtonPrimary__add": "추가",
"userProfile.formButtonPrimary__continue": "계속",
"userProfile.formButtonPrimary__finish": "완료",
"userProfile.formButtonPrimary__remove": "제거",
"userProfile.formButtonPrimary__save": "저장",
"userProfile.formButtonReset": "취소",
"userProfile.mfaPage.formHint": "추가할 방법을 선택하세요.",
"userProfile.mfaPage.title": "이중 인증 추가",
"userProfile.mfaPhoneCodePage.backButton": "기존 번호 사용",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "전화번호 추가",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "이 번호로부터의 인증 코드 수신이 중지됩니다.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "계정이 덜 안전해질 수 있습니다. 계속하시겠습니까?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "{{mfaPhoneCode}}에 대한 SMS 코드 이중 인증이 제거되었습니다",
"userProfile.mfaPhoneCodePage.removeResource.title": "이중 인증 제거",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "SMS 코드 이중 인증을 위해 기존 전화번호를 선택하거나 새로 추가하세요.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "SMS 코드 이중 인증을 위해 사용 가능한 전화번호가 없습니다. 새로 추가하세요.",
"userProfile.mfaPhoneCodePage.successMessage1": "로그인할 때 이 번호로 전송된 인증 코드를 추가 단계로 입력해야 합니다.",
"userProfile.mfaPhoneCodePage.successMessage2": "이 백업 코드를 저장하고 안전한 곳에 보관하세요. 인증 장치에 액세스를 잃으면 백업 코드를 사용할 수 있습니다.",
"userProfile.mfaPhoneCodePage.successTitle": "SMS 코드 확인이 활성화되었습니다",
"userProfile.mfaPhoneCodePage.title": "SMS 코드 확인 추가",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "대신 QR 코드 스캔",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "QR 코드를 스캔할 수 없음?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "인증 앱에서 새로운 로그인 방법을 설정하고 계정에 연결할 QR 코드를 스캔하세요.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "인증 앱에서 새로운 로그인 방법을 설정하고 아래 제공된 키를 입력하세요.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "시간 기반 또는 일회용 비밀번호가 활성화되어 있는지 확인한 후 계정 연결을 완료하세요.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "또는 인증 앱이 TOTP URI를 지원하는 경우 전체 URI를 복사할 수도 있습니다.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "이 인증 앱에서의 인증 코드는 더 이상 로그인할 때 필요하지 않습니다.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "계정이 덜 안전해질 수 있습니다. 계속하시겠습니까?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "인증 앱을 통한 이중 인증이 제거되었습니다.",
"userProfile.mfaTOTPPage.removeResource.title": "이중 인증 제거",
"userProfile.mfaTOTPPage.successMessage": "이제 이중 인증이 활성화되었습니다. 로그인할 때 이 인증 앱에서 생성된 인증 코드를 추가 단계로 입력해야 합니다.",
"userProfile.mfaTOTPPage.title": "인증 앱 추가",
"userProfile.mfaTOTPPage.verifySubtitle": "인증 앱에서 생성된 인증 코드를 입력하세요",
"userProfile.mfaTOTPPage.verifyTitle": "인증 코드",
"userProfile.mobileButton__menu": "메뉴",
"userProfile.navbar.account": "프로필",
"userProfile.navbar.description": "계정 정보를 관리합니다.",
"userProfile.navbar.security": "보안",
"userProfile.navbar.title": "계정",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}}이(가) 이 계정에서 제거됩니다.",
"userProfile.passkeyScreen.removeResource.title": "패스키 제거",
"userProfile.passkeyScreen.subtitle__rename": "패스키 이름을 변경하여 찾기 쉽게 할 수 있습니다.",
"userProfile.passkeyScreen.title__rename": "패스키 이름 변경",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "이전 비밀번호를 사용했을 수 있는 모든 기기에서 로그아웃하는 것이 좋습니다.",
"userProfile.passwordPage.readonly": "현재 비밀번호는 기업 연결을 통해서만 로그인할 수 있기 때문에 편집할 수 없습니다.",
"userProfile.passwordPage.successMessage__set": "비밀번호가 설정되었습니다.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "다른 모든 기기에서 로그아웃되었습니다.",
"userProfile.passwordPage.successMessage__update": "비밀번호가 업데이트되었습니다.",
"userProfile.passwordPage.title__set": "비밀번호 설정",
"userProfile.passwordPage.title__update": "비밀번호 업데이트",
"userProfile.phoneNumberPage.infoText": "인증 코드가 포함된 텍스트 메시지가 이 전화번호로 전송됩니다. 메시지 및 데이터 요금이 부과될 수 있습니다.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}}이(가) 이 계정에서 제거됩니다.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "더 이상 이 전화번호를 사용하여 로그인할 수 없습니다.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}}이(가) 계정에서 제거되었습니다.",
"userProfile.phoneNumberPage.removeResource.title": "전화번호 제거",
"userProfile.phoneNumberPage.successMessage": "{{identifier}}이(가) 계정에 추가되었습니다.",
"userProfile.phoneNumberPage.title": "전화번호 추가",
"userProfile.phoneNumberPage.verifySubtitle": "{{identifier}}로 전송된 인증 코드를 입력하세요.",
"userProfile.phoneNumberPage.verifyTitle": "전화번호 인증",
"userProfile.profilePage.fileDropAreaHint": "권장 크기 1:1, 최대 10MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "제거",
"userProfile.profilePage.imageFormSubtitle": "업로드",
"userProfile.profilePage.imageFormTitle": "프로필 이미지",
"userProfile.profilePage.readonly": "프로필 정보는 기업 연결을 통해 제공되어 편집할 수 없습니다.",
"userProfile.profilePage.successMessage": "프로필이 업데이트되었습니다.",
"userProfile.profilePage.title": "프로필 업데이트",
"userProfile.start.activeDevicesSection.destructiveAction": "기기에서 로그아웃",
"userProfile.start.activeDevicesSection.title": "활성 기기",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "다시 시도",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "지금 승인",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "제거",
"userProfile.start.connectedAccountsSection.primaryButton": "계정 연결",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "필요한 범위가 업데이트되어 기능이 제한될 수 있습니다. 문제를 피하기 위해 이 애플리케이션을 다시 승인하십시오.",
"userProfile.start.connectedAccountsSection.title": "연결된 계정",
"userProfile.start.dangerSection.deleteAccountButton": "계정 삭제",
"userProfile.start.dangerSection.title": "계정 삭제",
"userProfile.start.emailAddressesSection.destructiveAction": "이메일 제거",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "기본 설정으로 설정",
"userProfile.start.emailAddressesSection.detailsAction__primary": "인증 완료",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "인증",
"userProfile.start.emailAddressesSection.primaryButton": "이메일 주소 추가",
"userProfile.start.emailAddressesSection.title": "이메일 주소",
"userProfile.start.enterpriseAccountsSection.title": "기업 계정",
"userProfile.start.headerTitle__account": "프로필 세부정보",
"userProfile.start.headerTitle__security": "보안",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "재생성",
"userProfile.start.mfaSection.backupCodes.headerTitle": "백업 코드",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "새로운 안전한 백업 코드를 받으세요. 이전 백업 코드는 삭제되고 사용할 수 없습니다.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "백업 코드 재생성",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "기본 설정으로 설정",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "제거",
"userProfile.start.mfaSection.primaryButton": "이중 인증 추가",
"userProfile.start.mfaSection.title": "이중 인증",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "제거",
"userProfile.start.mfaSection.totp.headerTitle": "인증 애플리케이션",
"userProfile.start.passkeysSection.menuAction__destructive": "제거",
"userProfile.start.passkeysSection.menuAction__rename": "이름 바꾸기",
"userProfile.start.passkeysSection.title": "패스키",
"userProfile.start.passwordSection.primaryButton__setPassword": "비밀번호 설정",
"userProfile.start.passwordSection.primaryButton__updatePassword": "비밀번호 업데이트",
"userProfile.start.passwordSection.title": "비밀번호",
"userProfile.start.phoneNumbersSection.destructiveAction": "전화번호 제거",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "기본 설정으로 설정",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "인증 완료",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "전화번호 인증",
"userProfile.start.phoneNumbersSection.primaryButton": "전화번호 추가",
"userProfile.start.phoneNumbersSection.title": "전화번호",
"userProfile.start.profileSection.primaryButton": "프로필 업데이트",
"userProfile.start.profileSection.title": "프로필",
"userProfile.start.usernameSection.primaryButton__setUsername": "사용자 이름 설정",
"userProfile.start.usernameSection.primaryButton__updateUsername": "사용자 이름 업데이트",
"userProfile.start.usernameSection.title": "사용자 이름",
"userProfile.start.web3WalletsSection.destructiveAction": "지갑 제거",
"userProfile.start.web3WalletsSection.primaryButton": "Web3 지갑",
"userProfile.start.web3WalletsSection.title": "Web3 지갑",
"userProfile.usernamePage.successMessage": "사용자 이름이 업데이트되었습니다.",
"userProfile.usernamePage.title__set": "사용자 이름 설정",
"userProfile.usernamePage.title__update": "사용자 이름 업데이트",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}}이(가) 이 계정에서 제거됩니다.",
"userProfile.web3WalletPage.removeResource.messageLine2": "더 이상 이 Web3 지갑을 사용하여 로그인할 수 없습니다.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}}이(가) 계정에서 제거되었습니다.",
"userProfile.web3WalletPage.removeResource.title": "Web3 지갑 제거",
"userProfile.web3WalletPage.subtitle__availableWallets": "계정에 연결할 Web3 지갑을 선택하세요.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "사용 가능한 Web3 지갑이 없습니다.",
"userProfile.web3WalletPage.successMessage": "지갑이 계정에 추가되었습니다.",
"userProfile.web3WalletPage.title": "Web3 지갑 추가"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "계속하기",
"clerkAuth.loginSuccess.desc": "{{greeting}}님, {{nickName}}입니다. 이전 주제로 돌아갑니다. 언제든지 새 주제로 전환할 수 있습니다",
"clerkAuth.loginSuccess.title": "다시 환영합니다, {{nickName}}",
"error.backHome": "홈으로 돌아가기",
"error.desc": "페이지를 일시적으로 사용할 수 없습니다. 홈으로 돌아가거나 잠시 후 다시 시도하세요(설정은 손실되지 않습니다)",
"error.retry": "다시 로드",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "할당량이 소진되었습니다. 잔액/할당량 설정을 확인하거나 사용 가능한 API 키로 전환한 후 다시 시도하세요",
"response.InvalidAccessCode": "액세스 암호가 비어 있거나 올바르지 않습니다. 올바른 암호를 다시 입력하거나 사용자 정의 API 키를 사용하세요",
"response.InvalidBedrockCredentials": "Bedrock 인증에 실패했습니다. AccessKeyId/SecretAccessKey를 확인한 후 다시 시도하세요",
"response.InvalidClerkUser": "로그인이 필요합니다. 먼저 로그인하거나 등록하세요",
"response.InvalidComfyUIArgs": "ComfyUI 설정이 올바르지 않습니다. 설정을 확인한 후 다시 시도하세요",
"response.InvalidGithubToken": "GitHub PAT가 비어 있거나 올바르지 않습니다. 확인한 후 다시 시도하세요",
"response.InvalidOllamaArgs": "Ollama 설정이 올바르지 않습니다. 설정을 확인한 후 다시 시도하세요",

View file

@ -1,545 +0,0 @@
{
"backButton": "Terug",
"badge__default": "Standaard",
"badge__otherImpersonatorDevice": "Ander apparaat van imitator",
"badge__primary": "Primair",
"badge__requiresAction": "Actie vereist",
"badge__thisDevice": "Dit apparaat",
"badge__unverified": "Niet geverifieerd",
"badge__userDevice": "Gebruikersapparaat",
"badge__you": "Jij",
"createOrganization.formButtonSubmit": "Organisatie aanmaken",
"createOrganization.invitePage.formButtonReset": "Overslaan",
"createOrganization.title": "Organisatie aanmaken",
"dates.lastDay": "Gisteren om {{ date | timeString('nl-NL') }}",
"dates.next6Days": "{{ date | weekday('nl-NL','long') }} om {{ date | timeString('nl-NL') }}",
"dates.nextDay": "Morgen om {{ date | timeString('nl-NL') }}",
"dates.numeric": "{{ date | numeric('nl-NL') }}",
"dates.previous6Days": "Afgelopen {{ date | weekday('nl-NL','long') }} om {{ date | timeString('nl-NL') }}",
"dates.sameDay": "Vandaag om {{ date | timeString('nl-NL') }}",
"dividerText": "of",
"footerActionLink__useAnotherMethod": "Gebruik een andere methode",
"footerPageLink__help": "Hulp",
"footerPageLink__privacy": "Privacy",
"footerPageLink__terms": "Voorwaarden",
"formButtonPrimary": "Doorgaan",
"formButtonPrimary__verify": "Verifiëren",
"formFieldAction__forgotPassword": "Wachtwoord vergeten?",
"formFieldError__matchingPasswords": "Wachtwoorden komen overeen.",
"formFieldError__notMatchingPasswords": "Wachtwoorden komen niet overeen.",
"formFieldError__verificationLinkExpired": "De verificatielink is verlopen. Vraag een nieuwe link aan.",
"formFieldHintText__optional": "Optioneel",
"formFieldHintText__slug": "Een slug is een leesbare ID die uniek moet zijn. Wordt vaak gebruikt in URL's.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Account verwijderen",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "voorbeeld@email.com, voorbeeld2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "mijn-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Automatische uitnodigingen inschakelen voor dit domein",
"formFieldLabel__backupCode": "Back-upcode",
"formFieldLabel__confirmDeletion": "Bevestiging",
"formFieldLabel__confirmPassword": "Bevestig wachtwoord",
"formFieldLabel__currentPassword": "Huidig wachtwoord",
"formFieldLabel__emailAddress": "E-mailadres",
"formFieldLabel__emailAddress_username": "E-mailadres of gebruikersnaam",
"formFieldLabel__emailAddresses": "E-mailadressen",
"formFieldLabel__firstName": "Voornaam",
"formFieldLabel__lastName": "Achternaam",
"formFieldLabel__newPassword": "Nieuw wachtwoord",
"formFieldLabel__organizationDomain": "Domein",
"formFieldLabel__organizationDomainDeletePending": "Verwijder openstaande uitnodigingen en suggesties",
"formFieldLabel__organizationDomainEmailAddress": "Verificatie e-mailadres",
"formFieldLabel__organizationDomainEmailAddressDescription": "Voer een e-mailadres in onder dit domein om een code te ontvangen en het domein te verifiëren.",
"formFieldLabel__organizationName": "Naam",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "Naam van passkey",
"formFieldLabel__password": "Wachtwoord",
"formFieldLabel__phoneNumber": "Telefoonnummer",
"formFieldLabel__role": "Rol",
"formFieldLabel__signOutOfOtherSessions": "Afmelden op alle andere apparaten",
"formFieldLabel__username": "Gebruikersnaam",
"impersonationFab.action__signOut": "Afmelden",
"impersonationFab.title": "Ingelogd als {{identifier}}",
"locale": "nl-NL",
"maintenanceMode": "We voeren momenteel onderhoud uit, maar maak je geen zorgen, dit duurt slechts enkele minuten.",
"membershipRole__admin": "Beheerder",
"membershipRole__basicMember": "Lid",
"membershipRole__guestMember": "Gast",
"organizationList.action__createOrganization": "Organisatie aanmaken",
"organizationList.action__invitationAccept": "Deelnemen",
"organizationList.action__suggestionsAccept": "Verzoek om deel te nemen",
"organizationList.createOrganization": "Organisatie aanmaken",
"organizationList.invitationAcceptedLabel": "Deelgenomen",
"organizationList.subtitle": "om door te gaan naar {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "In afwachting van goedkeuring",
"organizationList.title": "Kies een account",
"organizationList.titleWithoutPersonal": "Kies een organisatie",
"organizationProfile.badge__automaticInvitation": "Automatische uitnodigingen",
"organizationProfile.badge__automaticSuggestion": "Automatische suggesties",
"organizationProfile.badge__manualInvitation": "Geen automatische aanmelding",
"organizationProfile.badge__unverified": "Niet geverifieerd",
"organizationProfile.createDomainPage.subtitle": "Voeg het domein toe om te verifiëren. Gebruikers met e-mailadressen onder dit domein kunnen automatisch deelnemen of een verzoek indienen.",
"organizationProfile.createDomainPage.title": "Domein toevoegen",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "De uitnodigingen konden niet worden verzonden. Er zijn al openstaande uitnodigingen voor de volgende e-mailadressen: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Uitnodigingen verzenden",
"organizationProfile.invitePage.selectDropdown__role": "Selecteer rol",
"organizationProfile.invitePage.subtitle": "Voer een of meerdere e-mailadressen in, gescheiden door spaties of komma's.",
"organizationProfile.invitePage.successMessage": "Uitnodigingen succesvol verzonden",
"organizationProfile.invitePage.title": "Nieuwe leden uitnodigen",
"organizationProfile.membersPage.action__invite": "Uitnodigen",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Lid verwijderen",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Deelgenomen",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Rol",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Gebruiker",
"organizationProfile.membersPage.detailsTitle__emptyRow": "Geen leden om weer te geven",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Nodig gebruikers uit door een e-maildomein te koppelen aan je organisatie. Iedereen die zich aanmeldt met een overeenkomend domein kan op elk moment deelnemen.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Automatische uitnodigingen",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Beheer geverifieerde domeinen",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Geen uitnodigingen om weer te geven",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Uitnodiging intrekken",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Uitgenodigd",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Gebruikers die zich aanmelden met een overeenkomend e-maildomein, krijgen een suggestie om lid te worden van je organisatie.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Automatische suggesties",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Beheer geverifieerde domeinen",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Goedkeuren",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Afwijzen",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Toegang aangevraagd",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Geen verzoeken om weer te geven",
"organizationProfile.membersPage.start.headerTitle__invitations": "Uitnodigingen",
"organizationProfile.membersPage.start.headerTitle__members": "Leden",
"organizationProfile.membersPage.start.headerTitle__requests": "Verzoeken",
"organizationProfile.navbar.description": "Beheer je organisatie.",
"organizationProfile.navbar.general": "Algemeen",
"organizationProfile.navbar.members": "Leden",
"organizationProfile.navbar.title": "Organisatie",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Typ \"{{organizationName}}\" hieronder om door te gaan.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Weet je zeker dat je deze organisatie wilt verwijderen?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Deze actie is permanent en kan niet ongedaan worden gemaakt.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Je hebt de organisatie verwijderd.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Organisatie verwijderen",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Typ \"{{organizationName}}\" hieronder om door te gaan.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Weet je zeker dat je deze organisatie wilt verlaten? Je verliest toegang tot deze organisatie en haar toepassingen.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Deze actie is permanent en kan niet ongedaan worden gemaakt.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Je hebt de organisatie verlaten.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Organisatie verlaten",
"organizationProfile.profilePage.dangerSection.title": "Gevaar",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Beheren",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Verwijderen",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Verifiëren",
"organizationProfile.profilePage.domainSection.primaryButton": "Domein toevoegen",
"organizationProfile.profilePage.domainSection.subtitle": "Sta gebruikers toe automatisch lid te worden van de organisatie of een verzoek in te dienen op basis van een geverifieerd e-mailadresdomein.",
"organizationProfile.profilePage.domainSection.title": "Geverifieerde domeinen",
"organizationProfile.profilePage.successMessage": "De organisatie is bijgewerkt.",
"organizationProfile.profilePage.title": "Profiel bijwerken",
"organizationProfile.removeDomainPage.messageLine1": "Het e-mailadresdomein {{domain}} zal worden verwijderd.",
"organizationProfile.removeDomainPage.messageLine2": "Gebruikers kunnen zich hierna niet meer automatisch bij de organisatie aansluiten.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} is verwijderd.",
"organizationProfile.removeDomainPage.title": "Domein verwijderen",
"organizationProfile.start.headerTitle__general": "Algemeen",
"organizationProfile.start.headerTitle__members": "Leden",
"organizationProfile.start.profileSection.primaryButton": "Profiel bijwerken",
"organizationProfile.start.profileSection.title": "Organisatieprofiel",
"organizationProfile.start.profileSection.uploadAction__title": "Logo",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Het verwijderen van dit domein heeft invloed op uitgenodigde gebruikers.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Domein verwijderen",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Verwijder dit domein uit je geverifieerde domeinen",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Domein verwijderen",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Gebruikers worden automatisch uitgenodigd om lid te worden van de organisatie wanneer ze zich registreren en kunnen op elk moment deelnemen.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Automatische uitnodigingen",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Gebruikers ontvangen een suggestie om lid te worden, maar moeten eerst worden goedgekeurd door een beheerder.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Automatische suggesties",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Het wijzigen van de aanmeldingsmodus heeft alleen invloed op nieuwe gebruikers.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "In afwachting van uitnodigingen verzonden naar gebruikers: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "In afwachting van suggesties verzonden naar gebruikers: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Gebruikers kunnen alleen handmatig worden uitgenodigd voor de organisatie.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Geen automatische aanmelding",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Kies hoe gebruikers van dit domein lid kunnen worden van de organisatie.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Gevaar",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Aanmeldingsopties",
"organizationProfile.verifiedDomainPage.subtitle": "Het domein {{domain}} is nu geverifieerd. Ga verder door een aanmeldingsmodus te kiezen.",
"organizationProfile.verifiedDomainPage.title": "Werk {{domain}} bij",
"organizationProfile.verifyDomainPage.formSubtitle": "Voer de verificatiecode in die naar je e-mailadres is gestuurd",
"organizationProfile.verifyDomainPage.formTitle": "Verificatiecode",
"organizationProfile.verifyDomainPage.resendButton": "Geen code ontvangen? Opnieuw verzenden",
"organizationProfile.verifyDomainPage.subtitle": "Het domein {{domainName}} moet via e-mail worden geverifieerd.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "Er is een verificatiecode verzonden naar {{emailAddress}}. Voer de code in om door te gaan.",
"organizationProfile.verifyDomainPage.title": "Domein verifiëren",
"organizationSwitcher.action__createOrganization": "Organisatie aanmaken",
"organizationSwitcher.action__invitationAccept": "Lid worden",
"organizationSwitcher.action__manageOrganization": "Beheren",
"organizationSwitcher.action__suggestionsAccept": "Verzoek om lid te worden",
"organizationSwitcher.notSelected": "Geen organisatie geselecteerd",
"organizationSwitcher.personalWorkspace": "Persoonlijk account",
"organizationSwitcher.suggestionsAcceptedLabel": "In afwachting van goedkeuring",
"paginationButton__next": "Volgende",
"paginationButton__previous": "Vorige",
"paginationRowText__displaying": "Weergeven",
"paginationRowText__of": "van",
"signIn.accountSwitcher.action__addAccount": "Account toevoegen",
"signIn.accountSwitcher.action__signOutAll": "Afmelden bij alle accounts",
"signIn.accountSwitcher.subtitle": "Selecteer het account waarmee je wilt doorgaan.",
"signIn.accountSwitcher.title": "Kies een account",
"signIn.alternativeMethods.actionLink": "Hulp nodig",
"signIn.alternativeMethods.actionText": "Geen van deze beschikbaar?",
"signIn.alternativeMethods.blockButton__backupCode": "Gebruik een back-upcode",
"signIn.alternativeMethods.blockButton__emailCode": "E-mailcode naar {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "E-maillink naar {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "Inloggen met passkey",
"signIn.alternativeMethods.blockButton__password": "Inloggen met wachtwoord",
"signIn.alternativeMethods.blockButton__phoneCode": "SMS-code naar {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "Gebruik je authenticator-app",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "E-mail ondersteuning",
"signIn.alternativeMethods.getHelp.content": "Als je problemen ondervindt bij het inloggen op je account, stuur ons dan een e-mail en we helpen je zo snel mogelijk weer toegang te krijgen.",
"signIn.alternativeMethods.getHelp.title": "Hulp nodig",
"signIn.alternativeMethods.subtitle": "Problemen? Je kunt een van deze methoden gebruiken om in te loggen.",
"signIn.alternativeMethods.title": "Gebruik een andere methode",
"signIn.backupCodeMfa.subtitle": "Je back-upcode is degene die je hebt ontvangen bij het instellen van tweestapsverificatie.",
"signIn.backupCodeMfa.title": "Voer een back-upcode in",
"signIn.emailCode.formTitle": "Verificatiecode",
"signIn.emailCode.resendButton": "Geen code ontvangen? Opnieuw verzenden",
"signIn.emailCode.subtitle": "om door te gaan naar {{applicationName}}",
"signIn.emailCode.title": "Controleer je e-mail",
"signIn.emailLink.expired.subtitle": "Ga terug naar het oorspronkelijke tabblad om door te gaan.",
"signIn.emailLink.expired.title": "Deze verificatielink is verlopen",
"signIn.emailLink.failed.subtitle": "Ga terug naar het oorspronkelijke tabblad om door te gaan.",
"signIn.emailLink.failed.title": "Deze verificatielink is ongeldig",
"signIn.emailLink.formSubtitle": "Gebruik de verificatielink die naar je e-mail is gestuurd",
"signIn.emailLink.formTitle": "Verificatielink",
"signIn.emailLink.loading.subtitle": "Je wordt zo doorgestuurd",
"signIn.emailLink.loading.title": "Inloggen...",
"signIn.emailLink.resendButton": "Geen link ontvangen? Opnieuw verzenden",
"signIn.emailLink.subtitle": "om door te gaan naar {{applicationName}}",
"signIn.emailLink.title": "Controleer je e-mail",
"signIn.emailLink.unusedTab.title": "Je kunt dit tabblad sluiten",
"signIn.emailLink.verified.subtitle": "Je wordt zo doorgestuurd",
"signIn.emailLink.verified.title": "Succesvol ingelogd",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Ga terug naar het oorspronkelijke tabblad om door te gaan",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Ga terug naar het nieuw geopende tabblad om door te gaan",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Ingelogd op ander tabblad",
"signIn.forgotPassword.formTitle": "Wachtwoord resetcode",
"signIn.forgotPassword.resendButton": "Geen code ontvangen? Opnieuw verzenden",
"signIn.forgotPassword.subtitle": "om je wachtwoord te resetten",
"signIn.forgotPassword.subtitle_email": "Voer eerst de code in die naar je e-mailadres is gestuurd",
"signIn.forgotPassword.subtitle_phone": "Voer eerst de code in die naar je telefoon is gestuurd",
"signIn.forgotPassword.title": "Wachtwoord resetten",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Reset je wachtwoord",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Of meld je aan met een andere methode",
"signIn.forgotPasswordAlternativeMethods.title": "Wachtwoord vergeten?",
"signIn.noAvailableMethods.message": "Aanmelden is niet mogelijk. Er is geen beschikbare verificatiemethode.",
"signIn.noAvailableMethods.subtitle": "Er is een fout opgetreden",
"signIn.noAvailableMethods.title": "Kan niet aanmelden",
"signIn.passkey.subtitle": "Met je passkey bevestig je je identiteit. Je apparaat kan om je vingerafdruk, gezicht of schermvergrendeling vragen.",
"signIn.passkey.title": "Gebruik je passkey",
"signIn.password.actionLink": "Gebruik een andere methode",
"signIn.password.subtitle": "Voer het wachtwoord in dat bij je account hoort",
"signIn.password.title": "Voer je wachtwoord in",
"signIn.passwordPwned.title": "Wachtwoord gecompromitteerd",
"signIn.phoneCode.formTitle": "Verificatiecode",
"signIn.phoneCode.resendButton": "Geen code ontvangen? Opnieuw verzenden",
"signIn.phoneCode.subtitle": "om door te gaan naar {{applicationName}}",
"signIn.phoneCode.title": "Controleer je telefoon",
"signIn.phoneCodeMfa.formTitle": "Verificatiecode",
"signIn.phoneCodeMfa.resendButton": "Geen code ontvangen? Opnieuw verzenden",
"signIn.phoneCodeMfa.subtitle": "Voer de verificatiecode in die naar je telefoon is gestuurd om door te gaan",
"signIn.phoneCodeMfa.title": "Controleer je telefoon",
"signIn.resetPassword.formButtonPrimary": "Wachtwoord resetten",
"signIn.resetPassword.requiredMessage": "Om veiligheidsredenen moet je je wachtwoord resetten.",
"signIn.resetPassword.successMessage": "Je wachtwoord is succesvol gewijzigd. Je wordt aangemeld, een ogenblik geduld.",
"signIn.resetPassword.title": "Nieuw wachtwoord instellen",
"signIn.resetPasswordMfa.detailsLabel": "We moeten je identiteit verifiëren voordat we je wachtwoord kunnen resetten.",
"signIn.start.actionLink": "Registreren",
"signIn.start.actionLink__use_email": "Gebruik e-mail",
"signIn.start.actionLink__use_email_username": "Gebruik e-mail of gebruikersnaam",
"signIn.start.actionLink__use_passkey": "Gebruik passkey in plaats daarvan",
"signIn.start.actionLink__use_phone": "Gebruik telefoon",
"signIn.start.actionLink__use_username": "Gebruik gebruikersnaam",
"signIn.start.actionText": "Heb je nog geen account?",
"signIn.start.subtitle": "Welkom terug! Meld je aan om verder te gaan",
"signIn.start.title": "Meld je aan bij {{applicationName}}",
"signIn.totpMfa.formTitle": "Verificatiecode",
"signIn.totpMfa.subtitle": "Voer de verificatiecode in die is gegenereerd door je authenticator-app om door te gaan",
"signIn.totpMfa.title": "Twee-stapsverificatie",
"signInEnterPasswordTitle": "Voer je wachtwoord in",
"signUp.continue.actionLink": "Aanmelden",
"signUp.continue.actionText": "Heb je al een account?",
"signUp.continue.subtitle": "Vul de ontbrekende gegevens in om verder te gaan.",
"signUp.continue.title": "Ontbrekende velden invullen",
"signUp.emailCode.formSubtitle": "Voer de verificatiecode in die naar je e-mailadres is gestuurd",
"signUp.emailCode.formTitle": "Verificatiecode",
"signUp.emailCode.resendButton": "Geen code ontvangen? Opnieuw verzenden",
"signUp.emailCode.subtitle": "Voer de verificatiecode in die naar je e-mail is gestuurd",
"signUp.emailCode.title": "Verifieer je e-mail",
"signUp.emailLink.formSubtitle": "Gebruik de verificatielink die naar je e-mailadres is gestuurd",
"signUp.emailLink.formTitle": "Verificatielink",
"signUp.emailLink.loading.title": "Registreren...",
"signUp.emailLink.resendButton": "Geen link ontvangen? Opnieuw verzenden",
"signUp.emailLink.subtitle": "om door te gaan naar {{applicationName}}",
"signUp.emailLink.title": "Verifieer je e-mail",
"signUp.emailLink.verified.title": "Succesvol geregistreerd",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Ga terug naar het nieuw geopende tabblad om verder te gaan",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Ga terug naar het vorige tabblad om verder te gaan",
"signUp.emailLink.verifiedSwitchTab.title": "E-mail succesvol geverifieerd",
"signUp.phoneCode.formSubtitle": "Voer de verificatiecode in die naar je telefoonnummer is gestuurd",
"signUp.phoneCode.formTitle": "Verificatiecode",
"signUp.phoneCode.resendButton": "Geen code ontvangen? Opnieuw verzenden",
"signUp.phoneCode.subtitle": "Voer de verificatiecode in die naar je telefoon is gestuurd",
"signUp.phoneCode.title": "Verifieer je telefoon",
"signUp.start.actionLink": "Aanmelden",
"signUp.start.actionText": "Heb je al een account?",
"signUp.start.subtitle": "Welkom! Vul je gegevens in om te beginnen.",
"signUp.start.title": "Maak je account aan",
"socialButtonsBlockButton": "Doorgaan met {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Registratie mislukt vanwege mislukte beveiligingsvalidatie. Vernieuw de pagina om het opnieuw te proberen of neem contact op met de ondersteuning voor hulp.",
"unstable__errors.captcha_unavailable": "Registratie mislukt vanwege mislukte botvalidatie. Vernieuw de pagina om het opnieuw te proberen of neem contact op met de ondersteuning voor hulp.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Dit e-mailadres is al in gebruik. Probeer een ander.",
"unstable__errors.form_identifier_exists__phone_number": "Dit telefoonnummer is al in gebruik. Probeer een ander.",
"unstable__errors.form_identifier_exists__username": "Deze gebruikersnaam is al in gebruik. Probeer een andere.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "E-mailadres moet een geldig e-mailadres zijn.",
"unstable__errors.form_param_format_invalid__phone_number": "Telefoonnummer moet in een geldig internationaal formaat zijn",
"unstable__errors.form_param_max_length_exceeded__first_name": "Voornaam mag niet langer zijn dan 256 tekens.",
"unstable__errors.form_param_max_length_exceeded__last_name": "Achternaam mag niet langer zijn dan 256 tekens.",
"unstable__errors.form_param_max_length_exceeded__name": "Naam mag niet langer zijn dan 256 tekens.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Je wachtwoord is niet sterk genoeg.",
"unstable__errors.form_password_pwned": "Dit wachtwoord is betrokken geweest bij een datalek en kan niet worden gebruikt. Probeer een ander wachtwoord.",
"unstable__errors.form_password_pwned__sign_in": "Dit wachtwoord is betrokken geweest bij een datalek en kan niet worden gebruikt. Reset je wachtwoord.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Je wachtwoord overschrijdt het maximale aantal toegestane bytes. Verkort het of verwijder enkele speciale tekens.",
"unstable__errors.form_password_validation_failed": "Onjuist wachtwoord",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "Je kunt je laatste identificatie niet verwijderen.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Er is al een passkey geregistreerd op dit apparaat.",
"unstable__errors.passkey_not_supported": "Passkeys worden niet ondersteund op dit apparaat.",
"unstable__errors.passkey_pa_not_supported": "Registratie vereist een platformauthenticator, maar dit apparaat ondersteunt dat niet.",
"unstable__errors.passkey_registration_cancelled": "Registratie van passkey is geannuleerd of verlopen.",
"unstable__errors.passkey_retrieval_cancelled": "Verificatie van passkey is geannuleerd of verlopen.",
"unstable__errors.passwordComplexity.maximumLength": "minder dan {{length}} tekens",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} of meer tekens",
"unstable__errors.passwordComplexity.requireLowercase": "een kleine letter",
"unstable__errors.passwordComplexity.requireNumbers": "een cijfer",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "een speciaal teken",
"unstable__errors.passwordComplexity.requireUppercase": "een hoofdletter",
"unstable__errors.passwordComplexity.sentencePrefix": "Je wachtwoord moet bevatten",
"unstable__errors.phone_number_exists": "Dit telefoonnummer is al in gebruik. Probeer een ander.",
"unstable__errors.zxcvbn.couldBeStronger": "Je wachtwoord werkt, maar kan sterker. Probeer meer tekens toe te voegen.",
"unstable__errors.zxcvbn.goodPassword": "Je wachtwoord voldoet aan alle vereisten.",
"unstable__errors.zxcvbn.notEnough": "Je wachtwoord is niet sterk genoeg.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Gebruik hoofdletters, maar niet allemaal.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Voeg meer ongebruikelijke woorden toe.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Vermijd jaren die met jou geassocieerd zijn.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Gebruik meer hoofdletters dan alleen de eerste letter.",
"unstable__errors.zxcvbn.suggestions.dates": "Vermijd data en jaren die met jou geassocieerd zijn.",
"unstable__errors.zxcvbn.suggestions.l33t": "Vermijd voorspelbare vervangingen zoals '@' voor 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Gebruik langere toetsenbordpatronen en verander meerdere keren van richting.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Je kunt sterke wachtwoorden maken zonder symbolen, cijfers of hoofdletters.",
"unstable__errors.zxcvbn.suggestions.pwned": "Als je dit wachtwoord elders gebruikt, moet je het wijzigen.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Vermijd recente jaren.",
"unstable__errors.zxcvbn.suggestions.repeated": "Vermijd herhaalde woorden en tekens.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Vermijd omgekeerde spelling van veelvoorkomende woorden.",
"unstable__errors.zxcvbn.suggestions.sequences": "Vermijd veelvoorkomende tekenreeksen.",
"unstable__errors.zxcvbn.suggestions.useWords": "Gebruik meerdere woorden, maar vermijd veelgebruikte zinnen.",
"unstable__errors.zxcvbn.warnings.common": "Dit is een veelgebruikt wachtwoord.",
"unstable__errors.zxcvbn.warnings.commonNames": "Veelvoorkomende namen en achternamen zijn makkelijk te raden.",
"unstable__errors.zxcvbn.warnings.dates": "Datums zijn makkelijk te raden.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Herhaalde patronen zoals \"abcabcabc\" zijn makkelijk te raden.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Korte toetsenbordpatronen zijn makkelijk te raden.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Enkele namen of achternamen zijn makkelijk te raden.",
"unstable__errors.zxcvbn.warnings.pwned": "Je wachtwoord is gelekt bij een datalek op internet.",
"unstable__errors.zxcvbn.warnings.recentYears": "Recente jaren zijn makkelijk te raden.",
"unstable__errors.zxcvbn.warnings.sequences": "Veelvoorkomende tekenreeksen zoals \"abc\" zijn makkelijk te raden.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "Dit lijkt op een veelgebruikt wachtwoord.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Herhaalde tekens zoals \"aaa\" zijn makkelijk te raden.",
"unstable__errors.zxcvbn.warnings.straightRow": "Rechte rijen toetsen op je toetsenbord zijn makkelijk te raden.",
"unstable__errors.zxcvbn.warnings.topHundred": "Dit is een veelgebruikt wachtwoord.",
"unstable__errors.zxcvbn.warnings.topTen": "Dit is een van de meest gebruikte wachtwoorden.",
"unstable__errors.zxcvbn.warnings.userInputs": "Er mogen geen persoonlijke of pagina-gerelateerde gegevens worden gebruikt.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Enkele woorden zijn makkelijk te raden.",
"userButton.action__addAccount": "Account toevoegen",
"userButton.action__manageAccount": "Account beheren",
"userButton.action__signOut": "Afmelden",
"userButton.action__signOutAll": "Afmelden van alle accounts",
"userProfile.backupCodePage.actionLabel__copied": "Gekopieerd!",
"userProfile.backupCodePage.actionLabel__copy": "Alles kopiëren",
"userProfile.backupCodePage.actionLabel__download": "Download .txt",
"userProfile.backupCodePage.actionLabel__print": "Afdrukken",
"userProfile.backupCodePage.infoText1": "Back-upcodes worden ingeschakeld voor dit account.",
"userProfile.backupCodePage.infoText2": "Houd de back-upcodes geheim en bewaar ze op een veilige plek. Je kunt nieuwe codes genereren als je vermoedt dat ze zijn gecompromitteerd.",
"userProfile.backupCodePage.subtitle__codelist": "Bewaar ze veilig en houd ze geheim.",
"userProfile.backupCodePage.successMessage": "Back-upcodes zijn nu ingeschakeld. Je kunt een van deze codes gebruiken om in te loggen als je geen toegang meer hebt tot je verificatieapparaat. Elke code kan slechts één keer worden gebruikt.",
"userProfile.backupCodePage.successSubtitle": "Je kunt een van deze codes gebruiken om in te loggen als je geen toegang meer hebt tot je verificatieapparaat.",
"userProfile.backupCodePage.title": "Back-upcodeverificatie toevoegen",
"userProfile.backupCodePage.title__codelist": "Back-upcodes",
"userProfile.connectedAccountPage.formHint": "Selecteer een provider om je account te koppelen.",
"userProfile.connectedAccountPage.formHint__noAccounts": "Er zijn geen externe accountproviders beschikbaar.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} wordt verwijderd van dit account.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Je kunt dit gekoppelde account niet meer gebruiken en afhankelijk functies zullen niet meer werken.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} is verwijderd van je account.",
"userProfile.connectedAccountPage.removeResource.title": "Gekoppeld account verwijderen",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "De provider is toegevoegd aan je account",
"userProfile.connectedAccountPage.title": "Gekoppeld account toevoegen",
"userProfile.deletePage.actionDescription": "Typ \"Account verwijderen\" hieronder om door te gaan.",
"userProfile.deletePage.confirm": "Account verwijderen",
"userProfile.deletePage.messageLine1": "Weet je zeker dat je je account wilt verwijderen?",
"userProfile.deletePage.messageLine2": "Deze actie is permanent en kan niet ongedaan worden gemaakt.",
"userProfile.deletePage.title": "Account verwijderen",
"userProfile.emailAddressPage.emailCode.formHint": "Er wordt een e-mail met een verificatiecode verzonden naar dit e-mailadres.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Voer de verificatiecode in die is verzonden naar {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "Verificatiecode",
"userProfile.emailAddressPage.emailCode.resendButton": "Geen code ontvangen? Opnieuw verzenden",
"userProfile.emailAddressPage.emailCode.successMessage": "Het e-mailadres {{identifier}} is toegevoegd aan je account.",
"userProfile.emailAddressPage.emailLink.formHint": "Er wordt een e-mail met een verificatielink verzonden naar dit e-mailadres.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Klik op de verificatielink in de e-mail die is verzonden naar {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "Verificatielink",
"userProfile.emailAddressPage.emailLink.resendButton": "Geen link ontvangen? Opnieuw verzenden",
"userProfile.emailAddressPage.emailLink.successMessage": "Het e-mailadres {{identifier}} is toegevoegd aan je account.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} wordt verwijderd van dit account.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Je kunt je niet meer aanmelden met dit e-mailadres.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} is verwijderd van je account.",
"userProfile.emailAddressPage.removeResource.title": "E-mailadres verwijderen",
"userProfile.emailAddressPage.title": "E-mailadres toevoegen",
"userProfile.emailAddressPage.verifyTitle": "E-mailadres verifiëren",
"userProfile.formButtonPrimary__add": "Toevoegen",
"userProfile.formButtonPrimary__continue": "Doorgaan",
"userProfile.formButtonPrimary__finish": "Voltooien",
"userProfile.formButtonPrimary__remove": "Verwijderen",
"userProfile.formButtonPrimary__save": "Opslaan",
"userProfile.formButtonReset": "Annuleren",
"userProfile.mfaPage.formHint": "Selecteer een methode om toe te voegen.",
"userProfile.mfaPage.title": "Twee-stapsverificatie toevoegen",
"userProfile.mfaPhoneCodePage.backButton": "Bestaand nummer gebruiken",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Telefoonnummer toevoegen",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} ontvangt geen verificatiecodes meer bij het aanmelden.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Je account is mogelijk minder veilig. Weet je zeker dat je wilt doorgaan?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "Twee-stapsverificatie via sms-code is verwijderd voor {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "Twee-stapsverificatie verwijderen",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Selecteer een bestaand telefoonnummer om te registreren voor sms-code twee-stapsverificatie of voeg een nieuw nummer toe.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "Er zijn geen beschikbare telefoonnummers om te registreren voor sms-code twee-stapsverificatie. Voeg een nieuw nummer toe.",
"userProfile.mfaPhoneCodePage.successMessage1": "Bij het aanmelden moet je een verificatiecode invoeren die naar dit telefoonnummer is verzonden.",
"userProfile.mfaPhoneCodePage.successMessage2": "Bewaar deze back-upcodes op een veilige plek. Als je geen toegang meer hebt tot je verificatieapparaat, kun je deze codes gebruiken om in te loggen.",
"userProfile.mfaPhoneCodePage.successTitle": "Sms-codeverificatie ingeschakeld",
"userProfile.mfaPhoneCodePage.title": "Sms-codeverificatie toevoegen",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "QR-code scannen in plaats daarvan",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "Kan QR-code niet scannen?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Stel een nieuwe aanmeldmethode in in je authenticator-app en scan de onderstaande QR-code om deze te koppelen aan je account.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Stel een nieuwe aanmeldmethode in in je authenticator en voer de onderstaande sleutel in.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Zorg ervoor dat Tijdgebaseerde of Eenmalige wachtwoorden zijn ingeschakeld en voltooi vervolgens de koppeling van je account.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Als alternatief, als je authenticator TOTP-URI's ondersteunt, kun je ook de volledige URI kopiëren.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Verificatiecodes van deze authenticator zijn niet langer vereist bij het aanmelden.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Je account is mogelijk minder veilig. Weet je zeker dat je wilt doorgaan?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "Twee-stapsverificatie via authenticator-app is verwijderd.",
"userProfile.mfaTOTPPage.removeResource.title": "Twee-stapsverificatie verwijderen",
"userProfile.mfaTOTPPage.successMessage": "Twee-stapsverificatie is nu ingeschakeld. Bij het aanmelden moet je een verificatiecode invoeren van deze authenticator.",
"userProfile.mfaTOTPPage.title": "Authenticator-app toevoegen",
"userProfile.mfaTOTPPage.verifySubtitle": "Voer de verificatiecode in die door je authenticator is gegenereerd",
"userProfile.mfaTOTPPage.verifyTitle": "Verificatiecode",
"userProfile.mobileButton__menu": "Menu",
"userProfile.navbar.account": "Profiel",
"userProfile.navbar.description": "Beheer je accountgegevens.",
"userProfile.navbar.security": "Beveiliging",
"userProfile.navbar.title": "Account",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} wordt verwijderd van dit account.",
"userProfile.passkeyScreen.removeResource.title": "Passkey verwijderen",
"userProfile.passkeyScreen.subtitle__rename": "Je kunt de naam van de passkey wijzigen om deze makkelijker terug te vinden.",
"userProfile.passkeyScreen.title__rename": "Passkey hernoemen",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Het is aanbevolen om je af te melden op alle andere apparaten waarop je oude wachtwoord is gebruikt.",
"userProfile.passwordPage.readonly": "Je wachtwoord kan momenteel niet worden bewerkt omdat je alleen via de enterprise-verbinding kunt inloggen.",
"userProfile.passwordPage.successMessage__set": "Je wachtwoord is ingesteld.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Alle andere apparaten zijn afgemeld.",
"userProfile.passwordPage.successMessage__update": "Je wachtwoord is bijgewerkt.",
"userProfile.passwordPage.title__set": "Wachtwoord instellen",
"userProfile.passwordPage.title__update": "Wachtwoord bijwerken",
"userProfile.phoneNumberPage.infoText": "Er wordt een sms met een verificatiecode verzonden naar dit telefoonnummer. Kosten voor berichten en data kunnen van toepassing zijn.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} wordt verwijderd van dit account.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Je kunt je niet meer aanmelden met dit telefoonnummer.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} is verwijderd van je account.",
"userProfile.phoneNumberPage.removeResource.title": "Telefoonnummer verwijderen",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} is toegevoegd aan je account.",
"userProfile.phoneNumberPage.title": "Telefoonnummer toevoegen",
"userProfile.phoneNumberPage.verifySubtitle": "Voer de verificatiecode in die is verzonden naar {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "Telefoonnummer verifiëren",
"userProfile.profilePage.fileDropAreaHint": "Aanbevolen formaat 1:1, maximaal 10MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Verwijderen",
"userProfile.profilePage.imageFormSubtitle": "Uploaden",
"userProfile.profilePage.imageFormTitle": "Profielfoto",
"userProfile.profilePage.readonly": "Je profielinformatie is verstrekt via de enterprise-verbinding en kan niet worden bewerkt.",
"userProfile.profilePage.successMessage": "Je profiel is bijgewerkt.",
"userProfile.profilePage.title": "Profiel bijwerken",
"userProfile.start.activeDevicesSection.destructiveAction": "Afmelden van apparaat",
"userProfile.start.activeDevicesSection.title": "Actieve apparaten",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Opnieuw proberen",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Nu autoriseren",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Verwijderen",
"userProfile.start.connectedAccountsSection.primaryButton": "Account koppelen",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "De vereiste machtigingen zijn bijgewerkt. Je kunt beperkte functionaliteit ervaren. Autoriseer deze applicatie opnieuw om problemen te voorkomen.",
"userProfile.start.connectedAccountsSection.title": "Gekoppelde accounts",
"userProfile.start.dangerSection.deleteAccountButton": "Account verwijderen",
"userProfile.start.dangerSection.title": "Account verwijderen",
"userProfile.start.emailAddressesSection.destructiveAction": "E-mail verwijderen",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Instellen als primair",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Verificatie voltooien",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Verifiëren",
"userProfile.start.emailAddressesSection.primaryButton": "E-mailadres toevoegen",
"userProfile.start.emailAddressesSection.title": "E-mailadressen",
"userProfile.start.enterpriseAccountsSection.title": "Enterprise-accounts",
"userProfile.start.headerTitle__account": "Profielgegevens",
"userProfile.start.headerTitle__security": "Beveiliging",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Opnieuw genereren",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Back-upcodes",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Genereer een nieuwe set veilige back-upcodes. Vorige codes worden verwijderd en zijn niet meer bruikbaar.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Back-upcodes opnieuw genereren",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Instellen als standaard",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Verwijderen",
"userProfile.start.mfaSection.primaryButton": "Twee-stapsverificatie toevoegen",
"userProfile.start.mfaSection.title": "Twee-stapsverificatie",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Verwijderen",
"userProfile.start.mfaSection.totp.headerTitle": "Authenticator-app",
"userProfile.start.passkeysSection.menuAction__destructive": "Verwijderen",
"userProfile.start.passkeysSection.menuAction__rename": "Hernoemen",
"userProfile.start.passkeysSection.title": "Passkeys",
"userProfile.start.passwordSection.primaryButton__setPassword": "Wachtwoord instellen",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Wachtwoord bijwerken",
"userProfile.start.passwordSection.title": "Wachtwoord",
"userProfile.start.phoneNumbersSection.destructiveAction": "Telefoonnummer verwijderen",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Instellen als primair",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Verificatie voltooien",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Telefoonnummer verifiëren",
"userProfile.start.phoneNumbersSection.primaryButton": "Telefoonnummer toevoegen",
"userProfile.start.phoneNumbersSection.title": "Telefoonnummers",
"userProfile.start.profileSection.primaryButton": "Profiel bijwerken",
"userProfile.start.profileSection.title": "Profiel",
"userProfile.start.usernameSection.primaryButton__setUsername": "Gebruikersnaam instellen",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Gebruikersnaam bijwerken",
"userProfile.start.usernameSection.title": "Gebruikersnaam",
"userProfile.start.web3WalletsSection.destructiveAction": "Wallet verwijderen",
"userProfile.start.web3WalletsSection.primaryButton": "Web3-wallets",
"userProfile.start.web3WalletsSection.title": "Web3-wallets",
"userProfile.usernamePage.successMessage": "Je gebruikersnaam is bijgewerkt.",
"userProfile.usernamePage.title__set": "Gebruikersnaam instellen",
"userProfile.usernamePage.title__update": "Gebruikersnaam bijwerken",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} wordt verwijderd van dit account.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Je kunt je niet meer aanmelden met deze web3-wallet.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} is verwijderd van je account.",
"userProfile.web3WalletPage.removeResource.title": "Web3-wallet verwijderen",
"userProfile.web3WalletPage.subtitle__availableWallets": "Selecteer een web3-wallet om te koppelen aan je account.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Er zijn geen beschikbare web3-wallets.",
"userProfile.web3WalletPage.successMessage": "De wallet is toegevoegd aan je account.",
"userProfile.web3WalletPage.title": "Web3-wallet toevoegen"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Sessie voortzetten",
"clerkAuth.loginSuccess.desc": "{{greeting}}, fijn om je weer van dienst te zijn. Laten we verdergaan waar we gebleven waren.",
"clerkAuth.loginSuccess.title": "Welkom terug, {{nickName}}",
"error.backHome": "Terug naar home",
"error.desc": "Probeer het later opnieuw of keer terug naar de bekende wereld.",
"error.retry": "Opnieuw laden",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Sorry, het quotum voor deze sleutel is bereikt. Controleer je accountbalans of verhoog het quotum en probeer opnieuw.",
"response.InvalidAccessCode": "Ongeldige of lege toegangscode. Voer de juiste toegangscode in of voeg een aangepaste API-sleutel toe.",
"response.InvalidBedrockCredentials": "Bedrock-authenticatie mislukt. Controleer AccessKeyId/SecretAccessKey en probeer opnieuw.",
"response.InvalidClerkUser": "Sorry, je bent momenteel niet ingelogd. Log in of registreer een account om verder te gaan.",
"response.InvalidComfyUIArgs": "Ongeldige ComfyUI-configuratie. Controleer de instellingen en probeer opnieuw.",
"response.InvalidGithubToken": "De GitHub Personal Access Token is onjuist of leeg. Controleer je token en probeer opnieuw.",
"response.InvalidOllamaArgs": "Ongeldige Ollama-configuratie. Controleer de instellingen en probeer opnieuw.",

View file

@ -1,545 +0,0 @@
{
"backButton": "Wstecz",
"badge__default": "Domyślny",
"badge__otherImpersonatorDevice": "Inne urządzenie podszywające się",
"badge__primary": "Główny",
"badge__requiresAction": "Wymaga działania",
"badge__thisDevice": "To urządzenie",
"badge__unverified": "Niezweryfikowany",
"badge__userDevice": "Urządzenie użytkownika",
"badge__you": "Ty",
"createOrganization.formButtonSubmit": "Utwórz organizację",
"createOrganization.invitePage.formButtonReset": "Pomiń",
"createOrganization.title": "Utwórz organizację",
"dates.lastDay": "Wczoraj o {{ date | timeString('pl-PL') }}",
"dates.next6Days": "{{ date | weekday('pl-PL','long') }} o {{ date | timeString('pl-PL') }}",
"dates.nextDay": "Jutro o {{ date | timeString('pl-PL') }}",
"dates.numeric": "{{ date | numeric('pl-PL') }}",
"dates.previous6Days": "W zeszły {{ date | weekday('pl-PL','long') }} o {{ date | timeString('pl-PL') }}",
"dates.sameDay": "Dzisiaj o {{ date | timeString('pl-PL') }}",
"dividerText": "lub",
"footerActionLink__useAnotherMethod": "Użyj innej metody",
"footerPageLink__help": "Pomoc",
"footerPageLink__privacy": "Prywatność",
"footerPageLink__terms": "Warunki",
"formButtonPrimary": "Kontynuuj",
"formButtonPrimary__verify": "Zweryfikuj",
"formFieldAction__forgotPassword": "Zapomniałeś hasła?",
"formFieldError__matchingPasswords": "Hasła się zgadzają.",
"formFieldError__notMatchingPasswords": "Hasła się nie zgadzają.",
"formFieldError__verificationLinkExpired": "Link weryfikacyjny wygasł. Proszę poprosić o nowy link.",
"formFieldHintText__optional": "Opcjonalne",
"formFieldHintText__slug": "Slug to czytelny dla człowieka identyfikator, który musi być unikalny. Często używany w adresach URL.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Usuń konto",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "przyklad@email.com, przyklad2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "moja-organizacja",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Włącz automatyczne zaproszenia dla tej domeny",
"formFieldLabel__backupCode": "Kod zapasowy",
"formFieldLabel__confirmDeletion": "Potwierdzenie",
"formFieldLabel__confirmPassword": "Potwierdź hasło",
"formFieldLabel__currentPassword": "Obecne hasło",
"formFieldLabel__emailAddress": "Adres e-mail",
"formFieldLabel__emailAddress_username": "Adres e-mail lub nazwa użytkownika",
"formFieldLabel__emailAddresses": "Adresy e-mail",
"formFieldLabel__firstName": "Imię",
"formFieldLabel__lastName": "Nazwisko",
"formFieldLabel__newPassword": "Nowe hasło",
"formFieldLabel__organizationDomain": "Domena",
"formFieldLabel__organizationDomainDeletePending": "Usuń oczekujące zaproszenia i sugestie",
"formFieldLabel__organizationDomainEmailAddress": "Adres e-mail do weryfikacji",
"formFieldLabel__organizationDomainEmailAddressDescription": "Wprowadź adres e-mail w tej domenie, aby otrzymać kod i zweryfikować domenę.",
"formFieldLabel__organizationName": "Nazwa",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "Nazwa klucza dostępu",
"formFieldLabel__password": "Hasło",
"formFieldLabel__phoneNumber": "Numer telefonu",
"formFieldLabel__role": "Rola",
"formFieldLabel__signOutOfOtherSessions": "Wyloguj się ze wszystkich innych urządzeń",
"formFieldLabel__username": "Nazwa użytkownika",
"impersonationFab.action__signOut": "Wyloguj się",
"impersonationFab.title": "Zalogowano jako {{identifier}}",
"locale": "pl-PL",
"maintenanceMode": "Obecnie prowadzimy prace konserwacyjne, ale nie martw się — nie powinno to potrwać dłużej niż kilka minut.",
"membershipRole__admin": "Administrator",
"membershipRole__basicMember": "Członek",
"membershipRole__guestMember": "Gość",
"organizationList.action__createOrganization": "Utwórz organizację",
"organizationList.action__invitationAccept": "Dołącz",
"organizationList.action__suggestionsAccept": "Poproś o dołączenie",
"organizationList.createOrganization": "Utwórz organizację",
"organizationList.invitationAcceptedLabel": "Dołączono",
"organizationList.subtitle": "aby kontynuować w {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "Oczekuje na zatwierdzenie",
"organizationList.title": "Wybierz konto",
"organizationList.titleWithoutPersonal": "Wybierz organizację",
"organizationProfile.badge__automaticInvitation": "Automatyczne zaproszenia",
"organizationProfile.badge__automaticSuggestion": "Automatyczne sugestie",
"organizationProfile.badge__manualInvitation": "Brak automatycznego dołączania",
"organizationProfile.badge__unverified": "Niezweryfikowany",
"organizationProfile.createDomainPage.subtitle": "Dodaj domenę do weryfikacji. Użytkownicy z adresami e-mail w tej domenie mogą automatycznie dołączyć do organizacji lub poprosić o dołączenie.",
"organizationProfile.createDomainPage.title": "Dodaj domenę",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "Nie udało się wysłać zaproszeń. Istnieją już oczekujące zaproszenia dla następujących adresów e-mail: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Wyślij zaproszenia",
"organizationProfile.invitePage.selectDropdown__role": "Wybierz rolę",
"organizationProfile.invitePage.subtitle": "Wprowadź lub wklej jeden lub więcej adresów e-mail, oddzielonych spacjami lub przecinkami.",
"organizationProfile.invitePage.successMessage": "Zaproszenia zostały pomyślnie wysłane",
"organizationProfile.invitePage.title": "Zaproś nowych członków",
"organizationProfile.membersPage.action__invite": "Zaproś",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Usuń członka",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Dołączono",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Rola",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Użytkownik",
"organizationProfile.membersPage.detailsTitle__emptyRow": "Brak członków do wyświetlenia",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Zaproś użytkowników, łącząc domenę e-mail z organizacją. Każdy, kto zarejestruje się z pasującym adresem e-mail, będzie mógł dołączyć do organizacji w dowolnym momencie.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Automatyczne zaproszenia",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Zarządzaj zweryfikowanymi domenami",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Brak zaproszeń do wyświetlenia",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Cofnij zaproszenie",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Zaproszono",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Użytkownicy, którzy zarejestrują się z pasującym adresem e-mail, zobaczą sugestię dołączenia do organizacji.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Automatyczne sugestie",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Zarządzaj zweryfikowanymi domenami",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Zatwierdź",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Odrzuć",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Poproszono o dostęp",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Brak próśb do wyświetlenia",
"organizationProfile.membersPage.start.headerTitle__invitations": "Zaproszenia",
"organizationProfile.membersPage.start.headerTitle__members": "Członkowie",
"organizationProfile.membersPage.start.headerTitle__requests": "Prośby",
"organizationProfile.navbar.description": "Zarządzaj swoją organizacją.",
"organizationProfile.navbar.general": "Ogólne",
"organizationProfile.navbar.members": "Członkowie",
"organizationProfile.navbar.title": "Organizacja",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Wpisz \"{{organizationName}}\" poniżej, aby kontynuować.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Czy na pewno chcesz usunąć tę organizację?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Ta operacja jest trwała i nieodwracalna.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Organizacja została usunięta.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Usuń organizację",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Wpisz \"{{organizationName}}\" poniżej, aby kontynuować.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Czy na pewno chcesz opuścić tę organizację? Utracisz dostęp do tej organizacji i jej aplikacji.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Ta operacja jest trwała i nieodwracalna.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Opuściłeś organizację.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Opuść organizację",
"organizationProfile.profilePage.dangerSection.title": "Niebezpieczeństwo",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Zarządzaj",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Usuń",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Zweryfikuj",
"organizationProfile.profilePage.domainSection.primaryButton": "Dodaj domenę",
"organizationProfile.profilePage.domainSection.subtitle": "Pozwól użytkownikom automatycznie dołączać do organizacji lub składać wniosek o dołączenie na podstawie zweryfikowanej domeny e-mail.",
"organizationProfile.profilePage.domainSection.title": "Zweryfikowane domeny",
"organizationProfile.profilePage.successMessage": "Organizacja została zaktualizowana.",
"organizationProfile.profilePage.title": "Zaktualizuj profil",
"organizationProfile.removeDomainPage.messageLine1": "Domena e-mail {{domain}} zostanie usunięta.",
"organizationProfile.removeDomainPage.messageLine2": "Użytkownicy nie będą mogli automatycznie dołączać do organizacji po tej zmianie.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} została usunięta.",
"organizationProfile.removeDomainPage.title": "Usuń domenę",
"organizationProfile.start.headerTitle__general": "Ogólne",
"organizationProfile.start.headerTitle__members": "Członkowie",
"organizationProfile.start.profileSection.primaryButton": "Zaktualizuj profil",
"organizationProfile.start.profileSection.title": "Profil organizacji",
"organizationProfile.start.profileSection.uploadAction__title": "Logo",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Usunięcie tej domeny wpłynie na zaproszonych użytkowników.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Usuń domenę",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Usuń tę domenę ze zweryfikowanych domen",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Usuń domenę",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Użytkownicy są automatycznie zapraszani do organizacji podczas rejestracji i mogą dołączyć w dowolnym momencie.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Automatyczne zaproszenia",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Użytkownicy otrzymują sugestię, aby złożyć wniosek o dołączenie, ale muszą zostać zatwierdzeni przez administratora.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Automatyczne sugestie",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Zmiana trybu rejestracji wpłynie tylko na nowych użytkowników.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Oczekujące zaproszenia wysłane do użytkowników: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Oczekujące sugestie wysłane do użytkowników: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Użytkownicy mogą być zapraszani do organizacji tylko ręcznie.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Brak automatycznej rejestracji",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Wybierz, w jaki sposób użytkownicy z tej domeny mogą dołączyć do organizacji.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Niebezpieczeństwo",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Opcje rejestracji",
"organizationProfile.verifiedDomainPage.subtitle": "Domena {{domain}} została zweryfikowana. Kontynuuj, wybierając tryb rejestracji.",
"organizationProfile.verifiedDomainPage.title": "Zaktualizuj {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "Wprowadź kod weryfikacyjny wysłany na Twój adres e-mail",
"organizationProfile.verifyDomainPage.formTitle": "Kod weryfikacyjny",
"organizationProfile.verifyDomainPage.resendButton": "Nie otrzymałeś kodu? Wyślij ponownie",
"organizationProfile.verifyDomainPage.subtitle": "Domena {{domainName}} musi zostać zweryfikowana przez e-mail.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "Kod weryfikacyjny został wysłany na adres {{emailAddress}}. Wprowadź kod, aby kontynuować.",
"organizationProfile.verifyDomainPage.title": "Zweryfikuj domenę",
"organizationSwitcher.action__createOrganization": "Utwórz organizację",
"organizationSwitcher.action__invitationAccept": "Dołącz",
"organizationSwitcher.action__manageOrganization": "Zarządzaj",
"organizationSwitcher.action__suggestionsAccept": "Złóż wniosek o dołączenie",
"organizationSwitcher.notSelected": "Nie wybrano organizacji",
"organizationSwitcher.personalWorkspace": "Konto osobiste",
"organizationSwitcher.suggestionsAcceptedLabel": "Oczekuje na zatwierdzenie",
"paginationButton__next": "Następna",
"paginationButton__previous": "Poprzednia",
"paginationRowText__displaying": "Wyświetlanie",
"paginationRowText__of": "z",
"signIn.accountSwitcher.action__addAccount": "Dodaj konto",
"signIn.accountSwitcher.action__signOutAll": "Wyloguj się ze wszystkich kont",
"signIn.accountSwitcher.subtitle": "Wybierz konto, z którego chcesz kontynuować.",
"signIn.accountSwitcher.title": "Wybierz konto",
"signIn.alternativeMethods.actionLink": "Uzyskaj pomoc",
"signIn.alternativeMethods.actionText": "Nie masz żadnej z tych opcji?",
"signIn.alternativeMethods.blockButton__backupCode": "Użyj kodu zapasowego",
"signIn.alternativeMethods.blockButton__emailCode": "Wyślij kod e-mailem na {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "Wyślij link e-mailem na {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "Zaloguj się za pomocą klucza dostępu",
"signIn.alternativeMethods.blockButton__password": "Zaloguj się hasłem",
"signIn.alternativeMethods.blockButton__phoneCode": "Wyślij kod SMS na {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "Użyj aplikacji uwierzytelniającej",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Skontaktuj się z pomocą techniczną",
"signIn.alternativeMethods.getHelp.content": "Jeśli masz trudności z zalogowaniem się na swoje konto, napisz do nas, a pomożemy Ci jak najszybciej odzyskać dostęp.",
"signIn.alternativeMethods.getHelp.title": "Uzyskaj pomoc",
"signIn.alternativeMethods.subtitle": "Masz problemy? Możesz skorzystać z jednej z poniższych metod logowania.",
"signIn.alternativeMethods.title": "Użyj innej metody",
"signIn.backupCodeMfa.subtitle": "Twój kod zapasowy to ten, który otrzymałeś podczas konfigurowania uwierzytelniania dwuskładnikowego.",
"signIn.backupCodeMfa.title": "Wprowadź kod zapasowy",
"signIn.emailCode.formTitle": "Kod weryfikacyjny",
"signIn.emailCode.resendButton": "Nie otrzymałeś kodu? Wyślij ponownie",
"signIn.emailCode.subtitle": "aby kontynuować do {{applicationName}}",
"signIn.emailCode.title": "Sprawdź swoją skrzynkę e-mail",
"signIn.emailLink.expired.subtitle": "Wróć do oryginalnej karty, aby kontynuować.",
"signIn.emailLink.expired.title": "Ten link weryfikacyjny wygasł",
"signIn.emailLink.failed.subtitle": "Wróć do oryginalnej karty, aby kontynuować.",
"signIn.emailLink.failed.title": "Ten link weryfikacyjny jest nieprawidłowy",
"signIn.emailLink.formSubtitle": "Użyj linku weryfikacyjnego wysłanego na Twój e-mail",
"signIn.emailLink.formTitle": "Link weryfikacyjny",
"signIn.emailLink.loading.subtitle": "Zaraz nastąpi przekierowanie",
"signIn.emailLink.loading.title": "Logowanie...",
"signIn.emailLink.resendButton": "Nie otrzymałeś linku? Wyślij ponownie",
"signIn.emailLink.subtitle": "aby kontynuować do {{applicationName}}",
"signIn.emailLink.title": "Sprawdź swoją skrzynkę e-mail",
"signIn.emailLink.unusedTab.title": "Możesz zamknąć tę kartę",
"signIn.emailLink.verified.subtitle": "Zaraz nastąpi przekierowanie",
"signIn.emailLink.verified.title": "Pomyślnie zalogowano",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Wróć do oryginalnej karty, aby kontynuować",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Wróć do nowo otwartej karty, aby kontynuować",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Zalogowano na innej karcie",
"signIn.forgotPassword.formTitle": "Kod resetowania hasła",
"signIn.forgotPassword.resendButton": "Nie otrzymałeś kodu? Wyślij ponownie",
"signIn.forgotPassword.subtitle": "aby zresetować hasło",
"signIn.forgotPassword.subtitle_email": "Najpierw wprowadź kod wysłany na Twój adres e-mail",
"signIn.forgotPassword.subtitle_phone": "Najpierw wprowadź kod wysłany na Twój telefon",
"signIn.forgotPassword.title": "Resetowanie hasła",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Zresetuj hasło",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Lub zaloguj się inną metodą",
"signIn.forgotPasswordAlternativeMethods.title": "Zapomniałeś hasła?",
"signIn.noAvailableMethods.message": "Nie można kontynuować logowania. Brak dostępnych metod uwierzytelniania.",
"signIn.noAvailableMethods.subtitle": "Wystąpił błąd",
"signIn.noAvailableMethods.title": "Nie można się zalogować",
"signIn.passkey.subtitle": "Użycie klucza dostępu potwierdza Twoją tożsamość. Urządzenie może poprosić o odcisk palca, twarz lub blokadę ekranu.",
"signIn.passkey.title": "Użyj klucza dostępu",
"signIn.password.actionLink": "Użyj innej metody",
"signIn.password.subtitle": "Wprowadź hasło powiązane z Twoim kontem",
"signIn.password.title": "Wprowadź hasło",
"signIn.passwordPwned.title": "Hasło zostało naruszone",
"signIn.phoneCode.formTitle": "Kod weryfikacyjny",
"signIn.phoneCode.resendButton": "Nie otrzymałeś kodu? Wyślij ponownie",
"signIn.phoneCode.subtitle": "aby kontynuować do {{applicationName}}",
"signIn.phoneCode.title": "Sprawdź swój telefon",
"signIn.phoneCodeMfa.formTitle": "Kod weryfikacyjny",
"signIn.phoneCodeMfa.resendButton": "Nie otrzymałeś kodu? Wyślij ponownie",
"signIn.phoneCodeMfa.subtitle": "Aby kontynuować, wprowadź kod weryfikacyjny wysłany na Twój telefon",
"signIn.phoneCodeMfa.title": "Sprawdź swój telefon",
"signIn.resetPassword.formButtonPrimary": "Zresetuj hasło",
"signIn.resetPassword.requiredMessage": "Ze względów bezpieczeństwa wymagane jest zresetowanie hasła.",
"signIn.resetPassword.successMessage": "Hasło zostało pomyślnie zmienione. Trwa logowanie, proszę czekać.",
"signIn.resetPassword.title": "Ustaw nowe hasło",
"signIn.resetPasswordMfa.detailsLabel": "Musimy potwierdzić Twoją tożsamość przed zresetowaniem hasła.",
"signIn.start.actionLink": "Zarejestruj się",
"signIn.start.actionLink__use_email": "Użyj e-maila",
"signIn.start.actionLink__use_email_username": "Użyj e-maila lub nazwy użytkownika",
"signIn.start.actionLink__use_passkey": "Użyj klucza dostępu",
"signIn.start.actionLink__use_phone": "Użyj telefonu",
"signIn.start.actionLink__use_username": "Użyj nazwy użytkownika",
"signIn.start.actionText": "Nie masz konta?",
"signIn.start.subtitle": "Witamy ponownie! Zaloguj się, aby kontynuować",
"signIn.start.title": "Zaloguj się do {{applicationName}}",
"signIn.totpMfa.formTitle": "Kod weryfikacyjny",
"signIn.totpMfa.subtitle": "Aby kontynuować, wprowadź kod weryfikacyjny wygenerowany przez aplikację uwierzytelniającą",
"signIn.totpMfa.title": "Weryfikacja dwuetapowa",
"signInEnterPasswordTitle": "Wprowadź swoje hasło",
"signUp.continue.actionLink": "Zaloguj się",
"signUp.continue.actionText": "Masz już konto?",
"signUp.continue.subtitle": "Uzupełnij brakujące dane, aby kontynuować.",
"signUp.continue.title": "Uzupełnij brakujące pola",
"signUp.emailCode.formSubtitle": "Wprowadź kod weryfikacyjny wysłany na Twój adres e-mail",
"signUp.emailCode.formTitle": "Kod weryfikacyjny",
"signUp.emailCode.resendButton": "Nie otrzymałeś kodu? Wyślij ponownie",
"signUp.emailCode.subtitle": "Wprowadź kod weryfikacyjny wysłany na Twój e-mail",
"signUp.emailCode.title": "Zweryfikuj swój e-mail",
"signUp.emailLink.formSubtitle": "Użyj linku weryfikacyjnego wysłanego na Twój adres e-mail",
"signUp.emailLink.formTitle": "Link weryfikacyjny",
"signUp.emailLink.loading.title": "Rejestracja...",
"signUp.emailLink.resendButton": "Nie otrzymałeś linku? Wyślij ponownie",
"signUp.emailLink.subtitle": "aby kontynuować do {{applicationName}}",
"signUp.emailLink.title": "Zweryfikuj swój e-mail",
"signUp.emailLink.verified.title": "Pomyślnie zarejestrowano",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Wróć do nowo otwartej karty, aby kontynuować",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Wróć do poprzedniej karty, aby kontynuować",
"signUp.emailLink.verifiedSwitchTab.title": "E-mail został pomyślnie zweryfikowany",
"signUp.phoneCode.formSubtitle": "Wprowadź kod weryfikacyjny wysłany na Twój numer telefonu",
"signUp.phoneCode.formTitle": "Kod weryfikacyjny",
"signUp.phoneCode.resendButton": "Nie otrzymałeś kodu? Wyślij ponownie",
"signUp.phoneCode.subtitle": "Wprowadź kod weryfikacyjny wysłany na Twój telefon",
"signUp.phoneCode.title": "Zweryfikuj swój telefon",
"signUp.start.actionLink": "Zaloguj się",
"signUp.start.actionText": "Masz już konto?",
"signUp.start.subtitle": "Witamy! Wypełnij dane, aby rozpocząć.",
"signUp.start.title": "Utwórz konto",
"socialButtonsBlockButton": "Kontynuuj z {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Rejestracja nie powiodła się z powodu nieudanej weryfikacji zabezpieczeń. Odśwież stronę, aby spróbować ponownie, lub skontaktuj się z pomocą techniczną.",
"unstable__errors.captcha_unavailable": "Rejestracja nie powiodła się z powodu nieudanej weryfikacji bota. Odśwież stronę, aby spróbować ponownie, lub skontaktuj się z pomocą techniczną.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Ten adres e-mail jest już zajęty. Spróbuj innego.",
"unstable__errors.form_identifier_exists__phone_number": "Ten numer telefonu jest już zajęty. Spróbuj innego.",
"unstable__errors.form_identifier_exists__username": "Ta nazwa użytkownika jest już zajęta. Spróbuj innej.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "Adres e-mail musi być poprawnym adresem e-mail.",
"unstable__errors.form_param_format_invalid__phone_number": "Numer telefonu musi być w poprawnym formacie międzynarodowym.",
"unstable__errors.form_param_max_length_exceeded__first_name": "Imię nie może przekraczać 256 znaków.",
"unstable__errors.form_param_max_length_exceeded__last_name": "Nazwisko nie może przekraczać 256 znaków.",
"unstable__errors.form_param_max_length_exceeded__name": "Nazwa nie może przekraczać 256 znaków.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Twoje hasło nie jest wystarczająco silne.",
"unstable__errors.form_password_pwned": "To hasło zostało ujawnione w wyniku naruszenia danych i nie może być użyte. Spróbuj innego hasła.",
"unstable__errors.form_password_pwned__sign_in": "To hasło zostało ujawnione w wyniku naruszenia danych i nie może być użyte. Zresetuj swoje hasło.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Twoje hasło przekracza maksymalną dozwoloną liczbę bajtów. Skróć je lub usuń niektóre znaki specjalne.",
"unstable__errors.form_password_validation_failed": "Nieprawidłowe hasło",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "Nie możesz usunąć ostatniego sposobu identyfikacji.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Klucz dostępu jest już zarejestrowany na tym urządzeniu.",
"unstable__errors.passkey_not_supported": "Klucze dostępu nie są obsługiwane na tym urządzeniu.",
"unstable__errors.passkey_pa_not_supported": "Rejestracja wymaga platformowego uwierzytelniania, ale to urządzenie go nie obsługuje.",
"unstable__errors.passkey_registration_cancelled": "Rejestracja klucza dostępu została anulowana lub przekroczono limit czasu.",
"unstable__errors.passkey_retrieval_cancelled": "Weryfikacja klucza dostępu została anulowana lub przekroczono limit czasu.",
"unstable__errors.passwordComplexity.maximumLength": "mniej niż {{length}} znaków",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} lub więcej znaków",
"unstable__errors.passwordComplexity.requireLowercase": "małą literę",
"unstable__errors.passwordComplexity.requireNumbers": "cyfrę",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "znak specjalny",
"unstable__errors.passwordComplexity.requireUppercase": "wielką literę",
"unstable__errors.passwordComplexity.sentencePrefix": "Twoje hasło musi zawierać",
"unstable__errors.phone_number_exists": "Ten numer telefonu jest już zajęty. Spróbuj innego.",
"unstable__errors.zxcvbn.couldBeStronger": "Twoje hasło działa, ale mogłoby być silniejsze. Spróbuj dodać więcej znaków.",
"unstable__errors.zxcvbn.goodPassword": "Twoje hasło spełnia wszystkie wymagania.",
"unstable__errors.zxcvbn.notEnough": "Twoje hasło nie jest wystarczająco silne.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Użyj wielkich liter tylko w części hasła.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Dodaj więcej rzadziej używanych słów.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Unikaj lat powiązanych z Tobą.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Użyj wielkich liter nie tylko na początku.",
"unstable__errors.zxcvbn.suggestions.dates": "Unikaj dat i lat powiązanych z Tobą.",
"unstable__errors.zxcvbn.suggestions.l33t": "Unikaj przewidywalnych zamienników liter, np. '@' zamiast 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Użyj dłuższych wzorców klawiatury i zmieniaj kierunek pisania.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Możesz stworzyć silne hasło bez użycia symboli, cyfr czy wielkich liter.",
"unstable__errors.zxcvbn.suggestions.pwned": "Jeśli używasz tego hasła gdzie indziej, powinieneś je zmienić.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Unikaj ostatnich lat.",
"unstable__errors.zxcvbn.suggestions.repeated": "Unikaj powtarzających się słów i znaków.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Unikaj odwróconej pisowni popularnych słów.",
"unstable__errors.zxcvbn.suggestions.sequences": "Unikaj popularnych sekwencji znaków.",
"unstable__errors.zxcvbn.suggestions.useWords": "Użyj kilku słów, ale unikaj popularnych fraz.",
"unstable__errors.zxcvbn.warnings.common": "To hasło jest powszechnie używane.",
"unstable__errors.zxcvbn.warnings.commonNames": "Popularne imiona i nazwiska są łatwe do odgadnięcia.",
"unstable__errors.zxcvbn.warnings.dates": "Daty są łatwe do odgadnięcia.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Powtarzające się wzorce znaków, jak \"abcabcabc\", są łatwe do odgadnięcia.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Krótkie wzorce klawiatury są łatwe do odgadnięcia.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Pojedyncze imiona lub nazwiska są łatwe do odgadnięcia.",
"unstable__errors.zxcvbn.warnings.pwned": "Twoje hasło zostało ujawnione w wyniku naruszenia danych w Internecie.",
"unstable__errors.zxcvbn.warnings.recentYears": "Ostatnie lata są łatwe do odgadnięcia.",
"unstable__errors.zxcvbn.warnings.sequences": "Popularne sekwencje znaków, jak \"abc\", są łatwe do odgadnięcia.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "To hasło jest podobne do powszechnie używanego.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Powtarzające się znaki, jak \"aaa\", są łatwe do odgadnięcia.",
"unstable__errors.zxcvbn.warnings.straightRow": "Proste rzędy klawiszy na klawiaturze są łatwe do odgadnięcia.",
"unstable__errors.zxcvbn.warnings.topHundred": "To hasło jest często używane.",
"unstable__errors.zxcvbn.warnings.topTen": "To hasło jest bardzo często używane.",
"unstable__errors.zxcvbn.warnings.userInputs": "Nie powinno zawierać danych osobistych ani związanych ze stroną.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Pojedyncze słowa są łatwe do odgadnięcia.",
"userButton.action__addAccount": "Dodaj konto",
"userButton.action__manageAccount": "Zarządzaj kontem",
"userButton.action__signOut": "Wyloguj się",
"userButton.action__signOutAll": "Wyloguj się ze wszystkich kont",
"userProfile.backupCodePage.actionLabel__copied": "Skopiowano!",
"userProfile.backupCodePage.actionLabel__copy": "Skopiuj wszystkie",
"userProfile.backupCodePage.actionLabel__download": "Pobierz .txt",
"userProfile.backupCodePage.actionLabel__print": "Drukuj",
"userProfile.backupCodePage.infoText1": "Kody zapasowe zostaną włączone dla tego konta.",
"userProfile.backupCodePage.infoText2": "Zachowaj kody zapasowe w tajemnicy i przechowuj je w bezpiecznym miejscu. Możesz wygenerować nowe kody, jeśli podejrzewasz, że zostały przejęte.",
"userProfile.backupCodePage.subtitle__codelist": "Przechowuj je bezpiecznie i nie udostępniaj nikomu.",
"userProfile.backupCodePage.successMessage": "Kody zapasowe zostały włączone. Możesz użyć jednego z nich, aby zalogować się na swoje konto, jeśli utracisz dostęp do urządzenia uwierzytelniającego. Każdy kod można użyć tylko raz.",
"userProfile.backupCodePage.successSubtitle": "Możesz użyć jednego z tych kodów, aby zalogować się na swoje konto, jeśli utracisz dostęp do urządzenia uwierzytelniającego.",
"userProfile.backupCodePage.title": "Dodaj weryfikację kodem zapasowym",
"userProfile.backupCodePage.title__codelist": "Kody zapasowe",
"userProfile.connectedAccountPage.formHint": "Wybierz dostawcę, aby połączyć konto.",
"userProfile.connectedAccountPage.formHint__noAccounts": "Brak dostępnych zewnętrznych dostawców kont.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} zostanie usunięty z tego konta.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Nie będziesz już mógł korzystać z tego połączonego konta, a powiązane funkcje przestaną działać.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} został usunięty z twojego konta.",
"userProfile.connectedAccountPage.removeResource.title": "Usuń połączone konto",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "Dostawca został dodany do twojego konta",
"userProfile.connectedAccountPage.title": "Dodaj połączone konto",
"userProfile.deletePage.actionDescription": "Wpisz „Usuń konto” poniżej, aby kontynuować.",
"userProfile.deletePage.confirm": "Usuń konto",
"userProfile.deletePage.messageLine1": "Czy na pewno chcesz usunąć swoje konto?",
"userProfile.deletePage.messageLine2": "Ta operacja jest trwała i nieodwracalna.",
"userProfile.deletePage.title": "Usuń konto",
"userProfile.emailAddressPage.emailCode.formHint": "Na ten adres e-mail zostanie wysłany kod weryfikacyjny.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Wprowadź kod weryfikacyjny wysłany na {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "Kod weryfikacyjny",
"userProfile.emailAddressPage.emailCode.resendButton": "Nie otrzymałeś kodu? Wyślij ponownie",
"userProfile.emailAddressPage.emailCode.successMessage": "Adres e-mail {{identifier}} został dodany do twojego konta.",
"userProfile.emailAddressPage.emailLink.formHint": "Na ten adres e-mail zostanie wysłany link weryfikacyjny.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Kliknij link weryfikacyjny w wiadomości e-mail wysłanej na {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "Link weryfikacyjny",
"userProfile.emailAddressPage.emailLink.resendButton": "Nie otrzymałeś linku? Wyślij ponownie",
"userProfile.emailAddressPage.emailLink.successMessage": "Adres e-mail {{identifier}} został dodany do twojego konta.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} zostanie usunięty z tego konta.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Nie będziesz już mógł logować się przy użyciu tego adresu e-mail.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} został usunięty z twojego konta.",
"userProfile.emailAddressPage.removeResource.title": "Usuń adres e-mail",
"userProfile.emailAddressPage.title": "Dodaj adres e-mail",
"userProfile.emailAddressPage.verifyTitle": "Zweryfikuj adres e-mail",
"userProfile.formButtonPrimary__add": "Dodaj",
"userProfile.formButtonPrimary__continue": "Kontynuuj",
"userProfile.formButtonPrimary__finish": "Zakończ",
"userProfile.formButtonPrimary__remove": "Usuń",
"userProfile.formButtonPrimary__save": "Zapisz",
"userProfile.formButtonReset": "Anuluj",
"userProfile.mfaPage.formHint": "Wybierz metodę do dodania.",
"userProfile.mfaPage.title": "Dodaj weryfikację dwuetapową",
"userProfile.mfaPhoneCodePage.backButton": "Użyj istniejącego numeru",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Dodaj numer telefonu",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} nie będzie już otrzymywać kodów weryfikacyjnych przy logowaniu.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Twoje konto może być mniej bezpieczne. Czy na pewno chcesz kontynuować?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "Weryfikacja dwuetapowa SMS została usunięta dla {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "Usuń weryfikację dwuetapową",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Wybierz istniejący numer telefonu do rejestracji weryfikacji SMS lub dodaj nowy.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "Brak dostępnych numerów telefonu do rejestracji weryfikacji SMS, dodaj nowy.",
"userProfile.mfaPhoneCodePage.successMessage1": "Podczas logowania będziesz musiał wprowadzić kod weryfikacyjny wysłany na ten numer telefonu.",
"userProfile.mfaPhoneCodePage.successMessage2": "Zapisz te kody zapasowe i przechowuj je w bezpiecznym miejscu. Jeśli utracisz dostęp do urządzenia uwierzytelniającego, możesz ich użyć do logowania.",
"userProfile.mfaPhoneCodePage.successTitle": "Weryfikacja SMS włączona",
"userProfile.mfaPhoneCodePage.title": "Dodaj weryfikację SMS",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "Zeskanuj kod QR",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "Nie możesz zeskanować kodu QR?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Skonfiguruj nową metodę logowania w aplikacji uwierzytelniającej i zeskanuj poniższy kod QR, aby połączyć ją z kontem.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Skonfiguruj nową metodę logowania w aplikacji uwierzytelniającej i wprowadź poniższy klucz.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Upewnij się, że włączone są hasła jednorazowe lub oparte na czasie, a następnie zakończ łączenie konta.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Alternatywnie, jeśli twoja aplikacja obsługuje URI TOTP, możesz skopiować pełny URI.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Kody weryfikacyjne z tej aplikacji nie będą już wymagane przy logowaniu.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Twoje konto może być mniej bezpieczne. Czy na pewno chcesz kontynuować?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "Weryfikacja dwuetapowa przez aplikację uwierzytelniającą została usunięta.",
"userProfile.mfaTOTPPage.removeResource.title": "Usuń weryfikację dwuetapową",
"userProfile.mfaTOTPPage.successMessage": "Weryfikacja dwuetapowa została włączona. Podczas logowania będziesz musiał wprowadzić kod z aplikacji uwierzytelniającej.",
"userProfile.mfaTOTPPage.title": "Dodaj aplikację uwierzytelniającą",
"userProfile.mfaTOTPPage.verifySubtitle": "Wprowadź kod weryfikacyjny wygenerowany przez aplikację",
"userProfile.mfaTOTPPage.verifyTitle": "Kod weryfikacyjny",
"userProfile.mobileButton__menu": "Menu",
"userProfile.navbar.account": "Profil",
"userProfile.navbar.description": "Zarządzaj informacjami o koncie.",
"userProfile.navbar.security": "Bezpieczeństwo",
"userProfile.navbar.title": "Konto",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} zostanie usunięty z tego konta.",
"userProfile.passkeyScreen.removeResource.title": "Usuń klucz dostępu",
"userProfile.passkeyScreen.subtitle__rename": "Możesz zmienić nazwę klucza dostępu, aby łatwiej go znaleźć.",
"userProfile.passkeyScreen.title__rename": "Zmień nazwę klucza dostępu",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Zaleca się wylogowanie ze wszystkich innych urządzeń, które mogły używać starego hasła.",
"userProfile.passwordPage.readonly": "Obecnie nie możesz edytować hasła, ponieważ logowanie odbywa się wyłącznie przez połączenie firmowe.",
"userProfile.passwordPage.successMessage__set": "Hasło zostało ustawione.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Wszystkie inne urządzenia zostały wylogowane.",
"userProfile.passwordPage.successMessage__update": "Hasło zostało zaktualizowane.",
"userProfile.passwordPage.title__set": "Ustaw hasło",
"userProfile.passwordPage.title__update": "Zaktualizuj hasło",
"userProfile.phoneNumberPage.infoText": "Na ten numer telefonu zostanie wysłana wiadomość SMS z kodem weryfikacyjnym. Mogą obowiązywać opłaty za wiadomości i transmisję danych.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} zostanie usunięty z tego konta.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Nie będzie już możliwe logowanie się przy użyciu tego numeru telefonu.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} został usunięty z Twojego konta.",
"userProfile.phoneNumberPage.removeResource.title": "Usuń numer telefonu",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} został dodany do Twojego konta.",
"userProfile.phoneNumberPage.title": "Dodaj numer telefonu",
"userProfile.phoneNumberPage.verifySubtitle": "Wprowadź kod weryfikacyjny wysłany na {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "Zweryfikuj numer telefonu",
"userProfile.profilePage.fileDropAreaHint": "Zalecany rozmiar 1:1, maksymalnie 10MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Usuń",
"userProfile.profilePage.imageFormSubtitle": "Prześlij",
"userProfile.profilePage.imageFormTitle": "Zdjęcie profilowe",
"userProfile.profilePage.readonly": "Informacje profilowe zostały dostarczone przez połączenie firmowe i nie mogą być edytowane.",
"userProfile.profilePage.successMessage": "Twój profil został zaktualizowany.",
"userProfile.profilePage.title": "Zaktualizuj profil",
"userProfile.start.activeDevicesSection.destructiveAction": "Wyloguj z urządzenia",
"userProfile.start.activeDevicesSection.title": "Aktywne urządzenia",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Spróbuj ponownie",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Autoryzuj teraz",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Usuń",
"userProfile.start.connectedAccountsSection.primaryButton": "Połącz konto",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "Zakresy uprawnień zostały zaktualizowane, co może ograniczyć funkcjonalność. Proszę ponownie autoryzować aplikację, aby uniknąć problemów.",
"userProfile.start.connectedAccountsSection.title": "Połączone konta",
"userProfile.start.dangerSection.deleteAccountButton": "Usuń konto",
"userProfile.start.dangerSection.title": "Usuń konto",
"userProfile.start.emailAddressesSection.destructiveAction": "Usuń e-mail",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Ustaw jako główny",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Zakończ weryfikację",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Zweryfikuj",
"userProfile.start.emailAddressesSection.primaryButton": "Dodaj adres e-mail",
"userProfile.start.emailAddressesSection.title": "Adresy e-mail",
"userProfile.start.enterpriseAccountsSection.title": "Konta firmowe",
"userProfile.start.headerTitle__account": "Szczegóły profilu",
"userProfile.start.headerTitle__security": "Bezpieczeństwo",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Wygeneruj ponownie",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Kody zapasowe",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Uzyskaj nowy zestaw bezpiecznych kodów zapasowych. Poprzednie kody zostaną usunięte i nie będzie można ich użyć.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Wygeneruj ponownie kody zapasowe",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Ustaw jako domyślny",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Usuń",
"userProfile.start.mfaSection.primaryButton": "Dodaj weryfikację dwuetapową",
"userProfile.start.mfaSection.title": "Weryfikacja dwuetapowa",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Usuń",
"userProfile.start.mfaSection.totp.headerTitle": "Aplikacja uwierzytelniająca",
"userProfile.start.passkeysSection.menuAction__destructive": "Usuń",
"userProfile.start.passkeysSection.menuAction__rename": "Zmień nazwę",
"userProfile.start.passkeysSection.title": "Klucze dostępu",
"userProfile.start.passwordSection.primaryButton__setPassword": "Ustaw hasło",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Zaktualizuj hasło",
"userProfile.start.passwordSection.title": "Hasło",
"userProfile.start.phoneNumbersSection.destructiveAction": "Usuń numer telefonu",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Ustaw jako główny",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Zakończ weryfikację",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Zweryfikuj numer telefonu",
"userProfile.start.phoneNumbersSection.primaryButton": "Dodaj numer telefonu",
"userProfile.start.phoneNumbersSection.title": "Numery telefonów",
"userProfile.start.profileSection.primaryButton": "Zaktualizuj profil",
"userProfile.start.profileSection.title": "Profil",
"userProfile.start.usernameSection.primaryButton__setUsername": "Ustaw nazwę użytkownika",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Zaktualizuj nazwę użytkownika",
"userProfile.start.usernameSection.title": "Nazwa użytkownika",
"userProfile.start.web3WalletsSection.destructiveAction": "Usuń portfel",
"userProfile.start.web3WalletsSection.primaryButton": "Portfele Web3",
"userProfile.start.web3WalletsSection.title": "Portfele Web3",
"userProfile.usernamePage.successMessage": "Nazwa użytkownika została zaktualizowana.",
"userProfile.usernamePage.title__set": "Ustaw nazwę użytkownika",
"userProfile.usernamePage.title__update": "Zaktualizuj nazwę użytkownika",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} zostanie usunięty z tego konta.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Nie będzie już możliwe logowanie się przy użyciu tego portfela Web3.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} został usunięty z Twojego konta.",
"userProfile.web3WalletPage.removeResource.title": "Usuń portfel Web3",
"userProfile.web3WalletPage.subtitle__availableWallets": "Wybierz portfel Web3, aby połączyć go z kontem.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Brak dostępnych portfeli Web3.",
"userProfile.web3WalletPage.successMessage": "Portfel został dodany do Twojego konta.",
"userProfile.web3WalletPage.title": "Dodaj portfel Web3"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Kontynuuj sesję",
"clerkAuth.loginSuccess.desc": "{{greeting}}, miło znów Cię widzieć. Kontynuujmy tam, gdzie przerwaliśmy.",
"clerkAuth.loginSuccess.title": "Witaj ponownie, {{nickName}}",
"error.backHome": "Powrót do strony głównej",
"error.desc": "Spróbuj ponownie później lub wróć do znanego świata.",
"error.retry": "Odśwież",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Przepraszamy, limit dla tego klucza został osiągnięty. Sprawdź saldo konta lub zwiększ limit i spróbuj ponownie.",
"response.InvalidAccessCode": "Nieprawidłowy lub pusty kod dostępu. Wprowadź poprawny kod lub dodaj własny klucz API.",
"response.InvalidBedrockCredentials": "Uwierzytelnienie Bedrock nie powiodło się. Sprawdź AccessKeyId/SecretAccessKey i spróbuj ponownie.",
"response.InvalidClerkUser": "Przepraszamy, nie jesteś zalogowany. Zaloguj się lub zarejestruj, aby kontynuować.",
"response.InvalidComfyUIArgs": "Nieprawidłowa konfiguracja ComfyUI. Sprawdź ustawienia i spróbuj ponownie.",
"response.InvalidGithubToken": "Nieprawidłowy lub pusty token GitHub. Sprawdź token i spróbuj ponownie.",
"response.InvalidOllamaArgs": "Nieprawidłowa konfiguracja Ollama. Sprawdź ustawienia i spróbuj ponownie.",

View file

@ -1,545 +0,0 @@
{
"backButton": "Voltar",
"badge__default": "Padrão",
"badge__otherImpersonatorDevice": "Outro dispositivo de personificação",
"badge__primary": "Principal",
"badge__requiresAction": "Requer ação",
"badge__thisDevice": "Este dispositivo",
"badge__unverified": "Não verificado",
"badge__userDevice": "Dispositivo do usuário",
"badge__you": "Você",
"createOrganization.formButtonSubmit": "Criar organização",
"createOrganization.invitePage.formButtonReset": "Pular",
"createOrganization.title": "Criar organização",
"dates.lastDay": "Ontem às {{ date | timeString('pt-BR') }}",
"dates.next6Days": "{{ date | weekday('pt-BR','long') }} às {{ date | timeString('pt-BR') }}",
"dates.nextDay": "Amanhã às {{ date | timeString('pt-BR') }}",
"dates.numeric": "{{ date | numeric('pt-BR') }}",
"dates.previous6Days": "{{ date | weekday('pt-BR','long') }} passado às {{ date | timeString('pt-BR') }}",
"dates.sameDay": "Hoje às {{ date | timeString('pt-BR') }}",
"dividerText": "ou",
"footerActionLink__useAnotherMethod": "Usar outro método",
"footerPageLink__help": "Ajuda",
"footerPageLink__privacy": "Privacidade",
"footerPageLink__terms": "Termos",
"formButtonPrimary": "Continuar",
"formButtonPrimary__verify": "Verificar",
"formFieldAction__forgotPassword": "Esqueceu a senha?",
"formFieldError__matchingPasswords": "As senhas coincidem.",
"formFieldError__notMatchingPasswords": "As senhas não coincidem.",
"formFieldError__verificationLinkExpired": "O link de verificação expirou. Solicite um novo link.",
"formFieldHintText__optional": "Opcional",
"formFieldHintText__slug": "Um slug é um identificador legível que deve ser único. É frequentemente usado em URLs.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Excluir conta",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "exemplo@email.com, exemplo2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "minha-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Ativar convites automáticos para este domínio",
"formFieldLabel__backupCode": "Código de backup",
"formFieldLabel__confirmDeletion": "Confirmação",
"formFieldLabel__confirmPassword": "Confirmar senha",
"formFieldLabel__currentPassword": "Senha atual",
"formFieldLabel__emailAddress": "Endereço de e-mail",
"formFieldLabel__emailAddress_username": "E-mail ou nome de usuário",
"formFieldLabel__emailAddresses": "Endereços de e-mail",
"formFieldLabel__firstName": "Nome",
"formFieldLabel__lastName": "Sobrenome",
"formFieldLabel__newPassword": "Nova senha",
"formFieldLabel__organizationDomain": "Domínio",
"formFieldLabel__organizationDomainDeletePending": "Excluir convites e sugestões pendentes",
"formFieldLabel__organizationDomainEmailAddress": "Endereço de e-mail de verificação",
"formFieldLabel__organizationDomainEmailAddressDescription": "Insira um e-mail sob este domínio para receber um código e verificar o domínio.",
"formFieldLabel__organizationName": "Nome",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "Nome da chave de acesso",
"formFieldLabel__password": "Senha",
"formFieldLabel__phoneNumber": "Número de telefone",
"formFieldLabel__role": "Função",
"formFieldLabel__signOutOfOtherSessions": "Sair de todos os outros dispositivos",
"formFieldLabel__username": "Nome de usuário",
"impersonationFab.action__signOut": "Sair",
"impersonationFab.title": "Conectado como {{identifier}}",
"locale": "pt-BR",
"maintenanceMode": "Estamos em manutenção no momento, mas não se preocupe, deve levar apenas alguns minutos.",
"membershipRole__admin": "Administrador",
"membershipRole__basicMember": "Membro",
"membershipRole__guestMember": "Convidado",
"organizationList.action__createOrganization": "Criar organização",
"organizationList.action__invitationAccept": "Entrar",
"organizationList.action__suggestionsAccept": "Solicitar entrada",
"organizationList.createOrganization": "Criar organização",
"organizationList.invitationAcceptedLabel": "Participando",
"organizationList.subtitle": "para continuar em {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "Aguardando aprovação",
"organizationList.title": "Escolha uma conta",
"organizationList.titleWithoutPersonal": "Escolha uma organização",
"organizationProfile.badge__automaticInvitation": "Convites automáticos",
"organizationProfile.badge__automaticSuggestion": "Sugestões automáticas",
"organizationProfile.badge__manualInvitation": "Sem inscrição automática",
"organizationProfile.badge__unverified": "Não verificado",
"organizationProfile.createDomainPage.subtitle": "Adicione o domínio para verificação. Usuários com e-mails neste domínio podem entrar automaticamente ou solicitar entrada.",
"organizationProfile.createDomainPage.title": "Adicionar domínio",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "Os convites não puderam ser enviados. Já existem convites pendentes para os seguintes e-mails: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Enviar convites",
"organizationProfile.invitePage.selectDropdown__role": "Selecionar função",
"organizationProfile.invitePage.subtitle": "Digite ou cole um ou mais e-mails, separados por espaços ou vírgulas.",
"organizationProfile.invitePage.successMessage": "Convites enviados com sucesso",
"organizationProfile.invitePage.title": "Convidar novos membros",
"organizationProfile.membersPage.action__invite": "Convidar",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Remover membro",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Entrou",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Função",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Usuário",
"organizationProfile.membersPage.detailsTitle__emptyRow": "Nenhum membro para exibir",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Convide usuários conectando um domínio de e-mail à sua organização. Qualquer pessoa que se inscrever com um e-mail correspondente poderá entrar a qualquer momento.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Convites automáticos",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Gerenciar domínios verificados",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Nenhum convite para exibir",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Revogar convite",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Convidado",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Usuários que se inscreverem com um e-mail correspondente verão uma sugestão para solicitar entrada na sua organização.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Sugestões automáticas",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Gerenciar domínios verificados",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Aprovar",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Rejeitar",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Acesso solicitado",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Nenhuma solicitação para exibir",
"organizationProfile.membersPage.start.headerTitle__invitations": "Convites",
"organizationProfile.membersPage.start.headerTitle__members": "Membros",
"organizationProfile.membersPage.start.headerTitle__requests": "Solicitações",
"organizationProfile.navbar.description": "Gerencie sua organização.",
"organizationProfile.navbar.general": "Geral",
"organizationProfile.navbar.members": "Membros",
"organizationProfile.navbar.title": "Organização",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Digite \"{{organizationName}}\" abaixo para continuar.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Tem certeza de que deseja excluir esta organização?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Essa ação é permanente e irreversível.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Você excluiu a organização.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Excluir organização",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Digite \"{{organizationName}}\" abaixo para continuar.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Tem certeza de que deseja sair desta organização? Você perderá o acesso a esta organização e seus aplicativos.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Essa ação é permanente e irreversível.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Você saiu da organização.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Sair da organização",
"organizationProfile.profilePage.dangerSection.title": "Perigo",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Gerenciar",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Excluir",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Verificar",
"organizationProfile.profilePage.domainSection.primaryButton": "Adicionar domínio",
"organizationProfile.profilePage.domainSection.subtitle": "Permita que usuários entrem automaticamente na organização ou solicitem entrada com base em um domínio de e-mail verificado.",
"organizationProfile.profilePage.domainSection.title": "Domínios verificados",
"organizationProfile.profilePage.successMessage": "A organização foi atualizada.",
"organizationProfile.profilePage.title": "Atualizar perfil",
"organizationProfile.removeDomainPage.messageLine1": "O domínio de e-mail {{domain}} será removido.",
"organizationProfile.removeDomainPage.messageLine2": "Os usuários não poderão mais entrar automaticamente na organização após isso.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} foi removido.",
"organizationProfile.removeDomainPage.title": "Remover domínio",
"organizationProfile.start.headerTitle__general": "Geral",
"organizationProfile.start.headerTitle__members": "Membros",
"organizationProfile.start.profileSection.primaryButton": "Atualizar perfil",
"organizationProfile.start.profileSection.title": "Perfil da organização",
"organizationProfile.start.profileSection.uploadAction__title": "Logo",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Remover este domínio afetará os usuários convidados.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Remover domínio",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Remova este domínio dos seus domínios verificados",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Remover domínio",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Os usuários são convidados automaticamente a entrar na organização ao se cadastrarem e podem entrar a qualquer momento.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Convites automáticos",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Os usuários recebem uma sugestão para solicitar entrada, mas precisam ser aprovados por um administrador antes de entrarem na organização.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Sugestões automáticas",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Alterar o modo de inscrição afetará apenas novos usuários.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Convites pendentes enviados aos usuários: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Sugestões pendentes enviadas aos usuários: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Os usuários só podem ser convidados manualmente para a organização.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Sem inscrição automática",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Escolha como os usuários deste domínio podem entrar na organização.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Perigo",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Opções de inscrição",
"organizationProfile.verifiedDomainPage.subtitle": "O domínio {{domain}} foi verificado. Continue selecionando o modo de inscrição.",
"organizationProfile.verifiedDomainPage.title": "Atualizar {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "Digite o código de verificação enviado para seu e-mail",
"organizationProfile.verifyDomainPage.formTitle": "Código de verificação",
"organizationProfile.verifyDomainPage.resendButton": "Não recebeu um código? Reenviar",
"organizationProfile.verifyDomainPage.subtitle": "O domínio {{domainName}} precisa ser verificado por e-mail.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "Um código de verificação foi enviado para {{emailAddress}}. Digite o código para continuar.",
"organizationProfile.verifyDomainPage.title": "Verificar domínio",
"organizationSwitcher.action__createOrganization": "Criar organização",
"organizationSwitcher.action__invitationAccept": "Entrar",
"organizationSwitcher.action__manageOrganization": "Gerenciar",
"organizationSwitcher.action__suggestionsAccept": "Solicitar entrada",
"organizationSwitcher.notSelected": "Nenhuma organização selecionada",
"organizationSwitcher.personalWorkspace": "Conta pessoal",
"organizationSwitcher.suggestionsAcceptedLabel": "Aguardando aprovação",
"paginationButton__next": "Próximo",
"paginationButton__previous": "Anterior",
"paginationRowText__displaying": "Exibindo",
"paginationRowText__of": "de",
"signIn.accountSwitcher.action__addAccount": "Adicionar conta",
"signIn.accountSwitcher.action__signOutAll": "Sair de todas as contas",
"signIn.accountSwitcher.subtitle": "Selecione a conta com a qual deseja continuar.",
"signIn.accountSwitcher.title": "Escolha uma conta",
"signIn.alternativeMethods.actionLink": "Obter ajuda",
"signIn.alternativeMethods.actionText": "Não tem nenhuma dessas opções?",
"signIn.alternativeMethods.blockButton__backupCode": "Usar um código de backup",
"signIn.alternativeMethods.blockButton__emailCode": "Enviar código por e-mail para {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "Enviar link por e-mail para {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "Entrar com sua chave de acesso",
"signIn.alternativeMethods.blockButton__password": "Entrar com sua senha",
"signIn.alternativeMethods.blockButton__phoneCode": "Enviar código SMS para {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "Usar seu app autenticador",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Enviar e-mail para o suporte",
"signIn.alternativeMethods.getHelp.content": "Se estiver com dificuldades para acessar sua conta, envie um e-mail para nós e ajudaremos a restaurar o acesso o mais rápido possível.",
"signIn.alternativeMethods.getHelp.title": "Obter ajuda",
"signIn.alternativeMethods.subtitle": "Está com problemas? Você pode usar qualquer um desses métodos para entrar.",
"signIn.alternativeMethods.title": "Usar outro método",
"signIn.backupCodeMfa.subtitle": "Seu código de backup é aquele que você recebeu ao configurar a autenticação em duas etapas.",
"signIn.backupCodeMfa.title": "Digite um código de backup",
"signIn.emailCode.formTitle": "Código de verificação",
"signIn.emailCode.resendButton": "Não recebeu o código? Reenviar",
"signIn.emailCode.subtitle": "para continuar em {{applicationName}}",
"signIn.emailCode.title": "Verifique seu e-mail",
"signIn.emailLink.expired.subtitle": "Volte para a aba original para continuar.",
"signIn.emailLink.expired.title": "Este link de verificação expirou",
"signIn.emailLink.failed.subtitle": "Volte para a aba original para continuar.",
"signIn.emailLink.failed.title": "Este link de verificação é inválido",
"signIn.emailLink.formSubtitle": "Use o link de verificação enviado para seu e-mail",
"signIn.emailLink.formTitle": "Link de verificação",
"signIn.emailLink.loading.subtitle": "Você será redirecionado em breve",
"signIn.emailLink.loading.title": "Entrando...",
"signIn.emailLink.resendButton": "Não recebeu o link? Reenviar",
"signIn.emailLink.subtitle": "para continuar em {{applicationName}}",
"signIn.emailLink.title": "Verifique seu e-mail",
"signIn.emailLink.unusedTab.title": "Você pode fechar esta aba",
"signIn.emailLink.verified.subtitle": "Você será redirecionado em breve",
"signIn.emailLink.verified.title": "Login realizado com sucesso",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Volte para a aba original para continuar",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Volte para a nova aba aberta para continuar",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Login realizado em outra aba",
"signIn.forgotPassword.formTitle": "Código para redefinir senha",
"signIn.forgotPassword.resendButton": "Não recebeu o código? Reenviar",
"signIn.forgotPassword.subtitle": "para redefinir sua senha",
"signIn.forgotPassword.subtitle_email": "Primeiro, digite o código enviado para seu e-mail",
"signIn.forgotPassword.subtitle_phone": "Primeiro, digite o código enviado para seu telefone",
"signIn.forgotPassword.title": "Redefinir senha",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Redefinir sua senha",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Ou, entre com outro método",
"signIn.forgotPasswordAlternativeMethods.title": "Esqueceu a senha?",
"signIn.noAvailableMethods.message": "Não é possível continuar com o login. Nenhum fator de autenticação disponível.",
"signIn.noAvailableMethods.subtitle": "Ocorreu um erro",
"signIn.noAvailableMethods.title": "Não é possível entrar",
"signIn.passkey.subtitle": "Usar sua chave de acesso confirma que é você. Seu dispositivo pode solicitar impressão digital, reconhecimento facial ou bloqueio de tela.",
"signIn.passkey.title": "Usar sua chave de acesso",
"signIn.password.actionLink": "Usar outro método",
"signIn.password.subtitle": "Digite a senha associada à sua conta",
"signIn.password.title": "Digite sua senha",
"signIn.passwordPwned.title": "Senha comprometida",
"signIn.phoneCode.formTitle": "Código de verificação",
"signIn.phoneCode.resendButton": "Não recebeu o código? Reenviar",
"signIn.phoneCode.subtitle": "para continuar em {{applicationName}}",
"signIn.phoneCode.title": "Verifique seu telefone",
"signIn.phoneCodeMfa.formTitle": "Código de verificação",
"signIn.phoneCodeMfa.resendButton": "Não recebeu o código? Reenviar",
"signIn.phoneCodeMfa.subtitle": "Para continuar, digite o código de verificação enviado para seu telefone",
"signIn.phoneCodeMfa.title": "Verifique seu telefone",
"signIn.resetPassword.formButtonPrimary": "Redefinir senha",
"signIn.resetPassword.requiredMessage": "Por motivos de segurança, é necessário redefinir sua senha.",
"signIn.resetPassword.successMessage": "Sua senha foi alterada com sucesso. Entrando, aguarde um momento.",
"signIn.resetPassword.title": "Definir nova senha",
"signIn.resetPasswordMfa.detailsLabel": "Precisamos verificar sua identidade antes de redefinir sua senha.",
"signIn.start.actionLink": "Criar conta",
"signIn.start.actionLink__use_email": "Usar e-mail",
"signIn.start.actionLink__use_email_username": "Usar e-mail ou nome de usuário",
"signIn.start.actionLink__use_passkey": "Usar chave de acesso",
"signIn.start.actionLink__use_phone": "Usar telefone",
"signIn.start.actionLink__use_username": "Usar nome de usuário",
"signIn.start.actionText": "Não tem uma conta?",
"signIn.start.subtitle": "Bem-vindo de volta! Faça login para continuar",
"signIn.start.title": "Entrar em {{applicationName}}",
"signIn.totpMfa.formTitle": "Código de verificação",
"signIn.totpMfa.subtitle": "Para continuar, digite o código de verificação gerado pelo seu app autenticador",
"signIn.totpMfa.title": "Verificação em duas etapas",
"signInEnterPasswordTitle": "Digite sua senha",
"signUp.continue.actionLink": "Entrar",
"signUp.continue.actionText": "Já tem uma conta?",
"signUp.continue.subtitle": "Preencha os dados restantes para continuar.",
"signUp.continue.title": "Preencher campos faltantes",
"signUp.emailCode.formSubtitle": "Digite o código de verificação enviado para seu e-mail",
"signUp.emailCode.formTitle": "Código de verificação",
"signUp.emailCode.resendButton": "Não recebeu o código? Reenviar",
"signUp.emailCode.subtitle": "Digite o código de verificação enviado para seu e-mail",
"signUp.emailCode.title": "Verifique seu e-mail",
"signUp.emailLink.formSubtitle": "Use o link de verificação enviado para seu e-mail",
"signUp.emailLink.formTitle": "Link de verificação",
"signUp.emailLink.loading.title": "Criando conta...",
"signUp.emailLink.resendButton": "Não recebeu o link? Reenviar",
"signUp.emailLink.subtitle": "para continuar em {{applicationName}}",
"signUp.emailLink.title": "Verifique seu e-mail",
"signUp.emailLink.verified.title": "Cadastro realizado com sucesso",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Volte para a nova aba aberta para continuar",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Volte para a aba anterior para continuar",
"signUp.emailLink.verifiedSwitchTab.title": "E-mail verificado com sucesso",
"signUp.phoneCode.formSubtitle": "Digite o código de verificação enviado para seu número de telefone",
"signUp.phoneCode.formTitle": "Código de verificação",
"signUp.phoneCode.resendButton": "Não recebeu o código? Reenviar",
"signUp.phoneCode.subtitle": "Digite o código de verificação enviado para seu telefone",
"signUp.phoneCode.title": "Verifique seu telefone",
"signUp.start.actionLink": "Entrar",
"signUp.start.actionText": "Já tem uma conta?",
"signUp.start.subtitle": "Bem-vindo! Preencha os dados para começar.",
"signUp.start.title": "Crie sua conta",
"socialButtonsBlockButton": "Continuar com {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Cadastro não realizado devido à falha nas validações de segurança. Atualize a página para tentar novamente ou entre em contato com o suporte para obter ajuda.",
"unstable__errors.captcha_unavailable": "Cadastro não realizado devido à falha na validação contra bots. Atualize a página para tentar novamente ou entre em contato com o suporte para obter ajuda.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Este endereço de e-mail já está em uso. Tente outro.",
"unstable__errors.form_identifier_exists__phone_number": "Este número de telefone já está em uso. Tente outro.",
"unstable__errors.form_identifier_exists__username": "Este nome de usuário já está em uso. Tente outro.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "O endereço de e-mail deve ser válido.",
"unstable__errors.form_param_format_invalid__phone_number": "O número de telefone deve estar em um formato internacional válido.",
"unstable__errors.form_param_max_length_exceeded__first_name": "O nome não deve exceder 256 caracteres.",
"unstable__errors.form_param_max_length_exceeded__last_name": "O sobrenome não deve exceder 256 caracteres.",
"unstable__errors.form_param_max_length_exceeded__name": "O nome não deve exceder 256 caracteres.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Sua senha não é forte o suficiente.",
"unstable__errors.form_password_pwned": "Esta senha foi comprometida em uma violação de dados e não pode ser usada. Tente outra senha.",
"unstable__errors.form_password_pwned__sign_in": "Esta senha foi comprometida em uma violação de dados e não pode ser usada. Redefina sua senha.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Sua senha excedeu o número máximo de bytes permitidos. Reduza o tamanho ou remova alguns caracteres especiais.",
"unstable__errors.form_password_validation_failed": "Senha incorreta",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "Você não pode excluir sua última identificação.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Uma chave de acesso já está registrada neste dispositivo.",
"unstable__errors.passkey_not_supported": "Chaves de acesso não são compatíveis com este dispositivo.",
"unstable__errors.passkey_pa_not_supported": "O registro requer um autenticador de plataforma, mas o dispositivo não é compatível.",
"unstable__errors.passkey_registration_cancelled": "O registro da chave de acesso foi cancelado ou expirou.",
"unstable__errors.passkey_retrieval_cancelled": "A verificação da chave de acesso foi cancelada ou expirou.",
"unstable__errors.passwordComplexity.maximumLength": "menos de {{length}} caracteres",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} ou mais caracteres",
"unstable__errors.passwordComplexity.requireLowercase": "uma letra minúscula",
"unstable__errors.passwordComplexity.requireNumbers": "um número",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "um caractere especial",
"unstable__errors.passwordComplexity.requireUppercase": "uma letra maiúscula",
"unstable__errors.passwordComplexity.sentencePrefix": "Sua senha deve conter",
"unstable__errors.phone_number_exists": "Este número de telefone já está em uso. Tente outro.",
"unstable__errors.zxcvbn.couldBeStronger": "Sua senha funciona, mas pode ser mais forte. Tente adicionar mais caracteres.",
"unstable__errors.zxcvbn.goodPassword": "Sua senha atende a todos os requisitos necessários.",
"unstable__errors.zxcvbn.notEnough": "Sua senha não é forte o suficiente.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Use letras maiúsculas apenas em parte da senha.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Adicione palavras menos comuns.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Evite anos associados a você.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Use mais letras maiúsculas além da primeira.",
"unstable__errors.zxcvbn.suggestions.dates": "Evite datas e anos associados a você.",
"unstable__errors.zxcvbn.suggestions.l33t": "Evite substituições previsíveis como '@' por 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Use padrões de teclado mais longos e alterne a direção da digitação.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Você pode criar senhas fortes sem usar símbolos, números ou letras maiúsculas.",
"unstable__errors.zxcvbn.suggestions.pwned": "Se você usa essa senha em outro lugar, altere-a.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Evite anos recentes.",
"unstable__errors.zxcvbn.suggestions.repeated": "Evite palavras e caracteres repetidos.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Evite palavras comuns escritas ao contrário.",
"unstable__errors.zxcvbn.suggestions.sequences": "Evite sequências comuns de caracteres.",
"unstable__errors.zxcvbn.suggestions.useWords": "Use várias palavras, mas evite frases comuns.",
"unstable__errors.zxcvbn.warnings.common": "Esta é uma senha comumente usada.",
"unstable__errors.zxcvbn.warnings.commonNames": "Nomes e sobrenomes comuns são fáceis de adivinhar.",
"unstable__errors.zxcvbn.warnings.dates": "Datas são fáceis de adivinhar.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Padrões repetidos como \"abcabcabc\" são fáceis de adivinhar.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Padrões curtos de teclado são fáceis de adivinhar.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Nomes ou sobrenomes isolados são fáceis de adivinhar.",
"unstable__errors.zxcvbn.warnings.pwned": "Sua senha foi exposta em uma violação de dados na Internet.",
"unstable__errors.zxcvbn.warnings.recentYears": "Anos recentes são fáceis de adivinhar.",
"unstable__errors.zxcvbn.warnings.sequences": "Sequências comuns como \"abc\" são fáceis de adivinhar.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "Esta senha é semelhante a uma senha comumente usada.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Caracteres repetidos como \"aaa\" são fáceis de adivinhar.",
"unstable__errors.zxcvbn.warnings.straightRow": "Linhas retas de teclas no teclado são fáceis de adivinhar.",
"unstable__errors.zxcvbn.warnings.topHundred": "Esta é uma das senhas mais usadas.",
"unstable__errors.zxcvbn.warnings.topTen": "Esta é uma das senhas mais utilizadas.",
"unstable__errors.zxcvbn.warnings.userInputs": "Não deve haver dados pessoais ou relacionados à página.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Palavras isoladas são fáceis de adivinhar.",
"userButton.action__addAccount": "Adicionar conta",
"userButton.action__manageAccount": "Gerenciar conta",
"userButton.action__signOut": "Sair",
"userButton.action__signOutAll": "Sair de todas as contas",
"userProfile.backupCodePage.actionLabel__copied": "Copiado!",
"userProfile.backupCodePage.actionLabel__copy": "Copiar tudo",
"userProfile.backupCodePage.actionLabel__download": "Baixar .txt",
"userProfile.backupCodePage.actionLabel__print": "Imprimir",
"userProfile.backupCodePage.infoText1": "Códigos de backup serão ativados para esta conta.",
"userProfile.backupCodePage.infoText2": "Mantenha os códigos de backup em segredo e armazenados com segurança. Você pode gerar novos códigos se suspeitar que foram comprometidos.",
"userProfile.backupCodePage.subtitle__codelist": "Armazene-os com segurança e mantenha-os em segredo.",
"userProfile.backupCodePage.successMessage": "Códigos de backup foram ativados. Você pode usar um deles para acessar sua conta caso perca o acesso ao seu dispositivo de autenticação. Cada código só pode ser usado uma vez.",
"userProfile.backupCodePage.successSubtitle": "Você pode usar um desses códigos para acessar sua conta caso perca o acesso ao seu dispositivo de autenticação.",
"userProfile.backupCodePage.title": "Adicionar verificação com código de backup",
"userProfile.backupCodePage.title__codelist": "Códigos de backup",
"userProfile.connectedAccountPage.formHint": "Selecione um provedor para conectar sua conta.",
"userProfile.connectedAccountPage.formHint__noAccounts": "Não há provedores de conta externa disponíveis.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} será removido desta conta.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Você não poderá mais usar esta conta conectada e quaisquer recursos dependentes deixarão de funcionar.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} foi removido da sua conta.",
"userProfile.connectedAccountPage.removeResource.title": "Remover conta conectada",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "O provedor foi adicionado à sua conta",
"userProfile.connectedAccountPage.title": "Adicionar conta conectada",
"userProfile.deletePage.actionDescription": "Digite \"Excluir conta\" abaixo para continuar.",
"userProfile.deletePage.confirm": "Excluir conta",
"userProfile.deletePage.messageLine1": "Tem certeza de que deseja excluir sua conta?",
"userProfile.deletePage.messageLine2": "Essa ação é permanente e irreversível.",
"userProfile.deletePage.title": "Excluir conta",
"userProfile.emailAddressPage.emailCode.formHint": "Um e-mail com um código de verificação será enviado para este endereço.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Digite o código de verificação enviado para {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "Código de verificação",
"userProfile.emailAddressPage.emailCode.resendButton": "Não recebeu o código? Reenviar",
"userProfile.emailAddressPage.emailCode.successMessage": "O e-mail {{identifier}} foi adicionado à sua conta.",
"userProfile.emailAddressPage.emailLink.formHint": "Um e-mail com um link de verificação será enviado para este endereço.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Clique no link de verificação enviado para {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "Link de verificação",
"userProfile.emailAddressPage.emailLink.resendButton": "Não recebeu o link? Reenviar",
"userProfile.emailAddressPage.emailLink.successMessage": "O e-mail {{identifier}} foi adicionado à sua conta.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} será removido desta conta.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Você não poderá mais fazer login com este endereço de e-mail.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} foi removido da sua conta.",
"userProfile.emailAddressPage.removeResource.title": "Remover endereço de e-mail",
"userProfile.emailAddressPage.title": "Adicionar endereço de e-mail",
"userProfile.emailAddressPage.verifyTitle": "Verificar endereço de e-mail",
"userProfile.formButtonPrimary__add": "Adicionar",
"userProfile.formButtonPrimary__continue": "Continuar",
"userProfile.formButtonPrimary__finish": "Concluir",
"userProfile.formButtonPrimary__remove": "Remover",
"userProfile.formButtonPrimary__save": "Salvar",
"userProfile.formButtonReset": "Cancelar",
"userProfile.mfaPage.formHint": "Selecione um método para adicionar.",
"userProfile.mfaPage.title": "Adicionar verificação em duas etapas",
"userProfile.mfaPhoneCodePage.backButton": "Usar número existente",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Adicionar número de telefone",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} não receberá mais códigos de verificação ao fazer login.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Sua conta pode ficar menos segura. Tem certeza de que deseja continuar?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "A verificação em duas etapas por SMS foi removida para {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "Remover verificação em duas etapas",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Selecione um número de telefone existente para registrar a verificação por SMS ou adicione um novo.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "Não há números de telefone disponíveis para verificação por SMS. Adicione um novo.",
"userProfile.mfaPhoneCodePage.successMessage1": "Ao fazer login, você precisará inserir um código de verificação enviado para este número de telefone como etapa adicional.",
"userProfile.mfaPhoneCodePage.successMessage2": "Salve estes códigos de backup em um local seguro. Se perder o acesso ao seu dispositivo de autenticação, você poderá usá-los para fazer login.",
"userProfile.mfaPhoneCodePage.successTitle": "Verificação por SMS ativada",
"userProfile.mfaPhoneCodePage.title": "Adicionar verificação por SMS",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "Escanear QR code",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "Não consegue escanear o QR code?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Configure um novo método de login no seu aplicativo autenticador e escaneie o QR code abaixo para vinculá-lo à sua conta.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Configure um novo método de login no seu autenticador e insira a chave fornecida abaixo.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Certifique-se de que senhas baseadas em tempo ou de uso único estão ativadas, depois conclua a vinculação da conta.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Alternativamente, se seu autenticador suportar URIs TOTP, você pode copiar o URI completo.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Os códigos de verificação deste autenticador não serão mais exigidos ao fazer login.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Sua conta pode ficar menos segura. Tem certeza de que deseja continuar?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "A verificação em duas etapas via aplicativo autenticador foi removida.",
"userProfile.mfaTOTPPage.removeResource.title": "Remover verificação em duas etapas",
"userProfile.mfaTOTPPage.successMessage": "A verificação em duas etapas está ativada. Ao fazer login, você precisará inserir um código de verificação do seu autenticador.",
"userProfile.mfaTOTPPage.title": "Adicionar aplicativo autenticador",
"userProfile.mfaTOTPPage.verifySubtitle": "Digite o código de verificação gerado pelo seu autenticador",
"userProfile.mfaTOTPPage.verifyTitle": "Código de verificação",
"userProfile.mobileButton__menu": "Menu",
"userProfile.navbar.account": "Perfil",
"userProfile.navbar.description": "Gerencie as informações da sua conta.",
"userProfile.navbar.security": "Segurança",
"userProfile.navbar.title": "Conta",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} será removido desta conta.",
"userProfile.passkeyScreen.removeResource.title": "Remover chave de acesso",
"userProfile.passkeyScreen.subtitle__rename": "Você pode alterar o nome da chave de acesso para facilitar a identificação.",
"userProfile.passkeyScreen.title__rename": "Renomear chave de acesso",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Recomenda-se sair de todos os outros dispositivos que possam ter usado sua senha antiga.",
"userProfile.passwordPage.readonly": "Sua senha não pode ser editada no momento, pois você só pode fazer login via conexão corporativa.",
"userProfile.passwordPage.successMessage__set": "Sua senha foi definida.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Todos os outros dispositivos foram desconectados.",
"userProfile.passwordPage.successMessage__update": "Sua senha foi atualizada.",
"userProfile.passwordPage.title__set": "Definir senha",
"userProfile.passwordPage.title__update": "Atualizar senha",
"userProfile.phoneNumberPage.infoText": "Uma mensagem de texto com um código de verificação será enviada para este número. Tarifas de mensagem e dados podem ser aplicadas.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} será removido desta conta.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Você não poderá mais fazer login com este número de telefone.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} foi removido da sua conta.",
"userProfile.phoneNumberPage.removeResource.title": "Remover número de telefone",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} foi adicionado à sua conta.",
"userProfile.phoneNumberPage.title": "Adicionar número de telefone",
"userProfile.phoneNumberPage.verifySubtitle": "Digite o código de verificação enviado para {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "Verificar número de telefone",
"userProfile.profilePage.fileDropAreaHint": "Tamanho recomendado 1:1, até 10MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Remover",
"userProfile.profilePage.imageFormSubtitle": "Enviar",
"userProfile.profilePage.imageFormTitle": "Imagem de perfil",
"userProfile.profilePage.readonly": "As informações do seu perfil foram fornecidas pela conexão corporativa e não podem ser editadas.",
"userProfile.profilePage.successMessage": "Seu perfil foi atualizado.",
"userProfile.profilePage.title": "Atualizar perfil",
"userProfile.start.activeDevicesSection.destructiveAction": "Sair do dispositivo",
"userProfile.start.activeDevicesSection.title": "Dispositivos ativos",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Tentar novamente",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Autorizar agora",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Remover",
"userProfile.start.connectedAccountsSection.primaryButton": "Conectar conta",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "Os escopos necessários foram atualizados e você pode estar enfrentando limitações. Reautorize este aplicativo para evitar problemas.",
"userProfile.start.connectedAccountsSection.title": "Contas conectadas",
"userProfile.start.dangerSection.deleteAccountButton": "Excluir conta",
"userProfile.start.dangerSection.title": "Excluir conta",
"userProfile.start.emailAddressesSection.destructiveAction": "Remover e-mail",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Definir como principal",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Concluir verificação",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Verificar",
"userProfile.start.emailAddressesSection.primaryButton": "Adicionar e-mail",
"userProfile.start.emailAddressesSection.title": "Endereços de e-mail",
"userProfile.start.enterpriseAccountsSection.title": "Contas corporativas",
"userProfile.start.headerTitle__account": "Detalhes do perfil",
"userProfile.start.headerTitle__security": "Segurança",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Regenerar",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Códigos de backup",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Obtenha um novo conjunto de códigos de backup seguros. Os códigos anteriores serão excluídos e não poderão ser usados.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Regenerar códigos de backup",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Definir como padrão",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Remover",
"userProfile.start.mfaSection.primaryButton": "Adicionar verificação em duas etapas",
"userProfile.start.mfaSection.title": "Verificação em duas etapas",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Remover",
"userProfile.start.mfaSection.totp.headerTitle": "Aplicativo autenticador",
"userProfile.start.passkeysSection.menuAction__destructive": "Remover",
"userProfile.start.passkeysSection.menuAction__rename": "Renomear",
"userProfile.start.passkeysSection.title": "Chaves de acesso",
"userProfile.start.passwordSection.primaryButton__setPassword": "Definir senha",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Atualizar senha",
"userProfile.start.passwordSection.title": "Senha",
"userProfile.start.phoneNumbersSection.destructiveAction": "Remover número de telefone",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Definir como principal",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Concluir verificação",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Verificar número",
"userProfile.start.phoneNumbersSection.primaryButton": "Adicionar número de telefone",
"userProfile.start.phoneNumbersSection.title": "Números de telefone",
"userProfile.start.profileSection.primaryButton": "Atualizar perfil",
"userProfile.start.profileSection.title": "Perfil",
"userProfile.start.usernameSection.primaryButton__setUsername": "Definir nome de usuário",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Atualizar nome de usuário",
"userProfile.start.usernameSection.title": "Nome de usuário",
"userProfile.start.web3WalletsSection.destructiveAction": "Remover carteira",
"userProfile.start.web3WalletsSection.primaryButton": "Carteiras Web3",
"userProfile.start.web3WalletsSection.title": "Carteiras Web3",
"userProfile.usernamePage.successMessage": "Seu nome de usuário foi atualizado.",
"userProfile.usernamePage.title__set": "Definir nome de usuário",
"userProfile.usernamePage.title__update": "Atualizar nome de usuário",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} será removido desta conta.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Você não poderá mais fazer login com esta carteira Web3.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} foi removida da sua conta.",
"userProfile.web3WalletPage.removeResource.title": "Remover carteira Web3",
"userProfile.web3WalletPage.subtitle__availableWallets": "Selecione uma carteira Web3 para conectar à sua conta.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Não há carteiras Web3 disponíveis.",
"userProfile.web3WalletPage.successMessage": "A carteira foi adicionada à sua conta.",
"userProfile.web3WalletPage.title": "Adicionar carteira Web3"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Continuar Sessão",
"clerkAuth.loginSuccess.desc": "{{greeting}}, é ótimo continuar atendendo você. Vamos retomar de onde paramos.",
"clerkAuth.loginSuccess.title": "Bem-vindo de volta, {{nickName}}",
"error.backHome": "Voltar para a Página Inicial",
"error.desc": "Tente novamente mais tarde ou volte para o mundo conhecido.",
"error.retry": "Recarregar",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Desculpe, a cota desta chave foi atingida. Verifique o saldo da conta ou aumente a cota.",
"response.InvalidAccessCode": "Código de acesso inválido ou vazio. Insira o código correto ou adicione uma API Key personalizada.",
"response.InvalidBedrockCredentials": "Falha na autenticação do Bedrock. Verifique AccessKeyId/SecretAccessKey e tente novamente.",
"response.InvalidClerkUser": "Desculpe, você não está logado. Faça login ou registre-se para continuar.",
"response.InvalidComfyUIArgs": "Configuração inválida do ComfyUI. Verifique as configurações e tente novamente.",
"response.InvalidGithubToken": "O token de acesso pessoal do GitHub está incorreto ou vazio. Verifique e tente novamente.",
"response.InvalidOllamaArgs": "Configuração inválida do Ollama. Verifique e tente novamente.",

View file

@ -1,545 +0,0 @@
{
"backButton": "Назад",
"badge__default": "По умолчанию",
"badge__otherImpersonatorDevice": "Другое устройство-имитатор",
"badge__primary": "Основное",
"badge__requiresAction": "Требует действия",
"badge__thisDevice": "Это устройство",
"badge__unverified": "Не подтверждено",
"badge__userDevice": "Устройство пользователя",
"badge__you": "Вы",
"createOrganization.formButtonSubmit": "Создать организацию",
"createOrganization.invitePage.formButtonReset": "Пропустить",
"createOrganization.title": "Создание организации",
"dates.lastDay": "Вчера в {{ date | timeString('ru-RU') }}",
"dates.next6Days": "{{ date | weekday('ru-RU','long') }} в {{ date | timeString('ru-RU') }}",
"dates.nextDay": "Завтра в {{ date | timeString('ru-RU') }}",
"dates.numeric": "{{ date | numeric('ru-RU') }}",
"dates.previous6Days": "В прошлый {{ date | weekday('ru-RU','long') }} в {{ date | timeString('ru-RU') }}",
"dates.sameDay": "Сегодня в {{ date | timeString('ru-RU') }}",
"dividerText": "или",
"footerActionLink__useAnotherMethod": "Использовать другой способ",
"footerPageLink__help": "Помощь",
"footerPageLink__privacy": "Конфиденциальность",
"footerPageLink__terms": "Условия",
"formButtonPrimary": "Продолжить",
"formButtonPrimary__verify": "Подтвердить",
"formFieldAction__forgotPassword": "Забыли пароль?",
"formFieldError__matchingPasswords": "Пароли совпадают.",
"formFieldError__notMatchingPasswords": "Пароли не совпадают.",
"formFieldError__verificationLinkExpired": "Срок действия ссылки для подтверждения истёк. Пожалуйста, запросите новую ссылку.",
"formFieldHintText__optional": "Необязательно",
"formFieldHintText__slug": "Слаг — это читаемый идентификатор, который должен быть уникальным. Часто используется в URL.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Удалить аккаунт",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "example@email.com, example2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "my-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Включить автоматические приглашения для этого домена",
"formFieldLabel__backupCode": "Резервный код",
"formFieldLabel__confirmDeletion": "Подтверждение",
"formFieldLabel__confirmPassword": "Подтвердите пароль",
"formFieldLabel__currentPassword": "Текущий пароль",
"formFieldLabel__emailAddress": "Адрес электронной почты",
"formFieldLabel__emailAddress_username": "Email или имя пользователя",
"formFieldLabel__emailAddresses": "Email-адреса",
"formFieldLabel__firstName": "Имя",
"formFieldLabel__lastName": "Фамилия",
"formFieldLabel__newPassword": "Новый пароль",
"formFieldLabel__organizationDomain": "Домен",
"formFieldLabel__organizationDomainDeletePending": "Удалить ожидающие приглашения и предложения",
"formFieldLabel__organizationDomainEmailAddress": "Email для подтверждения",
"formFieldLabel__organizationDomainEmailAddressDescription": "Введите email в этом домене, чтобы получить код и подтвердить домен.",
"formFieldLabel__organizationName": "Название",
"formFieldLabel__organizationSlug": "Слаг",
"formFieldLabel__passkeyName": "Название ключа доступа",
"formFieldLabel__password": "Пароль",
"formFieldLabel__phoneNumber": "Номер телефона",
"formFieldLabel__role": "Роль",
"formFieldLabel__signOutOfOtherSessions": "Выйти со всех других устройств",
"formFieldLabel__username": "Имя пользователя",
"impersonationFab.action__signOut": "Выйти",
"impersonationFab.title": "Вы вошли как {{identifier}}",
"locale": "ru-RU",
"maintenanceMode": "Ведутся технические работы. Не волнуйтесь, это займет всего несколько минут.",
"membershipRole__admin": "Администратор",
"membershipRole__basicMember": "Участник",
"membershipRole__guestMember": "Гость",
"organizationList.action__createOrganization": "Создать организацию",
"organizationList.action__invitationAccept": "Присоединиться",
"organizationList.action__suggestionsAccept": "Запросить доступ",
"organizationList.createOrganization": "Создать организацию",
"organizationList.invitationAcceptedLabel": "Присоединился",
"organizationList.subtitle": "для продолжения в {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "Ожидает одобрения",
"organizationList.title": "Выберите аккаунт",
"organizationList.titleWithoutPersonal": "Выберите организацию",
"organizationProfile.badge__automaticInvitation": "Автоматические приглашения",
"organizationProfile.badge__automaticSuggestion": "Автоматические предложения",
"organizationProfile.badge__manualInvitation": "Без автоматической регистрации",
"organizationProfile.badge__unverified": "Не подтверждено",
"organizationProfile.createDomainPage.subtitle": "Добавьте домен для подтверждения. Пользователи с email в этом домене смогут автоматически присоединиться к организации или отправить запрос.",
"organizationProfile.createDomainPage.title": "Добавить домен",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "Не удалось отправить приглашения. Уже есть ожидающие приглашения для следующих адресов: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Отправить приглашения",
"organizationProfile.invitePage.selectDropdown__role": "Выберите роль",
"organizationProfile.invitePage.subtitle": "Введите или вставьте один или несколько email-адресов, разделённых пробелами или запятыми.",
"organizationProfile.invitePage.successMessage": "Приглашения успешно отправлены",
"organizationProfile.invitePage.title": "Пригласить новых участников",
"organizationProfile.membersPage.action__invite": "Пригласить",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Удалить участника",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Присоединился",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Роль",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Пользователь",
"organizationProfile.membersPage.detailsTitle__emptyRow": "Нет участников для отображения",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Приглашайте пользователей, подключив email-домен к вашей организации. Любой, кто зарегистрируется с подходящим доменом, сможет присоединиться в любое время.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Автоматические приглашения",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Управление подтверждёнными доменами",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Нет приглашений для отображения",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Отозвать приглашение",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Приглашён",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Пользователи, зарегистрировавшиеся с подходящим доменом, смогут увидеть предложение присоединиться к вашей организации.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Автоматические предложения",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Управление подтверждёнными доменами",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Одобрить",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Отклонить",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Запрошен доступ",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Нет запросов для отображения",
"organizationProfile.membersPage.start.headerTitle__invitations": "Приглашения",
"organizationProfile.membersPage.start.headerTitle__members": "Участники",
"organizationProfile.membersPage.start.headerTitle__requests": "Запросы",
"organizationProfile.navbar.description": "Управление вашей организацией.",
"organizationProfile.navbar.general": "Общие",
"organizationProfile.navbar.members": "Участники",
"organizationProfile.navbar.title": "Организация",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Введите «{{organizationName}}» ниже, чтобы продолжить.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Вы уверены, что хотите удалить эту организацию?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Это действие необратимо.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Организация была удалена.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Удалить организацию",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Введите «{{organizationName}}» ниже, чтобы продолжить.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Вы уверены, что хотите покинуть эту организацию? Вы потеряете доступ к ней и её приложениям.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Это действие необратимо.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Вы покинули организацию.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Покинуть организацию",
"organizationProfile.profilePage.dangerSection.title": "Опасная зона",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Управлять",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Удалить",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Подтвердить",
"organizationProfile.profilePage.domainSection.primaryButton": "Добавить домен",
"organizationProfile.profilePage.domainSection.subtitle": "Разрешить пользователям автоматически присоединяться к организации или отправлять запросы на основе подтверждённого email-домена.",
"organizationProfile.profilePage.domainSection.title": "Подтверждённые домены",
"organizationProfile.profilePage.successMessage": "Организация обновлена.",
"organizationProfile.profilePage.title": "Обновить профиль",
"organizationProfile.removeDomainPage.messageLine1": "Домен электронной почты {{domain}} будет удалён.",
"organizationProfile.removeDomainPage.messageLine2": "Пользователи больше не смогут автоматически присоединяться к организации.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} был удалён.",
"organizationProfile.removeDomainPage.title": "Удалить домен",
"organizationProfile.start.headerTitle__general": "Общие",
"organizationProfile.start.headerTitle__members": "Участники",
"organizationProfile.start.profileSection.primaryButton": "Обновить профиль",
"organizationProfile.start.profileSection.title": "Профиль организации",
"organizationProfile.start.profileSection.uploadAction__title": "Логотип",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Удаление этого домена повлияет на приглашённых пользователей.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Удалить домен",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Удалите этот домен из списка подтверждённых",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Удалить домен",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Пользователи автоматически приглашаются в организацию при регистрации и могут присоединиться в любое время.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Автоматические приглашения",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Пользователи получают предложение присоединиться, но должны быть одобрены администратором.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Автоматические предложения",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Изменение режима регистрации повлияет только на новых пользователей.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Ожидающих приглашений: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Ожидающих предложений: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Пользователи могут быть приглашены в организацию только вручную.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Без автоматической регистрации",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Выберите, как пользователи с этого домена могут присоединиться к организации.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Опасно",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Параметры регистрации",
"organizationProfile.verifiedDomainPage.subtitle": "Домен {{domain}} подтверждён. Продолжите, выбрав режим регистрации.",
"organizationProfile.verifiedDomainPage.title": "Обновить {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "Введите код подтверждения, отправленный на вашу электронную почту",
"organizationProfile.verifyDomainPage.formTitle": "Код подтверждения",
"organizationProfile.verifyDomainPage.resendButton": "Не получили код? Отправить повторно",
"organizationProfile.verifyDomainPage.subtitle": "Домен {{domainName}} необходимо подтвердить по электронной почте.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "Код подтверждения был отправлен на {{emailAddress}}. Введите код, чтобы продолжить.",
"organizationProfile.verifyDomainPage.title": "Подтвердить домен",
"organizationSwitcher.action__createOrganization": "Создать организацию",
"organizationSwitcher.action__invitationAccept": "Присоединиться",
"organizationSwitcher.action__manageOrganization": "Управление",
"organizationSwitcher.action__suggestionsAccept": "Запросить присоединение",
"organizationSwitcher.notSelected": "Организация не выбрана",
"organizationSwitcher.personalWorkspace": "Личный аккаунт",
"organizationSwitcher.suggestionsAcceptedLabel": "Ожидает одобрения",
"paginationButton__next": "Далее",
"paginationButton__previous": "Назад",
"paginationRowText__displaying": "Отображение",
"paginationRowText__of": "из",
"signIn.accountSwitcher.action__addAccount": "Добавить аккаунт",
"signIn.accountSwitcher.action__signOutAll": "Выйти из всех аккаунтов",
"signIn.accountSwitcher.subtitle": "Выберите аккаунт, с которым хотите продолжить.",
"signIn.accountSwitcher.title": "Выберите аккаунт",
"signIn.alternativeMethods.actionLink": "Нужна помощь",
"signIn.alternativeMethods.actionText": "Нет доступа к этим методам?",
"signIn.alternativeMethods.blockButton__backupCode": "Использовать резервный код",
"signIn.alternativeMethods.blockButton__emailCode": "Отправить код на {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "Отправить ссылку на {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "Войти с помощью ключа доступа",
"signIn.alternativeMethods.blockButton__password": "Войти с паролем",
"signIn.alternativeMethods.blockButton__phoneCode": "Отправить SMS-код на {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "Использовать приложение-аутентификатор",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Написать в поддержку",
"signIn.alternativeMethods.getHelp.content": "Если у вас возникли трудности со входом, напишите нам, и мы поможем восстановить доступ как можно скорее.",
"signIn.alternativeMethods.getHelp.title": "Нужна помощь",
"signIn.alternativeMethods.subtitle": "Проблемы со входом? Используйте один из следующих методов.",
"signIn.alternativeMethods.title": "Использовать другой метод",
"signIn.backupCodeMfa.subtitle": "Ваш резервный код был предоставлен при настройке двухэтапной аутентификации.",
"signIn.backupCodeMfa.title": "Введите резервный код",
"signIn.emailCode.formTitle": "Код подтверждения",
"signIn.emailCode.resendButton": "Не получили код? Отправить повторно",
"signIn.emailCode.subtitle": "для продолжения в {{applicationName}}",
"signIn.emailCode.title": "Проверьте почту",
"signIn.emailLink.expired.subtitle": "Вернитесь на исходную вкладку, чтобы продолжить.",
"signIn.emailLink.expired.title": "Срок действия ссылки истёк",
"signIn.emailLink.failed.subtitle": "Вернитесь на исходную вкладку, чтобы продолжить.",
"signIn.emailLink.failed.title": "Ссылка недействительна",
"signIn.emailLink.formSubtitle": "Используйте ссылку, отправленную на вашу почту",
"signIn.emailLink.formTitle": "Ссылка подтверждения",
"signIn.emailLink.loading.subtitle": "Скоро произойдёт перенаправление",
"signIn.emailLink.loading.title": "Вход...",
"signIn.emailLink.resendButton": "Не получили ссылку? Отправить повторно",
"signIn.emailLink.subtitle": "для продолжения в {{applicationName}}",
"signIn.emailLink.title": "Проверьте почту",
"signIn.emailLink.unusedTab.title": "Вы можете закрыть эту вкладку",
"signIn.emailLink.verified.subtitle": "Скоро произойдёт перенаправление",
"signIn.emailLink.verified.title": "Вход выполнен",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Вернитесь на исходную вкладку, чтобы продолжить",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Вернитесь на новую вкладку, чтобы продолжить",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Вход выполнен в другой вкладке",
"signIn.forgotPassword.formTitle": "Код для сброса пароля",
"signIn.forgotPassword.resendButton": "Не получили код? Отправить повторно",
"signIn.forgotPassword.subtitle": "для сброса пароля",
"signIn.forgotPassword.subtitle_email": "Сначала введите код, отправленный на вашу почту",
"signIn.forgotPassword.subtitle_phone": "Сначала введите код, отправленный на ваш телефон",
"signIn.forgotPassword.title": "Сброс пароля",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Сбросить пароль",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Или войдите другим способом",
"signIn.forgotPasswordAlternativeMethods.title": "Забыли пароль?",
"signIn.noAvailableMethods.message": "Невозможно продолжить вход. Нет доступных методов аутентификации.",
"signIn.noAvailableMethods.subtitle": "Произошла ошибка",
"signIn.noAvailableMethods.title": "Невозможно войти",
"signIn.passkey.subtitle": "Использование ключа доступа подтверждает вашу личность. Устройство может запросить отпечаток пальца, лицо или блокировку экрана.",
"signIn.passkey.title": "Использовать ключ доступа",
"signIn.password.actionLink": "Использовать другой метод",
"signIn.password.subtitle": "Введите пароль, связанный с вашим аккаунтом",
"signIn.password.title": "Введите пароль",
"signIn.passwordPwned.title": "Пароль скомпрометирован",
"signIn.phoneCode.formTitle": "Код подтверждения",
"signIn.phoneCode.resendButton": "Не получили код? Отправить повторно",
"signIn.phoneCode.subtitle": "чтобы продолжить в {{applicationName}}",
"signIn.phoneCode.title": "Проверьте телефон",
"signIn.phoneCodeMfa.formTitle": "Код подтверждения",
"signIn.phoneCodeMfa.resendButton": "Не получили код? Отправить повторно",
"signIn.phoneCodeMfa.subtitle": "Чтобы продолжить, введите код подтверждения, отправленный на ваш телефон",
"signIn.phoneCodeMfa.title": "Проверьте телефон",
"signIn.resetPassword.formButtonPrimary": "Сбросить пароль",
"signIn.resetPassword.requiredMessage": "По соображениям безопасности необходимо сбросить пароль.",
"signIn.resetPassword.successMessage": "Пароль успешно изменён. Выполняется вход, подождите немного.",
"signIn.resetPassword.title": "Установите новый пароль",
"signIn.resetPasswordMfa.detailsLabel": "Перед сбросом пароля необходимо подтвердить вашу личность.",
"signIn.start.actionLink": "Зарегистрироваться",
"signIn.start.actionLink__use_email": "Использовать email",
"signIn.start.actionLink__use_email_username": "Использовать email или имя пользователя",
"signIn.start.actionLink__use_passkey": "Использовать ключ доступа",
"signIn.start.actionLink__use_phone": "Использовать телефон",
"signIn.start.actionLink__use_username": "Использовать имя пользователя",
"signIn.start.actionText": "Нет аккаунта?",
"signIn.start.subtitle": "С возвращением! Пожалуйста, войдите, чтобы продолжить",
"signIn.start.title": "Вход в {{applicationName}}",
"signIn.totpMfa.formTitle": "Код подтверждения",
"signIn.totpMfa.subtitle": "Чтобы продолжить, введите код подтверждения из приложения-аутентификатора",
"signIn.totpMfa.title": "Двухэтапная проверка",
"signInEnterPasswordTitle": "Введите пароль",
"signUp.continue.actionLink": "Войти",
"signUp.continue.actionText": "Уже есть аккаунт?",
"signUp.continue.subtitle": "Пожалуйста, заполните оставшиеся данные для продолжения.",
"signUp.continue.title": "Заполните недостающие поля",
"signUp.emailCode.formSubtitle": "Введите код подтверждения, отправленный на ваш email",
"signUp.emailCode.formTitle": "Код подтверждения",
"signUp.emailCode.resendButton": "Не получили код? Отправить повторно",
"signUp.emailCode.subtitle": "Введите код подтверждения, отправленный на ваш email",
"signUp.emailCode.title": "Подтвердите email",
"signUp.emailLink.formSubtitle": "Используйте ссылку подтверждения, отправленную на ваш email",
"signUp.emailLink.formTitle": "Ссылка подтверждения",
"signUp.emailLink.loading.title": "Регистрация...",
"signUp.emailLink.resendButton": "Не получили ссылку? Отправить повторно",
"signUp.emailLink.subtitle": "чтобы продолжить в {{applicationName}}",
"signUp.emailLink.title": "Подтвердите email",
"signUp.emailLink.verified.title": "Регистрация завершена",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Вернитесь во вновь открытую вкладку, чтобы продолжить",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Вернитесь в предыдущую вкладку, чтобы продолжить",
"signUp.emailLink.verifiedSwitchTab.title": "Email успешно подтверждён",
"signUp.phoneCode.formSubtitle": "Введите код подтверждения, отправленный на ваш номер телефона",
"signUp.phoneCode.formTitle": "Код подтверждения",
"signUp.phoneCode.resendButton": "Не получили код? Отправить повторно",
"signUp.phoneCode.subtitle": "Введите код подтверждения, отправленный на ваш телефон",
"signUp.phoneCode.title": "Подтвердите телефон",
"signUp.start.actionLink": "Войти",
"signUp.start.actionText": "Уже есть аккаунт?",
"signUp.start.subtitle": "Добро пожаловать! Пожалуйста, заполните данные для начала.",
"signUp.start.title": "Создайте аккаунт",
"socialButtonsBlockButton": "Продолжить через {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Регистрация не удалась из-за ошибки проверки безопасности. Обновите страницу и попробуйте снова или обратитесь в поддержку.",
"unstable__errors.captcha_unavailable": "Регистрация не удалась из-за ошибки проверки на бота. Обновите страницу и попробуйте снова или обратитесь в поддержку.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Этот email уже используется. Пожалуйста, попробуйте другой.",
"unstable__errors.form_identifier_exists__phone_number": "Этот номер телефона уже используется. Пожалуйста, попробуйте другой.",
"unstable__errors.form_identifier_exists__username": "Это имя пользователя уже занято. Пожалуйста, выберите другое.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "Email должен быть действительным адресом электронной почты.",
"unstable__errors.form_param_format_invalid__phone_number": "Номер телефона должен быть в международном формате.",
"unstable__errors.form_param_max_length_exceeded__first_name": "Имя не должно превышать 256 символов.",
"unstable__errors.form_param_max_length_exceeded__last_name": "Фамилия не должна превышать 256 символов.",
"unstable__errors.form_param_max_length_exceeded__name": "Имя не должно превышать 256 символов.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Ваш пароль недостаточно надёжен.",
"unstable__errors.form_password_pwned": "Этот пароль был найден в утечке данных и не может быть использован. Пожалуйста, выберите другой.",
"unstable__errors.form_password_pwned__sign_in": "Этот пароль был найден в утечке данных и не может быть использован. Пожалуйста, сбросьте пароль.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Ваш пароль превышает допустимый размер. Укоротите его или удалите некоторые специальные символы.",
"unstable__errors.form_password_validation_failed": "Неверный пароль",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "Вы не можете удалить последнюю идентификацию.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Ключ доступа уже зарегистрирован на этом устройстве.",
"unstable__errors.passkey_not_supported": "Ключи доступа не поддерживаются на этом устройстве.",
"unstable__errors.passkey_pa_not_supported": "Для регистрации требуется платформенный аутентификатор, но устройство его не поддерживает.",
"unstable__errors.passkey_registration_cancelled": "Регистрация ключа доступа была отменена или истекло время ожидания.",
"unstable__errors.passkey_retrieval_cancelled": "Проверка ключа доступа была отменена или истекло время ожидания.",
"unstable__errors.passwordComplexity.maximumLength": "менее {{length}} символов",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} символов или больше",
"unstable__errors.passwordComplexity.requireLowercase": "строчную букву",
"unstable__errors.passwordComplexity.requireNumbers": "цифру",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "специальный символ",
"unstable__errors.passwordComplexity.requireUppercase": "заглавную букву",
"unstable__errors.passwordComplexity.sentencePrefix": "Ваш пароль должен содержать",
"unstable__errors.phone_number_exists": "Этот номер телефона уже используется. Пожалуйста, попробуйте другой.",
"unstable__errors.zxcvbn.couldBeStronger": "Пароль подходит, но может быть надёжнее. Попробуйте добавить больше символов.",
"unstable__errors.zxcvbn.goodPassword": "Ваш пароль соответствует всем требованиям.",
"unstable__errors.zxcvbn.notEnough": "Ваш пароль недостаточно надёжен.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Используйте заглавные буквы не во всех словах.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Добавьте менее распространённые слова.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Избегайте годов, связанных с вами.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Используйте заглавные буквы не только в начале.",
"unstable__errors.zxcvbn.suggestions.dates": "Избегайте дат и годов, связанных с вами.",
"unstable__errors.zxcvbn.suggestions.l33t": "Избегайте предсказуемых замен букв, например '@' вместо 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Используйте более длинные шаблоны клавиатуры и меняйте направление ввода.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Вы можете создать надёжный пароль без символов, цифр или заглавных букв.",
"unstable__errors.zxcvbn.suggestions.pwned": "Если вы используете этот пароль где-либо ещё, смените его.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Избегайте недавних годов.",
"unstable__errors.zxcvbn.suggestions.repeated": "Избегайте повторяющихся слов и символов.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Избегайте обратного написания распространённых слов.",
"unstable__errors.zxcvbn.suggestions.sequences": "Избегайте распространённых последовательностей символов.",
"unstable__errors.zxcvbn.suggestions.useWords": "Используйте несколько слов, но избегайте распространённых фраз.",
"unstable__errors.zxcvbn.warnings.common": "Это часто используемый пароль.",
"unstable__errors.zxcvbn.warnings.commonNames": "Распространённые имена и фамилии легко угадать.",
"unstable__errors.zxcvbn.warnings.dates": "Даты легко угадать.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Повторяющиеся шаблоны символов, такие как \"abcabcabc\", легко угадать.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Короткие шаблоны клавиатуры легко угадать.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Одиночные имена или фамилии легко угадать.",
"unstable__errors.zxcvbn.warnings.pwned": "Ваш пароль был скомпрометирован в результате утечки данных.",
"unstable__errors.zxcvbn.warnings.recentYears": "Недавние годы легко угадать.",
"unstable__errors.zxcvbn.warnings.sequences": "Распространённые последовательности символов, такие как \"abc\", легко угадать.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "Похож на часто используемый пароль.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Повторяющиеся символы, такие как \"aaa\", легко угадать.",
"unstable__errors.zxcvbn.warnings.straightRow": "Прямые ряды клавиш на клавиатуре легко угадать.",
"unstable__errors.zxcvbn.warnings.topHundred": "Это один из самых часто используемых паролей.",
"unstable__errors.zxcvbn.warnings.topTen": "Это один из 10 самых популярных паролей.",
"unstable__errors.zxcvbn.warnings.userInputs": "Не должно быть личной информации или данных, связанных со страницей.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Одиночные слова легко угадать.",
"userButton.action__addAccount": "Добавить аккаунт",
"userButton.action__manageAccount": "Управление аккаунтом",
"userButton.action__signOut": "Выйти",
"userButton.action__signOutAll": "Выйти из всех аккаунтов",
"userProfile.backupCodePage.actionLabel__copied": "Скопировано!",
"userProfile.backupCodePage.actionLabel__copy": "Скопировать все",
"userProfile.backupCodePage.actionLabel__download": "Скачать .txt",
"userProfile.backupCodePage.actionLabel__print": "Печать",
"userProfile.backupCodePage.infoText1": "Резервные коды будут включены для этого аккаунта.",
"userProfile.backupCodePage.infoText2": "Храните резервные коды в секрете и в безопасном месте. Вы можете сгенерировать новые коды, если подозреваете, что они были скомпрометированы.",
"userProfile.backupCodePage.subtitle__codelist": "Храните их в безопасности и не разглашайте.",
"userProfile.backupCodePage.successMessage": "Резервные коды включены. Вы можете использовать один из них для входа в аккаунт, если потеряете доступ к устройству аутентификации. Каждый код можно использовать только один раз.",
"userProfile.backupCodePage.successSubtitle": "Вы можете использовать один из этих кодов для входа в аккаунт, если потеряете доступ к устройству аутентификации.",
"userProfile.backupCodePage.title": "Добавить проверку с помощью резервных кодов",
"userProfile.backupCodePage.title__codelist": "Резервные коды",
"userProfile.connectedAccountPage.formHint": "Выберите провайдера для подключения аккаунта.",
"userProfile.connectedAccountPage.formHint__noAccounts": "Нет доступных внешних провайдеров аккаунтов.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} будет удалён из этого аккаунта.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Вы больше не сможете использовать этот подключённый аккаунт, и связанные функции перестанут работать.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} был удалён из вашего аккаунта.",
"userProfile.connectedAccountPage.removeResource.title": "Удалить подключённый аккаунт",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "Провайдер был добавлен к вашему аккаунту",
"userProfile.connectedAccountPage.title": "Добавить подключённый аккаунт",
"userProfile.deletePage.actionDescription": "Введите «Удалить аккаунт» ниже, чтобы продолжить.",
"userProfile.deletePage.confirm": "Удалить аккаунт",
"userProfile.deletePage.messageLine1": "Вы уверены, что хотите удалить свой аккаунт?",
"userProfile.deletePage.messageLine2": "Это действие необратимо.",
"userProfile.deletePage.title": "Удалить аккаунт",
"userProfile.emailAddressPage.emailCode.formHint": "На этот адрес электронной почты будет отправлен код подтверждения.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Введите код подтверждения, отправленный на {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "Код подтверждения",
"userProfile.emailAddressPage.emailCode.resendButton": "Не получили код? Отправить повторно",
"userProfile.emailAddressPage.emailCode.successMessage": "Электронная почта {{identifier}} была добавлена к вашему аккаунту.",
"userProfile.emailAddressPage.emailLink.formHint": "На этот адрес электронной почты будет отправлена ссылка для подтверждения.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Нажмите на ссылку подтверждения в письме, отправленном на {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "Ссылка подтверждения",
"userProfile.emailAddressPage.emailLink.resendButton": "Не получили ссылку? Отправить повторно",
"userProfile.emailAddressPage.emailLink.successMessage": "Электронная почта {{identifier}} была добавлена к вашему аккаунту.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} будет удалён из этого аккаунта.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Вы больше не сможете входить с использованием этого адреса электронной почты.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} был удалён из вашего аккаунта.",
"userProfile.emailAddressPage.removeResource.title": "Удалить адрес электронной почты",
"userProfile.emailAddressPage.title": "Добавить адрес электронной почты",
"userProfile.emailAddressPage.verifyTitle": "Подтвердить адрес электронной почты",
"userProfile.formButtonPrimary__add": "Добавить",
"userProfile.formButtonPrimary__continue": "Продолжить",
"userProfile.formButtonPrimary__finish": "Завершить",
"userProfile.formButtonPrimary__remove": "Удалить",
"userProfile.formButtonPrimary__save": "Сохранить",
"userProfile.formButtonReset": "Отмена",
"userProfile.mfaPage.formHint": "Выберите метод для добавления.",
"userProfile.mfaPage.title": "Добавить двухэтапную проверку",
"userProfile.mfaPhoneCodePage.backButton": "Использовать существующий номер",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Добавить номер телефона",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} больше не будет получать коды подтверждения при входе.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Ваш аккаунт может стать менее защищённым. Вы уверены, что хотите продолжить?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "Двухэтапная проверка по SMS удалена для {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "Удалить двухэтапную проверку",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Выберите существующий номер телефона для регистрации двухэтапной проверки по SMS или добавьте новый.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "Нет доступных номеров телефона для регистрации двухэтапной проверки по SMS, пожалуйста, добавьте новый.",
"userProfile.mfaPhoneCodePage.successMessage1": "При входе вам нужно будет ввести код подтверждения, отправленный на этот номер телефона.",
"userProfile.mfaPhoneCodePage.successMessage2": "Сохраните эти резервные коды в безопасном месте. Если вы потеряете доступ к устройству аутентификации, вы сможете использовать резервные коды для входа.",
"userProfile.mfaPhoneCodePage.successTitle": "Проверка по SMS включена",
"userProfile.mfaPhoneCodePage.title": "Добавить проверку по SMS",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "Сканировать QR-код",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "Не можете сканировать QR-код?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Настройте новый способ входа в приложении-аутентификаторе и отсканируйте следующий QR-код для привязки к вашему аккаунту.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Настройте новый способ входа в приложении-аутентификаторе и введите указанный ниже ключ.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Убедитесь, что включены одноразовые или временные пароли, затем завершите привязку аккаунта.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Если ваше приложение поддерживает TOTP URI, вы также можете скопировать полный URI.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Коды подтверждения из этого приложения больше не будут требоваться при входе.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Ваш аккаунт может стать менее защищённым. Вы уверены, что хотите продолжить?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "Двухэтапная проверка через приложение-аутентификатор была удалена.",
"userProfile.mfaTOTPPage.removeResource.title": "Удалить двухэтапную проверку",
"userProfile.mfaTOTPPage.successMessage": "Двухэтапная проверка включена. При входе вам нужно будет ввести код подтверждения из приложения-аутентификатора.",
"userProfile.mfaTOTPPage.title": "Добавить приложение-аутентификатор",
"userProfile.mfaTOTPPage.verifySubtitle": "Введите код подтверждения, сгенерированный вашим приложением-аутентификатором",
"userProfile.mfaTOTPPage.verifyTitle": "Код подтверждения",
"userProfile.mobileButton__menu": "Меню",
"userProfile.navbar.account": "Профиль",
"userProfile.navbar.description": "Управление информацией аккаунта.",
"userProfile.navbar.security": "Безопасность",
"userProfile.navbar.title": "Аккаунт",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} будет удалён из этой учётной записи.",
"userProfile.passkeyScreen.removeResource.title": "Удалить ключ доступа",
"userProfile.passkeyScreen.subtitle__rename": "Вы можете изменить имя ключа доступа, чтобы его было проще найти.",
"userProfile.passkeyScreen.title__rename": "Переименовать ключ доступа",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Рекомендуется выйти из всех других устройств, которые могли использовать ваш старый пароль.",
"userProfile.passwordPage.readonly": "В данный момент вы не можете изменить пароль, так как вход возможен только через корпоративное подключение.",
"userProfile.passwordPage.successMessage__set": "Ваш пароль был установлен.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Выход выполнен на всех других устройствах.",
"userProfile.passwordPage.successMessage__update": "Ваш пароль был обновлён.",
"userProfile.passwordPage.title__set": "Установить пароль",
"userProfile.passwordPage.title__update": "Обновить пароль",
"userProfile.phoneNumberPage.infoText": "На этот номер телефона будет отправлено SMS с кодом подтверждения. Могут применяться тарифы на сообщения и передачу данных.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} будет удалён из этой учётной записи.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Вы больше не сможете входить с использованием этого номера телефона.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} был удалён из вашей учётной записи.",
"userProfile.phoneNumberPage.removeResource.title": "Удалить номер телефона",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} был добавлен в вашу учётную запись.",
"userProfile.phoneNumberPage.title": "Добавить номер телефона",
"userProfile.phoneNumberPage.verifySubtitle": "Введите код подтверждения, отправленный на {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "Подтвердить номер телефона",
"userProfile.profilePage.fileDropAreaHint": "Рекомендуемый размер 1:1, до 10 МБ.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Удалить",
"userProfile.profilePage.imageFormSubtitle": "Загрузить",
"userProfile.profilePage.imageFormTitle": "Изображение профиля",
"userProfile.profilePage.readonly": "Информация вашего профиля предоставлена корпоративным подключением и не может быть изменена.",
"userProfile.profilePage.successMessage": "Ваш профиль был обновлён.",
"userProfile.profilePage.title": "Обновить профиль",
"userProfile.start.activeDevicesSection.destructiveAction": "Выйти с устройства",
"userProfile.start.activeDevicesSection.title": "Активные устройства",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Повторить попытку",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Авторизоваться сейчас",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Удалить",
"userProfile.start.connectedAccountsSection.primaryButton": "Подключить учётную запись",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "Требуемые разрешения были обновлены, и функциональность может быть ограничена. Пожалуйста, повторно авторизуйте это приложение, чтобы избежать проблем.",
"userProfile.start.connectedAccountsSection.title": "Подключённые учётные записи",
"userProfile.start.dangerSection.deleteAccountButton": "Удалить учётную запись",
"userProfile.start.dangerSection.title": "Удаление учётной записи",
"userProfile.start.emailAddressesSection.destructiveAction": "Удалить email",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Сделать основным",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Завершить подтверждение",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Подтвердить",
"userProfile.start.emailAddressesSection.primaryButton": "Добавить email-адрес",
"userProfile.start.emailAddressesSection.title": "Email-адреса",
"userProfile.start.enterpriseAccountsSection.title": "Корпоративные учётные записи",
"userProfile.start.headerTitle__account": "Данные профиля",
"userProfile.start.headerTitle__security": "Безопасность",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Сгенерировать заново",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Резервные коды",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Получите новый набор безопасных резервных кодов. Предыдущие коды будут удалены и станут недействительными.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Сгенерировать резервные коды",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Установить по умолчанию",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Удалить",
"userProfile.start.mfaSection.primaryButton": "Добавить двухэтапную проверку",
"userProfile.start.mfaSection.title": "Двухэтапная проверка",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Удалить",
"userProfile.start.mfaSection.totp.headerTitle": "Приложение-аутентификатор",
"userProfile.start.passkeysSection.menuAction__destructive": "Удалить",
"userProfile.start.passkeysSection.menuAction__rename": "Переименовать",
"userProfile.start.passkeysSection.title": "Ключи доступа",
"userProfile.start.passwordSection.primaryButton__setPassword": "Установить пароль",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Обновить пароль",
"userProfile.start.passwordSection.title": "Пароль",
"userProfile.start.phoneNumbersSection.destructiveAction": "Удалить номер телефона",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Сделать основным",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Завершить подтверждение",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Подтвердить номер",
"userProfile.start.phoneNumbersSection.primaryButton": "Добавить номер телефона",
"userProfile.start.phoneNumbersSection.title": "Номера телефонов",
"userProfile.start.profileSection.primaryButton": "Обновить профиль",
"userProfile.start.profileSection.title": "Профиль",
"userProfile.start.usernameSection.primaryButton__setUsername": "Установить имя пользователя",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Обновить имя пользователя",
"userProfile.start.usernameSection.title": "Имя пользователя",
"userProfile.start.web3WalletsSection.destructiveAction": "Удалить кошелёк",
"userProfile.start.web3WalletsSection.primaryButton": "Web3-кошельки",
"userProfile.start.web3WalletsSection.title": "Web3-кошельки",
"userProfile.usernamePage.successMessage": "Ваше имя пользователя было обновлено.",
"userProfile.usernamePage.title__set": "Установить имя пользователя",
"userProfile.usernamePage.title__update": "Обновить имя пользователя",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} будет удалён из этой учётной записи.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Вы больше не сможете входить с использованием этого web3-кошелька.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} был удалён из вашей учётной записи.",
"userProfile.web3WalletPage.removeResource.title": "Удалить web3-кошелёк",
"userProfile.web3WalletPage.subtitle__availableWallets": "Выберите web3-кошелёк для подключения к вашей учётной записи.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Нет доступных web3-кошельков.",
"userProfile.web3WalletPage.successMessage": "Кошелёк был добавлен в вашу учётную запись.",
"userProfile.web3WalletPage.title": "Добавить web3-кошелёк"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Продолжить сессию",
"clerkAuth.loginSuccess.desc": "{{greeting}}, рады снова быть вам полезными. Давайте продолжим с того места, на котором остановились.",
"clerkAuth.loginSuccess.title": "С возвращением, {{nickName}}",
"error.backHome": "Вернуться на главную",
"error.desc": "Попробуйте позже или вернитесь в знакомый мир.",
"error.retry": "Перезагрузить",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Извините, достигнут лимит по ключу. Проверьте баланс аккаунта или увеличьте квоту ключа.",
"response.InvalidAccessCode": "Неверный или пустой код доступа. Введите корректный код или добавьте пользовательский API-ключ.",
"response.InvalidBedrockCredentials": "Ошибка аутентификации Bedrock. Проверьте AccessKeyId/SecretAccessKey и повторите попытку.",
"response.InvalidClerkUser": "Извините, вы не вошли в систему. Пожалуйста, войдите или зарегистрируйтесь.",
"response.InvalidComfyUIArgs": "Некорректная конфигурация ComfyUI. Проверьте настройки и повторите попытку.",
"response.InvalidGithubToken": "Неверный или пустой GitHub Personal Access Token. Проверьте токен и повторите попытку.",
"response.InvalidOllamaArgs": "Некорректная конфигурация Ollama. Проверьте настройки и повторите попытку.",

View file

@ -1,545 +0,0 @@
{
"backButton": "Geri",
"badge__default": "Varsayılan",
"badge__otherImpersonatorDevice": "Diğer taklit cihaz",
"badge__primary": "Birincil",
"badge__requiresAction": "İşlem gerekiyor",
"badge__thisDevice": "Bu cihaz",
"badge__unverified": "Doğrulanmamış",
"badge__userDevice": "Kullanıcı cihazı",
"badge__you": "Siz",
"createOrganization.formButtonSubmit": "Organizasyon oluştur",
"createOrganization.invitePage.formButtonReset": "Atla",
"createOrganization.title": "Organizasyon oluştur",
"dates.lastDay": "Dün {{ date | timeString('tr-TR') }}",
"dates.next6Days": "{{ date | weekday('tr-TR','long') }} günü {{ date | timeString('tr-TR') }}",
"dates.nextDay": "Yarın {{ date | timeString('tr-TR') }}",
"dates.numeric": "{{ date | numeric('tr-TR') }}",
"dates.previous6Days": "Geçen {{ date | weekday('tr-TR','long') }} günü {{ date | timeString('tr-TR') }}",
"dates.sameDay": "Bugün {{ date | timeString('tr-TR') }}",
"dividerText": "veya",
"footerActionLink__useAnotherMethod": "Başka bir yöntem kullan",
"footerPageLink__help": "Yardım",
"footerPageLink__privacy": "Gizlilik",
"footerPageLink__terms": "Şartlar",
"formButtonPrimary": "Devam et",
"formButtonPrimary__verify": "Doğrula",
"formFieldAction__forgotPassword": "Şifrenizi mi unuttunuz?",
"formFieldError__matchingPasswords": "Şifreler eşleşiyor.",
"formFieldError__notMatchingPasswords": "Şifreler eşleşmiyor.",
"formFieldError__verificationLinkExpired": "Doğrulama bağlantısının süresi doldu. Lütfen yeni bir bağlantı isteyin.",
"formFieldHintText__optional": "İsteğe bağlı",
"formFieldHintText__slug": "Slug, URL'lerde kullanılan, okunabilir ve benzersiz bir kimliktir.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Hesabı sil",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "ornek@email.com, ornek2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "benim-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Bu alan için otomatik davetleri etkinleştir",
"formFieldLabel__backupCode": "Yedek kod",
"formFieldLabel__confirmDeletion": "Onay",
"formFieldLabel__confirmPassword": "Şifreyi onayla",
"formFieldLabel__currentPassword": "Mevcut şifre",
"formFieldLabel__emailAddress": "E-posta adresi",
"formFieldLabel__emailAddress_username": "E-posta adresi veya kullanıcı adı",
"formFieldLabel__emailAddresses": "E-posta adresleri",
"formFieldLabel__firstName": "Ad",
"formFieldLabel__lastName": "Soyad",
"formFieldLabel__newPassword": "Yeni şifre",
"formFieldLabel__organizationDomain": "Alan adı",
"formFieldLabel__organizationDomainDeletePending": "Bekleyen davetleri ve önerileri sil",
"formFieldLabel__organizationDomainEmailAddress": "Doğrulama e-posta adresi",
"formFieldLabel__organizationDomainEmailAddressDescription": "Bu alan adı altında bir e-posta adresi girin, bir kod alarak alanı doğrulayın.",
"formFieldLabel__organizationName": "Ad",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "Geçiş anahtarı adı",
"formFieldLabel__password": "Şifre",
"formFieldLabel__phoneNumber": "Telefon numarası",
"formFieldLabel__role": "Rol",
"formFieldLabel__signOutOfOtherSessions": "Diğer tüm cihazlardan çıkış yap",
"formFieldLabel__username": "Kullanıcı adı",
"impersonationFab.action__signOut": ıkış yap",
"impersonationFab.title": "{{identifier}} olarak giriş yapıldı",
"locale": "tr-TR",
"maintenanceMode": "Şu anda bakımdayız, ancak endişelenmeyin, birkaç dakikadan fazla sürmeyecek.",
"membershipRole__admin": "Yönetici",
"membershipRole__basicMember": "Üye",
"membershipRole__guestMember": "Misafir",
"organizationList.action__createOrganization": "Organizasyon oluştur",
"organizationList.action__invitationAccept": "Katıl",
"organizationList.action__suggestionsAccept": "Katılma isteği gönder",
"organizationList.createOrganization": "Organizasyon Oluştur",
"organizationList.invitationAcceptedLabel": "Katıldı",
"organizationList.subtitle": "{{applicationName}} uygulamasına devam etmek için",
"organizationList.suggestionsAcceptedLabel": "Onay bekliyor",
"organizationList.title": "Bir hesap seçin",
"organizationList.titleWithoutPersonal": "Bir organizasyon seçin",
"organizationProfile.badge__automaticInvitation": "Otomatik davetler",
"organizationProfile.badge__automaticSuggestion": "Otomatik öneriler",
"organizationProfile.badge__manualInvitation": "Otomatik kayıt yok",
"organizationProfile.badge__unverified": "Doğrulanmamış",
"organizationProfile.createDomainPage.subtitle": "Doğrulamak için alan adı ekleyin. Bu alan adına sahip e-posta adresleri olan kullanıcılar otomatik olarak katılabilir veya katılma isteği gönderebilir.",
"organizationProfile.createDomainPage.title": "Alan adı ekle",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "Davetler gönderilemedi. Aşağıdaki e-posta adresleri için zaten bekleyen davetler var: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Davet gönder",
"organizationProfile.invitePage.selectDropdown__role": "Rol seçin",
"organizationProfile.invitePage.subtitle": "Bir veya daha fazla e-posta adresini boşluk veya virgül ile ayırarak girin ya da yapıştırın.",
"organizationProfile.invitePage.successMessage": "Davetler başarıyla gönderildi",
"organizationProfile.invitePage.title": "Yeni üyeleri davet et",
"organizationProfile.membersPage.action__invite": "Davet et",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Üyeyi kaldır",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Katılma tarihi",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Rol",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Kullanıcı",
"organizationProfile.membersPage.detailsTitle__emptyRow": "Gösterilecek üye yok",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Bir e-posta alan adını organizasyonunuza bağlayarak kullanıcıları davet edin. Eşleşen e-posta alan adıyla kaydolan herkes organizasyona katılabilir.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Otomatik davetler",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Doğrulanmış alanları yönet",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Gösterilecek davet yok",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Daveti geri al",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Davet edildi",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Eşleşen e-posta alan adıyla kaydolan kullanıcılar, organizasyona katılma önerisi görecektir.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Otomatik öneriler",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Doğrulanmış alanları yönet",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Onayla",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Reddet",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Erişim talebi",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Gösterilecek istek yok",
"organizationProfile.membersPage.start.headerTitle__invitations": "Davetler",
"organizationProfile.membersPage.start.headerTitle__members": "Üyeler",
"organizationProfile.membersPage.start.headerTitle__requests": "İstekler",
"organizationProfile.navbar.description": "Organizasyonunuzu yönetin.",
"organizationProfile.navbar.general": "Genel",
"organizationProfile.navbar.members": "Üyeler",
"organizationProfile.navbar.title": "Organizasyon",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Devam etmek için aşağıya \"{{organizationName}}\" yazın.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Bu organizasyonu silmek istediğinizden emin misiniz?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Bu işlem kalıcıdır ve geri alınamaz.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Organizasyon silindi.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Organizasyonu sil",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Devam etmek için aşağıya \"{{organizationName}}\" yazın.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Bu organizasyondan ayrılmak istediğinizden emin misiniz? Bu organizasyona ve uygulamalarına erişiminizi kaybedeceksiniz.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Bu işlem kalıcıdır ve geri alınamaz.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Organizasyondan ayrıldınız.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Organizasyondan ayrıl",
"organizationProfile.profilePage.dangerSection.title": "Tehlike",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Yönet",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Sil",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Doğrula",
"organizationProfile.profilePage.domainSection.primaryButton": "Alan adı ekle",
"organizationProfile.profilePage.domainSection.subtitle": "Kullanıcıların doğrulanmış bir e-posta alan adına göre otomatik olarak organizasyona katılmasına veya katılma talebinde bulunmasına izin verin.",
"organizationProfile.profilePage.domainSection.title": "Doğrulanmış alan adları",
"organizationProfile.profilePage.successMessage": "Organizasyon güncellendi.",
"organizationProfile.profilePage.title": "Profili güncelle",
"organizationProfile.removeDomainPage.messageLine1": "{{domain}} e-posta alan adı kaldırılacak.",
"organizationProfile.removeDomainPage.messageLine2": "Bu işlemden sonra kullanıcılar organizasyona otomatik olarak katılamayacak.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} kaldırıldı.",
"organizationProfile.removeDomainPage.title": "Alan adını kaldır",
"organizationProfile.start.headerTitle__general": "Genel",
"organizationProfile.start.headerTitle__members": "Üyeler",
"organizationProfile.start.profileSection.primaryButton": "Profili güncelle",
"organizationProfile.start.profileSection.title": "Organizasyon Profili",
"organizationProfile.start.profileSection.uploadAction__title": "Logo",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Bu alan adını kaldırmak davet edilen kullanıcıları etkiler.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Alan adını kaldır",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Bu alan adını doğrulanmış alan adlarınızdan kaldırın",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Alan adını kaldır",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Kullanıcılar kayıt olduklarında otomatik olarak organizasyona davet edilir ve istedikleri zaman katılabilirler.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Otomatik davetler",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Kullanıcılara katılma talebi önerisi gönderilir, ancak organizasyona katılmadan önce bir yönetici tarafından onaylanmaları gerekir.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Otomatik öneriler",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Kayıt modunu değiştirmek yalnızca yeni kullanıcıları etkiler.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Kullanıcılara gönderilen bekleyen davetler: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Kullanıcılara gönderilen bekleyen öneriler: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Kullanıcılar yalnızca manuel olarak organizasyona davet edilebilir.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Otomatik kayıt yok",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Bu alan adından gelen kullanıcıların organizasyona nasıl katılabileceğini seçin.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Tehlike",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Kayıt seçenekleri",
"organizationProfile.verifiedDomainPage.subtitle": "{{domain}} alan adı artık doğrulandı. Devam etmek için kayıt modunu seçin.",
"organizationProfile.verifiedDomainPage.title": "{{domain}} güncelle",
"organizationProfile.verifyDomainPage.formSubtitle": "E-posta adresinize gönderilen doğrulama kodunu girin",
"organizationProfile.verifyDomainPage.formTitle": "Doğrulama kodu",
"organizationProfile.verifyDomainPage.resendButton": "Kod gelmedi mi? Yeniden gönder",
"organizationProfile.verifyDomainPage.subtitle": "{{domainName}} alan adının e-posta yoluyla doğrulanması gerekiyor.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "{{emailAddress}} adresine bir doğrulama kodu gönderildi. Devam etmek için kodu girin.",
"organizationProfile.verifyDomainPage.title": "Alan adını doğrula",
"organizationSwitcher.action__createOrganization": "Organizasyon oluştur",
"organizationSwitcher.action__invitationAccept": "Katıl",
"organizationSwitcher.action__manageOrganization": "Yönet",
"organizationSwitcher.action__suggestionsAccept": "Katılma talebi gönder",
"organizationSwitcher.notSelected": "Seçili organizasyon yok",
"organizationSwitcher.personalWorkspace": "Kişisel hesap",
"organizationSwitcher.suggestionsAcceptedLabel": "Onay bekliyor",
"paginationButton__next": "İleri",
"paginationButton__previous": "Geri",
"paginationRowText__displaying": "Gösteriliyor",
"paginationRowText__of": "toplam",
"signIn.accountSwitcher.action__addAccount": "Hesap ekle",
"signIn.accountSwitcher.action__signOutAll": "Tüm hesaplardan çıkış yap",
"signIn.accountSwitcher.subtitle": "Devam etmek istediğiniz hesabı seçin.",
"signIn.accountSwitcher.title": "Hesap seçin",
"signIn.alternativeMethods.actionLink": "Yardım al",
"signIn.alternativeMethods.actionText": "Bunlardan hiçbiri yok mu?",
"signIn.alternativeMethods.blockButton__backupCode": "Yedek kod kullan",
"signIn.alternativeMethods.blockButton__emailCode": "{{identifier}} adresine e-posta kodu gönder",
"signIn.alternativeMethods.blockButton__emailLink": "{{identifier}} adresine e-posta bağlantısı gönder",
"signIn.alternativeMethods.blockButton__passkey": "Anahtar ile giriş yap",
"signIn.alternativeMethods.blockButton__password": "Şifrenizle giriş yap",
"signIn.alternativeMethods.blockButton__phoneCode": "{{identifier}} numarasına SMS kodu gönder",
"signIn.alternativeMethods.blockButton__totp": "Kimlik doğrulayıcı uygulamanızı kullanın",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Destek ekibine e-posta gönder",
"signIn.alternativeMethods.getHelp.content": "Hesabınıza giriş yapmakta zorlanıyorsanız, bize e-posta gönderin. Erişiminizi en kısa sürede geri kazandırmak için sizinle birlikte çalışacağız.",
"signIn.alternativeMethods.getHelp.title": "Yardım al",
"signIn.alternativeMethods.subtitle": "Sorun mu yaşıyorsunuz? Giriş yapmak için bu yöntemlerden herhangi birini kullanabilirsiniz.",
"signIn.alternativeMethods.title": "Başka bir yöntem kullan",
"signIn.backupCodeMfa.subtitle": "Yedek kodunuz, iki adımlı doğrulamayı kurarken aldığınız koddur.",
"signIn.backupCodeMfa.title": "Yedek kod girin",
"signIn.emailCode.formTitle": "Doğrulama kodu",
"signIn.emailCode.resendButton": "Kod gelmedi mi? Yeniden gönder",
"signIn.emailCode.subtitle": "{{applicationName}} uygulamasına devam etmek için",
"signIn.emailCode.title": "E-postanızı kontrol edin",
"signIn.emailLink.expired.subtitle": "Devam etmek için orijinal sekmeye dönün.",
"signIn.emailLink.expired.title": "Bu doğrulama bağlantısının süresi doldu",
"signIn.emailLink.failed.subtitle": "Devam etmek için orijinal sekmeye dönün.",
"signIn.emailLink.failed.title": "Bu doğrulama bağlantısı geçersiz",
"signIn.emailLink.formSubtitle": "E-postanıza gönderilen doğrulama bağlantısını kullanın",
"signIn.emailLink.formTitle": "Doğrulama bağlantısı",
"signIn.emailLink.loading.subtitle": "Kısa süre içinde yönlendirileceksiniz",
"signIn.emailLink.loading.title": "Giriş yapılıyor...",
"signIn.emailLink.resendButton": "Bağlantı gelmedi mi? Yeniden gönder",
"signIn.emailLink.subtitle": "{{applicationName}} uygulamasına devam etmek için",
"signIn.emailLink.title": "E-postanızı kontrol edin",
"signIn.emailLink.unusedTab.title": "Bu sekmeyi kapatabilirsiniz",
"signIn.emailLink.verified.subtitle": "Kısa süre içinde yönlendirileceksiniz",
"signIn.emailLink.verified.title": "Başarıyla giriş yapıldı",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Devam etmek için orijinal sekmeye dönün",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Devam etmek için yeni açılan sekmeye dönün",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Diğer sekmede giriş yapıldı",
"signIn.forgotPassword.formTitle": "Şifre sıfırlama kodu",
"signIn.forgotPassword.resendButton": "Kod gelmedi mi? Yeniden gönder",
"signIn.forgotPassword.subtitle": "Şifrenizi sıfırlamak için",
"signIn.forgotPassword.subtitle_email": "Öncelikle, e-posta adresinize gönderilen kodu girin",
"signIn.forgotPassword.subtitle_phone": "Öncelikle, telefonunuza gönderilen kodu girin",
"signIn.forgotPassword.title": "Şifreyi sıfırla",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Şifrenizi sıfırlayın",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Ya da başka bir yöntemle giriş yapın",
"signIn.forgotPasswordAlternativeMethods.title": "Şifrenizi mi unuttunuz?",
"signIn.noAvailableMethods.message": "Giriş yapılamıyor. Kullanılabilir bir kimlik doğrulama yöntemi yok.",
"signIn.noAvailableMethods.subtitle": "Bir hata oluştu",
"signIn.noAvailableMethods.title": "Giriş yapılamıyor",
"signIn.passkey.subtitle": "Geçiş anahtarınızı kullanmak kimliğinizi doğrular. Cihazınız parmak izi, yüz tanıma veya ekran kilidi isteyebilir.",
"signIn.passkey.title": "Geçiş anahtarınızı kullanın",
"signIn.password.actionLink": "Başka bir yöntem kullan",
"signIn.password.subtitle": "Hesabınızla ilişkili şifreyi girin",
"signIn.password.title": "Şifrenizi girin",
"signIn.passwordPwned.title": "Şifre güvenliği ihlal edilmiş",
"signIn.phoneCode.formTitle": "Doğrulama kodu",
"signIn.phoneCode.resendButton": "Kod gelmedi mi? Tekrar gönder",
"signIn.phoneCode.subtitle": "{{applicationName}} uygulamasına devam etmek için",
"signIn.phoneCode.title": "Telefonunuzu kontrol edin",
"signIn.phoneCodeMfa.formTitle": "Doğrulama kodu",
"signIn.phoneCodeMfa.resendButton": "Kod gelmedi mi? Tekrar gönder",
"signIn.phoneCodeMfa.subtitle": "Devam etmek için telefonunuza gönderilen doğrulama kodunu girin",
"signIn.phoneCodeMfa.title": "Telefonunuzu kontrol edin",
"signIn.resetPassword.formButtonPrimary": "Şifreyi Sıfırla",
"signIn.resetPassword.requiredMessage": "Güvenlik nedeniyle şifrenizi sıfırlamanız gerekmektedir.",
"signIn.resetPassword.successMessage": "Şifreniz başarıyla değiştirildi. Giriş yapılıyor, lütfen bekleyin.",
"signIn.resetPassword.title": "Yeni şifre belirleyin",
"signIn.resetPasswordMfa.detailsLabel": "Şifrenizi sıfırlamadan önce kimliğinizi doğrulamamız gerekiyor.",
"signIn.start.actionLink": "Kayıt ol",
"signIn.start.actionLink__use_email": "E-posta kullan",
"signIn.start.actionLink__use_email_username": "E-posta veya kullanıcı adı kullan",
"signIn.start.actionLink__use_passkey": "Geçiş anahtarı kullan",
"signIn.start.actionLink__use_phone": "Telefon kullan",
"signIn.start.actionLink__use_username": "Kullanıcı adı kullan",
"signIn.start.actionText": "Hesabınız yok mu?",
"signIn.start.subtitle": "Tekrar hoş geldiniz! Devam etmek için giriş yapın",
"signIn.start.title": "{{applicationName}} uygulamasına giriş yapın",
"signIn.totpMfa.formTitle": "Doğrulama kodu",
"signIn.totpMfa.subtitle": "Devam etmek için kimlik doğrulayıcı uygulamanız tarafından oluşturulan doğrulama kodunu girin",
"signIn.totpMfa.title": "İki adımlı doğrulama",
"signInEnterPasswordTitle": "Şifrenizi girin",
"signUp.continue.actionLink": "Giriş yap",
"signUp.continue.actionText": "Zaten bir hesabınız var mı?",
"signUp.continue.subtitle": "Devam etmek için eksik bilgileri doldurun.",
"signUp.continue.title": "Eksik alanları doldurun",
"signUp.emailCode.formSubtitle": "E-posta adresinize gönderilen doğrulama kodunu girin",
"signUp.emailCode.formTitle": "Doğrulama kodu",
"signUp.emailCode.resendButton": "Kod gelmedi mi? Tekrar gönder",
"signUp.emailCode.subtitle": "E-postanıza gönderilen doğrulama kodunu girin",
"signUp.emailCode.title": "E-postanızı doğrulayın",
"signUp.emailLink.formSubtitle": "E-posta adresinize gönderilen doğrulama bağlantısını kullanın",
"signUp.emailLink.formTitle": "Doğrulama bağlantısı",
"signUp.emailLink.loading.title": "Kayıt olunuyor...",
"signUp.emailLink.resendButton": "Bağlantı gelmedi mi? Tekrar gönder",
"signUp.emailLink.subtitle": "{{applicationName}} uygulamasına devam etmek için",
"signUp.emailLink.title": "E-postanızı doğrulayın",
"signUp.emailLink.verified.title": "Başarıyla kayıt olundu",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Devam etmek için yeni açılan sekmeye dönün",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Devam etmek için önceki sekmeye dönün",
"signUp.emailLink.verifiedSwitchTab.title": "E-posta başarıyla doğrulandı",
"signUp.phoneCode.formSubtitle": "Telefon numaranıza gönderilen doğrulama kodunu girin",
"signUp.phoneCode.formTitle": "Doğrulama kodu",
"signUp.phoneCode.resendButton": "Kod gelmedi mi? Tekrar gönder",
"signUp.phoneCode.subtitle": "Telefonunuza gönderilen doğrulama kodunu girin",
"signUp.phoneCode.title": "Telefonunuzu doğrulayın",
"signUp.start.actionLink": "Giriş yap",
"signUp.start.actionText": "Zaten bir hesabınız var mı?",
"signUp.start.subtitle": "Hoş geldiniz! Başlamak için lütfen bilgilerinizi doldurun.",
"signUp.start.title": "Hesabınızı oluşturun",
"socialButtonsBlockButton": "{{provider|titleize}} ile devam et",
"unstable__errors.captcha_invalid": "Güvenlik doğrulaması başarısız olduğu için kayıt işlemi tamamlanamadı. Lütfen sayfayı yenileyin veya destek ile iletişime geçin.",
"unstable__errors.captcha_unavailable": "Bot doğrulaması başarısız olduğu için kayıt işlemi tamamlanamadı. Lütfen sayfayı yenileyin veya destek ile iletişime geçin.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Bu e-posta adresi zaten kullanılıyor. Lütfen başka bir tane deneyin.",
"unstable__errors.form_identifier_exists__phone_number": "Bu telefon numarası zaten kullanılıyor. Lütfen başka bir tane deneyin.",
"unstable__errors.form_identifier_exists__username": "Bu kullanıcı adı zaten kullanılıyor. Lütfen başka bir tane deneyin.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "E-posta adresi geçerli bir formatta olmalıdır.",
"unstable__errors.form_param_format_invalid__phone_number": "Telefon numarası geçerli uluslararası formatta olmalıdır.",
"unstable__errors.form_param_max_length_exceeded__first_name": "Ad 256 karakteri geçmemelidir.",
"unstable__errors.form_param_max_length_exceeded__last_name": "Soyad 256 karakteri geçmemelidir.",
"unstable__errors.form_param_max_length_exceeded__name": "İsim 256 karakteri geçmemelidir.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Şifreniz yeterince güçlü değil.",
"unstable__errors.form_password_pwned": "Bu şifre bir veri ihlalinde ifşa edilmiş. Lütfen başka bir şifre deneyin.",
"unstable__errors.form_password_pwned__sign_in": "Bu şifre bir veri ihlalinde ifşa edilmiş. Lütfen şifrenizi sıfırlayın.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Şifreniz izin verilen maksimum bayt sayısını aştı, lütfen kısaltın veya bazı özel karakterleri kaldırın.",
"unstable__errors.form_password_validation_failed": "Hatalı şifre",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "Son kimliğinizi silemezsiniz.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Bu cihazda zaten kayıtlı bir geçiş anahtarı var.",
"unstable__errors.passkey_not_supported": "Bu cihaz geçiş anahtarlarını desteklemiyor.",
"unstable__errors.passkey_pa_not_supported": "Kayıt için platform kimlik doğrulayıcısı gerekiyor ancak cihaz bunu desteklemiyor.",
"unstable__errors.passkey_registration_cancelled": "Geçiş anahtarı kaydı iptal edildi veya zaman aşımına uğradı.",
"unstable__errors.passkey_retrieval_cancelled": "Geçiş anahtarı doğrulaması iptal edildi veya zaman aşımına uğradı.",
"unstable__errors.passwordComplexity.maximumLength": "{{length}} karakterden az",
"unstable__errors.passwordComplexity.minimumLength": "{{length}} veya daha fazla karakter",
"unstable__errors.passwordComplexity.requireLowercase": "bir küçük harf",
"unstable__errors.passwordComplexity.requireNumbers": "bir rakam",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "bir özel karakter",
"unstable__errors.passwordComplexity.requireUppercase": "bir büyük harf",
"unstable__errors.passwordComplexity.sentencePrefix": "Şifreniz şunları içermelidir",
"unstable__errors.phone_number_exists": "Bu telefon numarası zaten kullanılıyor. Lütfen başka bir tane deneyin.",
"unstable__errors.zxcvbn.couldBeStronger": "Şifreniz çalışıyor, ancak daha güçlü olabilir. Daha fazla karakter eklemeyi deneyin.",
"unstable__errors.zxcvbn.goodPassword": "Şifreniz tüm gerekli gereksinimleri karşılıyor.",
"unstable__errors.zxcvbn.notEnough": "Şifreniz yeterince güçlü değil.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Bazı harfleri büyük yapın, ancak hepsini değil.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Daha az yaygın kelimeler ekleyin.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Sizinle ilişkili yıllardan kaçının.",
"unstable__errors.zxcvbn.suggestions.capitalization": "İlk harften fazlasını büyük yapın.",
"unstable__errors.zxcvbn.suggestions.dates": "Sizinle ilişkili tarih ve yıllardan kaçının.",
"unstable__errors.zxcvbn.suggestions.l33t": "'@' yerine 'a' gibi tahmin edilebilir harf değişimlerinden kaçının.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Daha uzun klavye desenleri kullanın ve yazma yönünü birkaç kez değiştirin.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Semboller, rakamlar veya büyük harfler kullanmadan da güçlü şifreler oluşturabilirsiniz.",
"unstable__errors.zxcvbn.suggestions.pwned": "Bu şifreyi başka yerlerde de kullanıyorsanız, değiştirmeniz gerekir.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Son yıllardan kaçının.",
"unstable__errors.zxcvbn.suggestions.repeated": "Tekrarlanan kelime ve karakterlerden kaçının.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Yaygın kelimelerin ters yazımlarından kaçının.",
"unstable__errors.zxcvbn.suggestions.sequences": "Yaygın karakter dizilerinden kaçının.",
"unstable__errors.zxcvbn.suggestions.useWords": "Birden fazla kelime kullanın, ancak yaygın ifadelerden kaçının.",
"unstable__errors.zxcvbn.warnings.common": "Bu yaygın olarak kullanılan bir şifredir.",
"unstable__errors.zxcvbn.warnings.commonNames": "Yaygın adlar ve soyadlar kolayca tahmin edilebilir.",
"unstable__errors.zxcvbn.warnings.dates": "Tarihler kolayca tahmin edilebilir.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "\"abcabcabc\" gibi tekrar eden desenler kolayca tahmin edilebilir.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Kısa klavye desenleri kolayca tahmin edilebilir.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Tek başına adlar veya soyadlar kolayca tahmin edilebilir.",
"unstable__errors.zxcvbn.warnings.pwned": "Şifreniz internetteki bir veri ihlaliyle ifşa edilmiştir.",
"unstable__errors.zxcvbn.warnings.recentYears": "Son yıllar kolayca tahmin edilebilir.",
"unstable__errors.zxcvbn.warnings.sequences": "\"abc\" gibi yaygın karakter dizileri kolayca tahmin edilebilir.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "Bu, yaygın olarak kullanılan bir şifreye benziyor.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "\"aaa\" gibi tekrar eden karakterler kolayca tahmin edilebilir.",
"unstable__errors.zxcvbn.warnings.straightRow": "Klavye üzerindeki düz satırlar kolayca tahmin edilebilir.",
"unstable__errors.zxcvbn.warnings.topHundred": "Bu sık kullanılan bir şifredir.",
"unstable__errors.zxcvbn.warnings.topTen": "Bu çok sık kullanılan bir şifredir.",
"unstable__errors.zxcvbn.warnings.userInputs": "Kişisel veya sayfayla ilgili veriler içermemelidir.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Tek kelimeler kolayca tahmin edilebilir.",
"userButton.action__addAccount": "Hesap ekle",
"userButton.action__manageAccount": "Hesabı yönet",
"userButton.action__signOut": "Oturumu kapat",
"userButton.action__signOutAll": "Tüm hesaplardan çıkış yap",
"userProfile.backupCodePage.actionLabel__copied": "Kopyalandı!",
"userProfile.backupCodePage.actionLabel__copy": "Tümünü kopyala",
"userProfile.backupCodePage.actionLabel__download": ".txt indir",
"userProfile.backupCodePage.actionLabel__print": "Yazdır",
"userProfile.backupCodePage.infoText1": "Yedek kodlar bu hesap için etkinleştirilecektir.",
"userProfile.backupCodePage.infoText2": "Yedek kodları gizli tutun ve güvenli bir yerde saklayın. Kodların tehlikeye girdiğinden şüpheleniyorsanız, yeni kodlar oluşturabilirsiniz.",
"userProfile.backupCodePage.subtitle__codelist": "Güvenli bir şekilde saklayın ve gizli tutun.",
"userProfile.backupCodePage.successMessage": "Yedek kodlar artık etkin. Kimlik doğrulama cihazınıza erişiminizi kaybederseniz, bu kodlardan birini kullanarak hesabınıza giriş yapabilirsiniz. Her kod yalnızca bir kez kullanılabilir.",
"userProfile.backupCodePage.successSubtitle": "Kimlik doğrulama cihazınıza erişiminizi kaybederseniz, bu kodlardan birini kullanarak hesabınıza giriş yapabilirsiniz.",
"userProfile.backupCodePage.title": "Yedek kod doğrulaması ekle",
"userProfile.backupCodePage.title__codelist": "Yedek kodlar",
"userProfile.connectedAccountPage.formHint": "Hesabınızı bağlamak için bir sağlayıcı seçin.",
"userProfile.connectedAccountPage.formHint__noAccounts": "Kullanılabilir harici hesap sağlayıcısı yok.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} bu hesaptan kaldırılacak.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Bu bağlı hesabı artık kullanamayacaksınız ve ona bağlı özellikler çalışmayacaktır.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} hesabınızdan kaldırıldı.",
"userProfile.connectedAccountPage.removeResource.title": "Bağlı hesabı kaldır",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "Sağlayıcı hesabınıza eklendi",
"userProfile.connectedAccountPage.title": "Bağlı hesap ekle",
"userProfile.deletePage.actionDescription": "Devam etmek için aşağıya \"Hesabı sil\" yazın.",
"userProfile.deletePage.confirm": "Hesabı sil",
"userProfile.deletePage.messageLine1": "Hesabınızı silmek istediğinizden emin misiniz?",
"userProfile.deletePage.messageLine2": "Bu işlem kalıcıdır ve geri alınamaz.",
"userProfile.deletePage.title": "Hesabı sil",
"userProfile.emailAddressPage.emailCode.formHint": "Bu e-posta adresine bir doğrulama kodu içeren e-posta gönderilecektir.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "{{identifier}} adresine gönderilen doğrulama kodunu girin",
"userProfile.emailAddressPage.emailCode.formTitle": "Doğrulama kodu",
"userProfile.emailAddressPage.emailCode.resendButton": "Kod gelmedi mi? Yeniden gönder",
"userProfile.emailAddressPage.emailCode.successMessage": "{{identifier}} e-posta adresi hesabınıza eklendi.",
"userProfile.emailAddressPage.emailLink.formHint": "Bu e-posta adresine bir doğrulama bağlantısı içeren e-posta gönderilecektir.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "{{identifier}} adresine gönderilen e-postadaki doğrulama bağlantısına tıklayın",
"userProfile.emailAddressPage.emailLink.formTitle": "Doğrulama bağlantısı",
"userProfile.emailAddressPage.emailLink.resendButton": "Bağlantı gelmedi mi? Yeniden gönder",
"userProfile.emailAddressPage.emailLink.successMessage": "{{identifier}} e-posta adresi hesabınıza eklendi.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} bu hesaptan kaldırılacak.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Bu e-posta adresiyle artık giriş yapamayacaksınız.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} hesabınızdan kaldırıldı.",
"userProfile.emailAddressPage.removeResource.title": "E-posta adresini kaldır",
"userProfile.emailAddressPage.title": "E-posta adresi ekle",
"userProfile.emailAddressPage.verifyTitle": "E-posta adresini doğrula",
"userProfile.formButtonPrimary__add": "Ekle",
"userProfile.formButtonPrimary__continue": "Devam et",
"userProfile.formButtonPrimary__finish": "Bitir",
"userProfile.formButtonPrimary__remove": "Kaldır",
"userProfile.formButtonPrimary__save": "Kaydet",
"userProfile.formButtonReset": "İptal",
"userProfile.mfaPage.formHint": "Eklemek için bir yöntem seçin.",
"userProfile.mfaPage.title": "İki adımlı doğrulama ekle",
"userProfile.mfaPhoneCodePage.backButton": "Mevcut numarayı kullan",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Telefon numarası ekle",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} artık giriş yaparken doğrulama kodu almayacak.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Hesabınız daha az güvenli olabilir. Devam etmek istediğinizden emin misiniz?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "{{mfaPhoneCode}} için SMS kodu ile iki adımlı doğrulama kaldırıldı.",
"userProfile.mfaPhoneCodePage.removeResource.title": "İki adımlı doğrulamayı kaldır",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "SMS kodu ile iki adımlı doğrulama için mevcut bir telefon numarası seçin veya yeni bir tane ekleyin.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "SMS kodu ile iki adımlı doğrulama için kullanılabilir telefon numarası yok, lütfen yeni bir tane ekleyin.",
"userProfile.mfaPhoneCodePage.successMessage1": "Giriş yaparken, bu telefon numarasına gönderilen doğrulama kodunu girmeniz gerekecek.",
"userProfile.mfaPhoneCodePage.successMessage2": "Bu yedek kodları kaydedin ve güvenli bir yerde saklayın. Kimlik doğrulama cihazınıza erişiminizi kaybederseniz, bu kodları kullanarak giriş yapabilirsiniz.",
"userProfile.mfaPhoneCodePage.successTitle": "SMS kodu doğrulaması etkinleştirildi",
"userProfile.mfaPhoneCodePage.title": "SMS kodu doğrulaması ekle",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "QR kodu tara",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "QR kodu taranamıyor mu?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Kimlik doğrulayıcı uygulamanızda yeni bir giriş yöntemi oluşturun ve aşağıdaki QR kodunu tarayarak hesabınıza bağlayın.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Kimlik doğrulayıcınızda yeni bir giriş yöntemi oluşturun ve aşağıdaki Anahtarı girin.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Zaman tabanlı veya Tek seferlik şifrelerin etkin olduğundan emin olun, ardından hesabınızı bağlamayı tamamlayın.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Alternatif olarak, kimlik doğrulayıcınız TOTP URI'lerini destekliyorsa, tam URI'yi de kopyalayabilirsiniz.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Bu kimlik doğrulayıcıdan gelen doğrulama kodları artık girişte gerekli olmayacak.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Hesabınız daha az güvenli olabilir. Devam etmek istediğinizden emin misiniz?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "Kimlik doğrulayıcı uygulama ile iki adımlı doğrulama kaldırıldı.",
"userProfile.mfaTOTPPage.removeResource.title": "İki adımlı doğrulamayı kaldır",
"userProfile.mfaTOTPPage.successMessage": "İki adımlı doğrulama artık etkin. Giriş yaparken, bu kimlik doğrulayıcıdan gelen doğrulama kodunu girmeniz gerekecek.",
"userProfile.mfaTOTPPage.title": "Kimlik doğrulayıcı uygulama ekle",
"userProfile.mfaTOTPPage.verifySubtitle": "Kimlik doğrulayıcınız tarafından oluşturulan doğrulama kodunu girin",
"userProfile.mfaTOTPPage.verifyTitle": "Doğrulama kodu",
"userProfile.mobileButton__menu": "Menü",
"userProfile.navbar.account": "Profil",
"userProfile.navbar.description": "Hesap bilgilerinizi yönetin.",
"userProfile.navbar.security": "Güvenlik",
"userProfile.navbar.title": "Hesap",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} bu hesaptan kaldırılacak.",
"userProfile.passkeyScreen.removeResource.title": "Geçiş anahtarını kaldır",
"userProfile.passkeyScreen.subtitle__rename": "Geçiş anahtarını daha kolay bulmak için adını değiştirebilirsiniz.",
"userProfile.passkeyScreen.title__rename": "Geçiş Anahtarını Yeniden Adlandır",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Eski şifrenizi kullanmış olabilecek tüm diğer cihazlardan çıkış yapmanız önerilir.",
"userProfile.passwordPage.readonly": "Şifreniz şu anda düzenlenemez çünkü yalnızca kurumsal bağlantı üzerinden oturum açabilirsiniz.",
"userProfile.passwordPage.successMessage__set": "Şifreniz ayarlandı.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Tüm diğer cihazlardan çıkış yapıldı.",
"userProfile.passwordPage.successMessage__update": "Şifreniz güncellendi.",
"userProfile.passwordPage.title__set": "Şifre belirle",
"userProfile.passwordPage.title__update": "Şifreyi güncelle",
"userProfile.phoneNumberPage.infoText": "Bu telefon numarasına doğrulama kodu içeren bir kısa mesaj gönderilecektir. Mesaj ve veri ücretleri uygulanabilir.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} bu hesaptan kaldırılacak.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Bu telefon numarasıyla artık oturum açamazsınız.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} hesabınızdan kaldırıldı.",
"userProfile.phoneNumberPage.removeResource.title": "Telefon numarasını kaldır",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} hesabınıza eklendi.",
"userProfile.phoneNumberPage.title": "Telefon numarası ekle",
"userProfile.phoneNumberPage.verifySubtitle": "{{identifier}} numarasına gönderilen doğrulama kodunu girin",
"userProfile.phoneNumberPage.verifyTitle": "Telefon numarasını doğrula",
"userProfile.profilePage.fileDropAreaHint": "Önerilen boyut 1:1, en fazla 10MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Kaldır",
"userProfile.profilePage.imageFormSubtitle": "Yükle",
"userProfile.profilePage.imageFormTitle": "Profil resmi",
"userProfile.profilePage.readonly": "Profil bilgileriniz kurumsal bağlantı tarafından sağlanmıştır ve düzenlenemez.",
"userProfile.profilePage.successMessage": "Profiliniz güncellendi.",
"userProfile.profilePage.title": "Profili güncelle",
"userProfile.start.activeDevicesSection.destructiveAction": "Cihazdan çıkış yap",
"userProfile.start.activeDevicesSection.title": "Aktif cihazlar",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Tekrar dene",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Şimdi yetkilendir",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Kaldır",
"userProfile.start.connectedAccountsSection.primaryButton": "Hesap bağla",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "Gerekli izinler güncellendi ve sınırlı işlevsellik yaşıyor olabilirsiniz. Sorun yaşamamak için lütfen bu uygulamayı yeniden yetkilendirin.",
"userProfile.start.connectedAccountsSection.title": "Bağlı hesaplar",
"userProfile.start.dangerSection.deleteAccountButton": "Hesabı sil",
"userProfile.start.dangerSection.title": "Hesabı sil",
"userProfile.start.emailAddressesSection.destructiveAction": "E-postayı kaldır",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Birincil olarak ayarla",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Doğrulamayı tamamla",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Doğrula",
"userProfile.start.emailAddressesSection.primaryButton": "E-posta adresi ekle",
"userProfile.start.emailAddressesSection.title": "E-posta adresleri",
"userProfile.start.enterpriseAccountsSection.title": "Kurumsal hesaplar",
"userProfile.start.headerTitle__account": "Profil detayları",
"userProfile.start.headerTitle__security": "Güvenlik",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Yeniden oluştur",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Yedek kodlar",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Yeni bir güvenli yedek kod seti alın. Önceki yedek kodlar silinecek ve kullanılamayacak.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Yedek kodları yeniden oluştur",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Varsayılan olarak ayarla",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Kaldır",
"userProfile.start.mfaSection.primaryButton": "İki adımlı doğrulama ekle",
"userProfile.start.mfaSection.title": "İki adımlı doğrulama",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Kaldır",
"userProfile.start.mfaSection.totp.headerTitle": "Kimlik doğrulayıcı uygulama",
"userProfile.start.passkeysSection.menuAction__destructive": "Kaldır",
"userProfile.start.passkeysSection.menuAction__rename": "Yeniden adlandır",
"userProfile.start.passkeysSection.title": "Geçiş anahtarları",
"userProfile.start.passwordSection.primaryButton__setPassword": "Şifre belirle",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Şifreyi güncelle",
"userProfile.start.passwordSection.title": "Şifre",
"userProfile.start.phoneNumbersSection.destructiveAction": "Telefon numarasını kaldır",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Birincil olarak ayarla",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Doğrulamayı tamamla",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Telefon numarasını doğrula",
"userProfile.start.phoneNumbersSection.primaryButton": "Telefon numarası ekle",
"userProfile.start.phoneNumbersSection.title": "Telefon numaraları",
"userProfile.start.profileSection.primaryButton": "Profili güncelle",
"userProfile.start.profileSection.title": "Profil",
"userProfile.start.usernameSection.primaryButton__setUsername": "Kullanıcı adı belirle",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Kullanıcı adını güncelle",
"userProfile.start.usernameSection.title": "Kullanıcı adı",
"userProfile.start.web3WalletsSection.destructiveAction": "Cüzdanı kaldır",
"userProfile.start.web3WalletsSection.primaryButton": "Web3 cüzdanları",
"userProfile.start.web3WalletsSection.title": "Web3 cüzdanları",
"userProfile.usernamePage.successMessage": "Kullanıcı adınız güncellendi.",
"userProfile.usernamePage.title__set": "Kullanıcı adı belirle",
"userProfile.usernamePage.title__update": "Kullanıcı adını güncelle",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} bu hesaptan kaldırılacak.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Bu web3 cüzdanı ile artık oturum açamazsınız.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} hesabınızdan kaldırıldı.",
"userProfile.web3WalletPage.removeResource.title": "Web3 cüzdanını kaldır",
"userProfile.web3WalletPage.subtitle__availableWallets": "Hesabınıza bağlamak için bir web3 cüzdanı seçin.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Kullanılabilir web3 cüzdanı yok.",
"userProfile.web3WalletPage.successMessage": "Cüzdan hesabınıza eklendi.",
"userProfile.web3WalletPage.title": "Web3 cüzdanı ekle"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Oturuma Devam Et",
"clerkAuth.loginSuccess.desc": "{{greeting}}, size hizmet vermeye devam etmek harika. Kaldığımız yerden devam edelim.",
"clerkAuth.loginSuccess.title": "Tekrar hoş geldiniz, {{nickName}}",
"error.backHome": "Ana Sayfaya Dön",
"error.desc": "Daha sonra tekrar deneyin ya da bilinen dünyaya geri dönün.",
"error.retry": "Yeniden Yükle",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Üzgünüz, bu anahtar için kota sınırına ulaşıldı. Lütfen hesabınızın bakiyesini kontrol edin veya kotayı artırdıktan sonra tekrar deneyin.",
"response.InvalidAccessCode": "Geçersiz veya boş erişim kodu. Lütfen doğru erişim kodunu girin veya özel bir API Anahtarı ekleyin.",
"response.InvalidBedrockCredentials": "Bedrock kimlik doğrulaması başarısız oldu. Lütfen AccessKeyId/SecretAccessKey bilgilerinizi kontrol edip tekrar deneyin.",
"response.InvalidClerkUser": "Üzgünüz, şu anda giriş yapmadınız. Devam etmek için lütfen giriş yapın veya hesap oluşturun.",
"response.InvalidComfyUIArgs": "Geçersiz ComfyUI yapılandırması. Lütfen ayarları kontrol edip tekrar deneyin.",
"response.InvalidGithubToken": "GitHub Kişisel Erişim Anahtarı hatalı veya boş. Lütfen kontrol edip tekrar deneyin.",
"response.InvalidOllamaArgs": "Geçersiz Ollama yapılandırması. Lütfen ayarları kontrol edip tekrar deneyin.",

View file

@ -1,545 +0,0 @@
{
"backButton": "Quay lại",
"badge__default": "Mặc định",
"badge__otherImpersonatorDevice": "Thiết bị giả mạo khác",
"badge__primary": "Chính",
"badge__requiresAction": "Cần hành động",
"badge__thisDevice": "Thiết bị này",
"badge__unverified": "Chưa xác minh",
"badge__userDevice": "Thiết bị người dùng",
"badge__you": "Bạn",
"createOrganization.formButtonSubmit": "Tạo tổ chức",
"createOrganization.invitePage.formButtonReset": "Bỏ qua",
"createOrganization.title": "Tạo tổ chức",
"dates.lastDay": "Hôm qua lúc {{ date | timeString('vi-VN') }}",
"dates.next6Days": "{{ date | weekday('vi-VN','long') }} lúc {{ date | timeString('vi-VN') }}",
"dates.nextDay": "Ngày mai lúc {{ date | timeString('vi-VN') }}",
"dates.numeric": "{{ date | numeric('vi-VN') }}",
"dates.previous6Days": "{{ date | weekday('vi-VN','long') }} tuần trước lúc {{ date | timeString('vi-VN') }}",
"dates.sameDay": "Hôm nay lúc {{ date | timeString('vi-VN') }}",
"dividerText": "hoặc",
"footerActionLink__useAnotherMethod": "Sử dụng phương thức khác",
"footerPageLink__help": "Trợ giúp",
"footerPageLink__privacy": "Quyền riêng tư",
"footerPageLink__terms": "Điều khoản",
"formButtonPrimary": "Tiếp tục",
"formButtonPrimary__verify": "Xác minh",
"formFieldAction__forgotPassword": "Quên mật khẩu?",
"formFieldError__matchingPasswords": "Mật khẩu khớp.",
"formFieldError__notMatchingPasswords": "Mật khẩu không khớp.",
"formFieldError__verificationLinkExpired": "Liên kết xác minh đã hết hạn. Vui lòng yêu cầu liên kết mới.",
"formFieldHintText__optional": "Không bắt buộc",
"formFieldHintText__slug": "Slug là một ID dễ đọc, phải là duy nhất. Thường được sử dụng trong URL.",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Xóa tài khoản",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "vidu@email.com, vidu2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "to-chuc-cua-toi",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "Bật lời mời tự động cho miền này",
"formFieldLabel__backupCode": "Mã dự phòng",
"formFieldLabel__confirmDeletion": "Xác nhận",
"formFieldLabel__confirmPassword": "Xác nhận mật khẩu",
"formFieldLabel__currentPassword": "Mật khẩu hiện tại",
"formFieldLabel__emailAddress": "Địa chỉ email",
"formFieldLabel__emailAddress_username": "Email hoặc tên người dùng",
"formFieldLabel__emailAddresses": "Địa chỉ email",
"formFieldLabel__firstName": "Tên",
"formFieldLabel__lastName": "Họ",
"formFieldLabel__newPassword": "Mật khẩu mới",
"formFieldLabel__organizationDomain": "Miền",
"formFieldLabel__organizationDomainDeletePending": "Xóa lời mời và đề xuất đang chờ",
"formFieldLabel__organizationDomainEmailAddress": "Email xác minh",
"formFieldLabel__organizationDomainEmailAddressDescription": "Nhập địa chỉ email thuộc miền này để nhận mã xác minh và xác thực miền.",
"formFieldLabel__organizationName": "Tên",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "Tên khóa truy cập",
"formFieldLabel__password": "Mật khẩu",
"formFieldLabel__phoneNumber": "Số điện thoại",
"formFieldLabel__role": "Vai trò",
"formFieldLabel__signOutOfOtherSessions": "Đăng xuất khỏi tất cả thiết bị khác",
"formFieldLabel__username": "Tên người dùng",
"impersonationFab.action__signOut": "Đăng xuất",
"impersonationFab.title": "Đăng nhập với tư cách {{identifier}}",
"locale": "vi-VN",
"maintenanceMode": "Chúng tôi đang bảo trì hệ thống, vui lòng chờ trong vài phút.",
"membershipRole__admin": "Quản trị viên",
"membershipRole__basicMember": "Thành viên",
"membershipRole__guestMember": "Khách",
"organizationList.action__createOrganization": "Tạo tổ chức",
"organizationList.action__invitationAccept": "Tham gia",
"organizationList.action__suggestionsAccept": "Yêu cầu tham gia",
"organizationList.createOrganization": "Tạo tổ chức",
"organizationList.invitationAcceptedLabel": "Đã tham gia",
"organizationList.subtitle": "để tiếp tục đến {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "Đang chờ phê duyệt",
"organizationList.title": "Chọn tài khoản",
"organizationList.titleWithoutPersonal": "Chọn tổ chức",
"organizationProfile.badge__automaticInvitation": "Lời mời tự động",
"organizationProfile.badge__automaticSuggestion": "Đề xuất tự động",
"organizationProfile.badge__manualInvitation": "Không tự động tham gia",
"organizationProfile.badge__unverified": "Chưa xác minh",
"organizationProfile.createDomainPage.subtitle": "Thêm miền để xác minh. Người dùng có email thuộc miền này có thể tự động tham gia hoặc yêu cầu tham gia tổ chức.",
"organizationProfile.createDomainPage.title": "Thêm miền",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "Không thể gửi lời mời. Đã có lời mời đang chờ cho các địa chỉ email sau: {{email_addresses}}.",
"organizationProfile.invitePage.formButtonPrimary__continue": "Gửi lời mời",
"organizationProfile.invitePage.selectDropdown__role": "Chọn vai trò",
"organizationProfile.invitePage.subtitle": "Nhập hoặc dán một hoặc nhiều địa chỉ email, cách nhau bằng dấu cách hoặc dấu phẩy.",
"organizationProfile.invitePage.successMessage": "Đã gửi lời mời thành công",
"organizationProfile.invitePage.title": "Mời thành viên mới",
"organizationProfile.membersPage.action__invite": "Mời",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Xóa thành viên",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Đã tham gia",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Vai trò",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Người dùng",
"organizationProfile.membersPage.detailsTitle__emptyRow": "Không có thành viên để hiển thị",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "Mời người dùng bằng cách kết nối miền email với tổ chức của bạn. Bất kỳ ai đăng ký với miền email phù hợp sẽ có thể tham gia tổ chức bất cứ lúc nào.",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Lời mời tự động",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Quản lý miền đã xác minh",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Không có lời mời để hiển thị",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Thu hồi lời mời",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Đã mời",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Người dùng đăng ký với miền email phù hợp sẽ thấy đề xuất yêu cầu tham gia tổ chức của bạn.",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Đề xuất tự động",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Quản lý miền đã xác minh",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Phê duyệt",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Từ chối",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Yêu cầu truy cập",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Không có yêu cầu để hiển thị",
"organizationProfile.membersPage.start.headerTitle__invitations": "Lời mời",
"organizationProfile.membersPage.start.headerTitle__members": "Thành viên",
"organizationProfile.membersPage.start.headerTitle__requests": "Yêu cầu",
"organizationProfile.navbar.description": "Quản lý tổ chức của bạn.",
"organizationProfile.navbar.general": "Chung",
"organizationProfile.navbar.members": "Thành viên",
"organizationProfile.navbar.title": "Tổ chức",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Nhập \"{{organizationName}}\" bên dưới để tiếp tục.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Bạn có chắc chắn muốn xóa tổ chức này không?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Hành động này là vĩnh viễn và không thể hoàn tác.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Bạn đã xóa tổ chức.",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Xóa tổ chức",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Nhập \"{{organizationName}}\" bên dưới để tiếp tục.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Bạn có chắc chắn muốn rời khỏi tổ chức này không? Bạn sẽ mất quyền truy cập vào tổ chức và các ứng dụng của nó.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Hành động này là vĩnh viễn và không thể hoàn tác.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Bạn đã rời khỏi tổ chức.",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Rời khỏi tổ chức",
"organizationProfile.profilePage.dangerSection.title": "Nguy hiểm",
"organizationProfile.profilePage.domainSection.menuAction__manage": "Quản lý",
"organizationProfile.profilePage.domainSection.menuAction__remove": "Xóa",
"organizationProfile.profilePage.domainSection.menuAction__verify": "Xác minh",
"organizationProfile.profilePage.domainSection.primaryButton": "Thêm tên miền",
"organizationProfile.profilePage.domainSection.subtitle": "Cho phép người dùng tự động tham gia tổ chức hoặc yêu cầu tham gia dựa trên tên miền email đã được xác minh.",
"organizationProfile.profilePage.domainSection.title": "Tên miền đã xác minh",
"organizationProfile.profilePage.successMessage": "Tổ chức đã được cập nhật.",
"organizationProfile.profilePage.title": "Cập nhật hồ sơ",
"organizationProfile.removeDomainPage.messageLine1": "Tên miền email {{domain}} sẽ bị xóa.",
"organizationProfile.removeDomainPage.messageLine2": "Người dùng sẽ không thể tự động tham gia tổ chức sau đó.",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} đã bị xóa.",
"organizationProfile.removeDomainPage.title": "Xóa tên miền",
"organizationProfile.start.headerTitle__general": "Chung",
"organizationProfile.start.headerTitle__members": "Thành viên",
"organizationProfile.start.profileSection.primaryButton": "Cập nhật hồ sơ",
"organizationProfile.start.profileSection.title": "Hồ sơ tổ chức",
"organizationProfile.start.profileSection.uploadAction__title": "Logo",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Việc xóa tên miền này sẽ ảnh hưởng đến người dùng được mời.",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Xóa tên miền",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Xóa tên miền này khỏi danh sách tên miền đã xác minh của bạn",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Xóa tên miền",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Người dùng sẽ được mời tự động tham gia tổ chức khi đăng ký và có thể tham gia bất cứ lúc nào.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Lời mời tự động",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "Người dùng sẽ nhận được đề xuất yêu cầu tham gia, nhưng phải được quản trị viên phê duyệt trước khi có thể tham gia tổ chức.",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Đề xuất tự động",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Việc thay đổi chế độ ghi danh chỉ ảnh hưởng đến người dùng mới.",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Lời mời đang chờ gửi đến người dùng: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Đề xuất đang chờ gửi đến người dùng: {{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Người dùng chỉ có thể được mời tham gia tổ chức một cách thủ công.",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Không ghi danh tự động",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Chọn cách người dùng từ tên miền này có thể tham gia tổ chức.",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Nguy hiểm",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Tùy chọn ghi danh",
"organizationProfile.verifiedDomainPage.subtitle": "Tên miền {{domain}} đã được xác minh. Tiếp tục bằng cách chọn chế độ ghi danh.",
"organizationProfile.verifiedDomainPage.title": "Cập nhật {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "Nhập mã xác minh được gửi đến địa chỉ email của bạn",
"organizationProfile.verifyDomainPage.formTitle": "Mã xác minh",
"organizationProfile.verifyDomainPage.resendButton": "Không nhận được mã? Gửi lại",
"organizationProfile.verifyDomainPage.subtitle": "Tên miền {{domainName}} cần được xác minh qua email.",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "Mã xác minh đã được gửi đến {{emailAddress}}. Nhập mã để tiếp tục.",
"organizationProfile.verifyDomainPage.title": "Xác minh tên miền",
"organizationSwitcher.action__createOrganization": "Tạo tổ chức",
"organizationSwitcher.action__invitationAccept": "Tham gia",
"organizationSwitcher.action__manageOrganization": "Quản lý",
"organizationSwitcher.action__suggestionsAccept": "Yêu cầu tham gia",
"organizationSwitcher.notSelected": "Chưa chọn tổ chức nào",
"organizationSwitcher.personalWorkspace": "Tài khoản cá nhân",
"organizationSwitcher.suggestionsAcceptedLabel": "Đang chờ phê duyệt",
"paginationButton__next": "Tiếp",
"paginationButton__previous": "Trước",
"paginationRowText__displaying": "Hiển thị",
"paginationRowText__of": "trên",
"signIn.accountSwitcher.action__addAccount": "Thêm tài khoản",
"signIn.accountSwitcher.action__signOutAll": "Đăng xuất khỏi tất cả tài khoản",
"signIn.accountSwitcher.subtitle": "Chọn tài khoản bạn muốn tiếp tục.",
"signIn.accountSwitcher.title": "Chọn tài khoản",
"signIn.alternativeMethods.actionLink": "Cần trợ giúp",
"signIn.alternativeMethods.actionText": "Không có phương thức nào trong số này?",
"signIn.alternativeMethods.blockButton__backupCode": "Sử dụng mã dự phòng",
"signIn.alternativeMethods.blockButton__emailCode": "Gửi mã đến {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "Gửi liên kết đến {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "Đăng nhập bằng khóa bảo mật",
"signIn.alternativeMethods.blockButton__password": "Đăng nhập bằng mật khẩu",
"signIn.alternativeMethods.blockButton__phoneCode": "Gửi mã SMS đến {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "Sử dụng ứng dụng xác thực",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Gửi email hỗ trợ",
"signIn.alternativeMethods.getHelp.content": "Nếu bạn gặp khó khăn khi đăng nhập vào tài khoản, hãy gửi email cho chúng tôi và chúng tôi sẽ hỗ trợ bạn khôi phục quyền truy cập sớm nhất có thể.",
"signIn.alternativeMethods.getHelp.title": "Cần trợ giúp",
"signIn.alternativeMethods.subtitle": "Gặp sự cố? Bạn có thể sử dụng bất kỳ phương thức nào sau đây để đăng nhập.",
"signIn.alternativeMethods.title": "Sử dụng phương thức khác",
"signIn.backupCodeMfa.subtitle": "Mã dự phòng là mã bạn đã nhận được khi thiết lập xác thực hai bước.",
"signIn.backupCodeMfa.title": "Nhập mã dự phòng",
"signIn.emailCode.formTitle": "Mã xác minh",
"signIn.emailCode.resendButton": "Không nhận được mã? Gửi lại",
"signIn.emailCode.subtitle": "để tiếp tục đến {{applicationName}}",
"signIn.emailCode.title": "Kiểm tra email của bạn",
"signIn.emailLink.expired.subtitle": "Quay lại tab gốc để tiếp tục.",
"signIn.emailLink.expired.title": "Liên kết xác minh đã hết hạn",
"signIn.emailLink.failed.subtitle": "Quay lại tab gốc để tiếp tục.",
"signIn.emailLink.failed.title": "Liên kết xác minh không hợp lệ",
"signIn.emailLink.formSubtitle": "Sử dụng liên kết xác minh được gửi đến email của bạn",
"signIn.emailLink.formTitle": "Liên kết xác minh",
"signIn.emailLink.loading.subtitle": "Bạn sẽ được chuyển hướng ngay",
"signIn.emailLink.loading.title": "Đang đăng nhập...",
"signIn.emailLink.resendButton": "Không nhận được liên kết? Gửi lại",
"signIn.emailLink.subtitle": "để tiếp tục đến {{applicationName}}",
"signIn.emailLink.title": "Kiểm tra email của bạn",
"signIn.emailLink.unusedTab.title": "Bạn có thể đóng tab này",
"signIn.emailLink.verified.subtitle": "Bạn sẽ được chuyển hướng ngay",
"signIn.emailLink.verified.title": "Đăng nhập thành công",
"signIn.emailLink.verifiedSwitchTab.subtitle": "Quay lại tab gốc để tiếp tục",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Quay lại tab mới mở để tiếp tục",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Đã đăng nhập ở tab khác",
"signIn.forgotPassword.formTitle": "Mã đặt lại mật khẩu",
"signIn.forgotPassword.resendButton": "Không nhận được mã? Gửi lại",
"signIn.forgotPassword.subtitle": "để đặt lại mật khẩu của bạn",
"signIn.forgotPassword.subtitle_email": "Trước tiên, nhập mã được gửi đến email của bạn",
"signIn.forgotPassword.subtitle_phone": "Trước tiên, nhập mã được gửi đến điện thoại của bạn",
"signIn.forgotPassword.title": "Đặt lại mật khẩu",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Đặt lại mật khẩu",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Hoặc, đăng nhập bằng phương thức khác",
"signIn.forgotPasswordAlternativeMethods.title": "Quên mật khẩu?",
"signIn.noAvailableMethods.message": "Không thể tiếp tục đăng nhập. Không có yếu tố xác thực nào khả dụng.",
"signIn.noAvailableMethods.subtitle": "Đã xảy ra lỗi",
"signIn.noAvailableMethods.title": "Không thể đăng nhập",
"signIn.passkey.subtitle": "Sử dụng khóa bảo mật xác nhận bạn là chủ tài khoản. Thiết bị của bạn có thể yêu cầu vân tay, khuôn mặt hoặc mã khóa màn hình.",
"signIn.passkey.title": "Sử dụng khóa bảo mật",
"signIn.password.actionLink": "Sử dụng phương thức khác",
"signIn.password.subtitle": "Nhập mật khẩu liên kết với tài khoản của bạn",
"signIn.password.title": "Nhập mật khẩu",
"signIn.passwordPwned.title": "Mật khẩu đã bị lộ",
"signIn.phoneCode.formTitle": "Mã xác minh",
"signIn.phoneCode.resendButton": "Không nhận được mã? Gửi lại",
"signIn.phoneCode.subtitle": "để tiếp tục đến {{applicationName}}",
"signIn.phoneCode.title": "Kiểm tra điện thoại của bạn",
"signIn.phoneCodeMfa.formTitle": "Mã xác minh",
"signIn.phoneCodeMfa.resendButton": "Không nhận được mã? Gửi lại",
"signIn.phoneCodeMfa.subtitle": "Để tiếp tục, vui lòng nhập mã xác minh được gửi đến điện thoại của bạn",
"signIn.phoneCodeMfa.title": "Kiểm tra điện thoại của bạn",
"signIn.resetPassword.formButtonPrimary": "Đặt lại mật khẩu",
"signIn.resetPassword.requiredMessage": "Vì lý do bảo mật, bạn cần đặt lại mật khẩu.",
"signIn.resetPassword.successMessage": "Mật khẩu của bạn đã được thay đổi thành công. Đang đăng nhập, vui lòng chờ giây lát.",
"signIn.resetPassword.title": "Thiết lập mật khẩu mới",
"signIn.resetPasswordMfa.detailsLabel": "Chúng tôi cần xác minh danh tính của bạn trước khi đặt lại mật khẩu.",
"signIn.start.actionLink": "Đăng ký",
"signIn.start.actionLink__use_email": "Sử dụng email",
"signIn.start.actionLink__use_email_username": "Sử dụng email hoặc tên người dùng",
"signIn.start.actionLink__use_passkey": "Sử dụng khóa bảo mật",
"signIn.start.actionLink__use_phone": "Sử dụng số điện thoại",
"signIn.start.actionLink__use_username": "Sử dụng tên người dùng",
"signIn.start.actionText": "Chưa có tài khoản?",
"signIn.start.subtitle": "Chào mừng trở lại! Vui lòng đăng nhập để tiếp tục",
"signIn.start.title": "Đăng nhập vào {{applicationName}}",
"signIn.totpMfa.formTitle": "Mã xác minh",
"signIn.totpMfa.subtitle": "Để tiếp tục, vui lòng nhập mã xác minh được tạo bởi ứng dụng xác thực của bạn",
"signIn.totpMfa.title": "Xác minh hai bước",
"signInEnterPasswordTitle": "Nhập mật khẩu của bạn",
"signUp.continue.actionLink": "Đăng nhập",
"signUp.continue.actionText": "Đã có tài khoản?",
"signUp.continue.subtitle": "Vui lòng điền các thông tin còn thiếu để tiếp tục.",
"signUp.continue.title": "Điền thông tin còn thiếu",
"signUp.emailCode.formSubtitle": "Nhập mã xác minh được gửi đến địa chỉ email của bạn",
"signUp.emailCode.formTitle": "Mã xác minh",
"signUp.emailCode.resendButton": "Không nhận được mã? Gửi lại",
"signUp.emailCode.subtitle": "Nhập mã xác minh được gửi đến email của bạn",
"signUp.emailCode.title": "Xác minh email của bạn",
"signUp.emailLink.formSubtitle": "Sử dụng liên kết xác minh được gửi đến địa chỉ email của bạn",
"signUp.emailLink.formTitle": "Liên kết xác minh",
"signUp.emailLink.loading.title": "Đang đăng ký...",
"signUp.emailLink.resendButton": "Không nhận được liên kết? Gửi lại",
"signUp.emailLink.subtitle": "để tiếp tục đến {{applicationName}}",
"signUp.emailLink.title": "Xác minh email của bạn",
"signUp.emailLink.verified.title": "Đăng ký thành công",
"signUp.emailLink.verifiedSwitchTab.subtitle": "Quay lại tab mới mở để tiếp tục",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Quay lại tab trước để tiếp tục",
"signUp.emailLink.verifiedSwitchTab.title": "Xác minh email thành công",
"signUp.phoneCode.formSubtitle": "Nhập mã xác minh được gửi đến số điện thoại của bạn",
"signUp.phoneCode.formTitle": "Mã xác minh",
"signUp.phoneCode.resendButton": "Không nhận được mã? Gửi lại",
"signUp.phoneCode.subtitle": "Nhập mã xác minh được gửi đến điện thoại của bạn",
"signUp.phoneCode.title": "Xác minh số điện thoại",
"signUp.start.actionLink": "Đăng nhập",
"signUp.start.actionText": "Đã có tài khoản?",
"signUp.start.subtitle": "Chào mừng! Vui lòng điền thông tin để bắt đầu.",
"signUp.start.title": "Tạo tài khoản của bạn",
"socialButtonsBlockButton": "Tiếp tục với {{provider|titleize}}",
"unstable__errors.captcha_invalid": "Đăng ký không thành công do xác minh bảo mật thất bại. Vui lòng làm mới trang để thử lại hoặc liên hệ bộ phận hỗ trợ để được trợ giúp.",
"unstable__errors.captcha_unavailable": "Đăng ký không thành công do xác minh bot thất bại. Vui lòng làm mới trang để thử lại hoặc liên hệ bộ phận hỗ trợ để được trợ giúp.",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "Địa chỉ email này đã được sử dụng. Vui lòng thử địa chỉ khác.",
"unstable__errors.form_identifier_exists__phone_number": "Số điện thoại này đã được sử dụng. Vui lòng thử số khác.",
"unstable__errors.form_identifier_exists__username": "Tên người dùng này đã được sử dụng. Vui lòng thử tên khác.",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "Địa chỉ email phải là một địa chỉ hợp lệ.",
"unstable__errors.form_param_format_invalid__phone_number": "Số điện thoại phải ở định dạng quốc tế hợp lệ.",
"unstable__errors.form_param_max_length_exceeded__first_name": "Tên không được vượt quá 256 ký tự.",
"unstable__errors.form_param_max_length_exceeded__last_name": "Họ không được vượt quá 256 ký tự.",
"unstable__errors.form_param_max_length_exceeded__name": "Tên không được vượt quá 256 ký tự.",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "Mật khẩu của bạn chưa đủ mạnh.",
"unstable__errors.form_password_pwned": "Mật khẩu này đã bị lộ trong một vụ rò rỉ dữ liệu và không thể sử dụng. Vui lòng thử mật khẩu khác.",
"unstable__errors.form_password_pwned__sign_in": "Mật khẩu này đã bị lộ trong một vụ rò rỉ dữ liệu và không thể sử dụng. Vui lòng đặt lại mật khẩu của bạn.",
"unstable__errors.form_password_size_in_bytes_exceeded": "Mật khẩu của bạn vượt quá số byte cho phép, vui lòng rút ngắn hoặc loại bỏ một số ký tự đặc biệt.",
"unstable__errors.form_password_validation_failed": "Mật khẩu không chính xác",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "Bạn không thể xóa danh tính cuối cùng của mình.",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "Khóa bảo mật đã được đăng ký với thiết bị này.",
"unstable__errors.passkey_not_supported": "Thiết bị này không hỗ trợ khóa bảo mật.",
"unstable__errors.passkey_pa_not_supported": "Đăng ký yêu cầu trình xác thực nền tảng nhưng thiết bị không hỗ trợ.",
"unstable__errors.passkey_registration_cancelled": "Đăng ký khóa bảo mật đã bị hủy hoặc hết thời gian.",
"unstable__errors.passkey_retrieval_cancelled": "Xác minh khóa bảo mật đã bị hủy hoặc hết thời gian.",
"unstable__errors.passwordComplexity.maximumLength": "ít hơn {{length}} ký tự",
"unstable__errors.passwordComplexity.minimumLength": "từ {{length}} ký tự trở lên",
"unstable__errors.passwordComplexity.requireLowercase": "một chữ thường",
"unstable__errors.passwordComplexity.requireNumbers": "một chữ số",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "một ký tự đặc biệt",
"unstable__errors.passwordComplexity.requireUppercase": "một chữ hoa",
"unstable__errors.passwordComplexity.sentencePrefix": "Mật khẩu của bạn phải chứa",
"unstable__errors.phone_number_exists": "Số điện thoại này đã được sử dụng. Vui lòng thử số khác.",
"unstable__errors.zxcvbn.couldBeStronger": "Mật khẩu của bạn hoạt động, nhưng có thể mạnh hơn. Hãy thử thêm nhiều ký tự hơn.",
"unstable__errors.zxcvbn.goodPassword": "Mật khẩu của bạn đáp ứng tất cả yêu cầu cần thiết.",
"unstable__errors.zxcvbn.notEnough": "Mật khẩu của bạn chưa đủ mạnh.",
"unstable__errors.zxcvbn.suggestions.allUppercase": "Chỉ viết hoa một số chữ cái, không phải tất cả.",
"unstable__errors.zxcvbn.suggestions.anotherWord": "Thêm các từ ít phổ biến hơn.",
"unstable__errors.zxcvbn.suggestions.associatedYears": "Tránh các năm liên quan đến bạn.",
"unstable__errors.zxcvbn.suggestions.capitalization": "Viết hoa nhiều hơn chữ cái đầu tiên.",
"unstable__errors.zxcvbn.suggestions.dates": "Tránh các ngày và năm liên quan đến bạn.",
"unstable__errors.zxcvbn.suggestions.l33t": "Tránh thay thế chữ cái có thể đoán được như '@' cho 'a'.",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Sử dụng mẫu bàn phím dài hơn và thay đổi hướng gõ nhiều lần.",
"unstable__errors.zxcvbn.suggestions.noNeed": "Bạn có thể tạo mật khẩu mạnh mà không cần dùng ký hiệu, số hoặc chữ hoa.",
"unstable__errors.zxcvbn.suggestions.pwned": "Nếu bạn sử dụng mật khẩu này ở nơi khác, bạn nên thay đổi nó.",
"unstable__errors.zxcvbn.suggestions.recentYears": "Tránh các năm gần đây.",
"unstable__errors.zxcvbn.suggestions.repeated": "Tránh lặp lại từ và ký tự.",
"unstable__errors.zxcvbn.suggestions.reverseWords": "Tránh viết ngược các từ phổ biến.",
"unstable__errors.zxcvbn.suggestions.sequences": "Tránh các chuỗi ký tự phổ biến.",
"unstable__errors.zxcvbn.suggestions.useWords": "Sử dụng nhiều từ, nhưng tránh cụm từ phổ biến.",
"unstable__errors.zxcvbn.warnings.common": "Đây là mật khẩu thường được sử dụng.",
"unstable__errors.zxcvbn.warnings.commonNames": "Tên và họ phổ biến rất dễ đoán.",
"unstable__errors.zxcvbn.warnings.dates": "Ngày tháng rất dễ đoán.",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "Mẫu ký tự lặp lại như \"abcabcabc\" rất dễ đoán.",
"unstable__errors.zxcvbn.warnings.keyPattern": "Mẫu bàn phím ngắn rất dễ đoán.",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Tên hoặc họ đơn lẻ rất dễ đoán.",
"unstable__errors.zxcvbn.warnings.pwned": "Mật khẩu của bạn đã bị lộ trong một vụ rò rỉ dữ liệu trên Internet.",
"unstable__errors.zxcvbn.warnings.recentYears": "Các năm gần đây rất dễ đoán.",
"unstable__errors.zxcvbn.warnings.sequences": "Chuỗi ký tự phổ biến như \"abc\" rất dễ đoán.",
"unstable__errors.zxcvbn.warnings.similarToCommon": "Mật khẩu này tương tự với mật khẩu thường được sử dụng.",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "Ký tự lặp lại như \"aaa\" rất dễ đoán.",
"unstable__errors.zxcvbn.warnings.straightRow": "Hàng phím thẳng trên bàn phím rất dễ đoán.",
"unstable__errors.zxcvbn.warnings.topHundred": "Đây là một trong những mật khẩu được sử dụng nhiều nhất.",
"unstable__errors.zxcvbn.warnings.topTen": "Đây là một trong những mật khẩu được sử dụng nhiều nhất.",
"unstable__errors.zxcvbn.warnings.userInputs": "Không nên chứa thông tin cá nhân hoặc liên quan đến trang.",
"unstable__errors.zxcvbn.warnings.wordByItself": "Từ đơn rất dễ đoán.",
"userButton.action__addAccount": "Thêm tài khoản",
"userButton.action__manageAccount": "Quản lý tài khoản",
"userButton.action__signOut": "Đăng xuất",
"userButton.action__signOutAll": "Đăng xuất khỏi tất cả tài khoản",
"userProfile.backupCodePage.actionLabel__copied": "Đã sao chép!",
"userProfile.backupCodePage.actionLabel__copy": "Sao chép tất cả",
"userProfile.backupCodePage.actionLabel__download": "Tải xuống .txt",
"userProfile.backupCodePage.actionLabel__print": "In",
"userProfile.backupCodePage.infoText1": "Mã dự phòng sẽ được kích hoạt cho tài khoản này.",
"userProfile.backupCodePage.infoText2": "Giữ bí mật và lưu trữ mã dự phòng một cách an toàn. Bạn có thể tạo lại mã nếu nghi ngờ chúng đã bị lộ.",
"userProfile.backupCodePage.subtitle__codelist": "Lưu trữ an toàn và giữ bí mật.",
"userProfile.backupCodePage.successMessage": "Mã dự phòng đã được kích hoạt. Bạn có thể sử dụng một trong số chúng để đăng nhập nếu mất quyền truy cập vào thiết bị xác thực. Mỗi mã chỉ sử dụng được một lần.",
"userProfile.backupCodePage.successSubtitle": "Bạn có thể sử dụng một trong số chúng để đăng nhập nếu mất quyền truy cập vào thiết bị xác thực.",
"userProfile.backupCodePage.title": "Thêm xác minh bằng mã dự phòng",
"userProfile.backupCodePage.title__codelist": "Mã dự phòng",
"userProfile.connectedAccountPage.formHint": "Chọn nhà cung cấp để kết nối tài khoản của bạn.",
"userProfile.connectedAccountPage.formHint__noAccounts": "Không có nhà cung cấp tài khoản bên ngoài nào khả dụng.",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} sẽ bị xóa khỏi tài khoản này.",
"userProfile.connectedAccountPage.removeResource.messageLine2": "Bạn sẽ không thể sử dụng tài khoản được kết nối này và các tính năng phụ thuộc sẽ không hoạt động.",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} đã được xóa khỏi tài khoản của bạn.",
"userProfile.connectedAccountPage.removeResource.title": "Xóa tài khoản được kết nối",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "Nhà cung cấp đã được thêm vào tài khoản của bạn",
"userProfile.connectedAccountPage.title": "Thêm tài khoản được kết nối",
"userProfile.deletePage.actionDescription": "Nhập \"Xóa tài khoản\" bên dưới để tiếp tục.",
"userProfile.deletePage.confirm": "Xóa tài khoản",
"userProfile.deletePage.messageLine1": "Bạn có chắc chắn muốn xóa tài khoản của mình không?",
"userProfile.deletePage.messageLine2": "Hành động này là vĩnh viễn và không thể hoàn tác.",
"userProfile.deletePage.title": "Xóa tài khoản",
"userProfile.emailAddressPage.emailCode.formHint": "Một email chứa mã xác minh sẽ được gửi đến địa chỉ email này.",
"userProfile.emailAddressPage.emailCode.formSubtitle": "Nhập mã xác minh được gửi đến {{identifier}}",
"userProfile.emailAddressPage.emailCode.formTitle": "Mã xác minh",
"userProfile.emailAddressPage.emailCode.resendButton": "Không nhận được mã? Gửi lại",
"userProfile.emailAddressPage.emailCode.successMessage": "Email {{identifier}} đã được thêm vào tài khoản của bạn.",
"userProfile.emailAddressPage.emailLink.formHint": "Một email chứa liên kết xác minh sẽ được gửi đến địa chỉ email này.",
"userProfile.emailAddressPage.emailLink.formSubtitle": "Nhấp vào liên kết xác minh trong email được gửi đến {{identifier}}",
"userProfile.emailAddressPage.emailLink.formTitle": "Liên kết xác minh",
"userProfile.emailAddressPage.emailLink.resendButton": "Không nhận được liên kết? Gửi lại",
"userProfile.emailAddressPage.emailLink.successMessage": "Email {{identifier}} đã được thêm vào tài khoản của bạn.",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} sẽ bị xóa khỏi tài khoản này.",
"userProfile.emailAddressPage.removeResource.messageLine2": "Bạn sẽ không thể đăng nhập bằng địa chỉ email này nữa.",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} đã được xóa khỏi tài khoản của bạn.",
"userProfile.emailAddressPage.removeResource.title": "Xóa địa chỉ email",
"userProfile.emailAddressPage.title": "Thêm địa chỉ email",
"userProfile.emailAddressPage.verifyTitle": "Xác minh địa chỉ email",
"userProfile.formButtonPrimary__add": "Thêm",
"userProfile.formButtonPrimary__continue": "Tiếp tục",
"userProfile.formButtonPrimary__finish": "Hoàn tất",
"userProfile.formButtonPrimary__remove": "Xóa",
"userProfile.formButtonPrimary__save": "Lưu",
"userProfile.formButtonReset": "Hủy",
"userProfile.mfaPage.formHint": "Chọn phương thức để thêm.",
"userProfile.mfaPage.title": "Thêm xác minh hai bước",
"userProfile.mfaPhoneCodePage.backButton": "Sử dụng số hiện có",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Thêm số điện thoại",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} sẽ không còn nhận mã xác minh khi đăng nhập.",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Tài khoản của bạn có thể không còn an toàn. Bạn có chắc muốn tiếp tục?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "Xác minh hai bước bằng mã SMS đã được xóa cho {{mfaPhoneCode}}",
"userProfile.mfaPhoneCodePage.removeResource.title": "Xóa xác minh hai bước",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "Chọn số điện thoại hiện có để đăng ký xác minh hai bước bằng mã SMS hoặc thêm số mới.",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "Không có số điện thoại nào khả dụng để đăng ký xác minh hai bước bằng mã SMS, vui lòng thêm số mới.",
"userProfile.mfaPhoneCodePage.successMessage1": "Khi đăng nhập, bạn sẽ cần nhập mã xác minh được gửi đến số điện thoại này như một bước bổ sung.",
"userProfile.mfaPhoneCodePage.successMessage2": "Lưu các mã dự phòng này và cất giữ ở nơi an toàn. Nếu bạn mất quyền truy cập vào thiết bị xác thực, bạn có thể sử dụng mã dự phòng để đăng nhập.",
"userProfile.mfaPhoneCodePage.successTitle": "Đã bật xác minh bằng mã SMS",
"userProfile.mfaPhoneCodePage.title": "Thêm xác minh bằng mã SMS",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "Quét mã QR thay thế",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "Không thể quét mã QR?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "Thiết lập phương thức đăng nhập mới trong ứng dụng xác thực và quét mã QR sau để liên kết với tài khoản của bạn.",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Thiết lập phương thức đăng nhập mới trong ứng dụng xác thực và nhập Mã được cung cấp bên dưới.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "Đảm bảo đã bật Mật khẩu một lần hoặc theo thời gian, sau đó hoàn tất liên kết tài khoản của bạn.",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Ngoài ra, nếu ứng dụng xác thực của bạn hỗ trợ URI TOTP, bạn cũng có thể sao chép toàn bộ URI.",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Mã xác minh từ ứng dụng xác thực này sẽ không còn được yêu cầu khi đăng nhập.",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Tài khoản của bạn có thể không còn an toàn. Bạn có chắc muốn tiếp tục?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "Xác minh hai bước qua ứng dụng xác thực đã được xóa.",
"userProfile.mfaTOTPPage.removeResource.title": "Xóa xác minh hai bước",
"userProfile.mfaTOTPPage.successMessage": "Xác minh hai bước đã được bật. Khi đăng nhập, bạn sẽ cần nhập mã xác minh từ ứng dụng xác thực này như một bước bổ sung.",
"userProfile.mfaTOTPPage.title": "Thêm ứng dụng xác thực",
"userProfile.mfaTOTPPage.verifySubtitle": "Nhập mã xác minh được tạo bởi ứng dụng xác thực của bạn",
"userProfile.mfaTOTPPage.verifyTitle": "Mã xác minh",
"userProfile.mobileButton__menu": "Menu",
"userProfile.navbar.account": "Hồ sơ",
"userProfile.navbar.description": "Quản lý thông tin tài khoản của bạn.",
"userProfile.navbar.security": "Bảo mật",
"userProfile.navbar.title": "Tài khoản",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} sẽ bị xóa khỏi tài khoản này.",
"userProfile.passkeyScreen.removeResource.title": "Xóa khóa truy cập",
"userProfile.passkeyScreen.subtitle__rename": "Bạn có thể đổi tên khóa truy cập để dễ nhận biết hơn.",
"userProfile.passkeyScreen.title__rename": "Đổi tên khóa truy cập",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Khuyến nghị đăng xuất khỏi tất cả thiết bị khác đã sử dụng mật khẩu cũ của bạn.",
"userProfile.passwordPage.readonly": "Hiện tại bạn không thể chỉnh sửa mật khẩu vì bạn chỉ có thể đăng nhập qua kết nối doanh nghiệp.",
"userProfile.passwordPage.successMessage__set": "Mật khẩu của bạn đã được thiết lập.",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Tất cả thiết bị khác đã được đăng xuất.",
"userProfile.passwordPage.successMessage__update": "Mật khẩu của bạn đã được cập nhật.",
"userProfile.passwordPage.title__set": "Thiết lập mật khẩu",
"userProfile.passwordPage.title__update": "Cập nhật mật khẩu",
"userProfile.phoneNumberPage.infoText": "Một tin nhắn chứa mã xác minh sẽ được gửi đến số điện thoại này. Có thể áp dụng phí tin nhắn và dữ liệu.",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} sẽ bị xóa khỏi tài khoản này.",
"userProfile.phoneNumberPage.removeResource.messageLine2": "Bạn sẽ không thể đăng nhập bằng số điện thoại này nữa.",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} đã được xóa khỏi tài khoản của bạn.",
"userProfile.phoneNumberPage.removeResource.title": "Xóa số điện thoại",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} đã được thêm vào tài khoản của bạn.",
"userProfile.phoneNumberPage.title": "Thêm số điện thoại",
"userProfile.phoneNumberPage.verifySubtitle": "Nhập mã xác minh được gửi đến {{identifier}}",
"userProfile.phoneNumberPage.verifyTitle": "Xác minh số điện thoại",
"userProfile.profilePage.fileDropAreaHint": "Kích thước khuyến nghị 1:1, tối đa 10MB.",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Xóa",
"userProfile.profilePage.imageFormSubtitle": "Tải lên",
"userProfile.profilePage.imageFormTitle": "Ảnh hồ sơ",
"userProfile.profilePage.readonly": "Thông tin hồ sơ của bạn được cung cấp bởi kết nối doanh nghiệp và không thể chỉnh sửa.",
"userProfile.profilePage.successMessage": "Hồ sơ của bạn đã được cập nhật.",
"userProfile.profilePage.title": "Cập nhật hồ sơ",
"userProfile.start.activeDevicesSection.destructiveAction": "Đăng xuất khỏi thiết bị",
"userProfile.start.activeDevicesSection.title": "Thiết bị đang hoạt động",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Thử lại",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Ủy quyền ngay",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Gỡ bỏ",
"userProfile.start.connectedAccountsSection.primaryButton": "Kết nối tài khoản",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "Phạm vi quyền truy cập đã được cập nhật, bạn có thể gặp phải một số hạn chế. Vui lòng ủy quyền lại ứng dụng này để tránh sự cố.",
"userProfile.start.connectedAccountsSection.title": "Tài khoản đã kết nối",
"userProfile.start.dangerSection.deleteAccountButton": "Xóa tài khoản",
"userProfile.start.dangerSection.title": "Xóa tài khoản",
"userProfile.start.emailAddressesSection.destructiveAction": "Gỡ bỏ email",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Đặt làm chính",
"userProfile.start.emailAddressesSection.detailsAction__primary": "Hoàn tất xác minh",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Xác minh",
"userProfile.start.emailAddressesSection.primaryButton": "Thêm địa chỉ email",
"userProfile.start.emailAddressesSection.title": "Địa chỉ email",
"userProfile.start.enterpriseAccountsSection.title": "Tài khoản doanh nghiệp",
"userProfile.start.headerTitle__account": "Chi tiết hồ sơ",
"userProfile.start.headerTitle__security": "Bảo mật",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Tạo lại",
"userProfile.start.mfaSection.backupCodes.headerTitle": "Mã dự phòng",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Nhận bộ mã dự phòng mới an toàn. Các mã cũ sẽ bị xóa và không thể sử dụng lại.",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Tạo lại mã dự phòng",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Đặt làm mặc định",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Gỡ bỏ",
"userProfile.start.mfaSection.primaryButton": "Thêm xác minh hai bước",
"userProfile.start.mfaSection.title": "Xác minh hai bước",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Gỡ bỏ",
"userProfile.start.mfaSection.totp.headerTitle": "Ứng dụng xác thực",
"userProfile.start.passkeysSection.menuAction__destructive": "Gỡ bỏ",
"userProfile.start.passkeysSection.menuAction__rename": "Đổi tên",
"userProfile.start.passkeysSection.title": "Khóa đăng nhập",
"userProfile.start.passwordSection.primaryButton__setPassword": "Đặt mật khẩu",
"userProfile.start.passwordSection.primaryButton__updatePassword": "Cập nhật mật khẩu",
"userProfile.start.passwordSection.title": "Mật khẩu",
"userProfile.start.phoneNumbersSection.destructiveAction": "Gỡ bỏ số điện thoại",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Đặt làm chính",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Hoàn tất xác minh",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Xác minh số điện thoại",
"userProfile.start.phoneNumbersSection.primaryButton": "Thêm số điện thoại",
"userProfile.start.phoneNumbersSection.title": "Số điện thoại",
"userProfile.start.profileSection.primaryButton": "Cập nhật hồ sơ",
"userProfile.start.profileSection.title": "Hồ sơ",
"userProfile.start.usernameSection.primaryButton__setUsername": "Đặt tên người dùng",
"userProfile.start.usernameSection.primaryButton__updateUsername": "Cập nhật tên người dùng",
"userProfile.start.usernameSection.title": "Tên người dùng",
"userProfile.start.web3WalletsSection.destructiveAction": "Gỡ bỏ ví",
"userProfile.start.web3WalletsSection.primaryButton": "Ví Web3",
"userProfile.start.web3WalletsSection.title": "Ví Web3",
"userProfile.usernamePage.successMessage": "Tên người dùng của bạn đã được cập nhật.",
"userProfile.usernamePage.title__set": "Đặt tên người dùng",
"userProfile.usernamePage.title__update": "Cập nhật tên người dùng",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} sẽ bị gỡ khỏi tài khoản này.",
"userProfile.web3WalletPage.removeResource.messageLine2": "Bạn sẽ không thể đăng nhập bằng ví Web3 này nữa.",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} đã được gỡ khỏi tài khoản của bạn.",
"userProfile.web3WalletPage.removeResource.title": "Gỡ bỏ ví Web3",
"userProfile.web3WalletPage.subtitle__availableWallets": "Chọn một ví Web3 để kết nối với tài khoản của bạn.",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Không có ví Web3 nào khả dụng.",
"userProfile.web3WalletPage.successMessage": "Ví đã được thêm vào tài khoản của bạn.",
"userProfile.web3WalletPage.title": "Thêm ví Web3"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "Tiếp tục phiên",
"clerkAuth.loginSuccess.desc": "{{greeting}}, rất vui được tiếp tục phục vụ bạn. Hãy tiếp tục từ nơi bạn đã dừng lại.",
"clerkAuth.loginSuccess.title": "Chào mừng trở lại, {{nickName}}",
"error.backHome": "Quay về Trang chủ",
"error.desc": "Hãy thử lại sau, hoặc quay về thế giới quen thuộc.",
"error.retry": "Tải lại",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "Xin lỗi, hạn mức của khóa này đã đạt giới hạn. Vui lòng kiểm tra số dư tài khoản hoặc tăng hạn mức khóa rồi thử lại.",
"response.InvalidAccessCode": "Mã truy cập không hợp lệ hoặc để trống. Vui lòng nhập mã truy cập chính xác hoặc thêm API Key tùy chỉnh.",
"response.InvalidBedrockCredentials": "Xác thực Bedrock thất bại. Vui lòng kiểm tra AccessKeyId/SecretAccessKey và thử lại.",
"response.InvalidClerkUser": "Xin lỗi, bạn chưa đăng nhập. Vui lòng đăng nhập hoặc đăng ký tài khoản để tiếp tục.",
"response.InvalidComfyUIArgs": "Cấu hình ComfyUI không hợp lệ. Vui lòng kiểm tra cài đặt và thử lại.",
"response.InvalidGithubToken": "GitHub Personal Access Token không hợp lệ hoặc để trống. Vui lòng kiểm tra và thử lại.",
"response.InvalidOllamaArgs": "Cấu hình Ollama không hợp lệ, vui lòng kiểm tra và thử lại.",

View file

@ -1,545 +0,0 @@
{
"backButton": "返回",
"badge__default": "默认",
"badge__otherImpersonatorDevice": "其他模拟器设备",
"badge__primary": "主要",
"badge__requiresAction": "需要采取行动",
"badge__thisDevice": "此设备",
"badge__unverified": "未验证",
"badge__userDevice": "用户设备",
"badge__you": "您",
"createOrganization.formButtonSubmit": "创建组织",
"createOrganization.invitePage.formButtonReset": "跳过",
"createOrganization.title": "创建组织",
"dates.lastDay": "昨天 {{ date | timeString('zh-CN') }}",
"dates.next6Days": "{{ date | weekday('zh-CN','long') }} {{ date | timeString('zh-CN') }}",
"dates.nextDay": "明天 {{ date | timeString('zh-CN') }}",
"dates.numeric": "{{ date | numeric('zh-CN') }}",
"dates.previous6Days": "上周{{ date | weekday('zh-CN','long') }} {{ date | timeString('zh-CN') }}",
"dates.sameDay": "今天 {{ date | timeString('zh-CN') }}",
"dividerText": "或者",
"footerActionLink__useAnotherMethod": "使用另一种方法",
"footerPageLink__help": "帮助",
"footerPageLink__privacy": "隐私",
"footerPageLink__terms": "条款",
"formButtonPrimary": "继续",
"formButtonPrimary__verify": "验证",
"formFieldAction__forgotPassword": "忘记密码?",
"formFieldError__matchingPasswords": "密码匹配。",
"formFieldError__notMatchingPasswords": "密码不匹配。",
"formFieldError__verificationLinkExpired": "验证链接已过期。请申请新的链接。",
"formFieldHintText__optional": "选填",
"formFieldHintText__slug": "Slug 是一个人类可读的 ID它必须是唯一的。它通常用于 URL 中。",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "删除帐户",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "输入或粘贴一个或多个电子邮件地址,用空格或逗号分隔",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "my-org",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "为此域名启用自动邀请",
"formFieldLabel__backupCode": "备用代码",
"formFieldLabel__confirmDeletion": "确认",
"formFieldLabel__confirmPassword": "确认密码",
"formFieldLabel__currentPassword": "当前密码",
"formFieldLabel__emailAddress": "电子邮件地址",
"formFieldLabel__emailAddress_username": "电子邮件地址或用户名",
"formFieldLabel__emailAddresses": "电子邮件地址",
"formFieldLabel__firstName": "名字",
"formFieldLabel__lastName": "姓氏",
"formFieldLabel__newPassword": "新密码",
"formFieldLabel__organizationDomain": "域名",
"formFieldLabel__organizationDomainDeletePending": "删除待处理的邀请和建议",
"formFieldLabel__organizationDomainEmailAddress": "验证邮箱地址",
"formFieldLabel__organizationDomainEmailAddressDescription": "输入此域名下的一个邮箱地址以接收验证码并验证此域名。",
"formFieldLabel__organizationName": "组织名称",
"formFieldLabel__organizationSlug": "URL 简称",
"formFieldLabel__passkeyName": "Passkey 名称",
"formFieldLabel__password": "密码",
"formFieldLabel__phoneNumber": "电话号码",
"formFieldLabel__role": "角色",
"formFieldLabel__signOutOfOtherSessions": "登出所有其他设备",
"formFieldLabel__username": "用户名",
"impersonationFab.action__signOut": "退出登录",
"impersonationFab.title": "以 {{identifier}} 的身份登录",
"locale": "zh-CN",
"maintenanceMode": "我们目前正在进行维护,但不用担心,不会超过几分钟。",
"membershipRole__admin": "管理员",
"membershipRole__basicMember": "成员",
"membershipRole__guestMember": "访客",
"organizationList.action__createOrganization": "创建组织",
"organizationList.action__invitationAccept": "加入",
"organizationList.action__suggestionsAccept": "请求加入",
"organizationList.createOrganization": "创建组织",
"organizationList.invitationAcceptedLabel": "已加入",
"organizationList.subtitle": "以继续使用 {{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "等待批准",
"organizationList.title": "选择一个帐户",
"organizationList.titleWithoutPersonal": "选择一个组织",
"organizationProfile.badge__automaticInvitation": "自动邀请",
"organizationProfile.badge__automaticSuggestion": "自动建议",
"organizationProfile.badge__manualInvitation": "无自动注册",
"organizationProfile.badge__unverified": "未验证",
"organizationProfile.createDomainPage.subtitle": "添加域名以进行验证。具有此域名电子邮件地址的用户可以自动加入组织或请求加入。",
"organizationProfile.createDomainPage.title": "添加域名",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "邀请未发送。以下电子邮件地址已有待处理的邀请:{{email_addresses}}。",
"organizationProfile.invitePage.formButtonPrimary__continue": "发送邀请",
"organizationProfile.invitePage.selectDropdown__role": "选择角色",
"organizationProfile.invitePage.subtitle": "输入或粘贴一个或多个电子邮件地址,用空格或逗号分隔。",
"organizationProfile.invitePage.successMessage": "邀请已成功发送",
"organizationProfile.invitePage.title": "邀请新成员",
"organizationProfile.membersPage.action__invite": "邀请",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "移除成员",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "加入时间",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "角色",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "用户",
"organizationProfile.membersPage.detailsTitle__emptyRow": "没有可显示的成员",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "通过连接电子邮件域邀请用户加入组织。任何使用匹配电子邮件域注册的用户都可以随时加入组织。",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "自动邀请",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "管理已验证域名",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "没有可显示的邀请",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "撤销邀请",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "已邀请",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "使用匹配电子邮件域注册的用户可以看到请求加入组织的建议。",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "自动建议",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "管理已验证的域",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "批准",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "拒绝",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "请求访问",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "没有请求显示",
"organizationProfile.membersPage.start.headerTitle__invitations": "邀请",
"organizationProfile.membersPage.start.headerTitle__members": "成员",
"organizationProfile.membersPage.start.headerTitle__requests": "请求",
"organizationProfile.navbar.description": "管理您的组织",
"organizationProfile.navbar.general": "常规",
"organizationProfile.navbar.members": "成员",
"organizationProfile.navbar.title": "组织",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "在下方输入“{{organizationName}}”以继续。",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "您确定要删除此组织吗?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "此操作是永久且不可逆转的。",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "您已删除组织",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "删除组织",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "在下方输入“{{organizationName}}”以继续。",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "您确定要离开此组织吗?您将失去对该组织及其应用程序的访问权限。",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "此操作是永久且不可逆转的。",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "您已离开组织",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "离开组织",
"organizationProfile.profilePage.dangerSection.title": "危险",
"organizationProfile.profilePage.domainSection.menuAction__manage": "管理",
"organizationProfile.profilePage.domainSection.menuAction__remove": "删除",
"organizationProfile.profilePage.domainSection.menuAction__verify": "验证",
"organizationProfile.profilePage.domainSection.primaryButton": "添加域",
"organizationProfile.profilePage.domainSection.subtitle": "允许用户根据已验证的电子邮件域自动加入组织或请求加入。",
"organizationProfile.profilePage.domainSection.title": "已验证的域",
"organizationProfile.profilePage.successMessage": "组织已更新",
"organizationProfile.profilePage.title": "更新配置文件",
"organizationProfile.removeDomainPage.messageLine1": "电子邮件域 {{domain}} 将被移除。",
"organizationProfile.removeDomainPage.messageLine2": "此后用户将无法自动加入组织。",
"organizationProfile.removeDomainPage.successMessage": "{{domain}} 已移除",
"organizationProfile.removeDomainPage.title": "移除域",
"organizationProfile.start.headerTitle__general": "常规",
"organizationProfile.start.headerTitle__members": "成员",
"organizationProfile.start.profileSection.primaryButton": "更新配置文件",
"organizationProfile.start.profileSection.title": "组织配置文件",
"organizationProfile.start.profileSection.uploadAction__title": "标识",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "移除此域将影响已邀请的用户。",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "移除域",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "从已验证的域中移除此域",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "移除域",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "用户注册时将自动邀请加入组织,并随时可以加入。",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "自动邀请",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "用户将收到请求加入的建议,但必须由管理员批准后才能加入组织。",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "自动建议",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "更改注册模式仅影响新用户。",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "已发送给用户的待处理邀请:{{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "已发送给用户的待处理建议:{{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "用户只能手动邀请加入组织。",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "不自动加入",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "选择来自此域的用户如何加入组织。",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "危险",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "注册选项",
"organizationProfile.verifiedDomainPage.subtitle": "域 {{domain}} 已验证。继续选择注册模式。",
"organizationProfile.verifiedDomainPage.title": "更新 {{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "输入发送到您电子邮件地址的验证代码",
"organizationProfile.verifyDomainPage.formTitle": "验证代码",
"organizationProfile.verifyDomainPage.resendButton": "没有收到验证码?重新发送",
"organizationProfile.verifyDomainPage.subtitle": "需要通过电子邮件验证域 {{domainName}}。",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "已发送验证码至 {{emailAddress}}。输入验证码以继续。",
"organizationProfile.verifyDomainPage.title": "验证域",
"organizationSwitcher.action__createOrganization": "创建组织",
"organizationSwitcher.action__invitationAccept": "加入",
"organizationSwitcher.action__manageOrganization": "管理",
"organizationSwitcher.action__suggestionsAccept": "请求加入",
"organizationSwitcher.notSelected": "未选择组织",
"organizationSwitcher.personalWorkspace": "个人账户",
"organizationSwitcher.suggestionsAcceptedLabel": "待批准",
"paginationButton__next": "下一页",
"paginationButton__previous": "上一页",
"paginationRowText__displaying": "显示",
"paginationRowText__of": "共",
"signIn.accountSwitcher.action__addAccount": "添加账户",
"signIn.accountSwitcher.action__signOutAll": "退出所有账户",
"signIn.accountSwitcher.subtitle": "选择要继续使用的账户。",
"signIn.accountSwitcher.title": "选择一个账户",
"signIn.alternativeMethods.actionLink": "获取帮助",
"signIn.alternativeMethods.actionText": "没有这些?",
"signIn.alternativeMethods.blockButton__backupCode": "使用备用代码",
"signIn.alternativeMethods.blockButton__emailCode": "将验证码发送至 {{identifier}}",
"signIn.alternativeMethods.blockButton__emailLink": "将链接发送至 {{identifier}}",
"signIn.alternativeMethods.blockButton__passkey": "使用您的密钥登录",
"signIn.alternativeMethods.blockButton__password": "使用密码登录",
"signIn.alternativeMethods.blockButton__phoneCode": "将短信验证码发送至 {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "使用您的身份验证器应用程序",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "邮件支持",
"signIn.alternativeMethods.getHelp.content": "如果您在登录您的帐户时遇到困难,请给我们发送电子邮件,我们将尽快与您合作恢复访问权限。",
"signIn.alternativeMethods.getHelp.title": "获取帮助",
"signIn.alternativeMethods.subtitle": "遇到问题?您可以使用以下任一方法登录。",
"signIn.alternativeMethods.title": "使用其他方法",
"signIn.backupCodeMfa.subtitle": "您的备用代码是在设置两步验证时获得的。",
"signIn.backupCodeMfa.title": "输入备用代码",
"signIn.emailCode.formTitle": "验证码",
"signIn.emailCode.resendButton": "没有收到验证码?重新发送",
"signIn.emailCode.subtitle": "继续访问 {{applicationName}}",
"signIn.emailCode.title": "查看您的电子邮件",
"signIn.emailLink.expired.subtitle": "返回原始标签继续。",
"signIn.emailLink.expired.title": "此验证链接已过期",
"signIn.emailLink.failed.subtitle": "返回原始标签继续。",
"signIn.emailLink.failed.title": "此验证链接无效",
"signIn.emailLink.formSubtitle": "使用发送到您电子邮件的验证链接",
"signIn.emailLink.formTitle": "验证链接",
"signIn.emailLink.loading.subtitle": "您将很快被重定向",
"signIn.emailLink.loading.title": "登录中...",
"signIn.emailLink.resendButton": "没有收到链接?重新发送",
"signIn.emailLink.subtitle": "继续访问 {{applicationName}}",
"signIn.emailLink.title": "查看您的电子邮件",
"signIn.emailLink.unusedTab.title": "您可以关闭此标签",
"signIn.emailLink.verified.subtitle": "您将很快被重定向",
"signIn.emailLink.verified.title": "成功登录",
"signIn.emailLink.verifiedSwitchTab.subtitle": "返回原始标签继续",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "返回新打开的标签继续",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "在其他标签上登录",
"signIn.forgotPassword.formTitle": "重置密码代码",
"signIn.forgotPassword.resendButton": "没有收到验证码?重新发送",
"signIn.forgotPassword.subtitle": "重置您的密码",
"signIn.forgotPassword.subtitle_email": "首先,输入发送到您电子邮件地址的代码",
"signIn.forgotPassword.subtitle_phone": "首先,输入发送到您手机的代码",
"signIn.forgotPassword.title": "重置密码",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "重置您的密码",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "或者,使用其他方法登录",
"signIn.forgotPasswordAlternativeMethods.title": "忘记密码?",
"signIn.noAvailableMethods.message": "无法继续登录。没有可用的身份验证因素。",
"signIn.noAvailableMethods.subtitle": "发生错误",
"signIn.noAvailableMethods.title": "无法登录",
"signIn.passkey.subtitle": "使用您的密钥确认是您本人。您的设备可能会要求您的指纹、面容或屏幕锁。",
"signIn.passkey.title": "使用您的密钥",
"signIn.password.actionLink": "使用其他方法",
"signIn.password.subtitle": "输入与您的帐户关联的密码",
"signIn.password.title": "输入您的密码",
"signIn.passwordPwned.title": "密码已泄露",
"signIn.phoneCode.formTitle": "验证码",
"signIn.phoneCode.resendButton": "没有收到验证码?重新发送",
"signIn.phoneCode.subtitle": "继续访问 {{applicationName}}",
"signIn.phoneCode.title": "检查您的手机",
"signIn.phoneCodeMfa.formTitle": "验证码",
"signIn.phoneCodeMfa.resendButton": "没有收到验证码?重新发送",
"signIn.phoneCodeMfa.subtitle": "请继续,输入发送到您手机的验证码",
"signIn.phoneCodeMfa.title": "检查您的手机",
"signIn.resetPassword.formButtonPrimary": "重置密码",
"signIn.resetPassword.requiredMessage": "出于安全原因,需要重置您的密码。",
"signIn.resetPassword.successMessage": "您的密码已成功更改。正在登录,请稍候。",
"signIn.resetPassword.title": "设置新密码",
"signIn.resetPasswordMfa.detailsLabel": "在重置密码之前,我们需要验证您的身份。",
"signIn.start.actionLink": "注册",
"signIn.start.actionLink__use_email": "使用电子邮件",
"signIn.start.actionLink__use_email_username": "使用电子邮件或用户名",
"signIn.start.actionLink__use_passkey": "改用密钥",
"signIn.start.actionLink__use_phone": "使用手机",
"signIn.start.actionLink__use_username": "使用用户名",
"signIn.start.actionText": "没有帐户?",
"signIn.start.subtitle": "欢迎回来!请登录以继续",
"signIn.start.title": "登录到 {{applicationName}}",
"signIn.totpMfa.formTitle": "验证码",
"signIn.totpMfa.subtitle": "请继续,输入您的身份验证器应用程序生成的验证码",
"signIn.totpMfa.title": "双重验证",
"signInEnterPasswordTitle": "输入您的密码",
"signUp.continue.actionLink": "登录",
"signUp.continue.actionText": "已有帐户?",
"signUp.continue.subtitle": "请填写剩余的细节以继续。",
"signUp.continue.title": "填写缺失的字段",
"signUp.emailCode.formSubtitle": "输入发送到您电子邮件地址的验证码",
"signUp.emailCode.formTitle": "验证码",
"signUp.emailCode.resendButton": "没有收到验证码?重新发送",
"signUp.emailCode.subtitle": "输入发送到您电子邮件的验证码",
"signUp.emailCode.title": "验证您的电子邮件",
"signUp.emailLink.formSubtitle": "使用发送到您电子邮件地址的验证链接",
"signUp.emailLink.formTitle": "验证链接",
"signUp.emailLink.loading.title": "注册中...",
"signUp.emailLink.resendButton": "没有收到链接?重新发送",
"signUp.emailLink.subtitle": "继续访问 {{applicationName}}",
"signUp.emailLink.title": "验证您的电子邮件",
"signUp.emailLink.verified.title": "成功注册",
"signUp.emailLink.verifiedSwitchTab.subtitle": "返回新打开的标签继续",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "返回上一个标签继续",
"signUp.emailLink.verifiedSwitchTab.title": "成功验证电子邮件",
"signUp.phoneCode.formSubtitle": "输入发送到您电话号码的验证码",
"signUp.phoneCode.formTitle": "验证码",
"signUp.phoneCode.resendButton": "没有收到验证码?重新发送",
"signUp.phoneCode.subtitle": "输入发送到您手机的验证码",
"signUp.phoneCode.title": "验证您的手机",
"signUp.start.actionLink": "登录",
"signUp.start.actionText": "已有帐户?",
"signUp.start.subtitle": "欢迎!请填写详细信息开始。",
"signUp.start.title": "创建您的帐户",
"socialButtonsBlockButton": "继续使用 {{provider|titleize}}",
"unstable__errors.captcha_invalid": "由于安全验证失败,注册失败。请刷新页面重试,或联系支持获取更多帮助。",
"unstable__errors.captcha_unavailable": "由于机器人验证失败,注册失败。请刷新页面重试,或联系支持获取更多帮助。",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "此电子邮件地址已被使用。请尝试另一个。",
"unstable__errors.form_identifier_exists__phone_number": "此电话号码已被使用。请尝试另一个。",
"unstable__errors.form_identifier_exists__username": "此用户名已被使用。请尝试另一个。",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "电子邮件地址必须是有效的电子邮件地址。",
"unstable__errors.form_param_format_invalid__phone_number": "电话号码必须符合有效的国际格式。",
"unstable__errors.form_param_max_length_exceeded__first_name": "名字不应超过256个字符。",
"unstable__errors.form_param_max_length_exceeded__last_name": "姓氏不应超过256个字符。",
"unstable__errors.form_param_max_length_exceeded__name": "名称不应超过256个字符。",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "您的密码不够强大。",
"unstable__errors.form_password_pwned": "此密码已经被发现为泄露的一部分,不能使用,请尝试其他密码。",
"unstable__errors.form_password_pwned__sign_in": "此密码已经被发现为泄露的一部分,不能使用,请重置您的密码。",
"unstable__errors.form_password_size_in_bytes_exceeded": "您的密码已超过允许的最大字节数,请缩短或删除一些特殊字符。",
"unstable__errors.form_password_validation_failed": "密码不正确",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "您不能删除您的最后一个身份验证。",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "此设备已注册过通行密钥。",
"unstable__errors.passkey_not_supported": "此设备不支持通行密钥。",
"unstable__errors.passkey_pa_not_supported": "注册需要平台验证器,但设备不支持。",
"unstable__errors.passkey_registration_cancelled": "通行密钥注册已取消或超时。",
"unstable__errors.passkey_retrieval_cancelled": "通行密钥验证已取消或超时。",
"unstable__errors.passwordComplexity.maximumLength": "少于{{length}}个字符",
"unstable__errors.passwordComplexity.minimumLength": "{{length}}个或更多字符",
"unstable__errors.passwordComplexity.requireLowercase": "一个小写字母",
"unstable__errors.passwordComplexity.requireNumbers": "一个数字",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "一个特殊字符",
"unstable__errors.passwordComplexity.requireUppercase": "一个大写字母",
"unstable__errors.passwordComplexity.sentencePrefix": "您的密码必须包含",
"unstable__errors.phone_number_exists": "此电话号码已被使用。请尝试另一个。",
"unstable__errors.zxcvbn.couldBeStronger": "您的密码可以更强大。尝试添加更多字符。",
"unstable__errors.zxcvbn.goodPassword": "您的密码符合所有必要要求。",
"unstable__errors.zxcvbn.notEnough": "您的密码不够强大。",
"unstable__errors.zxcvbn.suggestions.allUppercase": "将一些字母大写,但不是全部。",
"unstable__errors.zxcvbn.suggestions.anotherWord": "添加更少见的单词。",
"unstable__errors.zxcvbn.suggestions.associatedYears": "避免与您相关的年份。",
"unstable__errors.zxcvbn.suggestions.capitalization": "大写不止第一个字母。",
"unstable__errors.zxcvbn.suggestions.dates": "避免与您相关的日期和年份。",
"unstable__errors.zxcvbn.suggestions.l33t": "避免可预测的字母替换,如将'@'替换为'a'。",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "使用更长的键盘模式,多次改变输入方向。",
"unstable__errors.zxcvbn.suggestions.noNeed": "您可以创建强大的密码,而无需使用符号、数字或大写字母。",
"unstable__errors.zxcvbn.suggestions.pwned": "如果您在其他地方使用此密码,应该更改它。",
"unstable__errors.zxcvbn.suggestions.recentYears": "避免最近的年份。",
"unstable__errors.zxcvbn.suggestions.repeated": "避免重复的单词和字符。",
"unstable__errors.zxcvbn.suggestions.reverseWords": "避免常见单词的反向拼写。",
"unstable__errors.zxcvbn.suggestions.sequences": "避免常见的字符序列。",
"unstable__errors.zxcvbn.suggestions.useWords": "使用多个单词,但避免常见短语。",
"unstable__errors.zxcvbn.warnings.common": "这是一个常用的密码。",
"unstable__errors.zxcvbn.warnings.commonNames": "常见的名字和姓氏容易被猜到。",
"unstable__errors.zxcvbn.warnings.dates": "日期容易被猜到。",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "重复的字符模式如“abcabcabc”容易被猜到。",
"unstable__errors.zxcvbn.warnings.keyPattern": "简短的键盘模式容易被猜到。",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "单个名字或姓氏容易被猜到。",
"unstable__errors.zxcvbn.warnings.pwned": "您的密码在互联网上的数据泄露中曝光。",
"unstable__errors.zxcvbn.warnings.recentYears": "最近的年份容易被猜到。",
"unstable__errors.zxcvbn.warnings.sequences": "常见的字符序列如“abc”容易被猜到。",
"unstable__errors.zxcvbn.warnings.similarToCommon": "这与常用密码相似。",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "重复的字符如“aaa”容易被猜到。",
"unstable__errors.zxcvbn.warnings.straightRow": "键盘上直线排列的键易被猜到。",
"unstable__errors.zxcvbn.warnings.topHundred": "这是一个常用密码。",
"unstable__errors.zxcvbn.warnings.topTen": "这是一个广泛使用的密码。",
"unstable__errors.zxcvbn.warnings.userInputs": "密码中不应包含任何个人或页面相关数据。",
"unstable__errors.zxcvbn.warnings.wordByItself": "单个单词容易被猜到。",
"userButton.action__addAccount": "添加账户",
"userButton.action__manageAccount": "管理账户",
"userButton.action__signOut": "登出",
"userButton.action__signOutAll": "从所有账户登出",
"userProfile.backupCodePage.actionLabel__copied": "已复制!",
"userProfile.backupCodePage.actionLabel__copy": "复制全部",
"userProfile.backupCodePage.actionLabel__download": "下载 .txt",
"userProfile.backupCodePage.actionLabel__print": "打印",
"userProfile.backupCodePage.infoText1": "此帐户将启用备份代码。",
"userProfile.backupCodePage.infoText2": "保持备份代码的机密性并安全存储。如果怀疑备份代码已泄露,可以重新生成备份代码。",
"userProfile.backupCodePage.subtitle__codelist": "安全存储并保密备份代码。",
"userProfile.backupCodePage.successMessage": "备份代码现已启用。如果您无法访问您的身份验证设备,可以使用其中之一登录您的帐户。每个代码只能使用一次。",
"userProfile.backupCodePage.successSubtitle": "如果您无法访问您的身份验证设备,您可以使用其中之一登录您的帐户。",
"userProfile.backupCodePage.title": "添加备份代码验证",
"userProfile.backupCodePage.title__codelist": "备份代码",
"userProfile.connectedAccountPage.formHint": "选择要连接您的帐户的提供商。",
"userProfile.connectedAccountPage.formHint__noAccounts": "没有可用的外部帐户提供商。",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} 将从此帐户中删除。",
"userProfile.connectedAccountPage.removeResource.messageLine2": "您将无法再使用此连接的帐户,并且任何依赖功能将不再起作用。",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} 已从您的帐户中删除。",
"userProfile.connectedAccountPage.removeResource.title": "删除连接的帐户",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "提供商已添加到您的帐户",
"userProfile.connectedAccountPage.title": "添加连接的帐户",
"userProfile.deletePage.actionDescription": "在下方输入“删除帐户”以继续。",
"userProfile.deletePage.confirm": "删除帐户",
"userProfile.deletePage.messageLine1": "您确定要删除您的帐户吗?",
"userProfile.deletePage.messageLine2": "此操作是永久且不可逆转的。",
"userProfile.deletePage.title": "删除帐户",
"userProfile.emailAddressPage.emailCode.formHint": "将发送包含验证码的电子邮件至此电子邮件地址。",
"userProfile.emailAddressPage.emailCode.formSubtitle": "输入发送至 {{identifier}} 的验证码。",
"userProfile.emailAddressPage.emailCode.formTitle": "验证码",
"userProfile.emailAddressPage.emailCode.resendButton": "没有收到验证码?重新发送",
"userProfile.emailAddressPage.emailCode.successMessage": "电子邮件 {{identifier}} 已添加到您的帐户。",
"userProfile.emailAddressPage.emailLink.formHint": "将发送包含验证链接的电子邮件至此电子邮件地址。",
"userProfile.emailAddressPage.emailLink.formSubtitle": "点击发送至 {{identifier}} 的电子邮件中的验证链接。",
"userProfile.emailAddressPage.emailLink.formTitle": "验证链接",
"userProfile.emailAddressPage.emailLink.resendButton": "没有收到链接?重新发送",
"userProfile.emailAddressPage.emailLink.successMessage": "电子邮件 {{identifier}} 已添加到您的帐户。",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} 将从此帐户中删除。",
"userProfile.emailAddressPage.removeResource.messageLine2": "您将无法再使用此电子邮件地址登录。",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} 已从您的帐户中删除。",
"userProfile.emailAddressPage.removeResource.title": "删除电子邮件地址",
"userProfile.emailAddressPage.title": "添加电子邮件地址",
"userProfile.emailAddressPage.verifyTitle": "验证电子邮件地址",
"userProfile.formButtonPrimary__add": "添加",
"userProfile.formButtonPrimary__continue": "继续",
"userProfile.formButtonPrimary__finish": "完成",
"userProfile.formButtonPrimary__remove": "删除",
"userProfile.formButtonPrimary__save": "保存",
"userProfile.formButtonReset": "取消",
"userProfile.mfaPage.formHint": "选择要添加的方法。",
"userProfile.mfaPage.title": "添加双重验证",
"userProfile.mfaPhoneCodePage.backButton": "使用现有号码",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "添加电话号码",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} 在登录时将不再接收验证代码。",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "您的帐户可能不够安全。您确定要继续吗?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "{{mfaPhoneCode}} 的短信代码双重验证已移除。",
"userProfile.mfaPhoneCodePage.removeResource.title": "移除双重验证",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "选择现有电话号码注册短信代码双重验证,或添加新号码。",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "没有可用的电话号码用于注册短信代码双重验证,请添加新号码。",
"userProfile.mfaPhoneCodePage.successMessage1": "登录时,您需要输入发送至此电话号码的验证代码作为额外步骤。",
"userProfile.mfaPhoneCodePage.successMessage2": "保存这些备份代码并将其安全存储。如果无法访问您的身份验证设备,可以使用备份代码登录。",
"userProfile.mfaPhoneCodePage.successTitle": "短信代码验证已启用",
"userProfile.mfaPhoneCodePage.title": "添加短信代码验证",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "扫描 QR 码",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "无法扫描 QR 码?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "在您的身份验证器应用中设置新的登录方法,并扫描以下 QR 码将其链接到您的帐户。",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "在您的身份验证器中设置新的登录方法,并输入下面提供的密钥。",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "确保已启用基于时间或一次性密码,然后完成链接您的帐户。",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "或者,如果您的身份验证器支持 TOTP URI您也可以复制完整的 URI。",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "登录时将不再需要此身份验证器的验证代码。",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "您的帐户可能不够安全。您确定要继续吗?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "通过身份验证器应用的双重验证已移除。",
"userProfile.mfaTOTPPage.removeResource.title": "移除双重验证",
"userProfile.mfaTOTPPage.successMessage": "双重验证现已启用。登录时,您将需要输入此身份验证器生成的验证代码作为额外步骤。",
"userProfile.mfaTOTPPage.title": "添加身份验证器应用",
"userProfile.mfaTOTPPage.verifySubtitle": "输入您的身份验证器生成的验证代码",
"userProfile.mfaTOTPPage.verifyTitle": "验证代码",
"userProfile.mobileButton__menu": "菜单",
"userProfile.navbar.account": "个人资料",
"userProfile.navbar.description": "管理您的帐户信息",
"userProfile.navbar.security": "安全",
"userProfile.navbar.title": "帐户",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} 将从此帐户中删除。",
"userProfile.passkeyScreen.removeResource.title": "删除密码",
"userProfile.passkeyScreen.subtitle__rename": "您可以更改密码名称以便更容易找到。",
"userProfile.passkeyScreen.title__rename": "重命名密码",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "建议注销所有可能使用旧密码的其他设备。",
"userProfile.passwordPage.readonly": "您当前无法编辑密码,因为只能通过企业连接登录。",
"userProfile.passwordPage.successMessage__set": "您的密码已设置。",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "所有其他设备已注销。",
"userProfile.passwordPage.successMessage__update": "您的密码已更新。",
"userProfile.passwordPage.title__set": "设置密码",
"userProfile.passwordPage.title__update": "更新密码",
"userProfile.phoneNumberPage.infoText": "将向此电话号码发送包含验证码的短信。可能会收取短信和数据费用。",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} 将从此帐户中删除。",
"userProfile.phoneNumberPage.removeResource.messageLine2": "您将无法再使用此电话号码登录。",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} 已从您的帐户中删除。",
"userProfile.phoneNumberPage.removeResource.title": "删除电话号码",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} 已添加到您的帐户。",
"userProfile.phoneNumberPage.title": "添加电话号码",
"userProfile.phoneNumberPage.verifySubtitle": "输入发送至 {{identifier}} 的验证码",
"userProfile.phoneNumberPage.verifyTitle": "验证电话号码",
"userProfile.profilePage.fileDropAreaHint": "推荐尺寸 1:1最多 10MB。",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "移除",
"userProfile.profilePage.imageFormSubtitle": "上传",
"userProfile.profilePage.imageFormTitle": "个人资料图片",
"userProfile.profilePage.readonly": "您的个人资料信息由企业连接提供,无法编辑。",
"userProfile.profilePage.successMessage": "您的个人资料已更新。",
"userProfile.profilePage.title": "更新个人资料",
"userProfile.start.activeDevicesSection.destructiveAction": "注销设备",
"userProfile.start.activeDevicesSection.title": "活动设备",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "重试",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "立即授权",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "删除",
"userProfile.start.connectedAccountsSection.primaryButton": "连接帐户",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "所需的范围已更新,您可能体验到功能受限。请重新授权此应用以避免任何问题。",
"userProfile.start.connectedAccountsSection.title": "连接的帐户",
"userProfile.start.dangerSection.deleteAccountButton": "删除帐户",
"userProfile.start.dangerSection.title": "删除帐户",
"userProfile.start.emailAddressesSection.destructiveAction": "删除电子邮件",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "设为主要",
"userProfile.start.emailAddressesSection.detailsAction__primary": "完成验证",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "验证",
"userProfile.start.emailAddressesSection.primaryButton": "添加电子邮件地址",
"userProfile.start.emailAddressesSection.title": "电子邮件地址",
"userProfile.start.enterpriseAccountsSection.title": "企业帐户",
"userProfile.start.headerTitle__account": "个人资料详情",
"userProfile.start.headerTitle__security": "安全",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "重新生成",
"userProfile.start.mfaSection.backupCodes.headerTitle": "备份代码",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "获取一组新的安全备份代码。之前的备份代码将被删除且无法使用。",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "重新生成备份代码",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "设为默认",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "删除",
"userProfile.start.mfaSection.primaryButton": "添加双重验证",
"userProfile.start.mfaSection.title": "双重验证",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "删除",
"userProfile.start.mfaSection.totp.headerTitle": "身份验证器应用",
"userProfile.start.passkeysSection.menuAction__destructive": "删除",
"userProfile.start.passkeysSection.menuAction__rename": "重命名",
"userProfile.start.passkeysSection.title": "密码",
"userProfile.start.passwordSection.primaryButton__setPassword": "设置密码",
"userProfile.start.passwordSection.primaryButton__updatePassword": "更新密码",
"userProfile.start.passwordSection.title": "密码",
"userProfile.start.phoneNumbersSection.destructiveAction": "删除电话号码",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "设为主要",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "完成验证",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "验证电话号码",
"userProfile.start.phoneNumbersSection.primaryButton": "添加电话号码",
"userProfile.start.phoneNumbersSection.title": "电话号码",
"userProfile.start.profileSection.primaryButton": "更新个人资料",
"userProfile.start.profileSection.title": "个人资料",
"userProfile.start.usernameSection.primaryButton__setUsername": "设置用户名",
"userProfile.start.usernameSection.primaryButton__updateUsername": "更新用户名",
"userProfile.start.usernameSection.title": "用户名",
"userProfile.start.web3WalletsSection.destructiveAction": "删除钱包",
"userProfile.start.web3WalletsSection.primaryButton": "Web3 钱包",
"userProfile.start.web3WalletsSection.title": "Web3 钱包",
"userProfile.usernamePage.successMessage": "您的用户名已更新。",
"userProfile.usernamePage.title__set": "设置用户名",
"userProfile.usernamePage.title__update": "更新用户名",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} 将从此帐户中删除。",
"userProfile.web3WalletPage.removeResource.messageLine2": "您将无法再使用此 Web3 钱包登录。",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} 已从您的帐户中删除。",
"userProfile.web3WalletPage.removeResource.title": "删除 Web3 钱包",
"userProfile.web3WalletPage.subtitle__availableWallets": "选择要连接到您的帐户的 Web3 钱包。",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "没有可用的 Web3 钱包。",
"userProfile.web3WalletPage.successMessage": "钱包已添加到您的帐户。",
"userProfile.web3WalletPage.title": "添加 Web3 钱包"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "继续会话",
"clerkAuth.loginSuccess.desc": "{{greeting}}{{nickName}},我们从上次的话题继续;你也可以随时切换到新话题",
"clerkAuth.loginSuccess.title": "欢迎回来,{{nickName}}",
"error.backHome": "返回首页",
"error.desc": "页面暂时不可用。你可以返回首页,或稍后重试(你的设置不会因此丢失)",
"error.retry": "重新加载",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "配额已用尽。请检查余额/配额设置,或更换可用的 API Key 后重试",
"response.InvalidAccessCode": "访问密码为空或不正确。请重新输入,或改用自定义 API Key",
"response.InvalidBedrockCredentials": "Bedrock 鉴权失败。请检查 AccessKeyId/SecretAccessKey 后重试",
"response.InvalidClerkUser": "需要登录后继续。请先登录或注册",
"response.InvalidComfyUIArgs": "ComfyUI 配置不正确。请检查配置后重试",
"response.InvalidGithubToken": "GitHub PAT 为空或不正确。请检查后重试",
"response.InvalidOllamaArgs": "Ollama 配置不正确。请检查配置后重试",

View file

@ -1,545 +0,0 @@
{
"backButton": "返回",
"badge__default": "預設",
"badge__otherImpersonatorDevice": "其他冒名頂替裝置",
"badge__primary": "主要",
"badge__requiresAction": "需要採取行動",
"badge__thisDevice": "此裝置",
"badge__unverified": "未驗證",
"badge__userDevice": "使用者裝置",
"badge__you": "您",
"createOrganization.formButtonSubmit": "建立組織",
"createOrganization.invitePage.formButtonReset": "跳過",
"createOrganization.title": "建立組織",
"dates.lastDay": "昨天 {{ date | timeString('zh-TW') }}",
"dates.next6Days": "{{ date | weekday('zh-TW','long') }} {{ date | timeString('zh-TW') }}",
"dates.nextDay": "明天 {{ date | timeString('zh-TW') }}",
"dates.numeric": "{{ date | numeric('zh-TW') }}",
"dates.previous6Days": "上週{{ date | weekday('zh-TW','long') }} {{ date | timeString('zh-TW') }}",
"dates.sameDay": "今天 {{ date | timeString('zh-TW') }}",
"dividerText": "或",
"footerActionLink__useAnotherMethod": "使用其他方法",
"footerPageLink__help": "幫助",
"footerPageLink__privacy": "隱私",
"footerPageLink__terms": "條款",
"formButtonPrimary": "繼續",
"formButtonPrimary__verify": "驗證",
"formFieldAction__forgotPassword": "忘記密碼?",
"formFieldError__matchingPasswords": "密碼相符。",
"formFieldError__notMatchingPasswords": "密碼不相符。",
"formFieldError__verificationLinkExpired": "驗證連結已過期。請求新連結。",
"formFieldHintText__optional": "選填",
"formFieldHintText__slug": "Slug 是一個人可讀的 ID必須是唯一的。通常用於 URL。",
"formFieldInputPlaceholder__backupCode": "",
"formFieldInputPlaceholder__confirmDeletionUserAccount": "刪除帳號",
"formFieldInputPlaceholder__emailAddress": "",
"formFieldInputPlaceholder__emailAddress_username": "",
"formFieldInputPlaceholder__emailAddresses": "範例@email.com範例2@email.com",
"formFieldInputPlaceholder__firstName": "",
"formFieldInputPlaceholder__lastName": "",
"formFieldInputPlaceholder__organizationDomain": "",
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
"formFieldInputPlaceholder__organizationName": "",
"formFieldInputPlaceholder__organizationSlug": "我的組織",
"formFieldInputPlaceholder__password": "",
"formFieldInputPlaceholder__phoneNumber": "",
"formFieldInputPlaceholder__username": "",
"formFieldLabel__automaticInvitations": "啟用此域名的自動邀請",
"formFieldLabel__backupCode": "備份代碼",
"formFieldLabel__confirmDeletion": "確認",
"formFieldLabel__confirmPassword": "確認密碼",
"formFieldLabel__currentPassword": "目前密碼",
"formFieldLabel__emailAddress": "電子郵件地址",
"formFieldLabel__emailAddress_username": "電子郵件地址或使用者名稱",
"formFieldLabel__emailAddresses": "電子郵件地址",
"formFieldLabel__firstName": "名字",
"formFieldLabel__lastName": "姓氏",
"formFieldLabel__newPassword": "新密碼",
"formFieldLabel__organizationDomain": "域名",
"formFieldLabel__organizationDomainDeletePending": "刪除待處理的邀請和建議",
"formFieldLabel__organizationDomainEmailAddress": "驗證電子郵件地址",
"formFieldLabel__organizationDomainEmailAddressDescription": "輸入此域名下的電子郵件地址,以接收代碼並驗證此域名。",
"formFieldLabel__organizationName": "名稱",
"formFieldLabel__organizationSlug": "Slug",
"formFieldLabel__passkeyName": "通行證名稱",
"formFieldLabel__password": "密碼",
"formFieldLabel__phoneNumber": "電話號碼",
"formFieldLabel__role": "角色",
"formFieldLabel__signOutOfOtherSessions": "登出所有其他裝置",
"formFieldLabel__username": "使用者名稱",
"impersonationFab.action__signOut": "登出",
"impersonationFab.title": "以 {{identifier}} 身分登入",
"locale": "zh-TW",
"maintenanceMode": "我們目前正在進行維護,但請放心,這不應該超過幾分鐘。",
"membershipRole__admin": "管理員",
"membershipRole__basicMember": "會員",
"membershipRole__guestMember": "訪客",
"organizationList.action__createOrganization": "建立組織",
"organizationList.action__invitationAccept": "加入",
"organizationList.action__suggestionsAccept": "請求加入",
"organizationList.createOrganization": "建立組織",
"organizationList.invitationAcceptedLabel": "已加入",
"organizationList.subtitle": "繼續使用{{applicationName}}",
"organizationList.suggestionsAcceptedLabel": "待審批",
"organizationList.title": "選擇帳號",
"organizationList.titleWithoutPersonal": "選擇組織",
"organizationProfile.badge__automaticInvitation": "自動邀請",
"organizationProfile.badge__automaticSuggestion": "自動建議",
"organizationProfile.badge__manualInvitation": "無自動註冊",
"organizationProfile.badge__unverified": "未驗證",
"organizationProfile.createDomainPage.subtitle": "新增要驗證的網域。使用此網域電子郵件地址的使用者可以自動加入組織,或請求加入。",
"organizationProfile.createDomainPage.title": "新增網域",
"organizationProfile.invitePage.detailsTitle__inviteFailed": "無法發送邀請。以下電子郵件地址已有待處理的邀請:{{email_addresses}}。",
"organizationProfile.invitePage.formButtonPrimary__continue": "發送邀請",
"organizationProfile.invitePage.selectDropdown__role": "選擇角色",
"organizationProfile.invitePage.subtitle": "輸入或貼上一個或多個以空格或逗號分隔的電子郵件地址。",
"organizationProfile.invitePage.successMessage": "邀請成功發送",
"organizationProfile.invitePage.title": "邀請新成員",
"organizationProfile.membersPage.action__invite": "邀請",
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "移除成員",
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "加入時間",
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "角色",
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "使用者",
"organizationProfile.membersPage.detailsTitle__emptyRow": "沒有成員可顯示",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "透過連接電子郵件網域來邀請使用者加入組織。任何使用符合電子郵件網域的人都可以隨時加入組織。",
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "自動邀請",
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "管理已驗證的網域",
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "沒有邀請可顯示",
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "撤銷邀請",
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "已邀請",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "使用符合電子郵件網域的使用者,將能看到請求加入您組織的建議。",
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "自動建議",
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "管理已驗證的網域",
"organizationProfile.membersPage.requestsTab.menuAction__approve": "核准",
"organizationProfile.membersPage.requestsTab.menuAction__reject": "拒絕",
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "請求存取",
"organizationProfile.membersPage.requestsTab.table__emptyRow": "沒有請求可顯示",
"organizationProfile.membersPage.start.headerTitle__invitations": "邀請",
"organizationProfile.membersPage.start.headerTitle__members": "成員",
"organizationProfile.membersPage.start.headerTitle__requests": "請求",
"organizationProfile.navbar.description": "管理您的組織",
"organizationProfile.navbar.general": "一般",
"organizationProfile.navbar.members": "成員",
"organizationProfile.navbar.title": "組織",
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "在下方輸入\"{{organizationName}}\"以繼續。",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "您確定要刪除此組織嗎?",
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "此操作是永久且不可逆轉的。",
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "您已刪除組織。",
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "刪除組織",
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "在下方輸入\"{{organizationName}}\"以繼續。",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "您確定要離開此組織嗎?您將失去對此組織及其應用程式的存取權。",
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "此操作是永久且不可逆轉的。",
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "您已離開組織。",
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "離開組織",
"organizationProfile.profilePage.dangerSection.title": "風險",
"organizationProfile.profilePage.domainSection.menuAction__manage": "管理",
"organizationProfile.profilePage.domainSection.menuAction__remove": "刪除",
"organizationProfile.profilePage.domainSection.menuAction__verify": "驗證",
"organizationProfile.profilePage.domainSection.primaryButton": "新增網域",
"organizationProfile.profilePage.domainSection.subtitle": "允許使用者根據驗證的電子郵件網域自動加入組織或請求加入。",
"organizationProfile.profilePage.domainSection.title": "已驗證的網域",
"organizationProfile.profilePage.successMessage": "組織已更新",
"organizationProfile.profilePage.title": "更新檔案",
"organizationProfile.removeDomainPage.messageLine1": "將移除電子郵件網域{{domain}}。",
"organizationProfile.removeDomainPage.messageLine2": "此後使用者將無法自動加入組織。",
"organizationProfile.removeDomainPage.successMessage": "{{domain}}已移除",
"organizationProfile.removeDomainPage.title": "移除網域",
"organizationProfile.start.headerTitle__general": "一般",
"organizationProfile.start.headerTitle__members": "成員",
"organizationProfile.start.profileSection.primaryButton": "更新檔案",
"organizationProfile.start.profileSection.title": "組織檔案",
"organizationProfile.start.profileSection.uploadAction__title": "標誌",
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "移除此網域將影響被邀請的使用者。",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "移除網域",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "從您的已驗證網域中移除此網域",
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "移除網域",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "使用者在註冊時將自動獲得邀請加入組織,並隨時加入。",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "自動邀請",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "使用者會收到請求加入的建議,但必須經管理員核准後才能加入組織。",
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "自動建議",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "更改註冊模式僅影響新使用者。",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "已發送給使用者的待處理邀請:{{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "已發送給使用者的待處理建議:{{count}}",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "只能手動邀請使用者加入組織。",
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "無自動註冊",
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "選擇此網域的使用者如何加入組織。",
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "風險",
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "註冊選項",
"organizationProfile.verifiedDomainPage.subtitle": "網域{{domain}}現已驗證。請選擇註冊模式繼續。",
"organizationProfile.verifiedDomainPage.title": "更新{{domain}}",
"organizationProfile.verifyDomainPage.formSubtitle": "輸入發送到您電子郵件地址的驗證碼",
"organizationProfile.verifyDomainPage.formTitle": "驗證碼",
"organizationProfile.verifyDomainPage.resendButton": "未收到驗證碼?重新發送",
"organizationProfile.verifyDomainPage.subtitle": "需透過電子郵件驗證{{domainName}}網域。",
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "驗證碼已發送至{{emailAddress}}。請輸入驗證碼以繼續。",
"organizationProfile.verifyDomainPage.title": "驗證網域",
"organizationSwitcher.action__createOrganization": "建立組織",
"organizationSwitcher.action__invitationAccept": "加入",
"organizationSwitcher.action__manageOrganization": "管理",
"organizationSwitcher.action__suggestionsAccept": "請求加入",
"organizationSwitcher.notSelected": "未選擇組織",
"organizationSwitcher.personalWorkspace": "個人帳戶",
"organizationSwitcher.suggestionsAcceptedLabel": "待審批",
"paginationButton__next": "下一步",
"paginationButton__previous": "上一步",
"paginationRowText__displaying": "顯示",
"paginationRowText__of": "共",
"signIn.accountSwitcher.action__addAccount": "新增帳戶",
"signIn.accountSwitcher.action__signOutAll": "登出所有帳戶",
"signIn.accountSwitcher.subtitle": "選擇您希望繼續使用的帳戶。",
"signIn.accountSwitcher.title": "選擇帳戶",
"signIn.alternativeMethods.actionLink": "獲取幫助",
"signIn.alternativeMethods.actionText": "沒有這些?",
"signIn.alternativeMethods.blockButton__backupCode": "使用備份代碼",
"signIn.alternativeMethods.blockButton__emailCode": "將代碼發送至 {{identifier}} 的電子郵件",
"signIn.alternativeMethods.blockButton__emailLink": "將連結發送至 {{identifier}} 的電子郵件",
"signIn.alternativeMethods.blockButton__passkey": "使用您的通行證登入",
"signIn.alternativeMethods.blockButton__password": "使用密碼登入",
"signIn.alternativeMethods.blockButton__phoneCode": "將簡訊代碼發送至 {{identifier}}",
"signIn.alternativeMethods.blockButton__totp": "使用您的驗證器應用程式",
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "電子郵件支援",
"signIn.alternativeMethods.getHelp.content": "如果您在登入帳戶時遇到問題,請給我們發送電子郵件,我們將盡快與您合作恢復訪問權限。",
"signIn.alternativeMethods.getHelp.title": "獲取幫助",
"signIn.alternativeMethods.subtitle": "遇到問題嗎?您可以使用以下任何方法登入。",
"signIn.alternativeMethods.title": "使用其他方法",
"signIn.backupCodeMfa.subtitle": "您的備份代碼是設置兩步驗證時獲得的代碼。",
"signIn.backupCodeMfa.title": "輸入備份代碼",
"signIn.emailCode.formTitle": "驗證碼",
"signIn.emailCode.resendButton": "未收到代碼?重新發送",
"signIn.emailCode.subtitle": "繼續至 {{applicationName}}",
"signIn.emailCode.title": "檢查您的電子郵件",
"signIn.emailLink.expired.subtitle": "返回原始標籤以繼續。",
"signIn.emailLink.expired.title": "此驗證連結已過期",
"signIn.emailLink.failed.subtitle": "返回原始標籤以繼續。",
"signIn.emailLink.failed.title": "此驗證連結無效",
"signIn.emailLink.formSubtitle": "使用發送至您電子郵件的驗證連結",
"signIn.emailLink.formTitle": "驗證連結",
"signIn.emailLink.loading.subtitle": "您將很快被重新導向",
"signIn.emailLink.loading.title": "登入中...",
"signIn.emailLink.resendButton": "未收到連結?重新發送",
"signIn.emailLink.subtitle": "繼續至 {{applicationName}}",
"signIn.emailLink.title": "檢查您的電子郵件",
"signIn.emailLink.unusedTab.title": "您可以關閉此標籤",
"signIn.emailLink.verified.subtitle": "您將很快被重新導向",
"signIn.emailLink.verified.title": "成功登入",
"signIn.emailLink.verifiedSwitchTab.subtitle": "返回原始標籤以繼續",
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "返回新開啟的標籤以繼續",
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "在其他標籤上登入",
"signIn.forgotPassword.formTitle": "重設密碼代碼",
"signIn.forgotPassword.resendButton": "未收到代碼?重新發送",
"signIn.forgotPassword.subtitle": "重設您的密碼",
"signIn.forgotPassword.subtitle_email": "首先,輸入發送至您電子郵件地址的代碼",
"signIn.forgotPassword.subtitle_phone": "首先,輸入發送至您電話的代碼",
"signIn.forgotPassword.title": "重設密碼",
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "重設您的密碼",
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "或使用其他方法登入",
"signIn.forgotPasswordAlternativeMethods.title": "忘記密碼?",
"signIn.noAvailableMethods.message": "無法繼續登入。沒有可用的身份驗證因素。",
"signIn.noAvailableMethods.subtitle": "發生錯誤",
"signIn.noAvailableMethods.title": "無法登入",
"signIn.passkey.subtitle": "使用您的通行證確認您的身份。您的設備可能要求您的指紋、臉部或螢幕鎖。",
"signIn.passkey.title": "使用您的通行證",
"signIn.password.actionLink": "使用其他方法",
"signIn.password.subtitle": "輸入與您帳戶關聯的密碼",
"signIn.password.title": "輸入您的密碼",
"signIn.passwordPwned.title": "密碼已被盜用",
"signIn.phoneCode.formTitle": "驗證碼",
"signIn.phoneCode.resendButton": "未收到代碼?重新發送",
"signIn.phoneCode.subtitle": "繼續至 {{applicationName}}",
"signIn.phoneCode.title": "檢查您的手機",
"signIn.phoneCodeMfa.formTitle": "驗證碼",
"signIn.phoneCodeMfa.resendButton": "未收到代碼?重新發送",
"signIn.phoneCodeMfa.subtitle": "請輸入發送至您手機的驗證碼以繼續",
"signIn.phoneCodeMfa.title": "檢查您的手機",
"signIn.resetPassword.formButtonPrimary": "重設密碼",
"signIn.resetPassword.requiredMessage": "出於安全原因,需要重設您的密碼。",
"signIn.resetPassword.successMessage": "您的密碼已成功更改。正在為您登入,請稍候片刻。",
"signIn.resetPassword.title": "設置新密碼",
"signIn.resetPasswordMfa.detailsLabel": "在重設密碼之前,我們需要驗證您的身份。",
"signIn.start.actionLink": "註冊",
"signIn.start.actionLink__use_email": "使用電子郵件",
"signIn.start.actionLink__use_email_username": "使用電子郵件或使用者名稱",
"signIn.start.actionLink__use_passkey": "改用通行證",
"signIn.start.actionLink__use_phone": "使用手機",
"signIn.start.actionLink__use_username": "使用使用者名稱",
"signIn.start.actionText": "還沒有帳戶?",
"signIn.start.subtitle": "歡迎回來!請登入以繼續",
"signIn.start.title": "登入 {{applicationName}}",
"signIn.totpMfa.formTitle": "驗證碼",
"signIn.totpMfa.subtitle": "請輸入您的驗證器應用程式生成的驗證碼以繼續",
"signIn.totpMfa.title": "兩步驗證",
"signInEnterPasswordTitle": "輸入您的密碼",
"signUp.continue.actionLink": "登入",
"signUp.continue.actionText": "已有帳戶?",
"signUp.continue.subtitle": "請填寫剩餘的詳細信息以繼續。",
"signUp.continue.title": "填寫缺少的字段",
"signUp.emailCode.formSubtitle": "輸入發送至您電子郵件地址的驗證碼",
"signUp.emailCode.formTitle": "驗證碼",
"signUp.emailCode.resendButton": "未收到代碼?重新發送",
"signUp.emailCode.subtitle": "輸入發送至您電子郵件的驗證碼",
"signUp.emailCode.title": "驗證您的電子郵件",
"signUp.emailLink.formSubtitle": "使用發送至您電子郵件地址的驗證連結",
"signUp.emailLink.formTitle": "驗證連結",
"signUp.emailLink.loading.title": "正在註冊...",
"signUp.emailLink.resendButton": "未收到連結?重新發送",
"signUp.emailLink.subtitle": "繼續至 {{applicationName}}",
"signUp.emailLink.title": "驗證您的電子郵件",
"signUp.emailLink.verified.title": "註冊成功",
"signUp.emailLink.verifiedSwitchTab.subtitle": "返回新開啟的標籤以繼續",
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "返回上一個標籤以繼續",
"signUp.emailLink.verifiedSwitchTab.title": "電子郵件驗證成功",
"signUp.phoneCode.formSubtitle": "輸入發送至您手機號碼的驗證碼",
"signUp.phoneCode.formTitle": "驗證碼",
"signUp.phoneCode.resendButton": "未收到代碼?重新發送",
"signUp.phoneCode.subtitle": "輸入發送至您手機的驗證碼",
"signUp.phoneCode.title": "驗證您的手機",
"signUp.start.actionLink": "登入",
"signUp.start.actionText": "已有帳戶?",
"signUp.start.subtitle": "歡迎!請填寫詳細信息開始。",
"signUp.start.title": "創建您的帳戶",
"socialButtonsBlockButton": "使用 {{provider|titleize}} 繼續",
"unstable__errors.captcha_invalid": "由於安全驗證失敗,註冊失敗。請重新整理頁面再試一次,或聯繫支援部門尋求協助。",
"unstable__errors.captcha_unavailable": "由於機器人驗證失敗,註冊失敗。請重新整理頁面再試一次,或聯繫支援部門尋求協助。",
"unstable__errors.form_code_incorrect": "",
"unstable__errors.form_identifier_exists": "",
"unstable__errors.form_identifier_exists__email_address": "此電子郵件地址已被使用。請嘗試其他地址。",
"unstable__errors.form_identifier_exists__phone_number": "此電話號碼已被使用。請嘗試其他號碼。",
"unstable__errors.form_identifier_exists__username": "此使用者名稱已被使用。請嘗試其他名稱。",
"unstable__errors.form_identifier_not_found": "",
"unstable__errors.form_param_format_invalid": "",
"unstable__errors.form_param_format_invalid__email_address": "電子郵件地址必須是有效的電子郵件地址。",
"unstable__errors.form_param_format_invalid__phone_number": "電話號碼必須符合有效的國際格式。",
"unstable__errors.form_param_max_length_exceeded__first_name": "名字不應超過256個字符。",
"unstable__errors.form_param_max_length_exceeded__last_name": "姓氏不應超過256個字符。",
"unstable__errors.form_param_max_length_exceeded__name": "名稱不應超過256個字符。",
"unstable__errors.form_param_nil": "",
"unstable__errors.form_password_incorrect": "",
"unstable__errors.form_password_length_too_short": "",
"unstable__errors.form_password_not_strong_enough": "您的密碼不夠強大。",
"unstable__errors.form_password_pwned": "此密碼已被發現存在安全漏洞,請嘗試其他密碼。",
"unstable__errors.form_password_pwned__sign_in": "此密碼已被發現存在安全漏洞,請重設您的密碼。",
"unstable__errors.form_password_size_in_bytes_exceeded": "您的密碼超過允許的最大字節數,請縮短或刪除一些特殊字符。",
"unstable__errors.form_password_validation_failed": "密碼不正確",
"unstable__errors.form_username_invalid_character": "",
"unstable__errors.form_username_invalid_length": "",
"unstable__errors.identification_deletion_failed": "您無法刪除您的最後一個身分證。",
"unstable__errors.not_allowed_access": "",
"unstable__errors.passkey_already_exists": "此設備已註冊了一個通行證。",
"unstable__errors.passkey_not_supported": "此設備不支援通行證。",
"unstable__errors.passkey_pa_not_supported": "註冊需要平台驗證器,但設備不支援。",
"unstable__errors.passkey_registration_cancelled": "通行證註冊已取消或超時。",
"unstable__errors.passkey_retrieval_cancelled": "通行證驗證已取消或超時。",
"unstable__errors.passwordComplexity.maximumLength": "少於{{length}}個字符",
"unstable__errors.passwordComplexity.minimumLength": "{{length}}個或更多字符",
"unstable__errors.passwordComplexity.requireLowercase": "小寫字母",
"unstable__errors.passwordComplexity.requireNumbers": "數字",
"unstable__errors.passwordComplexity.requireSpecialCharacter": "特殊字符",
"unstable__errors.passwordComplexity.requireUppercase": "大寫字母",
"unstable__errors.passwordComplexity.sentencePrefix": "您的密碼必須包含",
"unstable__errors.phone_number_exists": "此電話號碼已被使用。請嘗試其他號碼。",
"unstable__errors.zxcvbn.couldBeStronger": "您的密碼有效,但可以更強大。嘗試添加更多字符。",
"unstable__errors.zxcvbn.goodPassword": "您的密碼符合所有必要條件。",
"unstable__errors.zxcvbn.notEnough": "您的密碼不夠強大。",
"unstable__errors.zxcvbn.suggestions.allUppercase": "將一些字母大寫。",
"unstable__errors.zxcvbn.suggestions.anotherWord": "添加更多不常見的單詞。",
"unstable__errors.zxcvbn.suggestions.associatedYears": "避免與您有關的年份。",
"unstable__errors.zxcvbn.suggestions.capitalization": "大寫第一個字母以外的字母。",
"unstable__errors.zxcvbn.suggestions.dates": "避免與您有關的日期和年份。",
"unstable__errors.zxcvbn.suggestions.l33t": "避免可預測的字母替換,如將'@'替換為'a'。",
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "使用更長的鍵盤模式,並多次改變打字方向。",
"unstable__errors.zxcvbn.suggestions.noNeed": "您可以創建強大的密碼,而無需使用符號、數字或大寫字母。",
"unstable__errors.zxcvbn.suggestions.pwned": "如果您在其他地方使用此密碼,應該更改它。",
"unstable__errors.zxcvbn.suggestions.recentYears": "避免最近的年份。",
"unstable__errors.zxcvbn.suggestions.repeated": "避免重複的單詞和字符。",
"unstable__errors.zxcvbn.suggestions.reverseWords": "避免常見單詞的反向拼寫。",
"unstable__errors.zxcvbn.suggestions.sequences": "避免常見的字符序列。",
"unstable__errors.zxcvbn.suggestions.useWords": "使用多個單詞,但避免常見短語。",
"unstable__errors.zxcvbn.warnings.common": "這是常用的密碼。",
"unstable__errors.zxcvbn.warnings.commonNames": "常見名字和姓氏容易被猜測。",
"unstable__errors.zxcvbn.warnings.dates": "日期容易被猜測。",
"unstable__errors.zxcvbn.warnings.extendedRepeat": "重複字符模式如“abcabcabc”容易被猜測。",
"unstable__errors.zxcvbn.warnings.keyPattern": "短鍵盤模式容易被猜測。",
"unstable__errors.zxcvbn.warnings.namesByThemselves": "單個名字或姓氏容易被猜測。",
"unstable__errors.zxcvbn.warnings.pwned": "您的密碼在互聯網上的數據洩露中曝光。",
"unstable__errors.zxcvbn.warnings.recentYears": "最近的年份容易被猜測。",
"unstable__errors.zxcvbn.warnings.sequences": "常見的字符序列如“abc”容易被猜測。",
"unstable__errors.zxcvbn.warnings.similarToCommon": "這與常用密碼類似。",
"unstable__errors.zxcvbn.warnings.simpleRepeat": "重複字符如“aaa”容易被猜測。",
"unstable__errors.zxcvbn.warnings.straightRow": "鍵盤上的直行鍵容易被猜測。",
"unstable__errors.zxcvbn.warnings.topHundred": "這是常用的密碼。",
"unstable__errors.zxcvbn.warnings.topTen": "這是常用的密碼。",
"unstable__errors.zxcvbn.warnings.userInputs": "不應包含任何個人或頁面相關數據。",
"unstable__errors.zxcvbn.warnings.wordByItself": "單詞容易被猜測。",
"userButton.action__addAccount": "新增帳戶",
"userButton.action__manageAccount": "管理帳戶",
"userButton.action__signOut": "登出",
"userButton.action__signOutAll": "登出所有帳戶",
"userProfile.backupCodePage.actionLabel__copied": "已複製!",
"userProfile.backupCodePage.actionLabel__copy": "全部複製",
"userProfile.backupCodePage.actionLabel__download": "下載 .txt",
"userProfile.backupCodePage.actionLabel__print": "列印",
"userProfile.backupCodePage.infoText1": "此帳戶將啟用備份代碼。",
"userProfile.backupCodePage.infoText2": "請保密並安全存放備份代碼。如果懷疑代碼已被泄露,可以重新生成備份代碼。",
"userProfile.backupCodePage.subtitle__codelist": "安全存放並保密。",
"userProfile.backupCodePage.successMessage": "備份代碼現已啟用。如果您無法使用身份驗證裝置,可以使用其中一個代碼登入您的帳戶。每個代碼只能使用一次。",
"userProfile.backupCodePage.successSubtitle": "如果您無法使用身份驗證裝置,可以使用其中一個代碼登入您的帳戶。",
"userProfile.backupCodePage.title": "新增備份代碼驗證",
"userProfile.backupCodePage.title__codelist": "備份代碼",
"userProfile.connectedAccountPage.formHint": "選擇提供者以連接您的帳戶。",
"userProfile.connectedAccountPage.formHint__noAccounts": "沒有可用的外部帳戶提供者。",
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} 將從此帳戶中移除。",
"userProfile.connectedAccountPage.removeResource.messageLine2": "您將無法再使用此連接帳戶,任何相關功能也將無法使用。",
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} 已從您的帳戶中移除。",
"userProfile.connectedAccountPage.removeResource.title": "移除連接帳戶",
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
"userProfile.connectedAccountPage.successMessage": "提供者已添加至您的帳戶",
"userProfile.connectedAccountPage.title": "新增連接帳戶",
"userProfile.deletePage.actionDescription": "在下方輸入\"刪除帳戶\"。",
"userProfile.deletePage.confirm": "刪除帳戶",
"userProfile.deletePage.messageLine1": "您確定要刪除您的帳戶嗎?",
"userProfile.deletePage.messageLine2": "此操作是永久且不可逆轉的。",
"userProfile.deletePage.title": "刪除帳戶",
"userProfile.emailAddressPage.emailCode.formHint": "將發送包含驗證碼的郵件至此電子郵件地址。",
"userProfile.emailAddressPage.emailCode.formSubtitle": "輸入發送至 {{identifier}} 的驗證碼。",
"userProfile.emailAddressPage.emailCode.formTitle": "驗證碼",
"userProfile.emailAddressPage.emailCode.resendButton": "未收到驗證碼?重新發送",
"userProfile.emailAddressPage.emailCode.successMessage": "電子郵件 {{identifier}} 已添加至您的帳戶。",
"userProfile.emailAddressPage.emailLink.formHint": "將發送包含驗證連結的郵件至此電子郵件地址。",
"userProfile.emailAddressPage.emailLink.formSubtitle": "點擊發送至 {{identifier}} 的郵件中的驗證連結。",
"userProfile.emailAddressPage.emailLink.formTitle": "驗證連結",
"userProfile.emailAddressPage.emailLink.resendButton": "未收到連結?重新發送",
"userProfile.emailAddressPage.emailLink.successMessage": "電子郵件 {{identifier}} 已添加至您的帳戶。",
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} 將從此帳戶中移除。",
"userProfile.emailAddressPage.removeResource.messageLine2": "您將無法再使用此電子郵件地址登入。",
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} 已從您的帳戶中移除。",
"userProfile.emailAddressPage.removeResource.title": "移除電子郵件地址",
"userProfile.emailAddressPage.title": "新增電子郵件地址",
"userProfile.emailAddressPage.verifyTitle": "驗證電子郵件地址",
"userProfile.formButtonPrimary__add": "新增",
"userProfile.formButtonPrimary__continue": "繼續",
"userProfile.formButtonPrimary__finish": "完成",
"userProfile.formButtonPrimary__remove": "移除",
"userProfile.formButtonPrimary__save": "儲存",
"userProfile.formButtonReset": "取消",
"userProfile.mfaPage.formHint": "選擇一種方法進行添加。",
"userProfile.mfaPage.title": "新增兩步驗證",
"userProfile.mfaPhoneCodePage.backButton": "使用現有號碼",
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "新增電話號碼",
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "登入時將不再接收來自此號碼的驗證碼。",
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "您的帳戶可能不夠安全。您確定要繼續嗎?",
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "已移除 {{mfaPhoneCode}} 的簡訊驗證。",
"userProfile.mfaPhoneCodePage.removeResource.title": "移除兩步驗證",
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "選擇現有電話號碼註冊簡訊驗證,或新增一個。",
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "沒有可用的電話號碼可註冊簡訊驗證,請新增一個。",
"userProfile.mfaPhoneCodePage.successMessage1": "登入時,您需要輸入發送至此電話號碼的驗證碼作為額外步驟。",
"userProfile.mfaPhoneCodePage.successMessage2": "請儲存這些備份代碼並安全保管。如果您無法使用身份驗證裝置,可以使用備份代碼登入。",
"userProfile.mfaPhoneCodePage.successTitle": "已啟用簡訊驗證",
"userProfile.mfaPhoneCodePage.title": "新增簡訊驗證",
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "掃描 QR 碼",
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "無法掃描 QR 碼?",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "在您的驗證器應用程式中設定新的登入方法,並掃描以下 QR 碼以將其連結至您的帳戶。",
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "在您的驗證器中設定新的登入方法,並輸入下方提供的金鑰。",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "確保已啟用基於時間或一次性密碼,然後完成連結您的帳戶。",
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "或者,如果您的驗證器支援 TOTP URI您也可以複製完整的 URI。",
"userProfile.mfaTOTPPage.removeResource.messageLine1": "登入時將不再需要來自此驗證器的驗證碼。",
"userProfile.mfaTOTPPage.removeResource.messageLine2": "您的帳戶可能不夠安全。您確定要繼續嗎?",
"userProfile.mfaTOTPPage.removeResource.successMessage": "已移除驗證器應用程式的兩步驗證。",
"userProfile.mfaTOTPPage.removeResource.title": "移除兩步驗證",
"userProfile.mfaTOTPPage.successMessage": "已啟用兩步驗證。登入時,您需要輸入來自此驗證器的驗證碼作為額外步驟。",
"userProfile.mfaTOTPPage.title": "新增驗證器應用程式",
"userProfile.mfaTOTPPage.verifySubtitle": "輸入您的驗證器生成的驗證碼",
"userProfile.mfaTOTPPage.verifyTitle": "驗證碼",
"userProfile.mobileButton__menu": "選單",
"userProfile.navbar.account": "個人資料",
"userProfile.navbar.description": "管理您的帳戶資訊",
"userProfile.navbar.security": "安全性",
"userProfile.navbar.title": "帳戶",
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} 將從此帳戶中移除。",
"userProfile.passkeyScreen.removeResource.title": "移除密碼鍵",
"userProfile.passkeyScreen.subtitle__rename": "您可以更改密碼鍵名稱,以便更容易找到。",
"userProfile.passkeyScreen.title__rename": "重新命名密碼鍵",
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "建議登出所有可能使用過您舊密碼的其他裝置。",
"userProfile.passwordPage.readonly": "您目前無法編輯密碼,因為只能透過企業連線登入。",
"userProfile.passwordPage.successMessage__set": "您的密碼已設定。",
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "所有其他裝置已登出。",
"userProfile.passwordPage.successMessage__update": "您的密碼已更新。",
"userProfile.passwordPage.title__set": "設定密碼",
"userProfile.passwordPage.title__update": "更新密碼",
"userProfile.phoneNumberPage.infoText": "將發送包含驗證碼的簡訊至此電話號碼。可能會產生訊息和資料費用。",
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} 將從此帳戶中移除。",
"userProfile.phoneNumberPage.removeResource.messageLine2": "您將無法再使用此電話號碼登入。",
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} 已從您的帳戶中移除。",
"userProfile.phoneNumberPage.removeResource.title": "移除電話號碼",
"userProfile.phoneNumberPage.successMessage": "{{identifier}} 已新增至您的帳戶。",
"userProfile.phoneNumberPage.title": "新增電話號碼",
"userProfile.phoneNumberPage.verifySubtitle": "輸入發送至 {{identifier}} 的驗證碼",
"userProfile.phoneNumberPage.verifyTitle": "驗證電話號碼",
"userProfile.profilePage.fileDropAreaHint": "建議尺寸 1:1最大 10MB。",
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "移除",
"userProfile.profilePage.imageFormSubtitle": "上傳",
"userProfile.profilePage.imageFormTitle": "個人形象",
"userProfile.profilePage.readonly": "您的個人資訊已由企業連線提供,無法編輯。",
"userProfile.profilePage.successMessage": "您的個人資料已更新。",
"userProfile.profilePage.title": "更新個人資料",
"userProfile.start.activeDevicesSection.destructiveAction": "登出裝置",
"userProfile.start.activeDevicesSection.title": "活躍裝置",
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "重試",
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "現在授權",
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "移除",
"userProfile.start.connectedAccountsSection.primaryButton": "連結帳戶",
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "所需範圍已更新,您可能遇到功能受限的情況。請重新授權此應用以避免任何問題",
"userProfile.start.connectedAccountsSection.title": "已連結帳戶",
"userProfile.start.dangerSection.deleteAccountButton": "刪除帳戶",
"userProfile.start.dangerSection.title": "刪除帳戶",
"userProfile.start.emailAddressesSection.destructiveAction": "移除電子郵件",
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "設為主要",
"userProfile.start.emailAddressesSection.detailsAction__primary": "完成驗證",
"userProfile.start.emailAddressesSection.detailsAction__unverified": "驗證",
"userProfile.start.emailAddressesSection.primaryButton": "新增電子郵件地址",
"userProfile.start.emailAddressesSection.title": "電子郵件地址",
"userProfile.start.enterpriseAccountsSection.title": "企業帳戶",
"userProfile.start.headerTitle__account": "個人資料詳情",
"userProfile.start.headerTitle__security": "安全性",
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "重新生成",
"userProfile.start.mfaSection.backupCodes.headerTitle": "備份代碼",
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "取得一組新的安全備份代碼。之前的備份代碼將被刪除且無法使用。",
"userProfile.start.mfaSection.backupCodes.title__regenerate": "重新生成備份代碼",
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "設為預設",
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "移除",
"userProfile.start.mfaSection.primaryButton": "新增雙重驗證",
"userProfile.start.mfaSection.title": "雙重驗證",
"userProfile.start.mfaSection.totp.destructiveActionTitle": "移除",
"userProfile.start.mfaSection.totp.headerTitle": "驗證器應用程式",
"userProfile.start.passkeysSection.menuAction__destructive": "移除",
"userProfile.start.passkeysSection.menuAction__rename": "重新命名",
"userProfile.start.passkeysSection.title": "通行證",
"userProfile.start.passwordSection.primaryButton__setPassword": "設定密碼",
"userProfile.start.passwordSection.primaryButton__updatePassword": "更新密碼",
"userProfile.start.passwordSection.title": "密碼",
"userProfile.start.phoneNumbersSection.destructiveAction": "移除電話號碼",
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "設為主要",
"userProfile.start.phoneNumbersSection.detailsAction__primary": "完成驗證",
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "驗證電話號碼",
"userProfile.start.phoneNumbersSection.primaryButton": "新增電話號碼",
"userProfile.start.phoneNumbersSection.title": "電話號碼",
"userProfile.start.profileSection.primaryButton": "更新個人資料",
"userProfile.start.profileSection.title": "個人資料",
"userProfile.start.usernameSection.primaryButton__setUsername": "設定使用者名稱",
"userProfile.start.usernameSection.primaryButton__updateUsername": "更新使用者名稱",
"userProfile.start.usernameSection.title": "使用者名稱",
"userProfile.start.web3WalletsSection.destructiveAction": "移除錢包",
"userProfile.start.web3WalletsSection.primaryButton": "Web3錢包",
"userProfile.start.web3WalletsSection.title": "Web3錢包",
"userProfile.usernamePage.successMessage": "您的使用者名稱已更新。",
"userProfile.usernamePage.title__set": "設定使用者名稱",
"userProfile.usernamePage.title__update": "更新使用者名稱",
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} 將從此帳戶中移除。",
"userProfile.web3WalletPage.removeResource.messageLine2": "您將無法再使用此 Web3 錢包登入。",
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} 已從您的帳戶中移除。",
"userProfile.web3WalletPage.removeResource.title": "移除 Web3 錢包",
"userProfile.web3WalletPage.subtitle__availableWallets": "選擇一個 Web3 錢包連線至您的帳戶。",
"userProfile.web3WalletPage.subtitle__unavailableWallets": "目前沒有可用的 Web3 錢包。",
"userProfile.web3WalletPage.successMessage": "錢包已新增至您的帳戶。",
"userProfile.web3WalletPage.title": "新增 Web3 錢包"
}

View file

@ -1,7 +1,4 @@
{
"clerkAuth.loginSuccess.action": "繼續會話",
"clerkAuth.loginSuccess.desc": "{{greeting}},很高興能夠繼續為你服務。讓我們接著剛剛的話題聊下去吧",
"clerkAuth.loginSuccess.title": "歡迎回來, {{nickName}}",
"error.backHome": "返回首頁",
"error.desc": "待會再試試,或者回到已知的世界",
"error.retry": "重新加載",
@ -87,7 +84,6 @@
"response.InsufficientQuota": "很抱歉,該金鑰的配額已達上限,請檢查帳戶餘額是否充足,或提升金鑰配額後再試",
"response.InvalidAccessCode": "密碼不正確或為空,請輸入正確的訪問密碼,或添加自定義 API 金鑰",
"response.InvalidBedrockCredentials": "Bedrock 驗證未通過,請檢查 AccessKeyId/SecretAccessKey 後重試",
"response.InvalidClerkUser": "很抱歉,你當前尚未登錄,請先登錄或註冊帳號後繼續操作",
"response.InvalidComfyUIArgs": "ComfyUI 設定不正確,請檢查 ComfyUI 設定後重試",
"response.InvalidGithubToken": "Github 個人存取權杖不正確或為空,請檢查 Github 個人存取權杖後再試一次",
"response.InvalidOllamaArgs": "Ollama 配置不正確,請檢查 Ollama 配置後重試",

View file

@ -145,12 +145,9 @@
"@aws-sdk/s3-request-presigner": "~3.932.0",
"@azure-rest/ai-inference": "1.0.0-beta.5",
"@azure/core-auth": "^1.10.1",
"@better-auth/expo": "1.4.6",
"@better-auth/passkey": "^1.4.6",
"@better-auth/expo": "1.4.17",
"@better-auth/passkey": "^1.4.17",
"@cfworker/json-schema": "^4.1.1",
"@clerk/localizations": "^3.32.1",
"@clerk/nextjs": "^6.36.5",
"@clerk/themes": "^2.4.46",
"@codesandbox/sandpack-react": "^2.20.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/utilities": "^3.2.2",
@ -239,8 +236,9 @@
"antd-style": "4.1.0",
"async-retry": "^1.3.3",
"bcryptjs": "^3.0.3",
"better-auth": "1.4.6",
"better-auth": "1.4.17",
"better-auth-harmony": "^1.2.5",
"better-call": "^1.2.0",
"brotli-wasm": "^3.0.1",
"chroma-js": "^3.2.0",
"class-variance-authority": "^0.7.1",

View file

@ -6,6 +6,8 @@
"dependencies": {
"@lobechat/builtin-tool-agent-builder": "workspace:*",
"@lobechat/builtin-tool-group-agent-builder": "workspace:*",
"@lobechat/business-const": "workspace:*",
"@lobechat/const": "workspace:*",
"@lobechat/builtin-tool-group-management": "workspace:*",
"@lobechat/builtin-tool-gtd": "workspace:*",
"@lobechat/builtin-tool-notebook": "workspace:*"

View file

@ -1,4 +1,6 @@
import { AgentBuilderIdentifier } from '@lobechat/builtin-tool-agent-builder';
import { DEFAULT_PROVIDER } from '@lobechat/business-const';
import { DEFAULT_MODEL } from '@lobechat/const';
import type { BuiltinAgentDefinition } from '../../types';
import { BUILTIN_AGENT_SLUGS } from '../../types';
@ -12,8 +14,8 @@ export const AGENT_BUILDER: BuiltinAgentDefinition = {
// Persist config - stored in database
persist: {
model: 'claude-sonnet-4-5-20250929',
provider: 'lobehub',
model: DEFAULT_MODEL,
provider: DEFAULT_PROVIDER,
},
// Runtime config - static systemRole

View file

@ -1,4 +1,6 @@
import { GroupAgentBuilderIdentifier } from '@lobechat/builtin-tool-group-agent-builder';
import { DEFAULT_PROVIDER } from '@lobechat/business-const';
import { DEFAULT_MODEL } from '@lobechat/const';
import type { BuiltinAgentDefinition } from '../../types';
import { BUILTIN_AGENT_SLUGS } from '../../types';
@ -12,8 +14,8 @@ export const GROUP_AGENT_BUILDER: BuiltinAgentDefinition = {
// Persist config - stored in database
persist: {
model: 'claude-sonnet-4-5-20250929',
provider: 'lobehub',
model: DEFAULT_MODEL,
provider: DEFAULT_PROVIDER,
},
// Runtime config - static systemRole

View file

@ -1,3 +1,6 @@
import { DEFAULT_PROVIDER } from '@lobechat/business-const';
import { DEFAULT_MODEL } from '@lobechat/const';
import type { BuiltinAgentDefinition } from '../../types';
import { BUILTIN_AGENT_SLUGS } from '../../types';
import { systemRoleTemplate } from './systemRole';
@ -9,8 +12,8 @@ export const PAGE_AGENT: BuiltinAgentDefinition = {
avatar: '/avatars/doc-copilot.png',
// Persist config - stored in database
persist: {
model: 'claude-sonnet-4-5-20250929',
provider: 'lobehub',
model: DEFAULT_MODEL,
provider: DEFAULT_PROVIDER,
},
// Runtime function - generates dynamic config

View file

@ -50,9 +50,30 @@ describe('UserMemoryTopicRepository', () => {
it('should return concatenated user message content', async () => {
await serverDB.insert(messages).values([
{ id: 'msg-1', content: 'Hello', role: 'user', topicId, userId },
{ id: 'msg-2', content: 'Hi there!', role: 'assistant', topicId, userId },
{ id: 'msg-3', content: 'How are you?', role: 'user', topicId, userId },
{
id: 'msg-1',
content: 'Hello',
role: 'user',
topicId,
userId,
createdAt: new Date('2024-01-01'),
},
{
id: 'msg-2',
content: 'Hi there!',
role: 'assistant',
topicId,
userId,
createdAt: new Date('2024-01-02'),
},
{
id: 'msg-3',
content: 'How are you?',
role: 'user',
topicId,
userId,
createdAt: new Date('2024-01-03'),
},
]);
const result = await repo.getUserMessagesQueryForTopic(topicId);

View file

@ -12,7 +12,6 @@ const ComfyUI: ModelProviderCard = {
chatModels: [],
description:
'A powerful open-source workflow engine for image, video, and audio generation, supporting models like SD, FLUX, Qwen, Hunyuan, and WAN with node-based editing and private deployment.',
enabled: true,
id: 'comfyui',
name: 'ComfyUI',
settings: {

View file

@ -6,7 +6,6 @@ import { type ModelProviderCard } from '@/types/llm';
const Fal: ModelProviderCard = {
chatModels: [],
description: 'A generative media platform built for developers.',
enabled: true,
id: 'fal',
name: 'Fal',
settings: {

View file

@ -5,8 +5,7 @@ export const ChatErrorType = {
// ******* Business Error Semantics ******* //
InvalidAccessCode: 'InvalidAccessCode', // is in valid password
InvalidClerkUser: 'InvalidClerkUser', // is not Clerk User
FreePlanLimit: 'FreePlanLimit', // is not Clerk User
FreePlanLimit: 'FreePlanLimit', // Free plan usage limit
SubscriptionPlanLimit: 'SubscriptionPlanLimit', // Subscription user limit exceeded
SubscriptionKeyMismatch: 'SubscriptionKeyMismatch', // Subscription key mismatch

View file

@ -4,34 +4,17 @@ import { extractBearerToken, getUserAuth } from '../auth';
// Mock auth constants
let mockEnableBetterAuth = false;
let mockEnableClerk = false;
let mockEnableNextAuth = false;
vi.mock('@/envs/auth', () => ({
get enableBetterAuth() {
return mockEnableBetterAuth;
},
get enableClerk() {
return mockEnableClerk;
},
get enableNextAuth() {
return mockEnableNextAuth;
},
}));
vi.mock('@/libs/clerk-auth', () => ({
ClerkAuth: class {
async getAuth() {
return {
clerkAuth: {
redirectToSignIn: vi.fn(),
},
userId: 'clerk-user-id',
};
}
},
}));
vi.mock('@/libs/next-auth', () => ({
default: {
auth: vi.fn().mockResolvedValue({
@ -62,7 +45,6 @@ describe('getUserAuth', () => {
beforeEach(() => {
vi.clearAllMocks();
mockEnableBetterAuth = false;
mockEnableClerk = false;
mockEnableNextAuth = false;
});
@ -70,22 +52,7 @@ describe('getUserAuth', () => {
await expect(getUserAuth()).rejects.toThrow('Auth method is not enabled');
});
it('should return clerk auth when clerk is enabled', async () => {
mockEnableClerk = true;
mockEnableNextAuth = false;
const auth = await getUserAuth();
expect(auth).toEqual({
clerkAuth: {
redirectToSignIn: expect.any(Function),
},
userId: 'clerk-user-id',
});
});
it('should return next auth when next auth is enabled', async () => {
mockEnableClerk = false;
mockEnableNextAuth = true;
const auth = await getUserAuth();
@ -100,20 +67,6 @@ describe('getUserAuth', () => {
});
});
it('should prioritize clerk auth over next auth when both are enabled', async () => {
mockEnableClerk = true;
mockEnableNextAuth = true;
const auth = await getUserAuth();
expect(auth).toEqual({
clerkAuth: {
redirectToSignIn: expect.any(Function),
},
userId: 'clerk-user-id',
});
});
it('should return better auth when better auth is enabled', async () => {
mockEnableBetterAuth = true;

View file

@ -1,16 +1,8 @@
import { headers } from 'next/headers';
import { enableBetterAuth, enableClerk, enableNextAuth } from '@/envs/auth';
import { enableBetterAuth, enableNextAuth } from '@/envs/auth';
export const getUserAuth = async () => {
if (enableClerk) {
const { ClerkAuth } = await import('@/libs/clerk-auth');
const clerkAuth = new ClerkAuth();
return await clerkAuth.getAuth();
}
if (enableBetterAuth) {
const { auth: betterAuth } = await import('@/auth');

View file

@ -0,0 +1,42 @@
/**
* Shared utility to check for deprecated Clerk environment variables.
* Used by both prebuild.mts (build time) and startServer.js (Docker runtime).
*
* IMPORTANT: Keep this file as CommonJS (.js) for compatibility with startServer.js
*/
const CLERK_MIGRATION_DOC_URL =
'https://lobehub.com/docs/self-hosting/advanced/auth/clerk-to-betterauth';
const CLERK_ENV_VARS = [
'NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY',
'CLERK_SECRET_KEY',
'CLERK_WEBHOOK_SECRET',
];
/**
* Check for deprecated Clerk environment variables and exit if found
* @param {object} options
* @param {string} [options.action='redeploy'] - Action hint in error message ('redeploy' or 'restart')
*/
function checkDeprecatedClerkEnv(options = {}) {
const { action = 'redeploy' } = options;
const foundClerkEnvVars = CLERK_ENV_VARS.filter((envVar) => process.env[envVar]);
if (foundClerkEnvVars.length > 0) {
console.error('\n' + '═'.repeat(70));
console.error('❌ ERROR: Clerk authentication is no longer supported!');
console.error('═'.repeat(70));
console.error('\nDetected deprecated Clerk environment variables:');
for (const envVar of foundClerkEnvVars) {
console.error(`${envVar}`);
}
console.error('\nClerk has been removed from LobeChat. Please migrate to Better Auth.');
console.error(`\n📖 Migration guide: ${CLERK_MIGRATION_DOC_URL}`);
console.error(`\nAfter migration, remove the Clerk environment variables and ${action}.`);
console.error('═'.repeat(70) + '\n');
process.exit(1);
}
}
module.exports = { checkDeprecatedClerkEnv };

View file

@ -1,5 +1,3 @@
import type { ExternalAccountJSON, UserJSON } from '@clerk/backend';
export type ClerkToBetterAuthMode = 'test' | 'prod';
export type DatabaseDriver = 'neon' | 'node';
@ -19,27 +17,62 @@ export type CSVUserRow = {
verified_phone_numbers: string;
};
export type ClerkExternalAccount = Pick<
ExternalAccountJSON,
'id' | 'provider' | 'provider_user_id' | 'approved_scopes'
> & {
// Clerk API response types (no SDK dependency)
export interface ClerkApiExternalAccount {
approved_scopes: string;
created_at?: number;
id: string;
provider: string;
provider_user_id: string;
updated_at?: number;
verification?: { status: string };
}
export interface ClerkApiEmailAddress {
email_address: string;
id: string;
}
export interface ClerkApiUser {
banned: boolean;
created_at: number;
email_addresses?: ClerkApiEmailAddress[];
external_accounts?: ClerkApiExternalAccount[];
id: string;
image_url: string;
lockout_expires_in_seconds: number | null;
password_enabled: boolean;
password_last_updated_at: number | null;
primary_email_address_id: string | null;
two_factor_enabled: boolean;
updated_at: number;
}
export interface ClerkApiUserListResponse {
data: ClerkApiUser[];
total_count: number;
}
export interface ClerkExternalAccount {
approved_scopes: string;
created_at?: number;
id: string;
provider: string;
provider_user_id: string;
updated_at?: number;
verificationStatus?: boolean;
};
}
export type ClerkUser = Pick<
UserJSON,
| 'id'
| 'image_url'
| 'created_at'
| 'updated_at'
| 'password_last_updated_at'
| 'password_enabled'
| 'banned'
| 'two_factor_enabled'
| 'lockout_expires_in_seconds'
> & {
export interface ClerkUser {
banned: boolean;
created_at: number;
external_accounts: ClerkExternalAccount[];
id: string;
image_url: string;
lockout_expires_in_seconds: number | null;
password_enabled: boolean;
password_last_updated_at: number | null;
primaryEmail?: string;
};
two_factor_enabled: boolean;
updated_at: number;
}

View file

@ -1,10 +1,9 @@
/* eslint-disable unicorn/prefer-top-level-await, unicorn/no-process-exit */
import { type User, createClerkClient } from '@clerk/backend';
import { writeFile } from 'node:fs/promises';
import { getClerkSecret, getMigrationMode, resolveDataPaths } from './_internal/config';
import './_internal/env';
import { ClerkUser } from './_internal/types';
import { ClerkApiUser, ClerkUser } from './_internal/types';
/**
* Fetch all Clerk users via REST API and persist them into a local JSON file.
@ -24,50 +23,58 @@ const ORDER_BY = '+created_at';
const DEFAULT_OUTPUT_PATH = resolveDataPaths().clerkUsersPath;
const formatDuration = (ms: number) => `${(ms / 1000).toFixed(1)}s`;
const CLERK_API_BASE = 'https://api.clerk.com/v1';
const sleep = (ms: number) =>
new Promise<void>((resolve) => {
setTimeout(resolve, ms);
});
function getClerkClient(secretKey: string) {
return createClerkClient({
secretKey,
async function fetchClerkApi<T>(secretKey: string, endpoint: string): Promise<T> {
const response = await fetch(`${CLERK_API_BASE}${endpoint}`, {
headers: {
Authorization: `Bearer ${secretKey}`,
},
});
if (!response.ok) {
throw new Error(`Clerk API error: ${response.status} ${response.statusText}`);
}
return response.json() as Promise<T>;
}
function mapClerkUser(user: User): ClerkUser {
const raw = user.raw!;
const primaryEmail = raw.email_addresses?.find(
(email) => email.id === raw.primary_email_address_id,
function mapClerkUser(user: ClerkApiUser): ClerkUser {
const primaryEmail = user.email_addresses?.find(
(email) => email.id === user.primary_email_address_id,
)?.email_address;
return {
banned: raw.banned,
created_at: raw.created_at,
external_accounts: (raw.external_accounts ?? []).map((acc) => ({
banned: user.banned,
created_at: user.created_at,
external_accounts: (user.external_accounts ?? []).map((acc) => ({
approved_scopes: acc.approved_scopes,
created_at: (acc as any).created_at,
created_at: acc.created_at,
id: acc.id,
provider: acc.provider,
provider_user_id: acc.provider_user_id,
updated_at: (acc as any).updated_at,
updated_at: acc.updated_at,
verificationStatus: acc.verification?.status === 'verified',
})),
id: raw.id,
image_url: raw.image_url,
lockout_expires_in_seconds: raw.lockout_expires_in_seconds,
password_enabled: raw.password_enabled,
password_last_updated_at: raw.password_last_updated_at,
id: user.id,
image_url: user.image_url,
lockout_expires_in_seconds: user.lockout_expires_in_seconds,
password_enabled: user.password_enabled,
password_last_updated_at: user.password_last_updated_at,
primaryEmail,
two_factor_enabled: raw.two_factor_enabled,
updated_at: raw.updated_at,
two_factor_enabled: user.two_factor_enabled,
updated_at: user.updated_at,
} satisfies ClerkUser;
}
async function fetchClerkUserPage(
offset: number,
clerkClient: ReturnType<typeof getClerkClient>,
secretKey: string,
pageIndex: number,
): Promise<ClerkUser[]> {
for (let attempt = 1; attempt <= MAX_RETRIES; attempt += 1) {
@ -76,12 +83,14 @@ async function fetchClerkUserPage(
`🚚 [clerk-export] Fetching page #${pageIndex + 1} offset=${offset} limit=${PAGE_SIZE} (attempt ${attempt}/${MAX_RETRIES})`,
);
const { data } = await clerkClient.users.getUserList({
limit: PAGE_SIZE,
offset,
orderBy: ORDER_BY,
const params = new URLSearchParams({
limit: String(PAGE_SIZE),
offset: String(offset),
order_by: ORDER_BY,
});
const data = await fetchClerkApi<ClerkApiUser[]>(secretKey, `/users?${params}`);
console.log(
`📥 [clerk-export] Received page #${pageIndex + 1} (${data.length} users) offset=${offset}`,
);
@ -138,16 +147,14 @@ async function runWithConcurrency<T>(
}
async function fetchAllClerkUsers(secretKey: string): Promise<ClerkUser[]> {
const clerkClient = getClerkClient(secretKey);
const userMap = new Map<string, ClerkUser>();
const firstPageResponse = await clerkClient.users.getUserList({
limit: PAGE_SIZE,
offset: 0,
orderBy: ORDER_BY,
});
const totalCount = firstPageResponse.totalCount ?? firstPageResponse.data.length;
// Get total count first
const countResponse = await fetchClerkApi<{ total_count: number }>(
secretKey,
'/users/count',
);
const totalCount = countResponse.total_count;
const totalPages = Math.ceil(totalCount / PAGE_SIZE);
const offsets = Array.from({ length: totalPages }, (_, pageIndex) => pageIndex * PAGE_SIZE);
@ -156,7 +163,7 @@ async function fetchAllClerkUsers(secretKey: string): Promise<ClerkUser[]> {
);
await runWithConcurrency(offsets, CONCURRENCY, async (offset, index) => {
const page = await fetchClerkUserPage(offset, clerkClient, index);
const page = await fetchClerkUserPage(offset, secretKey, index);
for (const user of page) {
userMap.set(user.id, user);

View file

@ -4,7 +4,7 @@ import path from 'node:path';
// 配置项
const config: Config = {
dirPath: './locales/en-US', // 替换为你的目录路径
ignoredFiles: ['clerk', 'models', 'providers', 'auth'], // 需要忽略的文件名
ignoredFiles: ['models', 'providers', 'auth'], // 需要忽略的文件名
};
interface FileCount {

View file

@ -138,124 +138,6 @@ const assertSpeedInsightsAndAnalyticsRemoved = (code: string) =>
!/import\s+\{\s*SpeedInsights\s*\}\s+from\b/.test(code) &&
!/import\s+Analytics\s+from\b/.test(code);
const removeClerkLogic = (code: string) => {
const ast = parse(Lang.Tsx, code);
const root = ast.root();
const edits: Array<{ start: number; end: number; text: string }> = [];
// Remove Clerk import - try multiple patterns
const clerkImportPatterns = [
{ pattern: 'import Clerk from $SOURCE' },
{ pattern: "import Clerk from './Clerk'" },
{ pattern: "import Clerk from './Clerk/index'" },
];
for (const pattern of clerkImportPatterns) {
const clerkImport = root.find({
rule: pattern,
});
if (clerkImport) {
const range = clerkImport.range();
edits.push({ start: range.start.index, end: range.end.index, text: '' });
break;
}
}
const findClerkIfStatement = () => {
const directMatch = root.find({
rule: {
pattern: 'if (authEnv.NEXT_PUBLIC_ENABLE_CLERK_AUTH) { $$$ }',
},
});
if (directMatch) return directMatch;
const allIfStatements = root.findAll({
rule: {
kind: 'if_statement',
},
});
for (const ifStmt of allIfStatements) {
const condition = ifStmt.find({
rule: {
pattern: 'authEnv.NEXT_PUBLIC_ENABLE_CLERK_AUTH',
},
});
if (condition) return ifStmt;
}
return null;
};
const clerkIfStatement = findClerkIfStatement();
if (clerkIfStatement) {
const ifRange = clerkIfStatement.range();
const elseClause = clerkIfStatement.find({
rule: {
kind: 'else_clause',
},
});
if (elseClause) {
const elseIfStmt = elseClause.find({
rule: {
kind: 'if_statement',
},
});
if (elseIfStmt) {
// Promote the first else-if to a top-level if and keep the rest of the chain
const elseRange = elseClause.range();
const replacement = code
.slice(elseRange.start.index, elseRange.end.index)
.replace(/^\s*else\s+/, '');
edits.push({
start: ifRange.start.index,
end: ifRange.end.index,
text: replacement,
});
} else {
const elseBlock = elseClause.find({
rule: {
kind: 'statement_block',
},
});
if (elseBlock) {
edits.push({
start: ifRange.start.index,
end: ifRange.end.index,
text: code.slice(elseBlock.range().start.index, elseBlock.range().end.index),
});
} else {
edits.push({ start: ifRange.start.index, end: ifRange.end.index, text: '' });
}
}
} else {
edits.push({ start: ifRange.start.index, end: ifRange.end.index, text: '' });
}
}
// Apply edits
if (edits.length === 0) return code;
edits.sort((a, b) => b.start - a.start);
let result = code;
for (const edit of edits) {
result = result.slice(0, edit.start) + edit.text + result.slice(edit.end);
}
return result;
};
const assertClerkLogicRemoved = (code: string) =>
!/\bNEXT_PUBLIC_ENABLE_CLERK_AUTH\b/.test(code) &&
!/\bauthEnv\.NEXT_PUBLIC_ENABLE_CLERK_AUTH\b/.test(code);
const removeManifestFromMetadata = (code: string) => {
const ast = parse(Lang.Tsx, code);
const root = ast.root();
@ -387,17 +269,7 @@ export const modifyAppCode = async (TEMP_DIR: string) => {
assertAfter: assertSpeedInsightsAndAnalyticsRemoved,
});
// 6. Remove Clerk logic from src/layout/AuthProvider/index.tsx
const authProviderPath = path.join(TEMP_DIR, 'src/layout/AuthProvider/index.tsx');
console.log(' Processing src/layout/AuthProvider/index.tsx...');
await updateFile({
filePath: authProviderPath,
name: 'modifyAppCode:removeClerkLogic',
transformer: removeClerkLogic,
assertAfter: assertClerkLogicRemoved,
});
// 7. Replace mdx Image component with next/image export
// 6. Replace mdx Image component with next/image export
const mdxImagePath = path.join(TEMP_DIR, 'src/components/mdx/Image.tsx');
console.log(' Processing src/components/mdx/Image.tsx...');
await writeFileEnsuring({
@ -407,7 +279,7 @@ export const modifyAppCode = async (TEMP_DIR: string) => {
assertAfter: (code) => normalizeEol(code).trim() === "export { default } from 'next/image';",
});
// 8. Remove manifest from metadata
// 7. Remove manifest from metadata
const metadataPath = path.join(TEMP_DIR, 'src/app/[variants]/metadata.ts');
console.log(' Processing src/app/[variants]/metadata.ts...');
await updateFile({
@ -424,7 +296,6 @@ if (isDirectRun(import.meta.url)) {
{ lang: Lang.Tsx, path: 'src/layout/GlobalProvider/index.tsx' },
{ lang: Lang.Tsx, path: 'src/app/[variants]/(main)/settings/features/SettingsContent.tsx' },
{ lang: Lang.Tsx, path: 'src/app/[variants]/layout.tsx' },
{ lang: Lang.Tsx, path: 'src/layout/AuthProvider/index.tsx' },
{ lang: Lang.Tsx, path: 'src/components/mdx/Image.tsx' },
{ lang: Lang.Tsx, path: 'src/app/[variants]/metadata.ts' },
]);

View file

@ -11,7 +11,6 @@
* Files to ignore at file level (won't be scanned at all)
*/
export const IGNORED_FILES = [
'clerk.ts', // Clerk third-party library translations
'providers.ts', // Dynamically generated from DEFAULT_MODEL_PROVIDER_LIST
'models.ts', // Dynamically generated from LOBE_DEFAULT_MODEL_LIST
'auth.ts', // Auth-related dynamic keys
@ -77,7 +76,7 @@ export const PROTECTED_KEY_PATTERNS = [
* How to use:
*
* 1. IGNORED_FILES - Files to completely skip during analysis:
* Add filename with .ts extension (e.g., 'clerk.ts')
* Add filename with .ts extension (e.g., 'auth.ts')
* These files won't be scanned at all
*
* 2. PROTECTED_KEY_PATTERNS - Namespace/patterns to protect:

View file

@ -1,4 +1,5 @@
import { execSync } from 'node:child_process';
import { createRequire } from 'node:module';
import * as dotenv from 'dotenv';
import dotenvExpand from 'dotenv-expand';
import { existsSync } from 'node:fs';
@ -6,6 +7,10 @@ import { rm } from 'node:fs/promises';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
// Use createRequire for CommonJS module compatibility
const require = createRequire(import.meta.url);
const { checkDeprecatedClerkEnv } = require('./_shared/checkDeprecatedClerkEnv.js');
const isDesktop = process.env.NEXT_PUBLIC_IS_DESKTOP_APP === '1';
const isBundleAnalyzer = process.env.ANALYZE === 'true' && process.env.CI === 'true';
@ -17,13 +22,9 @@ if (isDesktop) {
}
// Auth flags - use process.env directly for build-time dead code elimination
const enableClerk =
process.env.NEXT_PUBLIC_ENABLE_CLERK_AUTH === '1'
? true
: !!process.env.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY;
const enableBetterAuth = process.env.NEXT_PUBLIC_ENABLE_BETTER_AUTH === '1';
// Better Auth is the default auth solution when NextAuth is not explicitly enabled
const enableNextAuth = process.env.NEXT_PUBLIC_ENABLE_NEXT_AUTH === '1';
const enableAuth = enableClerk || enableBetterAuth || enableNextAuth || false;
const enableBetterAuth = !enableNextAuth;
const getCommandVersion = (command: string): string | null => {
try {
@ -62,10 +63,8 @@ const printEnvInfo = () => {
// Auth flags
console.log('\n Auth Flags:');
console.log(` enableClerk: ${enableClerk}`);
console.log(` enableBetterAuth: ${enableBetterAuth}`);
console.log(` enableNextAuth: ${enableNextAuth}`);
console.log(` enableAuth: ${enableAuth}`);
console.log('─'.repeat(50));
};
@ -161,6 +160,9 @@ export const runPrebuild = async (targetDir: string = 'src') => {
const isMainModule = process.argv[1] === fileURLToPath(import.meta.url);
if (isMainModule) {
// Check for deprecated Clerk env vars first - fail fast if found
checkDeprecatedClerkEnv();
printEnvInfo();
// 执行删除操作
console.log('\nStarting prebuild cleanup...');

View file

@ -1,6 +1,17 @@
const dns = require('node:dns').promises;
const fs = require('node:fs').promises;
const path = require('node:path');
const { spawn } = require('node:child_process');
const { existsSync } = require('node:fs');
// Resolve shared module path for both local dev and Docker environments
// Local: scripts/serverLauncher/startServer.js -> scripts/_shared/...
// Docker: /app/startServer.js -> /app/scripts/_shared/...
const localPath = path.join(__dirname, '..', '_shared', 'checkDeprecatedClerkEnv.js');
const dockerPath = '/app/scripts/_shared/checkDeprecatedClerkEnv.js';
const sharedModulePath = existsSync(localPath) ? localPath : dockerPath;
const { checkDeprecatedClerkEnv } = require(sharedModulePath);
// Set file paths
const DB_MIGRATION_SCRIPT_PATH = '/app/docker.cjs';
@ -9,8 +20,7 @@ const PROXYCHAINS_CONF_PATH = '/etc/proxychains4.conf';
// Function to check if a string is a valid IP address
const isValidIP = (ip, version = 4) => {
const ipv4Regex =
/^(25[0-5]|2[0-4]\d|[01]?\d{1,2})(\.(25[0-5]|2[0-4]\d|[01]?\d{1,2})){3}$/;
const ipv4Regex = /^(25[0-5]|2[0-4]\d|[01]?\d{1,2})(\.(25[0-5]|2[0-4]\d|[01]?\d{1,2})){3}$/;
const ipv6Regex =
/^(([\da-f]{1,4}:){7}[\da-f]{1,4}|([\da-f]{1,4}:){1,7}:|([\da-f]{1,4}:){1,6}:[\da-f]{1,4}|([\da-f]{1,4}:){1,5}(:[\da-f]{1,4}){1,2}|([\da-f]{1,4}:){1,4}(:[\da-f]{1,4}){1,3}|([\da-f]{1,4}:){1,3}(:[\da-f]{1,4}){1,4}|([\da-f]{1,4}:){1,2}(:[\da-f]{1,4}){1,5}|[\da-f]{1,4}:((:[\da-f]{1,4}){1,6})|:((:[\da-f]{1,4}){1,7}|:)|fe80:(:[\da-f]{0,4}){0,4}%[\da-z]+|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}\d){0,1}\d)\.){3}(25[0-5]|(2[0-4]|1{0,1}\d){0,1}\d)|([\da-f]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}\d){0,1}\d)\.){3}(25[0-5]|(2[0-4]|1{0,1}\d){0,1}\d))$/;
@ -74,10 +84,13 @@ const runProxyChainsConfGenerator = async (url) => {
let ip = isValidIP(host, 4) ? host : await resolveHostIP(host, 4);
const proxyDNSConfig = process.env.ENABLE_PROXY_DNS === '1' ? `
const proxyDNSConfig =
process.env.ENABLE_PROXY_DNS === '1'
? `
proxy_dns
remote_dns_subnet 224
`.trim() : '';
`.trim()
: '';
const configContent = `
localnet 127.0.0.0/8
@ -91,7 +104,9 @@ tcp_connect_time_out 8000
tcp_read_time_out 15000
[ProxyList]
${protocol} ${ip} ${port} ${user} ${pass}
`.replace(/\n{2,}/g, '\n').trim();
`
.replaceAll(/\n{2,}/g, '\n')
.trim();
await fs.writeFile(PROXYCHAINS_CONF_PATH, configContent);
console.log(`✅ ProxyChains: All outgoing traffic routed via ${url}.`);
@ -124,6 +139,9 @@ const runServer = async () => {
// Main execution block
(async () => {
// Check for deprecated Clerk env vars first - fail fast if found
checkDeprecatedClerkEnv({ action: 'restart' });
console.log('🌐 DNS Server:', dns.getServers());
console.log('-------------------------------------');

View file

@ -1,73 +0,0 @@
{
"backup_code_enabled": false,
"banned": false,
"create_organization_enabled": true,
"created_at": 1713709987911,
"delete_self_enabled": true,
"email_addresses": [
{
"created_at": 1713709977919,
"email_address": "arvinx@foxmail.com",
"id": "idn_2fPkD9X1lfzSn5lJVDGyochYq8k",
"linked_to": [],
"object": "email_address",
"reserved": false,
"updated_at": 1713709987951,
"verification": []
}
],
"external_accounts": [
{
"approved_scopes": "read:user user:email",
"avatar_url": "https://avatars.githubusercontent.com/u/28616219?v=4",
"created_at": 1713709542104,
"email_address": "arvinx@foxmail.com",
"first_name": "Arvin",
"id": "eac_2fPjKROeJ1bBs8Uxa6RFMxKogTB",
"identification_id": "idn_2fPjyV3sqtQJZUbEzdK2y23a1bq",
"image_url": "https://img.clerk.com/eyJ0eXBlIjoicHJveHkiLCJzcmMiOiJodHRwczovL2F2YXRhcnMuZ2l0aHVidXNlcmNvbnRlbnQuY29tL3UvMjg2MTYyMTk/dj00IiwicyI6IkhCeHE5NmdlRk85ekRxMjJlR05EalUrbVFBbmVDZjRVQkpwNGYxcW5JajQifQ",
"label": null,
"last_name": "Xu",
"object": "external_account",
"provider": "oauth_github",
"provider_user_id": "28616219",
"public_metadata": {},
"updated_at": 1713709542104,
"username": "arvinxx",
"verification": {
"attempts": null,
"expire_at": 1713710140131,
"status": "verified",
"strategy": "oauth_github"
}
}
],
"external_id": null,
"first_name": "Arvin",
"has_image": true,
"id": "user_2fPkELglwI48WpZVwwdAxBKBPK6",
"image_url": "https://img.clerk.com/eyJ0eXBlIjoicHJveHkiLCJzcmMiOiJodHRwczovL2ltYWdlcy5jbGVyay5kZXYvb2F1dGhfZ2l0aHViL2ltZ18yZlBrRU1adVpwdlpvZFBHcVREdHJnTzJJM3cifQ",
"last_active_at": 1713709987902,
"last_name": "Xu",
"last_sign_in_at": null,
"locked": false,
"lockout_expires_in_seconds": null,
"object": "user",
"passkeys": [],
"password_enabled": false,
"phone_numbers": [],
"primary_email_address_id": "idn_2fPkD9X1lfzSn5lJVDGyochYq8k",
"primary_phone_number_id": null,
"primary_web3_wallet_id": null,
"private_metadata": {},
"profile_image_url": "https://images.clerk.dev/oauth_github/img_2fPkEMZuZpvZodPGqTDtrgO2I3w",
"public_metadata": {},
"saml_accounts": [],
"totp_enabled": false,
"two_factor_enabled": false,
"unsafe_metadata": {},
"updated_at": 1713709987972,
"username": "arvinxx",
"verification_attempts_remaining": 100,
"web3_wallets": []
}

View file

@ -1,95 +0,0 @@
import { NextResponse } from 'next/server';
import { serverDB } from '@/database/server';
import { authEnv } from '@/envs/auth';
import { pino } from '@/libs/logger';
import { UserService } from '@/server/services/user';
import { validateRequest } from './validateRequest';
if (authEnv.NEXT_PUBLIC_ENABLE_CLERK_AUTH && !authEnv.CLERK_WEBHOOK_SECRET) {
throw new Error('`CLERK_WEBHOOK_SECRET` environment variable is missing');
}
export const POST = async (req: Request): Promise<NextResponse> => {
const payload = await validateRequest(req, authEnv.CLERK_WEBHOOK_SECRET!);
if (!payload) {
return NextResponse.json(
{ error: 'webhook verification failed or payload was malformed' },
{ status: 400 },
);
}
const { type, data } = payload;
pino.trace(`clerk webhook payload: ${{ data, type }}`);
const userService = new UserService(serverDB);
switch (type) {
case 'user.created': {
pino.info('creating user due to clerk webhook');
const result = await userService.createUser(data.id, data);
return NextResponse.json(result, { status: 200 });
}
case 'user.deleted': {
if (!data.id) {
pino.warn('clerk sent a delete user request, but no user ID was included in the payload');
return NextResponse.json({ message: 'ok' }, { status: 200 });
}
pino.info('delete user due to clerk webhook');
await userService.deleteUser(data.id);
return NextResponse.json({ message: 'user deleted' }, { status: 200 });
}
case 'user.updated': {
const result = await userService.updateUser(data.id, data);
return NextResponse.json(result, { status: 200 });
}
default: {
pino.warn(
`${req.url} received event type "${type}", but no handler is defined for this type`,
);
return NextResponse.json({ error: `unrecognised payload type: ${type}` }, { status: 400 });
}
// case 'user.updated':
// break;
// case 'session.created':
// break;
// case 'session.ended':
// break;
// case 'session.removed':
// break;
// case 'session.revoked':
// break;
// case 'email.created':
// break;
// case 'sms.created':
// break;
// case 'organization.created':
// break;
// case 'organization.updated':
// break;
// case 'organization.deleted':
// break;
// case 'organizationMembership.created':
// break;
// case 'organizationMembership.deleted':
// break;
// case 'organizationMembership.updated':
// break;
// case 'organizationInvitation.accepted':
// break;
// case 'organizationInvitation.created':
// break;
// case 'organizationInvitation.revoked':
// break;
}
};

View file

@ -1,22 +0,0 @@
import { type WebhookEvent } from '@clerk/nextjs/server';
import { headers } from 'next/headers';
import { Webhook } from 'svix';
export const validateRequest = async (request: Request, secret: string) => {
const payloadString = await request.text();
const headerPayload = await headers();
const svixHeaders = {
'svix-id': headerPayload.get('svix-id')!,
'svix-signature': headerPayload.get('svix-signature')!,
'svix-timestamp': headerPayload.get('svix-timestamp')!,
};
const wh = new Webhook(secret);
try {
return wh.verify(payloadString, svixHeaders) as WebhookEvent;
} catch {
console.error('incoming webhook failed verification');
return;
}
};

View file

@ -8,10 +8,6 @@ import { createErrorResponse } from '@/utils/errorResponse';
import { RequestHandler, checkAuth } from './index';
import { checkAuthMethod } from './utils';
vi.mock('@clerk/nextjs/server', () => ({
getAuth: vi.fn(),
}));
vi.mock('@/utils/errorResponse', () => ({
createErrorResponse: vi.fn(),
}));
@ -24,6 +20,14 @@ vi.mock('@lobechat/utils/server', () => ({
getXorPayload: vi.fn(),
}));
vi.mock('@/envs/auth', async (importOriginal) => {
const actual = await importOriginal<typeof import('@/envs/auth')>();
return {
...actual,
enableBetterAuth: false,
};
});
describe('checkAuth', () => {
const mockHandler: RequestHandler = vi.fn();
const mockRequest = new Request('https://example.com');

View file

@ -1,4 +1,3 @@
import { type AuthObject } from '@clerk/backend';
import {
AgentRuntimeError,
type ChatCompletionErrorPayload,
@ -6,7 +5,6 @@ import {
} from '@lobechat/model-runtime';
import { ChatErrorType, type ClientSecretPayload } from '@lobechat/types';
import { getXorPayload } from '@lobechat/utils/server';
import { type NextRequest } from 'next/server';
import { getServerDB } from '@/database/core/db-adaptor';
import { type LobeChatDatabase } from '@/database/type';
@ -15,9 +13,7 @@ import {
LOBE_CHAT_OIDC_AUTH_HEADER,
OAUTH_AUTHORIZED,
enableBetterAuth,
enableClerk,
} from '@/envs/auth';
import { ClerkAuth } from '@/libs/clerk-auth';
import { validateOIDCJWT } from '@/libs/oidc-provider/jwt';
import { createErrorResponse } from '@/utils/errorResponse';
@ -77,16 +73,6 @@ export const checkAuth =
if (!authorization) throw AgentRuntimeError.createError(ChatErrorType.Unauthorized);
// check the Auth With payload and clerk auth
let clerkAuth = {} as AuthObject;
// TODO: V2 完整移除 client 模式下的 clerk 集成代码
if (enableClerk) {
const auth = new ClerkAuth();
const data = auth.getAuthFromRequest(req as NextRequest);
clerkAuth = data.clerkAuth;
}
jwtPayload = getXorPayload(authorization);
const oidcAuthorization = req.headers.get(LOBE_CHAT_OIDC_AUTH_HEADER);
@ -106,7 +92,6 @@ export const checkAuth =
checkAuthMethod({
apiKey: jwtPayload.apiKey,
betterAuthAuthorized,
clerkAuth,
nextAuthAuthorized: oauthAuthorized,
});
} catch (e) {

View file

@ -1,9 +1,7 @@
import { type AuthObject } from '@clerk/backend';
import { beforeEach, describe, expect, it, vi } from 'vitest';
import { checkAuthMethod } from './utils';
let enableClerkMock = false;
let enableNextAuthMock = false;
let enableBetterAuthMock = false;
@ -12,9 +10,6 @@ vi.mock('@/envs/auth', async (importOriginal) => {
return {
...(data as any),
get enableClerk() {
return enableClerkMock;
},
get enableBetterAuth() {
return enableBetterAuthMock;
},
@ -29,29 +24,6 @@ describe('checkAuthMethod', () => {
vi.clearAllMocks();
});
it('should pass with valid Clerk auth', () => {
enableClerkMock = true;
expect(() =>
checkAuthMethod({
clerkAuth: { userId: 'someUserId' } as AuthObject,
}),
).not.toThrow();
enableClerkMock = false;
});
it('should throw error with invalid Clerk auth', () => {
enableClerkMock = true;
try {
checkAuthMethod({
clerkAuth: {} as any,
});
} catch (e) {
expect(e).toEqual({ errorType: 'InvalidClerkUser' });
}
enableClerkMock = false;
});
it('should pass with valid Next auth', () => {
enableNextAuthMock = true;
expect(() =>

View file

@ -1,13 +1,8 @@
import { type AuthObject } from '@clerk/backend';
import { AgentRuntimeError } from '@lobechat/model-runtime';
import { ChatErrorType } from '@lobechat/types';
import { enableBetterAuth, enableClerk, enableNextAuth } from '@/envs/auth';
import { enableBetterAuth, enableNextAuth } from '@/envs/auth';
interface CheckAuthParams {
apiKey?: string;
betterAuthAuthorized?: boolean;
clerkAuth?: AuthObject;
nextAuthAuthorized?: boolean;
}
/**
@ -16,20 +11,10 @@ interface CheckAuthParams {
* @param {CheckAuthParams} params - Authentication parameters extracted from headers.
* @param {string} [params.apiKey] - The user API key.
* @param {boolean} [params.betterAuthAuthorized] - Whether the Better Auth session exists.
* @param {AuthObject} [params.clerkAuth] - Clerk authentication payload from middleware.
* @param {boolean} [params.nextAuthAuthorized] - Whether the OAuth 2 header is provided.
* @throws {AgentRuntimeError} If authentication fails.
*/
export const checkAuthMethod = (params: CheckAuthParams) => {
const { apiKey, betterAuthAuthorized, nextAuthAuthorized, clerkAuth } = params;
// clerk auth handler
if (enableClerk) {
// if there is no userId, means the use is not login, just throw error
if (!(clerkAuth as any)?.userId)
throw AgentRuntimeError.createError(ChatErrorType.InvalidClerkUser);
// if the user is login, just return
else return;
}
const { apiKey, betterAuthAuthorized, nextAuthAuthorized } = params;
// if better auth session exists
if (enableBetterAuth && betterAuthAuthorized) return;

View file

@ -1,5 +1,4 @@
// @vitest-environment node
import { getAuth } from '@clerk/nextjs/server';
import { LobeRuntimeAI, ModelRuntime } from '@lobechat/model-runtime';
import { ChatErrorType } from '@lobechat/types';
import { getXorPayload } from '@lobechat/utils/server';
@ -11,10 +10,6 @@ import { initModelRuntimeFromDB } from '@/server/modules/ModelRuntime';
import { POST } from './route';
vi.mock('@clerk/nextjs/server', () => ({
getAuth: vi.fn(),
}));
vi.mock('@/app/(backend)/middleware/auth/utils', () => ({
checkAuthMethod: vi.fn(),
}));
@ -28,17 +23,11 @@ vi.mock('@/server/modules/ModelRuntime', () => ({
createTraceOptions: vi.fn().mockReturnValue({}),
}));
// Use vi.hoisted to ensure mockState is initialized before mocks are set up
const mockState = vi.hoisted(() => ({ enableClerk: false }));
// 模拟 @/const/auth 模块
vi.mock('@/envs/auth', async (importOriginal) => {
const modules = await importOriginal();
const actual = await importOriginal<typeof import('@/envs/auth')>();
return {
...(modules as any),
get enableClerk() {
return mockState.enableClerk;
},
...actual,
enableBetterAuth: false,
};
});
@ -58,7 +47,6 @@ beforeEach(() => {
afterEach(() => {
// 清除模拟调用历史
vi.clearAllMocks();
mockState.enableClerk = false;
});
describe('POST handler', () => {
@ -108,42 +96,6 @@ describe('POST handler', () => {
});
});
it('should have pass clerk Auth when enable clerk', async () => {
mockState.enableClerk = true;
vi.mocked(getXorPayload).mockReturnValueOnce({
apiKey: 'test-api-key',
azureApiVersion: 'v1',
});
const mockParams = Promise.resolve({ provider: 'test-provider' });
vi.mocked(getAuth).mockReturnValue({} as any);
vi.mocked(checkAuthMethod).mockReset();
const mockRuntime: LobeRuntimeAI = { baseURL: 'abc', chat: vi.fn() };
// Mock initModelRuntimeFromDB
vi.mocked(initModelRuntimeFromDB).mockResolvedValue(new ModelRuntime(mockRuntime));
const request = new Request(new URL('https://test.com'), {
method: 'POST',
body: JSON.stringify({ model: 'test-model' }),
headers: {
[LOBE_CHAT_AUTH_HEADER]: 'some-valid-token',
[OAUTH_AUTHORIZED]: '1',
},
});
await POST(request, { params: mockParams });
expect(checkAuthMethod).toBeCalledWith({
apiKey: 'test-api-key',
betterAuthAuthorized: false,
clerkAuth: {},
nextAuthAuthorized: true,
});
});
it('should return InternalServerError error when throw a unknown error', async () => {
const mockParams = Promise.resolve({ provider: 'test-provider' });
vi.mocked(getXorPayload).mockImplementationOnce(() => {

View file

@ -9,10 +9,6 @@ import { initModelRuntimeFromDB } from '@/server/modules/ModelRuntime';
import { GET } from './route';
vi.mock('@clerk/nextjs/server', () => ({
getAuth: vi.fn(),
}));
vi.mock('@/app/(backend)/middleware/auth/utils', () => ({
checkAuthMethod: vi.fn(),
}));
@ -21,6 +17,14 @@ vi.mock('@lobechat/utils/server', () => ({
getXorPayload: vi.fn(),
}));
vi.mock('@/envs/auth', async (importOriginal) => {
const actual = await importOriginal<typeof import('@/envs/auth')>();
return {
...actual,
enableBetterAuth: false,
};
});
vi.mock('@/server/modules/ModelRuntime', () => ({
initModelRuntimeFromDB: vi.fn(),
}));

View file

@ -1,27 +0,0 @@
import { SignIn } from '@clerk/nextjs';
import { BRANDING_NAME } from '@lobechat/business-const';
import { enableClerk } from '@/envs/auth';
import { notFound } from '@/libs/next/navigation';
import { metadataModule } from '@/server/metadata';
import { translation } from '@/server/translation';
import { type DynamicLayoutProps } from '@/types/next';
import { RouteVariants } from '@/utils/server/routeVariants';
export const generateMetadata = async (props: DynamicLayoutProps) => {
const locale = await RouteVariants.getLocale(props);
const { t } = await translation('clerk', locale);
return metadataModule.generate({
description: t('signIn.start.subtitle'),
title: t('signIn.start.title', { applicationName: BRANDING_NAME }),
url: '/login',
});
};
const Page = () => {
if (!enableClerk) return notFound();
return <SignIn path="/login" />;
};
export default Page;

View file

@ -68,7 +68,8 @@ const BtnListLoading = memo(() => {
* ref: https://authjs.dev/guides/pages/signin
*/
export default memo(() => {
const { t } = useTranslation('clerk');
const { t } = useTranslation('auth');
const { t: tCommon } = useTranslation('common');
const router = useRouter();
const [loadingProvider, setLoadingProvider] = useState<string | null>(null);
@ -100,9 +101,9 @@ export default memo(() => {
};
const footerBtns = [
{ href: DOCUMENTS_REFER_URL, id: 0, label: t('footerPageLink__help') },
{ href: PRIVACY_URL, id: 1, label: t('footerPageLink__privacy') },
{ href: TERMS_URL, id: 2, label: t('footerPageLink__terms') },
{ href: DOCUMENTS_REFER_URL, id: 0, label: tCommon('document') },
{ href: PRIVACY_URL, id: 1, label: t('footer.privacy') },
{ href: TERMS_URL, id: 2, label: t('footer.terms') },
];
return (
@ -116,10 +117,10 @@ export default memo(() => {
<div>
<LobeHub size={48} />
</div>
{t('signIn.start.title', { applicationName: BRANDING_NAME })}
{t('signin.title')}
</Text>
<Text as={'p'} className={styles.description}>
{t('signIn.start.subtitle')}
{t('signin.subtitle', { appName: BRANDING_NAME })}
</Text>
</div>
{/* Content */}

View file

@ -1,6 +1,4 @@
import { SignUp } from '@clerk/nextjs';
import { enableBetterAuth, enableClerk } from '@/envs/auth';
import { enableBetterAuth } from '@/envs/auth';
import { notFound } from '@/libs/next/navigation';
import { metadataModule } from '@/server/metadata';
import { translation } from '@/server/translation';
@ -12,15 +10,6 @@ import BetterAuthSignUpForm from './BetterAuthSignUpForm';
export const generateMetadata = async (props: DynamicLayoutProps) => {
const locale = await RouteVariants.getLocale(props);
if (enableClerk) {
const { t } = await translation('clerk', locale);
return metadataModule.generate({
description: t('signUp.start.subtitle'),
title: t('signUp.start.title'),
url: '/signup',
});
}
if (enableBetterAuth) {
const { t } = await translation('auth', locale);
return metadataModule.generate({
@ -37,10 +26,6 @@ export const generateMetadata = async (props: DynamicLayoutProps) => {
};
const Page = () => {
if (enableClerk) {
return <SignUp path="/signup" />;
}
if (enableBetterAuth) {
return <BetterAuthSignUpForm />;
}

View file

@ -20,7 +20,6 @@ import {
Mic2,
PaletteIcon,
PieChart,
ShieldCheck,
Sparkles,
UserCircle,
} from 'lucide-react';
@ -61,8 +60,7 @@ export const useCategory = () => {
const mobile = useServerConfigStore((s) => s.isMobile);
const { enableSTT, hideDocs, showAiImage, showApiKeyManage } =
useServerConfigStore(featureFlagsSelectors);
const [isLoginWithClerk, avatar, username] = useUserStore((s) => [
authSelectors.isLoginWithClerk(s),
const [avatar, username] = useUserStore((s) => [
userProfileSelectors.userAvatar(s),
userProfileSelectors.nickName(s),
]);
@ -87,11 +85,6 @@ export const useCategory = () => {
key: SettingsTabs.Profile,
label: username ? username : tAuth('tab.profile'),
},
isLoginWithClerk && {
icon: ShieldCheck,
key: SettingsTabs.Security,
label: tAuth('tab.security'),
},
{
icon: ChartColumnBigIcon,
key: SettingsTabs.Stats,
@ -237,18 +230,7 @@ export const useCategory = () => {
});
return groups;
}, [
t,
tAuth,
enableSTT,
hideDocs,
mobile,
showAiImage,
showApiKeyManage,
isLoginWithClerk,
avatarUrl,
username,
]);
}, [t, tAuth, enableSTT, hideDocs, mobile, showAiImage, showApiKeyManage, avatarUrl, username]);
return categoryGroups;
};

View file

@ -7,7 +7,6 @@ import { useCallback, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { fetchErrorNotification } from '@/components/Error/fetchErrorNotification';
import { enableAuth } from '@/envs/auth';
import UserAvatar from '@/features/User/UserAvatar';
import { useUserStore } from '@/store/user';
import { authSelectors } from '@/store/user/selectors';
@ -54,7 +53,7 @@ const AvatarRow = ({ mobile }: AvatarRowProps) => {
[updateAvatar],
);
const canUpload = !enableAuth || isLogin;
const canUpload = isLogin;
const avatarContent = canUpload ? (
<Spin indicator={<LoadingOutlined spin />} spinning={uploading}>

View file

@ -1,67 +0,0 @@
'use client';
import { UserProfile } from '@clerk/nextjs';
import { type ElementsConfig } from '@clerk/types';
import { createStaticStyles, responsive } from 'antd-style';
import { memo } from 'react';
export const styles = createStaticStyles(
({ css, cssVar }) =>
({
cardBox: css`
width: 100%;
min-width: 100%;
background: transparent;
`,
footer: css`
display: none !important;
`,
headerTitle: css`
${responsive.sm} {
margin: 0;
padding: 16px;
font-size: 14px;
font-weight: 400;
line-height: 24px;
opacity: 0.5;
}
`,
navbar: css`
display: none !important;
`,
navbarMobileMenuRow: css`
display: none !important;
`,
pageScrollBox: css`
padding: 0;
`,
profileSection: css`
${responsive.sm} {
padding-inline: 16px;
background: ${cssVar.colorBgContainer};
}
`,
rootBox: css`
width: 100%;
height: 100%;
`,
scrollBox: css`
background: transparent !important;
`,
}) as Partial<Record<keyof ElementsConfig, any>>,
);
const Client = memo(() => {
return (
<UserProfile
appearance={{
elements: styles,
}}
path={'/profile'}
/>
);
});
export default Client;

View file

@ -1,30 +1,9 @@
'use client';
import { Skeleton } from '@lobehub/ui';
import { useTranslation } from 'react-i18next';
import { Navigate } from 'react-router-dom';
import SettingHeader from '@/app/[variants]/(main)/settings/features/SettingHeader';
import { enableClerk } from '@/envs/auth';
import dynamic from '@/libs/next/dynamic';
const ClerkProfile = dynamic(() => import('./features/ClerkProfile'), {
loading: () => (
<div style={{ flex: 1 }}>
<Skeleton paragraph={{ rows: 8 }} title={false} />
</div>
),
});
const Page = () => {
const { t } = useTranslation('setting');
if (!enableClerk) return <Navigate replace to="/settings" />;
return (
<>
<SettingHeader title={t('tab.security')} />
<ClerkProfile />
</>
);
return <Navigate replace to="/settings" />;
};
export default Page;

View file

@ -31,48 +31,16 @@ vi.mock('@/const/version', () => ({
isDesktop: false,
}));
// Use vi.hoisted to ensure variables exist before vi.mock factory executes
const { enableAuth, enableClerk } = vi.hoisted(() => ({
enableAuth: { value: true },
enableClerk: { value: false },
}));
vi.mock('@/envs/auth', () => ({
get enableAuth() {
return enableAuth.value;
},
get enableClerk() {
return enableClerk.value;
},
}));
afterEach(() => {
enableAuth.value = true;
enableClerk.value = false;
mockNavigate.mockReset();
});
describe('UserBanner', () => {
it('should render UserInfo and DataStatistics when auth is disabled', () => {
act(() => {
useUserStore.setState({ isSignedIn: false });
});
enableAuth.value = false;
render(<UserBanner />);
expect(screen.getByText('Mocked UserInfo')).toBeInTheDocument();
expect(screen.getByText('Mocked DataStatistics')).toBeInTheDocument();
expect(screen.queryByText('Mocked UserLoginOrSignup')).not.toBeInTheDocument();
});
it('should render UserInfo and DataStatistics when user is logged in with auth enabled', () => {
it('should render UserInfo and DataStatistics when user is logged in', () => {
act(() => {
useUserStore.setState({ isSignedIn: true });
});
enableClerk.value = true;
render(<UserBanner />);
expect(screen.getByText('Mocked UserInfo')).toBeInTheDocument();
@ -80,11 +48,10 @@ describe('UserBanner', () => {
expect(screen.queryByText('Mocked UserLoginOrSignup')).not.toBeInTheDocument();
});
it('should render UserLoginOrSignup when user is not logged in with auth enabled', () => {
it('should render UserLoginOrSignup when user is not logged in', () => {
act(() => {
useUserStore.setState({ isSignedIn: false });
});
enableClerk.value = true;
render(<UserBanner />);

View file

@ -22,21 +22,6 @@ vi.mock('react-i18next', () => ({
})),
}));
// Use vi.hoisted to ensure variables exist before vi.mock factory executes
const { enableAuth, enableClerk } = vi.hoisted(() => ({
enableAuth: { value: true },
enableClerk: { value: true },
}));
vi.mock('@/envs/auth', () => ({
get enableAuth() {
return enableAuth.value;
},
get enableClerk() {
return enableClerk.value;
},
}));
// Mock version constants
vi.mock('@/const/version', async (importOriginal) => {
const actual = await importOriginal<typeof import('@/const/version')>();
@ -47,8 +32,6 @@ vi.mock('@/const/version', async (importOriginal) => {
});
afterEach(() => {
enableAuth.value = true;
enableClerk.value = true;
mockNavigate.mockReset();
});
@ -57,8 +40,6 @@ describe('useCategory', () => {
act(() => {
useUserStore.setState({ isSignedIn: true });
});
enableAuth.value = true;
enableClerk.value = false;
const mockOpenChangelogModal = vi.fn();
const { result } = renderHook(() => useCategory(mockOpenChangelogModal), { wrapper });
@ -77,7 +58,6 @@ describe('useCategory', () => {
act(() => {
useUserStore.setState({ isSignedIn: false });
});
enableAuth.value = true;
const mockOpenChangelogModal = vi.fn();
const { result } = renderHook(() => useCategory(mockOpenChangelogModal), { wrapper });

View file

@ -4,7 +4,6 @@ import { Flexbox } from '@lobehub/ui';
import { memo } from 'react';
import { Link } from 'react-router-dom';
import { enableAuth } from '@/envs/auth';
import DataStatistics from '@/features/User/DataStatistics';
import UserInfo from '@/features/User/UserInfo';
import UserLoginOrSignup from '@/features/User/UserLoginOrSignup/Community';
@ -17,7 +16,7 @@ const UserBanner = memo(() => {
return (
<Flexbox gap={12} paddingBlock={8}>
{!enableAuth || (enableAuth && isLoginWithAuth) ? (
{isLoginWithAuth ? (
<>
<Link style={{ color: 'inherit' }} to="/settings/profile">
<UserInfo />

View file

@ -1,6 +1,6 @@
'use client';
import { ChartColumnBigIcon, LogOut, ShieldCheck, UserCircle } from 'lucide-react';
import { ChartColumnBigIcon, LogOut, UserCircle } from 'lucide-react';
import { memo } from 'react';
import { useTranslation } from 'react-i18next';
import { useNavigate } from 'react-router-dom';
@ -11,11 +11,7 @@ import { useUserStore } from '@/store/user';
import { authSelectors } from '@/store/user/selectors';
const Category = memo(() => {
const [isLogin, isLoginWithClerk, signOut] = useUserStore((s) => [
authSelectors.isLogin(s),
authSelectors.isLoginWithClerk(s),
s.logout,
]);
const [isLogin, signOut] = useUserStore((s) => [authSelectors.isLogin(s), s.logout]);
const navigate = useNavigate();
const { t } = useTranslation('auth');
const items: CellProps[] = [
@ -25,12 +21,6 @@ const Category = memo(() => {
label: t('tab.profile'),
onClick: () => navigate('/settings/profile'),
},
isLoginWithClerk && {
icon: ShieldCheck,
key: ProfileTabs.Security,
label: t('tab.security'),
onClick: () => navigate('/settings/security'),
},
{
icon: ChartColumnBigIcon,
key: ProfileTabs.Stats,
@ -46,7 +36,7 @@ const Category = memo(() => {
label: t('signout', { ns: 'auth' }),
onClick: () => {
signOut();
navigate('/login');
navigate('/signin');
},
},
].filter(Boolean) as CellProps[];

View file

@ -6,7 +6,6 @@ import { memo } from 'react';
import { useTranslation } from 'react-i18next';
import { useNavigate, useParams } from 'react-router-dom';
import { enableAuth } from '@/envs/auth';
import { useShowMobileWorkspace } from '@/hooks/useShowMobileWorkspace';
import { type SettingsTabs } from '@/store/global/initialState';
import { useSessionStore } from '@/store/session';
@ -16,7 +15,7 @@ const Header = memo(() => {
const { t } = useTranslation('setting');
const showMobileWorkspace = useShowMobileWorkspace();
const navigate = useNavigate();
const params = useParams<{ providerId?: string, tab?: string; }>();
const params = useParams<{ providerId?: string; tab?: string }>();
const isSessionActive = useSessionStore((s) => !!s.activeId);
const isProvider = params.providerId && params.providerId !== 'all';
@ -27,7 +26,7 @@ const Header = memo(() => {
} else if (isProvider) {
navigate('/settings/provider/all');
} else {
navigate(enableAuth ? '/me/settings' : '/me');
navigate('/me/settings');
}
};

View file

@ -65,7 +65,7 @@ const ShareTopicLayout = memo<PropsWithChildren>(({ children }) => {
<UserAvatar size={32} />
</Link>
) : (
<NextLink href="/login">
<NextLink href="/signin">
<ProductLogo size={32} />
</NextLink>
)}

View file

@ -56,7 +56,7 @@ const ShareTopicPage = memo(() => {
<NotFound
desc={t('sharePage.error.unauthorized.subtitle')}
extra={
<Button href="/login" type="primary">
<Button href="/signin" type="primary">
{t('sharePage.error.unauthorized.action')}
</Button>
}

View file

@ -26,7 +26,7 @@ const robots = (): MetadataRoute.Robots => {
},
{
allow: ['/'],
disallow: ['/api/*', '/login', '/signup', '/knowledge/*', '/share/*'],
disallow: ['/api/*', '/signin', '/signup', '/knowledge/*', '/share/*'],
userAgent: '*',
},
],

View file

@ -6,11 +6,6 @@ declare global {
// eslint-disable-next-line @typescript-eslint/no-namespace
namespace NodeJS {
interface ProcessEnv {
// ===== Clerk ===== //
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY?: string;
CLERK_SECRET_KEY?: string;
CLERK_WEBHOOK_SECRET?: string;
// ===== Auth (shared by Better Auth / Next Auth) ===== //
AUTH_SECRET?: string;
AUTH_EMAIL_VERIFICATION?: string;
@ -136,10 +131,6 @@ declare global {
export const getAuthConfig = () => {
return createEnv({
client: {
// ---------------------------------- clerk ----------------------------------
NEXT_PUBLIC_ENABLE_CLERK_AUTH: z.boolean().optional().default(false),
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: z.string().optional(),
// ---------------------------------- better auth ----------------------------------
NEXT_PUBLIC_ENABLE_BETTER_AUTH: z.boolean().optional(),
@ -147,10 +138,6 @@ export const getAuthConfig = () => {
NEXT_PUBLIC_ENABLE_NEXT_AUTH: z.boolean().optional(),
},
server: {
// ---------------------------------- clerk ----------------------------------
CLERK_SECRET_KEY: z.string().optional(),
CLERK_WEBHOOK_SECRET: z.string().optional(),
// ---------------------------------- better auth ----------------------------------
AUTH_SECRET: z.string().optional(),
AUTH_SSO_PROVIDERS: z.string().optional().default(''),
@ -261,14 +248,6 @@ export const getAuthConfig = () => {
},
runtimeEnv: {
// Clerk
NEXT_PUBLIC_ENABLE_CLERK_AUTH:
process.env.NEXT_PUBLIC_ENABLE_CLERK_AUTH === '1' ||
!!process.env.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY,
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: process.env.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY,
CLERK_SECRET_KEY: process.env.CLERK_SECRET_KEY,
CLERK_WEBHOOK_SECRET: process.env.CLERK_WEBHOOK_SECRET,
// ---------------------------------- better auth ----------------------------------
NEXT_PUBLIC_ENABLE_BETTER_AUTH: process.env.NEXT_PUBLIC_ENABLE_BETTER_AUTH === '1',
// Fallback to NEXT_PUBLIC_* for seamless migration
@ -396,13 +375,9 @@ export const getAuthConfig = () => {
export const authEnv = getAuthConfig();
// Auth flags - use process.env directly for build-time dead code elimination
export const enableClerk =
process.env.NEXT_PUBLIC_ENABLE_CLERK_AUTH === '1'
? true
: !!process.env.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY;
export const enableBetterAuth = process.env.NEXT_PUBLIC_ENABLE_BETTER_AUTH === '1';
// Better Auth is the default auth solution when NextAuth is not explicitly enabled
export const enableNextAuth = process.env.NEXT_PUBLIC_ENABLE_NEXT_AUTH === '1';
export const enableAuth = enableClerk || enableBetterAuth || enableNextAuth || false;
export const enableBetterAuth = !enableNextAuth;
// Auth headers and constants
export const LOBE_CHAT_AUTH_HEADER = 'X-lobe-chat-auth';

View file

@ -241,7 +241,7 @@ export const getLLMConfig = () => {
ENABLED_DEEPSEEK: !!process.env.DEEPSEEK_API_KEY,
DEEPSEEK_API_KEY: process.env.DEEPSEEK_API_KEY,
ENABLED_GOOGLE: !!process.env.GOOGLE_API_KEY,
ENABLED_GOOGLE: process.env.ENABLED_GOOGLE !== '0',
GOOGLE_API_KEY: process.env.GOOGLE_API_KEY,
ENABLED_VERTEXAI: !!process.env.VERTEXAI_CREDENTIALS,
@ -252,7 +252,7 @@ export const getLLMConfig = () => {
ENABLED_PERPLEXITY: !!process.env.PERPLEXITY_API_KEY,
PERPLEXITY_API_KEY: process.env.PERPLEXITY_API_KEY,
ENABLED_ANTHROPIC: !!process.env.ANTHROPIC_API_KEY,
ENABLED_ANTHROPIC: process.env.ENABLED_ANTHROPIC !== '0',
ANTHROPIC_API_KEY: process.env.ANTHROPIC_API_KEY,
ENABLED_MINIMAX: !!process.env.MINIMAX_API_KEY,

View file

@ -10,8 +10,6 @@ import BusinessPanelContent from '@/business/client/features/User/BusinessPanelC
import BrandWatermark from '@/components/BrandWatermark';
import Menu from '@/components/Menu';
import { isDesktop } from '@/const/version';
import { enableBetterAuth, enableNextAuth } from '@/envs/auth';
import { useRouter } from '@/libs/next/navigation';
import { useUserStore } from '@/store/user';
import { authSelectors } from '@/store/user/selectors';
@ -22,8 +20,6 @@ import LangButton from './LangButton';
import { useMenu } from './useMenu';
const PanelContent = memo<{ closePopover: () => void }>(({ closePopover }) => {
const router = useRouter();
const isLoginWithAuth = useUserStore(authSelectors.isLoginWithAuth);
const [openSignIn, signOut] = useUserStore((s) => [s.openLogin, s.logout]);
const { mainItems, logoutItems } = useMenu();
@ -52,10 +48,6 @@ const PanelContent = memo<{ closePopover: () => void }>(({ closePopover }) => {
signOut();
closePopover();
// NextAuth and Better Auth handle redirect in their own signOut methods
if (enableNextAuth || enableBetterAuth) return;
// Clerk uses /login page
router.push('/login');
};
return (

View file

@ -68,19 +68,11 @@ vi.mock('@/const/version', () => ({
}));
// Use vi.hoisted to ensure variables exist before vi.mock factory executes
const { enableAuth, enableClerk, enableNextAuth } = vi.hoisted(() => ({
enableAuth: { value: true },
enableClerk: { value: false },
const { enableNextAuth } = vi.hoisted(() => ({
enableNextAuth: { value: false },
}));
vi.mock('@/envs/auth', () => ({
get enableAuth() {
return enableAuth.value;
},
get enableClerk() {
return enableClerk.value;
},
get enableNextAuth() {
return enableNextAuth.value;
},
@ -140,32 +132,6 @@ describe('PanelContent', () => {
});
});
describe('disable auth', () => {
it('should render UserInfo', () => {
act(() => {
useUserStore.setState({ isSignedIn: true });
});
renderWithRouter(<PanelContent closePopover={closePopover} />);
expect(screen.getByText('Mocked UserInfo')).toBeInTheDocument();
expect(screen.getByText('Mocked DataStatistics')).toBeInTheDocument();
expect(screen.queryByText('Mocked SignInBlock')).not.toBeInTheDocument();
});
it('should render BrandWatermark when disable auth', () => {
enableAuth.value = false;
act(() => {
useUserStore.setState({ isSignedIn: false });
});
renderWithRouter(<PanelContent closePopover={closePopover} />);
expect(screen.getByText('Mocked BrandWatermark')).toBeInTheDocument();
});
});
it('should render Menu with main items', () => {
renderWithRouter(<PanelContent closePopover={closePopover} />);

View file

@ -10,87 +10,60 @@ import UserAvatar from '../UserAvatar';
vi.mock('zustand/traditional');
// Use vi.hoisted to ensure variables exist before vi.mock factory executes
const { enableAuth, enableClerk, enableNextAuth } = vi.hoisted(() => ({
enableAuth: { value: true },
enableClerk: { value: false },
const { enableNextAuth } = vi.hoisted(() => ({
enableNextAuth: { value: false },
}));
vi.mock('@/envs/auth', () => ({
get enableAuth() {
return enableAuth.value;
},
get enableClerk() {
return enableClerk.value;
},
get enableNextAuth() {
return enableNextAuth.value;
},
}));
afterEach(() => {
enableAuth.value = true;
enableClerk.value = false;
enableNextAuth.value = false;
});
describe('UserAvatar', () => {
describe('enable Auth', () => {
it('should show the username and avatar are displayed when the user is logged in', async () => {
const mockAvatar = 'https://example.com/avatar.png';
const mockUsername = 'teeeeeestuser';
it('should show the username and avatar are displayed when the user is logged in', async () => {
const mockAvatar = 'https://example.com/avatar.png';
const mockUsername = 'teeeeeestuser';
act(() => {
useUserStore.setState({
enableAuth: () => true,
isSignedIn: true,
user: { avatar: mockAvatar, id: 'abc', username: mockUsername },
});
act(() => {
useUserStore.setState({
isSignedIn: true,
user: { avatar: mockAvatar, id: 'abc', username: mockUsername },
});
render(<UserAvatar />);
expect(screen.getByAltText(mockUsername)).toBeInTheDocument();
expect(screen.getByAltText(mockUsername)).toHaveAttribute('src', mockAvatar);
});
it('should show default avatar when the user is logged in but have no custom avatar', () => {
const mockUsername = 'testuser';
render(<UserAvatar />);
act(() => {
useUserStore.setState({
enableAuth: () => true,
isSignedIn: true,
user: { id: 'bbb', username: mockUsername },
});
});
render(<UserAvatar />);
// When user has no avatar url, <Avatar /> falls back to initials rendering (not an <img />)
expect(screen.getByText('TE')).toBeInTheDocument();
});
it('should show LobeChat and default avatar when the user is not logged in and enable auth', () => {
act(() => {
useUserStore.setState({ enableAuth: () => true, isSignedIn: false, user: undefined });
});
render(<UserAvatar />);
expect(screen.getByAltText(BRANDING_NAME)).toBeInTheDocument();
expect(screen.getByAltText(BRANDING_NAME)).toHaveAttribute('src', DEFAULT_USER_AVATAR_URL);
});
expect(screen.getByAltText(mockUsername)).toBeInTheDocument();
expect(screen.getByAltText(mockUsername)).toHaveAttribute('src', mockAvatar);
});
describe('disable Auth', () => {
it('should show LobeChat and default avatar when the user is not logged in and disabled auth', () => {
enableAuth.value = false;
act(() => {
useUserStore.setState({ enableAuth: () => false, isSignedIn: false, user: undefined });
});
it('should show default avatar when the user is logged in but have no custom avatar', () => {
const mockUsername = 'testuser';
render(<UserAvatar />);
expect(screen.getByAltText(BRANDING_NAME)).toBeInTheDocument();
expect(screen.getByAltText(BRANDING_NAME)).toHaveAttribute('src', DEFAULT_USER_AVATAR_URL);
act(() => {
useUserStore.setState({
isSignedIn: true,
user: { id: 'bbb', username: mockUsername },
});
});
render(<UserAvatar />);
// When user has no avatar url, <Avatar /> falls back to initials rendering (not an <img />)
expect(screen.getByText('TE')).toBeInTheDocument();
});
it('should show LobeChat and default avatar when the user is not logged in', () => {
act(() => {
useUserStore.setState({ isSignedIn: false, user: undefined });
});
render(<UserAvatar />);
expect(screen.getByAltText(BRANDING_NAME)).toBeInTheDocument();
expect(screen.getByAltText(BRANDING_NAME)).toHaveAttribute('src', DEFAULT_USER_AVATAR_URL);
});
});

View file

@ -48,33 +48,11 @@ vi.mock('./useNewVersion', () => ({
useNewVersion: vi.fn(() => false),
}));
// Use vi.hoisted to ensure variables exist before vi.mock factory executes
const { enableAuth, enableClerk } = vi.hoisted(() => ({
enableAuth: { value: true },
enableClerk: { value: true },
}));
vi.mock('@/envs/auth', () => ({
get enableAuth() {
return enableAuth.value;
},
get enableClerk() {
return enableClerk.value;
},
}));
afterEach(() => {
enableAuth.value = true;
enableClerk.value = true;
});
describe('useMenu', () => {
it('should provide correct menu items when user is logged in with auth', () => {
act(() => {
useUserStore.setState({ isSignedIn: true, enableAuth: () => true });
useUserStore.setState({ isSignedIn: true });
});
enableAuth.value = true;
enableClerk.value = false;
const { result } = renderHook(() => useMenu(), { wrapper });
@ -88,29 +66,10 @@ describe('useMenu', () => {
});
});
it('should provide correct menu items when user is logged in without auth', () => {
act(() => {
useUserStore.setState({ isSignedIn: false, enableAuth: () => false });
});
enableAuth.value = false;
const { result } = renderHook(() => useMenu(), { wrapper });
act(() => {
const { mainItems, logoutItems } = result.current;
// When not logged in (isLogin = false), these items should not be shown
// isLogin checks isSignedIn, so with isSignedIn: false, isLogin should be false
expect(mainItems?.some((item) => item?.key === 'setting')).toBe(false);
expect(mainItems?.some((item) => item?.key === 'import')).toBe(false);
expect(logoutItems.some((item) => item?.key === 'logout')).toBe(false);
});
});
it('should provide correct menu items when user is not logged in', () => {
act(() => {
useUserStore.setState({ isSignedIn: false, enableAuth: () => true });
useUserStore.setState({ isSignedIn: false });
});
enableAuth.value = true;
const { result } = renderHook(() => useMenu(), { wrapper });

View file

@ -1,40 +0,0 @@
'use client';
import { useClerk, useUser } from '@clerk/nextjs';
import { memo } from 'react';
import { createStoreUpdater } from 'zustand-utils';
import { useUserStore } from '@/store/user';
import { type LobeUser } from '@/types/user';
// update the user data into the context
const UserUpdater = memo(() => {
const { isLoaded, user, isSignedIn } = useUser();
const { session, openUserProfile, signOut, openSignIn } = useClerk();
const useStoreUpdater = createStoreUpdater(useUserStore);
const lobeUser = {
avatar: user?.imageUrl,
firstName: user?.firstName,
fullName: user?.fullName,
id: user?.id,
latestName: user?.lastName,
username: user?.username,
} as LobeUser;
useStoreUpdater('isLoaded', isLoaded);
useStoreUpdater('user', lobeUser);
useStoreUpdater('isSignedIn', isSignedIn);
useStoreUpdater('clerkUser', user!);
useStoreUpdater('clerkSession', session!);
useStoreUpdater('clerkSignIn', openSignIn);
useStoreUpdater('clerkOpenUserProfile', openUserProfile);
useStoreUpdater('clerkSignOut', signOut);
return null;
});
export default UserUpdater;

View file

@ -1,54 +0,0 @@
'use client';
import { ClerkProvider } from '@clerk/nextjs';
import { type PropsWithChildren, memo, useEffect, useMemo, useState, useTransition } from 'react';
import { useTranslation } from 'react-i18next';
import UserUpdater from './UserUpdater';
import { useAppearance } from './useAppearance';
const Clerk = memo(({ children }: PropsWithChildren) => {
const appearance = useAppearance();
const {
i18n: { language, getResourceBundle },
} = useTranslation('clerk');
const localization = useMemo(() => getResourceBundle(language, 'clerk'), [language]);
// When useAppearance returns different result during SSR vs. client-side (when theme mode is auto), the appearance is not applied
// It's because Clerk internally re-applies SSR props after transition which overrides client-side props, see https://github.com/clerk/javascript/blob/main/packages/nextjs/src/app-router/client/ClerkProvider.tsx
// This re-renders the provider after transition to make sure client-side props are always applied
const [count, setCount] = useState(0);
const [isPending, startTransition] = useTransition();
useEffect(() => {
if (count || isPending) return;
startTransition(() => {
setCount((count) => count + 1);
});
}, [count, setCount, isPending, startTransition]);
const allowedRedirectOrigins = useMemo(() => {
const rawOrigins = process.env.NEXT_PUBLIC_CLERK_AUTH_ALLOW_ORIGINS;
if (!rawOrigins) return undefined;
const origins = rawOrigins
.split(',')
.map((origin) => origin.trim())
.filter(Boolean);
return origins.length ? origins : undefined;
}, []);
return (
<ClerkProvider
allowedRedirectOrigins={allowedRedirectOrigins}
appearance={appearance}
localization={localization}
signUpUrl="/signup"
>
{children}
<UserUpdater />
</ClerkProvider>
);
});
export default Clerk;

View file

@ -1,133 +0,0 @@
'use client';
import { dark } from '@clerk/themes';
import { type ElementsConfig, type Theme } from '@clerk/types';
import { BRANDING_URL } from '@lobechat/business-const';
import { createStaticStyles, cssVar, cx } from 'antd-style';
import { useIsDark } from '@/hooks/useIsDark';
const prefixCls = 'cl';
const styles = createStaticStyles(({ css, cssVar }) => ({
avatarBox: css`
width: 40px;
height: 40px;
`,
cardBox: css`
border-radius: ${cssVar.borderRadiusLG}px;
background: ${cssVar.colorBgContainer};
box-shadow: 0 0 0 1px ${cssVar.colorBorderSecondary};
`,
header: css`
gap: 1em;
`,
logoBox: css`
height: 48px;
`,
modalBackdrop: css`
background: ${cssVar.colorBgMask};
`,
modalContent: css`
&.${prefixCls}-modalContent {
.${prefixCls}-cardBox {
border: 1px solid ${cssVar.colorSplit} !important;
border-radius: ${cssVar.borderRadiusLG}px !important;
box-shadow: ${cssVar.boxShadow} !important;
}
.${prefixCls}-userProfile-root {
width: min(80vw, 55rem);
height: min(80vh, 44rem);
}
}
`,
navbar: css`
background: ${cssVar.colorFillTertiary};
@media (max-width: 768px) {
background: ${cssVar.colorBgContainer};
}
`,
navbarButton: css`
line-height: 2;
`,
navbar_dark: css`
background: ${cssVar.colorBgContainer};
`,
pageScrollBox: css`
align-self: center;
width: 100%;
max-width: 1024px;
`,
rootBox: css`
&.${prefixCls}-userProfile-root {
width: 100%;
height: 100%;
.${prefixCls}-cardBox {
width: 100%;
height: 100%;
border: unset;
border-radius: unset;
box-shadow: unset;
}
}
`,
scrollBox: css`
border: unset;
border-radius: unset;
background: ${cssVar.colorBgElevated};
box-shadow: 0 1px 0 1px ${cssVar.colorFillTertiary};
`,
scrollBox_dark: css`
background: ${cssVar.colorFillQuaternary};
`,
socialButtons: css`
display: flex;
flex-direction: column;
`,
socialButtonsBlockButton__github: css`
order: 1;
`,
socialButtonsBlockButton__google: css`
order: -1;
`,
})) as Partial<Record<keyof ElementsConfig, any>>;
export const useAppearance = () => {
const isDarkMode = useIsDark();
const navbarStyle = cx(styles.navbar, isDarkMode && (styles as any).navbar_dark);
const scrollBoxStyle = cx(styles.scrollBox, isDarkMode && (styles as any).scrollBox_dark);
const elements = {
...styles,
navbar: navbarStyle,
scrollBox: scrollBoxStyle,
} as Partial<Record<keyof ElementsConfig, any>>;
return {
baseTheme: isDarkMode ? dark : undefined,
elements,
layout: {
helpPageUrl: BRANDING_URL.help ?? 'https://lobehub.com/docs',
privacyPageUrl: BRANDING_URL.privacy ?? 'https://lobehub.com/privacy',
socialButtonsVariant: 'blockButton',
termsPageUrl: BRANDING_URL.terms ?? 'https://lobehub.com/terms',
},
variables: {
borderRadius: cssVar.borderRadius,
colorBackground: cssVar.colorBgContainer,
colorDanger: cssVar.colorError,
colorInputBackground: cssVar.colorFillTertiary,
colorNeutral: cssVar.colorText,
colorSuccess: cssVar.colorSuccess,
colorText: cssVar.colorText,
colorTextSecondary: cssVar.colorTextDescription,
colorWarning: cssVar.colorWarning,
fontSize: cssVar.fontSize,
},
} as Theme;
};

View file

@ -4,7 +4,6 @@ import { type PropsWithChildren } from 'react';
import { authEnv } from '@/envs/auth';
import BetterAuth from './BetterAuth';
import Clerk from './Clerk';
import Desktop from './Desktop';
import NextAuth from './NextAuth';
import NoAuth from './NoAuth';
@ -14,10 +13,6 @@ const AuthProvider = ({ children }: PropsWithChildren) => {
return <Desktop>{children}</Desktop>;
}
if (authEnv.NEXT_PUBLIC_ENABLE_CLERK_AUTH) {
return <Clerk>{children}</Clerk>;
}
if (authEnv.NEXT_PUBLIC_ENABLE_BETTER_AUTH) {
return <BetterAuth>{children}</BetterAuth>;
}

Some files were not shown because too many files have changed in this diff Show more