-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsource.js
1997 lines (1979 loc) · 133 KB
/
source.js
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
// ==UserScript==
// @name TETR.IO中文翻译
// @namespace https://github.com/huanmieSAA/iotranslate
// @version 1.5.0
// @description 将TETR.IO中的大部分可编辑内容翻译成中文。制作鸣谢:mrz,xb,渣渣120,B4093以及方块群友。1.5.0更新:补充文本。大家有遇到没翻的文本可以截图发送到[email protected]我会及时添加
// @match https://*.tetr.io/*
// @grant GM_registerMenuCommand
// @downloadURL https://update.greasyfork.org/scripts/466016/TETRIO%E4%B8%AD%E6%96%87%E7%BF%BB%E8%AF%91.user.js
// @updateURL https://update.greasyfork.org/scripts/466016/TETRIO%E4%B8%AD%E6%96%87%E7%BF%BB%E8%AF%91.meta.js
// ==/UserScript==
(() => {
"use strict";
// 定义文本映射表
// 常规文本
const textMap = {
"WINS AGAINST OPENERS": "对开局策略高胜率",
"WINS AGAINST INF DS'ERS": "对挖掘策略高胜率",
"WINS AGAINST STRIDERS": "对火力策略高胜率",
"WINS AGAINST PLONKERS": "对反击策略高胜率",
"LOSES AGAINST OPENERS": "对开局策略低胜率",
"LOSES AGAINST INF DS'ERS": "对挖掘策略低胜率",
"LOSES AGAINST STRIDERS": "对火力策略低胜率",
"LOSES AGAINST PLONKERS": "对反击策略低胜率",
"LOW VS": "低VS",
"LOW APM": "低APM",
"LOW PPS": "低PPS",
"HIGH VS": "高VS",
"HIGH APM": "高APM",
"HIGH PPS": "高PPS",
"PLONKER": "使用反击策略",
"INF DS'ER": "使用挖掘策略",
"LEVEL HEADED": "头脑清醒",
"GOOD MOOD": "手感火热",
"BAD MOOD": "手感不佳",
"OVER CONFIDENT":"过度自信",
"VENGEANCE": "复仇之心",
"STRIDER": "使用火力策略",
"OPENER": "使用开局策略",
//初始界面文本
"JOIN": "加入",
"total players": "总玩家数",
"OF WHICH REGISTERED": "注册玩家数",
"OF WHICH ANONYMOUS": "匿名玩家数",
"OF WHICH RANKED": "拥有段位的玩家数",
"TOTAL ACCOUNTS": "总账号数",
"games played": "对局场数",
"hours played": "总游戏时长",
"TIME PLAYED": "总游戏时长",
"RECORDS SAVED": "总记录存储",
"AVG PIECES PER SECOND": "平均PPS",
"welcome to TETR.IO": "欢迎来到TETR.IO",
"open in": "打开",
"DESKTOP": "桌面客户端",
"GET": "获取",
"puzzle together in this modern yet familiar online stacker. play against friends and foes all over the world, or claim a spot on the leaderboards - the stacker future is yours!": "欢迎游玩这款熟悉的现代方块游戏。与世界各地的朋友和对手对战,在排行榜上占据一席之地——方块的未来在您手中!",
"enter a username to join, or leave it blank to get a random one": "输入用户名登录,或留空生成随机用户名",
"by joining, you accept the": "加入即表示您接受",
"terms of use": "使用条款",
"privacy policy": "隐私政策",
"and": "和",
"rules": "规则",
"TETR.IO is in ALPHA. please report bugs when you see them!": "TETR.IO处于ALPHA阶段,请在发现问题时报告错误!",
//注册相关文本
"want to join?": "想要加入游戏吗",
"the nickname": "这个昵称",
"hasn't been registered. do you want to claim it as yours, or play anonymously? you won't be able to submit scores to the leaderboards or play in matchmaking when anonymous.": "没有被注册。请问你是想把它作为你的账号,还是进行匿名游戏?匿名时,你将无法向排行榜提交分数或参加比赛。",
"stay ANONYMOUS": "保持匿名",
"REGISTER": "注册",
"let's make things official": "让我们正式开始吧",
"to register, please choose a password for yourself": "想要注册,请输入密码",
//登录相关文本
"good to see you again!": "很高兴再次见到你",
"the username": "这个用户名",
"is registered. please enter your password to log in": "是注册了的,输入密码来登录(如果是你)",
"I FORGOT": "我忘了!",
"LOGIN": "登录",
"forgot your password?": "忘记了您的密码?",
"if you have an email address associated with your account, you can reset your password by entering your email.": "如果您的账户关联有电子邮箱,您可以通过它来重置密码。",
"REQUEST RESET": "请求重置密码",
"password incorrect": "密码错误",
"is this you?": "这是你吗?",
"LOG OUT": "退出登录",
"welcome back to TETR.IO!": "欢迎回到TETR.IO!",
"are you": "是你",
"TETR.IO has a policy of": "TETR.IO有一条政策:",
"one account per person (anonymous accounts excluded)": "每人仅能拥有一个账户(不包括匿名账户)",
". making multiple accounts may result in permanent restriction of all your accounts.": ".开设多个账户可能会导致你的所有账户被永久封禁。",
"read the": "阅读",
"full policy": "完整的政策",
"for more info. in doubt, or if you believe your usage of a second account is justified, please": "如果有疑问,或者你有合理理由使用第二个账户,请联系我们。",
"contact support": "联系支持",
"I'M NOT MULTIACCOUNTING": "我没有多账户",
"just to be sure…": "只是为了确定...",
"SUBMIT": "允许",
"two-factor authentication": "双重认证",
"use your authenticator app to get a six-digit code, or use one of your recovery codes.": "使用你的认证器应用程序获得一个六位数的代码,或使用你的一个恢复代码。",
"reset your password": "重置你的密码",
"enter a new password to regain access to your account": "输入一个新的密码,重新进入你的账户",
//删除账号相关文本
"delete my account": "删除我的账户",
"DELETE YOUR ACCOUNT?": "删除你的账户?",
"delete your account": "删除账户",
"and all attached data?": "和所有关联的数据?",
"DELETE!": "删除!",
"this cannot be undone.": "这是不可逆的",
"THE SONG OF DESTRUCTION CANNOT BE STOPPED.": "毁灭之歌无法停止。",
"you're certain you want to delete your account? you will lose EVERYTHING, including but not limited to...": "你确定要删除你的账户吗? 你将失去所有的东西,包括但不限于...",
"• all your replays": "• 你的所有回放",
"• all your XP": "• 你的所有经验值",
"• all your accomplishments": "• 你所有的成就",
"• all your badges": "• 你所有的徽章",
"• your TETRA LEAGUE rank": "• 你的TETRA联赛段位",
"• and more...": "• 等等...",
"DELETE": "删除",
"you're absolutely, 100% certain you won't regret DELETING YOUR ACCOUNT FOREVER?": "你绝对、100%确定你不会为删除你的账户而后悔,直到永远?",
"NO REGRETS!": "不后悔!",
"FINAL WARNING": "最后的警告",
"DELETE YOUR ACCOUNT AND ALL ITS DATA FOREVER?": "永远删除你的账户和所有数据?",
"DELETE MY ACCOUNT": "删除我的账号",
"DELETING IN": "删除中",
//主菜单文本
//多人游戏相关文本
"MULTIPLAYER": "多人游戏",
"play online with friends and foes": "和朋友或陌生人进行在线游戏",
"NEW GAMEMODE!!":"全新模式!!",
"leaderboards, achievements, replays and more":"排行榜,成就,回放等等",
"NEW!":"更新!",
"scale the tower! how far can you get?":"攀登高塔!你能爬多高?",
"join public games":"加入公开对局",
"":"",
//TETRA联赛相关文本
"Thank you for playing TETR.IO! After over four years, Season 1 of Tetra League is coming to a close. We've got something exciting coming, so please stay tuned for it!":"感谢您游玩 TETR.IO!经过四年多的时间,Tetra联赛 第一赛季即将结束。我们还将推出更多精彩内容,敬请期待!",
"You can continue to play Tetra League until the end of the Season, at which point your final standing (if you are ranked) will be memorialized on your profile!":"您可以在赛季结束前继续游玩Tetra联赛,赛季结束后您的最终排名(如果有排名的话)将会记录在您的个人档案中!",
"Earn a badge that reflects your final placement!":"您将获得一枚对应您最终排名的徽章",
"July 26th":"7月26日",
": Season 1 ends":":第一赛季结束",
"TIMELINE":"时间表",
"July 26th through August 2nd: Season 1 Post-Season (unranked, Season 1 rules)":"7 月 26 日至 8 月 2 日: 第一赛季过渡赛阶段(无排名,第一赛季规则)",
"August 2nd":"8月2日",
": Season 2 rules are published":":公布第二赛季规则",
"August 2nd through August 16th: Season 2 Pre-Season (unranked, Season 2 rules)":"8 月 2 日至 8 月 16 日: 第二赛季季前赛阶段(无排名,第二赛季规则)",
"August 16th":"8月16日",
": Season 2 begins":":第二赛季正式开始",
"GOT IT!":"了解!",
"TETRA LEAGUE": "TETRA联赛",
"ANONYMOUS USERS MAY NOT ENTER TETRA LEAGUE": "匿名玩家无法参与TETRA联赛",
"fight players of your skill in ranked duels": "与水平相当的玩家进行参与排名的对决",
"this user is playing anonymously": "该用户正在匿名游戏",
"games won": "获胜次数",
"IN QUEUE -": "排队中 - ",
"IN GAME": "游戏中",
"ENTER MATCHMAKING": "进入匹配",
"CANCEL MATCHMAKING": "取消匹配",
"LEAVING EARLY IS PUNISHED": "中途退出会受到惩罚",
"HOW DOES IT WORK?": "这个模式是怎么运作的?",
"enter matchmaking and you will be matched up with a player of similar skill in a game of 1v1 VERSUS.": "加入匹配队伍,匹配成功后,您将和一个水平相似的玩家进行一场1对1的对战。",
"win games to gain TR and rank up! you must play at least 10 games to see your TR. to get a RANK and enter the GLOBAL LEADERBOARDS, keep playing consistently.": "获胜可以获得TR并晋升段位!您必须至少玩10局才能看到您的TR。要获得段位并进入全球排行榜,请持续进行游戏。",
"if you leave the game early at any point, you must rejoin immediately or you will be penalized. go conquer the ranks!": "如果您在对局中的任何时候提前离开游戏,必须立刻重新加入对局,否则将受到惩罚。去挑战排行榜上的其他玩家吧!",
"LEADERBOARDS": "排行榜",
"estimated queue time:": "预计等待时间:",
"FINDING MATCH": "寻找对局中",
"CLICK TO CANCEL": "单击取消",
"SECONDS": "秒",
"MATCH FOUND": "已找到对局",
"JOINING MATCH": "加入对局中",
"GET READY FOR": "对决",
"THE NEXT BATTLE": "开始",
"face off against others and rise up through the ranks!": "与他人对决,并获得段位提升!",
"Please remember to be civil to your opponent.": "请文明交流。",
"the results are in!": "对局结果揭晓!",
"TETRA LEAGUE STANDING": "TETRA联赛数据",
"How was that game?": "这局游戏怎么样?",
"Thanks for the feedback!": "感谢反馈!",
"NEXT": "继续",
"play more games to receive a rank": "玩更多的游戏以获得段位",
"Off-season":"淡季",
"OFF-SEASON":"淡季",
"UNRANKED":"无排名",
"MATCH SUSPENDED": "对局暂停",
"Your opponent has disconnected, but may still return.": "您的对手已断开连接,但仍有可能重连。",
"Your will gain points as you wait. If your opponent does not return,you win by default.": "您将会获得一分等待奖励。如果对手没有重连,则您直接获胜。",
//快速游戏相关文本
"QUICK PLAY": "快速游戏",
"jump into a currently ongoing match": "加入正在进行的比赛",
"CHAT": "聊天",
"our Discord server": "我们的Discord服务器",
"Welcome to Quick Play chat! Please remember to be civil to your opponents - chat is actively monitored.\n\nThis chat is linked with": "欢迎来到快速游戏聊天室!请文明交流——聊天将被实时监控。 \n\n聊天将链接到",
"left the room": "离开房间",
"joined the room": "加入房间",
"disconnected": "断开连接",
"was yanked from the room": "被踢出房间",
"started the game": "开始游戏",
"aborted the game": "终止游戏",
"ZEN WHILE WAITING": "赛前热身",
"BACK TO ROOM": "回到房间",
"SPECTATING": "旁观中",
"CURRENTLY INGAME": "正在游戏中",
"game finished": "游戏结束",
"welcome to": "欢迎来到",
"is a free familiar yet fast-paced online stacker in the same genre as tetris, and played by millions across the globe.": "是一款免费、易上手且快节奏的在线堆叠游戏,玩法与俄罗斯方块类似,在全球范围内拥有数百万玩家。",
"hover for more info!": "把鼠标悬停在这里以获取更多信息!",
"your currently set keybinds are:": "您当前的按键绑定是:",
"PLAYING": "游玩",
"click to switch to SPECTATORS": "点击切换到旁观模式",
"click to copy url": "点击这里复制链接",
"EDIT": "编辑",
"you just joined QUICK PLAY - you will play in the next game in this lobby. please wait for the current game to finish. feel free to spectate or play ZEN while waiting!": "您加入了快速游戏 - 请等待结束然后加入下一局。在等待时,您可以选择旁观或游玩单人的禅意模式!",
"you can change these and many other settings in CONFIG. have fun!": "您可以在设置中更改这些和许多其他设置。祝您玩得愉快!",
"GAME IN PROGRESS, GOOD LUCK!": "游戏正在进行中,祝你好运!",
"Super Lobby Mode Engaged - congratulations on hitting 100 players! Joins and leaves will be suppressed, and the winner of games in this room will earn a special profile badge!": "超级房间模式开启--达到了100名玩家! 进退房消息将暂时关闭,本局游戏的赢家将获得一枚特殊的个人资料徽章!",
"Super Lobby Mode Disengaged": "超级房间模式解除",
"click to switch to PLAYERS": "点击以切换到游玩模式",
"SPECTATE": "旁观",
"enter room id or url and hit enter...": "输入房间编号或网址并单击回车...",
"you just joined QUICK PLAY - the next game will start automatically. please wait just a moment longer!": "你刚刚加入了快速游戏——下一场游戏即将开始。请稍等片刻",
"PLAYERS (": "玩家数(",
"welcome to the ZENITH TOWER! send lines and KO enemies to scale the tower.":"欢迎来到天顶之塔!发送垃圾行并击倒敌人即可一步步攀爬高塔",
"the further up the tower, the stronger the opponents!":"越往上爬,对手越强!",
"leaderboards reset every week, how far can you get?":"排行榜每周重置,你能爬多高?",
"ADD OR REMOVE MODS":"添加或移除模组",
"YOUR FINAL ALTITUDE":"您的最终高度",
"THIS WEEK'S PERSONAL RANK":"本周个人排名",
"this is your first game this week, play more to track your improvement":"这是你本周的第一场对局,多多游玩以跟踪你的进步",
"THIS WEEK'S COUNTRY RANK":"本周地区排名",
"THIS WEEK'S GLOBAL RANK":"本周全球排名",
"THIS WEEK'S PERSONAL BEST":"本周个人最高",
"AGAIN":"再来一局",
"EXPERT":"专家模式",
"joining game…":"正在加入游戏…",
"a less lenient challenge, for those who dare":"敢于挑战者的选择",
"EXPERT MODE":"专家模式",
"reach floor 9 to unlock":"抵达9层解锁",
"DOUBLE HOLE GARBAGE":"空洞诅咒",
"garbage may sometimes spawn with two holes":"垃圾行有时会生成两个空洞",
"reach floor 6 to unlock":"抵达6层解锁",
"receive double the garbage, cancel double the garbage":"接收双倍的垃圾行,抵消双倍的垃圾行",
"VOLATILE GARBAGE":"达摩克利斯之剑",
"MESSIER GARBAGE":"垃圾之乱",
"reach floor 5 to unlock":"抵达5层解锁",
"gravity scales up harshly by floor":"重力随楼层急剧增加",
"reach floor 4 to unlock":"抵达4层解锁",
"NO HOLD":"禁止暂存",
"hold piece is disabled":"暂存方块被禁用",
"reach floor 2 to unlock":"抵达2层解锁",
"garbage is significantly messier":"垃圾行变得更加混乱",
"reach floor 3 to unlock":"抵达3层解锁",
"non-garbage minos are only visible once every five seconds":"非垃圾行方块每五秒显形一次",
"reach floor 7 to unlock":"抵达7层解锁",
"all-spins are rewarded, but doing the same clear twice is penalized":"all-spins将启用奖励,但重复使用相同的spin消除将会受到惩罚",
"reach floor 8 to unlock":"抵达8层解锁",
"DUO":"双人模式",
"scale the tower together with someone you hold close":"与好友一起攀登高塔",
"reset":"重置",
"scale the tower!":"攀上高塔!",
"waiting for player":"等待玩家",
"CLICK TO INVITE A FRIEND":"点此邀请好友",
"READY!":"准备!",
"READY":"准备",
"PERFORM A 3-COMBO":"完成一次三连击",
"CLEAR 2 DOUBLES":"完成两次双消",
"CLEAR A QUAD":"完成一次四消",
"CLEAR 6 LINES":"消除六行",
"CLEAR A DOUBLE":"完成一次双消",
"USING AN O-PIECE":"但仅用O块",
"CLEAR 4 GARBAGE LINES":"消除四行垃圾行",
"USING AN S OR Z-PIECE":"但仅用S块或者Z块",
"CLEAR A TRIPLE":"完成一次三消",
"USING AN L OR J-PIECE":"但仅用L或J块",
"PERFORM A T-SPIN MINI":"完成一次T-SPIN MINI",
"CLEAR A T-SPIN SINGLE":"完成一次T-SPIN SINGLE",
"CLEAR A T-SPIN DOUBLE":"完成一次T-SPIN DOUBLE",
"CLEAR AN S/Z-SPIN":"完成一次S-SPIN或Z-SPIN",
"CLEAR AN L/J-SPIN":"完成一次L-SPIN或J-SPIN",
"PERFORM A 5-COMBO":"完成一次五连击",
"CLEAR 2 LINES USING":"完成两次消除仅用",
"HORIZONTAL I-PIECES":"横I块",
"TANK 4 GARBAGE LINES":"抗下4行垃圾",
"CANCEL 4 GARBAGE LINES":"抵消4行垃圾",
"CLEAR 4 DOUBLES":"完成四次双消",
"PLACE 3 PIECES IN A ROW":"在一行中放置3个方块",
"WITHOUT MOVING OR ROTATING":"但禁止移动或旋转",
"PLACE 14 PIECES IN A ROW":"在一行中放置14个方块",
"WITHOUT CLEARING ANY LINES":"但禁止消除任何一行",
"SEND 6 LINES":"发动6行攻击",
"PLACE 20 PIECES":"放置二十个方块",
"CLEAR 2 DOUBLES":"完成两次双消",
"USING S OR Z-PIECES":"但仅用S块或Z块",
"CLEAR 2 TRIPLES":"完成两次三消",
"USING L OR J-PIECES":"但仅用L块或J块",
"CLEAR AN I-SPIN":"完成一次I-SPIN",
"CLEAR A QUAD IN THE":"完成一次四消",
"UPPER HALF OF THE BOARD":"但仅在版面的上半部分",
"CLEAR A T-SPIN TRIPLE":"完成一次T-SPIN TRIPLE",
"PLACE 25 PIECES":"放置25个方块",
"WITHOUT USING HOLD":"但禁止使用暂存",
"CLEAR 3 TRIPLES":"完成三次三消",
"REACH B2B X4":"达到B2B X4",
"CLEAR A QUAD IN":"完成一次四消在",
"IN DIFFERENT COLUMNS":"在不同列",
"USE HOLD ON":"使用暂存",
"15 PIECES IN A ROW":"在一行中放置15个方块",
"PLACE 10 PIECES WITHOUT":"放置10个方块",
"RELEASING SOFT DROP":"但禁止使用软降",
"HAVE PART OF YOUR STACK IN":"让你的方块保持在",
"THE TOP 3 ROWS FOR 3 SECONDS":"顶部三行内三秒",
"CLEAR 10 LINES WITHOUT":"消除10行但不",
"CLEARING WITH T OR I-PIECES":"使用T块或I块",
"CLEAR AN S/Z-SPIN TRIPLE":"完成一次S或Z-SPIN TRIPLE",
"CLEAR 2 DOUBLES CONSECUTIVELY":"连续完成两次双消",
"USING TWO O-PIECES":"但仅使用O块",
"CLEAR 4 T-SPIN MINIS":"完成四次T-SPIN MINI",
"USING O-PIECES":"但仅用O块",
"CLEAR SPIN-CLEARS":"完成旋转消除",
"WITH 3 DIFFERENT PIECES":"且使用三个不同的方块",
"CLEAR 4 QUADS":"完成四次四消",
"PLACE 5 PIECES IN A ROW":"在一行放置5个方块",
"SEND 18 LINES":"发动18行攻击",
"CLEAR AN L/J-SPIN TRIPLE":"完成一次L或J-SPIN TRIPLE",
"CLEAR 2 QUADS IN A ROW":"在同一列完成两次四消",
"CLEAR 8 SINGLES WITHOUT DOING":"完成8次单消但不",
"OTHER CLEARS OR USING HOLD":"进行其他消除或使用暂存",
"HAVE NO GARBAGE LINES ON":"保持没有垃圾行",
"YOUR BOARD FOR 4 SECONDS":"4秒在你的版面上",
"ROTATE 100 TIMES":"旋转一百次",
"DON'T CANCEL ANY":"不要抵消任何",
"GARBAGE FOR 8 SECONDS":"垃圾行8秒",
"PERFORM A 7-COMBO":"完成一次7连击",
"CLEAR AN I-SPIN DOUBLE":"完成一次I-SPIN DOUBLE",
"CLEAR TWO S/Z-SPIN":"完成两次S或Z-SPIN DOUBLE",
"DOUBLES CONSECUTIVELY":"且要连续",
"CLEAR TWO L/J-SPIN":"完成两次L或J-SPIN DOUBLE",
"PERFORM A COLOR CLEAR":"完成一次色彩全消",
"CLEAR 40 LINES":"完成40行消除",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
"":"",
//自定义游戏相关文本
"CUSTOM GAME": "自定义游戏",
"create public and private rooms to play by your rules": "创建公开和私人房间,按照您的规则进行游戏",
"PUBLIC ROOM": "公开房间",
"create a public room anyone can join": "创建一个任何人都可以加入的公开房间",
"PRIVATE ROOM": "私人房间",
"create a private room for you and friends": "为你和朋友创建一个私人房间",
"Welcome to chat! Please remember to be civil to your opponents.": "欢迎来到聊天室! 请文明交流。",
"NEW":"新",
"ROOM": "房间",
"MATCH": "比赛",
"GAME": "对局",
"room name": "房间名",
"player limit": "人数限制",
"auto start": "自动开始",
"allow anonymous users to join": "允许匿名用户加入",
"allow unranked users to play": "允许未定段用户进行游戏",
"allow users who are in matchmaking to join": "允许正在排队进行tetra联赛的用户进行游戏",
"RANK LIMIT": "段位限制",
"limit by top rank": "按最高段位限制",
"music": "音乐",
"GENERAL": "常规",
"gamemode": "对局模式",
"stock": "命数",
"versus": "竞争",
"[2 - ∞ players] a battle royale! who can survive the longest?": "[2-∞名玩家]一场大混战!谁能活得最久?",
"PRACTICE": "练习",
"[2 players] a mode to practice with a friend": "[2名玩家]一个与朋友一起练习的模式",
"EXPERIMENTAL": "实验选项",
"garbage passthrough": "垃圾行穿透",
"limited": "限制",
"LIMITED": "限制",
"ZERO": "无",
"opposing attacks in transit always cancel eachother out": "发送过程中的对立攻击总是相互抵消的。",
"opposing attacks in transit cancel out while garbage is flying": "发送过程中的对立攻击能被抵消,垃圾行偶尔会飞来。",
"CONSISTENT": "相容",
"opposing attacks in transit cancel out except when garbage is flying": "发送过程中的的对立攻击能被抵消,除非是在垃圾行飞来的时候",
"FULL": "全部",
"opposing attacks in transit do not cancel eachother out": "发送过程中的对立攻击不会相互抵消",
"game presets": "对局预设",
"custom": "定制",
"default": "默认设置",
"tetra league": "tetra联赛",
"CLASSIC": "经典",
"ARCADE": "街机",
"ENFORCED DELAYS": "延迟块",
"TETR.IO's premier room settings. optimized for battles with large groups or duels against friends and foes alike!": "TETR.IO的首要房间设置。为与大型团体的战斗或与朋友和敌人的决斗而优化!",
"settings copied directly from TETR.IO's matchmaking rooms! margin times and match goals are shifted slightly with duels in mind.": "与 TETRA 联赛完全相同的设置!考虑到规则为单挑,临界时间与获胜条件与默认设置有些许不同。",
"an endurance-focused challenge of pure stacking intellect! almost every value is changed to imitate stacker games made many years ago.": "一个以耐力为重点的纯粹堆叠的智力挑战!为模仿多年前的方块游戏,几乎改变了所有参数。",
"featuring innovative mechanics created for a popular stacker found in arcades, this preset puts a focus on smart stacking and mastery with its custom kick table!": "模仿创新性的街机方块机制,重点是策略堆叠与合理运用特殊的踢墙表。",
"this preset introduces several forms of enforced handling which introduces a generous skill ceiling! puts a focus on efficient and consistent play, as opposed to deafeningly fast rounds.": "该预设限制了方块移动的延迟,稍微降低了水平上限。重点是高效且稳定的堆叠攻击上,而不是花里胡哨的开局互搏。",
"settings copied directly from TETR.IO's quick play room!": "设置直接从TETR.IO的快速游戏中复制!",
"RANDOM":"随机",
"RANDOM: CALM":"随机:平静",
"RANDOM: BATTLE":"随机:战斗",
"pick a completely random BGM for me":"完全随机地为我挑选一首歌",
"pick a random calmer BGM for me":"随机地为我挑选一首平静的歌",
"pick a random intenser battle BGM for me":"随机地为我挑选一首更加激烈的战斗之曲",
"random bag type": "随机BAG类型",
"keep shuffling a bag of the 7 tetrominoes": "保持随机排列一包7块中包含所有种类的方块",
"keep shuffling a bag of 2x the 7 tetrominoes": "保持随机排列一包14块中包含所有种类的方块各两块",
"random with repetition protection": "具有重复保护的随机性",
"alternate between 2 tetrominoes": "交替使用2种方块",
"completely random generation": "完全随机生成",
"allowed spins": "允许的旋转规则",
"receive bonuses for spinning T-pieces": "旋转T块获得额外攻击",
"receive bonuses for spinning all pieces": "旋转所有方块都可以获得额外攻击",
"receive bonuses for spinning T-pieces and receive back-to-back for spinning all other pieces":"旋转所有方块都可以获得额外攻击,但非T攻击攻击力均判为mini",
"receive bonuses for spinning all pieces BUT attacks are halved except for T-SPINS": "旋转所有方块都可以获得额外攻击,但非T攻击攻击力减半,且使用四角判定",
"everything is a spin because YEAH WHY NOT (O-spin SUPPORTED!)": "所有方块都能SPIN,为什么不呢?(支持O-Spin!)",
"receive no spin bonuses": "旋转任何方块都没有额外攻击",
"combo table": "连击表",
"disable combo chaining": "禁止连击表",
"TETR.IO's combo multiplier": "TETR.IO的连击倍增表",
"classic guideline combo table": "经典规则连击表",
"modern guideline combo table": "现代规则连击表",
"allow 180 spins": "允许180度旋转",
"kick table": "旋转系统",
"the default natural rotation system with symmetric I-piece rotation": "默认的超级旋转系统和对称的I块旋转",
"the standard natural rotation system": "默认的超级旋转系统",
"SRS with more powerful 180 spins": "带有更强大的180度旋转的超级旋转系统",
"novel rotation system by DR OCELOT": "DR OCELOT的新型旋转系统",
"the classic rotation system": "经典旋转系统",
"rotation system used in arcade games": "在街机游戏中使用的旋转系统。",
"permissive rotation system by WINTERNEBS": "WINTERNEBS的七转八转旋转系统",
"no kicks possible": "无法踢墙",
"use hard drop": "允许硬降",
"use NEXT queue": "允许查看下一个方块",
"use HOLD queue": "允许查看暂存方块",
"next pieces": "下一块",
"show shadow piece": "显示阴影",
"line clear ARE": "消行延迟",
"ARE": "出块延迟",
"enforce below handling settings": "强制执行以下灵敏度设置",
"enforced ARR": "强制ARR",
"enforced DAS": "强制DAS",
"enforced SDF": "强制SDF",
"GRAVITY & MARGIN TIME": "重力和临界时间",
"gravity": "重力",
"gravity increase": "重力增量",
"gravity margin time": "重力临界时间",
"garbage multiplier": "垃圾行加成",
"garbage margin time": "垃圾行临界时间",
"garbage increase": "垃圾行增量",
"lock delay": "锁定延迟",
"garbage travel speed": "垃圾行飞行速度",
"garbage cap": "单次垃圾行上限",
"garbage cap increase": "单次垃圾行上限增量",
"garbage cap max": "单次垃圾行最大上限",
"garbage blocking": "垃圾行阻挡",
"none": "无",
"enable back-to-back chaining": "启用back-to-back连锁增伤",
"enable back-to-back charging": "启用back-to-back蓄力",
"rounding mode": "小数处理方式",
"DOWN":"向下取整",
"all values are rounded down":"所有值均向下取整",
"RNG":"按小数部分随机",
"weighted randomness is used to smooth values (e.g. 1.23 has a 23% chance to become 2)":"加权性随机,用于平滑值(例如:1.23有23%的机会变成2)",
"allow manual targeting": "允许手动选定目标",
"enable clutch clears": "启用clutch消除",
"disable lockout": "禁用锁定",
"board width": "游戏区域宽度",
"board height": "游戏区域高度",
"WARNING: server restarting soon!": "警告:服务器即将重启!",
"COMBO BLOCKING": "连击阻挡",
"incoming garbage will be delayed and reduced on successive line clears": "连击可阻挡并抵消垃圾行",
"LIMITED BLOCKING": "限制阻挡",
"incoming garbage can be reduced only once per next immediate piece": "单个方块只能阻挡并抵消一次垃圾行",
"incoming garbage cannot be blocked": "垃圾行无法阻挡或抵消",
"enable all clears": "启用全消攻击奖励",
"all clear garbage": "全消伤害",
"all clear back-to-back": "全消back-to-back",
"opener phase":"开启阶段",
"Seed to use, if": "在此输入种子",
"is a free-to-win familiar yet fast-paced online stacker in the same genre as tetris, and played by millions across the globe.": " 是一款免费、易上手且快节奏的在线堆叠游戏,玩法与俄罗斯方块类似,在全球范围内拥有数百万玩家。",
"you just created an online game - you can start the game once two players are in the room (and not spectating)!": "您刚刚创建了一个在线游戏房间 - 只要有两名玩家在房间里(旁观除外),您就可以开始游戏!",
"you can change these and many other settings in CONFIG.": "您可以在主页-设置中更改这些设置和许多其他设置。",
"click on the tabs above to explore and/or change room options as you wish. have fun!": "点击上面的标签,随意更改房间选项!祝您玩得愉快!",
"public room": "公开房间",
"rank limit": "段位限制",
"bombs-style garbage": "炸弹式垃圾行",
"messiness timeout": "垃圾行混乱率",
"messiness within attack": "攻击行混乱率",
"avoid same column RNG": "避免同列多次生成垃圾",
"messiness on change": "混乱率",
"messiness timeout": "超时混乱",
"garbage absolute cap": "垃圾行绝对上限",
"garbage phase": "垃圾行阶段",
"DEFENSIVE": "防守奖励",
"a bonus is added when defending incoming attacks": "抵消垃圾行时获得额外攻击奖励",
"no bonus whatsoever": "无额外攻击奖励",
"OFFENSIVE": "攻击奖励",
"a bonus is added to both defense and offence": "发送和抵消垃圾行都会获得额外攻击奖励",
"garbage target bonus": "垃圾行目标奖励",
"garbage entry": "垃圾行输入方式",
"garbage are": "垃圾行等待时间",
"garbage queue": "垃圾行队列",
"INSTANT": "即时",
"garbage enters instantly": "垃圾行立即生成",
"CONTINUOUS": "接续",
"garbage rolls in one by one": "垃圾行滚滚而来",
"DELAYED PIECE SPAWN": "延迟生成",
"garbage rolls in one by one but delays your next piece": "垃圾行逐个输入,但是每段垃圾行延迟生成",
"You are not the host of this room": "你不是房主",
"HOST": "房主",
"ANON": "匿名",
"[2 - ∞ players] great for 1v1 and small lobbies!":"[2-∞人] 适合1v1和小规模房间!",
"[2 - ∞ players] a full-fledged battle royale gamemode great for big lobbies!":"[2-∞人] 完整的大逃杀模式,适合大规模房间!",
"[2 players] great for live training with a friend! enables undoing and resetting your board":"[2人] 适合与好友实时训练!支持撤销操作和重置棋盘",
"battle royale": "大逃杀",
"garbage special bonus": "垃圾行特殊奖励",
"infinite HOLD": "无限暂存",
"garbage cap margin": "垃圾上限增长",
"": "",
"": "",
"": "",
"": "",
"": "",
//房间列表相关文本
"ROOM LISTING": "房间列表",
"face off against the best in a single lobby shared by all!":"在这个面向所有人的大房间里与高手过招!",
"ROYALE":"超级房间",
"join public custom games": "加入公开自定义房间",
"REFRESH": "刷新",
"anons allowed:": "允许匿名:",
", unranked allowed:": ",允许未定段:",
"YES": "是",
"NO": "否",
"and below -": "及以下 - ",
"INGAME -": "游戏中 - ",
"LOBBY -": "大厅 - ",
"pick a room to join!": "选择一个房间加入",
//TETRA频道相关文本
"TETRA CHANNEL": "TETRA 频道",
"TETRA CHANNEL / LEADERBOARDS":"TETRA 频道 / 排行榜",
"TETRA CHANNEL / ME":"TETRA 频道 / 我的",
"TETRA CHANNEL / PLAYERS":"TETRA 频道 / 玩家",
"TETRA CHANNEL / ACHIEVEMENTS":"TETRA 频道 / 成就",
"top the global leaderboards!":"在全球排行榜中勇争前列!",
"track your progression!":"跟踪你的进步!",
"view other players and their achievements!":"查看其他玩家和他们的成就!",
"view your achievement progress!":"查看你的成就进度!",
"expert quick play":"专家模式快速游戏",
"career best":"生涯最佳",
"Career best:":"生涯最佳:",
"ago • Career best:":"前 • 生涯最佳:",
"leaderboards, replays and more": "排行榜、回放等",
"welcome to TETRA CHANNEL!": "欢迎来到TETRA频道!",
"VISIT THE TETRA CHANNEL SITE": "访问TETRA频道网站",
"VIEW FULL LEADERBOARDS, COUNTRY LEADERBOARDS, USER PAGES AND MORE": "查看完整排行榜、地区排行榜、用户页面等",
"LEADERBOARDS": "排行榜",
"GLOBAL LEADERBOARDS FOR 40 LINES AND BLITZ": "40行竞速和BLITZ模式的全球排行榜",
"ME": "我的",
"VIEW YOUR OWN RECORDS AND RECENT GAMES": "查看您自己的记录和最近的比赛",
"PLAYERS": "玩家",
"TETRA LEAGUE LEADERBOARDS AND XP": "TETRA联赛和经验值排行榜",
"LIVE NOW": "正在直播",
"TETRA NEWS": "TETRA新闻",
"PLAY": "游玩",
"RECENT": "最近",
"VICTORY": "获胜",
"DEFEAT": "落败",
"MATCH SUSPENDED": "比赛暂停",
"Your opponent has disconnected, but may still return.": "你的对手掉线了,但仍可能重新连接。请稍作等待",
"You will gain points as you wait. If your opponent does not return, you win by default.":"你在等待时会获得该回合胜利。如果倒计时结束后你的对手没有重新连接,本场比赛你将获胜。",
"VICTORY IN":"获胜倒计时:",
"BY LEAGUE RATING": "按联赛段位排名",
"Abandon Match":"挂起比赛",
"BY XP": "按经验值排名",
"you forfeited": "你弃权了",
"only the first 100 are shown. to see the full leaderboard, click VIEW FULL above.": "只显示前100名。要看完整的排行榜,请点击上面的查看完整排行榜。",
"PIECES PLACED": "放置块数",
"PIECES per SECOND": "每秒放置块数",
"KEYS PRESSED": "按键数",
"KEYS per PIECE": "按键每块",
"OVERVIEW": "回顾",
"STATS": "统计数据",
"KEYS per SECOND": "每秒按键数",
"HOLDS": "暂存数",
"LINES per MINUTE": "每分钟行数",
"maximum COMBO": "最大连击数",
"maximum back-to-back chain": "最长back-to-back连锁",
"finesse %": "极简率",
"finesse faults": "非极简操作",
"FINAL TIME": "最终时间",
"FINAL SCORE": "最终得分",
"RESULTS": "比赛结果",
"got a new personal best in 40 LINES with a time of": "在40行挑战中取得了新的个人最好成绩,时间为",
"got a new personal best in BLITZ with a score of": "在BLITZ中取得了新的个人最好成绩,得分为",
"has become a": "成为了",
"got a new personal best in 5,000,000 BLAST with a time of": "在5,000,000 BLAST中获得了新的个人最佳成绩,时间为",
"received the": "取得了",
"badge": "徽章",
"achieved": "达成",
"rank": "段位",
"SCORES": "分数",
"LATEST NEWS": "最新动态",
"VIEW TETRA LEAGUE RECORD": "查看TETRA联赛回放",
"VIEW PERSONAL BEST": "查看最好成绩",
"VIEW ALL 40 LINES RECORDS": "查看全部的40行挑战回放",
"Achieved": "达成于",
"months": "月",
"ago": "前",
"VIEW ALL BLITZ RECORDS": "查看全部的BLITZ回放",
"VIEW ALL RECENT RECORDS": "查看全部的近期回放",
"RECORD": "回放",
"VIEW": "查看",
"PLAY TIME": "游戏时长",
"ONLINE GAMES": "游戏场次",
"OF WHICH WINS": "获胜场次",
"ONLINE GAMES WON": "游戏获胜场次",
"EXPAND": "展开",
"GLOBAL LEADERBOARDS FOR 40 LINES, BLITZ AND QUICK PLAY": "关于40行竞速,BLITZ和快速游戏的全球排行榜",
"View previous seasons":"查看上赛季",
"View previous weeks":"查看前周",
"Back to the present":"返回当前",
"LEADERBOARD FOR":"排行榜,来自",
"ACHIEVEMENTS": "成就",
"VIEW YOUR ACHIEVEMENTS AND THEIR PROGRESS": "查看您的成就及其进度",
"FETING ACHIEVEMENTS...": "",
"POWERLEVELLING": "等级之力",
"XP gained":"获得XP",
"No skill without experience.": "熟能生巧。",
"Greater than the sum of its parts?": "",
"STACKER": "堆叠者",
"pieces placed": "放置方块",
"Greater than the sum of its parts?": "拼在一起更好吧?",
"GARBAGE OFFENSIVE": "垃圾攻势",
"lines sent": "发送垃圾行",
"The act of violence and communication of spirit.": "暴力美学的完美体现。",
"ELEGANCE": "优雅",
"pieces placed with perfect finesse": "用极简放置方块",
"Path of least resistance.": "干净利落。",
"CHAMPION OF THE LOBBY": "大厅冠军",
"largest room to rank first place in": "在最大的房间中获得第一",
"Biggest fish in a big pond.": "大才大用。",
"Achievement get!": "获得成就!",
"Elegance": "优雅",
"Stacker": "堆叠者",
"Garbage Attacker": "垃圾制造者",
"Clear 40 LINES using only T-Spin Doubles": "仅限使用T-Spin Double完成40行挑战",
"The ancient tradition of six pieces, all placed to serve the needs of one.":"传统的方块六件套,只为最完美的T块而堆。",
"SPRINTER": "40行爱好者",
"40 LINES games completed": "完成40行挑战次数",
"Don't reset.": "永不重开!",
"ALL THE SINGLE LINES": "单消艺术",
"Clear 40 LINES using only Singles": "仅限使用单消完成40行挑战",
"Death by exactly 40 cuts.": "正好四十次。",
"1-8 STACKING": "一八堆叠王",
"Clear 40 LINES using 10 Quads in column 2 or 9": "仅限在第二列或第九列中使用十个四消完成40行挑战",
"Don't waste the I-Piece!": "我从不浪费I块。",
"MR. BOARDWIDE": "版面天王",
"Clear 40 LINES using a Quad in each of the 10 columns": "在每一列中都完成一次四消完成40行挑战",
"Master of all columns.": "万列归宗!",
"Clear 40 LINES using only All Clears": "仅限使用10个全消完成40行挑战",
"To clear without waste is to express the highest form of gratitude.": "一块也不浪费才是对方块的最崇高的敬意。",
"BLITZER": "BLITZ爱好者",
"points earned in completed BLITZ games": "完成BLITZ挑战获得的分数总和",
"Two minutes of perfection.": "完美的两分钟。",
"WABI-SABI": "侘寂",
"highest BLITZ score obtained without performing any All Clears": "不使用任何全消的情况下获得的最高BLITZ分数",
"Two minutes of imperfection.": "不完美的两分钟。",
"SECRET GRADE": "隐藏段位",
"A (poorly guarded) secret.": "一个(众所周知的)秘密。",
"CONTENDER": "挑战者",
"rounds played": "Tetra联赛游玩的总回合数",
"\"Some day, everyone will remember your name!\" -Tetra League Ad": "“总有一天,所有人都会记得你的名字!”——Tetra联赛广告",
"REVERSE SWEEP SPECIALIST": "逆转大师",
"rounds won with the opponent at match point": "在对手处于赛点时赢得的回合数",
"Sometimes you need to feel the heat to unlock your best self.": "有时候,你只是需要被推一把。",
"THE SPIKE OF ALL TIME": "超究极必杀爆发",
"largest spike sent (excluding margin time)": "发动的最大spike数(不包含margin加成)",
"Flashy techniques are a staple amongst Tetra League's glory-seeking competitors.":"华丽的技巧是每个想在Tetra联赛中大放异彩的挑战者的标配。",
"SPEED PLAYER": "速度爱好者",
"rounds won with a higher PPS than the opponent": "在每秒方块数(PPS)高于对手的情况下获胜的回合数",
"A simple strategy that can overwhelm even the most poised of masters.": "功夫再高,也怕菜刀。",
"PLONK": "太极爱好者",
"rounds won with a lower PPS than the opponent": "在每秒方块数(PPS)低于对手的情况下获胜的回合数",
"Pour intention into each piece, and even a single bag can shake the world.": "慢工出细活。",
"OPENER MAIN": "开局之王",
"rounds won within 20 seconds": "在20秒内获胜的回合数",
"A signature move worthy of being the first strike AND the calling card.": "这不仅是猛烈的爆发,也代表了一种独特的风格。",
"Spin to win.": "转出胜利。",
"Feels good, real good.": "好,很好,非常好。",
"ZENITH EXPLORER": "天顶探索者",
"highest floor discovered": "抵达的最高层数",
"Uncover the mysteries of the Zenith Tower.": "发掘天顶之塔的秘密。",
"THE LOVERS": "恋人",
"highest floor discovered with the \"DUO\" mod": "在双人模式下抵达的最高层数",
"Love, and resign yourself to the fate of another.": "去爱,去把握命中注定的缘分。",
"TOWER CLIMBER": "攀塔爱好者",
"meters climbed": "攀登的米数",
"\"Have I been here before..?\"": "“这给我爬哪来了...?”",
"THE EMPEROR": "皇帝",
"highest floor discovered with the \"Expert Mode\" mod": "在启用“专家模式”模组的情况下抵达的最高层数",
"A display of power for those willing to bear its burden.": "欲戴王冠,必承其重。",
"WHATEVER IT TAKES": "不计代价",
"players KO'd in Quick Play": "在快速游戏中击败的玩家数",
"Mere sacrifices in the pursuit of greatness...": "一将功成万骨枯...",
"THE RESPONSIBLE ONE": "责任神",
"highest amount of revivals performed in a single DUO run": "在一局双人模式中完成的最多复活次数",
"\"Could you please stop dying?\"": "你能不能少死点?",
"STRENGTH": "力量",
"highest floor discovered with the \"VOLATILE GARBAGE\" mod": "在启用“达摩克利斯之剑”模组下抵达的最高层数",
"Match great obstacles with greater determination.": "以强大的决心应对更大的挑战。",
"SWAMP WATER": "沼泽水特调",
"highest floor discovered while using all mods other than \"DUO\" at the same time": "在启用所有模组的情况下抵达的最高层数(不包括双人模式)",
"The worst of all worlds.": "这充满恶意的世界。",
"DEADLOCK": "僵局",
"SWAMP WATER LITE":"沼泽水特调Lite",
"Comes in 8 different flavors!":"有 8 种不同口味!",
"highest floor discovered while using 7/8 of the difficulty mods (\"Duo\" not allowed)":"在启用任意七种模组的情况下抵达的最高层数(不包括双人模式)",
"BLOCK RATIONING":"方块配给专家",
"highest total attack within the first 400 pieces placed while using the \"Expert Mode\" and \"Messier Garbage\" mods":"在启用“专家模式”和“垃圾之乱”模组的情况下前400块发送的最多垃圾行",
"Adversity favors the resourceful.":"逆境于智者有益。",
"TALENTLESS":"无才",
"highest floor discovered while using the \"All-Spin\" mod without performing any Spins":"在启用“All-Spin”模组且不使用任何特殊旋转的情况下抵达的最高层数",
"Reaching deep down but coming back empty every time.":"藏锋守拙,从不出手。",
"\"SWAMP WATER LITE\"":"“沼泽水特调Lite”",
"\"Comes in 8 different flavors!\"":"有 8 种不同口味!",
"\"BLOCK RATIONING\"":"方块配给专家",
"\"Adversity favors the resourceful.\"":"逆境于智者有益。",
"\"TALENTLESS\"":"无才",
"\"Reaching deep down but coming back empty every time.\"":"藏锋守拙,从不出手。",
"\"DEADLOCK\"":"“僵局”",
"\"SWAMP WATER\"":"“沼泽水特调”",
"\"THE GRANDMASTER\"":"“方块大师”",
"\"THE ESCAPE ARTIST\"":"“金蝉脱壳”",
"\"EMPEROR'S DECADENCE\"":"“皇帝的懦弱”",
"\"DIVINE MASTERY\"":"“天纵奇才”",
"\"A MODERN CLASSIC\"":"“现代经典”",
"\"TRAINED PROFESSIONALS\"":"“专业团队”",
"EXPERT DUO":"专家级双人模式",
"highest floor discovered while using the \"No Hold\", \"Double Hole Garbage\" and \"Messier Garbage\" mods": "在启用“禁止暂存”、“空洞诅咒”和“垃圾之乱”模组的情况下抵达的最高层数",
"\"Escape has become a distant dream, yet still we struggle...\"": "“纵使已经深陷泥潭,我们仍会挣扎到最后一刻...”",
"THE GRANDMASTER": "方块大师",
"highest floor discovered while using the \"Gravity\" and \"Invisible\" mods": "在启用“重力”和“隐形”模组的情况下抵达的最高层数",
"When the world descends into chaos, the grandmaster remains at peace.": "纵使世界混乱,大师亦巍然不动。",
"THE ESCAPE ARTIST":"金蝉脱壳",
"\"An impossible situation! A daring illusionist! Will he make it out alive?\"":"“绝对不可能逃脱的处境加上一个大胆的魔术师!他能创造奇迹吗?”",
"highest floor discovered while using the \"Double Hole Garbage\", \"Messier Garbage\" and \"All-Spin\" mods":"在启用“空洞诅咒”,“垃圾之乱”和“ALL-SPIN”模组的情况下抵达的最高层数",
"EMPEROR'S DECADENCE":"皇帝的懦弱",
"highest floor discovered while using the \"Expert Mode\", \"Double Hole Garbage\" and \"No Hold\" mods":"在启用“专家模式”,“空洞诅咒”和“禁止暂存”模组的情况下抵达的最高层数",
"The Devil's lesson in humility.":"吃一堑,长一智。",
"DIVINE MASTERY":"天纵奇才",
"highest floor discovered while using the \"Expert Mode\", \"Double Hole Garbage\", \"Volatile Garbage\" and \"Messier Garbage\" mods":"在启用“专家模式”,“空洞诅咒”,“达摩克利斯之剑”和“垃圾之乱”模组的情况下抵达的最高层数",
"The universe is yours.":"天下任你闯。",
"TEMPERANCE":"节制",
"highest floor discovered with the \"No Hold\" mod":"在启用“禁止暂存”模组的情况下抵达的最高层数",
"Use each piece as they come and embrace the natural flow of stacking.":"随块而动,随意而堆,块法自然。",
"WHEEL OF FORTUNE":"命运之轮",
"highest floor discovered with the \"Messier Garbage\" mod":"在启用“垃圾之乱”模组的情况下抵达的最高层数",
"The only constant in life is change.":"计划赶不上变化。",
"A MODERN CLASSIC":"现代经典",
"highest floor discovered while using the \"No Hold\" and \"Gravity\" mods":"在启用“禁止暂存”和“重力”模组的情况下抵达的最高层数",
"Times were different back then...":"大人,时代变回去了...",
"THE DEVIL":"恶魔",
"highest floor discovered with the \"Double Hole Garbage\" mod":"在启用“空洞诅咒”模组的情况下抵达的最高层数",
"Redefine your limits or succumb to his chains.":"突破极限或屈服于他的枷锁。",
"THE TOWER":"高塔",
"highest floor discovered with the \"Gravity\" mod":"在启用“重力”模组的情况下抵达的最高层数",
"What will you do when it all comes crumbling down?":"当万块倾倒而下,你会做些什么?",
"THE HERMIT":"隐士",
"highest floor discovered with the \"Invisible\" mod":"在启用“隐形”模组的情况下抵达的最高层数",
"When the outside world fails you, trust the voice within to light a path.":"自助者,天助之。",
"THE MAGICIAN":"魔术师",
"highest floor discovered with the \"All-Spin\" mod":"在启用“All-Spin”模组的情况下抵达的最高层数",
"Inspiration is nothing short of magic.":"灵感就是你的魔法。",
"TRAINED PROFESSIONALS":"专业团队",
"highest floor discovered in a DUO while both players are using the \"Expert Mode\" mod":"在启用“双人模式”模组且双方均启用“专家模式”模组的情况下抵达的最高层数",
"Partners in expertise.":"处理方块我们在行。",
"select a slot to feature an achievement on your profile": "选择一个槽位来在你的个人资料上展示一个成就。",
"select an achievement to feature it, or select the slot again to cancel": "选择一个成就来展示,或者再次选择该槽位以取消展示。",
"DETAIL ORIENTED": "精益求精",
"Clear 40 LINES using as few inputs as possible": "使用尽可能少的输入完成40行挑战",
"Theoretically efficient can quickly become gloriously impractical.": "“我有一个绝妙的想法,但块速太快,没做完!”",
"AGAINST ALL ODDS": "迎难而上",
"games won against players with higher TR": "战胜TR比你高的对手的场次",
"Embrace the unexpected.": "我就是你的意外。",
"SUPERCHARGED": "浪涌增压",
"highest Back-to-Back chain reached in Quick Play": "在快速游戏中达到的最高Back-to-Back连锁数",
"\"With this divine power, we'll be unstoppable!\" -Mathis, Core Engineer": "“有了这种神力,我们将势不可挡”——马蒂斯,核心工程师",
"VIP LIST": "贵宾名单",
"End the week on weekly leaderboards with a high rank. (+10pts to Top 3, +5pts to Top 10, +3pts to Top 25, +1pts to Top 100)": "以尽可能高的排名结算每周排行榜(前三名+10点,前十名+5点,前25名+3点,前100名加1点)",
"Unparalleled luxury for a select few.": "您注定与众不同。",
"THE STARVING ARTIST": "绝处逢生",
"highest floor discovered while using the \"No Hold\" and \"All-Spin\" mods": "在启用“禁止暂存”和“ALL-Spin”模组的情况下抵达的最高层数",
"Creativity is cultivated through limitation.": "创造力会在逆境中成长",
"GUARDIAN ANGEL": "守护天使",
"highest altitude to perform a successful revive at": "完成救援的最高米数",
"An angel's intervention.": "天使下凡。",
"THE CON ARTIST": "瞒天过海",
"highest floor discovered while using the \"Expert Mode\", \"Volatile Garbage\" and \"All-Spin\" mods": "在启用“专家模式”,“达摩克利斯之剑”和“ALL-Spin”模组的情况下抵达的最高层数",
"Would the perfect lie not be an art worthy of admiration?": "完美的谎言难道不是一门值得钦佩的艺术吗?",
"EMPTY BOX": "盒子空空",
"True minimalism is the art of letting go.": "真正的极简主义是放手的艺术。",
"highest BLITZ score obtained without using Hold": "在不使用暂存的情况下完成BLITZ挑战获得的最高分数",
"THE TYRANT": "暴君",
"highest floor discovered with the reversed \"Expert Mode\" mod": "在启用逆位“专家模式”模组的情况下抵达的最高层数",
"Fear, oppression, and limitless ambition.": "恐惧、压迫和无限的野心。",
"ASCETICISM": "禁欲",
"highest floor discovered with the reversed \"No Hold\" mod": "在启用逆位“禁止暂存”模组的情况下抵达的最高层数",
"A detachment from even that which is moderate.": "对哪怕是中庸之物的疏离。",
"LOADED DICE": "不正当操作",
"highest floor discovered with the reversed \"Messier Garbage\" mod": "在启用逆位“垃圾之乱”模组的情况下抵达的最高层数",
"In a rigged game, your mind is the only fair advantage.": "在被操纵的游戏中,你的头脑是唯一合理的优势。",
"FREEFALL": "自由下落",
"highest floor discovered with the reversed \"Gravity\" mod": "在启用逆位“重力”模组的情况下抵达的最高层数",
"In retrospect, the ground you stood on never existed in the first place.": "回想起来,你所站立的地面始终不存在。",
"LAST STAND": "背水一战",
"highest floor discovered with the reversed \"Volatile Garbage\" mod": "在启用逆位“达摩克利斯之剑”模组的情况下抵达的最高层数",
"Strength isn't necessary for those with nothing to lose.": "对那些一无所有的人来说,力量并不重要。",
"DAMNATION": "天谴",
"highest floor discovered with the reversed \"Double Hole Garbage\" mod": "在启用逆位“空洞诅咒”模组的情况下抵达的最高层数",
"No more second chances.": "这是你最后的机会。",
"THE EXILE": "放逐",
"highest floor discovered with the reversed \"Invisible\" mod": "在启用逆位“隐形”模组的情况下抵达的最高层数",
"Never underestimate blind faith.": "永远不要低估盲目的信仰。",
"THE WARLOCK": "邪术师",
"highest floor discovered with the reversed \"All-Spin\" mod": "在启用逆位“All-Spin”模组的情况下抵达的最高层数",
"Into realms beyond heaven and earth.": "踏入超脱天地之境界。",
"THE HARBINGER": "先驱",
"Reach floor 3 in all eight reversed mods": "在启用各个逆位模组的情况下抵达第三层",
"Weathering the storm of an unfavorable future.": "承受着不利于未来的风暴。",
"COMPETITIVE": "竞争性",
"This achievement grants extra Achievement Rating to those who place in its Top 100 leaderboard.": "此成就给进入前100的玩家提供额外的AR。",
"HIDDEN": "隐藏",
"This achievement is only visible to the worthy.": "此成就仅对值得的人可见。",
"UNRANKED": "不予排名",
"This achievement does not contribute to your Achievement Rating.": "此成就不予提供AR。",
"": "",
"": "",
"": "",
"": "",
"": "",
"": "",
"": "",
"": "",
"": "",
"": "",
"": "",
"": "",
"": "",
"": "",
"": "",
//举报相关文本
"REPORT": "举报",
"please choose a category to report": "请选择向TETR.IO管理员报告",
"to the TETR.IO moderators for. ": "的违规原因",
"repeatedly placing false reports may result in a ban.": "重复进行假举报可能会导致封禁。",
"TOXICITY": "有害内容",
"including, but not limited to toxicity, harassment, unsolicited direct messages, offensive content or bad language.": "包括但不限于有害内容、骚扰、未经请求的直接消息、冒犯性内容或粗言秽语",
"CHEATING": "作弊",
"including, but not limited to cheating, botting, hacking or otherwise breaking the game or getting an unfair advantage.": "包括但不限于作弊、使用机器人、黑客手段或其他破坏游戏或获得不公平优势的行为。",
"MULTIACCOUNTING": "多个账户",
"including, but not limited to smurfing, multiaccounting, boosting accounts, throwing games.": "包括但不限于:炸鱼、多开账户、恶意刷分、消极对局等",
"NSFW/18+ CONTENT": "不宜公开浏览/18+内容",
"including, but not limited to NSFW (not safe for work) avatars, banners, messages, etc.": "包括但不限于:不宜公开浏览的头像、横幅、信息等",
"SPAM": "垃圾信息",
"including, but not limited to advertising, message flood, etc.": "包括但不限于广告、刷屏等",
"OTHER": "其他",
"otherwise not listed abuse against the TETR.IO terms of service, such as users under the age of 13, or rules, such as impersonation.": "其他未列出的违反TETR.IO服务条款的滥用行为,包括但不限于未满13岁的用户、冒名顶替等。",
"CANCEL": "取消",
//连接错误相关文本
"CONNECTION ERROR": "连接错误",
"a connection error has occured and the connection was closed unexpectedly.": "发生了连接错误,连接被意外关闭。",
"check your internet connection and configuration.": "检查你的互联网连接和配置。",
"this disconnect was detected to be caused by your network connection.": "系统检测到本次掉线由你的网络连接引起。",
"SOCKET ID": "帐户ID",
"OK": "彳亍",
//单人模式相关文本
"SOLO": "单人模式",
"challenge yourself and top the leaderboards": "挑战自我,登上排行榜的榜首。",
"press START to begin playing": "按下开始游戏进行游玩",
//40行竞速相关文本
"CLEAR 40 LINES!": "清除四十行!",
"GO!":"开始!",
"40 LINES": "40行竞速",
"complete 40 lines as quickly as possible": "尽快消除40行",
"clear 40 lines in the shortest amount of time possible.": "以最短的时间内消除40行",
"score doesn't matter here, just go for the world record!": "得分在这里并不重要,尽力争取世界纪录吧!",
"PERSONAL BEST": "个人最佳",
"OPTIONS": "选项",
"pro mode": "专业模式",
"alert on finesse fault": "非极简操作时播放音效提醒",
"retry on finesse fault": "非极简操作时自动重新开始",
"stride mode": "快速开局",
"ADVANCED": "高级设置",
"left counter slot 1": "左侧信息栏槽位1",
"left counter slot 2": "左侧信息栏槽位2",
"left counter slot 3": "左侧信息栏槽位3",
"left counter slot 4": "左侧信息栏槽位4",
"right counter slot": "右侧信息栏槽位",
"DEFAULT": "默认设置",
"use the default option": "使用默认设置",
"EMPTY": "空",
"leave this slot empty": "留空该槽位",
"LINES": "行数",
"TIME": "时间",
"SCORE": "分数",
"display the score in this slot": "在该槽位中显示得分",
"SCORE (per piece)": "分数(每块)",
"display the score and score per piece in this slot": "在该槽位中显示每次放置方块的得分",
"STOPWATCH": "秒表",
"display the time passed in this slot": "在该槽位中显示此时已用时长时间",
"display the amount of cleared lines in this slot": "在该槽位中显示已消除的行数",
"PIECES": "块",
"display the amount of placed pieces and speed in this slot": "在该槽位中显示放置方块的数量和速度",
"INPUTS": "输入",
"display the amount of buttonpresses in this slot": "在该槽位中显示按键按压量",
"FINESSE": "极简",
"display your finesse in this slot": "在该槽位中显示你的极简率",
"FINESSE (SMALLER)": "极简(较小)",
"display your finesse in this slot (for use on the left-hand side)": "在该槽位中显示你的极简率(在左边显示)",
"HOLD": "暂存",
"display the amount of held pieces in this slot": "在该槽位中显示暂存过的方块数量",
"ALL CLEARS": "全消",
"display the amount of ALL CLEARS in this slot": "在该槽位中显示全消的次数",
"display the time remaining in this slot": "在该槽位中显示剩余时间",
"TIMER": "计时器",
"LEVEL": "等级",
"display the current level in this slot": "在该槽位中显示当前等级",
//BLITZ相关文本
"TWO-MINUTE BLITZ": "两分钟BLITZ",
"GO": "开始",
"BLITZ": "BLITZ",
"a two-minute race against the clock": "限时两分钟的打分挑战",
"get as many points as possible within 2 minutes!": "在2分钟内获得尽可能多的分数!",
"clear lines to level up and gain more points and speed!": "消行,升级,提速,打分!",
"---default---": "---默认设置---",
"START": "开始游戏",
//禅意模式相关文本
"ZEN": "禅意模式",
"relax or train in this neverending mode": "用于放松或训练的无尽模式",
"relax or train in a neverending mode! your progress is stored across games.": "在无尽模式中放松或训练!进度会在离开时保存。",
"adjust the feel or help train using the ZEN SIDEBAR.": "使用禅意模式侧边栏调整心境或进行训练",
"you can undo and redo placements with CTRL+Z and CTRL+Y!": "你可以用CTRL+Z和CTRL+Y来撤销和重做!",
//禅意模式局内的文本
"hover to change settings": "悬停以改变设置",
"LEVELING": "升级",
"SPINS": "旋转方式",
"KICK TABLE": "旋转系统",
"COMBO TABLE": "连击表",
"MULTIPLIER": "倍增",
"CLASSIC GUIDELINE": "经典规则",
"MODERN GUIDELINE": "现代规则",
"GRAVITY": "重力",
"SUBZERO": "反重力",
"RELAXED": "弱重力",
"ENGAGING": "中重力",
"SPICY": "高重力",
"STATIC": "超重",
"DISPLAY": "显示",
"VERSUS": "对战",
"SPEED": "速度",
"EFFICIENCY": "效率",
"GARBAGE": "垃圾行",
"BACKFIRE 0.5X": "攻击反弹 0.5倍",
"BACKFIRE 1X": "攻击反弹 1倍",
"BACKFIRE 2X": "攻击反弹 2倍",
"CHEESE LAYER": "奶酪层",
"layer height": "层高",
"timer interval": "定时器时间间隔",
"CHEESE TIMER": "奶酪定时器",