@erikey/react 0.4.26 → 0.4.28
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/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/src/__tests__/auth-client.test.ts +105 -0
- package/src/__tests__/security/localStorage-encryption.test.ts +171 -0
- package/src/auth-client.ts +158 -0
- package/src/dashboard-client.ts +60 -0
- package/src/index.ts +88 -0
- package/src/kv-client.ts +316 -0
- package/src/lib/cross-origin-auth.ts +99 -0
- package/src/stubs/captcha.ts +24 -0
- package/src/stubs/hashes.ts +16 -0
- package/src/stubs/index.ts +17 -0
- package/src/stubs/passkey.ts +12 -0
- package/src/stubs/qr-code.ts +10 -0
- package/src/stubs/query.ts +16 -0
- package/src/stubs/realtime.ts +17 -0
- package/src/stubs/use-sync-external-store.ts +12 -0
- package/src/styles.css +141 -0
- package/src/types.ts +14 -0
- package/src/ui/components/auth/auth-callback.tsx +36 -0
- package/src/ui/components/auth/auth-form.tsx +310 -0
- package/src/ui/components/auth/auth-view.tsx +435 -0
- package/src/ui/components/auth/email-otp-button.tsx +53 -0
- package/src/ui/components/auth/forms/email-otp-form.tsx +312 -0
- package/src/ui/components/auth/forms/email-verification-form.tsx +271 -0
- package/src/ui/components/auth/forms/forgot-password-form.tsx +173 -0
- package/src/ui/components/auth/forms/magic-link-form.tsx +196 -0
- package/src/ui/components/auth/forms/recover-account-form.tsx +143 -0
- package/src/ui/components/auth/forms/reset-password-form.tsx +220 -0
- package/src/ui/components/auth/forms/sign-in-form.tsx +323 -0
- package/src/ui/components/auth/forms/sign-up-form.tsx +820 -0
- package/src/ui/components/auth/forms/two-factor-form.tsx +381 -0
- package/src/ui/components/auth/magic-link-button.tsx +54 -0
- package/src/ui/components/auth/one-tap.tsx +53 -0
- package/src/ui/components/auth/otp-input-group.tsx +65 -0
- package/src/ui/components/auth/passkey-button.tsx +91 -0
- package/src/ui/components/auth/provider-button.tsx +155 -0
- package/src/ui/components/auth/sign-out.tsx +25 -0
- package/src/ui/components/auth/wallet-button.tsx +192 -0
- package/src/ui/components/auth-loading.tsx +21 -0
- package/src/ui/components/captcha/captcha.tsx +91 -0
- package/src/ui/components/captcha/recaptcha-badge.tsx +61 -0
- package/src/ui/components/captcha/recaptcha-v2.tsx +58 -0
- package/src/ui/components/captcha/recaptcha-v3.tsx +73 -0
- package/src/ui/components/email/email-template.tsx +216 -0
- package/src/ui/components/form-error.tsx +27 -0
- package/src/ui/components/password-input.tsx +56 -0
- package/src/ui/components/provider-icons.tsx +404 -0
- package/src/ui/components/redirect-to-sign-in.tsx +16 -0
- package/src/ui/components/redirect-to-sign-up.tsx +16 -0
- package/src/ui/components/signed-in.tsx +20 -0
- package/src/ui/components/signed-out.tsx +20 -0
- package/src/ui/components/ui/alert.tsx +66 -0
- package/src/ui/components/ui/button.tsx +70 -0
- package/src/ui/components/ui/card.tsx +92 -0
- package/src/ui/components/ui/checkbox.tsx +66 -0
- package/src/ui/components/ui/field.tsx +248 -0
- package/src/ui/components/ui/form.tsx +165 -0
- package/src/ui/components/ui/input-otp.tsx +77 -0
- package/src/ui/components/ui/input.tsx +21 -0
- package/src/ui/components/ui/label.tsx +23 -0
- package/src/ui/components/ui/separator.tsx +34 -0
- package/src/ui/components/ui/skeleton.tsx +13 -0
- package/src/ui/components/ui/textarea.tsx +18 -0
- package/src/ui/components/user-avatar.tsx +151 -0
- package/src/ui/hooks/use-auth-data.ts +193 -0
- package/src/ui/hooks/use-authenticate.ts +64 -0
- package/src/ui/hooks/use-captcha.tsx +151 -0
- package/src/ui/hooks/use-hydrated.ts +13 -0
- package/src/ui/hooks/use-lang.ts +32 -0
- package/src/ui/hooks/use-success-transition.ts +41 -0
- package/src/ui/hooks/use-theme.ts +39 -0
- package/src/ui/index.ts +46 -0
- package/src/ui/instantdb.ts +1 -0
- package/src/ui/lib/auth-data-cache.ts +90 -0
- package/src/ui/lib/auth-ui-provider.tsx +769 -0
- package/src/ui/lib/gravatar-utils.ts +58 -0
- package/src/ui/lib/image-utils.ts +55 -0
- package/src/ui/lib/instantdb/model-names.ts +24 -0
- package/src/ui/lib/instantdb/use-instant-options.ts +98 -0
- package/src/ui/lib/instantdb/use-list-accounts.ts +38 -0
- package/src/ui/lib/instantdb/use-list-sessions.ts +53 -0
- package/src/ui/lib/instantdb/use-session.ts +55 -0
- package/src/ui/lib/social-providers.ts +150 -0
- package/src/ui/lib/tanstack/auth-ui-provider-tanstack.tsx +49 -0
- package/src/ui/lib/tanstack/use-tanstack-options.ts +112 -0
- package/src/ui/lib/triplit/model-names.ts +24 -0
- package/src/ui/lib/triplit/use-conditional-query.ts +82 -0
- package/src/ui/lib/triplit/use-list-accounts.ts +31 -0
- package/src/ui/lib/triplit/use-list-sessions.ts +33 -0
- package/src/ui/lib/triplit/use-session.ts +42 -0
- package/src/ui/lib/triplit/use-triplit-hooks.ts +68 -0
- package/src/ui/lib/triplit/use-triplit-token.ts +44 -0
- package/src/ui/lib/utils.ts +119 -0
- package/src/ui/lib/view-paths.ts +61 -0
- package/src/ui/lib/wallet.ts +129 -0
- package/src/ui/localization/admin-error-codes.ts +20 -0
- package/src/ui/localization/anonymous-error-codes.ts +6 -0
- package/src/ui/localization/api-key-error-codes.ts +32 -0
- package/src/ui/localization/auth-localization.ts +865 -0
- package/src/ui/localization/base-error-codes.ts +27 -0
- package/src/ui/localization/captcha-error-codes.ts +17 -0
- package/src/ui/localization/email-otp-error-codes.ts +7 -0
- package/src/ui/localization/generic-oauth-error-codes.ts +3 -0
- package/src/ui/localization/haveibeenpwned-error-codes.ts +4 -0
- package/src/ui/localization/multi-session-error-codes.ts +3 -0
- package/src/ui/localization/organization-error-codes.ts +57 -0
- package/src/ui/localization/passkey-error-codes.ts +10 -0
- package/src/ui/localization/phone-number-error-codes.ts +10 -0
- package/src/ui/localization/stripe-localization.ts +12 -0
- package/src/ui/localization/team-error-codes.ts +12 -0
- package/src/ui/localization/two-factor-error-codes.ts +12 -0
- package/src/ui/localization/username-error-codes.ts +9 -0
- package/src/ui/server.ts +4 -0
- package/src/ui/style.css +146 -0
- package/src/ui/tanstack.ts +1 -0
- package/src/ui/triplit.ts +1 -0
- package/src/ui/types/account-options.ts +35 -0
- package/src/ui/types/additional-fields.ts +21 -0
- package/src/ui/types/any-auth-client.ts +6 -0
- package/src/ui/types/api-key.ts +9 -0
- package/src/ui/types/auth-client.ts +41 -0
- package/src/ui/types/auth-hooks.ts +81 -0
- package/src/ui/types/auth-mutators.ts +21 -0
- package/src/ui/types/avatar-options.ts +29 -0
- package/src/ui/types/captcha-options.ts +32 -0
- package/src/ui/types/captcha-provider.ts +7 -0
- package/src/ui/types/credentials-options.ts +38 -0
- package/src/ui/types/delete-user-options.ts +7 -0
- package/src/ui/types/email-verification-options.ts +7 -0
- package/src/ui/types/fetch-error.ts +6 -0
- package/src/ui/types/generic-oauth-options.ts +16 -0
- package/src/ui/types/gravatar-options.ts +21 -0
- package/src/ui/types/image.ts +7 -0
- package/src/ui/types/invitation.ts +10 -0
- package/src/ui/types/link.ts +7 -0
- package/src/ui/types/organization-options.ts +106 -0
- package/src/ui/types/password-validation.ts +16 -0
- package/src/ui/types/profile.ts +15 -0
- package/src/ui/types/refetch.ts +1 -0
- package/src/ui/types/render-toast.ts +9 -0
- package/src/ui/types/sign-up-options.ts +7 -0
- package/src/ui/types/social-options.ts +16 -0
- package/src/ui/types/team-options.ts +47 -0
|
@@ -0,0 +1,865 @@
|
|
|
1
|
+
import { ADMIN_ERROR_CODES } from "./admin-error-codes"
|
|
2
|
+
import { ANONYMOUS_ERROR_CODES } from "./anonymous-error-codes"
|
|
3
|
+
import { API_KEY_ERROR_CODES } from "./api-key-error-codes"
|
|
4
|
+
import { BASE_ERROR_CODES } from "./base-error-codes"
|
|
5
|
+
import { CAPTCHA_ERROR_CODES } from "./captcha-error-codes"
|
|
6
|
+
import { EMAIL_OTP_ERROR_CODES } from "./email-otp-error-codes"
|
|
7
|
+
import { GENERIC_OAUTH_ERROR_CODES } from "./generic-oauth-error-codes"
|
|
8
|
+
import { HAVEIBEENPWNED_ERROR_CODES } from "./haveibeenpwned-error-codes"
|
|
9
|
+
import { MULTI_SESSION_ERROR_CODES } from "./multi-session-error-codes"
|
|
10
|
+
import { ORGANIZATION_ERROR_CODES } from "./organization-error-codes"
|
|
11
|
+
import { PASSKEY_ERROR_CODES } from "./passkey-error-codes"
|
|
12
|
+
import { PHONE_NUMBER_ERROR_CODES } from "./phone-number-error-codes"
|
|
13
|
+
import { STRIPE_ERROR_CODES } from "./stripe-localization"
|
|
14
|
+
import { TEAM_ERROR_CODES } from "./team-error-codes"
|
|
15
|
+
import { TWO_FACTOR_ERROR_CODES } from "./two-factor-error-codes"
|
|
16
|
+
import { USERNAME_ERROR_CODES } from "./username-error-codes"
|
|
17
|
+
|
|
18
|
+
export const authLocalization = {
|
|
19
|
+
/** @default "App" */
|
|
20
|
+
APP: "App",
|
|
21
|
+
|
|
22
|
+
/** @default "Account" */
|
|
23
|
+
ACCOUNT: "Account",
|
|
24
|
+
|
|
25
|
+
/** @default "Accounts" */
|
|
26
|
+
ACCOUNTS: "Accounts",
|
|
27
|
+
|
|
28
|
+
/** @default "Manage your currently signed in accounts." */
|
|
29
|
+
ACCOUNTS_DESCRIPTION: "Switch between your currently signed in accounts.",
|
|
30
|
+
|
|
31
|
+
/** @default "Sign in to an additional account." */
|
|
32
|
+
ACCOUNTS_INSTRUCTIONS: "Sign in to an additional account.",
|
|
33
|
+
|
|
34
|
+
/** @default "Add Account" */
|
|
35
|
+
ADD_ACCOUNT: "Add Account",
|
|
36
|
+
|
|
37
|
+
/** @default "Add Passkey" */
|
|
38
|
+
ADD_PASSKEY: "Add Passkey",
|
|
39
|
+
|
|
40
|
+
/** @default "Already have an account?" */
|
|
41
|
+
ALREADY_HAVE_AN_ACCOUNT: "Already have an account?",
|
|
42
|
+
|
|
43
|
+
/** @default "Avatar" */
|
|
44
|
+
AVATAR: "Avatar",
|
|
45
|
+
|
|
46
|
+
/** @default "Click on the avatar to upload a custom one from your files." */
|
|
47
|
+
AVATAR_DESCRIPTION:
|
|
48
|
+
"Click on the avatar to upload a custom one from your files.",
|
|
49
|
+
|
|
50
|
+
/** @default "An avatar is optional but strongly recommended." */
|
|
51
|
+
AVATAR_INSTRUCTIONS: "An avatar is optional but strongly recommended.",
|
|
52
|
+
|
|
53
|
+
/** @default "Backup code is required" */
|
|
54
|
+
BACKUP_CODE_REQUIRED: "Backup code is required",
|
|
55
|
+
|
|
56
|
+
/** @default "Backup Codes" */
|
|
57
|
+
BACKUP_CODES: "Backup Codes",
|
|
58
|
+
|
|
59
|
+
/** @default "Save these backup codes in a secure place. You can use them to access your account if you lose your two-factor authentication method." */
|
|
60
|
+
BACKUP_CODES_DESCRIPTION:
|
|
61
|
+
"Save these backup codes in a secure place. You can use them to access your account if you lose your two-factor authentication method.",
|
|
62
|
+
|
|
63
|
+
/** @default "Backup Code." */
|
|
64
|
+
BACKUP_CODE_PLACEHOLDER: "Backup Code",
|
|
65
|
+
|
|
66
|
+
/** @default "Backup Code" */
|
|
67
|
+
BACKUP_CODE: "Backup Code",
|
|
68
|
+
|
|
69
|
+
/** @default "Cancel" */
|
|
70
|
+
CANCEL: "Cancel",
|
|
71
|
+
|
|
72
|
+
/** @default "Change Password" */
|
|
73
|
+
CHANGE_PASSWORD: "Change Password",
|
|
74
|
+
|
|
75
|
+
/** @default "Enter your current password and a new password." */
|
|
76
|
+
CHANGE_PASSWORD_DESCRIPTION:
|
|
77
|
+
"Enter your current password and a new password.",
|
|
78
|
+
|
|
79
|
+
/** @default "Please use 8 characters at minimum." */
|
|
80
|
+
CHANGE_PASSWORD_INSTRUCTIONS: "Please use 8 characters at minimum.",
|
|
81
|
+
|
|
82
|
+
/** @default "Your password has been changed." */
|
|
83
|
+
CHANGE_PASSWORD_SUCCESS: "Your password has been changed.",
|
|
84
|
+
|
|
85
|
+
/** @default "Confirm Password" */
|
|
86
|
+
CONFIRM_PASSWORD: "Confirm Password",
|
|
87
|
+
|
|
88
|
+
/** @default "Confirm Password" */
|
|
89
|
+
CONFIRM_PASSWORD_PLACEHOLDER: "Confirm Password",
|
|
90
|
+
|
|
91
|
+
/** @default "Confirm password is required" */
|
|
92
|
+
CONFIRM_PASSWORD_REQUIRED: "Confirm password is required",
|
|
93
|
+
|
|
94
|
+
/** @default "Continue with Authenticator" */
|
|
95
|
+
CONTINUE_WITH_AUTHENTICATOR: "Continue with Authenticator",
|
|
96
|
+
|
|
97
|
+
/** @default "Copied to clipboard" */
|
|
98
|
+
COPIED_TO_CLIPBOARD: "Copied to clipboard",
|
|
99
|
+
|
|
100
|
+
/** @default "Copy to clipboard" */
|
|
101
|
+
COPY_TO_CLIPBOARD: "Copy to clipboard",
|
|
102
|
+
|
|
103
|
+
/** @default "Copy all codes" */
|
|
104
|
+
COPY_ALL_CODES: "Copy all codes",
|
|
105
|
+
|
|
106
|
+
/** @default "Continue" */
|
|
107
|
+
CONTINUE: "Continue",
|
|
108
|
+
|
|
109
|
+
/** @default "Current Password" */
|
|
110
|
+
CURRENT_PASSWORD: "Current Password",
|
|
111
|
+
|
|
112
|
+
/** @default "Current Password" */
|
|
113
|
+
CURRENT_PASSWORD_PLACEHOLDER: "Current Password",
|
|
114
|
+
|
|
115
|
+
/** @default "Current Session" */
|
|
116
|
+
CURRENT_SESSION: "Current Session",
|
|
117
|
+
|
|
118
|
+
/** @default "Update" */
|
|
119
|
+
UPDATE: "Update",
|
|
120
|
+
|
|
121
|
+
/** @default "Delete" */
|
|
122
|
+
DELETE: "Delete",
|
|
123
|
+
|
|
124
|
+
/** @default "Delete Avatar" */
|
|
125
|
+
DELETE_AVATAR: "Delete Avatar",
|
|
126
|
+
|
|
127
|
+
/** @default "Delete Account" */
|
|
128
|
+
DELETE_ACCOUNT: "Delete Account",
|
|
129
|
+
|
|
130
|
+
/** @default "Permanently remove your account and all of its contents. This action is not reversible, so please continue with caution." */
|
|
131
|
+
DELETE_ACCOUNT_DESCRIPTION:
|
|
132
|
+
"Permanently remove your account and all of its contents. This action is not reversible, so please continue with caution.",
|
|
133
|
+
|
|
134
|
+
/** @default "Please confirm the deletion of your account. This action is not reversible, so please continue with caution." */
|
|
135
|
+
DELETE_ACCOUNT_INSTRUCTIONS:
|
|
136
|
+
"Please confirm the deletion of your account. This action is not reversible, so please continue with caution.",
|
|
137
|
+
|
|
138
|
+
/** @default "Please check your email to verify the deletion of your account." */
|
|
139
|
+
DELETE_ACCOUNT_VERIFY:
|
|
140
|
+
"Please check your email to verify the deletion of your account.",
|
|
141
|
+
|
|
142
|
+
/** @default "Your account has been deleted." */
|
|
143
|
+
DELETE_ACCOUNT_SUCCESS: "Your account has been deleted.",
|
|
144
|
+
|
|
145
|
+
/** @default "Disable Two-Factor" */
|
|
146
|
+
DISABLE_TWO_FACTOR: "Disable Two-Factor",
|
|
147
|
+
|
|
148
|
+
/** @default "Choose a provider to login to your account" */
|
|
149
|
+
DISABLED_CREDENTIALS_DESCRIPTION:
|
|
150
|
+
"Choose a provider to login to your account",
|
|
151
|
+
|
|
152
|
+
/** @default "Don't have an account?" */
|
|
153
|
+
DONT_HAVE_AN_ACCOUNT: "Don't have an account?",
|
|
154
|
+
|
|
155
|
+
/** @default "Done" */
|
|
156
|
+
DONE: "Done",
|
|
157
|
+
|
|
158
|
+
/** @default "Email" */
|
|
159
|
+
EMAIL: "Email",
|
|
160
|
+
|
|
161
|
+
/** @default "Enter the email address you want to use to log in." */
|
|
162
|
+
EMAIL_DESCRIPTION: "Enter the email address you want to use to log in.",
|
|
163
|
+
|
|
164
|
+
/** @default "Please enter a valid email address." */
|
|
165
|
+
EMAIL_INSTRUCTIONS: "Please enter a valid email address.",
|
|
166
|
+
|
|
167
|
+
/** @default "Email is the same" */
|
|
168
|
+
EMAIL_IS_THE_SAME: "Email is the same",
|
|
169
|
+
|
|
170
|
+
/** @default "m@example.com" */
|
|
171
|
+
EMAIL_PLACEHOLDER: "m@example.com",
|
|
172
|
+
|
|
173
|
+
/** @default "Email address is required" */
|
|
174
|
+
EMAIL_REQUIRED: "Email address is required",
|
|
175
|
+
|
|
176
|
+
/** @default "Please check your email to verify the change." */
|
|
177
|
+
EMAIL_VERIFY_CHANGE: "Please check your email to verify the change.",
|
|
178
|
+
|
|
179
|
+
/** @default "Email Verification" */
|
|
180
|
+
EMAIL_VERIFICATION: "Email Verification",
|
|
181
|
+
|
|
182
|
+
/** @default "Please check your email for the verification code to complete your registration." */
|
|
183
|
+
EMAIL_VERIFICATION_DESCRIPTION:
|
|
184
|
+
"Please check your email for the verification code to complete your registration.",
|
|
185
|
+
|
|
186
|
+
/** @default "Email verification successful." */
|
|
187
|
+
EMAIL_VERIFICATION_SUCCESS: "Email verification successful.",
|
|
188
|
+
|
|
189
|
+
/** @default "Enable Two-Factor" */
|
|
190
|
+
ENABLE_TWO_FACTOR: "Enable Two-Factor",
|
|
191
|
+
|
|
192
|
+
/** @default "is invalid" */
|
|
193
|
+
IS_INVALID: "is invalid",
|
|
194
|
+
|
|
195
|
+
/** @default "is required" */
|
|
196
|
+
IS_REQUIRED: "is required",
|
|
197
|
+
|
|
198
|
+
/** @default "is the same" */
|
|
199
|
+
IS_THE_SAME: "is the same",
|
|
200
|
+
|
|
201
|
+
/** @default "Forgot authenticator?" */
|
|
202
|
+
FORGOT_AUTHENTICATOR: "Forgot authenticator?",
|
|
203
|
+
|
|
204
|
+
/** @default "Forgot Password" */
|
|
205
|
+
FORGOT_PASSWORD: "Forgot Password",
|
|
206
|
+
|
|
207
|
+
/** @default "Send reset link" */
|
|
208
|
+
FORGOT_PASSWORD_ACTION: "Send reset link",
|
|
209
|
+
|
|
210
|
+
/** @default "Enter your email to reset your password" */
|
|
211
|
+
FORGOT_PASSWORD_DESCRIPTION: "Enter your email to reset your password",
|
|
212
|
+
|
|
213
|
+
/** @default "Check your email for the password reset link." */
|
|
214
|
+
FORGOT_PASSWORD_EMAIL: "Check your email for the password reset link.",
|
|
215
|
+
|
|
216
|
+
/** @default "Forgot your password?" */
|
|
217
|
+
FORGOT_PASSWORD_LINK: "Forgot your password?",
|
|
218
|
+
|
|
219
|
+
/** @default "Link" */
|
|
220
|
+
LINK: "Link",
|
|
221
|
+
|
|
222
|
+
/** @default "Magic Link" */
|
|
223
|
+
MAGIC_LINK: "Magic Link",
|
|
224
|
+
|
|
225
|
+
/** @default "Send magic link" */
|
|
226
|
+
MAGIC_LINK_ACTION: "Send magic link",
|
|
227
|
+
|
|
228
|
+
/** @default "Enter your email to receive a magic link" */
|
|
229
|
+
MAGIC_LINK_DESCRIPTION: "Enter your email to receive a magic link",
|
|
230
|
+
|
|
231
|
+
/** @default "Check your email for the magic link" */
|
|
232
|
+
MAGIC_LINK_EMAIL: "Check your email for the magic link",
|
|
233
|
+
|
|
234
|
+
/** @default "Email Code" */
|
|
235
|
+
EMAIL_OTP: "Email Code",
|
|
236
|
+
|
|
237
|
+
/** @default "Send code" */
|
|
238
|
+
EMAIL_OTP_SEND_ACTION: "Send code",
|
|
239
|
+
|
|
240
|
+
/** @default "Verify code" */
|
|
241
|
+
EMAIL_OTP_VERIFY_ACTION: "Verify code",
|
|
242
|
+
|
|
243
|
+
/** @default "Enter your email to receive a code" */
|
|
244
|
+
EMAIL_OTP_DESCRIPTION: "Enter your email to receive a code",
|
|
245
|
+
|
|
246
|
+
/** @default "Please check your email for the verification code." */
|
|
247
|
+
EMAIL_OTP_VERIFICATION_SENT:
|
|
248
|
+
"Please check your email for the verification code.",
|
|
249
|
+
|
|
250
|
+
/** @default "Name" */
|
|
251
|
+
NAME: "Name",
|
|
252
|
+
|
|
253
|
+
/** @default "Please enter your full name, or a display name." */
|
|
254
|
+
NAME_DESCRIPTION: "Please enter your full name, or a display name.",
|
|
255
|
+
|
|
256
|
+
/** @default "Please use 32 characters at maximum." */
|
|
257
|
+
NAME_INSTRUCTIONS: "Please use 32 characters at maximum.",
|
|
258
|
+
|
|
259
|
+
/** @default "Name" */
|
|
260
|
+
NAME_PLACEHOLDER: "Name",
|
|
261
|
+
|
|
262
|
+
/** @default "New Password" */
|
|
263
|
+
NEW_PASSWORD: "New Password",
|
|
264
|
+
|
|
265
|
+
/** @default "New Password" */
|
|
266
|
+
NEW_PASSWORD_PLACEHOLDER: "New Password",
|
|
267
|
+
|
|
268
|
+
/** @default "New password is required" */
|
|
269
|
+
NEW_PASSWORD_REQUIRED: "New password is required",
|
|
270
|
+
|
|
271
|
+
/** @default "One-Time Password" */
|
|
272
|
+
ONE_TIME_PASSWORD: "One-Time Password",
|
|
273
|
+
|
|
274
|
+
/** @default "Or continue with" */
|
|
275
|
+
OR_CONTINUE_WITH: "Or continue with",
|
|
276
|
+
|
|
277
|
+
/** @default "Passkey" */
|
|
278
|
+
PASSKEY: "Passkey",
|
|
279
|
+
|
|
280
|
+
/** @default "Passkeys" */
|
|
281
|
+
PASSKEYS: "Passkeys",
|
|
282
|
+
|
|
283
|
+
/** @default "Manage your passkeys for secure access." */
|
|
284
|
+
PASSKEYS_DESCRIPTION: "Manage your passkeys for secure access.",
|
|
285
|
+
|
|
286
|
+
/** @default "Securely access your account without a password." */
|
|
287
|
+
PASSKEYS_INSTRUCTIONS: "Securely access your account without a password.",
|
|
288
|
+
|
|
289
|
+
/** @default "Personal Account" */
|
|
290
|
+
PERSONAL_ACCOUNT: "Personal Account",
|
|
291
|
+
|
|
292
|
+
/** @default "API Keys" */
|
|
293
|
+
API_KEYS: "API Keys",
|
|
294
|
+
|
|
295
|
+
/** @default "Manage your API keys for secure access." */
|
|
296
|
+
API_KEYS_DESCRIPTION: "Manage your API keys for secure access.",
|
|
297
|
+
|
|
298
|
+
/** @default "Generate API keys to access your account programmatically." */
|
|
299
|
+
API_KEYS_INSTRUCTIONS:
|
|
300
|
+
"Generate API keys to access your account programmatically.",
|
|
301
|
+
|
|
302
|
+
/** @default "Create API Key" */
|
|
303
|
+
CREATE_API_KEY: "Create API Key",
|
|
304
|
+
|
|
305
|
+
/** @default "Enter a unique name for your API key to differentiate it from other keys." */
|
|
306
|
+
CREATE_API_KEY_DESCRIPTION:
|
|
307
|
+
"Enter a unique name for your API key to differentiate it from other keys.",
|
|
308
|
+
|
|
309
|
+
/** @default "New API Key" */
|
|
310
|
+
API_KEY_NAME_PLACEHOLDER: "New API Key",
|
|
311
|
+
|
|
312
|
+
/** @default "API Key Created" */
|
|
313
|
+
API_KEY_CREATED: "API Key Created",
|
|
314
|
+
|
|
315
|
+
/** @default "Please copy your API key and store it in a safe place. For security reasons we cannot show it again." */
|
|
316
|
+
CREATE_API_KEY_SUCCESS:
|
|
317
|
+
"Please copy your API key and store it in a safe place. For security reasons we cannot show it again.",
|
|
318
|
+
|
|
319
|
+
/** @default "Never Expires" */
|
|
320
|
+
NEVER_EXPIRES: "Never Expires",
|
|
321
|
+
|
|
322
|
+
/** @default "Expires" */
|
|
323
|
+
EXPIRES: "Expires",
|
|
324
|
+
|
|
325
|
+
/** @default "No Expiration" */
|
|
326
|
+
NO_EXPIRATION: "No Expiration",
|
|
327
|
+
|
|
328
|
+
/** @default "Create Organization" */
|
|
329
|
+
CREATE_ORGANIZATION: "Create Organization",
|
|
330
|
+
|
|
331
|
+
/** @default "Organization" */
|
|
332
|
+
ORGANIZATION: "Organization",
|
|
333
|
+
|
|
334
|
+
/** @default "Name" */
|
|
335
|
+
ORGANIZATION_NAME: "Name",
|
|
336
|
+
|
|
337
|
+
/** @default "Acme Inc." */
|
|
338
|
+
ORGANIZATION_NAME_PLACEHOLDER: "Acme Inc.",
|
|
339
|
+
|
|
340
|
+
/** @default "This is your organization's visible name." */
|
|
341
|
+
ORGANIZATION_NAME_DESCRIPTION: "This is your organization's visible name.",
|
|
342
|
+
|
|
343
|
+
/** @default "Please use 32 characters at maximum." */
|
|
344
|
+
ORGANIZATION_NAME_INSTRUCTIONS: "Please use 32 characters at maximum.",
|
|
345
|
+
|
|
346
|
+
/** @default "Slug URL" */
|
|
347
|
+
ORGANIZATION_SLUG: "Slug URL",
|
|
348
|
+
|
|
349
|
+
/** @default "This is your organization's URL namespace." */
|
|
350
|
+
ORGANIZATION_SLUG_DESCRIPTION: "This is your organization's URL namespace.",
|
|
351
|
+
|
|
352
|
+
/** @default "Please use 48 characters at maximum." */
|
|
353
|
+
ORGANIZATION_SLUG_INSTRUCTIONS: "Please use 48 characters at maximum.",
|
|
354
|
+
|
|
355
|
+
/** @default "acme-inc" */
|
|
356
|
+
ORGANIZATION_SLUG_PLACEHOLDER: "acme-inc",
|
|
357
|
+
|
|
358
|
+
/** @default "Organization created successfully" */
|
|
359
|
+
CREATE_ORGANIZATION_SUCCESS: "Organization created successfully",
|
|
360
|
+
|
|
361
|
+
/** @default "Password" */
|
|
362
|
+
PASSWORD: "Password",
|
|
363
|
+
|
|
364
|
+
/** @default "Password" */
|
|
365
|
+
PASSWORD_PLACEHOLDER: "Password",
|
|
366
|
+
|
|
367
|
+
/** @default "Password is required" */
|
|
368
|
+
PASSWORD_REQUIRED: "Password is required",
|
|
369
|
+
|
|
370
|
+
/** @default "Passwords do not match" */
|
|
371
|
+
PASSWORDS_DO_NOT_MATCH: "Passwords do not match",
|
|
372
|
+
|
|
373
|
+
/** @default "Providers" */
|
|
374
|
+
PROVIDERS: "Providers",
|
|
375
|
+
|
|
376
|
+
/** @default "Connect your account with a third-party service." */
|
|
377
|
+
PROVIDERS_DESCRIPTION: "Connect your account with a third-party service.",
|
|
378
|
+
|
|
379
|
+
/** @default "Recover Account" */
|
|
380
|
+
RECOVER_ACCOUNT: "Recover Account",
|
|
381
|
+
|
|
382
|
+
/** @default "Recover account" */
|
|
383
|
+
RECOVER_ACCOUNT_ACTION: "Recover account",
|
|
384
|
+
|
|
385
|
+
/** @default "Please enter a backup code to access your account" */
|
|
386
|
+
RECOVER_ACCOUNT_DESCRIPTION:
|
|
387
|
+
"Please enter a backup code to access your account",
|
|
388
|
+
|
|
389
|
+
/** @default "Remember me" */
|
|
390
|
+
REMEMBER_ME: "Remember me",
|
|
391
|
+
|
|
392
|
+
/** @default "Resend code" */
|
|
393
|
+
RESEND_CODE: "Resend code",
|
|
394
|
+
|
|
395
|
+
/** @default "Resend verification email" */
|
|
396
|
+
RESEND_VERIFICATION_EMAIL: "Resend Verification Email",
|
|
397
|
+
|
|
398
|
+
/** @default "Reset Password" */
|
|
399
|
+
RESET_PASSWORD: "Reset Password",
|
|
400
|
+
|
|
401
|
+
/** @default "Save new password" */
|
|
402
|
+
RESET_PASSWORD_ACTION: "Save new password",
|
|
403
|
+
|
|
404
|
+
/** @default "Enter your new password below" */
|
|
405
|
+
RESET_PASSWORD_DESCRIPTION: "Enter your new password below",
|
|
406
|
+
|
|
407
|
+
/** @default "Password reset successfully" */
|
|
408
|
+
RESET_PASSWORD_SUCCESS: "Password reset successfully",
|
|
409
|
+
|
|
410
|
+
/** @default "Request failed" */
|
|
411
|
+
REQUEST_FAILED: "Request failed",
|
|
412
|
+
|
|
413
|
+
/** @default "Revoke" */
|
|
414
|
+
REVOKE: "Revoke",
|
|
415
|
+
|
|
416
|
+
/** @default "Delete API Key" */
|
|
417
|
+
DELETE_API_KEY: "Delete API Key",
|
|
418
|
+
|
|
419
|
+
/** @default "Are you sure you want to delete this API key?" */
|
|
420
|
+
DELETE_API_KEY_CONFIRM: "Are you sure you want to delete this API key?",
|
|
421
|
+
|
|
422
|
+
/** @default "API Key" */
|
|
423
|
+
API_KEY: "API Key",
|
|
424
|
+
|
|
425
|
+
/** @default "Sign In" */
|
|
426
|
+
SIGN_IN: "Sign In",
|
|
427
|
+
|
|
428
|
+
/** @default "Login" */
|
|
429
|
+
SIGN_IN_ACTION: "Login",
|
|
430
|
+
|
|
431
|
+
/** @default "Enter your email below to login to your account" */
|
|
432
|
+
SIGN_IN_DESCRIPTION: "Enter your email below to login to your account",
|
|
433
|
+
|
|
434
|
+
/** @default "Enter your username or email below to login to your account" */
|
|
435
|
+
SIGN_IN_USERNAME_DESCRIPTION:
|
|
436
|
+
"Enter your username or email to login to your account",
|
|
437
|
+
|
|
438
|
+
/** @default "Sign in with" */
|
|
439
|
+
SIGN_IN_WITH: "Sign in with",
|
|
440
|
+
|
|
441
|
+
/** @default "Sign Out" */
|
|
442
|
+
SIGN_OUT: "Sign Out",
|
|
443
|
+
|
|
444
|
+
/** @default "Sign Up" */
|
|
445
|
+
SIGN_UP: "Sign Up",
|
|
446
|
+
|
|
447
|
+
/** @default "Create an account" */
|
|
448
|
+
SIGN_UP_ACTION: "Create an account",
|
|
449
|
+
|
|
450
|
+
/** @default "Enter your information to create an account" */
|
|
451
|
+
SIGN_UP_DESCRIPTION: "Enter your information to create an account",
|
|
452
|
+
|
|
453
|
+
/** @default "Check your email for the verification link." */
|
|
454
|
+
SIGN_UP_EMAIL: "Check your email for the verification link.",
|
|
455
|
+
|
|
456
|
+
/** @default "Sessions" */
|
|
457
|
+
SESSIONS: "Sessions",
|
|
458
|
+
|
|
459
|
+
/** @default "Manage your active sessions and revoke access." */
|
|
460
|
+
SESSIONS_DESCRIPTION: "Manage your active sessions and revoke access.",
|
|
461
|
+
|
|
462
|
+
/** @default "Set Password" */
|
|
463
|
+
SET_PASSWORD: "Set Password",
|
|
464
|
+
|
|
465
|
+
/** @default "Click the button below to receive an email to set up a password for your account." */
|
|
466
|
+
SET_PASSWORD_DESCRIPTION:
|
|
467
|
+
"Click the button below to receive an email to set up a password for your account.",
|
|
468
|
+
|
|
469
|
+
/** @default "Settings" */
|
|
470
|
+
SETTINGS: "Settings",
|
|
471
|
+
|
|
472
|
+
/** @default "Save" */
|
|
473
|
+
SAVE: "Save",
|
|
474
|
+
|
|
475
|
+
/** @default "Security" */
|
|
476
|
+
SECURITY: "Security",
|
|
477
|
+
|
|
478
|
+
/** @default "Switch Account" */
|
|
479
|
+
SWITCH_ACCOUNT: "Switch Account",
|
|
480
|
+
|
|
481
|
+
/** @default "Trust this device" */
|
|
482
|
+
TRUST_DEVICE: "Trust this device",
|
|
483
|
+
|
|
484
|
+
/** @default "Two-Factor" */
|
|
485
|
+
TWO_FACTOR: "Two-Factor",
|
|
486
|
+
|
|
487
|
+
/** @default "Verify code" */
|
|
488
|
+
TWO_FACTOR_ACTION: "Verify code",
|
|
489
|
+
|
|
490
|
+
/** @default "Please enter your one-time password to continue" */
|
|
491
|
+
TWO_FACTOR_DESCRIPTION: "Please enter your one-time password to continue",
|
|
492
|
+
|
|
493
|
+
/** @default "Add an extra layer of security to your account." */
|
|
494
|
+
TWO_FACTOR_CARD_DESCRIPTION:
|
|
495
|
+
"Add an extra layer of security to your account.",
|
|
496
|
+
|
|
497
|
+
/** @default "Please enter your password to disable 2FA." */
|
|
498
|
+
TWO_FACTOR_DISABLE_INSTRUCTIONS:
|
|
499
|
+
"Please enter your password to disable 2FA.",
|
|
500
|
+
|
|
501
|
+
/** @default "Please enter your password to enable 2FA" */
|
|
502
|
+
TWO_FACTOR_ENABLE_INSTRUCTIONS: "Please enter your password to enable 2FA.",
|
|
503
|
+
|
|
504
|
+
/** @default "Two-factor authentication has been enabled" */
|
|
505
|
+
TWO_FACTOR_ENABLED: "Two-factor authentication has been enabled",
|
|
506
|
+
|
|
507
|
+
/** @default "Two-Factor Authentication has been disabled" */
|
|
508
|
+
TWO_FACTOR_DISABLED: "Two-Factor Authentication has been disabled",
|
|
509
|
+
|
|
510
|
+
/** @default "Two-Factor Authentication" */
|
|
511
|
+
TWO_FACTOR_PROMPT: "Two-Factor Authentication",
|
|
512
|
+
|
|
513
|
+
/** @default "Scan the QR Code with your Authenticator" */
|
|
514
|
+
TWO_FACTOR_TOTP_LABEL: "Scan the QR Code with your Authenticator",
|
|
515
|
+
|
|
516
|
+
/** @default "Send verification code" */
|
|
517
|
+
SEND_VERIFICATION_CODE: "Send verification code",
|
|
518
|
+
|
|
519
|
+
/** @default "Unlink" */
|
|
520
|
+
UNLINK: "Unlink",
|
|
521
|
+
|
|
522
|
+
/** @default "Updated successfully" */
|
|
523
|
+
UPDATED_SUCCESSFULLY: "updated successfully",
|
|
524
|
+
|
|
525
|
+
/** @default "Username" */
|
|
526
|
+
USERNAME: "Username",
|
|
527
|
+
|
|
528
|
+
/** @default "Enter the username you want to use to log in." */
|
|
529
|
+
USERNAME_DESCRIPTION: "Enter the username you want to use to log in.",
|
|
530
|
+
|
|
531
|
+
/** @default "Please use 32 characters at maximum." */
|
|
532
|
+
USERNAME_INSTRUCTIONS: "Please use 32 characters at maximum.",
|
|
533
|
+
|
|
534
|
+
/** @default "Username" */
|
|
535
|
+
USERNAME_PLACEHOLDER: "Username",
|
|
536
|
+
|
|
537
|
+
/** @default "(Optional)" */
|
|
538
|
+
OPTIONAL_BRACKETS: "(Optional)",
|
|
539
|
+
|
|
540
|
+
/** @default "Username or email" */
|
|
541
|
+
SIGN_IN_USERNAME_PLACEHOLDER: "Username or email",
|
|
542
|
+
|
|
543
|
+
/** @default "Verify Your Email" */
|
|
544
|
+
VERIFY_YOUR_EMAIL: "Verify Your Email",
|
|
545
|
+
|
|
546
|
+
/** @default "Please verify your email address. Check your inbox for the verification email. If you haven't received the email, click the button below to resend." */
|
|
547
|
+
VERIFY_YOUR_EMAIL_DESCRIPTION:
|
|
548
|
+
"Please verify your email address. Check your inbox for the verification email. If you haven't received the email, click the button below to resend.",
|
|
549
|
+
|
|
550
|
+
/** @default "Go back" */
|
|
551
|
+
GO_BACK: "Go back",
|
|
552
|
+
|
|
553
|
+
/** @default "Your session is not fresh. Please sign in again." */
|
|
554
|
+
SESSION_NOT_FRESH: "Your session is not fresh. Please sign in again.",
|
|
555
|
+
|
|
556
|
+
/** @default "Upload Avatar" */
|
|
557
|
+
UPLOAD_AVATAR: "Upload Avatar",
|
|
558
|
+
|
|
559
|
+
/** @default "Logo" */
|
|
560
|
+
LOGO: "Logo",
|
|
561
|
+
|
|
562
|
+
/** @default "Click on the logo to upload a custom one from your files." */
|
|
563
|
+
LOGO_DESCRIPTION:
|
|
564
|
+
"Click on the logo to upload a custom one from your files.",
|
|
565
|
+
|
|
566
|
+
/** @default "A logo is optional but strongly recommended." */
|
|
567
|
+
LOGO_INSTRUCTIONS: "A logo is optional but strongly recommended.",
|
|
568
|
+
|
|
569
|
+
/** @default "Upload" */
|
|
570
|
+
UPLOAD: "Upload",
|
|
571
|
+
|
|
572
|
+
/** @default "Upload Logo" */
|
|
573
|
+
UPLOAD_LOGO: "Upload Logo",
|
|
574
|
+
|
|
575
|
+
/** @default "Delete Logo" */
|
|
576
|
+
DELETE_LOGO: "Delete Logo",
|
|
577
|
+
|
|
578
|
+
/** @default "Privacy Policy" */
|
|
579
|
+
PRIVACY_POLICY: "Privacy Policy",
|
|
580
|
+
|
|
581
|
+
/** @default "Terms of Service" */
|
|
582
|
+
TERMS_OF_SERVICE: "Terms of Service",
|
|
583
|
+
|
|
584
|
+
/** @default "This site is protected by reCAPTCHA." */
|
|
585
|
+
PROTECTED_BY_RECAPTCHA: "This site is protected by reCAPTCHA.",
|
|
586
|
+
|
|
587
|
+
/** @default "By continuing, you agree to the" */
|
|
588
|
+
BY_CONTINUING_YOU_AGREE: "By continuing, you agree to the",
|
|
589
|
+
|
|
590
|
+
/** @default "User" */
|
|
591
|
+
USER: "User",
|
|
592
|
+
|
|
593
|
+
/** @default "Organizations" */
|
|
594
|
+
ORGANIZATIONS: "Organizations",
|
|
595
|
+
|
|
596
|
+
/** @default "Manage your organizations and memberships." */
|
|
597
|
+
ORGANIZATIONS_DESCRIPTION: "Manage your organizations and memberships.",
|
|
598
|
+
|
|
599
|
+
/** @default "Create an organization to collaborate with other users." */
|
|
600
|
+
ORGANIZATIONS_INSTRUCTIONS:
|
|
601
|
+
"Create an organization to collaborate with other users.",
|
|
602
|
+
|
|
603
|
+
/** @default "Leave Organization" */
|
|
604
|
+
LEAVE_ORGANIZATION: "Leave Organization",
|
|
605
|
+
|
|
606
|
+
/** @default "Are you sure you want to leave this organization?" */
|
|
607
|
+
LEAVE_ORGANIZATION_CONFIRM:
|
|
608
|
+
"Are you sure you want to leave this organization?",
|
|
609
|
+
|
|
610
|
+
/** @default "You have successfully left the organization." */
|
|
611
|
+
LEAVE_ORGANIZATION_SUCCESS: "You have successfully left the organization.",
|
|
612
|
+
|
|
613
|
+
/** @default "Manage Organization" */
|
|
614
|
+
MANAGE_ORGANIZATION: "Manage Organization",
|
|
615
|
+
|
|
616
|
+
/** @default "Remove Member" */
|
|
617
|
+
REMOVE_MEMBER: "Remove Member",
|
|
618
|
+
|
|
619
|
+
/** @default "Are you sure you want to remove this member from the organization?" */
|
|
620
|
+
REMOVE_MEMBER_CONFIRM:
|
|
621
|
+
"Are you sure you want to remove this member from the organization?",
|
|
622
|
+
|
|
623
|
+
/** @default "Member removed successfully" */
|
|
624
|
+
REMOVE_MEMBER_SUCCESS: "Member removed successfully",
|
|
625
|
+
|
|
626
|
+
/** @default "Invite Member" */
|
|
627
|
+
INVITE_MEMBER: "Invite Member",
|
|
628
|
+
|
|
629
|
+
/** @default "Members" */
|
|
630
|
+
MEMBERS: "Members",
|
|
631
|
+
|
|
632
|
+
/** @default "Add or remove members and manage their roles." */
|
|
633
|
+
MEMBERS_DESCRIPTION: "Add or remove members and manage their roles.",
|
|
634
|
+
|
|
635
|
+
/** @default "Invite new members to your organization." */
|
|
636
|
+
MEMBERS_INSTRUCTIONS: "Invite new members to your organization.",
|
|
637
|
+
|
|
638
|
+
/** @default "Send an invitation to add a new member to your organization." */
|
|
639
|
+
INVITE_MEMBER_DESCRIPTION:
|
|
640
|
+
"Send an invitation to add a new member to your organization.",
|
|
641
|
+
|
|
642
|
+
/** @default "Role" */
|
|
643
|
+
ROLE: "Role",
|
|
644
|
+
|
|
645
|
+
/** @default "Select a role" */
|
|
646
|
+
SELECT_ROLE: "Select a role",
|
|
647
|
+
|
|
648
|
+
/** @default "Admin" */
|
|
649
|
+
ADMIN: "Admin",
|
|
650
|
+
|
|
651
|
+
/** @default "Member" */
|
|
652
|
+
MEMBER: "Member",
|
|
653
|
+
|
|
654
|
+
/** @default "Guest" */
|
|
655
|
+
GUEST: "Guest",
|
|
656
|
+
|
|
657
|
+
/** @default "Owner" */
|
|
658
|
+
OWNER: "Owner",
|
|
659
|
+
|
|
660
|
+
/** @default "Update the role for this member" */
|
|
661
|
+
UPDATE_ROLE_DESCRIPTION: "Update the role for this member",
|
|
662
|
+
|
|
663
|
+
/** @default "Update Role" */
|
|
664
|
+
UPDATE_ROLE: "Update Role",
|
|
665
|
+
|
|
666
|
+
/** @default "Member role updated successfully" */
|
|
667
|
+
MEMBER_ROLE_UPDATED: "Member role updated successfully",
|
|
668
|
+
|
|
669
|
+
/** @default "Send Invitation" */
|
|
670
|
+
SEND_INVITATION: "Send Invitation",
|
|
671
|
+
|
|
672
|
+
/** @default "Invitation sent successfully" */
|
|
673
|
+
SEND_INVITATION_SUCCESS: "Invitation sent successfully",
|
|
674
|
+
|
|
675
|
+
/** @default "Pending Invitations" */
|
|
676
|
+
PENDING_INVITATIONS: "Pending Invitations",
|
|
677
|
+
|
|
678
|
+
/** @default "Manage pending invitations to your organization." */
|
|
679
|
+
PENDING_INVITATIONS_DESCRIPTION:
|
|
680
|
+
"Manage pending invitations to your organization.",
|
|
681
|
+
|
|
682
|
+
/** @default "Invitations you've received from organizations." */
|
|
683
|
+
PENDING_USER_INVITATIONS_DESCRIPTION:
|
|
684
|
+
"Invitations you've received from organizations.",
|
|
685
|
+
|
|
686
|
+
/** @default "Cancel Invitation" */
|
|
687
|
+
CANCEL_INVITATION: "Cancel Invitation",
|
|
688
|
+
|
|
689
|
+
/** @default "Invitation cancelled successfully" */
|
|
690
|
+
INVITATION_CANCELLED: "Invitation cancelled successfully",
|
|
691
|
+
|
|
692
|
+
/** @default "Accept Invitation" */
|
|
693
|
+
ACCEPT_INVITATION: "Accept Invitation",
|
|
694
|
+
|
|
695
|
+
/** @default "You have been invited to join an organization." */
|
|
696
|
+
ACCEPT_INVITATION_DESCRIPTION:
|
|
697
|
+
"You have been invited to join an organization.",
|
|
698
|
+
|
|
699
|
+
/** @default "Invitation accepted successfully" */
|
|
700
|
+
INVITATION_ACCEPTED: "Invitation accepted successfully",
|
|
701
|
+
|
|
702
|
+
/** @default "Invitation rejected successfully" */
|
|
703
|
+
INVITATION_REJECTED: "Invitation rejected successfully",
|
|
704
|
+
|
|
705
|
+
/** @default "Accept" */
|
|
706
|
+
ACCEPT: "Accept",
|
|
707
|
+
|
|
708
|
+
/** @default "Reject" */
|
|
709
|
+
REJECT: "Reject",
|
|
710
|
+
|
|
711
|
+
/** @default "This invitation has expired" */
|
|
712
|
+
INVITATION_EXPIRED: "This invitation has expired",
|
|
713
|
+
|
|
714
|
+
/** @default "Delete Organization" */
|
|
715
|
+
DELETE_ORGANIZATION: "Delete Organization",
|
|
716
|
+
|
|
717
|
+
/** @default "Permanently remove your organization and all of its contents. This action is not reversible — please continue with caution." */
|
|
718
|
+
DELETE_ORGANIZATION_DESCRIPTION:
|
|
719
|
+
"Permanently remove your organization and all of its contents. This action is not reversible — please continue with caution.",
|
|
720
|
+
|
|
721
|
+
/** @default "Organization deleted successfully" */
|
|
722
|
+
DELETE_ORGANIZATION_SUCCESS: "Organization deleted successfully",
|
|
723
|
+
|
|
724
|
+
/** @default "Enter the organization slug to continue:" */
|
|
725
|
+
DELETE_ORGANIZATION_INSTRUCTIONS:
|
|
726
|
+
"Enter the organization slug to continue:",
|
|
727
|
+
|
|
728
|
+
/** @default "Organization slug is required" */
|
|
729
|
+
SLUG_REQUIRED: "Organization slug is required",
|
|
730
|
+
|
|
731
|
+
/** @default "The slug does not match" */
|
|
732
|
+
SLUG_DOES_NOT_MATCH: "The slug does not match",
|
|
733
|
+
|
|
734
|
+
// Teams
|
|
735
|
+
/** @default "Team" */
|
|
736
|
+
TEAM: "Team",
|
|
737
|
+
|
|
738
|
+
/** @default "Teams" */
|
|
739
|
+
TEAMS: "Teams",
|
|
740
|
+
|
|
741
|
+
/** @default "Active" */
|
|
742
|
+
TEAM_ACTIVE: "Active",
|
|
743
|
+
|
|
744
|
+
/** @default "Set Active" */
|
|
745
|
+
TEAM_SET_ACTIVE: "Set Active",
|
|
746
|
+
|
|
747
|
+
/** @default "Create Team" */
|
|
748
|
+
CREATE_TEAM: "Create Team",
|
|
749
|
+
|
|
750
|
+
/** @default "Team created successfully" */
|
|
751
|
+
CREATE_TEAM_SUCCESS: "Team created successfully",
|
|
752
|
+
|
|
753
|
+
/** @default "Update Team" */
|
|
754
|
+
UPDATE_TEAM: "Update Team",
|
|
755
|
+
|
|
756
|
+
/** @default "Update the name for this team" */
|
|
757
|
+
UPDATE_TEAM_DESCRIPTION: "Update the name for this team",
|
|
758
|
+
|
|
759
|
+
/** @default "Are you sure you want to remove this team from the organization?" */
|
|
760
|
+
REMOVE_TEAM_CONFIRM:
|
|
761
|
+
"Are you sure you want to remove this team from the organization?",
|
|
762
|
+
|
|
763
|
+
/** @default "Add new team to your organization." */
|
|
764
|
+
CREATE_TEAM_INSTRUCTIONS: "Add new team to your organization.",
|
|
765
|
+
|
|
766
|
+
/** @default "Team Name" */
|
|
767
|
+
TEAM_NAME: "Team Name",
|
|
768
|
+
|
|
769
|
+
/** @default "Engineering Team" */
|
|
770
|
+
TEAM_NAME_PLACEHOLDER: "Engineering Team",
|
|
771
|
+
|
|
772
|
+
/** @default "This is your team's visible name." */
|
|
773
|
+
TEAM_NAME_DESCRIPTION: "This is your team's visible name.",
|
|
774
|
+
|
|
775
|
+
/** @default "Please use 64 characters at maximum." */
|
|
776
|
+
TEAM_NAME_INSTRUCTIONS: "Please use 64 characters at maximum.",
|
|
777
|
+
|
|
778
|
+
/** @default "Manage your teams within your organization." */
|
|
779
|
+
TEAMS_DESCRIPTION: "Manage your teams within your organization.",
|
|
780
|
+
|
|
781
|
+
/** @default "You are a member of the following teams." */
|
|
782
|
+
USER_TEAMS_DESCRIPTION: "You are a member of the following teams.",
|
|
783
|
+
|
|
784
|
+
/** @default "Delete Team" */
|
|
785
|
+
DELETE_TEAM: "Delete Team",
|
|
786
|
+
|
|
787
|
+
/** @default "Permanently remove this team and all of its contents." */
|
|
788
|
+
DELETE_TEAM_DESCRIPTION:
|
|
789
|
+
"Permanently remove this team and all of its contents.",
|
|
790
|
+
|
|
791
|
+
/** @default "Team deleted successfully" */
|
|
792
|
+
DELETE_TEAM_SUCCESS: "Team deleted successfully",
|
|
793
|
+
|
|
794
|
+
/** @default "Enter the team name to continue:" */
|
|
795
|
+
DELETE_TEAM_INSTRUCTIONS: "Enter the team name to continue:",
|
|
796
|
+
|
|
797
|
+
/** @default "Team name is required" */
|
|
798
|
+
TEAM_NAME_REQUIRED: "Team name is required",
|
|
799
|
+
|
|
800
|
+
/** @default "The team name does not match" */
|
|
801
|
+
TEAM_NAME_DOES_NOT_MATCH: "The team name does not match",
|
|
802
|
+
|
|
803
|
+
/** @default "Team Members" */
|
|
804
|
+
TEAM_MEMBERS: "Team Members",
|
|
805
|
+
|
|
806
|
+
/** @default "Manage your team members and their roles." */
|
|
807
|
+
TEAM_MEMBERS_DESCRIPTION: "Manage your team members and their roles.",
|
|
808
|
+
|
|
809
|
+
/** @default "Add Team Member" */
|
|
810
|
+
ADD_TEAM_MEMBER: "Add Team Member",
|
|
811
|
+
|
|
812
|
+
/** @default "Remove Team Member" */
|
|
813
|
+
REMOVE_TEAM_MEMBER: "Remove Team Member",
|
|
814
|
+
|
|
815
|
+
/** @default "Are you sure you want to remove this member from the team?" */
|
|
816
|
+
REMOVE_TEAM_MEMBER_CONFIRM:
|
|
817
|
+
"Are you sure you want to remove this member from the team?",
|
|
818
|
+
|
|
819
|
+
/** @default "Team member removed successfully" */
|
|
820
|
+
REMOVE_TEAM_MEMBER_SUCCESS: "Team member removed successfully",
|
|
821
|
+
|
|
822
|
+
/** @default "Team member added successfully" */
|
|
823
|
+
ADD_TEAM_MEMBER_SUCCESS: "Team member added successfully",
|
|
824
|
+
|
|
825
|
+
/** @default "Team updated successfully" */
|
|
826
|
+
UPDATE_TEAM_SUCCESS: "Team updated successfully",
|
|
827
|
+
|
|
828
|
+
/** @default "Manage Team Members" */
|
|
829
|
+
MANAGE_TEAM_MEMBERS: "Manage Team Members",
|
|
830
|
+
|
|
831
|
+
/** @default "Search and add organization members to this team." */
|
|
832
|
+
MANAGE_TEAM_MEMBERS_DESCRIPTION:
|
|
833
|
+
"Search and add organization members to this team.",
|
|
834
|
+
|
|
835
|
+
/** @default "No teams found" */
|
|
836
|
+
NO_TEAMS_FOUND: "No teams found",
|
|
837
|
+
|
|
838
|
+
/** @default "member" */
|
|
839
|
+
MEMBER_SINGULAR: "member",
|
|
840
|
+
|
|
841
|
+
/** @default "members" */
|
|
842
|
+
MEMBER_PLURAL: "members",
|
|
843
|
+
|
|
844
|
+
/** @default "Unknown" */
|
|
845
|
+
UNKNOWN: "Unknown",
|
|
846
|
+
|
|
847
|
+
...BASE_ERROR_CODES,
|
|
848
|
+
...ADMIN_ERROR_CODES,
|
|
849
|
+
...ANONYMOUS_ERROR_CODES,
|
|
850
|
+
...API_KEY_ERROR_CODES,
|
|
851
|
+
...CAPTCHA_ERROR_CODES,
|
|
852
|
+
...EMAIL_OTP_ERROR_CODES,
|
|
853
|
+
...GENERIC_OAUTH_ERROR_CODES,
|
|
854
|
+
...HAVEIBEENPWNED_ERROR_CODES,
|
|
855
|
+
...MULTI_SESSION_ERROR_CODES,
|
|
856
|
+
...ORGANIZATION_ERROR_CODES,
|
|
857
|
+
...PASSKEY_ERROR_CODES,
|
|
858
|
+
...PHONE_NUMBER_ERROR_CODES,
|
|
859
|
+
...STRIPE_ERROR_CODES,
|
|
860
|
+
...TEAM_ERROR_CODES,
|
|
861
|
+
...TWO_FACTOR_ERROR_CODES,
|
|
862
|
+
...USERNAME_ERROR_CODES
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
export type AuthLocalization = Partial<typeof authLocalization>
|