@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/tr-TR/clerk.json
DELETED
|
@@ -1,545 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"backButton": "Geri",
|
|
3
|
-
"badge__default": "Varsayılan",
|
|
4
|
-
"badge__otherImpersonatorDevice": "Diğer taklit cihaz",
|
|
5
|
-
"badge__primary": "Birincil",
|
|
6
|
-
"badge__requiresAction": "İşlem gerekiyor",
|
|
7
|
-
"badge__thisDevice": "Bu cihaz",
|
|
8
|
-
"badge__unverified": "Doğrulanmamış",
|
|
9
|
-
"badge__userDevice": "Kullanıcı cihazı",
|
|
10
|
-
"badge__you": "Siz",
|
|
11
|
-
"createOrganization.formButtonSubmit": "Organizasyon oluştur",
|
|
12
|
-
"createOrganization.invitePage.formButtonReset": "Atla",
|
|
13
|
-
"createOrganization.title": "Organizasyon oluştur",
|
|
14
|
-
"dates.lastDay": "Dün {{ date | timeString('tr-TR') }}",
|
|
15
|
-
"dates.next6Days": "{{ date | weekday('tr-TR','long') }} günü {{ date | timeString('tr-TR') }}",
|
|
16
|
-
"dates.nextDay": "Yarın {{ date | timeString('tr-TR') }}",
|
|
17
|
-
"dates.numeric": "{{ date | numeric('tr-TR') }}",
|
|
18
|
-
"dates.previous6Days": "Geçen {{ date | weekday('tr-TR','long') }} günü {{ date | timeString('tr-TR') }}",
|
|
19
|
-
"dates.sameDay": "Bugün {{ date | timeString('tr-TR') }}",
|
|
20
|
-
"dividerText": "veya",
|
|
21
|
-
"footerActionLink__useAnotherMethod": "Başka bir yöntem kullan",
|
|
22
|
-
"footerPageLink__help": "Yardım",
|
|
23
|
-
"footerPageLink__privacy": "Gizlilik",
|
|
24
|
-
"footerPageLink__terms": "Şartlar",
|
|
25
|
-
"formButtonPrimary": "Devam et",
|
|
26
|
-
"formButtonPrimary__verify": "Doğrula",
|
|
27
|
-
"formFieldAction__forgotPassword": "Şifrenizi mi unuttunuz?",
|
|
28
|
-
"formFieldError__matchingPasswords": "Şifreler eşleşiyor.",
|
|
29
|
-
"formFieldError__notMatchingPasswords": "Şifreler eşleşmiyor.",
|
|
30
|
-
"formFieldError__verificationLinkExpired": "Doğrulama bağlantısının süresi doldu. Lütfen yeni bir bağlantı isteyin.",
|
|
31
|
-
"formFieldHintText__optional": "İsteğe bağlı",
|
|
32
|
-
"formFieldHintText__slug": "Slug, URL'lerde kullanılan, okunabilir ve benzersiz bir kimliktir.",
|
|
33
|
-
"formFieldInputPlaceholder__backupCode": "",
|
|
34
|
-
"formFieldInputPlaceholder__confirmDeletionUserAccount": "Hesabı sil",
|
|
35
|
-
"formFieldInputPlaceholder__emailAddress": "",
|
|
36
|
-
"formFieldInputPlaceholder__emailAddress_username": "",
|
|
37
|
-
"formFieldInputPlaceholder__emailAddresses": "ornek@email.com, ornek2@email.com",
|
|
38
|
-
"formFieldInputPlaceholder__firstName": "",
|
|
39
|
-
"formFieldInputPlaceholder__lastName": "",
|
|
40
|
-
"formFieldInputPlaceholder__organizationDomain": "",
|
|
41
|
-
"formFieldInputPlaceholder__organizationDomainEmailAddress": "",
|
|
42
|
-
"formFieldInputPlaceholder__organizationName": "",
|
|
43
|
-
"formFieldInputPlaceholder__organizationSlug": "benim-org",
|
|
44
|
-
"formFieldInputPlaceholder__password": "",
|
|
45
|
-
"formFieldInputPlaceholder__phoneNumber": "",
|
|
46
|
-
"formFieldInputPlaceholder__username": "",
|
|
47
|
-
"formFieldLabel__automaticInvitations": "Bu alan için otomatik davetleri etkinleştir",
|
|
48
|
-
"formFieldLabel__backupCode": "Yedek kod",
|
|
49
|
-
"formFieldLabel__confirmDeletion": "Onay",
|
|
50
|
-
"formFieldLabel__confirmPassword": "Şifreyi onayla",
|
|
51
|
-
"formFieldLabel__currentPassword": "Mevcut şifre",
|
|
52
|
-
"formFieldLabel__emailAddress": "E-posta adresi",
|
|
53
|
-
"formFieldLabel__emailAddress_username": "E-posta adresi veya kullanıcı adı",
|
|
54
|
-
"formFieldLabel__emailAddresses": "E-posta adresleri",
|
|
55
|
-
"formFieldLabel__firstName": "Ad",
|
|
56
|
-
"formFieldLabel__lastName": "Soyad",
|
|
57
|
-
"formFieldLabel__newPassword": "Yeni şifre",
|
|
58
|
-
"formFieldLabel__organizationDomain": "Alan adı",
|
|
59
|
-
"formFieldLabel__organizationDomainDeletePending": "Bekleyen davetleri ve önerileri sil",
|
|
60
|
-
"formFieldLabel__organizationDomainEmailAddress": "Doğrulama e-posta adresi",
|
|
61
|
-
"formFieldLabel__organizationDomainEmailAddressDescription": "Bu alan adı altında bir e-posta adresi girin, bir kod alarak alanı doğrulayın.",
|
|
62
|
-
"formFieldLabel__organizationName": "Ad",
|
|
63
|
-
"formFieldLabel__organizationSlug": "Slug",
|
|
64
|
-
"formFieldLabel__passkeyName": "Geçiş anahtarı adı",
|
|
65
|
-
"formFieldLabel__password": "Şifre",
|
|
66
|
-
"formFieldLabel__phoneNumber": "Telefon numarası",
|
|
67
|
-
"formFieldLabel__role": "Rol",
|
|
68
|
-
"formFieldLabel__signOutOfOtherSessions": "Diğer tüm cihazlardan çıkış yap",
|
|
69
|
-
"formFieldLabel__username": "Kullanıcı adı",
|
|
70
|
-
"impersonationFab.action__signOut": "Çıkış yap",
|
|
71
|
-
"impersonationFab.title": "{{identifier}} olarak giriş yapıldı",
|
|
72
|
-
"locale": "tr-TR",
|
|
73
|
-
"maintenanceMode": "Şu anda bakımdayız, ancak endişelenmeyin, birkaç dakikadan fazla sürmeyecek.",
|
|
74
|
-
"membershipRole__admin": "Yönetici",
|
|
75
|
-
"membershipRole__basicMember": "Üye",
|
|
76
|
-
"membershipRole__guestMember": "Misafir",
|
|
77
|
-
"organizationList.action__createOrganization": "Organizasyon oluştur",
|
|
78
|
-
"organizationList.action__invitationAccept": "Katıl",
|
|
79
|
-
"organizationList.action__suggestionsAccept": "Katılma isteği gönder",
|
|
80
|
-
"organizationList.createOrganization": "Organizasyon Oluştur",
|
|
81
|
-
"organizationList.invitationAcceptedLabel": "Katıldı",
|
|
82
|
-
"organizationList.subtitle": "{{applicationName}} uygulamasına devam etmek için",
|
|
83
|
-
"organizationList.suggestionsAcceptedLabel": "Onay bekliyor",
|
|
84
|
-
"organizationList.title": "Bir hesap seçin",
|
|
85
|
-
"organizationList.titleWithoutPersonal": "Bir organizasyon seçin",
|
|
86
|
-
"organizationProfile.badge__automaticInvitation": "Otomatik davetler",
|
|
87
|
-
"organizationProfile.badge__automaticSuggestion": "Otomatik öneriler",
|
|
88
|
-
"organizationProfile.badge__manualInvitation": "Otomatik kayıt yok",
|
|
89
|
-
"organizationProfile.badge__unverified": "Doğrulanmamış",
|
|
90
|
-
"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.",
|
|
91
|
-
"organizationProfile.createDomainPage.title": "Alan adı ekle",
|
|
92
|
-
"organizationProfile.invitePage.detailsTitle__inviteFailed": "Davetler gönderilemedi. Aşağıdaki e-posta adresleri için zaten bekleyen davetler var: {{email_addresses}}.",
|
|
93
|
-
"organizationProfile.invitePage.formButtonPrimary__continue": "Davet gönder",
|
|
94
|
-
"organizationProfile.invitePage.selectDropdown__role": "Rol seçin",
|
|
95
|
-
"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.",
|
|
96
|
-
"organizationProfile.invitePage.successMessage": "Davetler başarıyla gönderildi",
|
|
97
|
-
"organizationProfile.invitePage.title": "Yeni üyeleri davet et",
|
|
98
|
-
"organizationProfile.membersPage.action__invite": "Davet et",
|
|
99
|
-
"organizationProfile.membersPage.activeMembersTab.menuAction__remove": "Üyeyi kaldır",
|
|
100
|
-
"organizationProfile.membersPage.activeMembersTab.tableHeader__actions": "",
|
|
101
|
-
"organizationProfile.membersPage.activeMembersTab.tableHeader__joined": "Katılma tarihi",
|
|
102
|
-
"organizationProfile.membersPage.activeMembersTab.tableHeader__role": "Rol",
|
|
103
|
-
"organizationProfile.membersPage.activeMembersTab.tableHeader__user": "Kullanıcı",
|
|
104
|
-
"organizationProfile.membersPage.detailsTitle__emptyRow": "Gösterilecek üye yok",
|
|
105
|
-
"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.",
|
|
106
|
-
"organizationProfile.membersPage.invitationsTab.autoInvitations.headerTitle": "Otomatik davetler",
|
|
107
|
-
"organizationProfile.membersPage.invitationsTab.autoInvitations.primaryButton": "Doğrulanmış alanları yönet",
|
|
108
|
-
"organizationProfile.membersPage.invitationsTab.table__emptyRow": "Gösterilecek davet yok",
|
|
109
|
-
"organizationProfile.membersPage.invitedMembersTab.menuAction__revoke": "Daveti geri al",
|
|
110
|
-
"organizationProfile.membersPage.invitedMembersTab.tableHeader__invited": "Davet edildi",
|
|
111
|
-
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerSubtitle": "Eşleşen e-posta alan adıyla kaydolan kullanıcılar, organizasyona katılma önerisi görecektir.",
|
|
112
|
-
"organizationProfile.membersPage.requestsTab.autoSuggestions.headerTitle": "Otomatik öneriler",
|
|
113
|
-
"organizationProfile.membersPage.requestsTab.autoSuggestions.primaryButton": "Doğrulanmış alanları yönet",
|
|
114
|
-
"organizationProfile.membersPage.requestsTab.menuAction__approve": "Onayla",
|
|
115
|
-
"organizationProfile.membersPage.requestsTab.menuAction__reject": "Reddet",
|
|
116
|
-
"organizationProfile.membersPage.requestsTab.tableHeader__requested": "Erişim talebi",
|
|
117
|
-
"organizationProfile.membersPage.requestsTab.table__emptyRow": "Gösterilecek istek yok",
|
|
118
|
-
"organizationProfile.membersPage.start.headerTitle__invitations": "Davetler",
|
|
119
|
-
"organizationProfile.membersPage.start.headerTitle__members": "Üyeler",
|
|
120
|
-
"organizationProfile.membersPage.start.headerTitle__requests": "İstekler",
|
|
121
|
-
"organizationProfile.navbar.description": "Organizasyonunuzu yönetin.",
|
|
122
|
-
"organizationProfile.navbar.general": "Genel",
|
|
123
|
-
"organizationProfile.navbar.members": "Üyeler",
|
|
124
|
-
"organizationProfile.navbar.title": "Organizasyon",
|
|
125
|
-
"organizationProfile.profilePage.dangerSection.deleteOrganization.actionDescription": "Devam etmek için aşağıya \"{{organizationName}}\" yazın.",
|
|
126
|
-
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine1": "Bu organizasyonu silmek istediğinizden emin misiniz?",
|
|
127
|
-
"organizationProfile.profilePage.dangerSection.deleteOrganization.messageLine2": "Bu işlem kalıcıdır ve geri alınamaz.",
|
|
128
|
-
"organizationProfile.profilePage.dangerSection.deleteOrganization.successMessage": "Organizasyon silindi.",
|
|
129
|
-
"organizationProfile.profilePage.dangerSection.deleteOrganization.title": "Organizasyonu sil",
|
|
130
|
-
"organizationProfile.profilePage.dangerSection.leaveOrganization.actionDescription": "Devam etmek için aşağıya \"{{organizationName}}\" yazın.",
|
|
131
|
-
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine1": "Bu organizasyondan ayrılmak istediğinizden emin misiniz? Bu organizasyona ve uygulamalarına erişiminizi kaybedeceksiniz.",
|
|
132
|
-
"organizationProfile.profilePage.dangerSection.leaveOrganization.messageLine2": "Bu işlem kalıcıdır ve geri alınamaz.",
|
|
133
|
-
"organizationProfile.profilePage.dangerSection.leaveOrganization.successMessage": "Organizasyondan ayrıldınız.",
|
|
134
|
-
"organizationProfile.profilePage.dangerSection.leaveOrganization.title": "Organizasyondan ayrıl",
|
|
135
|
-
"organizationProfile.profilePage.dangerSection.title": "Tehlike",
|
|
136
|
-
"organizationProfile.profilePage.domainSection.menuAction__manage": "Yönet",
|
|
137
|
-
"organizationProfile.profilePage.domainSection.menuAction__remove": "Sil",
|
|
138
|
-
"organizationProfile.profilePage.domainSection.menuAction__verify": "Doğrula",
|
|
139
|
-
"organizationProfile.profilePage.domainSection.primaryButton": "Alan adı ekle",
|
|
140
|
-
"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.",
|
|
141
|
-
"organizationProfile.profilePage.domainSection.title": "Doğrulanmış alan adları",
|
|
142
|
-
"organizationProfile.profilePage.successMessage": "Organizasyon güncellendi.",
|
|
143
|
-
"organizationProfile.profilePage.title": "Profili güncelle",
|
|
144
|
-
"organizationProfile.removeDomainPage.messageLine1": "{{domain}} e-posta alan adı kaldırılacak.",
|
|
145
|
-
"organizationProfile.removeDomainPage.messageLine2": "Bu işlemden sonra kullanıcılar organizasyona otomatik olarak katılamayacak.",
|
|
146
|
-
"organizationProfile.removeDomainPage.successMessage": "{{domain}} kaldırıldı.",
|
|
147
|
-
"organizationProfile.removeDomainPage.title": "Alan adını kaldır",
|
|
148
|
-
"organizationProfile.start.headerTitle__general": "Genel",
|
|
149
|
-
"organizationProfile.start.headerTitle__members": "Üyeler",
|
|
150
|
-
"organizationProfile.start.profileSection.primaryButton": "Profili güncelle",
|
|
151
|
-
"organizationProfile.start.profileSection.title": "Organizasyon Profili",
|
|
152
|
-
"organizationProfile.start.profileSection.uploadAction__title": "Logo",
|
|
153
|
-
"organizationProfile.verifiedDomainPage.dangerTab.calloutInfoLabel": "Bu alan adını kaldırmak davet edilen kullanıcıları etkiler.",
|
|
154
|
-
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainActionLabel__remove": "Alan adını kaldır",
|
|
155
|
-
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainSubtitle": "Bu alan adını doğrulanmış alan adlarınızdan kaldırın",
|
|
156
|
-
"organizationProfile.verifiedDomainPage.dangerTab.removeDomainTitle": "Alan adını kaldır",
|
|
157
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__description": "Kullanıcılar kayıt olduklarında otomatik olarak organizasyona davet edilir ve istedikleri zaman katılabilirler.",
|
|
158
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticInvitationOption__label": "Otomatik davetler",
|
|
159
|
-
"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.",
|
|
160
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.automaticSuggestionOption__label": "Otomatik öneriler",
|
|
161
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInfoLabel": "Kayıt modunu değiştirmek yalnızca yeni kullanıcıları etkiler.",
|
|
162
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutInvitationCountLabel": "Kullanıcılara gönderilen bekleyen davetler: {{count}}",
|
|
163
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.calloutSuggestionCountLabel": "Kullanıcılara gönderilen bekleyen öneriler: {{count}}",
|
|
164
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__description": "Kullanıcılar yalnızca manuel olarak organizasyona davet edilebilir.",
|
|
165
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.manualInvitationOption__label": "Otomatik kayıt yok",
|
|
166
|
-
"organizationProfile.verifiedDomainPage.enrollmentTab.subtitle": "Bu alan adından gelen kullanıcıların organizasyona nasıl katılabileceğini seçin.",
|
|
167
|
-
"organizationProfile.verifiedDomainPage.start.headerTitle__danger": "Tehlike",
|
|
168
|
-
"organizationProfile.verifiedDomainPage.start.headerTitle__enrollment": "Kayıt seçenekleri",
|
|
169
|
-
"organizationProfile.verifiedDomainPage.subtitle": "{{domain}} alan adı artık doğrulandı. Devam etmek için kayıt modunu seçin.",
|
|
170
|
-
"organizationProfile.verifiedDomainPage.title": "{{domain}} güncelle",
|
|
171
|
-
"organizationProfile.verifyDomainPage.formSubtitle": "E-posta adresinize gönderilen doğrulama kodunu girin",
|
|
172
|
-
"organizationProfile.verifyDomainPage.formTitle": "Doğrulama kodu",
|
|
173
|
-
"organizationProfile.verifyDomainPage.resendButton": "Kod gelmedi mi? Yeniden gönder",
|
|
174
|
-
"organizationProfile.verifyDomainPage.subtitle": "{{domainName}} alan adının e-posta yoluyla doğrulanması gerekiyor.",
|
|
175
|
-
"organizationProfile.verifyDomainPage.subtitleVerificationCodeScreen": "{{emailAddress}} adresine bir doğrulama kodu gönderildi. Devam etmek için kodu girin.",
|
|
176
|
-
"organizationProfile.verifyDomainPage.title": "Alan adını doğrula",
|
|
177
|
-
"organizationSwitcher.action__createOrganization": "Organizasyon oluştur",
|
|
178
|
-
"organizationSwitcher.action__invitationAccept": "Katıl",
|
|
179
|
-
"organizationSwitcher.action__manageOrganization": "Yönet",
|
|
180
|
-
"organizationSwitcher.action__suggestionsAccept": "Katılma talebi gönder",
|
|
181
|
-
"organizationSwitcher.notSelected": "Seçili organizasyon yok",
|
|
182
|
-
"organizationSwitcher.personalWorkspace": "Kişisel hesap",
|
|
183
|
-
"organizationSwitcher.suggestionsAcceptedLabel": "Onay bekliyor",
|
|
184
|
-
"paginationButton__next": "İleri",
|
|
185
|
-
"paginationButton__previous": "Geri",
|
|
186
|
-
"paginationRowText__displaying": "Gösteriliyor",
|
|
187
|
-
"paginationRowText__of": "toplam",
|
|
188
|
-
"signIn.accountSwitcher.action__addAccount": "Hesap ekle",
|
|
189
|
-
"signIn.accountSwitcher.action__signOutAll": "Tüm hesaplardan çıkış yap",
|
|
190
|
-
"signIn.accountSwitcher.subtitle": "Devam etmek istediğiniz hesabı seçin.",
|
|
191
|
-
"signIn.accountSwitcher.title": "Hesap seçin",
|
|
192
|
-
"signIn.alternativeMethods.actionLink": "Yardım al",
|
|
193
|
-
"signIn.alternativeMethods.actionText": "Bunlardan hiçbiri yok mu?",
|
|
194
|
-
"signIn.alternativeMethods.blockButton__backupCode": "Yedek kod kullan",
|
|
195
|
-
"signIn.alternativeMethods.blockButton__emailCode": "{{identifier}} adresine e-posta kodu gönder",
|
|
196
|
-
"signIn.alternativeMethods.blockButton__emailLink": "{{identifier}} adresine e-posta bağlantısı gönder",
|
|
197
|
-
"signIn.alternativeMethods.blockButton__passkey": "Anahtar ile giriş yap",
|
|
198
|
-
"signIn.alternativeMethods.blockButton__password": "Şifrenizle giriş yap",
|
|
199
|
-
"signIn.alternativeMethods.blockButton__phoneCode": "{{identifier}} numarasına SMS kodu gönder",
|
|
200
|
-
"signIn.alternativeMethods.blockButton__totp": "Kimlik doğrulayıcı uygulamanızı kullanın",
|
|
201
|
-
"signIn.alternativeMethods.getHelp.blockButton__emailSupport": "Destek ekibine e-posta gönder",
|
|
202
|
-
"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.",
|
|
203
|
-
"signIn.alternativeMethods.getHelp.title": "Yardım al",
|
|
204
|
-
"signIn.alternativeMethods.subtitle": "Sorun mu yaşıyorsunuz? Giriş yapmak için bu yöntemlerden herhangi birini kullanabilirsiniz.",
|
|
205
|
-
"signIn.alternativeMethods.title": "Başka bir yöntem kullan",
|
|
206
|
-
"signIn.backupCodeMfa.subtitle": "Yedek kodunuz, iki adımlı doğrulamayı kurarken aldığınız koddur.",
|
|
207
|
-
"signIn.backupCodeMfa.title": "Yedek kod girin",
|
|
208
|
-
"signIn.emailCode.formTitle": "Doğrulama kodu",
|
|
209
|
-
"signIn.emailCode.resendButton": "Kod gelmedi mi? Yeniden gönder",
|
|
210
|
-
"signIn.emailCode.subtitle": "{{applicationName}} uygulamasına devam etmek için",
|
|
211
|
-
"signIn.emailCode.title": "E-postanızı kontrol edin",
|
|
212
|
-
"signIn.emailLink.expired.subtitle": "Devam etmek için orijinal sekmeye dönün.",
|
|
213
|
-
"signIn.emailLink.expired.title": "Bu doğrulama bağlantısının süresi doldu",
|
|
214
|
-
"signIn.emailLink.failed.subtitle": "Devam etmek için orijinal sekmeye dönün.",
|
|
215
|
-
"signIn.emailLink.failed.title": "Bu doğrulama bağlantısı geçersiz",
|
|
216
|
-
"signIn.emailLink.formSubtitle": "E-postanıza gönderilen doğrulama bağlantısını kullanın",
|
|
217
|
-
"signIn.emailLink.formTitle": "Doğrulama bağlantısı",
|
|
218
|
-
"signIn.emailLink.loading.subtitle": "Kısa süre içinde yönlendirileceksiniz",
|
|
219
|
-
"signIn.emailLink.loading.title": "Giriş yapılıyor...",
|
|
220
|
-
"signIn.emailLink.resendButton": "Bağlantı gelmedi mi? Yeniden gönder",
|
|
221
|
-
"signIn.emailLink.subtitle": "{{applicationName}} uygulamasına devam etmek için",
|
|
222
|
-
"signIn.emailLink.title": "E-postanızı kontrol edin",
|
|
223
|
-
"signIn.emailLink.unusedTab.title": "Bu sekmeyi kapatabilirsiniz",
|
|
224
|
-
"signIn.emailLink.verified.subtitle": "Kısa süre içinde yönlendirileceksiniz",
|
|
225
|
-
"signIn.emailLink.verified.title": "Başarıyla giriş yapıldı",
|
|
226
|
-
"signIn.emailLink.verifiedSwitchTab.subtitle": "Devam etmek için orijinal sekmeye dönün",
|
|
227
|
-
"signIn.emailLink.verifiedSwitchTab.subtitleNewTab": "Devam etmek için yeni açılan sekmeye dönün",
|
|
228
|
-
"signIn.emailLink.verifiedSwitchTab.titleNewTab": "Diğer sekmede giriş yapıldı",
|
|
229
|
-
"signIn.forgotPassword.formTitle": "Şifre sıfırlama kodu",
|
|
230
|
-
"signIn.forgotPassword.resendButton": "Kod gelmedi mi? Yeniden gönder",
|
|
231
|
-
"signIn.forgotPassword.subtitle": "Şifrenizi sıfırlamak için",
|
|
232
|
-
"signIn.forgotPassword.subtitle_email": "Öncelikle, e-posta adresinize gönderilen kodu girin",
|
|
233
|
-
"signIn.forgotPassword.subtitle_phone": "Öncelikle, telefonunuza gönderilen kodu girin",
|
|
234
|
-
"signIn.forgotPassword.title": "Şifreyi sıfırla",
|
|
235
|
-
"signIn.forgotPasswordAlternativeMethods.blockButton__resetPassword": "Şifrenizi sıfırlayın",
|
|
236
|
-
"signIn.forgotPasswordAlternativeMethods.label__alternativeMethods": "Ya da başka bir yöntemle giriş yapın",
|
|
237
|
-
"signIn.forgotPasswordAlternativeMethods.title": "Şifrenizi mi unuttunuz?",
|
|
238
|
-
"signIn.noAvailableMethods.message": "Giriş yapılamıyor. Kullanılabilir bir kimlik doğrulama yöntemi yok.",
|
|
239
|
-
"signIn.noAvailableMethods.subtitle": "Bir hata oluştu",
|
|
240
|
-
"signIn.noAvailableMethods.title": "Giriş yapılamıyor",
|
|
241
|
-
"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.",
|
|
242
|
-
"signIn.passkey.title": "Geçiş anahtarınızı kullanın",
|
|
243
|
-
"signIn.password.actionLink": "Başka bir yöntem kullan",
|
|
244
|
-
"signIn.password.subtitle": "Hesabınızla ilişkili şifreyi girin",
|
|
245
|
-
"signIn.password.title": "Şifrenizi girin",
|
|
246
|
-
"signIn.passwordPwned.title": "Şifre güvenliği ihlal edilmiş",
|
|
247
|
-
"signIn.phoneCode.formTitle": "Doğrulama kodu",
|
|
248
|
-
"signIn.phoneCode.resendButton": "Kod gelmedi mi? Tekrar gönder",
|
|
249
|
-
"signIn.phoneCode.subtitle": "{{applicationName}} uygulamasına devam etmek için",
|
|
250
|
-
"signIn.phoneCode.title": "Telefonunuzu kontrol edin",
|
|
251
|
-
"signIn.phoneCodeMfa.formTitle": "Doğrulama kodu",
|
|
252
|
-
"signIn.phoneCodeMfa.resendButton": "Kod gelmedi mi? Tekrar gönder",
|
|
253
|
-
"signIn.phoneCodeMfa.subtitle": "Devam etmek için telefonunuza gönderilen doğrulama kodunu girin",
|
|
254
|
-
"signIn.phoneCodeMfa.title": "Telefonunuzu kontrol edin",
|
|
255
|
-
"signIn.resetPassword.formButtonPrimary": "Şifreyi Sıfırla",
|
|
256
|
-
"signIn.resetPassword.requiredMessage": "Güvenlik nedeniyle şifrenizi sıfırlamanız gerekmektedir.",
|
|
257
|
-
"signIn.resetPassword.successMessage": "Şifreniz başarıyla değiştirildi. Giriş yapılıyor, lütfen bekleyin.",
|
|
258
|
-
"signIn.resetPassword.title": "Yeni şifre belirleyin",
|
|
259
|
-
"signIn.resetPasswordMfa.detailsLabel": "Şifrenizi sıfırlamadan önce kimliğinizi doğrulamamız gerekiyor.",
|
|
260
|
-
"signIn.start.actionLink": "Kayıt ol",
|
|
261
|
-
"signIn.start.actionLink__use_email": "E-posta kullan",
|
|
262
|
-
"signIn.start.actionLink__use_email_username": "E-posta veya kullanıcı adı kullan",
|
|
263
|
-
"signIn.start.actionLink__use_passkey": "Geçiş anahtarı kullan",
|
|
264
|
-
"signIn.start.actionLink__use_phone": "Telefon kullan",
|
|
265
|
-
"signIn.start.actionLink__use_username": "Kullanıcı adı kullan",
|
|
266
|
-
"signIn.start.actionText": "Hesabınız yok mu?",
|
|
267
|
-
"signIn.start.subtitle": "Tekrar hoş geldiniz! Devam etmek için giriş yapın",
|
|
268
|
-
"signIn.start.title": "{{applicationName}} uygulamasına giriş yapın",
|
|
269
|
-
"signIn.totpMfa.formTitle": "Doğrulama kodu",
|
|
270
|
-
"signIn.totpMfa.subtitle": "Devam etmek için kimlik doğrulayıcı uygulamanız tarafından oluşturulan doğrulama kodunu girin",
|
|
271
|
-
"signIn.totpMfa.title": "İki adımlı doğrulama",
|
|
272
|
-
"signInEnterPasswordTitle": "Şifrenizi girin",
|
|
273
|
-
"signUp.continue.actionLink": "Giriş yap",
|
|
274
|
-
"signUp.continue.actionText": "Zaten bir hesabınız var mı?",
|
|
275
|
-
"signUp.continue.subtitle": "Devam etmek için eksik bilgileri doldurun.",
|
|
276
|
-
"signUp.continue.title": "Eksik alanları doldurun",
|
|
277
|
-
"signUp.emailCode.formSubtitle": "E-posta adresinize gönderilen doğrulama kodunu girin",
|
|
278
|
-
"signUp.emailCode.formTitle": "Doğrulama kodu",
|
|
279
|
-
"signUp.emailCode.resendButton": "Kod gelmedi mi? Tekrar gönder",
|
|
280
|
-
"signUp.emailCode.subtitle": "E-postanıza gönderilen doğrulama kodunu girin",
|
|
281
|
-
"signUp.emailCode.title": "E-postanızı doğrulayın",
|
|
282
|
-
"signUp.emailLink.formSubtitle": "E-posta adresinize gönderilen doğrulama bağlantısını kullanın",
|
|
283
|
-
"signUp.emailLink.formTitle": "Doğrulama bağlantısı",
|
|
284
|
-
"signUp.emailLink.loading.title": "Kayıt olunuyor...",
|
|
285
|
-
"signUp.emailLink.resendButton": "Bağlantı gelmedi mi? Tekrar gönder",
|
|
286
|
-
"signUp.emailLink.subtitle": "{{applicationName}} uygulamasına devam etmek için",
|
|
287
|
-
"signUp.emailLink.title": "E-postanızı doğrulayın",
|
|
288
|
-
"signUp.emailLink.verified.title": "Başarıyla kayıt olundu",
|
|
289
|
-
"signUp.emailLink.verifiedSwitchTab.subtitle": "Devam etmek için yeni açılan sekmeye dönün",
|
|
290
|
-
"signUp.emailLink.verifiedSwitchTab.subtitleNewTab": "Devam etmek için önceki sekmeye dönün",
|
|
291
|
-
"signUp.emailLink.verifiedSwitchTab.title": "E-posta başarıyla doğrulandı",
|
|
292
|
-
"signUp.phoneCode.formSubtitle": "Telefon numaranıza gönderilen doğrulama kodunu girin",
|
|
293
|
-
"signUp.phoneCode.formTitle": "Doğrulama kodu",
|
|
294
|
-
"signUp.phoneCode.resendButton": "Kod gelmedi mi? Tekrar gönder",
|
|
295
|
-
"signUp.phoneCode.subtitle": "Telefonunuza gönderilen doğrulama kodunu girin",
|
|
296
|
-
"signUp.phoneCode.title": "Telefonunuzu doğrulayın",
|
|
297
|
-
"signUp.start.actionLink": "Giriş yap",
|
|
298
|
-
"signUp.start.actionText": "Zaten bir hesabınız var mı?",
|
|
299
|
-
"signUp.start.subtitle": "Hoş geldiniz! Başlamak için lütfen bilgilerinizi doldurun.",
|
|
300
|
-
"signUp.start.title": "Hesabınızı oluşturun",
|
|
301
|
-
"socialButtonsBlockButton": "{{provider|titleize}} ile devam et",
|
|
302
|
-
"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.",
|
|
303
|
-
"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.",
|
|
304
|
-
"unstable__errors.form_code_incorrect": "",
|
|
305
|
-
"unstable__errors.form_identifier_exists": "",
|
|
306
|
-
"unstable__errors.form_identifier_exists__email_address": "Bu e-posta adresi zaten kullanılıyor. Lütfen başka bir tane deneyin.",
|
|
307
|
-
"unstable__errors.form_identifier_exists__phone_number": "Bu telefon numarası zaten kullanılıyor. Lütfen başka bir tane deneyin.",
|
|
308
|
-
"unstable__errors.form_identifier_exists__username": "Bu kullanıcı adı zaten kullanılıyor. Lütfen başka bir tane deneyin.",
|
|
309
|
-
"unstable__errors.form_identifier_not_found": "",
|
|
310
|
-
"unstable__errors.form_param_format_invalid": "",
|
|
311
|
-
"unstable__errors.form_param_format_invalid__email_address": "E-posta adresi geçerli bir formatta olmalıdır.",
|
|
312
|
-
"unstable__errors.form_param_format_invalid__phone_number": "Telefon numarası geçerli uluslararası formatta olmalıdır.",
|
|
313
|
-
"unstable__errors.form_param_max_length_exceeded__first_name": "Ad 256 karakteri geçmemelidir.",
|
|
314
|
-
"unstable__errors.form_param_max_length_exceeded__last_name": "Soyad 256 karakteri geçmemelidir.",
|
|
315
|
-
"unstable__errors.form_param_max_length_exceeded__name": "İsim 256 karakteri geçmemelidir.",
|
|
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": "Şifreniz yeterince güçlü değil.",
|
|
320
|
-
"unstable__errors.form_password_pwned": "Bu şifre bir veri ihlalinde ifşa edilmiş. Lütfen başka bir şifre deneyin.",
|
|
321
|
-
"unstable__errors.form_password_pwned__sign_in": "Bu şifre bir veri ihlalinde ifşa edilmiş. Lütfen şifrenizi sıfırlayın.",
|
|
322
|
-
"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.",
|
|
323
|
-
"unstable__errors.form_password_validation_failed": "Hatalı şifre",
|
|
324
|
-
"unstable__errors.form_username_invalid_character": "",
|
|
325
|
-
"unstable__errors.form_username_invalid_length": "",
|
|
326
|
-
"unstable__errors.identification_deletion_failed": "Son kimliğinizi silemezsiniz.",
|
|
327
|
-
"unstable__errors.not_allowed_access": "",
|
|
328
|
-
"unstable__errors.passkey_already_exists": "Bu cihazda zaten kayıtlı bir geçiş anahtarı var.",
|
|
329
|
-
"unstable__errors.passkey_not_supported": "Bu cihaz geçiş anahtarlarını desteklemiyor.",
|
|
330
|
-
"unstable__errors.passkey_pa_not_supported": "Kayıt için platform kimlik doğrulayıcısı gerekiyor ancak cihaz bunu desteklemiyor.",
|
|
331
|
-
"unstable__errors.passkey_registration_cancelled": "Geçiş anahtarı kaydı iptal edildi veya zaman aşımına uğradı.",
|
|
332
|
-
"unstable__errors.passkey_retrieval_cancelled": "Geçiş anahtarı doğrulaması iptal edildi veya zaman aşımına uğradı.",
|
|
333
|
-
"unstable__errors.passwordComplexity.maximumLength": "{{length}} karakterden az",
|
|
334
|
-
"unstable__errors.passwordComplexity.minimumLength": "{{length}} veya daha fazla karakter",
|
|
335
|
-
"unstable__errors.passwordComplexity.requireLowercase": "bir küçük harf",
|
|
336
|
-
"unstable__errors.passwordComplexity.requireNumbers": "bir rakam",
|
|
337
|
-
"unstable__errors.passwordComplexity.requireSpecialCharacter": "bir özel karakter",
|
|
338
|
-
"unstable__errors.passwordComplexity.requireUppercase": "bir büyük harf",
|
|
339
|
-
"unstable__errors.passwordComplexity.sentencePrefix": "Şifreniz şunları içermelidir",
|
|
340
|
-
"unstable__errors.phone_number_exists": "Bu telefon numarası zaten kullanılıyor. Lütfen başka bir tane deneyin.",
|
|
341
|
-
"unstable__errors.zxcvbn.couldBeStronger": "Şifreniz çalışıyor, ancak daha güçlü olabilir. Daha fazla karakter eklemeyi deneyin.",
|
|
342
|
-
"unstable__errors.zxcvbn.goodPassword": "Şifreniz tüm gerekli gereksinimleri karşılıyor.",
|
|
343
|
-
"unstable__errors.zxcvbn.notEnough": "Şifreniz yeterince güçlü değil.",
|
|
344
|
-
"unstable__errors.zxcvbn.suggestions.allUppercase": "Bazı harfleri büyük yapın, ancak hepsini değil.",
|
|
345
|
-
"unstable__errors.zxcvbn.suggestions.anotherWord": "Daha az yaygın kelimeler ekleyin.",
|
|
346
|
-
"unstable__errors.zxcvbn.suggestions.associatedYears": "Sizinle ilişkili yıllardan kaçının.",
|
|
347
|
-
"unstable__errors.zxcvbn.suggestions.capitalization": "İlk harften fazlasını büyük yapın.",
|
|
348
|
-
"unstable__errors.zxcvbn.suggestions.dates": "Sizinle ilişkili tarih ve yıllardan kaçının.",
|
|
349
|
-
"unstable__errors.zxcvbn.suggestions.l33t": "'@' yerine 'a' gibi tahmin edilebilir harf değişimlerinden kaçının.",
|
|
350
|
-
"unstable__errors.zxcvbn.suggestions.longerKeyboardPattern": "Daha uzun klavye desenleri kullanın ve yazma yönünü birkaç kez değiştirin.",
|
|
351
|
-
"unstable__errors.zxcvbn.suggestions.noNeed": "Semboller, rakamlar veya büyük harfler kullanmadan da güçlü şifreler oluşturabilirsiniz.",
|
|
352
|
-
"unstable__errors.zxcvbn.suggestions.pwned": "Bu şifreyi başka yerlerde de kullanıyorsanız, değiştirmeniz gerekir.",
|
|
353
|
-
"unstable__errors.zxcvbn.suggestions.recentYears": "Son yıllardan kaçının.",
|
|
354
|
-
"unstable__errors.zxcvbn.suggestions.repeated": "Tekrarlanan kelime ve karakterlerden kaçının.",
|
|
355
|
-
"unstable__errors.zxcvbn.suggestions.reverseWords": "Yaygın kelimelerin ters yazımlarından kaçının.",
|
|
356
|
-
"unstable__errors.zxcvbn.suggestions.sequences": "Yaygın karakter dizilerinden kaçının.",
|
|
357
|
-
"unstable__errors.zxcvbn.suggestions.useWords": "Birden fazla kelime kullanın, ancak yaygın ifadelerden kaçının.",
|
|
358
|
-
"unstable__errors.zxcvbn.warnings.common": "Bu yaygın olarak kullanılan bir şifredir.",
|
|
359
|
-
"unstable__errors.zxcvbn.warnings.commonNames": "Yaygın adlar ve soyadlar kolayca tahmin edilebilir.",
|
|
360
|
-
"unstable__errors.zxcvbn.warnings.dates": "Tarihler kolayca tahmin edilebilir.",
|
|
361
|
-
"unstable__errors.zxcvbn.warnings.extendedRepeat": "\"abcabcabc\" gibi tekrar eden desenler kolayca tahmin edilebilir.",
|
|
362
|
-
"unstable__errors.zxcvbn.warnings.keyPattern": "Kısa klavye desenleri kolayca tahmin edilebilir.",
|
|
363
|
-
"unstable__errors.zxcvbn.warnings.namesByThemselves": "Tek başına adlar veya soyadlar kolayca tahmin edilebilir.",
|
|
364
|
-
"unstable__errors.zxcvbn.warnings.pwned": "Şifreniz internetteki bir veri ihlaliyle ifşa edilmiştir.",
|
|
365
|
-
"unstable__errors.zxcvbn.warnings.recentYears": "Son yıllar kolayca tahmin edilebilir.",
|
|
366
|
-
"unstable__errors.zxcvbn.warnings.sequences": "\"abc\" gibi yaygın karakter dizileri kolayca tahmin edilebilir.",
|
|
367
|
-
"unstable__errors.zxcvbn.warnings.similarToCommon": "Bu, yaygın olarak kullanılan bir şifreye benziyor.",
|
|
368
|
-
"unstable__errors.zxcvbn.warnings.simpleRepeat": "\"aaa\" gibi tekrar eden karakterler kolayca tahmin edilebilir.",
|
|
369
|
-
"unstable__errors.zxcvbn.warnings.straightRow": "Klavye üzerindeki düz satırlar kolayca tahmin edilebilir.",
|
|
370
|
-
"unstable__errors.zxcvbn.warnings.topHundred": "Bu sık kullanılan bir şifredir.",
|
|
371
|
-
"unstable__errors.zxcvbn.warnings.topTen": "Bu çok sık kullanılan bir şifredir.",
|
|
372
|
-
"unstable__errors.zxcvbn.warnings.userInputs": "Kişisel veya sayfayla ilgili veriler içermemelidir.",
|
|
373
|
-
"unstable__errors.zxcvbn.warnings.wordByItself": "Tek kelimeler kolayca tahmin edilebilir.",
|
|
374
|
-
"userButton.action__addAccount": "Hesap ekle",
|
|
375
|
-
"userButton.action__manageAccount": "Hesabı yönet",
|
|
376
|
-
"userButton.action__signOut": "Oturumu kapat",
|
|
377
|
-
"userButton.action__signOutAll": "Tüm hesaplardan çıkış yap",
|
|
378
|
-
"userProfile.backupCodePage.actionLabel__copied": "Kopyalandı!",
|
|
379
|
-
"userProfile.backupCodePage.actionLabel__copy": "Tümünü kopyala",
|
|
380
|
-
"userProfile.backupCodePage.actionLabel__download": ".txt indir",
|
|
381
|
-
"userProfile.backupCodePage.actionLabel__print": "Yazdır",
|
|
382
|
-
"userProfile.backupCodePage.infoText1": "Yedek kodlar bu hesap için etkinleştirilecektir.",
|
|
383
|
-
"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.",
|
|
384
|
-
"userProfile.backupCodePage.subtitle__codelist": "Güvenli bir şekilde saklayın ve gizli tutun.",
|
|
385
|
-
"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.",
|
|
386
|
-
"userProfile.backupCodePage.successSubtitle": "Kimlik doğrulama cihazınıza erişiminizi kaybederseniz, bu kodlardan birini kullanarak hesabınıza giriş yapabilirsiniz.",
|
|
387
|
-
"userProfile.backupCodePage.title": "Yedek kod doğrulaması ekle",
|
|
388
|
-
"userProfile.backupCodePage.title__codelist": "Yedek kodlar",
|
|
389
|
-
"userProfile.connectedAccountPage.formHint": "Hesabınızı bağlamak için bir sağlayıcı seçin.",
|
|
390
|
-
"userProfile.connectedAccountPage.formHint__noAccounts": "Kullanılabilir harici hesap sağlayıcısı yok.",
|
|
391
|
-
"userProfile.connectedAccountPage.removeResource.messageLine1": "{{identifier}} bu hesaptan kaldırılacak.",
|
|
392
|
-
"userProfile.connectedAccountPage.removeResource.messageLine2": "Bu bağlı hesabı artık kullanamayacaksınız ve ona bağlı özellikler çalışmayacaktır.",
|
|
393
|
-
"userProfile.connectedAccountPage.removeResource.successMessage": "{{connectedAccount}} hesabınızdan kaldırıldı.",
|
|
394
|
-
"userProfile.connectedAccountPage.removeResource.title": "Bağlı hesabı kaldır",
|
|
395
|
-
"userProfile.connectedAccountPage.socialButtonsBlockButton": "{{provider|titleize}}",
|
|
396
|
-
"userProfile.connectedAccountPage.successMessage": "Sağlayıcı hesabınıza eklendi",
|
|
397
|
-
"userProfile.connectedAccountPage.title": "Bağlı hesap ekle",
|
|
398
|
-
"userProfile.deletePage.actionDescription": "Devam etmek için aşağıya \"Hesabı sil\" yazın.",
|
|
399
|
-
"userProfile.deletePage.confirm": "Hesabı sil",
|
|
400
|
-
"userProfile.deletePage.messageLine1": "Hesabınızı silmek istediğinizden emin misiniz?",
|
|
401
|
-
"userProfile.deletePage.messageLine2": "Bu işlem kalıcıdır ve geri alınamaz.",
|
|
402
|
-
"userProfile.deletePage.title": "Hesabı sil",
|
|
403
|
-
"userProfile.emailAddressPage.emailCode.formHint": "Bu e-posta adresine bir doğrulama kodu içeren e-posta gönderilecektir.",
|
|
404
|
-
"userProfile.emailAddressPage.emailCode.formSubtitle": "{{identifier}} adresine gönderilen doğrulama kodunu girin",
|
|
405
|
-
"userProfile.emailAddressPage.emailCode.formTitle": "Doğrulama kodu",
|
|
406
|
-
"userProfile.emailAddressPage.emailCode.resendButton": "Kod gelmedi mi? Yeniden gönder",
|
|
407
|
-
"userProfile.emailAddressPage.emailCode.successMessage": "{{identifier}} e-posta adresi hesabınıza eklendi.",
|
|
408
|
-
"userProfile.emailAddressPage.emailLink.formHint": "Bu e-posta adresine bir doğrulama bağlantısı içeren e-posta gönderilecektir.",
|
|
409
|
-
"userProfile.emailAddressPage.emailLink.formSubtitle": "{{identifier}} adresine gönderilen e-postadaki doğrulama bağlantısına tıklayın",
|
|
410
|
-
"userProfile.emailAddressPage.emailLink.formTitle": "Doğrulama bağlantısı",
|
|
411
|
-
"userProfile.emailAddressPage.emailLink.resendButton": "Bağlantı gelmedi mi? Yeniden gönder",
|
|
412
|
-
"userProfile.emailAddressPage.emailLink.successMessage": "{{identifier}} e-posta adresi hesabınıza eklendi.",
|
|
413
|
-
"userProfile.emailAddressPage.removeResource.messageLine1": "{{identifier}} bu hesaptan kaldırılacak.",
|
|
414
|
-
"userProfile.emailAddressPage.removeResource.messageLine2": "Bu e-posta adresiyle artık giriş yapamayacaksınız.",
|
|
415
|
-
"userProfile.emailAddressPage.removeResource.successMessage": "{{emailAddress}} hesabınızdan kaldırıldı.",
|
|
416
|
-
"userProfile.emailAddressPage.removeResource.title": "E-posta adresini kaldır",
|
|
417
|
-
"userProfile.emailAddressPage.title": "E-posta adresi ekle",
|
|
418
|
-
"userProfile.emailAddressPage.verifyTitle": "E-posta adresini doğrula",
|
|
419
|
-
"userProfile.formButtonPrimary__add": "Ekle",
|
|
420
|
-
"userProfile.formButtonPrimary__continue": "Devam et",
|
|
421
|
-
"userProfile.formButtonPrimary__finish": "Bitir",
|
|
422
|
-
"userProfile.formButtonPrimary__remove": "Kaldır",
|
|
423
|
-
"userProfile.formButtonPrimary__save": "Kaydet",
|
|
424
|
-
"userProfile.formButtonReset": "İptal",
|
|
425
|
-
"userProfile.mfaPage.formHint": "Eklemek için bir yöntem seçin.",
|
|
426
|
-
"userProfile.mfaPage.title": "İki adımlı doğrulama ekle",
|
|
427
|
-
"userProfile.mfaPhoneCodePage.backButton": "Mevcut numarayı kullan",
|
|
428
|
-
"userProfile.mfaPhoneCodePage.primaryButton__addPhoneNumber": "Telefon numarası ekle",
|
|
429
|
-
"userProfile.mfaPhoneCodePage.removeResource.messageLine1": "{{identifier}} artık giriş yaparken doğrulama kodu almayacak.",
|
|
430
|
-
"userProfile.mfaPhoneCodePage.removeResource.messageLine2": "Hesabınız daha az güvenli olabilir. Devam etmek istediğinizden emin misiniz?",
|
|
431
|
-
"userProfile.mfaPhoneCodePage.removeResource.successMessage": "{{mfaPhoneCode}} için SMS kodu ile iki adımlı doğrulama kaldırıldı.",
|
|
432
|
-
"userProfile.mfaPhoneCodePage.removeResource.title": "İki adımlı doğrulamayı kaldır",
|
|
433
|
-
"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.",
|
|
434
|
-
"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.",
|
|
435
|
-
"userProfile.mfaPhoneCodePage.successMessage1": "Giriş yaparken, bu telefon numarasına gönderilen doğrulama kodunu girmeniz gerekecek.",
|
|
436
|
-
"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.",
|
|
437
|
-
"userProfile.mfaPhoneCodePage.successTitle": "SMS kodu doğrulaması etkinleştirildi",
|
|
438
|
-
"userProfile.mfaPhoneCodePage.title": "SMS kodu doğrulaması ekle",
|
|
439
|
-
"userProfile.mfaTOTPPage.authenticatorApp.buttonAbleToScan__nonPrimary": "QR kodu tara",
|
|
440
|
-
"userProfile.mfaTOTPPage.authenticatorApp.buttonUnableToScan__nonPrimary": "QR kodu taranamıyor mu?",
|
|
441
|
-
"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.",
|
|
442
|
-
"userProfile.mfaTOTPPage.authenticatorApp.infoText__unableToScan": "Kimlik doğrulayıcınızda yeni bir giriş yöntemi oluşturun ve aşağıdaki Anahtarı girin.",
|
|
443
|
-
"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.",
|
|
444
|
-
"userProfile.mfaTOTPPage.authenticatorApp.inputLabel__unableToScan2": "Alternatif olarak, kimlik doğrulayıcınız TOTP URI'lerini destekliyorsa, tam URI'yi de kopyalayabilirsiniz.",
|
|
445
|
-
"userProfile.mfaTOTPPage.removeResource.messageLine1": "Bu kimlik doğrulayıcıdan gelen doğrulama kodları artık girişte gerekli olmayacak.",
|
|
446
|
-
"userProfile.mfaTOTPPage.removeResource.messageLine2": "Hesabınız daha az güvenli olabilir. Devam etmek istediğinizden emin misiniz?",
|
|
447
|
-
"userProfile.mfaTOTPPage.removeResource.successMessage": "Kimlik doğrulayıcı uygulama ile iki adımlı doğrulama kaldırıldı.",
|
|
448
|
-
"userProfile.mfaTOTPPage.removeResource.title": "İki adımlı doğrulamayı kaldır",
|
|
449
|
-
"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.",
|
|
450
|
-
"userProfile.mfaTOTPPage.title": "Kimlik doğrulayıcı uygulama ekle",
|
|
451
|
-
"userProfile.mfaTOTPPage.verifySubtitle": "Kimlik doğrulayıcınız tarafından oluşturulan doğrulama kodunu girin",
|
|
452
|
-
"userProfile.mfaTOTPPage.verifyTitle": "Doğrulama kodu",
|
|
453
|
-
"userProfile.mobileButton__menu": "Menü",
|
|
454
|
-
"userProfile.navbar.account": "Profil",
|
|
455
|
-
"userProfile.navbar.description": "Hesap bilgilerinizi yönetin.",
|
|
456
|
-
"userProfile.navbar.security": "Güvenlik",
|
|
457
|
-
"userProfile.navbar.title": "Hesap",
|
|
458
|
-
"userProfile.passkeyScreen.removeResource.messageLine1": "{{name}} bu hesaptan kaldırılacak.",
|
|
459
|
-
"userProfile.passkeyScreen.removeResource.title": "Geçiş anahtarını kaldır",
|
|
460
|
-
"userProfile.passkeyScreen.subtitle__rename": "Geçiş anahtarını daha kolay bulmak için adını değiştirebilirsiniz.",
|
|
461
|
-
"userProfile.passkeyScreen.title__rename": "Geçiş Anahtarını Yeniden Adlandır",
|
|
462
|
-
"userProfile.passwordPage.checkboxInfoText__signOutOfOtherSessions": "Eski şifrenizi kullanmış olabilecek tüm diğer cihazlardan çıkış yapmanız önerilir.",
|
|
463
|
-
"userProfile.passwordPage.readonly": "Şifreniz şu anda düzenlenemez çünkü yalnızca kurumsal bağlantı üzerinden oturum açabilirsiniz.",
|
|
464
|
-
"userProfile.passwordPage.successMessage__set": "Şifreniz ayarlandı.",
|
|
465
|
-
"userProfile.passwordPage.successMessage__signOutOfOtherSessions": "Tüm diğer cihazlardan çıkış yapıldı.",
|
|
466
|
-
"userProfile.passwordPage.successMessage__update": "Şifreniz güncellendi.",
|
|
467
|
-
"userProfile.passwordPage.title__set": "Şifre belirle",
|
|
468
|
-
"userProfile.passwordPage.title__update": "Şifreyi güncelle",
|
|
469
|
-
"userProfile.phoneNumberPage.infoText": "Bu telefon numarasına doğrulama kodu içeren bir kısa mesaj gönderilecektir. Mesaj ve veri ücretleri uygulanabilir.",
|
|
470
|
-
"userProfile.phoneNumberPage.removeResource.messageLine1": "{{identifier}} bu hesaptan kaldırılacak.",
|
|
471
|
-
"userProfile.phoneNumberPage.removeResource.messageLine2": "Bu telefon numarasıyla artık oturum açamazsınız.",
|
|
472
|
-
"userProfile.phoneNumberPage.removeResource.successMessage": "{{phoneNumber}} hesabınızdan kaldırıldı.",
|
|
473
|
-
"userProfile.phoneNumberPage.removeResource.title": "Telefon numarasını kaldır",
|
|
474
|
-
"userProfile.phoneNumberPage.successMessage": "{{identifier}} hesabınıza eklendi.",
|
|
475
|
-
"userProfile.phoneNumberPage.title": "Telefon numarası ekle",
|
|
476
|
-
"userProfile.phoneNumberPage.verifySubtitle": "{{identifier}} numarasına gönderilen doğrulama kodunu girin",
|
|
477
|
-
"userProfile.phoneNumberPage.verifyTitle": "Telefon numarasını doğrula",
|
|
478
|
-
"userProfile.profilePage.fileDropAreaHint": "Önerilen boyut 1:1, en fazla 10MB.",
|
|
479
|
-
"userProfile.profilePage.imageFormDestructiveActionSubtitle": "Kaldır",
|
|
480
|
-
"userProfile.profilePage.imageFormSubtitle": "Yükle",
|
|
481
|
-
"userProfile.profilePage.imageFormTitle": "Profil resmi",
|
|
482
|
-
"userProfile.profilePage.readonly": "Profil bilgileriniz kurumsal bağlantı tarafından sağlanmıştır ve düzenlenemez.",
|
|
483
|
-
"userProfile.profilePage.successMessage": "Profiliniz güncellendi.",
|
|
484
|
-
"userProfile.profilePage.title": "Profili güncelle",
|
|
485
|
-
"userProfile.start.activeDevicesSection.destructiveAction": "Cihazdan çıkış yap",
|
|
486
|
-
"userProfile.start.activeDevicesSection.title": "Aktif cihazlar",
|
|
487
|
-
"userProfile.start.connectedAccountsSection.actionLabel__connectionFailed": "Tekrar dene",
|
|
488
|
-
"userProfile.start.connectedAccountsSection.actionLabel__reauthorize": "Şimdi yetkilendir",
|
|
489
|
-
"userProfile.start.connectedAccountsSection.destructiveActionTitle": "Kaldır",
|
|
490
|
-
"userProfile.start.connectedAccountsSection.primaryButton": "Hesap bağla",
|
|
491
|
-
"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.",
|
|
492
|
-
"userProfile.start.connectedAccountsSection.title": "Bağlı hesaplar",
|
|
493
|
-
"userProfile.start.dangerSection.deleteAccountButton": "Hesabı sil",
|
|
494
|
-
"userProfile.start.dangerSection.title": "Hesabı sil",
|
|
495
|
-
"userProfile.start.emailAddressesSection.destructiveAction": "E-postayı kaldır",
|
|
496
|
-
"userProfile.start.emailAddressesSection.detailsAction__nonPrimary": "Birincil olarak ayarla",
|
|
497
|
-
"userProfile.start.emailAddressesSection.detailsAction__primary": "Doğrulamayı tamamla",
|
|
498
|
-
"userProfile.start.emailAddressesSection.detailsAction__unverified": "Doğrula",
|
|
499
|
-
"userProfile.start.emailAddressesSection.primaryButton": "E-posta adresi ekle",
|
|
500
|
-
"userProfile.start.emailAddressesSection.title": "E-posta adresleri",
|
|
501
|
-
"userProfile.start.enterpriseAccountsSection.title": "Kurumsal hesaplar",
|
|
502
|
-
"userProfile.start.headerTitle__account": "Profil detayları",
|
|
503
|
-
"userProfile.start.headerTitle__security": "Güvenlik",
|
|
504
|
-
"userProfile.start.mfaSection.backupCodes.actionLabel__regenerate": "Yeniden oluştur",
|
|
505
|
-
"userProfile.start.mfaSection.backupCodes.headerTitle": "Yedek kodlar",
|
|
506
|
-
"userProfile.start.mfaSection.backupCodes.subtitle__regenerate": "Yeni bir güvenli yedek kod seti alın. Önceki yedek kodlar silinecek ve kullanılamayacak.",
|
|
507
|
-
"userProfile.start.mfaSection.backupCodes.title__regenerate": "Yedek kodları yeniden oluştur",
|
|
508
|
-
"userProfile.start.mfaSection.phoneCode.actionLabel__setDefault": "Varsayılan olarak ayarla",
|
|
509
|
-
"userProfile.start.mfaSection.phoneCode.destructiveActionLabel": "Kaldır",
|
|
510
|
-
"userProfile.start.mfaSection.primaryButton": "İki adımlı doğrulama ekle",
|
|
511
|
-
"userProfile.start.mfaSection.title": "İki adımlı doğrulama",
|
|
512
|
-
"userProfile.start.mfaSection.totp.destructiveActionTitle": "Kaldır",
|
|
513
|
-
"userProfile.start.mfaSection.totp.headerTitle": "Kimlik doğrulayıcı uygulama",
|
|
514
|
-
"userProfile.start.passkeysSection.menuAction__destructive": "Kaldır",
|
|
515
|
-
"userProfile.start.passkeysSection.menuAction__rename": "Yeniden adlandır",
|
|
516
|
-
"userProfile.start.passkeysSection.title": "Geçiş anahtarları",
|
|
517
|
-
"userProfile.start.passwordSection.primaryButton__setPassword": "Şifre belirle",
|
|
518
|
-
"userProfile.start.passwordSection.primaryButton__updatePassword": "Şifreyi güncelle",
|
|
519
|
-
"userProfile.start.passwordSection.title": "Şifre",
|
|
520
|
-
"userProfile.start.phoneNumbersSection.destructiveAction": "Telefon numarasını kaldır",
|
|
521
|
-
"userProfile.start.phoneNumbersSection.detailsAction__nonPrimary": "Birincil olarak ayarla",
|
|
522
|
-
"userProfile.start.phoneNumbersSection.detailsAction__primary": "Doğrulamayı tamamla",
|
|
523
|
-
"userProfile.start.phoneNumbersSection.detailsAction__unverified": "Telefon numarasını doğrula",
|
|
524
|
-
"userProfile.start.phoneNumbersSection.primaryButton": "Telefon numarası ekle",
|
|
525
|
-
"userProfile.start.phoneNumbersSection.title": "Telefon numaraları",
|
|
526
|
-
"userProfile.start.profileSection.primaryButton": "Profili güncelle",
|
|
527
|
-
"userProfile.start.profileSection.title": "Profil",
|
|
528
|
-
"userProfile.start.usernameSection.primaryButton__setUsername": "Kullanıcı adı belirle",
|
|
529
|
-
"userProfile.start.usernameSection.primaryButton__updateUsername": "Kullanıcı adını güncelle",
|
|
530
|
-
"userProfile.start.usernameSection.title": "Kullanıcı adı",
|
|
531
|
-
"userProfile.start.web3WalletsSection.destructiveAction": "Cüzdanı kaldır",
|
|
532
|
-
"userProfile.start.web3WalletsSection.primaryButton": "Web3 cüzdanları",
|
|
533
|
-
"userProfile.start.web3WalletsSection.title": "Web3 cüzdanları",
|
|
534
|
-
"userProfile.usernamePage.successMessage": "Kullanıcı adınız güncellendi.",
|
|
535
|
-
"userProfile.usernamePage.title__set": "Kullanıcı adı belirle",
|
|
536
|
-
"userProfile.usernamePage.title__update": "Kullanıcı adını güncelle",
|
|
537
|
-
"userProfile.web3WalletPage.removeResource.messageLine1": "{{identifier}} bu hesaptan kaldırılacak.",
|
|
538
|
-
"userProfile.web3WalletPage.removeResource.messageLine2": "Bu web3 cüzdanı ile artık oturum açamazsınız.",
|
|
539
|
-
"userProfile.web3WalletPage.removeResource.successMessage": "{{web3Wallet}} hesabınızdan kaldırıldı.",
|
|
540
|
-
"userProfile.web3WalletPage.removeResource.title": "Web3 cüzdanını kaldır",
|
|
541
|
-
"userProfile.web3WalletPage.subtitle__availableWallets": "Hesabınıza bağlamak için bir web3 cüzdanı seçin.",
|
|
542
|
-
"userProfile.web3WalletPage.subtitle__unavailableWallets": "Kullanılabilir web3 cüzdanı yok.",
|
|
543
|
-
"userProfile.web3WalletPage.successMessage": "Cüzdan hesabınıza eklendi.",
|
|
544
|
-
"userProfile.web3WalletPage.title": "Web3 cüzdanı ekle"
|
|
545
|
-
}
|