-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathen.json
More file actions
9066 lines (9066 loc) · 440 KB
/
en.json
File metadata and controls
9066 lines (9066 loc) · 440 KB
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
{
"sample_feature": {
"title": "Sample feature",
"description": "This is a screen demonstrating how to build a sample feature end-to-end in MetaMask.",
"counter": {
"title": "Counter",
"value": "Value: {{value}}",
"increment": "Increment Redux Counter"
},
"pet_name": {
"list_count_text": "Pet names on this network",
"add_pet_name_button": "Add pet name",
"address": "Address",
"address_placeholder": "0x...",
"name": "Name",
"name_placeholder": "Name",
"duplicate_title": "Address already exists",
"duplicate_message": "This address already has a pet name. Do you want to update it?",
"cancel": "Cancel",
"update": "Update"
}
},
"access_restricted": {
"title": "Access restricted",
"description_line1": "This wallet address has been flagged during compliance screening. As a result, some MetaMask services are unavailable.",
"description_line2": "If you believe this is an error, contact support to request a review.",
"contact_support": "Contact support"
},
"alert_system": {
"alert_modal": {
"title": "Alert",
"checkbox_label": "I have acknowledged the risk and still want to proceed",
"got_it_btn": "Got it",
"acknowledge_btn": "Acknowledge",
"close_btn": "Close",
"alert_details": "Alert details"
},
"confirm_modal": {
"title": "High risk request",
"checkbox_label": "I have acknowledged the alert and still want to proceed",
"review_alerts": "Review all alerts",
"message": "We suggest you reject this request. If you continue, you might put your assets at risk.",
"title_blockaid": "Your assets may be at risk",
"blockaid": {
"message": "If you confirm this request, you could lose your assets. We recommend that you cancel this request.",
"message1": "If you confirm this request, you’re allowing a scammer to withdraw and spend your assets. You won’t get them back.",
"message2": "You’re sending your assets to a scammer. If you continue, you’ll lose those assets.",
"message3": "If you continue, all the assets you’ve listed on OpenSea could be at risk.",
"message4": "If you continue, all the assets you’ve listed on Blur could be at risk.",
"message5": "You’re interacting with a malicious site. If you continue, you will lose your assets."
}
},
"inline_alert_label": "Alert",
"review_alerts": "Review alerts",
"review_alert": "Review alert",
"upgrade_account": {
"title": "Updating your account",
"message": "You're updating your account to a smart account. You'll keep the same account address while unlocking faster transactions and lower network fees.",
"learn_more": "Learn more"
},
"domain_mismatch": {
"title": "Suspicious sign-in request",
"message": "The site making the request is not the site you're signing into. This could be an attempt to steal your login credentials."
},
"gas_estimate_failed": {
"title": "Inaccurate fee",
"message": "We're unable to provide an accurate fee and this estimate might be high. We suggest you to input a custom gas limit, but there's a risk the transaction will still fail."
},
"insufficient_balance": {
"title": "Insufficient funds",
"message": "You do not have enough %{nativeCurrency} in your account to pay for network fees.",
"buy_action": "Buy %{nativeCurrency}"
},
"signed_or_submitted": {
"title": "Transaction in progress",
"message": "A previous transaction is still being signed or submitted."
},
"signed_or_submitted_perps_deposit": {
"title": "Deposit in progress",
"message": "Wait for the last deposit to finish before making another."
},
"signed_or_submitted_pay_token": {
"title": "Pending transaction",
"message": "You have a pending transaction on this network. Wait for it to complete or select a token on another network."
},
"pending_transaction": {
"title": "Pending transaction",
"message": "This transaction won't go through until the previous transaction is complete.",
"learn_more": "Learn how to cancel or speed up a transaction."
},
"batched_unused_approvals": {
"title": "Unnecessary permission",
"message": "You're giving someone else permission to withdraw your tokens, even though it's not necessary for this transaction."
},
"perps_deposit_minimum": {
"message": "Minimum $10"
},
"insufficient_pay_token_balance": {
"message": "Insufficient funds"
},
"insufficient_pay_token_balance_fees": {
"message": "Add less than {{amount}} or use a different token.",
"title": "Insufficient funds"
},
"insufficient_pay_token_balance_fees_no_target": {
"message": "Add less or use a different token."
},
"insufficient_pay_token_native": {
"message": "Not enough {{ticker}} to cover fees. Use a token on another network or add more {{ticker}} to continue.",
"title": "Insufficient funds"
},
"insufficient_pay_token_native_post_quote": {
"message": "Not enough {{ticker}} to cover fees. Add {{ticker}} to continue.",
"title": "Insufficient funds for post quote"
},
"no_pay_token_quotes": {
"message": "This payment route isn't available right now. Try changing the amount, network, or token and we'll find the best option.",
"title": "No quotes"
},
"account_no_funds": {
"message": "No funds available. Use a different account."
},
"mmpay_hardware_account": {
"title": "Wallet not supported",
"message": "Hardware wallets aren't supported.\nSwitch wallets to continue."
},
"burn_address": {
"message": "You're sending your assets to a burn address. If you continue, you'll lose your assets.",
"title": "Sending assets to burn address"
},
"token_contract_warning": {
"title": "Token contract warning",
"message": "The recipient address may not support direct token transfers, which could result in fund loss. Only continue if you're certain this contract can receive your transfer."
},
"gas_sponsorship_reserve_balance": {
"message": "Gas sponsorship isn't available for this transaction. You'll need to keep at least %{minBalance} %{nativeTokenSymbol} in your account.",
"title": "Gas sponsorship unavailable"
},
"token_trust_signal": {
"malicious": {
"message": "This token has been identified as malicious. Interacting with this token may result in a loss of funds.",
"title": "Malicious token"
},
"warning": {
"message": "This token shows strong signs of malicious behavior. Continuing may result in loss of funds.",
"title": "Suspicious token"
}
},
"first_time_interaction": {
"message": "You're interacting with this address for the first time. Make sure that it's correct before you continue.",
"title": "1st interaction"
},
"address_trust_signal": {
"malicious": {
"message": "If you confirm this request, you will probably lose your assets to a scammer.",
"title": "Malicious address"
},
"warning": {
"message": "We can't verify this address. It may be new or unverified. Only continue if you trust the source.",
"title": "Address needs review"
}
},
"url_trust_signal": {
"malicious": {
"message": "This has been identified as malicious. We recommend not interacting with this site.",
"title": "Malicious site"
},
"warning": {
"message": "This has been identified as suspicious. We recommend not interacting with this site.",
"title": "Suspicious site"
}
}
},
"blockaid_banner": {
"approval_farming_description": "If you approve this request, a third party known for scams might take all your assets.",
"blur_farming_description": "If you approve this request, someone can steal your assets listed on Blur.",
"deceptive_request_title": "This is a deceptive request",
"failed_title": "Request may not be safe",
"failed_description": "Because of an error, this request was not verified by the security provider. Proceed with caution.",
"malicious_domain_description": "You're interacting with a malicious domain. If you approve this request, you might lose your assets.",
"other_description": "If you approve this request, you might lose your assets.",
"raw_signature_farming_description": "If you approve this request, you might lose your assets.",
"seaport_farming_description": "If you approve this request, someone can steal your assets listed on OpenSea.",
"see_details": "See details",
"does_not_look_right": "Something doesn’t look right?",
"report_an_issue": "Report an issue",
"suspicious_request_title": "This is a suspicious request",
"trade_order_farming_description": "If you approve this request, you might lose your assets.",
"transfer_farming_description": "If you approve this request, a third party known for scams will take all your assets.",
"before_you_proceed": "Before you proceed",
"enable_blockaid_alerts": "To enable this feature we need to set up some security alert. This page will need to stay open while its being set up. This will take less than a minute to complete.",
"enable_blockaid_alerts_description": "This page will need to stay open while security alerts are being set up. This process will take less than a minute to complete.",
"setting_up_alerts": "Setting up security alerts",
"setting_up_alerts_description": "We are going as fast as we can to set up security alerts. Hang in there, we are almost done.",
"setup_complete": "Set up complete",
"setup_failed": "We could not finish setting up the security alerts. Check your internet connection and try again.",
"setup_multiple_failures": "Your internet connection isn’t stable right now, so we couldn’t set up security alerts. Please try again when your connection is restored.",
"setup_complete_description": "Security alerts are ready to go. You can close this page and start exploring your wallet",
"continue": "Continue",
"cancel": "Cancel",
"got_it": "Got it",
"try_again": "Try again",
"failed": "Something went wrong"
},
"date": {
"months": {
"0": "Jan",
"1": "Feb",
"2": "Mar",
"3": "Apr",
"4": "May",
"5": "Jun",
"6": "Jul",
"7": "Aug",
"8": "Sept",
"9": "Oct",
"10": "Nov",
"11": "Dec"
},
"connector": "at"
},
"autocomplete": {
"placeholder": "Search by site or address",
"recents": "Recents",
"favorites": "Favorites",
"sites": "Sites",
"tokens": "Trending tokens",
"perps": "Perps",
"predictions": "Predictions"
},
"navigation": {
"back": "Back",
"close": "Close",
"cancel": "Cancel",
"info": "Info",
"ok": "OK"
},
"onboarding": {
"title": "Let’s get started!",
"sync_desc": "If you’ve already got the MetaMask extension or another wallet, sync or import it to manage your existing assets.",
"create_desc": "Set up your first wallet and start exploring decentralized apps.",
"import": "Import an existing wallet or create a new one",
"import_wallet_button": "Sync or import wallet",
"new_to_crypto": "New to crypto?",
"start_exploring_now": "Create a new wallet",
"new_to_metamask": "New to MetaMask?",
"already_have_wallet": "Already have a wallet?",
"optin_back_title": "Heads up!",
"optin_back_desc": "Please agree or disagree to the usage of data analytics. You can also update this option in settings.",
"warning_title": "Warning",
"warning_text_1": "Your current wallet and accounts will be",
"warning_text_2": "removed",
"warning_text_3": "if you proceed.",
"warning_text_4": "You can ONLY recover them with your wallet’s Secret Recovery Phrase. MetaMask cannot help you recover it.",
"warning_proceed": "Remove wallet & proceed",
"warning_cancel": "Cancel",
"step1": "Wallet setup",
"step2": "Create password",
"step3": "Secure wallet",
"already_have": "Already have a wallet?",
"sync_existing": "Sync your existing MetaMask wallet from the browser extension or import manually.",
"scan_title": "Steps to sync with MetaMask extension",
"scan": "Scan",
"scan_step_1": "Open the extension on desktop",
"scan_step_2": "Go to Settings > Advanced",
"scan_step_3": "Click on “Sync with Mobile”",
"scan_step_4": "Scan the QR code to start syncing",
"success": "Success",
"continue_with_google": "Continue with Google",
"continue_with_apple": "Continue with Apple",
"or": "or",
"import_existing_wallet": "Import existing wallet",
"bottom_sheet_title": "Choose an option to continue",
"continue_with_srp": "Use Secret Recovery Phrase",
"import_srp": "Import using Secret Recovery Phrase",
"sign_in_with_google": "Sign in with Google",
"sign_in_with_apple": "Sign in with Apple",
"your_wallet": "You successfully reset your wallet!",
"delete_current": "Reset current wallet",
"have_existing_wallet": "I have an existing wallet",
"import_using_srp": "Import using Secret Recovery Phrase",
"import_using_srp_social_login": "I have an existing wallet",
"by_continuing": "By continuing, you agree to MetaMask's",
"terms_of_use": "Terms of use",
"privacy_notice": "Privacy notice",
"and": "and"
},
"onboarding_success": {
"title": "Keep your Secret Recovery Phrase safe!",
"description": "This Secret Recovery Phrase can help you regain access if you ever forget your password or lose access to your login.",
"description_bold": "Settings > Security & Privacy.",
"description_continued": "you can keep this phrase safe so you never lose access to your money.",
"learn_more": "Learn more",
"learn_how": "Learn how",
"leave_hint": "Leave yourself a hint?",
"default_settings": "Default settings",
"manage_default_settings": "Manage default settings",
"default_settings_footer": "Settings are optimized for ease of use and security.\nChange these at any time.",
"no_srp_title": "Reminder set!",
"no_srp_description": "If you get locked out of the app or get a new device, you will lose your funds. Be sure to back up your Secret Recovery Phrase in",
"import_title": "Your wallet is ready!",
"import_description": "If you lose your Secret Recovery Phrase, you won’t be able to use your wallet.",
"import_description2": "you can keep this phrase safe so you never lose access to your money.",
"import_description_social_login": "You can log in to your wallet anytime with your {{authConnection}} account and password.",
"import_description_social_login_2": "If you forget your password, you won’t be able to access your wallet.",
"done": "Done",
"create_hint": "Create a password hint",
"hint_title": "Password hint",
"hint_description": "Leave yourself a hint to help remember your password. This hint is stored on your device, and won’t be shared.",
"hint_description2": "Remember: If you lose your password, you won’t be able to use your wallet.",
"hint_button": "Create hint",
"hint_placeholder": "e.g. mom’s home",
"hint_saved": "Save",
"hint_saved_toast": "Password hint saved",
"remind_later": "We’ll remind you later",
"remind_later_description": "If you don’t back up your Secret Recovery Phrase, you’ll lose access to your funds if you get locked out of the app or get a new device.",
"remind_later_description2": "You can back up your wallets or see your Secret Recovery Phrase in",
"setting_security_privacy": "Settings > Security & Privacy",
"wallet_ready": "Your wallet is ready!"
},
"social_login_ios_user": {
"new_user_title": "You've signed up!",
"new_user_button": "Secure your wallet",
"existing_user_title": "You’re logged in!",
"existing_user_button": "Unlock wallet"
},
"onboarding_carousel": {
"title1": "Welcome to MetaMask",
"title2": "Manage your digital assets",
"title3": "Your gateway to web3",
"subtitle1": "Trusted by millions, MetaMask is a secure wallet making the world of web3 accessible to all.",
"subtitle2": "Store, spend and send digital assets like tokens, Ethereum, unique collectibles.",
"subtitle3": "Login with MetaMask and make transactions to invest, earn, play games, sell and more!",
"get_started": "Get started"
},
"onboarding_wizard": {
"skip_tutorial": "Skip tutorial",
"coachmark": {
"action_back": "No, Thanks",
"action_next": "Take the tour",
"progress_back": "Back",
"progress_next": "Got it!"
},
"step1": {
"title": "Welcome to your new wallet!",
"content1": "To use the blockchain, you need a wallet! Some actions cost Ether (ETH).",
"content2": "We'll show you how to buy ETH, or you can request some from a friend."
},
"step2": {
"title": "Your accounts",
"content1": "This is your first account, total value, and its unique public address (0x...).",
"content2": "You can create multiple accounts within this wallet by tapping on the profile icon."
},
"step3": {
"title": "Edit account name",
"content1": "Why not give your account a memorable and distinct name?",
"content2": "Long tap",
"content3": "now to edit account name."
},
"step4": {
"title": "Main menu",
"content1": "You can access transaction history, settings, and support from this menu.",
"content2": "You can take more actions with your accounts & access MetaMask settings."
},
"step5": {
"title": "Explore the browser",
"content1": "You can explore web3 using the browser"
},
"step6": {
"title": "Search",
"content": "Search for sites, or type a URL if you know where you’re headed."
}
},
"onboarding_wizard_new": {
"coachmark": {
"action_back": "No thanks",
"action_next": "Take the tour",
"progress_next": "Got it"
},
"step1": {
"title": "Welcome to your wallet!",
"content1": "On the blockchain, you need a wallet (and maybe some ETH). So let’s take a look at how to use your MetaMask wallet."
},
"step2": {
"title": "Your accounts",
"content1": "This is your account and unique public address (0x...). Create more accounts by tapping the arrow icon."
},
"step3": {
"title": "Managing your account",
"content1": "Edit your account name, view transactions on Etherscan, share your public key, and see your private key by tapping this icon"
},
"step4": {
"title": "Notifications",
"content1": "Stay in the loop on what's happening in your wallet"
},
"step5": {
"title": "Using your wallet",
"content1": "Buy, send, swap, and receive assets by tapping this icon"
},
"step6": {
"title": "Exploring web3",
"content1": "Open the browser by tapping this icon"
},
"step7": {
"title": "Using the browser",
"content1": "Search for sites by keyword or enter a URL. Have fun out there! "
}
},
"create_wallet": {
"title": "Creating your wallet...",
"subtitle": "This shouldn’t take long"
},
"import_wallet": {
"title": "Already a MetaMask user?",
"sub_title": "Sync with the extension",
"sync_help": "Sync your wallet with the extension",
"sync_help_step_one": "1. Open the extension",
"sync_help_step_two": "2. Go to Settings > Advanced",
"sync_help_step_three": "3. Click on \"Sync with Mobile\"",
"sync_help_step_four": "4. Scan the QR Code to start syncing",
"sync_from_browser_extension_button": "Sync with MetaMask extension",
"or": "OR",
"import_from_seed_button": "Import using Secret Recovery Phrase"
},
"login": {
"title": "Welcome back!",
"password": "Password",
"password_placeholder": "Enter password",
"unlock_button": "Unlock",
"go_back": "Wallet won't unlock? You can ERASE your current wallet and setup a new one",
"forgot_password": "Forgot password?",
"cant_proceed": "You can’t proceed till you type the word ‘Delete’. With this action you are opting in to erase your current wallet.",
"invalid_password": "Password is incorrect, try again.",
"type_delete": "Type ‘%{erase}’ to confirm",
"erase_my": "Yes, reset wallet",
"cancel": "Cancel",
"are_you_sure": "Are you sure?",
"your_current_wallet": "Your wallet, accounts, and assets will be",
"removed_from": " permanently removed from this app",
"this_action": "This action cannot be undone.",
"you_can_only": "You can only get this wallet back with the info used when creating it, such as your Secret Recovery Phrase, Google account, or Apple account. MetaMask doesn’t have this info.",
"recovery_phrase": "Secret Recovery Phrase ",
"metamask_does_not": "MetaMask does not have your Secret Recovery Phrase.",
"i_understand": "I understand, continue",
"passcode_not_set_error": "Error: Passcode not set.",
"wrong_password_error": "Error: Decrypt failed",
"wrong_password_error_android": "Error: error:1e000065:Cipher functions:OPENSSL_internal:BAD_DECRYPT",
"vault_error": "Error: Cannot unlock without a previous vault.",
"clean_vault_error": "MetaMask encountered an error due to reaching a storage limit. The local data has been corrupted. Please reinstall MetaMask and restore with your Secret Recovery Phrase.",
"seedless_password_outdated": "Your password was changed recently.",
"seedless_password_outdated_modal_title": "Your password was changed",
"seedless_password_outdated_modal_content": "Your password was recently changed, so you need to enter your new password to stay logged into MetaMask.",
"seedless_password_outdated_modal_confirm": "Continue",
"no_internet_connection": "Seedless account recovery requires internet connection.",
"seedless_controller_error_prompt_title": "Something went wrong",
"seedless_controller_error_prompt_description": "An issue occurred while unlocking. Re-login with Google and your MetaMask password.",
"seedless_controller_error_prompt_primary_button_label": "Log in",
"security_alert_title": "Security alert",
"security_alert_desc": "In order to proceed, you need to turn Passcode on or any biometrics authentication method supported in your device (FaceID, TouchID or Fingerprint)",
"too_many_attempts": "Too many attempts. Please try again in {{remainingTime}}",
"apple_button": "Sign in with Apple",
"google_button": "Sign in with Google",
"other_methods": "Use a different login method",
"forgot_password_desc": "Forgot your password?",
"forgot_password_desc_2": "MetaMask can’t recover your password for you.",
"forgot_password_point_1": "If you’re logged into MetaMask on a device with",
"forgot_password_point_1_bold": "biometrics turned on",
"forgot_password_point_1_1": "(like Face ID), you can reset your password there.",
"forgot_password_point_2": "If you have your",
"forgot_password_point_2_bold": "Secret Recovery Phrase,",
"forgot_password_point_2_1": "you can reset your current wallet and reimport using Secret Recovery Phrase.",
"reset_wallet": "Reset wallet",
"reset_wallet_desc": "Your wallet data will be",
"reset_wallet_desc_bold": "permanently erased",
"reset_wallet_desc_2": "from MetaMask on this device. This can’t be undone.",
"reset_wallet_desc_login": "To restore your wallet, you can use your Secret Recovery Phrase, or your Google or Apple account password. MetaMask doesn’t have this information.",
"reset_wallet_desc_srp": "To restore your wallet, make sure you have your Secret Recovery Phrase. MetaMask doesn’t have this information.",
"biometric_authentication_cancelled": "Biometric authentication cancelled",
"biometric_authentication_cancelled_title": "Biometric Setup Failed",
"biometric_authentication_cancelled_description": "Please re-setup biometric authentication from the settings.",
"biometric_authentication_cancelled_button": "Confirm",
"biometric_changed": "Biometric Changed",
"biometric_changed_alert_desc": "Your biometric has been changed. Please re-enable biometric from settings.",
"biometric_changed_alert_confirm": "Confirm"
},
"connect_hardware": {
"title_select_hardware": "Connect a hardware wallet",
"select_hardware": "Select a hardware wallet you'd like to use"
},
"enter_password": {
"title": "Enter your password",
"desc": "Please enter your password in order to continue",
"password": "Password",
"confirm_button": "Confirm",
"error": "Error"
},
"choose_password": {
"title": "MetaMask password",
"description": "Unlocks MetaMask on this device only.",
"description_social_login": "Use this for wallet recovery on all devices.",
"description_social_login_update": "If you lose this password, you’ll lose access to your wallet on all devices. Store it somewhere safe,",
"description_social_login_update_ios": "Use this for wallet recovery on all devices. MetaMask can’t reset it.",
"description_social_login_update_bold": "MetaMask can't reset it.",
"subtitle": "This password will unlock your MetaMask wallet only on this device.",
"password": "Create password",
"confirm_password": "Confirm password",
"create_button": "Create password",
"import_with_seed_phrase": "Import with Secret Recovery Phrase",
"password_length_error": "The password needs to be at least 8 characters long",
"password_dont_match": "Passwords don't match",
"password_strength": "Password strength:",
"strength_weak": "Weak",
"strength_good": "Good",
"strength_strong": "Strong",
"show": "Show",
"hide": "Hide",
"seed_phrase": "Secret Recovery Phrase",
"must_be_at_least": "Must be at least {{number}} characters",
"remember_me": "Remember me",
"security_alert_title": "Security alert",
"security_alert_message": "In order to proceed, you need to turn Passcode on or any biometrics authentication method supported in your device (FaceID, TouchID or Fingerprint)",
"i_understand": "I understand that MetaMask cannot recover this password for me.",
"learn_more": "Learn more",
"secure": "Secure wallet",
"confirm": "Confirm Secret Recovery Phrase",
"disable_biometric_error": "You have disabled biometrics for the app. Update Remember Me settings and try again.",
"create_password_cta": "Create password",
"steps": "Step {{currentStep}} of {{totalSteps}}",
"password_error": "Passwords don’t match.",
"marketing_opt_in_description": "Get product updates, tips, and news including by email. We may use your interactions to improve what we share.",
"loose_password_description": "If I lose this password, MetaMask can’t reset it."
},
"wallet_creation_error": {
"title": "Something went wrong",
"social_login_description_part1": "An error occurred while creating your wallet. Try again and if the issue persists, contact",
"srp_description_part1": "Send us an anonymous error report to help fix the problem and improve MetaMask. If the issue persists, contact",
"metamask_support": "MetaMask Support",
"error_report": "Error report",
"copy": "Copy",
"copied": "Copied",
"send_error_report": "Send error report",
"try_again": "Try again",
"error_report_sent_title": "Error report sent",
"error_report_sent_description": "We're investigating this problem. Try creating your wallet again."
},
"reset_password": {
"title": "Change password",
"subtitle": "This password will unlock your MetaMask wallet only on this device.",
"password": "New password",
"confirm_password": "Confirm password",
"reset_button": "Reset password",
"import_with_seed_phrase": "Import with Secret Recovery Phrase",
"password_length_error": "The password needs to be at least 8 characters long",
"password_dont_match": "Passwords don't match",
"password_strength": "Password strength:",
"strength_weak": "Weak",
"strength_good": "Good",
"strength_strong": "Strong",
"show": "Show",
"hide": "Hide",
"seed_phrase": "Secret Recovery Phrase",
"must_be_at_least": "Must be at least {{number}} characters",
"remember_me": "Remember me",
"security_alert_title": "Security alert",
"security_alert_message": "In order to proceed, you need to turn Passcode on or any biometrics authentication method supported in your device (FaceID, TouchID or Fingerprint)",
"i_understand": "I understand that MetaMask cannot recover this password for me.",
"learn_more": "Learn more",
"secure": "Secure wallet",
"confirm": "Confirm Secret Recovery Phrase",
"password_updated": "New password saved",
"successfully_changed": "Your password has been successfully changed",
"new_password_placeholder": "Use at least 8 characters",
"confirm_password_placeholder": "Re-enter your password",
"confirm_btn": "Save",
"warning_password_change_title": "Are you sure?",
"warning_password_change_description": "Changing your password here will lock MetaMask on other devices you’re using. You’ll need to log in again with your new password",
"warning_password_change_button": "Confirm",
"warning_password_cancel_button": "Cancel",
"changing_password": "Changing password...",
"changing_password_subtitle": "This shouldn’t take long",
"checkbox_forgot_password": "If I forget this password, I’ll lose access to my wallet permanently. MetaMask can’t reset it for me.",
"seedless_change_password_error_modal_title": "Change password failed",
"seedless_change_password_error_modal_content": "We were unable to change your password. Please try again.",
"seedless_change_password_error_modal_confirm": "Try again"
},
"import_from_seed": {
"title": "Import a wallet",
"seed_phrase_placeholder": "Enter your Secret Recovery Phrase",
"create_new_password": "Create password",
"confirm_password": "Confirm password",
"import_button": "IMPORT",
"cancel_button": "Cancel",
"password_length_error": "The password needs to be at least 8 characters long",
"password_dont_match": "Passwords don't match",
"seed_phrase_requirements": "Secret Recovery Phrases contain 12, 15, 18, 21, or 24 words",
"invalid_seed_phrase": "Secret Recovery Phrase not found.",
"error": "Error",
"invalid_qr_code_title": "Invalid QR Code",
"invalid_qr_code_message": "This QR code doesn't represent a valid Secret Recovery Phrase",
"enter_your_secret_recovery_phrase": "Enter your Secret Recovery Phrase",
"metamask_password": "MetaMask password",
"metamask_password_description": "Unlocks MetaMask on this device only.",
"seed_phrase_required": "Secret Recovery Phrase is required",
"re_enter_password": "Re-enter your password",
"use_at_least_8_characters": "Use at least 8 characters",
"unlock_with_face_id": "Unlock with Face ID?",
"learn_more": "If I forget this password, MetaMask can't recover it for me.",
"learn_more_social_login": "If I forget this password, I’ll lose access to my wallet permanently. MetaMask can’t reset it for me.",
"seed_phrase_length_error": "Secret Recovery Phrase must be 12, 15, 18, 21, or 24 words",
"continue": "Continue",
"clear_all": "Clear all",
"show_all": "Show all",
"paste": "Paste",
"hide_all": "Hide all",
"srp": "Secret Recovery Phrase",
"srp_placeholder": "Add a space between each word and make sure no one is watching.",
"learn_more_link": "Learn more",
"import_create_password_cta": "Create password",
"pass_flow": "Continue with Flow",
"steps": "Step {{currentStep}} of {{totalSteps}}",
"password_error": "Passwords don’t match. Try again.",
"spellcheck_error": "Use only lowercase letters, check your spelling, and put the words in the original order.",
"enter_strong_password": "Enter a strong password"
},
"bottom_tab_bar": {
"dapps": "ÐApps",
"wallet": "Wallet",
"transfer": "Transfer"
},
"bottom_nav": {
"home": "Home",
"browser": "Browser",
"activity": "Activity",
"trade": "Trade",
"settings": "Settings",
"rewards": "Rewards",
"trending": "Explore",
"money": "Money"
},
"drawer": {
"send_button": "Send",
"receive_button": "Add funds",
"coming_soon": "Coming soon...",
"wallet": "Wallet",
"transaction_activity": "Activity",
"request_feature": "Request a Feature",
"submit_feedback_message": "Choose the type of feedback to send.",
"submit_bug": "Bug report",
"submit_general_feedback": "General",
"share_address": "Share my public address",
"view_in_etherscan": "View on Etherscan",
"view_in": "View on",
"browser": "Browser",
"settings": "Settings",
"settings_warning": "Wallet unprotected",
"settings_warning_short": "Unprotected",
"help": "Support",
"lock": "Lock",
"lock_title": "Do you really want to lock your wallet?",
"lock_ok": "YES",
"lock_cancel": "NO",
"feedback": "Feedback",
"metamask_support": "MetaMask Support",
"public_address": "Public address"
},
"send": {
"available": "available",
"invalid_value": "Invalid value",
"insufficient_funds": "Insufficient funds",
"insufficient_balance_to_cover_fee": "Insufficient balance to cover fees",
"transaction_error": "Transaction error",
"continue": "Continue",
"unit": "unit",
"units": "units",
"next": "Next",
"title": "Send",
"deeplink_failure": "Something went wrong. Please try again",
"warn_network_change": "Network changed to ",
"send_to": "Send to",
"amount": "Amount",
"confirm": "Confirm",
"paste": "Paste",
"no_assets_available": "No assets available to send",
"clear": "Clear",
"to": "To",
"enter_address_to_send_to": "Enter address to send to",
"accounts": "Accounts",
"contacts": "Contacts",
"no_contacts_found": "No contacts found",
"review": "Review",
"all_networks": "All",
"no_tokens_match_filters": "No tokens match your filters",
"clear_filters": "Clear filters",
"no_tokens_available": "No tokens available",
"sign": "Sign",
"network_not_found_title": "Network not found",
"network_not_found_description": "Network with chain ID {{chain_id}} not found in your wallet. Please add the network first.",
"network_missing_id": "Missing chain ID.",
"search_tokens": "Search tokens",
"search_tokens_and_nfts": "Search tokens and NFTs",
"tokens": "Tokens",
"nfts": "NFTs",
"show_more_nfts": "Show more NFTs",
"token_contract_warning": "This address is a token contract address. If you send tokens to this address, you will lose them.",
"invisible_character_error": "We detected an invisible character in the ENS name. Check the ENS name to avoid a potential scam.",
"could_not_resolve_name": "Couldn't resolve name",
"invalid_address": "Invalid address",
"contractAddressError": "You are sending tokens to the token's contract address. This may result in the loss of these tokens.",
"smart_contract_address": "Smart contract address",
"smart_contract_address_warning": "The recipient address may not support direct token transfers, which could result in fund loss. Only continue if you're certain this contract can receive your transfer.",
"i_understand": "I understand",
"cancel": "Cancel",
"new_address_title": "New address",
"new_address_message": "You're sending to this address for the first time. Make sure that it's correct before you continue:",
"alert_navigation_previous": "Previous alert",
"alert_navigation_next": "Next alert"
},
"unified_ramp": {
"networks_filter_bar": {
"all_networks": "All"
}
},
"deposit": {
"title": "Deposit",
"selectRegion": "Select region",
"chooseYourRegionToContinue": "Choose your region to continue",
"buildQuote": {
"payWith": "Pay with",
"unexpectedError": "An unexpected error occurred.",
"quoteFetchError": "Failed to fetch quote.",
"kycFormsFetchError": "Failed to fetch KYC forms.",
"title": "Buy",
"limitExceeded": "This deposit would exceed your {{period}} limit. Your deposit including fees must be {{remaining}} or less.",
"limitError": "Failed to check your deposit limits. Please try again later."
},
"token_modal": {
"select_a_token": "Select a token",
"select_token": "Select token",
"search_by_name_or_address": "Search token by name or address",
"no_tokens_found": "No tokens match \"{{searchString}}\"",
"unsupported_token_title": "Not available",
"unsupported_token_description": "This token may not be available in your region or supported by any local payment providers",
"error_loading_tokens": "Unable to load tokens. Please try again later."
},
"networks_filter_bar": {
"all_networks": "All networks"
},
"networks_filter_selector": {
"select_network": "Select network",
"select_all": "Select all",
"deselect_all": "Deselect all",
"apply": "Apply"
},
"configuration_modal": {
"title": "Settings",
"view_order_history": "View order history",
"contact_support": "Contact support",
"log_out": "Log out of Transak",
"logged_out_success": "Successfully logged out",
"error_sdk_not_initialized": "SDK not initialized",
"logged_out_error": "Error logging out",
"more_ways_to_buy": "More ways to buy",
"more_ways_to_buy_description": "Switch to the classic version"
},
"region_modal": {
"select_a_region": "Select a region",
"search_by_country": "Search by country",
"no_regions_found": "No regions match \"{{searchString}}\""
},
"state_modal": {
"select_a_state": "Select a state",
"search_by_state": "Search by state",
"no_state_results": "No states match \"{{searchString}}\""
},
"payment_modal": {
"select_a_payment_method": "Select a payment method"
},
"payment_duration": {
"instant": "Instant",
"1_to_2_days": "1 to 2 days"
},
"unsupported_region_modal": {
"title": "Region not supported",
"location_prefix": "It looks like you're in:",
"description": "We're working hard to expand coverage to your region. In the meantime, there may be other ways for you to get crypto.",
"change_region": "Change region",
"buy_crypto": "Buy crypto"
},
"unsupported_state_modal": {
"title": "Region not supported",
"location_prefix": "You've selected:",
"description": "We're working hard to expand coverage to your region. In the meantime, there are other ways for you to get crypto.",
"change_state": "Change region",
"try_another_option": "Try another option"
},
"incompatible_token_acount_modal": {
"title": "Switch your account",
"description": "The {{networkName}} account you’re on doesn't support the selected token. Switch your account or token to continue.",
"cta": "I understand"
},
"ssn_info_modal": {
"title": "Why we ask",
"description": "U.S. laws require Transak to check your identity before changing dollars into crypto. This means U.S. customers need to provide a Social Security number."
},
"get_started": {
"navbar_title": "Deposit",
"title": "Starting is easy with USDC",
"bullet_1_title": "Value-backed by the US dollar",
"bullet_1_description": "USDC is a digital dollar, backed by U.S. dollars, so you always know what it’s worth.",
"bullet_2_title": "Low volatility",
"bullet_2_description": "USDC is designed to stay stable, making it easier to plan, save, and spend.",
"bullet_3_title": "Faster than banks",
"bullet_3_description": "Send and receive in minutes, no waiting for bank hours or international delays.",
"button": "Get started",
"title_musd": "Starting is easy with mUSD",
"bullet_1_title_musd": "Stable cryptocurrency",
"bullet_1_description_musd": "mUSD is a digital dollar that is pegged 1 to 1 with the US dollar.",
"bullet_2_title_musd": "Low volatility",
"bullet_2_description_musd": "mUSD is designed to stay stable, making it easier to plan, save, and spend.",
"bullet_3_title_musd": "Faster than banks",
"bullet_3_description_musd": "Send and receive in minutes, no waiting for bank hours or international delays."
},
"enter_email": {
"navbar_title": "Verify your identity",
"title": "Enter your email",
"description": "We'll email you a six-digit verification code to securely log in or create an account with Transak.",
"input_placeholder": "name@domain.com",
"submit_button": "Send email",
"loading": "Sending email...",
"validation_error": "Please enter a valid email address",
"error": "An error occurred while sending the email"
},
"otp_code": {
"navbar_title": "Verify your identity",
"title": "Enter six-digit code",
"description": "Enter the code we sent to {{email}}. If you don't see it, check your spam folder.",
"submit_button": "Submit",
"loading": "Verifying code...",
"invalid_code_error": "Invalid code",
"validation_error": "Please enter a valid code",
"need_help": "Need help?",
"resend_code_description": "Didn't receive the code?",
"resend_code_error": "Error resending code.",
"resend_code_button": "Resend it",
"resend_cooldown": "Resend code in {{seconds}} seconds",
"contact_support": "Contact support",
"error": "An error occurred while verifying the code",
"paste": "Paste"
},
"verify_identity": {
"title": "Verify your identity",
"navbar_title": "Deposit",
"description_1": "To deposit cash for the first time, your identity must be verified.",
"description_2_transak": "Transak",
"description_2_rest": " will facilitate your deposit and your data is sent directly to Transak. We do not process the data you share.",
"description_3_part1": "Check out our ",
"description_3_privacy_policy": "privacy policy",
"description_3_part2": " to learn more.",
"agreement_text_part1": "By clicking the button below, you agree to ",
"agreement_text_transak_terms": "Transak's Terms of Use",
"agreement_text_and": " and ",
"agreement_text_privacy_policy": "Privacy Policy",
"agreement_text_part2": ".",
"button": "Agree and continue"
},
"additional_verification": {
"title": "Additional verification",
"paragraph_1": "For larger deposits, you’ll need a valid ID (like a driver’s license) and a real-time selfie.",
"paragraph_2": "In order to complete your verification, you’ll need to enable access to your camera.",
"button": "Continue"
},
"basic_info": {
"navbar_title": "Verify your identity",
"title": "Enter your basic info",
"continue": "Continue",
"subtitle": "Next, we need some basic information about you.",
"first_name": "First name",
"last_name": "Last name",
"phone_number": "Phone number",
"date_of_birth": "Date of birth",
"social_security_number": "Social security number (SSN)",
"enter_phone_number": "Enter phone number",
"select_region": "Select region",
"first_name_required": "First name is required",
"first_name_invalid": "Please enter a valid first name",
"last_name_required": "Last name is required",
"last_name_invalid": "Please enter a valid last name",
"mobile_number_required": "Phone number is required",
"mobile_number_invalid": "Please enter a valid phone number",
"dob_required": "Date of birth is required",
"dob_invalid": "Please enter a valid date of birth",
"ssn_required": "Social security number is required",
"unexpected_error": "An unexpected error occurred. Please try again.",
"phone_already_registered": "This phone number is already in use by {{email}}. Log in using this email to continue.",
"login_with_email": "Log in with email"
},
"enter_address": {
"navbar_title": "Verify your identity",
"title": "Enter your address",
"subtitle": "Use your most recent permanent address.",
"continue": "Continue",
"address_line_1": "Address line 1",
"address_line_2": "Address line 2 (optional)",
"state": "State/Region",
"city": "City",
"postal_code": "Postal code",
"country": "Country",
"select_state": "Select state",
"address_line_1_required": "Address line 1 is required",
"address_line_1_invalid": "Please enter a valid address",
"address_line_2_invalid": "Please enter a valid address",
"city_required": "City is required",
"city_invalid": "Please enter a valid city",
"state_required": "State/Region is required",
"state_invalid": "Please enter a valid state",
"postal_code_required": "Postal code is required",
"postal_code_invalid": "Please enter a valid postal code",
"unexpected_error": "Unexpected error."
},
"privacy_section": {
"transak": "Transak encrypts and stores this information.",
"metamask": "MetaMask never receives or uses your data."
},
"kyc_processing": {
"navbar_title": "Verify your identity",
"heading": "Hang tight...",
"description": "This should only take about 2 minutes.",
"error_heading": "We were unable to verify your identity.",
"error_description": "Try uploading your documents again and resubmit for verification.",
"error_button": "Retry verification",
"success_heading": "You're verified",
"success_description": "Now you can complete your deposit.",
"success_button": "Complete your order"
},
"provider_webview": {
"title": "Deposit"
},
"kyc_webview": {
"title": "Verifying your identity",
"webview_received_error": "WebView received error status code: {{code}}"
},
"order_processing": {
"title": "Processing deposit",
"button": "Close",
"description": "Card purchases typically take a few minutes",
"bank_transfer_description": "Bank transfers typically take a few business days",
"success_title": "Deposit complete",
"success_description": "Your deposit of {{amount}} {{currency}} was successful!",
"error_title": "Deposit failed",
"error_description": "We were unable to complete your deposit",
"cancel_order_description": "You requested a cancellation of your deposit.",
"error_button": "Try again",
"contact_support_button": "Contact support",
"account": "Account",
"network": "Network",
"order_id": "Order ID",
"fees": "Fees",
"total": "Total",
"view_order_details_in_transak": "View order details in Transak",
"no_order_found": "No order found",
"back_to_wallet": "Back to Wallet",
"cancel_order_button": "Cancel order"
},
"order_details": {
"title": "Deposit order",
"error_title": "There was an error with your deposit order",
"error_message": "An unexpected error occurred."
},
"bank_details": {
"navbar_title": "{{paymentMethod}} bank transfer",
"button": "Confirm transfer",
"button_cancel": "Cancel order",
"main_title": "To complete your order",
"main_content_1": "Initiate a transfer from your preferred bank using the information below.",
"main_content_2": "Once you’re finished, come back and click “Confirm transfer” to confirm.",
"show_bank_info": "Show bank information",
"hide_bank_info": "Hide bank information",
"transfer_amount": "Transfer amount",
"account_holder_name": "Account holder name",
"beneficiary_name": "Beneficiary name",
"routing_number": "Routing number",
"account_number": "Account number",
"iban": "IBAN",
"bic": "BIC",
"account_type": "Account type",
"bank_name": "Bank name",
"beneficiary_address": "Beneficiary address",
"bank_address": "Bank address",
"info_banner_text": "You should see '{{accountHolderName}}' as the account holder. This helps your bank process the transfer.",
"error_message": "We were unable to confirm your bank transfer. Please try again.",
"cancel_order_error": "We were unable to cancel your order. Please try again."
},
"webview_modal": {
"error": "Webview received error: %{code}"
},
"notifications": {
"deposit_failed_title": "Deposit of {{currency}} has failed! Please try again, sorry for the inconvenience!",
"deposit_failed_description": "Verify your payment method and card support",
"deposit_cancelled_title": "Your deposit was cancelled",
"deposit_cancelled_description": "You requested a cancellation of your deposit.",