-
Notifications
You must be signed in to change notification settings - Fork 5k
/
messages.json
6083 lines (6083 loc) · 199 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
{
"QRHardwareInvalidTransactionTitle": {
"message": "错误"
},
"QRHardwareMismatchedSignId": {
"message": "不一致的交易数据。请查看交易详情。"
},
"QRHardwarePubkeyAccountOutOfRange": {
"message": "暂无更多账户。若想访问下方未列出的其他账户,请重新连接您的硬件钱包并选择它。"
},
"QRHardwareScanInstructions": {
"message": "将二维码放在摄像头前。屏幕是模糊的,但不影响对二维码的读取。"
},
"QRHardwareSignRequestCancel": {
"message": "拒绝"
},
"QRHardwareSignRequestDescription": {
"message": "使用钱包签名后,点击“获取签名”以接收签名"
},
"QRHardwareSignRequestGetSignature": {
"message": "获取签名"
},
"QRHardwareSignRequestSubtitle": {
"message": "用您的钱包扫描二维码"
},
"QRHardwareSignRequestTitle": {
"message": "请求签名"
},
"QRHardwareUnknownQRCodeTitle": {
"message": "错误"
},
"QRHardwareUnknownWalletQRCode": {
"message": "二维码无效。请扫描硬件钱包的同步二维码。"
},
"QRHardwareWalletImporterTitle": {
"message": "扫描二维码"
},
"QRHardwareWalletSteps1Description": {
"message": "您可以从下面的官方二维码支持合作伙伴列表中选择。"
},
"QRHardwareWalletSteps1Title": {
"message": "关联您的二维码硬件钱包"
},
"SIWEAddressInvalid": {
"message": "登录请求中的地址与您用于登录的账户地址不匹配。"
},
"SIWEDomainInvalidText": {
"message": "您尝试登录的网站与请求中的域名不匹配。请谨慎操作。"
},
"SIWEDomainInvalidTitle": {
"message": "虚假网站请求。"
},
"SIWEDomainWarningBody": {
"message": "网站($1)要求您登录到错误的域名。这可能是网络钓鱼攻击。",
"description": "$1 represents the website domain"
},
"SIWEDomainWarningLabel": {
"message": "不安全"
},
"SIWELabelChainID": {
"message": "链 ID:"
},
"SIWELabelExpirationTime": {
"message": "到期时间:"
},
"SIWELabelIssuedAt": {
"message": "发行于:"
},
"SIWELabelMessage": {
"message": "消息:"
},
"SIWELabelNonce": {
"message": "Nonce:"
},
"SIWELabelNotBefore": {
"message": "不早于:"
},
"SIWELabelRequestID": {
"message": "请求ID:"
},
"SIWELabelResources": {
"message": "资源:$1",
"description": "$1 represents the number of resources"
},
"SIWELabelURI": {
"message": "URI:"
},
"SIWELabelVersion": {
"message": "版本:"
},
"SIWESiteRequestSubtitle": {
"message": "此网站正在请求使用以下登录方式:"
},
"SIWESiteRequestTitle": {
"message": "登录请求"
},
"SIWEWarningSubtitle": {
"message": "为表明您确认理解,请勾选:"
},
"SIWEWarningTitle": {
"message": "您确定吗?"
},
"about": {
"message": "关于"
},
"accept": {
"message": "接受"
},
"acceptTermsOfUse": {
"message": "我已阅读并同意 $1",
"description": "$1 is the `terms` message"
},
"accessAndSpendNoticeNFT": {
"message": "$1可以访问并使用此资产",
"description": "$1 is the url of the site requesting ability to spend"
},
"accessYourWalletWithSRP": {
"message": "使用账户私钥助记词访问钱包"
},
"accessYourWalletWithSRPDescription": {
"message": "MetaMask无法恢复您的密码。我们将使用您的私钥助记词来验证您的所有权、恢复您的钱包并设置新密码。首先,请输入创建钱包时获得的私钥助记词。$1",
"description": "$1 is the words 'Learn More' from key 'learnMore', separated here so that it can be added as a link"
},
"accessingYourCamera": {
"message": "正在访问您的相机……"
},
"account": {
"message": "账户"
},
"accountActivity": {
"message": "账户活动"
},
"accountActivityText": {
"message": "选择您想要接收通知的账户:"
},
"accountDetails": {
"message": "账户详情"
},
"accountIdenticon": {
"message": "账户 Identicon"
},
"accountIsntConnectedToastText": {
"message": "$1 未连接到 $2"
},
"accountName": {
"message": "账户名称"
},
"accountNameDuplicate": {
"message": "此账户名称已存在",
"description": "This is an error message shown when the user enters a new account name that matches an existing account name"
},
"accountNameReserved": {
"message": "此账户名已被保留",
"description": "This is an error message shown when the user enters a new account name that is reserved for future use"
},
"accountOptions": {
"message": "账户选项"
},
"accountSelectionRequired": {
"message": "您需要选择一个账户!"
},
"accountTypeNotSupported": {
"message": "账户类型不受支持"
},
"accounts": {
"message": "账户"
},
"accountsConnected": {
"message": "账户已连接"
},
"active": {
"message": "活跃"
},
"activity": {
"message": "活动"
},
"activityLog": {
"message": "活动日志"
},
"add": {
"message": "添加"
},
"addANetwork": {
"message": "添加网络"
},
"addANickname": {
"message": "添加昵称"
},
"addAccount": {
"message": "添加账户"
},
"addAccountToMetaMask": {
"message": "向 MetaMask 添加账户"
},
"addAcquiredTokens": {
"message": "添加您通过MetaMask获得的代币"
},
"addAlias": {
"message": "添加别名"
},
"addBlockExplorer": {
"message": "添加区块浏览器"
},
"addContact": {
"message": "添加联系信息"
},
"addCustomNetwork": {
"message": "添加自定义网络"
},
"addEthereumChainWarningModalHeader": {
"message": "仅当您确定可以信任此 RPC 提供商时才能添加它。$1",
"description": "$1 is addEthereumChainWarningModalHeaderPartTwo passed separately so that it can be bolded"
},
"addEthereumChainWarningModalHeaderPartTwo": {
"message": "恶意提供商可能会谎报区块链的状态,并记录您的网络活动。"
},
"addEthereumChainWarningModalListHeader": {
"message": "您的提供商必须值得信赖,因为它能够:"
},
"addEthereumChainWarningModalListPointOne": {
"message": "查看您的账户和 IP 地址,并将它们相互关联"
},
"addEthereumChainWarningModalListPointThree": {
"message": "显示账户余额和其他链上状态"
},
"addEthereumChainWarningModalListPointTwo": {
"message": "公开传播您的交易"
},
"addEthereumChainWarningModalTitle": {
"message": "您正在为以太坊主网添加新的 RPC 提供商"
},
"addFriendsAndAddresses": {
"message": "添加您信任的朋友和地址"
},
"addHardwareWallet": {
"message": "添加硬件钱包"
},
"addIPFSGateway": {
"message": "添加您首选的IPFS网关"
},
"addImportAccount": {
"message": "添加账户或硬件钱包"
},
"addMemo": {
"message": "添加备忘录"
},
"addNetwork": {
"message": "添加网络"
},
"addNewAccount": {
"message": "添加新账户"
},
"addNewBitcoinAccount": {
"message": "添加新的比特币账户(测试版)"
},
"addNewBitcoinTestnetAccount": {
"message": "添加新的比特币账户(测试网)"
},
"addNewSolanaAccount": {
"message": "添加新的Solana账户(测试版)"
},
"addNewToken": {
"message": "添加新代币"
},
"addNft": {
"message": "添加 NFT"
},
"addNfts": {
"message": "添加 NFT"
},
"addRpcUrl": {
"message": "添加 RPC(远程过程调用)URL"
},
"addSnapAccountToggle": {
"message": "启用“添加账户Snap(测试版)”"
},
"addSnapAccountsDescription": {
"message": "启用此功能后,您可以直接使用账户列表来添加新的测试版账户Snap。如果您要安装账户Snap,请紧记,此为第三方服务。"
},
"addSuggestedNFTs": {
"message": "添加推荐的 NFT"
},
"addSuggestedTokens": {
"message": "添加推荐代币"
},
"addToken": {
"message": "添加代币"
},
"addTokenByContractAddress": {
"message": "找不到代币?您可以通过粘贴其地址手动添加任何代币。代币合约地址可以在 $1 上找到",
"description": "$1 is a blockchain explorer for a specific network, e.g. Etherscan for Ethereum"
},
"addUrl": {
"message": "添加 URL"
},
"addingAccount": {
"message": "添加账户"
},
"addingCustomNetwork": {
"message": "正在添加网络"
},
"addingTokens": {
"message": "正在添加代币"
},
"additionalNetworks": {
"message": "其他网络"
},
"address": {
"message": "地址"
},
"addressCopied": {
"message": "地址已复制!"
},
"advanced": {
"message": "高级"
},
"advancedBaseGasFeeToolTip": {
"message": "当您的交易被包含在区块中时,您的最大基础费用与实际基础费用之间的任何差额将被退还。总金额按最大基础费用(以GWEI为单位)*燃料限制计算。"
},
"advancedDetailsDataDesc": {
"message": "数据"
},
"advancedDetailsHexDesc": {
"message": "十六进制"
},
"advancedDetailsNonceDesc": {
"message": "唯一交易标识号"
},
"advancedDetailsNonceTooltip": {
"message": "这是一个账户的交易编号。第一笔交易的唯一交易标识号为 0,然后按顺序递增。"
},
"advancedGasFeeDefaultOptIn": {
"message": "将这些值保存为 $1 网络的默认值。",
"description": "$1 is the current network name."
},
"advancedGasFeeModalTitle": {
"message": "高级燃料费"
},
"advancedGasPriceTitle": {
"message": "燃料价格"
},
"advancedPriorityFeeToolTip": {
"message": "优先费用(又称“矿工费”)直接向矿工支付,激励他们优先处理您的交易。"
},
"agreeTermsOfUse": {
"message": "我同意MetaMask的$1",
"description": "$1 is the `terms` link"
},
"airgapVault": {
"message": "AirGap Vault"
},
"alert": {
"message": "提醒"
},
"alertActionBuy": {
"message": "买入 ETH"
},
"alertActionUpdateGas": {
"message": "更新燃料限制"
},
"alertActionUpdateGasFee": {
"message": "更新费用"
},
"alertActionUpdateGasFeeLevel": {
"message": "更新燃料选项"
},
"alertDisableTooltip": {
"message": "这可以在“设置 > 提醒”中进行更改"
},
"alertMessageGasEstimateFailed": {
"message": "我们无法提供准确的费用,估算可能较高。我们建议您输入自定义的燃料限制,但交易仍存在失败风险。"
},
"alertMessageGasFeeLow": {
"message": "在选择低级型费用时,预计交易速度较慢,等待时间较长。如需更快交易,请选择市场型或激进型费用选项。"
},
"alertMessageGasTooLow": {
"message": "要继续此交易,您需要将燃料限制提高到 21000 或更高。"
},
"alertMessageNetworkBusy": {
"message": "燃料价格很高,估算不太准确。"
},
"alertMessageNoGasPrice": {
"message": "您手动更新费用后,我们才能继续进行此交易。"
},
"alertMessagePendingTransactions": {
"message": "上一笔交易完成后,此交易才能继续进行。了解如何取消或加快交易。"
},
"alertMessageSignInDomainMismatch": {
"message": "提出请求的网站不是您正在登录的网站。这可能试图窃取您的登录凭据。"
},
"alertMessageSignInWrongAccount": {
"message": "此网站要求您使用错误的账户登录。"
},
"alertMessageSigningOrSubmitting": {
"message": "您的上一笔交易完成后,此交易才能继续进行。"
},
"alertModalAcknowledge": {
"message": "我已知晓风险并仍想继续"
},
"alertModalDetails": {
"message": "提醒详情"
},
"alertModalReviewAllAlerts": {
"message": "查看所有提醒"
},
"alertReasonGasEstimateFailed": {
"message": "费用不准确"
},
"alertReasonGasFeeLow": {
"message": "速度慢"
},
"alertReasonGasTooLow": {
"message": "燃料限制较低"
},
"alertReasonInsufficientBalance": {
"message": "资金不足"
},
"alertReasonNetworkBusy": {
"message": "网络繁忙"
},
"alertReasonNoGasPrice": {
"message": "无法使用费用估算"
},
"alertReasonPendingTransactions": {
"message": "待定交易"
},
"alertReasonSignIn": {
"message": "可疑登录请求"
},
"alertReasonWrongAccount": {
"message": "错误账户"
},
"alerts": {
"message": "提醒"
},
"all": {
"message": "所有"
},
"allCustodianAccountsConnectedSubtitle": {
"message": "您或者已连接所有托管账户,或者没有任何账户可连接到 MetaMask Institutional。"
},
"allCustodianAccountsConnectedTitle": {
"message": "没有可连接的账户"
},
"allOfYour": {
"message": "您的所有$1",
"description": "$1 is the symbol or name of the token that the user is approving spending"
},
"allPermissions": {
"message": "所有许可"
},
"allTimeHigh": {
"message": "有史以来新高"
},
"allTimeLow": {
"message": "有史以来新低"
},
"allYourNFTsOf": {
"message": "您所有在$1的NFT",
"description": "$1 is a link to contract on the block explorer when we're not able to retrieve a erc721 or erc1155 name"
},
"allow": {
"message": "允许"
},
"allowMmiToConnectToCustodian": {
"message": "这将允许 MMI 连接到 $1,以导入您的账户。"
},
"allowNotifications": {
"message": "允许通知"
},
"allowSpendToken": {
"message": "授予访问您的 $1 的权限?",
"description": "$1 is the symbol of the token that are requesting to spend"
},
"allowWithdrawAndSpend": {
"message": "允许 $1 提取和消费最高以下金额:",
"description": "The url of the site that requested permission to 'withdraw and spend'"
},
"amount": {
"message": "数额"
},
"amountReceived": {
"message": "已收款金额"
},
"amountSent": {
"message": "已发送金额"
},
"andForListItems": {
"message": "$1,和 $2",
"description": "$1 is the first item, $2 is the last item in a list of items. Used in Snap Install Warning modal."
},
"andForTwoItems": {
"message": "$1 和 $2",
"description": "$1 is the first item, $2 is the second item. Used in Snap Install Warning modal."
},
"appDescription": {
"message": "浏览器中的以太坊钱包",
"description": "The description of the application"
},
"appName": {
"message": "MetaMask",
"description": "The name of the application"
},
"appNameBeta": {
"message": "MetaMask Beta",
"description": "The name of the application (Beta)"
},
"appNameFlask": {
"message": "MetaMask Flask",
"description": "The name of the application (Flask)"
},
"appNameMmi": {
"message": "MetaMask Institutional",
"description": "The name of the application (MMI)"
},
"approve": {
"message": "批准消费限额"
},
"approveAllTokensTitle": {
"message": "是否允许访问并转账您所有的$1?",
"description": "$1 is the symbol of the token for which the user is granting approval"
},
"approveAllTokensTitleWithoutSymbol": {
"message": "是否允许访问并转账您所有在$1的NFT?",
"description": "$1 a link to contract on the block explorer when we're not able to retrieve a erc721 or erc1155 name"
},
"approveButtonText": {
"message": "批准"
},
"approveIncreaseAllowance": {
"message": "增加 $1 支出上限",
"description": "The token symbol that is being approved"
},
"approveSpendingCap": {
"message": "批准 $1 支出上限",
"description": "The token symbol that is being approved"
},
"approveTokenDescription": {
"message": "这允许第三方访问并转账以下 NFT,而无需另行通知,直到您撤销其访问权限。"
},
"approveTokenDescriptionWithoutSymbol": {
"message": "这会允许第三方访问并转账您所有在$1的NFT,而无需另行通知,直到您撤销其访问权限。",
"description": "$1 is a link to contract on the block explorer when we're not able to retrieve a erc721 or erc1155 name"
},
"approveTokenTitle": {
"message": "是否允许访问并转账您的 $1 ?",
"description": "$1 is the symbol of the token for which the user is granting approval"
},
"approved": {
"message": "已批准"
},
"approvedAsset": {
"message": "已获批准的资产"
},
"approvedOn": {
"message": "于$1获得批准",
"description": "$1 is the approval date for a permission"
},
"approvedOnForAccounts": {
"message": "于 $1 批准用于 $2",
"description": "$1 is the approval date for a permission. $2 is the AvatarGroup component displaying account images."
},
"areYouSure": {
"message": "您确定吗?"
},
"asset": {
"message": "资产"
},
"assetOptions": {
"message": "资产选项"
},
"attemptSendingAssets": {
"message": "如果您试图将资产从一个网络直接发送到另一个网络,这可能会导致永久的资产损失。请务必使用跨链桥进行操作。"
},
"attemptSendingAssetsWithPortfolio": {
"message": "如果您尝试将资产从一个网络发送到另一个网络,这可能会导致资产损失。请务必使用跨链桥在不同网络间安全转移资金,例如 $1"
},
"attemptToCancelSwapForFree": {
"message": "尝试免费取消兑换"
},
"attributes": {
"message": "属性"
},
"attributions": {
"message": "参与者"
},
"auroraRpcDeprecationMessage": {
"message": "Infura RPC(远程过程调用)URL 不再支持 Aurora。"
},
"authorizedPermissions": {
"message": "您已授权以下权限"
},
"autoDetectTokens": {
"message": "自动检测代币"
},
"autoDetectTokensDescription": {
"message": "我们使用第三方 API 来检测和显示发送到您钱包的新代币。如果您不希望该应用程序从这些服务中提取数据,请将其关闭。$1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
"message": "自动锁定计时器(分钟)"
},
"autoLockTimeLimitDescription": {
"message": "设置 MetaMask 将被锁定前的空闲时间(单位:分钟)。"
},
"average": {
"message": "平均值"
},
"awaitingApproval": {
"message": "等待批准......"
},
"back": {
"message": "返回"
},
"backupApprovalInfo": {
"message": "如果不慎丢失个人设备,忘记密码,需要重新安装 MetaMask,或者需在另一台设备上访问钱包,使用此助记词才能恢复您的钱包。"
},
"backupApprovalNotice": {
"message": "请备份您的私钥助记词,确保您的钱包和资金安全。"
},
"backupKeyringSnapReminder": {
"message": "请先确保您可以自行访问此Snap创建的任何账户,才可将其去除"
},
"backupNow": {
"message": "立即备份"
},
"balance": {
"message": "余额"
},
"balanceOutdated": {
"message": "余额可能已过期"
},
"baseFee": {
"message": "基础费用"
},
"basic": {
"message": "基本"
},
"basicConfigurationBannerCTA": {
"message": "开启基本功能"
},
"basicConfigurationBannerTitle": {
"message": "基本功能已关闭"
},
"basicConfigurationDescription": {
"message": "MetaMask 通过互联网服务提供代币详情和燃料设置等基本功能。当您使用互联网服务时,您的 IP 地址会共享,在本例中与 MetaMask 共享。这就像您访问任何网站一样。MetaMask 暂时使用这些数据,并且绝不会出卖您的数据。您可以使用 VPN 或关闭这些服务,但这可能会影响您的 MetaMask 体验。要了解详情,请参阅我们的 $1。",
"description": "$1 is to be replaced by the message for privacyMsg, and will link to https://consensys.io/privacy-policy"
},
"basicConfigurationLabel": {
"message": "基本功能"
},
"basicConfigurationModalCheckbox": {
"message": "我理解并想继续"
},
"basicConfigurationModalDisclaimerOff": {
"message": "这意味着您不能充分优化您在 MetaMask 上的时间。您将无法使用基本功能(例如代币详情、最优燃料设置等)。"
},
"basicConfigurationModalDisclaimerOn": {
"message": "如需优化您在 MetaMask 上的时间,您将需要开启此功能。基本功能(例如代币详情、最优燃料设置等)对于 Web3 体验至关重要。"
},
"basicConfigurationModalHeadingOff": {
"message": "关闭基本功能"
},
"basicConfigurationModalHeadingOn": {
"message": "开启基本功能"
},
"beCareful": {
"message": "请小心"
},
"beta": {
"message": "测试版"
},
"betaHeaderText": {
"message": "此为测试版。请$1报告错误",
"description": "$1 represents the word 'here' in a hyperlink"
},
"betaMetamaskInstitutionalVersion": {
"message": "MetaMask Institutional 测试版本"
},
"betaMetamaskVersion": {
"message": "MetaMask 测试版本"
},
"betaTerms": {
"message": "测试版使用条款"
},
"billionAbbreviation": {
"message": "十亿",
"description": "Shortened form of 'billion'"
},
"bitcoinActivityNotSupported": {
"message": "比特币活动不受支持"
},
"bitcoinSupportSectionTitle": {
"message": "比特币"
},
"bitcoinSupportToggleDescription": {
"message": "启用此功能后,您可以选择将比特币账户添加到衍生自现有私钥助记词的 MetaMask Extension 中。这是一个实验性的测试版功能,因此您应自行承担使用风险。为了向我们提供有关此新比特币体验的反馈,请填写此 $1。",
"description": "$1 is the link to a product feedback form"
},
"bitcoinSupportToggleTitle": {
"message": "启用“添加新的比特币账户(测试版)”"
},
"bitcoinTestnetSupportToggleDescription": {
"message": "启用此功能后,您可以选择为测试网络添加比特币账户。"
},
"bitcoinTestnetSupportToggleTitle": {
"message": "启用“添加新的比特币账户(测试网)”"
},
"blockExplorerAccountAction": {
"message": "账户",
"description": "This is used with viewOnEtherscan and viewInExplorer e.g View Account in Explorer"
},
"blockExplorerAssetAction": {
"message": "资产",
"description": "This is used with viewOnEtherscan and viewInExplorer e.g View Asset in Explorer"
},
"blockExplorerSwapAction": {
"message": "兑换",
"description": "This is used with viewOnEtherscan e.g View Swap on Etherscan"
},
"blockExplorerUrl": {
"message": "区块浏览器 URL"
},
"blockExplorerUrlDefinition": {
"message": "用作此网络的区块浏览器的 URL。"
},
"blockExplorerView": {
"message": "在 $1 查看账户",
"description": "$1 replaced by URL for custom block explorer"
},
"blockaid": {
"message": "Blockaid"
},
"blockaidAlertInfo": {
"message": "我们不建议继续处理此请求。"
},
"blockaidDescriptionApproveFarming": {
"message": "如果您批准此请求,以欺诈闻名的第三方可能会拿走您的所有资产。"
},
"blockaidDescriptionBlurFarming": {
"message": "如果您批准此请求,则有人可以窃取您列于Blur上的资产。"
},
"blockaidDescriptionErrored": {
"message": "由于出现错误,安全提供程序无法验证此请求。请谨慎操作。"
},
"blockaidDescriptionMaliciousDomain": {
"message": "您正在与恶意网域交互。如果您批准此请求,您可能会失去您的资产。"
},
"blockaidDescriptionMightLoseAssets": {
"message": "如果您批准此请求,您可能会失去您的资产。"
},
"blockaidDescriptionSeaportFarming": {
"message": "如果您批准此请求,则有人可以窃取您列于OpenSea上的资产。"
},
"blockaidDescriptionTransferFarming": {
"message": "如果您批准此请求,以欺诈闻名的第三方将会拿走您的所有资产。"
},
"blockaidDescriptionWarning": {
"message": "这可能是欺骗性请求。仅在您信任所涉及的每个地址时才能继续。"
},
"blockaidMessage": {
"message": "隐私保护 - 不会与第三方共享任何数据。适用于 Arbitrum、Avalanche、BNB Chain、以太坊主网、Linea、Optimism、Polygon、Base 和 Sepolia。"
},
"blockaidTitleDeceptive": {
"message": "此请求属欺骗性质"
},
"blockaidTitleMayNotBeSafe": {
"message": "请求可能不安全"
},
"blockaidTitleSuspicious": {
"message": "此请求很可疑"
},
"blockies": {
"message": "Blockies"
},
"boughtFor": {
"message": "购买用于"
},
"bridge": {
"message": "跨链桥"
},
"bridgeDontSend": {
"message": "跨链桥,不要发送"
},
"browserNotSupported": {
"message": "您的浏览器不受支持……"
},
"buildContactList": {
"message": "建立您的联系人列表"
},
"builtAroundTheWorld": {
"message": "MetaMask 是在世界各地设计和建造的。"
},
"busy": {
"message": "忙碌中"
},
"buyAndSell": {
"message": "出入金"
},
"buyAsset": {
"message": "购买$1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyMoreAsset": {
"message": "购买更多$1",
"description": "$1 is the ticker symbol of a an asset the user is being prompted to purchase"
},
"buyNow": {
"message": "立即购买"
},
"bytes": {
"message": "字节"
},
"canToggleInSettings": {
"message": "您可以在“设置 -> 提醒”中重新启用该通知。"
},
"cancel": {
"message": "取消"
},
"cancelPopoverTitle": {
"message": "取消交易"
},
"cancelSpeedUp": {
"message": "取消或加快交易。"
},
"cancelSpeedUpLabel": {
"message": "这笔燃料费将$1原来的费用。",
"description": "$1 is text 'replace' in bold"
},
"cancelSpeedUpTransactionTooltip": {
"message": "若要$1交易,燃料费用必须增加至少10%才能被网络认可。",
"description": "$1 is string 'cancel' or 'speed up'"
},
"cancelled": {
"message": "已取消"
},
"chainId": {
"message": "链 ID"
},
"chainIdDefinition": {
"message": "用于签署此网络的交易的链 ID。"
},
"chainIdExistsErrorMsg": {
"message": "此链 ID 目前已被 $1 网络使用。"
},
"chainListReturnedDifferentTickerSymbol": {
"message": "此代币符号与输入的网络名称或链 ID 不匹配。许多热门代币使用类似的符号,骗子可能会使用这些符号来欺骗您,让您向他们发送更有价值的代币作为回报。在您继续之前请先验证所有信息。"
},
"chooseYourNetwork": {
"message": "选择您的网络"
},
"chooseYourNetworkDescription": {
"message": "我们使用 Infura 作为我们的远程过程调用(RPC)提供商,以提供最可靠和最私密的以太坊数据访问。您可以选择自己的 RPC,但请谨记,任何 RPC 都可以接收您的 IP 地址和以太坊钱包以进行交易。请阅读我们的 $1,进一步了解 Infura 如何处理数据。",
"description": "$1 is a link to the privacy policy"
},
"chromeRequiredForHardwareWallets": {
"message": "您需要在 Google Chrome 上使用 MetaMask 以连接到您的硬件钱包。"
},
"circulatingSupply": {
"message": "循环供应"
},
"clear": {
"message": "清除"
},
"clearActivity": {
"message": "清除活动和 nonce 数据"
},
"clearActivityButton": {
"message": "清除活动选项卡数据"
},
"clearActivityDescription": {
"message": "这将会重置账户的 nonce,并删除钱包中的活动选项卡数据。只有当前账户和网络会受到影响。您的余额和传入的交易不会改变。"
},
"click": {
"message": "点击"
},
"clickToConnectLedgerViaWebHID": {
"message": "点击这里以通过 WebHID 连接您的 Ledger",
"description": "Text that can be clicked to open a browser popup for connecting the ledger device via webhid"
},
"clickToManuallyAdd": {
"message": "请点击这里,以手动添加代币。"
},
"close": {
"message": "关闭"
},
"closeExtension": {
"message": "关闭扩展程序"
},
"closeWindowAnytime": {
"message": "您可以随时关闭此窗口。"
},
"coingecko": {
"message": "CoinGecko"
},
"collectionName": {
"message": "收藏品名称"
},
"comboNoOptions": {
"message": "找不到任何选项",
"description": "Default text shown in the combo field dropdown if no options."
},
"configureSnapPopupDescription": {
"message": "您现在要离开MetaMask来配置此snap。"
},
"configureSnapPopupInstallDescription": {
"message": "您现在要离开MetaMask来安装此snap。"
},
"configureSnapPopupInstallTitle": {
"message": "安装snap"
},
"configureSnapPopupLink": {
"message": "请点击此链接以继续:"
},
"configureSnapPopupTitle": {
"message": "配置snap"
},
"confirm": {
"message": "确认"
},
"confirmAlertModalAcknowledgeMultiple": {
"message": "我已知晓提醒并仍想继续"
},
"confirmAlertModalAcknowledgeSingle": {
"message": "我已知晓提醒并仍想继续"
},
"confirmConnectCustodianRedirect": {
"message": "点击“继续”后,我们会将您重定向到 $1。"
},
"confirmConnectCustodianText": {
"message": "要连接您的账户,请登录您的 $1 账户,然后点击“连接到 MMI”按钮。"
},
"confirmConnectionTitle": {
"message": "确认连接到$1"
},
"confirmFieldPaymaster": {
"message": "费用支付方"
},
"confirmFieldTooltipPaymaster": {
"message": "此交易的费用将由 paymaster 智能合约支付。"
},
"confirmPassword": {
"message": "确认密码"
},
"confirmRecoveryPhrase": {
"message": "确认私钥助记词"
},
"confirmTitleDescPermitSignature": {
"message": "此网站需要获得许可来使用您的代币。"
},
"confirmTitleDescSIWESignature": {
"message": "某个网站要求您登录以证明您拥有该账户。"
},
"confirmTitlePermitTokens": {
"message": "支出上限请求"
},
"confirmTitleSIWESignature": {
"message": "登录请求"
},
"confirmTitleSignature": {
"message": "签名请求"
},
"confirmTitleTransaction": {
"message": "交易请求"
},
"confirmed": {
"message": "已确认"
},
"confusableUnicode": {
"message": "'$1' 与 '$2' 相似。"
},
"confusableZeroWidthUnicode": {
"message": "找到零宽字符。"
},
"confusingEnsDomain": {
"message": "我们在 ENS 名称中检测到一个可令人混淆的字符。检查 ENS 名称以避免潜在的欺诈。"
},
"connect": {
"message": "连接"
},
"connectAccount": {
"message": "连接账户"
},
"connectAccountOrCreate": {
"message": "连接账户或创建新账户"
},
"connectAccounts": {
"message": "连接账户"
},
"connectCustodialAccountMenu": {
"message": "连接托管账户"
},
"connectCustodialAccountMsg": {
"message": "请选择您想要连接的托管账户,以添加或刷新代币。"
},
"connectCustodialAccountTitle": {
"message": "托管账户"
},
"connectCustodianAccounts": {
"message": "连接 $1 账户"