@authon/js 0.4.1 → 0.5.0
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/README.ko.md +1 -4
- package/README.md +7 -14
- package/dist/index.cjs +412 -15
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +402 -1
- package/dist/index.d.ts +402 -1
- package/dist/index.js +409 -14
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -157,4 +157,405 @@ declare function getProviderButtonConfig(provider: OAuthProviderType): ProviderB
|
|
|
157
157
|
*/
|
|
158
158
|
declare function generateQrSvg(text: string, moduleSize?: number): string;
|
|
159
159
|
|
|
160
|
-
|
|
160
|
+
type AuthonLocale = keyof typeof translations;
|
|
161
|
+
declare const translations: {
|
|
162
|
+
readonly en: {
|
|
163
|
+
readonly welcomeBack: "Welcome back";
|
|
164
|
+
readonly createAccount: "Create your account";
|
|
165
|
+
readonly alreadyHaveAccount: "Already have an account?";
|
|
166
|
+
readonly dontHaveAccount: "Don't have an account?";
|
|
167
|
+
readonly signIn: "Sign in";
|
|
168
|
+
readonly signUp: "Sign up";
|
|
169
|
+
readonly or: "or";
|
|
170
|
+
readonly emailAddress: "Email address";
|
|
171
|
+
readonly password: "Password";
|
|
172
|
+
readonly passwordHint: "Must contain uppercase, lowercase, and a number (min 8 chars)";
|
|
173
|
+
readonly continueWith: "Continue with";
|
|
174
|
+
readonly connectWallet: "Connect Wallet";
|
|
175
|
+
readonly magicLink: "Continue with Magic Link";
|
|
176
|
+
readonly passkey: "Sign in with Passkey";
|
|
177
|
+
readonly securedBy: "Secured by";
|
|
178
|
+
readonly backToSignIn: "Back to sign in";
|
|
179
|
+
};
|
|
180
|
+
readonly ko: {
|
|
181
|
+
readonly welcomeBack: "다시 오신 걸 환영합니다";
|
|
182
|
+
readonly createAccount: "계정 만들기";
|
|
183
|
+
readonly alreadyHaveAccount: "이미 계정이 있으신가요?";
|
|
184
|
+
readonly dontHaveAccount: "계정이 없으신가요?";
|
|
185
|
+
readonly signIn: "로그인";
|
|
186
|
+
readonly signUp: "회원가입";
|
|
187
|
+
readonly or: "또는";
|
|
188
|
+
readonly emailAddress: "이메일 주소";
|
|
189
|
+
readonly password: "비밀번호";
|
|
190
|
+
readonly passwordHint: "대문자, 소문자, 숫자 포함 (최소 8자)";
|
|
191
|
+
readonly continueWith: "(으)로 계속하기";
|
|
192
|
+
readonly connectWallet: "지갑 연결";
|
|
193
|
+
readonly magicLink: "매직 링크로 계속하기";
|
|
194
|
+
readonly passkey: "패스키로 로그인";
|
|
195
|
+
readonly securedBy: "보안 제공";
|
|
196
|
+
readonly backToSignIn: "로그인으로 돌아가기";
|
|
197
|
+
};
|
|
198
|
+
readonly ja: {
|
|
199
|
+
readonly welcomeBack: "おかえりなさい";
|
|
200
|
+
readonly createAccount: "アカウントを作成";
|
|
201
|
+
readonly alreadyHaveAccount: "すでにアカウントをお持ちですか?";
|
|
202
|
+
readonly dontHaveAccount: "アカウントをお持ちでないですか?";
|
|
203
|
+
readonly signIn: "ログイン";
|
|
204
|
+
readonly signUp: "新規登録";
|
|
205
|
+
readonly or: "または";
|
|
206
|
+
readonly emailAddress: "メールアドレス";
|
|
207
|
+
readonly password: "パスワード";
|
|
208
|
+
readonly passwordHint: "大文字、小文字、数字を含む(8文字以上)";
|
|
209
|
+
readonly continueWith: "で続行";
|
|
210
|
+
readonly connectWallet: "ウォレット接続";
|
|
211
|
+
readonly magicLink: "マジックリンクで続行";
|
|
212
|
+
readonly passkey: "パスキーでログイン";
|
|
213
|
+
readonly securedBy: "セキュリティ提供";
|
|
214
|
+
readonly backToSignIn: "ログインに戻る";
|
|
215
|
+
};
|
|
216
|
+
readonly 'zh-CN': {
|
|
217
|
+
readonly welcomeBack: "欢迎回来";
|
|
218
|
+
readonly createAccount: "创建账户";
|
|
219
|
+
readonly alreadyHaveAccount: "已有账户?";
|
|
220
|
+
readonly dontHaveAccount: "没有账户?";
|
|
221
|
+
readonly signIn: "登录";
|
|
222
|
+
readonly signUp: "注册";
|
|
223
|
+
readonly or: "或";
|
|
224
|
+
readonly emailAddress: "邮箱地址";
|
|
225
|
+
readonly password: "密码";
|
|
226
|
+
readonly passwordHint: "需包含大写、小写字母和数字(至少8位)";
|
|
227
|
+
readonly continueWith: "继续使用";
|
|
228
|
+
readonly connectWallet: "连接钱包";
|
|
229
|
+
readonly magicLink: "使用魔法链接继续";
|
|
230
|
+
readonly passkey: "使用通行密钥登录";
|
|
231
|
+
readonly securedBy: "安全保障";
|
|
232
|
+
readonly backToSignIn: "返回登录";
|
|
233
|
+
};
|
|
234
|
+
readonly 'zh-TW': {
|
|
235
|
+
readonly welcomeBack: "歡迎回來";
|
|
236
|
+
readonly createAccount: "建立帳戶";
|
|
237
|
+
readonly alreadyHaveAccount: "已有帳戶?";
|
|
238
|
+
readonly dontHaveAccount: "沒有帳戶?";
|
|
239
|
+
readonly signIn: "登入";
|
|
240
|
+
readonly signUp: "註冊";
|
|
241
|
+
readonly or: "或";
|
|
242
|
+
readonly emailAddress: "電子郵件";
|
|
243
|
+
readonly password: "密碼";
|
|
244
|
+
readonly passwordHint: "需包含大寫、小寫字母和數字(至少8位)";
|
|
245
|
+
readonly continueWith: "繼續使用";
|
|
246
|
+
readonly connectWallet: "連接錢包";
|
|
247
|
+
readonly magicLink: "使用魔法連結繼續";
|
|
248
|
+
readonly passkey: "使用通行金鑰登入";
|
|
249
|
+
readonly securedBy: "安全保障";
|
|
250
|
+
readonly backToSignIn: "返回登入";
|
|
251
|
+
};
|
|
252
|
+
readonly 'pt-BR': {
|
|
253
|
+
readonly welcomeBack: "Bem-vindo de volta";
|
|
254
|
+
readonly createAccount: "Crie sua conta";
|
|
255
|
+
readonly alreadyHaveAccount: "Ja tem uma conta?";
|
|
256
|
+
readonly dontHaveAccount: "Nao tem uma conta?";
|
|
257
|
+
readonly signIn: "Entrar";
|
|
258
|
+
readonly signUp: "Cadastrar";
|
|
259
|
+
readonly or: "ou";
|
|
260
|
+
readonly emailAddress: "Endereco de e-mail";
|
|
261
|
+
readonly password: "Senha";
|
|
262
|
+
readonly passwordHint: "Deve conter maiusculas, minusculas e numeros (min 8 caracteres)";
|
|
263
|
+
readonly continueWith: "Continuar com";
|
|
264
|
+
readonly connectWallet: "Conectar carteira";
|
|
265
|
+
readonly magicLink: "Continuar com Magic Link";
|
|
266
|
+
readonly passkey: "Entrar com Passkey";
|
|
267
|
+
readonly securedBy: "Protegido por";
|
|
268
|
+
readonly backToSignIn: "Voltar ao login";
|
|
269
|
+
};
|
|
270
|
+
readonly es: {
|
|
271
|
+
readonly welcomeBack: "Bienvenido de nuevo";
|
|
272
|
+
readonly createAccount: "Crea tu cuenta";
|
|
273
|
+
readonly alreadyHaveAccount: "Ya tienes una cuenta?";
|
|
274
|
+
readonly dontHaveAccount: "No tienes una cuenta?";
|
|
275
|
+
readonly signIn: "Iniciar sesion";
|
|
276
|
+
readonly signUp: "Registrarse";
|
|
277
|
+
readonly or: "o";
|
|
278
|
+
readonly emailAddress: "Correo electronico";
|
|
279
|
+
readonly password: "Contrasena";
|
|
280
|
+
readonly passwordHint: "Debe contener mayusculas, minusculas y numeros (min 8 caracteres)";
|
|
281
|
+
readonly continueWith: "Continuar con";
|
|
282
|
+
readonly connectWallet: "Conectar billetera";
|
|
283
|
+
readonly magicLink: "Continuar con Magic Link";
|
|
284
|
+
readonly passkey: "Iniciar con Passkey";
|
|
285
|
+
readonly securedBy: "Protegido por";
|
|
286
|
+
readonly backToSignIn: "Volver al inicio de sesion";
|
|
287
|
+
};
|
|
288
|
+
readonly de: {
|
|
289
|
+
readonly welcomeBack: "Willkommen zuruck";
|
|
290
|
+
readonly createAccount: "Konto erstellen";
|
|
291
|
+
readonly alreadyHaveAccount: "Bereits ein Konto?";
|
|
292
|
+
readonly dontHaveAccount: "Noch kein Konto?";
|
|
293
|
+
readonly signIn: "Anmelden";
|
|
294
|
+
readonly signUp: "Registrieren";
|
|
295
|
+
readonly or: "oder";
|
|
296
|
+
readonly emailAddress: "E-Mail-Adresse";
|
|
297
|
+
readonly password: "Passwort";
|
|
298
|
+
readonly passwordHint: "Gross-/Kleinbuchstaben und Zahl erforderlich (mind. 8 Zeichen)";
|
|
299
|
+
readonly continueWith: "Weiter mit";
|
|
300
|
+
readonly connectWallet: "Wallet verbinden";
|
|
301
|
+
readonly magicLink: "Weiter mit Magic Link";
|
|
302
|
+
readonly passkey: "Mit Passkey anmelden";
|
|
303
|
+
readonly securedBy: "Gesichert durch";
|
|
304
|
+
readonly backToSignIn: "Zuruck zur Anmeldung";
|
|
305
|
+
};
|
|
306
|
+
readonly fr: {
|
|
307
|
+
readonly welcomeBack: "Bon retour";
|
|
308
|
+
readonly createAccount: "Creez votre compte";
|
|
309
|
+
readonly alreadyHaveAccount: "Vous avez deja un compte ?";
|
|
310
|
+
readonly dontHaveAccount: "Vous n'avez pas de compte ?";
|
|
311
|
+
readonly signIn: "Se connecter";
|
|
312
|
+
readonly signUp: "S'inscrire";
|
|
313
|
+
readonly or: "ou";
|
|
314
|
+
readonly emailAddress: "Adresse e-mail";
|
|
315
|
+
readonly password: "Mot de passe";
|
|
316
|
+
readonly passwordHint: "Doit contenir majuscules, minuscules et chiffres (min 8 caracteres)";
|
|
317
|
+
readonly continueWith: "Continuer avec";
|
|
318
|
+
readonly connectWallet: "Connecter le portefeuille";
|
|
319
|
+
readonly magicLink: "Continuer avec Magic Link";
|
|
320
|
+
readonly passkey: "Se connecter avec Passkey";
|
|
321
|
+
readonly securedBy: "Securise par";
|
|
322
|
+
readonly backToSignIn: "Retour a la connexion";
|
|
323
|
+
};
|
|
324
|
+
readonly hi: {
|
|
325
|
+
readonly welcomeBack: "वापसी पर स्वागत है";
|
|
326
|
+
readonly createAccount: "अपना खाता बनाएं";
|
|
327
|
+
readonly alreadyHaveAccount: "पहले से खाता है?";
|
|
328
|
+
readonly dontHaveAccount: "खाता नहीं है?";
|
|
329
|
+
readonly signIn: "साइन इन";
|
|
330
|
+
readonly signUp: "साइन अप";
|
|
331
|
+
readonly or: "या";
|
|
332
|
+
readonly emailAddress: "ईमेल पता";
|
|
333
|
+
readonly password: "पासवर्ड";
|
|
334
|
+
readonly passwordHint: "बड़े, छोटे अक्षर और संख्या आवश्यक (कम से कम 8 अक्षर)";
|
|
335
|
+
readonly continueWith: "से जारी रखें";
|
|
336
|
+
readonly connectWallet: "वॉलेट कनेक्ट करें";
|
|
337
|
+
readonly magicLink: "मैजिक लिंक से जारी रखें";
|
|
338
|
+
readonly passkey: "पासकी से साइन इन";
|
|
339
|
+
readonly securedBy: "सुरक्षा प्रदाता";
|
|
340
|
+
readonly backToSignIn: "साइन इन पर वापस जाएं";
|
|
341
|
+
};
|
|
342
|
+
readonly tr: {
|
|
343
|
+
readonly welcomeBack: "Tekrar hos geldiniz";
|
|
344
|
+
readonly createAccount: "Hesap olusturun";
|
|
345
|
+
readonly alreadyHaveAccount: "Zaten bir hesabiniz var mi?";
|
|
346
|
+
readonly dontHaveAccount: "Hesabiniz yok mu?";
|
|
347
|
+
readonly signIn: "Giris yap";
|
|
348
|
+
readonly signUp: "Kaydol";
|
|
349
|
+
readonly or: "veya";
|
|
350
|
+
readonly emailAddress: "E-posta adresi";
|
|
351
|
+
readonly password: "Sifre";
|
|
352
|
+
readonly passwordHint: "Buyuk, kucuk harf ve rakam icermeli (en az 8 karakter)";
|
|
353
|
+
readonly continueWith: "ile devam et";
|
|
354
|
+
readonly connectWallet: "Cuzdan bagla";
|
|
355
|
+
readonly magicLink: "Magic Link ile devam et";
|
|
356
|
+
readonly passkey: "Passkey ile giris yap";
|
|
357
|
+
readonly securedBy: "Guvenlik saglayici";
|
|
358
|
+
readonly backToSignIn: "Girise don";
|
|
359
|
+
};
|
|
360
|
+
readonly id: {
|
|
361
|
+
readonly welcomeBack: "Selamat datang kembali";
|
|
362
|
+
readonly createAccount: "Buat akun Anda";
|
|
363
|
+
readonly alreadyHaveAccount: "Sudah punya akun?";
|
|
364
|
+
readonly dontHaveAccount: "Belum punya akun?";
|
|
365
|
+
readonly signIn: "Masuk";
|
|
366
|
+
readonly signUp: "Daftar";
|
|
367
|
+
readonly or: "atau";
|
|
368
|
+
readonly emailAddress: "Alamat email";
|
|
369
|
+
readonly password: "Kata sandi";
|
|
370
|
+
readonly passwordHint: "Harus mengandung huruf besar, kecil, dan angka (min 8 karakter)";
|
|
371
|
+
readonly continueWith: "Lanjutkan dengan";
|
|
372
|
+
readonly connectWallet: "Hubungkan dompet";
|
|
373
|
+
readonly magicLink: "Lanjutkan dengan Magic Link";
|
|
374
|
+
readonly passkey: "Masuk dengan Passkey";
|
|
375
|
+
readonly securedBy: "Diamankan oleh";
|
|
376
|
+
readonly backToSignIn: "Kembali ke login";
|
|
377
|
+
};
|
|
378
|
+
readonly vi: {
|
|
379
|
+
readonly welcomeBack: "Chao mung tro lai";
|
|
380
|
+
readonly createAccount: "Tao tai khoan";
|
|
381
|
+
readonly alreadyHaveAccount: "Da co tai khoan?";
|
|
382
|
+
readonly dontHaveAccount: "Chua co tai khoan?";
|
|
383
|
+
readonly signIn: "Dang nhap";
|
|
384
|
+
readonly signUp: "Dang ky";
|
|
385
|
+
readonly or: "hoac";
|
|
386
|
+
readonly emailAddress: "Dia chi email";
|
|
387
|
+
readonly password: "Mat khau";
|
|
388
|
+
readonly passwordHint: "Can chu hoa, chu thuong va so (toi thieu 8 ky tu)";
|
|
389
|
+
readonly continueWith: "Tiep tuc voi";
|
|
390
|
+
readonly connectWallet: "Ket noi vi";
|
|
391
|
+
readonly magicLink: "Tiep tuc voi Magic Link";
|
|
392
|
+
readonly passkey: "Dang nhap voi Passkey";
|
|
393
|
+
readonly securedBy: "Bao mat boi";
|
|
394
|
+
readonly backToSignIn: "Quay lai dang nhap";
|
|
395
|
+
};
|
|
396
|
+
readonly th: {
|
|
397
|
+
readonly welcomeBack: "ยินดีต้อนรับกลับ";
|
|
398
|
+
readonly createAccount: "สร้างบัญชี";
|
|
399
|
+
readonly alreadyHaveAccount: "มีบัญชีอยู่แล้ว?";
|
|
400
|
+
readonly dontHaveAccount: "ยังไม่มีบัญชี?";
|
|
401
|
+
readonly signIn: "เข้าสู่ระบบ";
|
|
402
|
+
readonly signUp: "สมัครสมาชิก";
|
|
403
|
+
readonly or: "หรือ";
|
|
404
|
+
readonly emailAddress: "อีเมล";
|
|
405
|
+
readonly password: "รหัสผ่าน";
|
|
406
|
+
readonly passwordHint: "ต้องมีตัวพิมพ์ใหญ่ ตัวพิมพ์เล็ก และตัวเลข (อย่างน้อย 8 ตัว)";
|
|
407
|
+
readonly continueWith: "ดำเนินการต่อด้วย";
|
|
408
|
+
readonly connectWallet: "เชื่อมต่อกระเป๋า";
|
|
409
|
+
readonly magicLink: "ดำเนินการต่อด้วย Magic Link";
|
|
410
|
+
readonly passkey: "เข้าสู่ระบบด้วย Passkey";
|
|
411
|
+
readonly securedBy: "รักษาความปลอดภัยโดย";
|
|
412
|
+
readonly backToSignIn: "กลับไปเข้าสู่ระบบ";
|
|
413
|
+
};
|
|
414
|
+
readonly ru: {
|
|
415
|
+
readonly welcomeBack: "С возвращением";
|
|
416
|
+
readonly createAccount: "Создайте аккаунт";
|
|
417
|
+
readonly alreadyHaveAccount: "Уже есть аккаунт?";
|
|
418
|
+
readonly dontHaveAccount: "Нет аккаунта?";
|
|
419
|
+
readonly signIn: "Войти";
|
|
420
|
+
readonly signUp: "Зарегистрироваться";
|
|
421
|
+
readonly or: "или";
|
|
422
|
+
readonly emailAddress: "Электронная почта";
|
|
423
|
+
readonly password: "Пароль";
|
|
424
|
+
readonly passwordHint: "Заглавные, строчные буквы и цифры (мин. 8 символов)";
|
|
425
|
+
readonly continueWith: "Продолжить с";
|
|
426
|
+
readonly connectWallet: "Подключить кошелек";
|
|
427
|
+
readonly magicLink: "Продолжить с Magic Link";
|
|
428
|
+
readonly passkey: "Войти с Passkey";
|
|
429
|
+
readonly securedBy: "Защищено";
|
|
430
|
+
readonly backToSignIn: "Вернуться к входу";
|
|
431
|
+
};
|
|
432
|
+
readonly it: {
|
|
433
|
+
readonly welcomeBack: "Bentornato";
|
|
434
|
+
readonly createAccount: "Crea il tuo account";
|
|
435
|
+
readonly alreadyHaveAccount: "Hai gia un account?";
|
|
436
|
+
readonly dontHaveAccount: "Non hai un account?";
|
|
437
|
+
readonly signIn: "Accedi";
|
|
438
|
+
readonly signUp: "Registrati";
|
|
439
|
+
readonly or: "o";
|
|
440
|
+
readonly emailAddress: "Indirizzo email";
|
|
441
|
+
readonly password: "Password";
|
|
442
|
+
readonly passwordHint: "Deve contenere maiuscole, minuscole e numeri (min 8 caratteri)";
|
|
443
|
+
readonly continueWith: "Continua con";
|
|
444
|
+
readonly connectWallet: "Connetti portafoglio";
|
|
445
|
+
readonly magicLink: "Continua con Magic Link";
|
|
446
|
+
readonly passkey: "Accedi con Passkey";
|
|
447
|
+
readonly securedBy: "Protetto da";
|
|
448
|
+
readonly backToSignIn: "Torna all'accesso";
|
|
449
|
+
};
|
|
450
|
+
readonly pl: {
|
|
451
|
+
readonly welcomeBack: "Witaj ponownie";
|
|
452
|
+
readonly createAccount: "Utworz konto";
|
|
453
|
+
readonly alreadyHaveAccount: "Masz juz konto?";
|
|
454
|
+
readonly dontHaveAccount: "Nie masz konta?";
|
|
455
|
+
readonly signIn: "Zaloguj sie";
|
|
456
|
+
readonly signUp: "Zarejestruj sie";
|
|
457
|
+
readonly or: "lub";
|
|
458
|
+
readonly emailAddress: "Adres e-mail";
|
|
459
|
+
readonly password: "Haslo";
|
|
460
|
+
readonly passwordHint: "Wielkie, male litery i cyfry (min 8 znakow)";
|
|
461
|
+
readonly continueWith: "Kontynuuj z";
|
|
462
|
+
readonly connectWallet: "Polacz portfel";
|
|
463
|
+
readonly magicLink: "Kontynuuj z Magic Link";
|
|
464
|
+
readonly passkey: "Zaloguj sie z Passkey";
|
|
465
|
+
readonly securedBy: "Zabezpieczone przez";
|
|
466
|
+
readonly backToSignIn: "Powrot do logowania";
|
|
467
|
+
};
|
|
468
|
+
readonly nl: {
|
|
469
|
+
readonly welcomeBack: "Welkom terug";
|
|
470
|
+
readonly createAccount: "Maak je account aan";
|
|
471
|
+
readonly alreadyHaveAccount: "Heb je al een account?";
|
|
472
|
+
readonly dontHaveAccount: "Nog geen account?";
|
|
473
|
+
readonly signIn: "Inloggen";
|
|
474
|
+
readonly signUp: "Registreren";
|
|
475
|
+
readonly or: "of";
|
|
476
|
+
readonly emailAddress: "E-mailadres";
|
|
477
|
+
readonly password: "Wachtwoord";
|
|
478
|
+
readonly passwordHint: "Hoofdletters, kleine letters en cijfers vereist (min 8 tekens)";
|
|
479
|
+
readonly continueWith: "Doorgaan met";
|
|
480
|
+
readonly connectWallet: "Portemonnee verbinden";
|
|
481
|
+
readonly magicLink: "Doorgaan met Magic Link";
|
|
482
|
+
readonly passkey: "Inloggen met Passkey";
|
|
483
|
+
readonly securedBy: "Beveiligd door";
|
|
484
|
+
readonly backToSignIn: "Terug naar inloggen";
|
|
485
|
+
};
|
|
486
|
+
readonly ar: {
|
|
487
|
+
readonly welcomeBack: "مرحبًا بعودتك";
|
|
488
|
+
readonly createAccount: "أنشئ حسابك";
|
|
489
|
+
readonly alreadyHaveAccount: "لديك حساب بالفعل؟";
|
|
490
|
+
readonly dontHaveAccount: "ليس لديك حساب؟";
|
|
491
|
+
readonly signIn: "تسجيل الدخول";
|
|
492
|
+
readonly signUp: "إنشاء حساب";
|
|
493
|
+
readonly or: "أو";
|
|
494
|
+
readonly emailAddress: "البريد الإلكتروني";
|
|
495
|
+
readonly password: "كلمة المرور";
|
|
496
|
+
readonly passwordHint: "يجب أن تحتوي على أحرف كبيرة وصغيرة وأرقام (8 أحرف على الأقل)";
|
|
497
|
+
readonly continueWith: "المتابعة باستخدام";
|
|
498
|
+
readonly connectWallet: "ربط المحفظة";
|
|
499
|
+
readonly magicLink: "المتابعة باستخدام Magic Link";
|
|
500
|
+
readonly passkey: "تسجيل الدخول باستخدام Passkey";
|
|
501
|
+
readonly securedBy: "محمي بواسطة";
|
|
502
|
+
readonly backToSignIn: "العودة لتسجيل الدخول";
|
|
503
|
+
};
|
|
504
|
+
readonly sv: {
|
|
505
|
+
readonly welcomeBack: "Valkommen tillbaka";
|
|
506
|
+
readonly createAccount: "Skapa ditt konto";
|
|
507
|
+
readonly alreadyHaveAccount: "Har du redan ett konto?";
|
|
508
|
+
readonly dontHaveAccount: "Har du inget konto?";
|
|
509
|
+
readonly signIn: "Logga in";
|
|
510
|
+
readonly signUp: "Registrera dig";
|
|
511
|
+
readonly or: "eller";
|
|
512
|
+
readonly emailAddress: "E-postadress";
|
|
513
|
+
readonly password: "Losenord";
|
|
514
|
+
readonly passwordHint: "Stora, sma bokstaver och siffror kravs (minst 8 tecken)";
|
|
515
|
+
readonly continueWith: "Fortsatt med";
|
|
516
|
+
readonly connectWallet: "Anslut planbok";
|
|
517
|
+
readonly magicLink: "Fortsatt med Magic Link";
|
|
518
|
+
readonly passkey: "Logga in med Passkey";
|
|
519
|
+
readonly securedBy: "Sakrad av";
|
|
520
|
+
readonly backToSignIn: "Tillbaka till inloggning";
|
|
521
|
+
};
|
|
522
|
+
readonly uk: {
|
|
523
|
+
readonly welcomeBack: "З поверненням";
|
|
524
|
+
readonly createAccount: "Створіть обліковий запис";
|
|
525
|
+
readonly alreadyHaveAccount: "Вже є обліковий запис?";
|
|
526
|
+
readonly dontHaveAccount: "Немає облікового запису?";
|
|
527
|
+
readonly signIn: "Увійти";
|
|
528
|
+
readonly signUp: "Зареєструватися";
|
|
529
|
+
readonly or: "або";
|
|
530
|
+
readonly emailAddress: "Електронна пошта";
|
|
531
|
+
readonly password: "Пароль";
|
|
532
|
+
readonly passwordHint: "Великі, малі літери та цифри (мін. 8 символів)";
|
|
533
|
+
readonly continueWith: "Продовжити з";
|
|
534
|
+
readonly connectWallet: "Підключити гаманець";
|
|
535
|
+
readonly magicLink: "Продовжити з Magic Link";
|
|
536
|
+
readonly passkey: "Увійти з Passkey";
|
|
537
|
+
readonly securedBy: "Захищено";
|
|
538
|
+
readonly backToSignIn: "Повернутися до входу";
|
|
539
|
+
};
|
|
540
|
+
};
|
|
541
|
+
interface TranslationStrings {
|
|
542
|
+
welcomeBack: string;
|
|
543
|
+
createAccount: string;
|
|
544
|
+
alreadyHaveAccount: string;
|
|
545
|
+
dontHaveAccount: string;
|
|
546
|
+
signIn: string;
|
|
547
|
+
signUp: string;
|
|
548
|
+
or: string;
|
|
549
|
+
emailAddress: string;
|
|
550
|
+
password: string;
|
|
551
|
+
passwordHint: string;
|
|
552
|
+
continueWith: string;
|
|
553
|
+
connectWallet: string;
|
|
554
|
+
magicLink: string;
|
|
555
|
+
passkey: string;
|
|
556
|
+
securedBy: string;
|
|
557
|
+
backToSignIn: string;
|
|
558
|
+
}
|
|
559
|
+
declare function getStrings(locale: string): TranslationStrings;
|
|
560
|
+
|
|
561
|
+
export { Authon, type AuthonConfig, type AuthonEventType, type AuthonEvents, type AuthonLocale, AuthonMfaRequiredError, type OAuthFlowMode, type OAuthSignInOptions, type ProviderButtonConfig, generateQrSvg, getProviderButtonConfig, getStrings, translations };
|