-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathmessages.json
More file actions
7647 lines (7647 loc) · 247 KB
/
messages.json
File metadata and controls
7647 lines (7647 loc) · 247 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
{
"CSS_loadingTakingTooLongActionText": {
"message": "如果问题仍然存在,请重启 MetaMask。",
"description": "Second line of the message that is shown when the initial loading of the MetaMask UI takes a very long time."
},
"CSS_loadingTakingTooLongMessageText": {
"message": "加载时间比平时长。",
"description": "First line of the message that is shown when the initial loading of the MetaMask UI takes a very long time."
},
"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": "关联您的二维码硬件钱包"
},
"QRHardwareWalletSteps2Description": {
"message": "Ngrave Zero"
},
"SrpListHideAccounts": {
"message": "隐藏 $1 个账户",
"description": "$1 is the number of accounts"
},
"SrpListHideSingleAccount": {
"message": "隐藏 1 个账户"
},
"SrpListShowAccounts": {
"message": "显示 $1 个账户",
"description": "$1 is the number of accounts"
},
"SrpListShowSingleAccount": {
"message": "显示 1 个账户"
},
"about": {
"message": "关于"
},
"accept": {
"message": "接受"
},
"acceptTermsOfUse": {
"message": "我已阅读并同意 $1",
"description": "$1 is the `terms` message"
},
"accessingYourCamera": {
"message": "正在访问您的相机……"
},
"account": {
"message": "账户"
},
"accountActivity": {
"message": "账户活动"
},
"accountActivityText": {
"message": "选择您想要接收通知的账户:"
},
"accountAlreadyExistsLogin": {
"message": "登录"
},
"accountAlreadyExistsLoginDescription": {
"message": "使用 “$1” 的钱包已存在。是否改为尝试登录?",
"description": "$1 is the account email"
},
"accountAlreadyExistsTitle": {
"message": "钱包已存在"
},
"accountDetails": {
"message": "账户详情"
},
"accountDetailsSrpBackUpMessage": {
"message": "备份",
"description": "Text used to describe action for SRP backup. Used on multichain account details."
},
"accountIdenticon": {
"message": "账户图标"
},
"accountIdenticonDescription": {
"message": "从三种不同风格的独特图标中选择,助您一目了然地识别账户。"
},
"accountIsntConnectedToastText": {
"message": "$1 未连接到 $2"
},
"accountName": {
"message": "账户名称"
},
"accountNameAlreadyInUse": {
"message": "此名称已占用。",
"description": "Error help text used under the input field for renaming multichain account when user tries to use existing name."
},
"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"
},
"accountNotFoundCreateOne": {
"message": "是,创建新钱包"
},
"accountNotFoundDescription": {
"message": "我们找不到 “$1” 的钱包。您想使用此登录名创建新钱包吗?",
"description": "$1 is the account email"
},
"accountNotFoundTitle": {
"message": "未找到钱包"
},
"accountOptions": {
"message": "账户选项"
},
"accountPermissionToast": {
"message": "账户许可已更新"
},
"accountSelectionRequired": {
"message": "您需要选择一个账户!"
},
"accountSmallCase": {
"message": "账户"
},
"accountTypeNotSupported": {
"message": "账户类型不受支持"
},
"accounts": {
"message": "账户"
},
"accountsConnected": {
"message": "账户已连接"
},
"accountsPermissionsTitle": {
"message": "查看您的账户并建议交易"
},
"accountsSmallCase": {
"message": "账户"
},
"active": {
"message": "活跃"
},
"activity": {
"message": "活动"
},
"activityEmptyDescription": {
"message": "暂无内容可查看。立即兑换您的首个代币。"
},
"activityLog": {
"message": "活动日志"
},
"add": {
"message": "添加"
},
"addACustomNetwork": {
"message": "添加自定义网络"
},
"addAHardwareWallet": {
"message": "添加硬件钱包"
},
"addANetwork": {
"message": "添加网络"
},
"addANickname": {
"message": "添加昵称"
},
"addAUrl": {
"message": "添加 URL"
},
"addAccount": {
"message": "添加账户"
},
"addAccountFromNetwork": {
"message": "添加 $1 账户",
"description": "$1 is the network name, e.g. Bitcoin or Solana"
},
"addAccountOrWallet": {
"message": "添加账户或钱包"
},
"addAccountToMetaMask": {
"message": "将账户添加到 MetaMask"
},
"addAcquiredTokens": {
"message": "添加您通过MetaMask获得的代币"
},
"addAlias": {
"message": "添加别名"
},
"addBitcoinAccountLabel": {
"message": "比特币账户"
},
"addBlockExplorer": {
"message": "添加区块浏览器"
},
"addBlockExplorerUrl": {
"message": "添加区块浏览器 URL"
},
"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 提供商"
},
"addEthereumWatchOnlyAccount": {
"message": "查看以太坊账户(测试版)"
},
"addFriendsAndAddresses": {
"message": "添加您信任的朋友和地址"
},
"addFunds": {
"message": "充值"
},
"addFundsModalBuyCrypto": {
"message": "购买加密货币"
},
"addFundsModalReceiveTokens": {
"message": "收取代币"
},
"addFundsModalSwapTokens": {
"message": "兑换代币"
},
"addHardwareWalletLabel": {
"message": "硬件钱包"
},
"addIPFSGateway": {
"message": "添加您首选的IPFS网关"
},
"addImportAccount": {
"message": "添加账户或硬件钱包"
},
"addMemo": {
"message": "添加备忘录"
},
"addNetwork": {
"message": "添加网络"
},
"addNetworkConfirmationTitle": {
"message": "添加 $1",
"description": "$1 represents network name"
},
"addNewAccount": {
"message": "添加新账户"
},
"addNewEthereumAccountLabel": {
"message": "以太坊账户"
},
"addNewSolanaAccountLabel": {
"message": "Solana 账户"
},
"addNft": {
"message": "添加NFT"
},
"addNfts": {
"message": "添加 NFT"
},
"addNonEvmAccount": {
"message": "添加 $1 账户",
"description": "$1 is the non EVM network where the account is going to be created, e.g. Bitcoin or Solana"
},
"addNonEvmAccountFromNetworkPicker": {
"message": "要启用 $1 网络,您需要创建 $2 账户。",
"description": "$1 is the non EVM network where the account is going to be created, e.g. Solana Mainnet or Solana Devnet. $2 is the account type, e.g. Bitcoin or Solana"
},
"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"
},
"addWallet": {
"message": "添加钱包"
},
"addingAccount": {
"message": "添加账户"
},
"additionalNetworks": {
"message": "其他网络"
},
"address": {
"message": "地址"
},
"addressCopied": {
"message": "地址已复制"
},
"addressLabel": {
"message": "地址",
"description": "Label for address count (single address). Used on multichain account details page."
},
"addressMismatch": {
"message": "网站地址不匹配"
},
"addressMismatchOriginal": {
"message": "当前 URL:$1",
"description": "$1 replaced by origin URL in confirmation request"
},
"addressMismatchPunycode": {
"message": "Punycode 版本:$1",
"description": "$1 replaced by punycode version of the URL in confirmation request"
},
"addressQrCodeModalDescription": {
"message": "使用此地址在 $1 上接收代币和收藏品",
"description": "$1 is the network name"
},
"addressQrCodeModalHeading": {
"message": "$1 地址",
"description": "$1 is the network name"
},
"addressQrCodeModalTitle": {
"message": "$1 / $2",
"description": "$1 is account name, $2 is network name"
},
"addresses": {
"message": "地址",
"description": "Multichain account menu item for linking to addresses page"
},
"addressesLabel": {
"message": "地址",
"description": "Label for address count (multiple addresses). Used on multichain account details page."
},
"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": "优先费用(又称“矿工费”)直接向矿工支付,激励他们优先处理您的交易。"
},
"airDropPatternDescription": {
"message": "该代币的链上历史记录显示,此前存在可疑的空投活动实例。"
},
"airDropPatternTitle": {
"message": "空投模式"
},
"airgapVault": {
"message": "AirGap Vault"
},
"alert": {
"message": "提醒"
},
"alertAccountTypeUpgradeMessage": {
"message": "您正在将账户升级为智能账户。您将保留原账户地址,同时拥有更快的交易速度和更低的网络费用。$1。"
},
"alertAccountTypeUpgradeTitle": {
"message": "账户类型"
},
"alertActionBuyWithNativeCurrency": {
"message": "购买 $1"
},
"alertActionUpdateGas": {
"message": "更新燃料限制"
},
"alertActionUpdateGasFee": {
"message": "更新费用"
},
"alertActionUpdateGasFeeLevel": {
"message": "更新燃料选项"
},
"alertContentMultipleApprovals": {
"message": "您在授予他人提取您的代币的许可,尽管当前交易不需要此操作。"
},
"alertDisableTooltip": {
"message": "这可以在“设置 > 提醒”中进行更改"
},
"alertMessageAddressMismatchWarning": {
"message": "攻击者有时会通过对网站地址进行细微更改来模仿网站。在继续操作之前,请确保您是与目标网站进行交互。"
},
"alertMessageAddressTrustSignal": {
"message": "我们无法验证此地址。它可能是新地址或未经验证的地址。除非您信任该来源,否则请勿继续操作。"
},
"alertMessageAddressTrustSignalMalicious": {
"message": "如果您确认此请求,您的资产可能会被骗子窃取。"
},
"alertMessageChangeInSimulationResults": {
"message": "此交易的预计更改已更新。继续之前请仔细审查。"
},
"alertMessageFirstTimeInteraction": {
"message": "您首次与此地址交互。请确保地址正确,然后再继续。"
},
"alertMessageGasEstimateFailed": {
"message": "我们无法提供准确的费用,估算可能较高。我们建议您输入自定义的燃料限制,但交易仍存在失败风险。"
},
"alertMessageGasFeeLow": {
"message": "在选择低级型费用时,预计交易速度较慢,等待时间较长。如需更快交易,请选择市场型或激进型费用选项。"
},
"alertMessageGasTooLow": {
"message": "要继续此交易,您需要将燃料限制提高到 21000 或更高。"
},
"alertMessageInsufficientBalanceWithNativeCurrency": {
"message": "您的账户中没有足够的 $1 来支付网络费用。"
},
"alertMessageNoGasPrice": {
"message": "您手动更新费用后,我们才能继续进行此交易。"
},
"alertMessageOriginTrustSignalMalicious": {
"message": "已确定其为恶意。我们建议不要与此网站交互。"
},
"alertMessageOriginTrustSignalWarning": {
"message": "已确定其为可疑。我们建议不要与此网站交互。"
},
"alertMessageSignInDomainMismatch": {
"message": "发起请求的网站并非您要登录的网站。可能试图窃取您的登录凭据。"
},
"alertMessageSignInWrongAccount": {
"message": "此网站要求您使用错误的账户登录。"
},
"alertMessageTokenTrustSignalMalicious": {
"message": "此代币已识别为恶意代币。与之交互可能导致资金损失。"
},
"alertMessageTokenTrustSignalWarning": {
"message": "该代币显示出强烈的恶意行为迹象。继续操作可能导致资金损失。"
},
"alertModalAcknowledge": {
"message": "我已知晓风险,但仍想继续"
},
"alertModalDetails": {
"message": "提醒详情"
},
"alertModalReviewAllAlerts": {
"message": "查看所有提醒"
},
"alertReasonChangeInSimulationResults": {
"message": "结果已发生变化"
},
"alertReasonFirstTimeInteraction": {
"message": "首次交互"
},
"alertReasonGasEstimateFailed": {
"message": "费用不准确"
},
"alertReasonGasFeeLow": {
"message": "速度慢"
},
"alertReasonGasTooLow": {
"message": "燃料限制较低"
},
"alertReasonInsufficientBalance": {
"message": "资金不足"
},
"alertReasonMultipleApprovals": {
"message": "不必要的许可"
},
"alertReasonNoGasPrice": {
"message": "无法使用费用估算"
},
"alertReasonOriginTrustSignalMalicious": {
"message": "恶意网站"
},
"alertReasonOriginTrustSignalVerified": {
"message": "已验证网站"
},
"alertReasonOriginTrustSignalWarning": {
"message": "可疑网站"
},
"alertReasonPendingTransactions": {
"message": "待定交易"
},
"alertReasonSignIn": {
"message": "可疑登录请求"
},
"alertReasonTokenTrustSignalMalicious": {
"message": "恶意代币"
},
"alertReasonTokenTrustSignalWarning": {
"message": "可疑代币"
},
"alertReasonWrongAccount": {
"message": "错误账户"
},
"alertSelectedAccountWarning": {
"message": "此请求针对与您钱包中所选账户不同的账户。要使用其他账户,请将其连接到该站点。"
},
"alerts": {
"message": "提醒"
},
"all": {
"message": "所有"
},
"allNetworks": {
"message": "所有网络"
},
"allPermissions": {
"message": "所有许可"
},
"allPopularNetworks": {
"message": "所有热门网络"
},
"allTimeHigh": {
"message": "有史以来新高"
},
"allTimeLow": {
"message": "有史以来新低"
},
"allowNotifications": {
"message": "允许通知"
},
"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."
},
"annual": {
"message": "年度"
},
"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)"
},
"apply": {
"message": "应用"
},
"approve": {
"message": "批准消费限额"
},
"approveButtonText": {
"message": "批准"
},
"approveIncreaseAllowance": {
"message": "增加 $1 支出上限",
"description": "The token symbol that is being approved"
},
"approveSpendingCap": {
"message": "批准 $1 支出上限",
"description": "The token symbol that is being approved"
},
"approved": {
"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": "资产"
},
"assetChartNoHistoricalPrices": {
"message": "我们无法获取任何历史数据"
},
"assetMultipleNFTsBalance": {
"message": "$1 NFT"
},
"assetOptions": {
"message": "资产选项"
},
"assetSingleNFTBalance": {
"message": "$1 NFT"
},
"assets": {
"message": "资产"
},
"assetsDescription": {
"message": "自动检测钱包中的代币,显示 NFT,并获取批量账户余额更新"
},
"attemptToCancelSwapForFree": {
"message": "尝试免费取消兑换"
},
"attributes": {
"message": "属性"
},
"attributions": {
"message": "属性"
},
"authorizedPermissions": {
"message": "您已授权以下权限"
},
"autoDetectTokens": {
"message": "自动检测代币"
},
"autoDetectTokensDescription": {
"message": "我们使用第三方 API 来检测和显示发送到您钱包的新代币。如果您不希望该应用程序从这些服务中提取数据,请将其关闭。$1",
"description": "$1 is a link to a support article"
},
"autoLockTimeLimit": {
"message": "自动锁定计时器(分钟)"
},
"autoLockTimeLimitDescription": {
"message": "设置 MetaMask 将被锁定前的空闲时间(单位:分钟)。"
},
"available": {
"message": "可用"
},
"average": {
"message": "平均值"
},
"back": {
"message": "返回"
},
"backup": {
"message": "备份"
},
"backupAndSync": {
"message": "备份与同步"
},
"backupAndSyncBasicFunctionalityNameMention": {
"message": "基本功能"
},
"backupAndSyncEnable": {
"message": "开启备份与同步"
},
"backupAndSyncEnableConfirmation": {
"message": "当您开启备份与同步时,也会同时开启 $1 。是否继续?",
"description": "$1 is backupAndSyncBasicFunctionalityNameMention in bold."
},
"backupAndSyncEnableDescription": {
"message": "备份与同步功能使我们能够为您的自定义设置和功能存储加密数据。这将使您的 MetaMask 体验在不同设备上保持一致,并在需要重新安装 MetaMask 时恢复相关设置和功能。此操作不会备份您的私钥助记词。$1。",
"description": "$1 is link to the backup and sync privacy policy."
},
"backupAndSyncEnableDescriptionUpdatePreferences": {
"message": "您可以随时通过以下方式更新偏好设置:$1",
"description": "$1 is a bolded text that highlights the path to the settings page."
},
"backupAndSyncEnableDescriptionUpdatePreferencesPath": {
"message": "设置 > 备份与同步。"
},
"backupAndSyncFeatureAccounts": {
"message": "账户"
},
"backupAndSyncFeatureContacts": {
"message": "联系方式"
},
"backupAndSyncManageWhatYouSync": {
"message": "管理同步内容"
},
"backupAndSyncManageWhatYouSyncDescription": {
"message": "开启设备间的同步内容。"
},
"backupAndSyncPrivacyLink": {
"message": "了解我们如何保护您的隐私"
},
"backupApprovalInfo": {
"message": "如果不慎丢失个人设备,忘记密码,需要重新安装 MetaMask,或者需在另一台设备上访问钱包,使用此助记词才能恢复您的钱包。"
},
"backupApprovalNotice": {
"message": "请备份您的私钥助记词,确保您的钱包和资金安全。"
},
"backupKeyringSnapReminder": {
"message": "在去除此 Snap 之前,请确保您可以访问由其创建的任意账户"
},
"backupNow": {
"message": "立即备份"
},
"balance": {
"message": "余额"
},
"balanceOutdated": {
"message": "余额可能已过期"
},
"baseFee": {
"message": "基础费用"
},
"basic": {
"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 上的时间。您将无法使用基本功能(例如代币详情、最优燃料设置等)。"
},
"basicConfigurationModalDisclaimerOffAdditionalText": {
"message": "关闭此功能将同时禁用 $1 和 $2 中的所有功能。",
"description": "$1 and $2 are bold text for basicConfigurationModalDisclaimerOffAdditionalTextFeaturesFirst and basicConfigurationModalDisclaimerOffAdditionalTextFeaturesLast respectively"
},
"basicConfigurationModalDisclaimerOffAdditionalTextFeaturesFirst": {
"message": "安全与隐私,备份与同步"
},
"basicConfigurationModalDisclaimerOffAdditionalTextFeaturesLast": {
"message": "通知"
},
"basicConfigurationModalDisclaimerOn": {
"message": "如需优化您在 MetaMask 上的时间,您将需要开启此功能。基本功能(例如代币详情、最优燃料设置等)对于 Web3 体验至关重要。"
},
"basicConfigurationModalHeadingOff": {
"message": "关闭基本功能"
},
"basicConfigurationModalHeadingOn": {
"message": "开启基本功能"
},
"beta": {
"message": "测试版"
},
"betaMetamaskVersion": {
"message": "MetaMask 测试版本"
},
"betaTerms": {
"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"
},
"blockaidAlertDescriptionBlur": {
"message": "如果继续,您在 Blur 上列出的全部资产都将面临风险。"
},
"blockaidAlertDescriptionMalicious": {
"message": "您正在与恶意网站交互。如果继续,您可能会损失资产。"
},
"blockaidAlertDescriptionOpenSea": {
"message": "如果继续,您在 OpenSea 上列出的全部资产都将面临风险。"
},
"blockaidAlertDescriptionOthers": {
"message": "如果您确认此请求,您可能会损失资产。我们建议您取消此请求。"
},
"blockaidAlertDescriptionTokenTransfer": {
"message": "您正在将您的资产发送给欺诈方。如果继续,您将会损失这部分资产。"
},
"blockaidAlertDescriptionWithdraw": {
"message": "如果您确认此请求,则表示您允许欺诈方提取并花费您的资产。您将无法收回资产。"
},
"blockaidDescriptionApproveFarming": {
"message": "如果您批准此请求,以欺诈闻名的第三方可能会拿走您的所有资产。"
},
"blockaidDescriptionBlurFarming": {
"message": "如果您批准此请求,则有人可以窃取您列于Blur上的资产。"
},
"blockaidDescriptionErrored": {
"message": "由于出现错误,安全提供程序无法验证此请求。请谨慎操作。"
},
"blockaidDescriptionMaliciousDomain": {
"message": "您正在与恶意网域交互。如果您批准此请求,可能会遭受资产损失。"
},
"blockaidDescriptionMightLoseAssets": {
"message": "如果您批准此请求,可能会遭受资产损失。"
},
"blockaidDescriptionSeaportFarming": {
"message": "如果您批准此请求,则有人可以窃取您列于OpenSea上的资产。"
},
"blockaidDescriptionTransferFarming": {
"message": "如果您批准此请求,因欺诈而恶名昭彰的第三方会拿走您的所有资产。"
},
"blockaidMessage": {
"message": "隐私保护 - 不会与第三方共享任何数据。适用于 Arbitrum、Avalanche、BNB Chain、以太坊主网、Linea、Optimism、Polygon、Base 和 Sepolia。"
},
"blockaidTitleDeceptive": {
"message": "此请求属欺骗性质"
},
"blockaidTitleMayNotBeSafe": {
"message": "保持谨慎"
},
"blockaidTitleSuspicious": {
"message": "此请求很可疑"
},
"blockies": {
"message": "Blockies"
},
"borrowed": {
"message": "已借入"
},
"boughtFor": {
"message": "购买用于"
},
"bridge": {
"message": "桥接"
},
"bridgeAllowSwappingOf": {
"message": "允许精确获取 $3 上的 $1 $2 以进行桥接",
"description": "Shows a user that they need to allow a token for swapping on their hardware wallet"
},
"bridgeApproval": {
"message": "批准 $1 进行桥接",
"description": "Used in the transaction display list to describe a transaction that is an approve call on a token that is to be bridged. $1 is the symbol of a token that has been approved."
},
"bridgeApprovalWarning": {
"message": "您正在授权访问 $1 $2。该合约不会动用任何其他资金。"
},
"bridgeBlockExplorerLinkCopied": {
"message": "区块浏览器链接已复制!"
},
"bridgeCalculatingAmount": {
"message": "正在计算……"
},
"bridgeConfirmTwoTransactions": {
"message": "您需要在您的硬件钱包上确认 2 笔交易:"
},
"bridgeCreateSolanaAccount": {
"message": "创建 Solana 账户"
},
"bridgeCreateSolanaAccountDescription": {
"message": "如要将资产转移至 Solana 网络,您需拥有一个账户及接收地址。"
},
"bridgeCreateSolanaAccountTitle": {
"message": "您需要先创建一个 Solana 账户。"
},
"bridgeDetailsTitle": {
"message": "桥接详情",
"description": "Title for the modal showing details about a bridge transaction."
},
"bridgeEnterAmount": {
"message": "选择金额"
},
"bridgeEnterAmountAndSelectAccount": {
"message": "输入金额并选择目标账户"
},
"bridgeExplorerLinkViewOn": {
"message": "在 $1 上查看"
},
"bridgeFetchNewQuotes": {
"message": "获取一个新的?"
},
"bridgeFromTo": {
"message": "将 $1 $2 桥接到 $3",
"description": "Tells a user that they need to confirm on their hardware wallet a bridge. $1 is amount of source token, $2 is the source network, and $3 is the destination network"
},
"bridgeGasFeesSplit": {
"message": "前一个屏幕中报出的任何网络费用均包含两笔交易,并将进行分割。"
},
"bridgeNetCost": {
"message": "净成本"
},
"bridgeNoMMFee": {
"message": "无 MM 费用"
},
"bridgePriceImpact": {
"message": "价格影响"
},
"bridgePriceImpactNormalWarning": {
"message": "价格影响反映了您的兑换对市场价格的影响程度。若燃料费不足,系统将自动使用部分代币抵扣手续费,这会进一步推高价格影响。MetaMask 不设定也不控制该机制。"
},
"bridgePriceImpactTooltipTitle": {
"message": "价格影响"
},
"bridgePriceImpactWarningTitle": {
"message": "价格影响警告"
},
"bridgeQuoteExpired": {
"message": "您的报价已超时。"
},
"bridgeSelectDestinationAccount": {
"message": "选择目标账户"
},
"bridgeSelectDifferentQuote": {
"message": "请选择其他报价。"
},
"bridgeSelectNetwork": {
"message": "选择网络"
},
"bridgeSelectTokenAmountAndAccount": {
"message": "选择代币、金额和目标账户"
},
"bridgeSelectTokenAndAmount": {
"message": "选择代币和金额"
},
"bridgeSolanaAccountCreated": {
"message": "Solana 账户已创建"
},