-
Notifications
You must be signed in to change notification settings - Fork 393
/
messages.json
1038 lines (1038 loc) · 41.7 KB
/
messages.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
{
"accounts": {
"accountItem": {
"noNameError": "Name is required",
"editName": "Edit name",
"saveName": "Save name",
"typeNewName": "Type new name",
"cancel": "Cancel",
"regularWarning": "Removing this address doesn't delete your recovery phrase or any private keys. Instead it just hides it from the extension and you won't be able to use it until you add it back.",
"loudWarningTitle": "Removing this address will remove its associated account from the UI.",
"loudWarningBody": "Are you sure you want to proceed?",
"lastAccountWarningTitle": "Once this account is removed you won't be able to use the wallet until you complete onboarding again.",
"lastAccountWarningBody": "Are you sure you want to proceed?",
"removeAddress": "Remove address",
"copyAddress": "Copy address",
"removeConfirm": "Yes, I want to remove it",
"showPrivateKey": {
"header": "Show Private Key",
"warningMessage": "Anybody that has your Private Key can move your assets.",
"privateKeyInfo": "What is a Private Key?",
"privateKey": "Private key",
"exportingPrivateKey": {
"header": "Exporting Private Key for:",
"confirmationDesc": "I understand that other Private Keys, Recovery Phrases, Ledger or Read-only accounts will not be saved with this recovery phrase.",
"invalidMessage": "Check the above box to confirm",
"showBtn": "Show Private Key",
"copyBtn": "Copy Private key to clipboard",
"copySuccess": "Copied!"
},
"explainer": {
"header": "What is a private key?",
"text1": "A private key is also known as a secret key is a string of letter and numbers that allow you to access and manage your assets on one address.",
"text2": "A private key only unlocks one address, while a recovery phrase unlocks all addresses that are tied to that phrase.",
"text3": "If you don’t use recovery phrase, you need to save a private key for each address."
}
},
"showMnemonic": {
"header": "Show Recovery Phrase",
"warningMessage": "Anybody that has your recovery phrase can move your assets.",
"mnemonicInfo": "Why do i need a recovery phrase?",
"exportingMnemonic": {
"confirmationDesc": "I understand that other Recovery Phrases, Ledger, Private Keys or Read-only accounts will not be saved with this recovery phrase.",
"invalidMessage": "Check the above box to confirm",
"showBtn": "Show recovery phrase",
"copyBtn": "Copy phrase to clipboard",
"copySuccess": "Copied!",
"address_one": "address",
"address_other": "addresses"
},
"explainer": {
"header": "Why do i need a recovery phrase?",
"text1": "You need a recovery phrase in case you lose access to your computer, wallet or you forget your password.",
"text2": "Recovery phrase is the only way to regain access to your funds stored on those addresses.",
"text3": "Taho has the option to import or create multiple recovery phrases. If you have multiple, make sure that you have safely save and store them all."
}
},
"copyWarning": {
"header": "Copying to clipboard",
"title": "Careful copying content to clipboard",
"description": "It is dangerous to copy your recovery phrase or private key to clipboard, this can result in somebody gaining access to it",
"dontAsk": "Don’t ask me again",
"submitBtn": "Copy to clipboard"
}
},
"notificationPanel": {
"accountPanelName": "Accounts",
"addWallet": "Add Wallet",
"addAddress": "Add address",
"readOnly": "Read-only",
"import": "Import",
"internal": "Taho",
"ledger": "Ledger",
"privateKey": "Private key",
"category": {
"readOnly": "Preview",
"ledger": "Hardware wallets",
"others": "Imported & generated"
},
"signing": {
"lock": "Lock signing",
"unlock": "Unlock signing"
},
"snackbar": "Signing locked"
}
},
"viewAddressOnBlockExplorer": "View address on {{blockExplorer}}",
"assets": {
"viewAsset": "View asset on {{siteTitle}}",
"openNetworkExplorer": "Open network explorer",
"verifyAsset": "Verify asset",
"unverifiedAsset": "Asset not verified",
"verifiedByUser": "Verified by you"
},
"assetInput": {
"search": "Search by name or address",
"searchNFT": "Search NFT",
"selectToken": "Select token",
"error": {
"invalidAmount": "Invalid amount",
"insufficientBalance": "Insufficient balance"
}
},
"priceDetails": {
"priceImpactTooltip": {
"firstLine": "Price impact between assets is high.",
"secondLine": "This is due to low liquidity of the swap pair."
},
"noAssetPrice": "No price information",
"noAssetPriceTooltip": {
"firstLine": "We're not able to receive prices for these assets now.",
"secondLine": "Continuing without price information might lead to a loss in value."
}
},
"comingSoon": "Coming soon",
"dappConnection": {
"connectToDapp": "Connect to dApp",
"dappPermissionListTitle": "dApp would get permission to:",
"viewAddressPermission": "View address of connected account",
"createTransactionPermission": "Create but not sign transactions for you",
"rejectConnection": "Reject",
"acceptConnection": "Connect"
},
"genericPages": {
"pageDoesNotExist": "This page does not exist. That's all we know.",
"errorPageTitle": "Unexpected Error",
"returnHome": "Return Home"
},
"keyring": {
"setPassword": {
"title": "Set unlock signing password",
"subtitleFirstLine": "You will be asked to enter this",
"subtitleSecondLine": "password to unlock signing transactions.",
"password": "Password",
"repeatPassword": "Repeat password",
"restorePassword": "Restoring account?",
"submitBtn": "Begin the hunt",
"error": {
"characterCount": "Must be at least 8 characters",
"noMatch": "Passwords don’t match"
}
},
"unlock": {
"title": "Unlock signing",
"subtitle": "Enter your signing password to continue",
"submitBtn": "Unlock",
"signingPassword": "Signing password",
"forgotPassword": "Forgot password?",
"error": {
"incorrect": "Incorrect password"
},
"snackbar": "Signing unlocked"
}
},
"ledger": {
"checkLedger": "Check Error",
"onlyRejectFromLedger": "Tx can only be Rejected from Ledger",
"onboarding": {
"connecting": "Connecting...",
"prepare": {
"continueButton": "Continue",
"tryAgainButton": "Try Again",
"subheadingWord1": "start",
"subheadingWord2": "retry",
"subheading": "Make sure you take these 3 steps before we {{subheadingWord}}",
"initialScreenHeader": "Before we get started",
"header": "Check your Ledger",
"noLedgerConnected": "No Ledger device is connected",
"multipleLedgersConnected": "Multiple Ledgers are connected",
"stepsExplainer": "Please follow the steps below and click on Try Again!",
"step1": "Plug in a single Ledger",
"step2": "Enter pin to unlock",
"step3": "Open Ethereum App",
"tip": "After clicking continue, select device and click connect"
},
"selectDevice": "Select the device",
"clickConnect": "Click connect",
"previous": "Previous",
"next": "Next",
"selectLedgeraccounts": "Select Ledger accounts",
"multipleLedgersDescriptor": "You can select as many as you want",
"connectSelectedLedger": "Connect selected",
"doneMessageOne": "Congratulations!",
"doneMessageTwo": "You can open Taho now.",
"onboardingSuccessful": "Selected accounts were successfully connected.",
"closeTab": "Close tab"
},
"connectionStatus": {
"availableButNoSigning": "Ledger is connected but cannot sign",
"readyToSign": "Ledger is ready to sign",
"disconnected": "Ledger is disconnected",
"wrongLedger": "Wrong Ledger connected",
"multipleLedgers": "Multiple ledgers connected",
"busy": "Ledger is busy",
"state.connected": "Connected",
"state.disconnected": "Disconnected",
"state.error": "Check error",
"state.unknown": "Unknown"
},
"activation": {
"title": "Activate blind signing",
"helpMessage": "Take the following steps:",
"step1": "Open Ethereum app on Ledger",
"step2": "Navigate to Settings",
"step3": "Enable blind signing"
},
"busy": {
"title": "Ledger is busy",
"helpMessage": "Looks like your Ledger has another signature in progress.",
"step1": "Accept or Reject transaction on device",
"step2": "Refresh page"
},
"notConnected": {
"title": "Connect to Ledger",
"helpMessage": "Take the following steps:",
"step1": "Plug in Ledger",
"step2": "Enter PIN to unlock",
"step3": "Open Ethereum app"
},
"multipleLedgersConnected": {
"title": "Multiple Ledgers are connected",
"helpMessage": "Take the following steps:",
"step1": "Remove all Ledgers but one",
"step2": "Enter PIN to unlock",
"step3": "Open Ethereum app"
},
"wrongLedger": {
"title": "Wrong Ledger",
"helpMessage": "Looks like you are using the wrong Ledger.",
"connectLedger": "Connect the Ledger containing this account:",
"refresh": "Refresh the page"
},
"derivationPaths": {
"ledgerLive": "Ledger Live",
"bip44": "BIP 44 (Trezor, 🦊)",
"ethTestnet": "Ethereum Testnet",
"ledgerLegacy": "Ledger Legacy",
"rsk": "Rootstock",
"rskTestnet": "Rootstock Testnet"
}
},
"networkFees": {
"unknownFee": "Unknown",
"toBeDetermined": "TBD",
"settingsTitle": "Network fees (Gwei)",
"gasLimit": "Gas limit",
"settingsDisabledOne": "Chain doesn't support",
"settingsDisabledTwo": "gas settings",
"estimatedNetworkFee": "Estimated network fee",
"insufficientBaseAsset": "Not enough {{symbol}} for network fees",
"totalMax": "Total Max",
"saveSettings": "Save settings",
"errors": {
"limitTooLow": "Gas Limit must be higher than 21000",
"invalidLimit": "Gas Limit must be a number",
"lowGas": "Low"
},
"optimism": {
"title": "Network fees",
"header": "Gas fees on {{name}} work differently from Ethereum.",
"transactionFee": "Transaction fee",
"rollUp": "Roll-up",
"estimatedGas": "Estimated Gas",
"explainerOne": "The estimated gas cost for {{name}} transactions includes an {{name}} fee + an Ethereum roll-up fee (the fee to register transaction on Ethereum chain).",
"explainerTwo": "Taho stays in sync with the current {{name}} and Ethereum network fees to estimate the fee for a given transaction.",
"explainerThree": "Only in rare cases will the actual fee you pay change by more than 25% from the estimate.",
"learnMore": "Learn More"
},
"rsk": {
"title": "Network fees",
"header": "Gas fees on RSK work differently from Ethereum.",
"minGasPrice": "Minimum Gas Price",
"multiplier": "10%",
"percentage": "percentage",
"estimatedGas": "Estimated Gas",
"explainerOne": "The estimated gas price for RSK transactions is calculated by adding 10% to the Minimum Gas Price obtained from the latest mined block.",
"explainerTwo": "Taho stays in sync with the current RSK and Ethereum network fees to estimate the fee for a given transaction.",
"explainerThree": "Only in rare cases will the actual fee you pay change by more than 10% from the estimate.",
"learnMore": "Learn More"
},
"bsc": {
"title": "Coming soon!",
"description": "Changing network fees for BNB Chain is not currently available."
},
"miner": "Miner:",
"maxBase": "Max Base:",
"speeds": {
"0": "-",
"70": "~5 min",
"95": "~1 min",
"99": "~30 sec"
},
"types": {
"regular": "Regular",
"express": "Express",
"instant": "Instant",
"custom": "Custom"
}
},
"nfts": {
"noTitle": "No title",
"type1": "NFTs",
"type2": "badges",
"noMatchingNFTs": "No {{type}} matching your filters",
"collectionHover": {
"close": "close",
"expand": "expand collection",
"view": "view details"
},
"preview": {
"owner": "Owner",
"floorPrice": "Floor price",
"send": "Send",
"viewOn": "View on",
"description": "Description",
"itemsCount": "Items in collection",
"creator": "Creator",
"properties": "Properties",
"refresh": "Refresh properties",
"rank": "Rank",
"rarityRank": "Rarity rank"
},
"units": {
"nft_one": "NFT",
"nft_other": "NFTs",
"badge_one": "Badge",
"badge_other": "Badges",
"collection_one": "Collection",
"collection_other": "Collections"
},
"header": {
"title": "Total NFTs floor price",
"addAccountCTA": "Add account",
"emptyTitle": "No NFTs here",
"emptyDesc": "Add more accounts to see your NFTs, you can also just add read-only accounts"
},
"emptyBannerTitle": {
"nfts": "Explore markets",
"badge": "Explore badges"
},
"networksBanner": "Not seeing NFTs from all your networks? Activate a network by switching to it on the Wallet tab.",
"filters": {
"title": "Filter collections",
"tooltip": "Filter",
"warning": "Changing filters here will affect your Portfolio page as well.",
"sortType": {
"priceDesc": "Floor price: Descending",
"priceAsc": "Floor price: Ascending",
"newestAdded": "Newest added",
"oldestAdded": "Oldest added",
"numberInOneCollection": "Number (in 1 collection)"
},
"sortTypeTitle": "Sort collection",
"collectionsTitle": "Show/hide collections",
"accountsTitle": "Show/hide accounts",
"noCollections": "No collections"
}
},
"onboarding": {
"tabbed": {
"walletShortcut": "Did you know that you can open Taho using a keyboard shortcut?",
"routeBasedContent": {
"newSeed": {
"tip": "If you want an easy way to preview Taho, you can start by adding a read only account.",
"action": "Add preview account"
},
"addWallet": {
"tip": "Several of Taho's most popular features were developed by our community."
},
"viewOnly": {
"tip": "A good way to take a peek at what Taho offers."
},
"importSeed": {
"tip": "Taho offers the possibility of adding multiple recovery phrases."
},
"default": {
"fact1": "Fully owned by the community",
"fact2": "Accessible to everyone",
"fact3": "100% open source"
}
},
"intro": {
"title": "Let's get you set up!",
"useExisting": "Use existing wallet",
"createNew": "Create new wallet"
},
"addWallet": {
"title": "Use existing wallet",
"titleExisting": "Add account",
"tip": "You can always add more wallets later.",
"existingListTitle": "Existing account",
"newWalletTitle": "New wallet",
"options": {
"importSeed": "Import recovery phrase",
"importPrivateKey": "Import private key",
"ledger": "Connect to Ledger",
"readOnly": "Read-only address",
"createNew": "Create new wallet"
},
"importSeed": {
"title": "Import secret recovery phrase",
"subtitle": "Paste or type your 12 to 24 word secret recovery phrase below.",
"inputLabel": "Input recovery phrase",
"submit": "Import account",
"errors": {
"pasteRecoveryPhrase": "Paste recovery phrase",
"phraseLengthError": "Must be a 12 or 24 word recovery phrase",
"invalidPhraseError": "Invalid recovery phrase"
}
},
"importPrivateKey": {
"title": "Import private key",
"subtitle": "Importing a private key does not associate it to a secret recovery phrase, but it’s still protected by the same password",
"inputLabel": "Paste private key string",
"submit": "Import account",
"errorImport": "Importing private key failed",
"privateKey": "Private key",
"password": "JSON file password",
"json": "JSON",
"browseFiles": "<span>Browse files</span> or drag and drop your {{type}} file",
"uploading": "Uploading...",
"uploadFail": "Upload failed, try again",
"wrongFile": "Wrong file, only {{type}} accepted",
"decrypt": "Decrypt file",
"decrypting": "Decrypting file",
"decryptingTime": "this may take up to 1 minute",
"finalize": "Finalize",
"completed": "Completed!",
"address": "address",
"wrongPassword": "Wrong password or incorrect file. Ensure file is correct and enter the password you used when encrypting it."
},
"viewOnly": {
"title": "Read-only address",
"subtitle": "Add an Ethereum address or ENS name to view an existing wallet in Taho",
"submit": "Preview Taho",
"tip": "You can upgrade a read-only wallet later."
}
},
"newWalletIntro": {
"title": "Before we get started",
"warning": "It's important to write down your secret recovery phrase and store it somewhere safe.<br /><br />This is the only way to recover your accounts and funds.<br /><br /><u>You will not be able to export your recovery phrase later.</u>",
"submit": "Create recovery phrase",
"tip": "You can upgrade a read-only wallet later."
},
"unlockWallet": {
"title": "Password required",
"passwordInput": "Signing password",
"submit": "Confirm"
},
"newWalletReview": {
"title": "Save and store your recovery phrase",
"submit": "I wrote it down",
"copyAddressAction": "Copy phrase to clipboard"
},
"newWalletVerify": {
"title": "Verify recovery phrase",
"subtitle": "Click on each word in the order that you are asked to",
"validState": "Verified",
"invalidState": "Incorrect Order",
"invalidStateMsg": "Verify the order and remove the ones that aren't in the right position.",
"verifyValidState": "Verify recovery phrase",
"submit": "Finalize",
"tip": "If you didn’t write it down, you can <url>start with a new phrase.</url>"
},
"complete": {
"title": "Welcome to Taho",
"titleExisting": "Account added to Taho!",
"subtitle": "For faster access we recommend pinning Taho to your browser",
"animationAlt": "Pin the wallet"
}
},
"setPassword": {
"title": "First, let's secure<br /> your wallet",
"setAsDefault": "Set Taho as default wallet",
"submit": "Begin the hunt"
},
"steps": {
"create": "Create",
"save": "Save",
"verify": "Verify"
},
"seedVerification": {
"seedIsInWrongOrder": "Wrong Order",
"seedMismatchExplainer": "We are sorry, the recovery phrase you entered did not match. You can try to re-order them, but make sure you have them written down.",
"createNewWallet": "If you prefer you can <1><0>create a new wallet.<0></1>",
"retryVerification": "Try again",
"verifySeedPrompt": "Verify recovery phrase",
"successMessage": "Congratulations!",
"successExplainer": "Secret recovery phrase is correct and you can now start using your new wallet.",
"successButton": "Take me to my wallet"
},
"addWallet": {
"addExistingAccount": "Add existing accounts",
"importWallet": "Import recovery phrase",
"addLedger": "Connect to Ledger",
"addReadOnly": "Read-only address",
"addNewAccount": "Add new recovery phrase",
"createNewWallet": "Create new wallet",
"addAccounts": "Add accounts",
"importExistingWallet": {
"pasteRecoveryPhrase": "Paste recovery phrase",
"phraseLengthError": "Must be a 12 or 24 word recovery phrase",
"invalidPhraseError": "Invalid recovery phrase",
"importAccount": "Import account",
"enterPhrasePrompt": "Copy paste or write down a 12 or 24 word secret recovery phrase.",
"helpFindPhrase": "How do I find the recovery phrase?"
}
},
"derivationPath": "Derivation path",
"addDerivationPath": "Add derivation path",
"pathLabel": "Label",
"customPath": "Custom path",
"addCustomPath": "Add custom path"
},
"overview": {
"totalBalanceEverywhere": "Total balance on all accounts",
"accounts": "Accounts",
"assets": "Assets",
"networks": "Networks",
"nfts": "{{nfts}} in {{collections}} & {{badges}}",
"nftsTooltip": "NFTs here are shown based on your filters in the NFT page.",
"units": {
"nft": "<strong>1</strong> NFT",
"nft_other": "<strong>{{count}}</strong> NFTs",
"collection": "<strong>1</strong> Collection",
"collection_other": "<strong>{{count}}</strong> Collections",
"badge": "<strong>1</strong> Badge",
"badge_other": "<strong>{{count}}</strong> Badges"
},
"tableHeader": {
"asset": "Asset",
"assets": "Assets",
"price": "Price",
"balance": "Balance"
}
},
"passwordStrength": {
"weak": "Weak",
"average": "Average",
"strong": "Strong",
"strength": "Strength",
"hintDesc": "For a strong password, consider a mix of lower and uppercase characters, symbols, and numbers. Passwords should be over 8 characters."
},
"popupEdition": "Community Edition",
"protocol": {
"mainnet": "Mainnet",
"beta": "Mainnet (beta)",
"testnet": "Test Network",
"l2": "L2 scaling solution",
"compatibleChain": "EVM-compatible blockchain",
"avalanche": "Mainnet C-Chain",
"connected": "Connected"
},
"readOnly": "Read-only",
"readOnlyNotice": "Read-only mode",
"settings": {
"group": {
"general": "General",
"walletOptions": "Networks & Assets",
"helpCenter": "Help center"
},
"mainMenu": "Settings",
"signing": "Signing",
"showNotifications": "Show Subscape notifications",
"hideSmallAssetBalance": "Hide asset balances under {{sign}}{{amount}}",
"setAsDefault": "Use Taho as default wallet",
"enableTestNetworks": "Show testnet networks",
"showUnverifiedAssets": "Show unverified assets",
"language": "Language",
"bugReport": "Bug report",
"connectedWebsites": "Connected websites",
"addCustomAsset": "Custom assets",
"analytics": "Analytics",
"autoLockTimer.label": "Auto-lock timer",
"autoLockTimer.tooltip": "How long after your last interaction should we lock the wallet?",
"autoLockTimer.interval": "{{time}} min",
"needHelp": "Need Help?",
"customNetworks": "Custom networks (beta)",
"showBanners": "Show achievement banners",
"versionLabel": "Version {{version}}",
"unknownVersionOrCommit": "<unknown>",
"useFlashbots": "Use Flashbots RPC by default",
"useFlashbotsTooltip": "Sends all transactions through Flashbots to protect against frontrunning and shares MEV back with you.<br/><br/>This can leak some information about your transactions to searchers, see the <url>Flashbots documentation</url> for more.",
"exportLogs": {
"title": "Bug report",
"discordTitle": "1. Join #bug-reports on Discord",
"discordDesc": "Visit us on our Discord channel, and report your bug there. Make sure to include the logs.",
"discordBtn": "Join Discord",
"logTitle": "2. Export logs",
"logDesc": "To better understand your bug, we need you to export your logs.",
"logBtn": "Export logs",
"ariaLabel": "Open bug report"
},
"analyticsSetUp": {
"title": "Analytics",
"toggleTitleOn": "Analytics are on",
"toggleTitleOff": "Analytics are off",
"toggleDesc": "Analytics help us understand your needs and empower us to build a better wallet for you",
"recordTitle": "Info we collect",
"recordItemTrends": "Overall user trends",
"recordItemUsage": "Feature usage",
"noRecordTitle": "We never collect",
"noRecordItemSeed": "Recovery phrase",
"noRecordItemInfo": "Personal Information",
"noRecordItemBalances": "Addresses, balances, or transactions",
"policyBtn": "Privacy policy",
"deleteBtn": "Delete my data",
"ariaLabel": "Open analytics",
"analyticsOffSlideUpMenu": {
"title": "Turn Analytics off?",
"desc": "Are you sure you want to turn analytics off?",
"submitBtn": "Yes, turn off",
"snackbar": "Analytics are off, re-enable at any time"
},
"deleteSlideUpMenu": {
"title": "Delete your data?",
"desc": "Are you sure you want to delete your data?",
"submitBtn": "Yes, delete data",
"snackbar": "Private data will be removed soon"
}
},
"connectedWebsitesSettings": {
"title": "Connected websites",
"disconnected": "Website disconnected",
"disconnectTooltip": "Disconnect website",
"ariaLabel": "Manage connected websites",
"emptyList": "Not connected to any websites"
},
"addCustomAssetSettings": {
"title": "Add custom asset",
"input.contractAddress.label": "Contract address",
"input.tooltip": "Find the asset on your favorite block explorer, then copy the contract address here.<br><br>Haven't done this before? Check out <url>Knowledge Center</url> first.",
"asset.label.balance": "Balance",
"asset.label.symbol": "Name",
"networkSelect.title": "Select Network",
"warning.alreadyExists.title": "Asset already exists",
"warning.alreadyExists.desc": {
"dust": "Your balance is under {{sign}}{{amount}}. You will see it once you turn off “{{settings}}” in Settings.",
"noBalance": "Your balance is 0, you will see it once your balance is over {{sign}}{{amount}}.",
"visibility": "You should see it in your asset list."
},
"warning.dust.title": "Asset balance is under {{sign}}{{amount}}, you wil see it once your balance is over {{sign}}{{amount}}",
"error.invalidToken": "Invalid contract address",
"submit": "Add asset",
"snackbar.success": "Asset added successfully",
"snackbar.failed": "Failed to look up token details",
"footer.hint": "How to add a custom asset"
},
"customNetworksSettings": {
"title": "Custom networks (beta)",
"ariaLabel": "Open custom networks page",
"subtitleAdded": "Manage chains",
"subtitleAddMore": "Add more chains",
"deleteModal.title": "Remove custom network?",
"deleteModal.desc": "You are removing <name>{{name}}</name>. This means you won't be able to see assets from it and it won't be in your network selection list.",
"deleteModal.confirm": "Remove",
"networksList": {
"typeCustom": "Custom network"
},
"chainList": {
"description": "<url></url> is the fastest, safest way to add a custom network. Just connect your wallet, search for the network you want to add, and click <strong>Add to Taho</strong>.",
"addBtn": "Add chains with ChainList"
},
"customRPC": {
"description": "You can also add a custom RPC, this can be a bit risky as you might add a malicious RPC without knowing, that could result in loss of funds.",
"addBtn": "Add custom RPC (Advanced)"
}
},
"unverifiedAssets": {
"tooltip": "Discover assets that you own but are not on our asset list. Some spam/scam assets may show up, so treat them with caution.<br/><br/>They will show up on the bottom of the asset page until you verify them."
}
},
"send": {
"balance": "Balance: {{amount}}"
},
"shared": {
"taho": "Taho",
"metaMask": "MetaMask",
"injected": "Injected",
"cancelBtn": "Cancel",
"gwei": "Gwei",
"send": "Send",
"swap": "Swap",
"showPasswordHint": "Show Password",
"hidePasswordHint": "Hide Password",
"close": "Close",
"readMore": "Read more",
"modalClose": "Background close",
"accountItemSummary": {
"connectedStatus": "Connected"
},
"mouseOverToShow": "Mouse over to show",
"selectToken": "Select token",
"backButtonText": "Back",
"saveBtn": "Save",
"closeWindow": "Close window",
"copyTextSnackbar": "Copied to clipboard"
},
"signing": {
"signatureRequired": "Your signature is required",
"message": "Message",
"signed": "Signed,",
"type": "Type",
"EIP4361": {
"subtext1": "Wants you to sign in with your",
"subtext2": "Ethereum account:",
"statement": "Statement",
"nonce": "Nonce",
"version": "Version",
"chainID": "Chain ID",
"expiration": "Expiration"
}
},
"signTransaction": {
"title": "Sign transaction",
"awaitingHardwareSignature": "Awaiting hardware wallet signature",
"reject": "Reject",
"noSigning": "Read-only accounts cannot sign",
"contractCreation": "Contract creation",
"unknownNetwork": "Unknown Network",
"detailPanelName": "Details",
"rawDataPanelName": "Raw data",
"rawDataCopyMsg": "Raw data copied to clipboard",
"copyRawData": "Copy hex",
"spendAmount": "Spend Amount",
"help": "I need help",
"refresh": "Refresh",
"confirmButtonLabel": "Sign",
"unsavedChangesTooltip": "You have unsaved changed",
"useFlashbots": "Use Flashbots RPC for this transaction",
"spendApproval": {
"title": "Approve asset spend",
"approveSpender": "Approve <spenderAddress></spenderAddress>",
"spendAmount": "Spend {{assetSymbol}} tokens",
"approve": "Approve",
"infinite": "Infinite",
"spend": "Spend",
"tokens": "tokens",
"spendLimit": "Spend limit",
"tooltip1": "Spend limit is the amount of funds from a particular asset that you allow a contract to spend.",
"tooltip2": "Infinite tx has the drawback that if the contract is malicious, it can steal all your funds.",
"changeLimit": "Change limit",
"invalidAmount": "Invalid amount"
},
"assetTransfer": {
"title": "Transfer",
"sendTo": "Send to",
"spendAmountLabel": "Spend Amount"
},
"contractInteraction": {
"title": "Contract interaction",
"interactingWithLabel": "Interacting with",
"newlyCreatedContract": "Newly created contract"
},
"signTypedData": {
"authorizeDeposit": "Authorize Deposit",
"signMessage": "Sign {{messageType}}",
"confirmButtonLabel": "Confirm"
},
"swap": {
"title": "Swap assets",
"balanceChange": "Balance change",
"daoFee": "DAO fee",
"exchangeRoute": "Exchange route"
}
},
"addNewChain": {
"subtitle": "Wants to add a custom network to Taho",
"name": "Name",
"chainId": "Chain ID",
"currency": "Currency",
"rpc": "RPC",
"explorer": "BlockExplorer",
"submit": "Add network",
"cancel": "Reject",
"warnAlreadyExistsHeader": "Network already added to Taho.",
"warnAlreadyExistsBody": "You can switch to it from Network dropdown"
},
"swap": {
"title": "Swap Assets",
"from": "Swap from:",
"to": "Swap to:",
"sellAsset": "You pay",
"buyAsset": "You receive",
"approveAsset": "Approve Asset",
"waitingForApproval": "Waiting for approval transaction...",
"switchAssets": "Switch Assets",
"swapRewardsTeaser": "Swap rewards coming soon",
"continueSwap": "Continue Swap",
"loadingQuote": "Fetching price",
"rewards": {
"header": "Swap rewards for community",
"body": "This week, 240,000 DOGGO tokens will be equally shared as Swap Rewards.",
"tooltip": "Taho rewards its users that use swap every week. A council decides weekly prizes and who is eligible.",
"detailButton": "Details"
},
"error": {
"noSellAsset": "Attempting to approve transfer without a sell asset.",
"noApprovalTarget": "Attempting to approve transfer without an approval target.",
"nonContractAsset": "Attempting to approve transfer of a non-contract asset."
},
"reviewSwap": "Review swap"
},
"toggle": {
"collapse": "Collapse",
"viewAll": "View all"
},
"topMenu": {
"showCurrentDappConnection": "Show current website connection",
"currentDappConnection": "Current website connection",
"connectToWebsiteUsing": "Connect to website using:",
"setTahoAsDefault": "Set Taho as default",
"setOtherAsDefault": "Set MetaMask/other wallet as default",
"rewardsProgram": "Rewards program",
"copyAddressTooltip": "Copy address",
"addressCopiedMsg": "Address copied to clipboard",
"protocolList": {
"testnetsSectionTitle": "Testnets",
"customNetworksSectionTitle": "Custom networks",
"networkSettingsBtn": "Add network (beta)"
},
"connectedDappInfo": {
"dAppTitle": "Account connected to",
"dappConnections": "Website connections",
"disconnectDapp": "Disconnect Dapp",
"guideline": {
"title": "How to connect to websites",
"step1": "Connect using Taho",
"step2": "Click “connect” on a website",
"step3": "Select one similar to these"
},
"walletConnectInfo": "You can now connect to any dapp that supports Wallet Connect by selecting Taho from desktop tab. <url>Learn more</url>",
"walletConnectHint": "Check the desktop tab in the connection modal"
}
},
"wallet": {
"activities": {
"defaultHistoricalActivityExplainer": "All your new transactions will show up here.",
"historicalActivityExplainer": "Taho will populate your historical activity over time; this may take an hour or more for accounts that have been active for a long time. For new accounts, new activity will show up here.",
"endOfList": "You have reached the end of activity list.",
"moreHistory": "For more history visit",
"tokenApproved": "Token approval",
"contractInteraction": "Contract Interaction",
"tokenReceived": "Received",
"tokenSent": "Send",
"infiniteApproval": "Infinite",
"tokenSwapped": "Swap",
"transactionFailed": "Failed",
"transactionDropped": "Dropped",
"transactionPending": "Pending...",
"contractCreation": "(Contract creation)",
"transactionTo": "To:",
"transactionFrom": "From:",
"loadingActivities": "Digging deeper...",
"addCustomAssetPrompt": "Can't find an asset?",
"addCustomAssetAction": "Add custom asset"
},
"banner": {
"bannerTitle": "New Odyssey week!",
"emptyBannerContent": "Check out Arbitrum Odyssey campaign",
"notificationTitle": "Odyssey notifications",
"notificationDismissInfo": "Want to receive future Odyssey notifications? We will show you one every week that you can dismiss.",
"showNotifications": "Yes, show notification",
"dontShowNotifications": "No thanks",
"startNow": "Start now",
"learnMore": "Learn More",
"snackbar": "You can turn notification back from Settings"
},
"totalAccountBalance": "Total account balance",
"send": "Send",
"swap": "Swap",
"swapDisabledOne": "Swaps aren't supported",
"swapDisabledTwo": "on this network",
"receive": "Receive",
"secureSeed": "First, secure your recovery seed",
"sendAsset": "Send Asset",
"assetAmount": "Asset / Amount",
"sendTo": "Send To:",
"sendButton": "Continue",
"receiveAddress": "Receive address",
"sendToContractWarning": "This is a contract address, sending assets could result in loss of funds.",
"pages": {
"assets": "Assets",
"NFTs": "NFTs",
"activity": "Activity"
},
"defaultToggle": {
"snackbar": "You can change this in Settings later",
"isDefault": "is now your default wallet",
"notDefault": "is not your default wallet",
"tooltip": "Setting Taho as your default wallet means that every time you connect to a website, Taho will open instead of MetaMask or other wallets."
},
"analyticsNotification": {
"title": "Analytics are enabled",
"description": "They help us improve the wallet. You can disable anytime",
"settingsLink": "Change settings"
},
"unverifiedAssets": {
"stateOfHiddenAssets1": "Hide",
"stateOfHiddenAssets2": "See",
"hiddenAssets": "{{stateOfHiddenAssets}} unverified assets ({{amount}})",
"verifyAsset": "Verify asset"
},
"verifiedAssets": {
"assetImported": "Asset automatically imported",
"symbol": "Symbol",
"contract": "Contract address",
"discoveryTxHash": "Added from transaction",
"dontShow": "Don’t show",
"addToAssetList": "Add to asset list",
"verifyAssetSnackbar": "Asset added to list",
"removeAssetSnackbar": "Asset removed from list",
"banner": {
"titleUnverified": "Asset not verified",
"titleVerified": "Asset verified by you",
"description": "Be aware of scam and spam assets, only interact with assets you trust."
}
}
},
"dAppConnect": {
"defaultConnectionPopover": {
"title": "Connecting with Taho",
"activeWallet": "Your active wallet is Taho.",
"activeWalletMeaning": "This means that you'll be connecting to websites with Taho even when selecting MetaMask.",
"metaMaskHeading": "Want to switch to MetaMask?",
"toggleLabel": "Use the toggle at the top to connect with MetaMask or another wallet."
}
},
"abilities": {
"header": "Portfolio abilities",
"emptyState": {
"title": "No abilities here",
"desc": "Add more accounts to see your abilities or change filters",
"addBtn": "Add account"
},
"banner": {
"description": "Daylight tells you when you qualify for an airdrop, mint or unlock.",
"seeAbilities": "See your abilities",
"open": "Open",
"none": "None"
},
"timeDetails": {
"day_one": "day",
"day_other": "days",
"timeStartingDays_one": "Starting in {{count}} day",
"timeStartingDays_other": "Starting in {{count}} days",
"timeClosesDays_one": "Closes in {{count}} day",
"timeClosesDays_other": "Closes in {{count}} days"
},
"viewWebsiteBtn": "Visit website",
"markBtn": "Mark as Completed",
"snackbar": "Marked as completed",
"deleteBtn": "Delete",
"deleteSlideUpMenu": {
"title": "Delete ability?",
"desc": "If you delete an ability you won't be able to see it anymore",
"spamPrompt": "Is this ability spam?",
"selectSpamReason": "Select reason for reporting",
"spamReason": {
"spam": "Spam",
"inaccurateInfo": "Inaccurate information",
"copyright": "Copyright violation",
"scam": "Scam",
"duplicate": "Duplicate"
},
"reportSpamBtn": "Yes, report spam",
"submitBtn": "Yes, delete",
"submitSpamBtn": "Yes, report & delete",
"snackbar": "Ability deleted"
},
"filters": {
"title": "Filter Abilities",
"tooltip": "Filter",
"abilityState": {
"open": "Open",
"completed": "Completed",
"expired": "Expired",
"deleted": "Deleted",
"all": "All"
},
"abilityTypeDesc": {
"vote": "A proposal that someone can vote on based on a token they hold.",
"claim": "On-chain reward that someone can claim that is not a mint or airdrop.",
"airdrop": "A ERC-20 token airdrop, usually not promised in advance.",
"mint": "A ERC-721 or ERC-11555 token mint.",
"access": "A general off-chain token-gated experience, often a group chat.",
"event": "An event, often at a conference or a token-gated online experience.",
"article": "A blog post or article about a specific token.",
"result": "The result of a vote proposal.",
"misc": "An ability that does not fall into any of these types."
},
"abilityStateTitle": "Show",
"abilitiesTypesTitle": "Notify me about abilities type",
"accountsTitle": "Show/hide accounts",
"accountsReadOnlyInfo": "Read-only accounts can’t see abilities. If you can, we recommend you import the address you want to see abilities for.",
"noAccounts": "No accounts"
}
},
"globalError": {
"title": "Ups, nothing to see here",
"desc": "Looks like you encountered an empty bowl, try refreshing the page to see if something appears",