@lobehub/lobehub 2.0.0-next.344 → 2.0.0-next.346
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.cursor/rules/i18n.mdc +1 -1
- package/.cursor/rules/modal-imperative.mdc +162 -0
- package/.cursor/rules/rules-index.mdc +1 -0
- package/.env.example +0 -14
- package/.eslintrc.js +8 -1
- package/CHANGELOG.md +66 -0
- package/CLAUDE.md +4 -2
- package/Dockerfile +3 -13
- package/README.md +3 -5
- package/README.zh-CN.md +3 -5
- package/changelog/v1.json +20 -0
- package/docs/self-hosting/advanced/auth/clerk-to-betterauth.mdx +11 -42
- package/docs/self-hosting/advanced/auth/clerk-to-betterauth.zh-CN.mdx +10 -41
- package/e2e/src/support/webServer.ts +2 -0
- package/locales/ar/error.json +0 -4
- package/locales/bg-BG/error.json +0 -4
- package/locales/de-DE/error.json +0 -4
- package/locales/en-US/error.json +0 -4
- package/locales/es-ES/error.json +0 -4
- package/locales/fa-IR/error.json +0 -4
- package/locales/fr-FR/error.json +0 -4
- package/locales/it-IT/error.json +0 -4
- package/locales/ja-JP/error.json +0 -4
- package/locales/ko-KR/error.json +0 -4
- package/locales/nl-NL/error.json +0 -4
- package/locales/pl-PL/error.json +0 -4
- package/locales/pt-BR/error.json +0 -4
- package/locales/ru-RU/error.json +0 -4
- package/locales/tr-TR/error.json +0 -4
- package/locales/vi-VN/error.json +0 -4
- package/locales/zh-CN/error.json +0 -4
- package/locales/zh-TW/error.json +0 -4
- package/package.json +12 -12
- package/packages/builtin-agents/package.json +2 -0
- package/packages/builtin-agents/src/agents/agent-builder/index.ts +4 -2
- package/packages/builtin-agents/src/agents/group-agent-builder/index.ts +4 -2
- package/packages/builtin-agents/src/agents/page-agent/index.ts +5 -2
- package/packages/context-engine/src/engine/messages/MessagesEngine.ts +9 -9
- package/packages/context-engine/src/providers/GroupContextInjector.ts +19 -33
- package/packages/context-engine/src/providers/__tests__/GroupContextInjector.test.ts +79 -43
- package/packages/context-engine/src/providers/__tests__/__snapshots__/GroupContextInjector.test.ts.snap +5 -15
- package/packages/database/src/repositories/userMemory/__tests__/UserMemoryTopicRepository.test.ts +24 -3
- package/packages/file-loaders/package.json +1 -1
- package/packages/file-loaders/src/loadFile.ts +10 -15
- package/packages/file-loaders/src/loaders/index.ts +68 -19
- package/packages/file-loaders/src/loaders/pdf/__snapshots__/index.test.ts.snap +1 -1
- package/packages/file-loaders/test/__snapshots__/loaders.test.ts.snap +1 -1
- package/packages/model-bank/src/modelProviders/comfyui.ts +0 -1
- package/packages/model-bank/src/modelProviders/fal.ts +0 -1
- package/packages/types/src/fetch.ts +1 -2
- package/packages/utils/src/server/__tests__/auth.test.ts +0 -47
- package/packages/utils/src/server/auth.ts +1 -9
- package/pnpm-workspace.yaml +1 -0
- package/scripts/_shared/checkDeprecatedClerkEnv.js +42 -0
- package/scripts/changelogWorkflow/buildStaticChangelog.ts +2 -1
- package/scripts/clerk-to-betterauth/_internal/types.ts +53 -20
- package/scripts/clerk-to-betterauth/export-clerk-users-with-api.ts +43 -36
- package/scripts/countEnWord.ts +1 -1
- package/scripts/electronWorkflow/modifiers/appCode.mts +2 -131
- package/scripts/i18nWorkflow/protectedPatterns.ts +1 -2
- package/scripts/prebuild.mts +10 -8
- package/scripts/serverLauncher/startServer.js +23 -5
- package/src/app/(backend)/middleware/auth/index.test.ts +8 -4
- package/src/app/(backend)/middleware/auth/index.ts +0 -15
- package/src/app/(backend)/middleware/auth/utils.test.ts +0 -28
- package/src/app/(backend)/middleware/auth/utils.ts +2 -17
- package/src/app/(backend)/webapi/chat/[provider]/route.test.ts +3 -51
- package/src/app/(backend)/webapi/models/[provider]/route.test.ts +8 -4
- package/src/app/[variants]/(auth)/next-auth/signin/AuthSignInBox.tsx +7 -6
- package/src/app/[variants]/(auth)/signup/[[...signup]]/page.tsx +1 -16
- package/src/app/[variants]/(main)/home/_layout/Body/Agent/List/index.tsx +1 -1
- package/src/app/[variants]/(main)/home/features/InputArea/SkillInstallBanner.tsx +13 -13
- package/src/app/[variants]/(main)/home/features/RecentPage/Item.tsx +2 -2
- package/src/app/[variants]/(main)/resource/features/store/action.ts +2 -2
- package/src/app/[variants]/(main)/resource/features/store/initialState.ts +2 -2
- package/src/app/[variants]/(main)/resource/store/action.ts +2 -2
- package/src/app/[variants]/(main)/resource/store/initialState.ts +2 -2
- package/src/app/[variants]/(main)/settings/hooks/useCategory.tsx +3 -21
- package/src/app/[variants]/(main)/settings/profile/features/AvatarRow.tsx +1 -2
- package/src/app/[variants]/(main)/settings/security/index.tsx +1 -22
- package/src/app/[variants]/(main)/settings/skill/features/KlavisSkillItem.tsx +12 -14
- package/src/app/[variants]/(main)/settings/skill/features/LobehubSkillItem.tsx +8 -14
- package/src/app/[variants]/(main)/settings/skill/index.tsx +7 -5
- package/src/app/[variants]/(mobile)/me/(home)/__tests__/UserBanner.test.tsx +2 -35
- package/src/app/[variants]/(mobile)/me/(home)/__tests__/useCategory.test.tsx +0 -20
- package/src/app/[variants]/(mobile)/me/(home)/features/UserBanner.tsx +1 -2
- package/src/app/[variants]/(mobile)/me/profile/features/Category.tsx +3 -13
- package/src/app/[variants]/(mobile)/settings/_layout/Header.tsx +2 -3
- package/src/app/[variants]/share/t/[id]/_layout/index.tsx +1 -1
- package/src/app/[variants]/share/t/[id]/index.tsx +1 -1
- package/src/app/robots.tsx +1 -1
- package/src/envs/auth.ts +2 -27
- package/src/envs/llm.ts +2 -2
- package/src/features/AgentSetting/AgentPlugin/index.tsx +9 -12
- package/src/features/ChatInput/ActionBar/Tools/index.tsx +7 -5
- package/src/features/ChatMiniMap/utils.ts +1 -1
- package/src/features/CommandMenu/SearchResults.tsx +1 -1
- package/src/features/Conversation/ChatList/components/AutoScroll/DebugInspector.tsx +166 -0
- package/src/features/Conversation/ChatList/components/AutoScroll/index.tsx +86 -0
- package/src/features/Conversation/ChatList/components/VirtualizedList.tsx +11 -17
- package/src/features/Conversation/Messages/AgentCouncil/components/AutoScrollShadow.tsx +25 -14
- package/src/features/Conversation/Messages/AgentCouncil/components/CouncilMember.tsx +1 -1
- package/src/features/FileViewer/Renderer/PDF/index.tsx +5 -8
- package/src/features/IntegrationDetailModal/IntegrationDetailContent.tsx +305 -0
- package/src/features/IntegrationDetailModal/index.tsx +21 -283
- package/src/features/MCPPluginDetail/Deployment/index.tsx +1 -1
- package/src/features/MCPPluginDetail/Schema/Prompts.tsx +1 -1
- package/src/features/MCPPluginDetail/Schema/Tools.tsx +1 -1
- package/src/features/ProfileEditor/AgentTool.tsx +14 -20
- package/src/features/ResourceManager/components/Explorer/ListView/ListItem/index.tsx +0 -8
- package/src/features/ResourceManager/components/Explorer/MasonryView/MasonryFileItem/NoteFileItem.tsx +1 -1
- package/src/features/ResourceManager/index.tsx +1 -1
- package/src/features/ShareModal/SharePdf/PdfPreview.tsx +4 -4
- package/src/features/SkillStore/LobeHubList/index.tsx +50 -87
- package/src/features/SkillStore/Search/index.tsx +1 -1
- package/src/features/SkillStore/{Content.tsx → SkillStoreContent.tsx} +3 -8
- package/src/features/SkillStore/index.tsx +15 -33
- package/src/features/User/UserPanel/PanelContent.tsx +0 -8
- package/src/features/User/__tests__/PanelContent.test.tsx +1 -35
- package/src/features/User/__tests__/UserAvatar.test.tsx +30 -57
- package/src/features/User/__tests__/useMenu.test.tsx +2 -43
- package/src/layout/AuthProvider/index.tsx +0 -5
- package/src/libs/next/config/define-config.ts +20 -15
- package/src/libs/next/proxy/createRouteMatcher.test.ts +121 -0
- package/src/libs/next/proxy/createRouteMatcher.ts +18 -0
- package/src/libs/next/proxy/define-config.ts +4 -53
- package/src/libs/next-auth/adapter/index.ts +1 -2
- package/src/libs/oidc-provider/provider.test.ts +5 -316
- package/src/libs/pdfjs/pdf.worker.ts +1 -0
- package/src/libs/pdfjs/worker.ts +12 -0
- package/src/libs/trpc/lambda/context.test.ts +0 -13
- package/src/libs/trpc/lambda/context.ts +3 -22
- package/src/libs/trpc/middleware/userAuth.ts +2 -4
- package/src/libs/trusted-client/getSessionUser.ts +2 -17
- package/src/locales/default/error.ts +0 -6
- package/src/locales/default/index.ts +0 -2
- package/src/proxy.ts +0 -1
- package/src/server/routers/lambda/__tests__/user.test.ts +0 -71
- package/src/server/routers/lambda/user.ts +6 -63
- package/src/server/services/changelog/index.test.ts +3 -2
- package/src/server/services/changelog/index.ts +1 -1
- package/src/server/services/user/index.ts +0 -83
- package/src/services/chat/index.ts +1 -2
- package/src/services/chat/mecha/agentConfigResolver.test.ts +43 -0
- package/src/services/chat/mecha/agentConfigResolver.ts +3 -1
- package/src/store/chat/slices/aiChat/actions/__tests__/streamingExecutor.test.ts +58 -14
- package/src/store/chat/slices/aiChat/actions/streamingExecutor.ts +10 -2
- package/src/store/user/slices/auth/action.test.ts +1 -81
- package/src/store/user/slices/auth/action.ts +3 -28
- package/src/store/user/slices/auth/initialState.ts +1 -18
- package/src/store/user/slices/auth/selectors.test.ts +2 -127
- package/src/store/user/slices/auth/selectors.ts +1 -21
- package/src/utils/errorResponse.ts +1 -4
- package/src/utils/markdownToTxt.ts +20 -0
- package/locales/ar/clerk.json +0 -545
- package/locales/bg-BG/clerk.json +0 -545
- package/locales/de-DE/clerk.json +0 -545
- package/locales/en-US/clerk.json +0 -545
- package/locales/es-ES/clerk.json +0 -545
- package/locales/fa-IR/clerk.json +0 -545
- package/locales/fr-FR/clerk.json +0 -545
- package/locales/it-IT/clerk.json +0 -545
- package/locales/ja-JP/clerk.json +0 -545
- package/locales/ko-KR/clerk.json +0 -545
- package/locales/nl-NL/clerk.json +0 -545
- package/locales/pl-PL/clerk.json +0 -545
- package/locales/pt-BR/clerk.json +0 -545
- package/locales/ru-RU/clerk.json +0 -545
- package/locales/tr-TR/clerk.json +0 -545
- package/locales/vi-VN/clerk.json +0 -545
- package/locales/zh-CN/clerk.json +0 -545
- package/locales/zh-TW/clerk.json +0 -545
- package/src/app/(backend)/api/webhooks/clerk/__tests__/fixtures/createUser.json +0 -73
- package/src/app/(backend)/api/webhooks/clerk/route.ts +0 -95
- package/src/app/(backend)/api/webhooks/clerk/validateRequest.ts +0 -22
- package/src/app/[variants]/(auth)/login/[[...login]]/page.tsx +0 -27
- package/src/app/[variants]/(main)/settings/security/features/ClerkProfile.tsx +0 -67
- package/src/features/Conversation/ChatList/components/AutoScroll.tsx +0 -25
- package/src/layout/AuthProvider/Clerk/UserUpdater.tsx +0 -40
- package/src/layout/AuthProvider/Clerk/index.tsx +0 -54
- package/src/layout/AuthProvider/Clerk/useAppearance.ts +0 -133
- package/src/libs/clerk-auth/index.test.ts +0 -216
- package/src/libs/clerk-auth/index.ts +0 -80
- package/src/locales/default/clerk.ts +0 -677
- package/src/server/services/user/index.test.ts +0 -220
package/locales/zh-TW/clerk.json
DELETED
|
@@ -1,545 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"backButton": "返回",
|
|
3
|
-
"badge__default": "預設",
|
|
4
|
-
"badge__otherImpersonatorDevice": "其他冒名頂替裝置",
|
|
5
|
-
"badge__primary": "主要",
|
|
6
|
-
"badge__requiresAction": "需要採取行動",
|
|
7
|
-
"badge__thisDevice": "此裝置",
|
|
8
|
-
"badge__unverified": "未驗證",
|
|
9
|
-
"badge__userDevice": "使用者裝置",
|
|
10
|
-
"badge__you": "您",
|
|
11
|
-
"createOrganization.formButtonSubmit": "建立組織",
|
|
12
|
-
"createOrganization.invitePage.formButtonReset": "跳過",
|
|
13
|
-
"createOrganization.title": "建立組織",
|
|
14
|
-
"dates.lastDay": "昨天 {{ date | timeString('zh-TW') }}",
|
|
15
|
-
"dates.next6Days": "{{ date | weekday('zh-TW','long') }} {{ date | timeString('zh-TW') }}",
|
|
16
|
-
"dates.nextDay": "明天 {{ date | timeString('zh-TW') }}",
|
|
17
|
-
"dates.numeric": "{{ date | numeric('zh-TW') }}",
|
|
18
|
-
"dates.previous6Days": "上週{{ date | weekday('zh-TW','long') }} {{ date | timeString('zh-TW') }}",
|
|
19
|
-
"dates.sameDay": "今天 {{ date | timeString('zh-TW') }}",
|
|
20
|
-
"dividerText": "或",
|
|
21
|
-
"footerActionLink__useAnotherMethod": "使用其他方法",
|
|
22
|
-
"footerPageLink__help": "幫助",
|
|
23
|
-
"footerPageLink__privacy": "隱私",
|
|
24
|
-
"footerPageLink__terms": "條款",
|
|
25
|
-
"formButtonPrimary": "繼續",
|
|
26
|
-
"formButtonPrimary__verify": "驗證",
|
|
27
|
-
"formFieldAction__forgotPassword": "忘記密碼?",
|
|
28
|
-
"formFieldError__matchingPasswords": "密碼相符。",
|
|
29
|
-
"formFieldError__notMatchingPasswords": "密碼不相符。",
|
|
30
|
-
"formFieldError__verificationLinkExpired": "驗證連結已過期。請求新連結。",
|
|
31
|
-
"formFieldHintText__optional": "選填",
|
|
32
|
-
"formFieldHintText__slug": "Slug 是一個人可讀的 ID,必須是唯一的。通常用於 URL。",
|
|
33
|
-
"formFieldInputPlaceholder__backupCode": "",
|
|
34
|
-
"formFieldInputPlaceholder__confirmDeletionUserAccount": "刪除帳號",
|
|
35
|
-
"formFieldInputPlaceholder__emailAddress": "",
|
|
36
|
-
"formFieldInputPlaceholder__emailAddress_username": "",
|
|
37
|
-
"formFieldInputPlaceholder__emailAddresses": "範例@email.com,範例2@email.com",
|
|
38
|
-
"formFieldInputPlaceholder__firstName": "",
|
|
39
|
-
"formFieldInputPlaceholder__lastName": "",
|
|
40
|
-
"formFieldInputPlaceholder__organizationDomain": "",
|
|
41
|
-
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
|
|
42
|
-
"formFieldInputPlaceholder__organizationName": "",
|
|
43
|
-
"formFieldInputPlaceholder__organizationSlug": "我的組織",
|
|
44
|
-
"formFieldInputPlaceholder__password": "",
|
|
45
|
-
"formFieldInputPlaceholder__phoneNumber": "",
|
|
46
|
-
"formFieldInputPlaceholder__username": "",
|
|
47
|
-
"formFieldLabel__automaticInvitations": "啟用此域名的自動邀請",
|
|
48
|
-
"formFieldLabel__backupCode": "備份代碼",
|
|
49
|
-
"formFieldLabel__confirmDeletion": "確認",
|
|
50
|
-
"formFieldLabel__confirmPassword": "確認密碼",
|
|
51
|
-
"formFieldLabel__currentPassword": "目前密碼",
|
|
52
|
-
"formFieldLabel__emailAddress": "電子郵件地址",
|
|
53
|
-
"formFieldLabel__emailAddress_username": "電子郵件地址或使用者名稱",
|
|
54
|
-
"formFieldLabel__emailAddresses": "電子郵件地址",
|
|
55
|
-
"formFieldLabel__firstName": "名字",
|
|
56
|
-
"formFieldLabel__lastName": "姓氏",
|
|
57
|
-
"formFieldLabel__newPassword": "新密碼",
|
|
58
|
-
"formFieldLabel__organizationDomain": "域名",
|
|
59
|
-
"formFieldLabel__organizationDomainDeletePending": "刪除待處理的邀請和建議",
|
|
60
|
-
"formFieldLabel__organizationDomainEmailAddress": "驗證電子郵件地址",
|
|
61
|
-
"formFieldLabel__organizationDomainEmailAddressDescription": "輸入此域名下的電子郵件地址,以接收代碼並驗證此域名。",
|
|
62
|
-
"formFieldLabel__organizationName": "名稱",
|
|
63
|
-
"formFieldLabel__organizationSlug": "Slug",
|
|
64
|
-
"formFieldLabel__passkeyName": "通行證名稱",
|
|
65
|
-
"formFieldLabel__password": "密碼",
|
|
66
|
-
"formFieldLabel__phoneNumber": "電話號碼",
|
|
67
|
-
"formFieldLabel__role": "角色",
|
|
68
|
-
"formFieldLabel__signOutOfOtherSessions": "登出所有其他裝置",
|
|
69
|
-
"formFieldLabel__username": "使用者名稱",
|
|
70
|
-
"impersonationFab.action__signOut": "登出",
|
|
71
|
-
"impersonationFab.title": "以 {{identifier}} 身分登入",
|
|
72
|
-
"locale": "zh-TW",
|
|
73
|
-
"maintenanceMode": "我們目前正在進行維護,但請放心,這不應該超過幾分鐘。",
|
|
74
|
-
"membershipRole__admin": "管理員",
|
|
75
|
-
"membershipRole__basicMember": "會員",
|
|
76
|
-
"membershipRole__guestMember": "訪客",
|
|
77
|
-
"organizationList.action__createOrganization": "建立組織",
|
|
78
|
-
"organizationList.action__invitationAccept": "加入",
|
|
79
|
-
"organizationList.action__suggestionsAccept": "請求加入",
|
|
80
|
-
"organizationList.createOrganization": "建立組織",
|
|
81
|
-
"organizationList.invitationAcceptedLabel": "已加入",
|
|
82
|
-
"organizationList.subtitle": "繼續使用{{applicationName}}",
|
|
83
|
-
"organizationList.suggestionsAcceptedLabel": "待審批",
|
|
84
|
-
"organizationList.title": "選擇帳號",
|
|
85
|
-
"organizationList.titleWithoutPersonal": "選擇組織",
|
|
86
|
-
"organizationProfile.badge__automaticInvitation": "自動邀請",
|
|
87
|
-
"organizationProfile.badge__automaticSuggestion": "自動建議",
|
|
88
|
-
"organizationProfile.badge__manualInvitation": "無自動註冊",
|
|
89
|
-
"organizationProfile.badge__unverified": "未驗證",
|
|
90
|
-
"organizationProfile.createDomainPage.subtitle": "新增要驗證的網域。使用此網域電子郵件地址的使用者可以自動加入組織,或請求加入。",
|
|
91
|
-
"organizationProfile.createDomainPage.title": "新增網域",
|
|
92
|
-
"organizationProfile.invitePage.detailsTitle__inviteFailed": "無法發送邀請。以下電子郵件地址已有待處理的邀請:{{email_addresses}}。",
|
|
93
|
-
"organizationProfile.invitePage.formButtonPrimary__continue": "發送邀請",
|
|
94
|
-
"organizationProfile.invitePage.selectDropdown__role": "選擇角色",
|
|
95
|
-
"organizationProfile.invitePage.subtitle": "輸入或貼上一個或多個以空格或逗號分隔的電子郵件地址。",
|
|
96
|
-
"organizationProfile.invitePage.successMessage": "邀請成功發送",
|
|
97
|
-
"organizationProfile.invitePage.title": "邀請新成員",
|
|
98
|
-
"organizationProfile.membersPage.action__invite": "邀請",
|
|
99
|
-
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "移除成員",
|
|
100
|
-
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
|
|
101
|
-
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "加入時間",
|
|
102
|
-
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "角色",
|
|
103
|
-
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "使用者",
|
|
104
|
-
"organizationProfile.membersPage.detailsTitle__emptyRow": "沒有成員可顯示",
|
|
105
|
-
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerSubtitle": "透過連接電子郵件網域來邀請使用者加入組織。任何使用符合電子郵件網域的人都可以隨時加入組織。",
|
|
106
|
-
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "自動邀請",
|
|
107
|
-
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "管理已驗證的網域",
|
|
108
|
-
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "沒有邀請可顯示",
|
|
109
|
-
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "撤銷邀請",
|
|
110
|
-
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "已邀請",
|
|
111
|
-
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "使用符合電子郵件網域的使用者,將能看到請求加入您組織的建議。",
|
|
112
|
-
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "自動建議",
|
|
113
|
-
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "管理已驗證的網域",
|
|
114
|
-
"organizationProfile.membersPage.requestsTab.menuAction__approve": "核准",
|
|
115
|
-
"organizationProfile.membersPage.requestsTab.menuAction__reject": "拒絕",
|
|
116
|
-
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "請求存取",
|
|
117
|
-
"organizationProfile.membersPage.requestsTab.table__emptyRow": "沒有請求可顯示",
|
|
118
|
-
"organizationProfile.membersPage.start.headerTitle__invitations": "邀請",
|
|
119
|
-
"organizationProfile.membersPage.start.headerTitle__members": "成員",
|
|
120
|
-
"organizationProfile.membersPage.start.headerTitle__requests": "請求",
|
|
121
|
-
"organizationProfile.navbar.description": "管理您的組織",
|
|
122
|
-
"organizationProfile.navbar.general": "一般",
|
|
123
|
-
"organizationProfile.navbar.members": "成員",
|
|
124
|
-
"organizationProfile.navbar.title": "組織",
|
|
125
|
-
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "在下方輸入\"{{organizationName}}\"以繼續。",
|
|
126
|
-
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "您確定要刪除此組織嗎?",
|
|
127
|
-
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "此操作是永久且不可逆轉的。",
|
|
128
|
-
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "您已刪除組織。",
|
|
129
|
-
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "刪除組織",
|
|
130
|
-
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "在下方輸入\"{{organizationName}}\"以繼續。",
|
|
131
|
-
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "您確定要離開此組織嗎?您將失去對此組織及其應用程式的存取權。",
|
|
132
|
-
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "此操作是永久且不可逆轉的。",
|
|
133
|
-
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "您已離開組織。",
|
|
134
|
-
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "離開組織",
|
|
135
|
-
"organizationProfile.profilePage.dangerSection.title": "風險",
|
|
136
|
-
"organizationProfile.profilePage.domainSection.menuAction__manage": "管理",
|
|
137
|
-
"organizationProfile.profilePage.domainSection.menuAction__remove": "刪除",
|
|
138
|
-
"organizationProfile.profilePage.domainSection.menuAction__verify": "驗證",
|
|
139
|
-
"organizationProfile.profilePage.domainSection.primaryButton": "新增網域",
|
|
140
|
-
"organizationProfile.profilePage.domainSection.subtitle": "允許使用者根據驗證的電子郵件網域自動加入組織或請求加入。",
|
|
141
|
-
"organizationProfile.profilePage.domainSection.title": "已驗證的網域",
|
|
142
|
-
"organizationProfile.profilePage.successMessage": "組織已更新",
|
|
143
|
-
"organizationProfile.profilePage.title": "更新檔案",
|
|
144
|
-
"organizationProfile.removeDomainPage.messageLine1": "將移除電子郵件網域{{domain}}。",
|
|
145
|
-
"organizationProfile.removeDomainPage.messageLine2": "此後使用者將無法自動加入組織。",
|
|
146
|
-
"organizationProfile.removeDomainPage.successMessage": "{{domain}}已移除",
|
|
147
|
-
"organizationProfile.removeDomainPage.title": "移除網域",
|
|
148
|
-
"organizationProfile.start.headerTitle__general": "一般",
|
|
149
|
-
"organizationProfile.start.headerTitle__members": "成員",
|
|
150
|
-
"organizationProfile.start.profileSection.primaryButton": "更新檔案",
|
|
151
|
-
"organizationProfile.start.profileSection.title": "組織檔案",
|
|
152
|
-
"organizationProfile.start.profileSection.uploadAction__title": "標誌",
|
|
153
|
-
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "移除此網域將影響被邀請的使用者。",
|
|
154
|
-
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "移除網域",
|
|
155
|
-
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "從您的已驗證網域中移除此網域",
|
|
156
|
-
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "移除網域",
|
|
157
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "使用者在註冊時將自動獲得邀請加入組織,並隨時加入。",
|
|
158
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "自動邀請",
|
|
159
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__description": "使用者會收到請求加入的建議,但必須經管理員核准後才能加入組織。",
|
|
160
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "自動建議",
|
|
161
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "更改註冊模式僅影響新使用者。",
|
|
162
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "已發送給使用者的待處理邀請:{{count}}",
|
|
163
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "已發送給使用者的待處理建議:{{count}}",
|
|
164
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "只能手動邀請使用者加入組織。",
|
|
165
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "無自動註冊",
|
|
166
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "選擇此網域的使用者如何加入組織。",
|
|
167
|
-
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "風險",
|
|
168
|
-
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "註冊選項",
|
|
169
|
-
"organizationProfile.verifiedDomainPage.subtitle": "網域{{domain}}現已驗證。請選擇註冊模式繼續。",
|
|
170
|
-
"organizationProfile.verifiedDomainPage.title": "更新{{domain}}",
|
|
171
|
-
"organizationProfile.verifyDomainPage.formSubtitle": "輸入發送到您電子郵件地址的驗證碼",
|
|
172
|
-
"organizationProfile.verifyDomainPage.formTitle": "驗證碼",
|
|
173
|
-
"organizationProfile.verifyDomainPage.resendButton": "未收到驗證碼?重新發送",
|
|
174
|
-
"organizationProfile.verifyDomainPage.subtitle": "需透過電子郵件驗證{{domainName}}網域。",
|
|
175
|
-
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "驗證碼已發送至{{emailAddress}}。請輸入驗證碼以繼續。",
|
|
176
|
-
"organizationProfile.verifyDomainPage.title": "驗證網域",
|
|
177
|
-
"organizationSwitcher.action__createOrganization": "建立組織",
|
|
178
|
-
"organizationSwitcher.action__invitationAccept": "加入",
|
|
179
|
-
"organizationSwitcher.action__manageOrganization": "管理",
|
|
180
|
-
"organizationSwitcher.action__suggestionsAccept": "請求加入",
|
|
181
|
-
"organizationSwitcher.notSelected": "未選擇組織",
|
|
182
|
-
"organizationSwitcher.personalWorkspace": "個人帳戶",
|
|
183
|
-
"organizationSwitcher.suggestionsAcceptedLabel": "待審批",
|
|
184
|
-
"paginationButton__next": "下一步",
|
|
185
|
-
"paginationButton__previous": "上一步",
|
|
186
|
-
"paginationRowText__displaying": "顯示",
|
|
187
|
-
"paginationRowText__of": "共",
|
|
188
|
-
"signIn.accountSwitcher.action__addAccount": "新增帳戶",
|
|
189
|
-
"signIn.accountSwitcher.action__signOutAll": "登出所有帳戶",
|
|
190
|
-
"signIn.accountSwitcher.subtitle": "選擇您希望繼續使用的帳戶。",
|
|
191
|
-
"signIn.accountSwitcher.title": "選擇帳戶",
|
|
192
|
-
"signIn.alternativeMethods.actionLink": "獲取幫助",
|
|
193
|
-
"signIn.alternativeMethods.actionText": "沒有這些?",
|
|
194
|
-
"signIn.alternativeMethods.blockButton__backupCode": "使用備份代碼",
|
|
195
|
-
"signIn.alternativeMethods.blockButton__emailCode": "將代碼發送至 {{identifier}} 的電子郵件",
|
|
196
|
-
"signIn.alternativeMethods.blockButton__emailLink": "將連結發送至 {{identifier}} 的電子郵件",
|
|
197
|
-
"signIn.alternativeMethods.blockButton__passkey": "使用您的通行證登入",
|
|
198
|
-
"signIn.alternativeMethods.blockButton__password": "使用密碼登入",
|
|
199
|
-
"signIn.alternativeMethods.blockButton__phoneCode": "將簡訊代碼發送至 {{identifier}}",
|
|
200
|
-
"signIn.alternativeMethods.blockButton__totp": "使用您的驗證器應用程式",
|
|
201
|
-
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "電子郵件支援",
|
|
202
|
-
"signIn.alternativeMethods.getHelp.content": "如果您在登入帳戶時遇到問題,請給我們發送電子郵件,我們將盡快與您合作恢復訪問權限。",
|
|
203
|
-
"signIn.alternativeMethods.getHelp.title": "獲取幫助",
|
|
204
|
-
"signIn.alternativeMethods.subtitle": "遇到問題嗎?您可以使用以下任何方法登入。",
|
|
205
|
-
"signIn.alternativeMethods.title": "使用其他方法",
|
|
206
|
-
"signIn.backupCodeMfa.subtitle": "您的備份代碼是設置兩步驗證時獲得的代碼。",
|
|
207
|
-
"signIn.backupCodeMfa.title": "輸入備份代碼",
|
|
208
|
-
"signIn.emailCode.formTitle": "驗證碼",
|
|
209
|
-
"signIn.emailCode.resendButton": "未收到代碼?重新發送",
|
|
210
|
-
"signIn.emailCode.subtitle": "繼續至 {{applicationName}}",
|
|
211
|
-
"signIn.emailCode.title": "檢查您的電子郵件",
|
|
212
|
-
"signIn.emailLink.expired.subtitle": "返回原始標籤以繼續。",
|
|
213
|
-
"signIn.emailLink.expired.title": "此驗證連結已過期",
|
|
214
|
-
"signIn.emailLink.failed.subtitle": "返回原始標籤以繼續。",
|
|
215
|
-
"signIn.emailLink.failed.title": "此驗證連結無效",
|
|
216
|
-
"signIn.emailLink.formSubtitle": "使用發送至您電子郵件的驗證連結",
|
|
217
|
-
"signIn.emailLink.formTitle": "驗證連結",
|
|
218
|
-
"signIn.emailLink.loading.subtitle": "您將很快被重新導向",
|
|
219
|
-
"signIn.emailLink.loading.title": "登入中...",
|
|
220
|
-
"signIn.emailLink.resendButton": "未收到連結?重新發送",
|
|
221
|
-
"signIn.emailLink.subtitle": "繼續至 {{applicationName}}",
|
|
222
|
-
"signIn.emailLink.title": "檢查您的電子郵件",
|
|
223
|
-
"signIn.emailLink.unusedTab.title": "您可以關閉此標籤",
|
|
224
|
-
"signIn.emailLink.verified.subtitle": "您將很快被重新導向",
|
|
225
|
-
"signIn.emailLink.verified.title": "成功登入",
|
|
226
|
-
"signIn.emailLink.verifiedSwitchTab.subtitle": "返回原始標籤以繼續",
|
|
227
|
-
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "返回新開啟的標籤以繼續",
|
|
228
|
-
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "在其他標籤上登入",
|
|
229
|
-
"signIn.forgotPassword.formTitle": "重設密碼代碼",
|
|
230
|
-
"signIn.forgotPassword.resendButton": "未收到代碼?重新發送",
|
|
231
|
-
"signIn.forgotPassword.subtitle": "重設您的密碼",
|
|
232
|
-
"signIn.forgotPassword.subtitle_email": "首先,輸入發送至您電子郵件地址的代碼",
|
|
233
|
-
"signIn.forgotPassword.subtitle_phone": "首先,輸入發送至您電話的代碼",
|
|
234
|
-
"signIn.forgotPassword.title": "重設密碼",
|
|
235
|
-
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "重設您的密碼",
|
|
236
|
-
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "或使用其他方法登入",
|
|
237
|
-
"signIn.forgotPasswordAlternativeMethods.title": "忘記密碼?",
|
|
238
|
-
"signIn.noAvailableMethods.message": "無法繼續登入。沒有可用的身份驗證因素。",
|
|
239
|
-
"signIn.noAvailableMethods.subtitle": "發生錯誤",
|
|
240
|
-
"signIn.noAvailableMethods.title": "無法登入",
|
|
241
|
-
"signIn.passkey.subtitle": "使用您的通行證確認您的身份。您的設備可能要求您的指紋、臉部或螢幕鎖。",
|
|
242
|
-
"signIn.passkey.title": "使用您的通行證",
|
|
243
|
-
"signIn.password.actionLink": "使用其他方法",
|
|
244
|
-
"signIn.password.subtitle": "輸入與您帳戶關聯的密碼",
|
|
245
|
-
"signIn.password.title": "輸入您的密碼",
|
|
246
|
-
"signIn.passwordPwned.title": "密碼已被盜用",
|
|
247
|
-
"signIn.phoneCode.formTitle": "驗證碼",
|
|
248
|
-
"signIn.phoneCode.resendButton": "未收到代碼?重新發送",
|
|
249
|
-
"signIn.phoneCode.subtitle": "繼續至 {{applicationName}}",
|
|
250
|
-
"signIn.phoneCode.title": "檢查您的手機",
|
|
251
|
-
"signIn.phoneCodeMfa.formTitle": "驗證碼",
|
|
252
|
-
"signIn.phoneCodeMfa.resendButton": "未收到代碼?重新發送",
|
|
253
|
-
"signIn.phoneCodeMfa.subtitle": "請輸入發送至您手機的驗證碼以繼續",
|
|
254
|
-
"signIn.phoneCodeMfa.title": "檢查您的手機",
|
|
255
|
-
"signIn.resetPassword.formButtonPrimary": "重設密碼",
|
|
256
|
-
"signIn.resetPassword.requiredMessage": "出於安全原因,需要重設您的密碼。",
|
|
257
|
-
"signIn.resetPassword.successMessage": "您的密碼已成功更改。正在為您登入,請稍候片刻。",
|
|
258
|
-
"signIn.resetPassword.title": "設置新密碼",
|
|
259
|
-
"signIn.resetPasswordMfa.detailsLabel": "在重設密碼之前,我們需要驗證您的身份。",
|
|
260
|
-
"signIn.start.actionLink": "註冊",
|
|
261
|
-
"signIn.start.actionLink__use_email": "使用電子郵件",
|
|
262
|
-
"signIn.start.actionLink__use_email_username": "使用電子郵件或使用者名稱",
|
|
263
|
-
"signIn.start.actionLink__use_passkey": "改用通行證",
|
|
264
|
-
"signIn.start.actionLink__use_phone": "使用手機",
|
|
265
|
-
"signIn.start.actionLink__use_username": "使用使用者名稱",
|
|
266
|
-
"signIn.start.actionText": "還沒有帳戶?",
|
|
267
|
-
"signIn.start.subtitle": "歡迎回來!請登入以繼續",
|
|
268
|
-
"signIn.start.title": "登入 {{applicationName}}",
|
|
269
|
-
"signIn.totpMfa.formTitle": "驗證碼",
|
|
270
|
-
"signIn.totpMfa.subtitle": "請輸入您的驗證器應用程式生成的驗證碼以繼續",
|
|
271
|
-
"signIn.totpMfa.title": "兩步驗證",
|
|
272
|
-
"signInEnterPasswordTitle": "輸入您的密碼",
|
|
273
|
-
"signUp.continue.actionLink": "登入",
|
|
274
|
-
"signUp.continue.actionText": "已有帳戶?",
|
|
275
|
-
"signUp.continue.subtitle": "請填寫剩餘的詳細信息以繼續。",
|
|
276
|
-
"signUp.continue.title": "填寫缺少的字段",
|
|
277
|
-
"signUp.emailCode.formSubtitle": "輸入發送至您電子郵件地址的驗證碼",
|
|
278
|
-
"signUp.emailCode.formTitle": "驗證碼",
|
|
279
|
-
"signUp.emailCode.resendButton": "未收到代碼?重新發送",
|
|
280
|
-
"signUp.emailCode.subtitle": "輸入發送至您電子郵件的驗證碼",
|
|
281
|
-
"signUp.emailCode.title": "驗證您的電子郵件",
|
|
282
|
-
"signUp.emailLink.formSubtitle": "使用發送至您電子郵件地址的驗證連結",
|
|
283
|
-
"signUp.emailLink.formTitle": "驗證連結",
|
|
284
|
-
"signUp.emailLink.loading.title": "正在註冊...",
|
|
285
|
-
"signUp.emailLink.resendButton": "未收到連結?重新發送",
|
|
286
|
-
"signUp.emailLink.subtitle": "繼續至 {{applicationName}}",
|
|
287
|
-
"signUp.emailLink.title": "驗證您的電子郵件",
|
|
288
|
-
"signUp.emailLink.verified.title": "註冊成功",
|
|
289
|
-
"signUp.emailLink.verifiedSwitchTab.subtitle": "返回新開啟的標籤以繼續",
|
|
290
|
-
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "返回上一個標籤以繼續",
|
|
291
|
-
"signUp.emailLink.verifiedSwitchTab.title": "電子郵件驗證成功",
|
|
292
|
-
"signUp.phoneCode.formSubtitle": "輸入發送至您手機號碼的驗證碼",
|
|
293
|
-
"signUp.phoneCode.formTitle": "驗證碼",
|
|
294
|
-
"signUp.phoneCode.resendButton": "未收到代碼?重新發送",
|
|
295
|
-
"signUp.phoneCode.subtitle": "輸入發送至您手機的驗證碼",
|
|
296
|
-
"signUp.phoneCode.title": "驗證您的手機",
|
|
297
|
-
"signUp.start.actionLink": "登入",
|
|
298
|
-
"signUp.start.actionText": "已有帳戶?",
|
|
299
|
-
"signUp.start.subtitle": "歡迎!請填寫詳細信息開始。",
|
|
300
|
-
"signUp.start.title": "創建您的帳戶",
|
|
301
|
-
"socialButtonsBlockButton": "使用 {{provider|titleize}} 繼續",
|
|
302
|
-
"unstable__errors.captcha_invalid": "由於安全驗證失敗,註冊失敗。請重新整理頁面再試一次,或聯繫支援部門尋求協助。",
|
|
303
|
-
"unstable__errors.captcha_unavailable": "由於機器人驗證失敗,註冊失敗。請重新整理頁面再試一次,或聯繫支援部門尋求協助。",
|
|
304
|
-
"unstable__errors.form_code_incorrect": "",
|
|
305
|
-
"unstable__errors.form_identifier_exists": "",
|
|
306
|
-
"unstable__errors.form_identifier_exists__email_address": "此電子郵件地址已被使用。請嘗試其他地址。",
|
|
307
|
-
"unstable__errors.form_identifier_exists__phone_number": "此電話號碼已被使用。請嘗試其他號碼。",
|
|
308
|
-
"unstable__errors.form_identifier_exists__username": "此使用者名稱已被使用。請嘗試其他名稱。",
|
|
309
|
-
"unstable__errors.form_identifier_not_found": "",
|
|
310
|
-
"unstable__errors.form_param_format_invalid": "",
|
|
311
|
-
"unstable__errors.form_param_format_invalid__email_address": "電子郵件地址必須是有效的電子郵件地址。",
|
|
312
|
-
"unstable__errors.form_param_format_invalid__phone_number": "電話號碼必須符合有效的國際格式。",
|
|
313
|
-
"unstable__errors.form_param_max_length_exceeded__first_name": "名字不應超過256個字符。",
|
|
314
|
-
"unstable__errors.form_param_max_length_exceeded__last_name": "姓氏不應超過256個字符。",
|
|
315
|
-
"unstable__errors.form_param_max_length_exceeded__name": "名稱不應超過256個字符。",
|
|
316
|
-
"unstable__errors.form_param_nil": "",
|
|
317
|
-
"unstable__errors.form_password_incorrect": "",
|
|
318
|
-
"unstable__errors.form_password_length_too_short": "",
|
|
319
|
-
"unstable__errors.form_password_not_strong_enough": "您的密碼不夠強大。",
|
|
320
|
-
"unstable__errors.form_password_pwned": "此密碼已被發現存在安全漏洞,請嘗試其他密碼。",
|
|
321
|
-
"unstable__errors.form_password_pwned__sign_in": "此密碼已被發現存在安全漏洞,請重設您的密碼。",
|
|
322
|
-
"unstable__errors.form_password_size_in_bytes_exceeded": "您的密碼超過允許的最大字節數,請縮短或刪除一些特殊字符。",
|
|
323
|
-
"unstable__errors.form_password_validation_failed": "密碼不正確",
|
|
324
|
-
"unstable__errors.form_username_invalid_character": "",
|
|
325
|
-
"unstable__errors.form_username_invalid_length": "",
|
|
326
|
-
"unstable__errors.identification_deletion_failed": "您無法刪除您的最後一個身分證。",
|
|
327
|
-
"unstable__errors.not_allowed_access": "",
|
|
328
|
-
"unstable__errors.passkey_already_exists": "此設備已註冊了一個通行證。",
|
|
329
|
-
"unstable__errors.passkey_not_supported": "此設備不支援通行證。",
|
|
330
|
-
"unstable__errors.passkey_pa_not_supported": "註冊需要平台驗證器,但設備不支援。",
|
|
331
|
-
"unstable__errors.passkey_registration_cancelled": "通行證註冊已取消或超時。",
|
|
332
|
-
"unstable__errors.passkey_retrieval_cancelled": "通行證驗證已取消或超時。",
|
|
333
|
-
"unstable__errors.passwordComplexity.maximumLength": "少於{{length}}個字符",
|
|
334
|
-
"unstable__errors.passwordComplexity.minimumLength": "{{length}}個或更多字符",
|
|
335
|
-
"unstable__errors.passwordComplexity.requireLowercase": "小寫字母",
|
|
336
|
-
"unstable__errors.passwordComplexity.requireNumbers": "數字",
|
|
337
|
-
"unstable__errors.passwordComplexity.requireSpecialCharacter": "特殊字符",
|
|
338
|
-
"unstable__errors.passwordComplexity.requireUppercase": "大寫字母",
|
|
339
|
-
"unstable__errors.passwordComplexity.sentencePrefix": "您的密碼必須包含",
|
|
340
|
-
"unstable__errors.phone_number_exists": "此電話號碼已被使用。請嘗試其他號碼。",
|
|
341
|
-
"unstable__errors.zxcvbn.couldBeStronger": "您的密碼有效,但可以更強大。嘗試添加更多字符。",
|
|
342
|
-
"unstable__errors.zxcvbn.goodPassword": "您的密碼符合所有必要條件。",
|
|
343
|
-
"unstable__errors.zxcvbn.notEnough": "您的密碼不夠強大。",
|
|
344
|
-
"unstable__errors.zxcvbn.suggestions.allUppercase": "將一些字母大寫。",
|
|
345
|
-
"unstable__errors.zxcvbn.suggestions.anotherWord": "添加更多不常見的單詞。",
|
|
346
|
-
"unstable__errors.zxcvbn.suggestions.associatedYears": "避免與您有關的年份。",
|
|
347
|
-
"unstable__errors.zxcvbn.suggestions.capitalization": "大寫第一個字母以外的字母。",
|
|
348
|
-
"unstable__errors.zxcvbn.suggestions.dates": "避免與您有關的日期和年份。",
|
|
349
|
-
"unstable__errors.zxcvbn.suggestions.l33t": "避免可預測的字母替換,如將'@'替換為'a'。",
|
|
350
|
-
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "使用更長的鍵盤模式,並多次改變打字方向。",
|
|
351
|
-
"unstable__errors.zxcvbn.suggestions.noNeed": "您可以創建強大的密碼,而無需使用符號、數字或大寫字母。",
|
|
352
|
-
"unstable__errors.zxcvbn.suggestions.pwned": "如果您在其他地方使用此密碼,應該更改它。",
|
|
353
|
-
"unstable__errors.zxcvbn.suggestions.recentYears": "避免最近的年份。",
|
|
354
|
-
"unstable__errors.zxcvbn.suggestions.repeated": "避免重複的單詞和字符。",
|
|
355
|
-
"unstable__errors.zxcvbn.suggestions.reverseWords": "避免常見單詞的反向拼寫。",
|
|
356
|
-
"unstable__errors.zxcvbn.suggestions.sequences": "避免常見的字符序列。",
|
|
357
|
-
"unstable__errors.zxcvbn.suggestions.useWords": "使用多個單詞,但避免常見短語。",
|
|
358
|
-
"unstable__errors.zxcvbn.warnings.common": "這是常用的密碼。",
|
|
359
|
-
"unstable__errors.zxcvbn.warnings.commonNames": "常見名字和姓氏容易被猜測。",
|
|
360
|
-
"unstable__errors.zxcvbn.warnings.dates": "日期容易被猜測。",
|
|
361
|
-
"unstable__errors.zxcvbn.warnings.extendedRepeat": "重複字符模式如“abcabcabc”容易被猜測。",
|
|
362
|
-
"unstable__errors.zxcvbn.warnings.keyPattern": "短鍵盤模式容易被猜測。",
|
|
363
|
-
"unstable__errors.zxcvbn.warnings.namesByThemselves": "單個名字或姓氏容易被猜測。",
|
|
364
|
-
"unstable__errors.zxcvbn.warnings.pwned": "您的密碼在互聯網上的數據洩露中曝光。",
|
|
365
|
-
"unstable__errors.zxcvbn.warnings.recentYears": "最近的年份容易被猜測。",
|
|
366
|
-
"unstable__errors.zxcvbn.warnings.sequences": "常見的字符序列如“abc”容易被猜測。",
|
|
367
|
-
"unstable__errors.zxcvbn.warnings.similarToCommon": "這與常用密碼類似。",
|
|
368
|
-
"unstable__errors.zxcvbn.warnings.simpleRepeat": "重複字符如“aaa”容易被猜測。",
|
|
369
|
-
"unstable__errors.zxcvbn.warnings.straightRow": "鍵盤上的直行鍵容易被猜測。",
|
|
370
|
-
"unstable__errors.zxcvbn.warnings.topHundred": "這是常用的密碼。",
|
|
371
|
-
"unstable__errors.zxcvbn.warnings.topTen": "這是常用的密碼。",
|
|
372
|
-
"unstable__errors.zxcvbn.warnings.userInputs": "不應包含任何個人或頁面相關數據。",
|
|
373
|
-
"unstable__errors.zxcvbn.warnings.wordByItself": "單詞容易被猜測。",
|
|
374
|
-
"userButton.action__addAccount": "新增帳戶",
|
|
375
|
-
"userButton.action__manageAccount": "管理帳戶",
|
|
376
|
-
"userButton.action__signOut": "登出",
|
|
377
|
-
"userButton.action__signOutAll": "登出所有帳戶",
|
|
378
|
-
"userProfile.backupCodePage.actionLabel__copied": "已複製!",
|
|
379
|
-
"userProfile.backupCodePage.actionLabel__copy": "全部複製",
|
|
380
|
-
"userProfile.backupCodePage.actionLabel__download": "下載 .txt",
|
|
381
|
-
"userProfile.backupCodePage.actionLabel__print": "列印",
|
|
382
|
-
"userProfile.backupCodePage.infoText1": "此帳戶將啟用備份代碼。",
|
|
383
|
-
"userProfile.backupCodePage.infoText2": "請保密並安全存放備份代碼。如果懷疑代碼已被泄露,可以重新生成備份代碼。",
|
|
384
|
-
"userProfile.backupCodePage.subtitle__codelist": "安全存放並保密。",
|
|
385
|
-
"userProfile.backupCodePage.successMessage": "備份代碼現已啟用。如果您無法使用身份驗證裝置,可以使用其中一個代碼登入您的帳戶。每個代碼只能使用一次。",
|
|
386
|
-
"userProfile.backupCodePage.successSubtitle": "如果您無法使用身份驗證裝置,可以使用其中一個代碼登入您的帳戶。",
|
|
387
|
-
"userProfile.backupCodePage.title": "新增備份代碼驗證",
|
|
388
|
-
"userProfile.backupCodePage.title__codelist": "備份代碼",
|
|
389
|
-
"userProfile.connectedAccountPage.formHint": "選擇提供者以連接您的帳戶。",
|
|
390
|
-
"userProfile.connectedAccountPage.formHint__noAccounts": "沒有可用的外部帳戶提供者。",
|
|
391
|
-
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} 將從此帳戶中移除。",
|
|
392
|
-
"userProfile.connectedAccountPage.removeResource.messageLine2": "您將無法再使用此連接帳戶,任何相關功能也將無法使用。",
|
|
393
|
-
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} 已從您的帳戶中移除。",
|
|
394
|
-
"userProfile.connectedAccountPage.removeResource.title": "移除連接帳戶",
|
|
395
|
-
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
|
|
396
|
-
"userProfile.connectedAccountPage.successMessage": "提供者已添加至您的帳戶",
|
|
397
|
-
"userProfile.connectedAccountPage.title": "新增連接帳戶",
|
|
398
|
-
"userProfile.deletePage.actionDescription": "在下方輸入\"刪除帳戶\"。",
|
|
399
|
-
"userProfile.deletePage.confirm": "刪除帳戶",
|
|
400
|
-
"userProfile.deletePage.messageLine1": "您確定要刪除您的帳戶嗎?",
|
|
401
|
-
"userProfile.deletePage.messageLine2": "此操作是永久且不可逆轉的。",
|
|
402
|
-
"userProfile.deletePage.title": "刪除帳戶",
|
|
403
|
-
"userProfile.emailAddressPage.emailCode.formHint": "將發送包含驗證碼的郵件至此電子郵件地址。",
|
|
404
|
-
"userProfile.emailAddressPage.emailCode.formSubtitle": "輸入發送至 {{identifier}} 的驗證碼。",
|
|
405
|
-
"userProfile.emailAddressPage.emailCode.formTitle": "驗證碼",
|
|
406
|
-
"userProfile.emailAddressPage.emailCode.resendButton": "未收到驗證碼?重新發送",
|
|
407
|
-
"userProfile.emailAddressPage.emailCode.successMessage": "電子郵件 {{identifier}} 已添加至您的帳戶。",
|
|
408
|
-
"userProfile.emailAddressPage.emailLink.formHint": "將發送包含驗證連結的郵件至此電子郵件地址。",
|
|
409
|
-
"userProfile.emailAddressPage.emailLink.formSubtitle": "點擊發送至 {{identifier}} 的郵件中的驗證連結。",
|
|
410
|
-
"userProfile.emailAddressPage.emailLink.formTitle": "驗證連結",
|
|
411
|
-
"userProfile.emailAddressPage.emailLink.resendButton": "未收到連結?重新發送",
|
|
412
|
-
"userProfile.emailAddressPage.emailLink.successMessage": "電子郵件 {{identifier}} 已添加至您的帳戶。",
|
|
413
|
-
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} 將從此帳戶中移除。",
|
|
414
|
-
"userProfile.emailAddressPage.removeResource.messageLine2": "您將無法再使用此電子郵件地址登入。",
|
|
415
|
-
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} 已從您的帳戶中移除。",
|
|
416
|
-
"userProfile.emailAddressPage.removeResource.title": "移除電子郵件地址",
|
|
417
|
-
"userProfile.emailAddressPage.title": "新增電子郵件地址",
|
|
418
|
-
"userProfile.emailAddressPage.verifyTitle": "驗證電子郵件地址",
|
|
419
|
-
"userProfile.formButtonPrimary__add": "新增",
|
|
420
|
-
"userProfile.formButtonPrimary__continue": "繼續",
|
|
421
|
-
"userProfile.formButtonPrimary__finish": "完成",
|
|
422
|
-
"userProfile.formButtonPrimary__remove": "移除",
|
|
423
|
-
"userProfile.formButtonPrimary__save": "儲存",
|
|
424
|
-
"userProfile.formButtonReset": "取消",
|
|
425
|
-
"userProfile.mfaPage.formHint": "選擇一種方法進行添加。",
|
|
426
|
-
"userProfile.mfaPage.title": "新增兩步驗證",
|
|
427
|
-
"userProfile.mfaPhoneCodePage.backButton": "使用現有號碼",
|
|
428
|
-
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "新增電話號碼",
|
|
429
|
-
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "登入時將不再接收來自此號碼的驗證碼。",
|
|
430
|
-
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "您的帳戶可能不夠安全。您確定要繼續嗎?",
|
|
431
|
-
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "已移除 {{mfaPhoneCode}} 的簡訊驗證。",
|
|
432
|
-
"userProfile.mfaPhoneCodePage.removeResource.title": "移除兩步驗證",
|
|
433
|
-
"userProfile.mfaPhoneCodePage.subtitle__availablePhoneNumbers": "選擇現有電話號碼註冊簡訊驗證,或新增一個。",
|
|
434
|
-
"userProfile.mfaPhoneCodePage.subtitle__unavailablePhoneNumbers": "沒有可用的電話號碼可註冊簡訊驗證,請新增一個。",
|
|
435
|
-
"userProfile.mfaPhoneCodePage.successMessage1": "登入時,您需要輸入發送至此電話號碼的驗證碼作為額外步驟。",
|
|
436
|
-
"userProfile.mfaPhoneCodePage.successMessage2": "請儲存這些備份代碼並安全保管。如果您無法使用身份驗證裝置,可以使用備份代碼登入。",
|
|
437
|
-
"userProfile.mfaPhoneCodePage.successTitle": "已啟用簡訊驗證",
|
|
438
|
-
"userProfile.mfaPhoneCodePage.title": "新增簡訊驗證",
|
|
439
|
-
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "掃描 QR 碼",
|
|
440
|
-
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "無法掃描 QR 碼?",
|
|
441
|
-
"userProfile.mfaTOTPPage.authenticatorApp.infoText__ableToScan": "在您的驗證器應用程式中設定新的登入方法,並掃描以下 QR 碼以將其連結至您的帳戶。",
|
|
442
|
-
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "在您的驗證器中設定新的登入方法,並輸入下方提供的金鑰。",
|
|
443
|
-
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan1": "確保已啟用基於時間或一次性密碼,然後完成連結您的帳戶。",
|
|
444
|
-
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "或者,如果您的驗證器支援 TOTP URI,您也可以複製完整的 URI。",
|
|
445
|
-
"userProfile.mfaTOTPPage.removeResource.messageLine1": "登入時將不再需要來自此驗證器的驗證碼。",
|
|
446
|
-
"userProfile.mfaTOTPPage.removeResource.messageLine2": "您的帳戶可能不夠安全。您確定要繼續嗎?",
|
|
447
|
-
"userProfile.mfaTOTPPage.removeResource.successMessage": "已移除驗證器應用程式的兩步驗證。",
|
|
448
|
-
"userProfile.mfaTOTPPage.removeResource.title": "移除兩步驗證",
|
|
449
|
-
"userProfile.mfaTOTPPage.successMessage": "已啟用兩步驗證。登入時,您需要輸入來自此驗證器的驗證碼作為額外步驟。",
|
|
450
|
-
"userProfile.mfaTOTPPage.title": "新增驗證器應用程式",
|
|
451
|
-
"userProfile.mfaTOTPPage.verifySubtitle": "輸入您的驗證器生成的驗證碼",
|
|
452
|
-
"userProfile.mfaTOTPPage.verifyTitle": "驗證碼",
|
|
453
|
-
"userProfile.mobileButton__menu": "選單",
|
|
454
|
-
"userProfile.navbar.account": "個人資料",
|
|
455
|
-
"userProfile.navbar.description": "管理您的帳戶資訊",
|
|
456
|
-
"userProfile.navbar.security": "安全性",
|
|
457
|
-
"userProfile.navbar.title": "帳戶",
|
|
458
|
-
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} 將從此帳戶中移除。",
|
|
459
|
-
"userProfile.passkeyScreen.removeResource.title": "移除密碼鍵",
|
|
460
|
-
"userProfile.passkeyScreen.subtitle__rename": "您可以更改密碼鍵名稱,以便更容易找到。",
|
|
461
|
-
"userProfile.passkeyScreen.title__rename": "重新命名密碼鍵",
|
|
462
|
-
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "建議登出所有可能使用過您舊密碼的其他裝置。",
|
|
463
|
-
"userProfile.passwordPage.readonly": "您目前無法編輯密碼,因為只能透過企業連線登入。",
|
|
464
|
-
"userProfile.passwordPage.successMessage__set": "您的密碼已設定。",
|
|
465
|
-
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "所有其他裝置已登出。",
|
|
466
|
-
"userProfile.passwordPage.successMessage__update": "您的密碼已更新。",
|
|
467
|
-
"userProfile.passwordPage.title__set": "設定密碼",
|
|
468
|
-
"userProfile.passwordPage.title__update": "更新密碼",
|
|
469
|
-
"userProfile.phoneNumberPage.infoText": "將發送包含驗證碼的簡訊至此電話號碼。可能會產生訊息和資料費用。",
|
|
470
|
-
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} 將從此帳戶中移除。",
|
|
471
|
-
"userProfile.phoneNumberPage.removeResource.messageLine2": "您將無法再使用此電話號碼登入。",
|
|
472
|
-
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} 已從您的帳戶中移除。",
|
|
473
|
-
"userProfile.phoneNumberPage.removeResource.title": "移除電話號碼",
|
|
474
|
-
"userProfile.phoneNumberPage.successMessage": "{{identifier}} 已新增至您的帳戶。",
|
|
475
|
-
"userProfile.phoneNumberPage.title": "新增電話號碼",
|
|
476
|
-
"userProfile.phoneNumberPage.verifySubtitle": "輸入發送至 {{identifier}} 的驗證碼",
|
|
477
|
-
"userProfile.phoneNumberPage.verifyTitle": "驗證電話號碼",
|
|
478
|
-
"userProfile.profilePage.fileDropAreaHint": "建議尺寸 1:1,最大 10MB。",
|
|
479
|
-
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "移除",
|
|
480
|
-
"userProfile.profilePage.imageFormSubtitle": "上傳",
|
|
481
|
-
"userProfile.profilePage.imageFormTitle": "個人形象",
|
|
482
|
-
"userProfile.profilePage.readonly": "您的個人資訊已由企業連線提供,無法編輯。",
|
|
483
|
-
"userProfile.profilePage.successMessage": "您的個人資料已更新。",
|
|
484
|
-
"userProfile.profilePage.title": "更新個人資料",
|
|
485
|
-
"userProfile.start.activeDevicesSection.destructiveAction": "登出裝置",
|
|
486
|
-
"userProfile.start.activeDevicesSection.title": "活躍裝置",
|
|
487
|
-
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "重試",
|
|
488
|
-
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "現在授權",
|
|
489
|
-
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "移除",
|
|
490
|
-
"userProfile.start.connectedAccountsSection.primaryButton": "連結帳戶",
|
|
491
|
-
"userProfile.start.connectedAccountsSection.subtitle__reauthorize": "所需範圍已更新,您可能遇到功能受限的情況。請重新授權此應用以避免任何問題",
|
|
492
|
-
"userProfile.start.connectedAccountsSection.title": "已連結帳戶",
|
|
493
|
-
"userProfile.start.dangerSection.deleteAccountButton": "刪除帳戶",
|
|
494
|
-
"userProfile.start.dangerSection.title": "刪除帳戶",
|
|
495
|
-
"userProfile.start.emailAddressesSection.destructiveAction": "移除電子郵件",
|
|
496
|
-
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "設為主要",
|
|
497
|
-
"userProfile.start.emailAddressesSection.detailsAction__primary": "完成驗證",
|
|
498
|
-
"userProfile.start.emailAddressesSection.detailsAction__unverified": "驗證",
|
|
499
|
-
"userProfile.start.emailAddressesSection.primaryButton": "新增電子郵件地址",
|
|
500
|
-
"userProfile.start.emailAddressesSection.title": "電子郵件地址",
|
|
501
|
-
"userProfile.start.enterpriseAccountsSection.title": "企業帳戶",
|
|
502
|
-
"userProfile.start.headerTitle__account": "個人資料詳情",
|
|
503
|
-
"userProfile.start.headerTitle__security": "安全性",
|
|
504
|
-
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "重新生成",
|
|
505
|
-
"userProfile.start.mfaSection.backupCodes.headerTitle": "備份代碼",
|
|
506
|
-
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "取得一組新的安全備份代碼。之前的備份代碼將被刪除且無法使用。",
|
|
507
|
-
"userProfile.start.mfaSection.backupCodes.title__regenerate": "重新生成備份代碼",
|
|
508
|
-
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "設為預設",
|
|
509
|
-
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "移除",
|
|
510
|
-
"userProfile.start.mfaSection.primaryButton": "新增雙重驗證",
|
|
511
|
-
"userProfile.start.mfaSection.title": "雙重驗證",
|
|
512
|
-
"userProfile.start.mfaSection.totp.destructiveActionTitle": "移除",
|
|
513
|
-
"userProfile.start.mfaSection.totp.headerTitle": "驗證器應用程式",
|
|
514
|
-
"userProfile.start.passkeysSection.menuAction__destructive": "移除",
|
|
515
|
-
"userProfile.start.passkeysSection.menuAction__rename": "重新命名",
|
|
516
|
-
"userProfile.start.passkeysSection.title": "通行證",
|
|
517
|
-
"userProfile.start.passwordSection.primaryButton__setPassword": "設定密碼",
|
|
518
|
-
"userProfile.start.passwordSection.primaryButton__updatePassword": "更新密碼",
|
|
519
|
-
"userProfile.start.passwordSection.title": "密碼",
|
|
520
|
-
"userProfile.start.phoneNumbersSection.destructiveAction": "移除電話號碼",
|
|
521
|
-
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "設為主要",
|
|
522
|
-
"userProfile.start.phoneNumbersSection.detailsAction__primary": "完成驗證",
|
|
523
|
-
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "驗證電話號碼",
|
|
524
|
-
"userProfile.start.phoneNumbersSection.primaryButton": "新增電話號碼",
|
|
525
|
-
"userProfile.start.phoneNumbersSection.title": "電話號碼",
|
|
526
|
-
"userProfile.start.profileSection.primaryButton": "更新個人資料",
|
|
527
|
-
"userProfile.start.profileSection.title": "個人資料",
|
|
528
|
-
"userProfile.start.usernameSection.primaryButton__setUsername": "設定使用者名稱",
|
|
529
|
-
"userProfile.start.usernameSection.primaryButton__updateUsername": "更新使用者名稱",
|
|
530
|
-
"userProfile.start.usernameSection.title": "使用者名稱",
|
|
531
|
-
"userProfile.start.web3WalletsSection.destructiveAction": "移除錢包",
|
|
532
|
-
"userProfile.start.web3WalletsSection.primaryButton": "Web3錢包",
|
|
533
|
-
"userProfile.start.web3WalletsSection.title": "Web3錢包",
|
|
534
|
-
"userProfile.usernamePage.successMessage": "您的使用者名稱已更新。",
|
|
535
|
-
"userProfile.usernamePage.title__set": "設定使用者名稱",
|
|
536
|
-
"userProfile.usernamePage.title__update": "更新使用者名稱",
|
|
537
|
-
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} 將從此帳戶中移除。",
|
|
538
|
-
"userProfile.web3WalletPage.removeResource.messageLine2": "您將無法再使用此 Web3 錢包登入。",
|
|
539
|
-
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} 已從您的帳戶中移除。",
|
|
540
|
-
"userProfile.web3WalletPage.removeResource.title": "移除 Web3 錢包",
|
|
541
|
-
"userProfile.web3WalletPage.subtitle__availableWallets": "選擇一個 Web3 錢包連線至您的帳戶。",
|
|
542
|
-
"userProfile.web3WalletPage.subtitle__unavailableWallets": "目前沒有可用的 Web3 錢包。",
|
|
543
|
-
"userProfile.web3WalletPage.successMessage": "錢包已新增至您的帳戶。",
|
|
544
|
-
"userProfile.web3WalletPage.title": "新增 Web3 錢包"
|
|
545
|
-
}
|