-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathen.json
1606 lines (1606 loc) · 62.7 KB
/
en.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"common": {
"no_more": "No More",
"no_data": "No Data",
"default_device_name": "Mobile Device",
"goto": "Go to",
"btn": "JoyID Wallet",
"testnet-warning": "JoyID Testnet. Please do not deposit mainnet assets."
},
"confirm_dialog": {
"confirm": "Confirm",
"cancel": "Cancel"
},
"evm-web2-login": {
"request-auth": "Request user authentication",
"confirm": "Confirm",
"cancel": "Cancel"
},
"request-add-network": {
"title": "Allow this application to add a network?",
"desc": "This will add an unknown network to JoyID. Please confirm its security before using it.",
"cancel": "Cancel",
"approve": "Approve"
},
"add-erc20": {
"import-token": "Import Token",
"search": "Search Token",
"not-found": "Don't see your token?",
"title": "You're importing a token to this Network",
"warning": "🚨 Warning",
"warning-desc": "Make sure you trust a token before you import it.",
"ca": "Token Contract Address",
"symbol": "Token Symbol",
"decimal": "Token Decimal",
"cancel": "Cancel",
"next": "Next",
"placeholder": "Enter or paste contract address",
"errors": {
"invalid-address": "Invalid address",
"duplicated": "Duplicated contract address",
"ca-required": "Contract address is required"
},
"confirm": {
"title": "Would you like to import this token?",
"token": "Token",
"balance": "Your balance",
"network": "Belong to Network",
"back": "Back",
"import": "Import"
}
},
"add-evm-network": {
"title": "Add EVM Network",
"warning": "🚨 Warning",
"warning-desc": "A malicious network provider can lie about the state of the blockchain and record your network activity. Only add custom networks you trust.",
"network-name": "Network Name",
"network-rpc": "Network RPC URL",
"chain-id": "Chain ID",
"symbol": "Currency Symbol",
"explorer-url": "Block Explorer URL (Optional)",
"block-explorer": "Block Explorer URL",
"cancel": "Cancel",
"add": "Add",
"dapp": {
"title": "Allow this application to add a network?",
"desc": "This will add an unknown network to JoyID. Please confirm its security before using it."
},
"errors": {
"invalid-url": "URLs require the appropriate HTTP/HTTPS prefix.",
"invalid-rpc": "Could not fetch chain ID. Is your RPC URL correct?",
"duplicated": "This chain ID is currently used by the {{networkName}} network.",
"name-too-long": "Network name should be less than 24 characters.",
"name-required": "Network name is required.",
"rpc-required": "RPC URL is required."
},
"added-dialog": {
"title": "Successfully!",
"desc": "Network added successfully!",
"btn": "Switch to {{network}}"
},
"delete-dialog": {
"title": "Delete {{network}} network?",
"desc": "If you delete this network, you will need to add it again to view your assets in this network",
"btn": "Delete"
}
},
"exchange": {
"title": "Instant Swap",
"powered-by": "Powered by <a>{{ url }}</a>",
"dialog": {
"title": "👏 Instant Swap",
"desc": "Welcome to Instant Swap portal, you can access the following features:",
"list-1": "Fiat-on-ramp, to change your fiat into crypto assets",
"list-2": "Swap cross-chain assets with one-click",
"summary": "This service is presented by <a>{{ url }}</a>",
"btn": "Copy Address & Next"
}
},
"copier": {
"copy": "Copy",
"copied": "Copied",
"copy_url": "Copy URL",
"copy_to_clipboard": "Copy to Clipboard"
},
"qrcode-scanner": {
"title": "Scan",
"connect": "Connect",
"wc_placeholder": "e.g. wc:a281567bb3e4...",
"wc_url_invalid": "Invalid WalletConnect URI",
"wc_tips": "Or use WalletConnect URI"
},
"wallet-connect": {
"walletconnect": "Wallet Connect",
"connecting": "Connecting...",
"connect_fail": "Connection Failed. Please try again.",
"wc_link_error": "Please refresh current page or go back DApp to connect again",
"refresh_qr_code": "Refresh QR code and try again",
"back": "Back",
"back_home": "Back home",
"approve": "Approve",
"reject": "Reject",
"authorize": "Authorize to connect",
"disconnect": "disconnect",
"sign_in": "Sign request from ",
"signing": "You are signing for",
"message": "Messages",
"cancel": "Cancel",
"confirm": "Confirm",
"typed_data": "typed data",
"transaction": "transaction",
"user_reject": "User rejected.",
"chain_not_supported": "The blockchain is not supported",
"connect-joyid": "Request to connect to your JoyID wallet",
"auth_description1": "This application will be able to view your address",
"auth_description2": "This application is not owned or operated by JoyID",
"auth_description3": "This application cannot transfer your assets without your authorization",
"disconnect_wc": "Disconnect wallet connect",
"disconnect_wc_description": "Are you sure you want to disconnect: <b>{{dapp}}</b>?",
"method_not_supported": " is not currently supported, please turn to our support for more information.",
"wc_gas_not_enough": "Insufficient fund to pay gas fee"
},
"device_modal": {
"title": "Set Device Name",
"edit-title": "Edit Device Name",
"label": "Please enter Device Name",
"error": "Only alphanumeric characters and spaces are allowed.",
"success": "Successfully set!",
"save": "Save",
"close_confirm": {
"title": "\uD83E\uDD14️",
"description": "You have unsaved edits",
"save_it": "Save it",
"do_not_save": "Don't save"
}
},
"username_modal": {
"title": "Set Account Name",
"edit-title": "Edit Account Name",
"label": "Please enter new name",
"error": "Only alphanumeric characters and spaces are allowed.",
"success": "Successfully set!",
"save": "Save",
"close_confirm": {
"title": "\uD83E\uDD14️",
"description": "You have unsaved edits",
"save_it": "Save it",
"do_not_save": "Don't save"
}
},
"pwa": {
"auto-update": "New version detected, will update automatically.",
"toast": {
"title": "Install JoyID wallet to your home screen!",
"desc": "Access your wallet in one-click\nSupport offline signing",
"dont-remind": "Don't remind me again",
"use-web": "Use web version",
"install": "Install"
},
"a2hs": "Install to home screen",
"ios": {
"title": "Install JoyID Wallet on iOS",
"step-1": "1. Click this at toolbar",
"step-2": "2. Click “Add to Home Screen”"
}
},
"new-key": {
"navbar": "Authorize via another device",
"title": "Use another device",
"desc": "Scan this QR code or open the URL from\nanother device to sign in",
"copy-url": "Copy URL",
"fingerprint": "QR code fingerprint: ",
"refresh": "Refresh",
"qrcode-expired": "The QR code\nhas expired",
"already-logged-in": "You have logged in to this account on the device awaiting authorization.",
"confirm": "OK",
"success-desc": "You have logged in to this account on the device awaiting authorization.",
"success-title": "Authorize successfully",
"login-title": "Generate QR code for Authorization"
},
"login": {
"title": "Recover account with address",
"enter": "Please enter your",
"enter_username_or_address": "JoyID CKB address",
"placeholder": "CKB address",
"errors": {
"invalid": "This JoyID is invalid",
"not-found": "Sorry, this JoyID does not exist",
"recover_failed": "JoyID account not found in this device"
},
"invalid_username": "Invalid username",
"invalid_address": "Invalid CKB address format",
"no_data": "JoyID account not found",
"next": "Continue",
"login": "Switch",
"confirm_login": "This account is already logged in.",
"please-signin": "Please sign in your JoyID"
},
"edit_profile": {
"title": "Edit profile",
"avatar_description": "We recommend an image of at least 800x800px.",
"username_field": "Username",
"description_field": "Bio",
"submit": "Submit",
"done": "Done",
"save": "Save",
"edit": "Edit",
"update_succeeded": "Update successful!",
"file_too_large": "File size is limited to {{size}}",
"wrong-image-format": "Only supports upload png, jpeg, jpg, gif, svg, webp format images for now",
"validate": {
"name": {
"invalid": "This Username is invalid"
}
}
},
"auth-drawer": {
"btn": "System authorization",
"title": "<span>\uD83D\uDC4B Hi~</span>{{welcome}}",
"welcome": "<br/>Welcome to the passwordless future",
"description": "Create and sign in your JoyID",
"footer_description": "Using biometrics recognition fingerprint/face"
},
"add-new-device": {
"title": "Generate New Device Key",
"desc": "Generate credential and use previous device to authorize it. Then, you can quickly and securely sign in this account on this device.",
"generate": "Generate",
"generated": {
"title": "Waiting authorizing",
"fingerprint": "Key fingerprint",
"btn": "Key Generated",
"desc-1": "Please proceed to authorize on your previous device.",
"desc-2": "Do not close this page until you have finished authorizing."
},
"finderprint": "Key Fingerprint:",
"current-device": "Current Device",
"proceed": "Please proceed to authorize on your previous device.",
"errors": {
"remote-not-online": "The previous device has been detected as offline. Please restart the authorization process."
}
},
"windows-not-supported": {
"title": "Important Notice",
"discontinued": "JoylD Discontinued on Windows",
"create-new-account": "Create new account",
"create-new-account-desc": "Due to Windows' limited support for Passkey technology, we <b>no longer support creating new accounts on Windows devices or add Windows devices as backups</b>. Please use other device instead.",
"existing-user": "For existing account",
"existing-user-desc": "To ensure the security of your assets, please log in to your account and <b>add additional backup devices as soon as possible</b>. You can use other devices for future logins.",
"thank-you": "Thank you for your\nunderstanding and cooperation.",
"confirm": "Confirm"
},
"add-device-modal": {
"title": "Add New Device",
"desc": "Scan from your new device and generate a key.",
"step_title": "Scan From New Device",
"warning-tilte": "Warning",
"warning-desc": "Please do not close this page or turn off your screen until the new device has been successfully added.",
"step": {
"1": "Open the camera on your new device to scan this QR code.",
"2": "Generate a key on your new device using your biometric sensor.",
"3": "Use your current device to authorize it."
}
},
"auth-button": {
"continue": "Continue"
},
"home": {
"next": "Next",
"login": "I already have JoyID",
"new": "Create New JoyID",
"add-other": "Use other JoyID",
"select": "Select the JoyID to Login",
"recover": "Recover my JoyID through friends"
},
"profile": {
"social_recovery": "Social Recovery",
"devices": "Devices"
},
"activity": {
"title": "Activity",
"send-nft": "Send DOBs",
"send-ckb": "Send CKB",
"receive-ckb": "Receive CKB",
"receive-nft": "Receive DOBs",
"add-device": "Add Device",
"delete-device": "Remove Temporary sign-in Environment",
"add-temp": "Add Temporary sign-in Environment",
"register-cota": "Register CoTA Cell",
"pending": "Pending",
"register": "Sign up",
"transaction": "Transaction",
"completed": "Completed",
"btc": "BTC",
"rgbpp_assets": "RGB++ Assets",
"bitcoin": {
"bitcoin_tx": "Bitcoin TX",
"isomorphic_tx": "Isomorphic TX",
"unlock_tx": "Unlock TX"
}
},
"send-nft": {
"title": "Send DOBs",
"send-to": "Send to",
"fee": "Fee",
"ckb-address": "CKB address or .bit DID",
"send": "Send",
"confirm": "Confirm",
"invalid_address": "Invalid CKB address format",
"transfer_success": "Sent successfully",
"errors": {
"send_to_self": "You cannot send a DOBs to yourself",
"invalid_address": "Invalid CKB address format",
"wait-for-confirmation": "Please wait for the previous transaction to complete before initiating the next one."
}
},
"setting": {
"nostr-key": "Nostr key",
"a2hs": "Install to Home Screen",
"title": "Setting",
"social_recovery": "Recovery",
"faqs": "FAQs",
"activity": "Activity",
"devices": "Security",
"accounts": "Manage Accounts",
"edit_profile": "Profile",
"logout": "Logout",
"not_set": "Not set",
"my_joyid": "JoyID Card",
"language": "Language",
"coming-soon": "Coming soon",
"jpoints": {
"title": "Total Jpoints Earned",
"earn": "Earn"
}
},
"language": {
"title": "Language",
"languages": {
"zh-CN": "中文简体",
"zh-TW": "中文繁体",
"en": "English",
"de": "Deutsch (Schweiz)",
"fr": "Français",
"es": "Español",
"ja": "日本语",
"it": "Italiano",
"ar": "العربية"
}
},
"accounts": {
"title": "Manage Accounts",
"other_account": "Use other JoyID",
"login": "Login existing JoyID"
},
"device": {
"title": "Device",
"revoke": "Revoke",
"mainkey-revoke": "Revoking the first Key will be supported in future months",
"sync-browser": "Sync across browsers",
"sync-device": "Sync across devices",
"trusted-device": {
"title": "Trusted Device",
"desc": "Where you can log in current account with Passkey"
},
"dialog": {
"title": "Revoke the Key",
"desc": "Devices using this key for login will be automatically logged out and can't use this key for future access once it's revoked.",
"delete": "Revoke",
"cancel": "Cancel"
}
},
"passkey": {
"alert": {
"passkey": "Your passkey is protected by biometrics and can never be obtained by Google, iCloud, or JoyID.",
"none": "Save your 👉 <a>address</a> for future log-in. <b>Why?</b>"
},
"none": {
"type": "Non-Passkey",
"detail": "This key can only be used in the device's specific browser that created them. <a>Learn more</a>"
},
"apple": {
"type": "Passkey",
"detail": "This key syncs via iCloud and can be used on Apple devices signed in with the same Apple ID. <a>Learn more</a>"
},
"google": {
"type": "Passkey",
"detail": "This Passkey syncs via Google and can be used on other Android device signed in with the same Google Account. <a>Learn more</a>"
},
"custom": {
"type": "Passkey",
"detail": "This key syncs via {{provider}} and can be used on any devices signed in with the same {{provider}} account."
},
"windows-device-bound": {
"type": "Device-bound Passkey",
"detail": "This key can only be used on the device that created them. <a>Learn more</a>"
},
"apple-device-bound": {
"type": "Device-bound Passkey",
"detail": "This key can only be used on the device that created them.. <a>Learn more</a>"
}
},
"devices": {
"did": "Use DID",
"update-did": "Update DID",
"no-did": "No DID found",
"did-updated": "Update DID successfully",
"title": "Security",
"pending": "Pending",
"delete_main_key_warning": "Deleting the first registered device is not currently supported",
"webauthn_title": "Trusted Devices",
"webauthn_desc": "Sign in and manage your account with the keys below. <a>Learn more</a>",
"session_title": "Temporary sign-in Environment",
"session_desc": "Where you can sign in temporarily without biometrics",
"delete_account": "Logout account",
"delete_account_description": "Are you sure you want to logout account: <b>{{username}}</b>?",
"page_description": "Where you can sign in from",
"mobile_device": "Mobile Device",
"passkey_warning": "Please <b>never modify the key name</b> of Passkey, as doing so may result in a loss of access.",
"current_device": "Current Device",
"edit": "Edit",
"expired-at": "Expired at:",
"on-chain-from": "On-chain from:",
"delete": "Delete",
"logout": "Logout",
"google_connection": {
"title": "Google service is not available",
"desc": "Your Passkey may not be successfully synced. Please add another device to backup your account.",
"btn": "Understood"
},
"dialog": {
"title": "Delete Authorized Environment",
"desc": "The next time you log in in this environment, you need to restart a new sign-in",
"delete": "Delete",
"cancel": "Cancel"
}
},
"recover-methods": {
"title": "Recovery Methods",
"desc": "Please add at least one in case your authorized devices are all lost",
"passkey": {
"title": "Passkey",
"desc": "A key synced via iCloud or Google Drive"
},
"mnemonic": {
"title": "Secret Recovery Phrase",
"desc": "Enter or generate a new recovery phrase"
},
"security-key": {
"title": "Security Key",
"desc": "An external authenticator that can store a passkey."
},
"no-passkey-dialog": {
"title": "Add Passkey Recovery",
"desc": "Add a device that supports <a>passkey synchronization.</a>"
},
"enable-passkey-dialog": {
"title": "Recover from Passkey",
"desc": "You can use another device that shares the same iCloud or Google account to recover your JoyID"
}
},
"register": {
"title": "Create New JoyID",
"label": "Please enter your username",
"start": "Let’s start by choosing your",
"username": "JoyID username",
"placeholder": "Please enter your username",
"conditions": {
"alphanumeric": "Need to contain 4-16 numbers or letters",
"space": "Cannot contain space"
},
"next": "Continue",
"login": "I already have JoyID to login"
},
"no-support": {
"title": "JoyID is not supported in\ncurrent browser",
"desc": "Please try again with",
"link": "recommended browsers"
},
"register-success": {
"title": "🎉Congratulations!",
"desc": "Your new JoyID has been created.",
"address": "Address",
"long-press": " Please long press to save your JoyID card",
"or": "Or",
"later": "You will need this later to sign in another device",
"copy": "Copy to clipboard",
"copied": "Copied",
"no_account_available": "No account available",
"other-stuff": "You will need it later to sign in\nanother device or add social recovery.",
"continue": "Continue to",
"confirm": "Sign in",
"device_name": {
"title": "Set Device Name",
"desc": "You can also edit it later in app.joyid.dev"
}
},
"add-joyid-drawer": {
"title": "Log in with",
"login": "Log in JoyID",
"new": "New JoyID"
},
"webview-guide": {
"title": "Please open this page \nin your browser"
},
"fingerprint": {
"check": "Check the fingerprint"
},
"remote-auth": {
"title": "Proceed on your mobile device",
"desc": "Scan the QR code with the built-in camera app"
},
"nostr": {
"title": "Nostr key",
"pubkey": "Nostr Public key",
"privkey": "Nostr Private key",
"reveal": "Reveal private key"
},
"auth": {
"sign-in": "Sign in {{title}}",
"sign-in-desc": "<b>{{host}}</b>",
"signing": "You are signing for",
"messages": "Messages:",
"warning": "ou are authorizing this operation from the web",
"cancel": "Cancel",
"confirm": "Confirm",
"qrcode": "Please confirm the fingerprint\nmatches the QR code description.",
"generate_btc_wallet": "Generate BTC Wallet",
"add_btc_wallet": "Add BTC Wallet",
"create_btc_wallet_tips": "Before proceed, please generate your BTC wallet first",
"btc_wallet_generated": "BTC wallet generated! \nPlease add your wallet before proceeding. "
},
"sign-message": {
"sign": "Sign Request from {{title}}",
"warning": "ou are authorizing this operation from the web.",
"signing": "Your are signing for",
"messages": "Messages:",
"logged-out": "You have been logged out. Please sign in again.",
"sign-in": "Sign in",
"reject": "Reject",
"confirm": "Confirm",
"to": "To",
"amount": "Amount",
"fee": "Fee",
"total": "Total",
"upgrade-account": "The first time you send DOBs, it’s required to upgrade account. ",
"upgrade-now": "Upgrade now",
"errors": {
"send_to_self": "You cannot send CKB to yourself",
"invalid_address": "Invalid CKB address format",
"minimum_amount": "Depending on the recipient's address, the minimum sending amount is {{amount}} CKB",
"invalid_amount": "Invalid amount",
"insufficient_balance": "Insufficient balance",
"send_nft_to_self": "You cannot send DOBs to yourself",
"token_not_found": "The DOBs does not belong to the current address",
"cota_cell_not_found": "The CoTA cell not found",
"invalid_token_key": "Invalid token key",
"other_error": "The request timed out. Please try again later."
}
},
"qrcode-expired": {
"title": "QR code expired",
"desc": "Please scan the latest\nQR code"
},
"auth-success": {
"title": "🎉 Authorization successful!",
"goto": "Go to",
"btn": "JoyID Wallet"
},
"add-subkey-success": {
"title": "\uD83D\uDCF1New device authorized.",
"mobile_device": "<strong>{{device_name}}</strong>",
"goto": "Go to",
"btn": "JoyID Wallet",
"confirm": "Confirm"
},
"auth-subkey": {
"modal": {
"title": "Previous Device Authorization",
"sub-title": "Scan with build-in camera app or open the link\nbelow with the device that can sign in JoyID",
"copy": "Copy to clipboard",
"copied": "Copied successfully",
"desc": "Authorize New Device",
"completed": "Completed authorization",
"fingerprint": "Please confirm QR code fingerprint:"
},
"title": "<strong>Authenticate</strong> new device",
"description": "Do not scan unknown QR codes for authentication, otherwise you may lose your JoyID ",
"cancel": "Cancel",
"confirm": "Next",
"allow": "Allow this new device to",
"full-control": "Fully control my assets",
"manage-account": "Manage my account for any further actions",
"fingerprint": "Key fingerprint:",
"success": "Authorize successful!",
"go-back": "Go Back",
"no-camera-err": "No camera found",
"camera-auth-err": "No camera permission, please refresh the page to re-authorize",
"no-data-err": "No relevant data found, please rescan",
"fido-err": "This is a FIDO QR code, please use the build-in camera app to scan it",
"permission-err": "You don't have permission to authorize with this JoyID",
"confirm-title": "Confirm the key fingerprint",
"confirm-desc": "Please confirm the key fingerprint matches\nthe QR code description.",
"confirm-button-text": "Confirm",
"auth-new-device": {
"title": "Authorize new device",
"btn-1": "Authorize",
"btn-2": "Confirm Authorization"
},
"not-completed": "Authorization incomplete",
"wrong-origin-title": "Abnormal QR code",
"wrong-origin-desc": "Please confirm that the QR code was generated from app.joyid.dev. If it was not, do not authenticate to avoid losing your JoyID.",
"error_confirm": {
"icon": "🙁",
"title": "No JoyID login detected \nfor this device.",
"mobile_device": "<strong>{{device_name}}</strong>\n{{time}}",
"no_detected_device": "Please authenticate with another device, such as the device below.",
"confirm": "Confirm",
"loading": "Loading…"
}
},
"errors": {
"api": {
"COTA_CELL_OCCUPIED": "Your operation is too frequent. Please try again after 1-3 mins",
"COTA_CELL_NOT_FOUND": "Your JoyID account is being initialized. Please try again after 1-3 minutes",
"INVALID_AVATAR": "Invalid avatar",
"TOKEN_IS_SUBMITTING": "This NFT is currently being received. Please retry your operation later."
},
"confirm_button_text": "OK",
"unknown_error": "Unknown Error: {{message}}",
"not-recognized": "Oops! Due to Apple's frequency limitations, we can't complete this action right now. \n👉Please refresh the page and try again.",
"not-recognized-title": "⚠️ Limited Access Alert",
"custom-provider": "JoyID does not support registration on iOS beta or with password managers (such as 1Password, Bitwarden, Enpass, Nordpass, etc.). Please use a stable iOS version or disable your password manager",
"rsa-key": "Your device does not support the P256 signature algorithm, which may be due to an outdated device or BIOS setting issue."
},
"new-device": {
"description": "You can quickly and securely sign in next time with biometrics on this device.",
"title": "Add new device",
"heading": "\uD83D\uDC49 Two-step authentication",
"description-primary": "Is required for the first sign-in \non a new device.",
"description-secondary": "Don't worry, next time you can sign in directly.",
"steps": {
"1": "Generate new device’s key",
"2": "Previous Device authentication",
"3": "Sign in directly"
},
"step_descriptions": {
"1": "This key is stored in the device's chip. \nNo one can export it and no one can use it without your biometrics",
"2": "Authorize the new key with a previously registered device that can sign in JoyID",
"3": "This device is registered now! \nSign in to use JoyID in this device"
},
"authenticate": "Authorize",
"generated": "Generated",
"generate": "Generate",
"sign_in": "Sign In",
"description-waiting_the_new_device": "This may take 1-2 mins. \nDo not close and refresh the page"
},
"profile_plate": {
"default_description": "Mysterious person"
},
"my-joyid": {
"title": "JoyID Card"
},
"session-key-new": {
"navbar": "Sign in temporarily",
"title": "Sign in temporarily in this Environment",
"alert": "Biometrics sign-in are not supported in current browser (<a>why🤔️</a>).\nYou can continue to sign in temporarily <b>without requiring biometrics</b>.",
"desc": "Temporary sign-in would create a temporary private key in this browser,\n which enables you to use JoyID under\n <a>👉browser-level security</a> for a limited time.",
"warning": "Please start on a personal device.",
"next": "Sign in temporarily",
"dialog": {
"title": "Browser-level Security",
"desc-1": "The key used in temporary sign-in is securely stored in browser database. No one can export it once created, even JoyID.",
"desc-2": "But people will be able to sign any message from this device’s browser <b>without requiring biometrics</b> during the validity period."
}
},
"session-key-local": {
"title": "Temporary sign-in",
"desc": "Temporary sign-in key are stored securely in the\nbrowser database and no one can export\nit even JoyID.",
"validity": "Validity period: 7 days",
"dialog": {
"title": "Validity Period Security",
"desc-1": "We currently do not support setting the validity period.",
"desc-2": "The current default validity period is 7 days which means it will automatically expire after 7 days.",
"desc-3": "After expiration, you can create a new temporary sign-in in this browser."
},
"step-1": {
"title": "Temporary key generated ",
"desc": "You will be able to sign any message from this device’s browser within the validity period",
"btn": "Validity period: <b>7 days</b>"
},
"step-2": {
"title": "Previous Device Authorization",
"desc": "Authorize the new key with a previously registered device that can sign in JoyID",
"authorize": "Authorize",
"authorizing": "Authorizing",
"authorized": "Authorized",
"warn": "This may take 1-5 mins.\nDo not close or refresh the page"
},
"step-3": {
"title": "Sign in directly",
"desc": "This device is registered now!\nSign in to use JoyID in this device",
"btn": "Sign in"
}
},
"session-key-remote": {
"title": "Authenticate new environment",
"desc": "Do not scan unknown QR codes for authorization, otherwise you may lose your JoyID ",
"next": "Next",
"allow": "Allow this new device to",
"full-control": "Fully control my assets",
"manage-account": "Manage my account for any further actions",
"fingerprint": "Key fingerprint:",
"permission-err": "You don't have permission to authorize with this JoyID",
"only-webauthn-key": "Please authorize with a permanently sign-in device that can sign in JoyID with biometrics.",
"dialog": {
"title": "Please authorize with a permanently sign-in device that can sign in JoyID with biometrics."
}
},
"remote-auth-key": {
"desc": "Please check if the QR code fingerprint matches.\nPhishing QR code may lead to loss of your account",
"auth-new-device": "Authorize new device or environment",
"with-biometrics": "With biometrics required",
"valid-period": "Validity Period",
"security-level": "Security Level",
"hardware-level": "Hardware-level",
"browser-level": "Browser-level",
"always-valid": "Always valid",
"sesison-key-valid": "7 days",
"delete-dialog": {
"title": "How to delete authorized environment?",
"desc": "1. Open {{host}}\n2. Go to Setting > Security"
},
"browser-level-dialog": {
"title": "Browser-level Security",
"desc-1": "The key used in temporary sign-in is securely stored in browser database. No one can export it once created, even JoyID.",
"desc-2": "But people will be able to sign any message from this device’s browser <b>without requiring biometrics</b> during the validity period."
},
"hardware-level-dialog": {
"title": "Hardware-level Security",
"desc-1": "The key is securely stored in the device's chip.",
"desc-2": "The key cannot be exported or used without your biometrics. This is the best-in-class security level."
}
},
"not-supported": {
"title": "Proceed with recommend device",
"desc": "This browser cannot interact with JoyID.\nPlease try with a recommended device.",
"current-environment": "Your current environment",
"feedback": "If these steps don't work,\nkindly provide feedback 👉 <a>here</a>.",
"create": {
"title": "Account creation not supported in current environment.",
"password-manager": "Please disable <b>password manager</b> such as 1Password, Bitwarden, Enpass, etc. and then try again.",
"windows-hello": "Your current device doesn't support specific algorithm. If upgraded from Windows 10 or Windows 11 21H2, please <a>reset Windows Hello</a> and try again.",
"ios-beta": "Please use a stable version of iOS 16 or higher, or <a>use another device</a>."
},
"login": {
"title": "You canceled or timed out",
"solution": "If you don't find the desired Passkey in the list:",
"apple": {
"list-1": "Make sure you're using the <b>right iCloud account</b>.",
"list-2": "Ensure the Key can be synced to this environment. Check under 'Security/Devices'.",
"list-3": "If your account was created in non-Safari browser on macOS 13 or earlier, the account cannot be synced."
},
"non-apple": {
"list-1": "Make sure you're using the <b>right Google account</b>.",
"list-2": "Ensure the Key can be synced to this environment. Check under 'Security/Devices'."
}
},
"wallet-not-found": {
"title": "Wallet not found",
"solution": "This key might have been revoked. Please <b>select another key</b> to proceed."
},
"solution": {
"title": "Solution",
"android": {
"os": "Your Android version must be 7.0 or higher, or <a>use another device</a>.",
"browser": "Please use a supported browser like Chrome, Edge, or Brave.",
"unsupported": {
"list-0": "Sign up with <b>Chrome</b> — please note, <b>Kiwi</b> and <b>Mises</b> won't work as they don't support passkey",
"list-1": "Ensure your phone can use <b>Google services.</b>",
"list-2": "Make sure <b>screen lock<b/> is enabled.",
"list-3": "Ensure <a>no second space</a> is activated on MIUI."
}
},
"ios": {
"os": "Please upgrade to iOS version 16 or higher, or <a>use another device</a>.",
"browser": "Please use a supported browser like Safari, Chrome, Edge, or Brave.",
"unsupported": "Please restart your browser and try again, or <a>use another device.</a>"
},
"macos": {
"os": "Please upgrade your macOS to Catalina or a higher version with TouchID, or <a>use another device</a>.",
"browser": "Please use a supported browser like Safari, Chrome, Edge, or Brave.",
"unsupported": "Ensure your device can use TouchID, otherwise please <a>use another device.</a>"
},
"windows": {
"os": "Please upgrade to Windows 11 22H2 or a later version, or <a>use another device</a>.",
"browser": "Please use a supported browser like Safari, Chrome, Edge, or Brave.",
"unsupported": "Please ensure <hello>Windows Hello</hello> is properly set up."
},
"other-os": {
"os": "This operating systemis currently not supported. Please <a>use another device</a>."
}
},
"more-info": "👉 More info about supported browsers.",
"item-1": "<b>Andriod 10+</b> (with Google service)",
"item-2": "<b>iOS 14.5+</b> (with iCloud login)",
"item-3": "<b>Windows 11 22H2</b> (with Windows Hello)",
"item-4": "<b>macOS Catalina+</b> (with Touch ID)",
"scan": "Scan QR code with build-in camera app",
"recommended-device": "Please try with <a>supported environment.</a>",
"browser": "JoyID is not supported in current environment",
"windows-1": "Please enable <a>Windows Hello</a> before proceeding.",
"windows-2": "After that, you can sign in using your face, fingerprint, or PIN.",
"set-up-windows-hello": "Set up Windows Hello"
},
"session-key-signup": {
"navbar": "New Device Detected",
"title": "🎉Congratulations!",
"desc": "Your new JoyID has been created",
"next": "Sign in",
"continue": "Continue to"
},
"session-key-success": {
"title": "New environment has been authorized.",
"goto": "Go to",
"btn": "JoyID App",
"confirm": "Confirm"
},
"joyid-card": {
"tips": "Please long press to save your JoyID card",
"or": "Or",
"copy": "Copy to clipboard",
"copied": "Copied"
},
"guide_move_mobile": {
"title": "Proceed with your mobile device",
"description": "Scan QR code with mobile build-in camera app to redirect to <a>app.joyid.dev</a>",
"footer_description": "Or you can also type <a>app.joyid.dev</a> directly in your mobile browser"
},
"cota_not_ready": {
"title": "Account Upgrade Required",
"upgrade": "Upgrade",
"desc": "The first time you add a new device or send DOBs, it’s required to upgrade account first which will create an on-chain storage for your account information.",
"upgrading": "Upgrading account",
"upgraded": "Account upgraded",
"upgrading_desc": "Do not close and refresh the page\n It may take up to 3 minutes.",
"upgrade_success": "Account upgrade completed!",
"ready-for-subkey": "Sent successfully",
"next": "Next"
},
"upgrade-account": {
"account-upgrade": "Account Upgrade Required",
"account-upgrading": "Account upgrading",
"desc": "The first time you add a new device, or transfer DOBs, it’s required to upgrade account which will create an on-chain storage for your account and assets information.",
"upgrade": "Upgrade",
"confirm": "Confirm",
"free": "Time-limited free",
"upgrade-completed": "Upgrade completed",
"upgrade-desc": "It may take up to <b>3 minutes</b>.\nPlease try again later to proceed the operation. ",
"payment": {
"select-payment": "Select Payment",
"total": "Total",
"select-token": "Select Token",
"balance": "Balance:",
"pay": "Pay",
"not-enough": "Insufficient balance to pay the upgrade fee"
},
"box1": {
"header": "Operation",
"item1": "",
"item2": "CotA DOBs receive"
},
"box2": {
"header": "Security",
"item1": "Passkey recovery"
},
"box3": {
"header": "Operation",
"item1": "",
"item2": "DOBs receive/send/mint"
},
"box4": {
"header": "Security",
"item1": "Passkey recovery",
"item2": "Multi-device backup",
"item3": "Social recovery",
"item4": "Keystore recovery"
}
},
"receive": {
"select-network": "Select Network",
"receive": "Receive",
"receive-asset": "Receive Assets on ",
"show-address": "Show Address",
"ckb-note": "⚠️ Note",
"ckb-desc": "Some wallets and exchanges may not accept this address. For smooth deposits, use <a>imToken</a>, <b>Neuron</b>, or <c>Portal wallet</c>.",
"btc-desc": "Only supports BTC/RGB++ Assets and does not support assets such as Ordinals, BRC20, ARC20 etc.",
"bitcoin_title": "Bitcoin Ecosystem",
"evm_title": "EVM Ecosystem",
"more": "More",
"layer1": "Layer1",
"layer2": "Layer2"
},
"connect-with": {
"authorize": {
"title": "Authorize new device",
"step-1": "1. Open JoyID on another device and go to Setting > Security",
"step-2": "2. Click + button to add this device"
},
"slogan": "Your Web3 account for the future",
"fast-register": "it takes as little as 10s",
"create-account": "Create New",
"connect-with": "Sign up",
"use-other": "Use another JoyID",
"login-with": "Login with",
"login-with-passkey": "Login with Passkey",
"login-passkey": "Passkey",
"login-device": "Another Device",
"google": "Google service",
"icloud": "iCloud",
"with-icloud": "With iCloud",
"nervos-address": "CKB Address",
"address": "I Know My CKB Address",
"other-login-options": "Other login options",
"more-options": "I already have an account",
"recover-with-address": "Recover account with address",
"other-passkey-account": "Passkey",
"checkbox": {
"enable": "Passkey backup",
"google": "(Google Service)",
"icloud": "(iCloud)",
"not-support": "(not supported)",
"disable-passkey": {
"title": "Warning",
"desc": "Once you disable the Passkey backup, risking <b>permanent account loss</b> if you:",
"list-1": "Lost your device.",
"list-2": "Turn off your device screen lock.",
"summary": "High recommended to add extra devices if you continue without Passkey backup.",
"btn": "I understood"
},
"question": {
"btn": "OK",
"more-details": "More details",
"not-supported": "Passkey is not supported on the current device.",
"always-enabled": "Your private keys are automatically encrypted and synced across devices with {{service}}.",
"optional": "Your private keys are automatically encrypted and synced across devices with {{service}}."
}
},
"sign-in": {
"title": "Recover account with address",
"btn": "Process to recover",
"another-passkey": {
"title": "Please choose another passkey",
"desc": "The App is not requesting this account. Please choose another passkey to sign in again.",
"btn": "Choose again"
}
},
"recovery": {
"recovery": "Login with Passkey",
"title": "Login with Passkey",
"btn-1": "Select a Passkey",
"btn-2": "Confirm authentication"
},
"wallet-not-found": {
"title": "Wallet not found",
"desc": "There is no corresponding wallet for this key. Please return to the list and select another key.",
"btn": "Reselect"
},
"create-wallet": {
"title": " Create account",
"btn-1": "Authenticate",
"btn-2": "Confirm authentication"
},
"auth-with-new-device": {
"title": "Authorize new device",
"btn-1": "Authorize",
"btn-2": "Confirm authorization"
},
"prepare-device": {
"title": "Prepare device",
"btn-1": "Authorize",
"btn-2": "Confirm authorization"