-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathen.json
2061 lines (2061 loc) · 93.8 KB
/
en.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
{
"label": "English",
"alias": "EN",
"common": {
"meta": {
"title": "My Crypto Heroes (MCH, マイクリ) | Crypto game from Japan!",
"description": "Block Chain Game,My Crypto Heroes (MCH) -where your time and passion will become your assets. Get great extensions and Land through collecting/training historical Heroes! Can be played without gas fee."
},
"footer": {
"company": "Operating Company",
"terms": "Terms of Service"
},
"errorMessage": "Please try reload",
"condition": "Condition",
"ok": "OK",
"cancel": "Cancel",
"close": "Close",
"back": "Back",
"change": "Change",
"confirm": "Confirm",
"result": "Result",
"confirmation": "Confirmation",
"interrupte": "Interrupte",
"select": "Select",
"selectAll": "Select All",
"next": "Next",
"public": "Public",
"private": "Private",
"all": "ALL",
"none": "NONE",
"hero": "Hero",
"heroes": "Heroes",
"originalHeroes": "Original Heroes",
"replicaHeroes": "Replica Heroes",
"extension": "Extension",
"extensions": "Extensions",
"auras": "Auras",
"originalExtensions": "Original Extensions",
"replicaExtensions": "Replica Extensions",
"landSector": "Land Sector",
"landSectors": "Land Sectors",
"art": "Art",
"arts": "Arts",
"confirmMessage": "Are you sure?",
"original": "Original",
"replica": "Replica",
"mchWorld": "MCH World",
"ethereumNetwork": "Ethereum Network",
"rarity": "Rarity",
"clear": "Clear",
"filter": "Filter",
"position": {
"front": "Front",
"middle": "Middle",
"back": "Back"
},
"join": "Join",
"leave": "Leave"
},
"pages": {
"home": "Home",
"account": "Account Setting",
"profile": "View Profile",
"inventory": "Inventory",
"cryptid": "Cryptid",
"transfers": "Asset Transfer Status",
"partner": "Partner",
"ranking": "Winners Point Ranking",
"team": "Team",
"battles": "Battle",
"battle": "Battle",
"quest": "Quest",
"market": "Market",
"prime": "MCH Prime",
"land": "Land",
"colosseum": "Colosseum",
"mining": "mining",
"help": "Help",
"terms": "Terms of Service",
"scta": "Company Information (disclaimer for SCTA)",
"referral": "Referral",
"notifications": "Notifications",
"messages": "Messages",
"announcement": "Announcement",
"lordRewards": "Lord Rewards",
"dictionary": "MCH Dictionary",
"editedArts": "Art Showcase",
"transferStatus": "Transfer Status",
"about": "About MCH",
"howToPlay": "How To Play",
"faq": "FAQ",
"experimental": "Experimental",
"medium": "Official Medium",
"twitter": "Official Twitter",
"twitterUrl": "https://twitter.com/mycryptoheroes_",
"discord": "Official Community",
"company": "MCH Co., Ltd.",
"art": "Art",
"handbook": "MCH Handbook"
},
"teamNames": {
"decksList": "Quest",
"cupThreeDecksMap": "Duel Cup",
"cupNineDecksMap": "Duel Cup 9 on 9",
"knightDeck": "Knight Battle",
"arenaDecksMap": "Arena",
"colosseumOffenseDeck": "Colosseum (Offense)",
"questSixDeck": "Deep Node",
"colosseumDefenseDecksList": "Colosseum (Defense)",
"warDeck": "Cryptid Wars",
"ratingDuelOffenseDecksMap": "Duel Cup (Offense)",
"threeOnThreeOnThreeDecksMap": "Duel Cup (3*3)",
"ratingDuelDefenseDeckMap": "Duel Cup (Defense)",
"raidDeck": "Raid"
},
"top": {
"gameStart": "Play Game",
"leadMessage": "Your time and passion will become assets.",
"signIn": "If you play {type} with your {message}, you can't use same account. Are you sure to log in?",
"signInWarning": "* To play all contents of My Crypto Heroes you need a wallet app. Please check the FAQ for details.",
"stop": "【Announcement】New user registraion is stopped now to take measures against malicious BOT.",
"mycryapp": "MCH App has been released!",
"mycryappsignin": "/ MyCryApp",
"welcome": {
"name": "What's your name in the MCH World?",
"notice": "You can change it later.",
"inviteCode": "Input your Invite Code (if you have)"
},
"guide": "Learn how to play My Crypto Heroes"
},
"lp": {
"intro": {
"title": ["What is", "My Crypto Heroes?"],
"body": "My Crypto Heroes is an RPG battle game that is built on the Ethereum blockchain. Play with historical inspired heroes, go on quests to find rare items, and battle against other players for rewards and fame.\nWe are the world’s No.1 blockchain game, based on Daily Active Users, and Transactions. ※ as of August 21st 2019 from DappRadar (https://dappradar.com)"
},
"features": {
"gameplay": "Gameplay",
"pve": {
"title": "PvE Mode",
"body": "Send your heroes into dungeons to collect EXP and find rare items, called Original Extensions (ERC-721 token). EXP can be used to level up your assets."
},
"pvp": {
"title": "PvP Mode",
"body": "Fight other players in competitive tournaments, tailored to different player strengths. Top players earn Original Extensions (ERC-721) and eternal fame."
}
},
"ecosystem": {
"title": "The MCH Ecosystem",
"jobs": [
{
"slug": "farmer",
"title": "Farmer",
"body": "Farmers go on quests to level up heroes and find rare items. Sell your loot on the market to earn GUM, the currency of MCH."
},
{
"slug": "warrior",
"title": "Warrior",
"body": "Warriors fight in PvP battles for rare items and fame. Prove your skill in regular tournaments, Land vs. Land battles, and custom arenas."
},
{
"slug": "creator",
"title": "Creator",
"body": "Are you one of the creative kind? Sell your self-made hero skins on the art market for GUM. Or get creative in your own tournament modes."
},
{
"slug": "trader",
"title": "Trader",
"body": "Traders use the in-game market to earn GUM. They buy the supply of farmers and equip warriors before they send their heroes into battle."
}
]
},
"economy": {
"title": "Acquire and Grow Digital Assets",
"hero": {
"title": "Heroes",
"body": "Each hero with the rarity Uncommon or higher is an ERC-721 token. This means that you own the token and can sell it on 3rd party platforms like OpenSea."
},
"items": {
"title": "Items",
"body": "Each unique item, called Original Extensions, is an ERC-721 token too. You will find them through fighting in quests or competing in tournaments."
}
},
"gettingStarted": {
"title": "Getting Started",
"vendor": {
"dapper": {
"title": "Dapper Extension",
"body": "Easy to use wallet, great design, and simple onboarding. Recommended for users who don't want to deal with private keys and Gas fees."
},
"metamask": {
"title": "MetaMask Extension",
"body": "Most used wallet for Ethereum dapps. Recommended for users who will use ETH sent from crypto exchange."
}
}
}
},
"signInModal": {
"signIn": "Sign In",
"signInWithWallet": "Sign in with wallet",
"install": "Please install a wallet to continue:",
"trialPlay": "Trial Play",
"signInWithGoogle": "If you've created an account on Google, click here.",
"signInWithGoogleWarning": "* New registration has been stopped"
},
"others": {
"other": "Others"
},
"about": {
"press": "Press",
"ecosystem": "Ecosystem Partner",
"media": "Media Partner"
},
"home": {
"calendar": {
"title": "Event Calendar",
"landBattle": {
"preperation": "Land Battle: Preperation",
"knightBattle": "Land Battle: Knight Battle",
"g5": "Land Battle: G5 Battle",
"knightFinal": "Land Battle: Knight Battle Final",
"knightCommander": "Land Battle: Knight Commander Battle",
"flag": "Land Battle: Flag Battle"
},
"duelCup": "Duel Cup",
"heroSaleStart": "Hero Sale Start",
"heroSaleEnd": "Hero Sale End",
"raid": "Raid",
"eventNode": "Event Node",
"newVersionRelease": "New Version Release",
"newSeasonStart": "Land New Season Start",
"repHeroSale": "Replica Hero New Season Start",
"gumCampaign": "{name} Campaign",
"kingDragon": {
"qualifying": "King Dragon: Qualifying{time}",
"final": "King Dragon: Final"
}
},
"readMore": "Read More",
"assets": "My Assets",
"heroes": "Heroes",
"extensions": "Extensions",
"land": "Land Sector",
"showMore": "Show More",
"news": "Important News",
"twitter": "Twitter Updates",
"external": "Take me there!",
"tutorial": {
"gettingStarted": "Getting Started",
"beginnerGuide": "Beginner Guide by Ikke",
"handbook": "MCH Handbook"
}
},
"team": {
"button": "This is my team !!",
"prime": {
"extend": "Extend MCH Prime",
"delete": "Remove Teams (from 4 to 6)",
"deleteModal": {
"text": "Remove team 4 to 6"
}
},
"reset": {
"warning": "This action will reset this team to its initial state. Is it OK?"
}
},
"referral": {
"description": "Share your invite code and get ETH!\nWhen you refer a new player, you'll receive a 5% revenue share every time the new player spends ETH in the game. (During specific campaigns, it may be increased to “equivalent to 10%”, etc.)",
"gift": "Invite Code Gift\nEvery new player who used your invite code will get the Replica Hero \"Brothers Grimm\".",
"warning": "* \"Sign in\" with Wallet is necessary. In the case of \"Trial Play with Google\", \"Invitation Code\" is not displayed.",
"shareText": "#MyCryptoHeroes, Your time and passion will become assets. Join Japanese authentic “blockchain RPG” which can be played without cryptocurrency, and even wallets!!",
"afterShareText": "Invitation code: {inviteCode} Get special Hero with code!"
},
"assets": {
"count": "{count} items",
"countWithLimit": "Storage capacity: {count} / {limit}",
"selection": "{count} selection of {ce} CE",
"selectionWithoutCe": "{count} selection",
"ceDeposit": {
"title": "Inject into the CE barrel",
"button": "Inject {ce} CE into the CE barrel",
"warnings": {
"ce": "Inject {ce} CE into the CE barrel.",
"replica": "These extensions will disappear.",
"overflow": "Anything over {threshold} CE will be automatically dedicated to the cryptide at {datetime}."
}
},
"dedicate": {
"title": "Dedicate to the Cryptid",
"button": "Dedicate {ce} CE to the Cryptid",
"warnings": {
"ce": "Dedicate {ce} CE to the Cryptid.",
"replica": "These extensions will disappear."
}
}
},
"assetId": {
"arts": {
"artOfHero": "Art of this hero",
"addArt": "Add Art",
"changeToDefault": "Restore Default Art",
"emptyHeroArt": "There is no art attached to this hero.",
"confirm": "Change the {heroName} art to the image above. Are you sure?",
"selectArt": "Select Art",
"registerArt": "Upload Art",
"selectFromMyArt": "Select from My Art",
"myArtEmpty": "No Art is not registered."
},
"artEdit": "Art Edit",
"changeArt": "Change Art",
"changeSkill": "Change Active Skill",
"approve": {
"description": "To use your heroes, you need to finish two steps: 1st, Transfer Preparation. 2nd, Transfer to MCH World.",
"extensiondescription": "To use your extensions, you need to finish two steps: 1st, Transfer Preparation. 2nd, Transfer to MCH World.",
"button": "Transfer Preparation"
},
"lab": "Level up with GUM",
"absorb": "Level up",
"dedicate": "Dedicate to Cryptid",
"dedicateCe": "Dedicate CE to Cryptid",
"dedicateEma": "Dedicate to Cryptid as EMA",
"sell": "Trade with GUM",
"buy": "Buy",
"stop": "Stop trading",
"params": "Parameters",
"trade": "Trade",
"deposit": "Transfer to MCH World",
"withdraw": "Transfer to On-Chain Network",
"heroLock": "You are currently using this hero. Remove hero from your team and duel team.",
"extensionLock": "You are currently using this extension. Remove it from your team and duel team.",
"withdrawWarning": {
"description": "You can use your assets on Ethereum or Polygon Network after you transferred your assets to the respective Network.",
"1": "It will cost {gum} GUM for transferring it to the Ethereum network, 100 GUM to the Polygon Network",
"2": "Limited to 10 times per day ({count} / 10)",
"3": "To transfer, Extension needs to be at least Lv.2 and have a Nickname",
"4": "To transfer, Hero has to be at least Lv.2 and art-edited",
"5": "It takes about 20 mins to trasfer, depending on the current Network status.",
"6": "You can't transfer an assets (Hero / Extension) that has been used in battle within 24 hours or has been traded / bought within 24 hours.",
"7": "Transfers to an On-Chain Network will require GUM based on current Gas rates of the Network."
},
"withdrawButton": "Transfer at {gum} GUM.",
"countdown": "You can transfer after",
"edit": {
"warning": {
"title": "Art edit rules and notes",
"list": [
"You can do Art-edit as much as you want for a hero, but you need to pay 40 GUM (Game Users Money) from the second time.",
"You can set previous art including default one without GUM fee. However passive skill and growth tendency will be remained.",
"Images exactly the same as those registered in Art-edit in the past can not be used in Art-edit.",
"Do not use pictures that infringe copyright or images that are against public order and morality.",
"Attention on using Art-edit is stated in Article 11 of the following terms of service.",
"We guarantee that you own copyright of art that you registered with Art-edit.",
"We will use the registered art only for MCH game and promotional use.",
"Images uploaded with Art-edit are managed decentralizedly using IPFS which is a distributed file system.",
"For edited images, only the display in MCH is changed. On external services such as opensea, the initial image is displayed even after editing."
],
"cost": "You need to pay 40 GUM (Game Users Money) from the second time. Is it OK?"
},
"nickname": {
"title": "Set Nickname",
"confirm1": "Are you sure to set Nickname as",
"confirm2": "",
"warning1": "*You can set Nickname only once you get the extension.",
"warning2": "It costs 100 GUM, if this extension has been already set Nickname"
}
},
"refreshParam": {
"title": "Change parameter growth trend",
"param": "Parameter",
"trend": "Parameter growth trend",
"confirm1": "Are you sure to consume {ce} CE and change parameter growth trend?",
"confirm2": "Once you execute this, you can never get back previous parameter growth trend",
"again": "Try Again",
"button": "Consume {ce} CE & change trend"
},
"ceDeposit": {
"title": "Inject into the CE barrel",
"warnings": {
"ce": "Inject {ce} CE into the CE barrel.",
"original": "This extension will be at level 1.",
"replica": "This extension will disappear.",
"overflow": "Anything over {threshold} CE will be automatically dedicated to the cryptide at {datetime}."
}
},
"changeHeroActiveSkill": "Change Active Skills Order"
},
"battle": {
"loading": {
"lead": "Loading ...",
"body": "If it takes more than 30 sec, please reload the page."
},
"info": {
"inRankingTerm": "Beta Battle Ranked Match has started!\nWe will decide the ranking based on the result of the battle which ended by UTC Oct.21 sun 6:00.\nPlease check the link below for details.",
"rankHow": "Defeat the team with this mark and rank up!",
"inAggregatingTerm": "Beta Battle Ranked Match has finished.\nThe ranking is being confirmed with the result of the battle which had ended at UTC Oct.21 sun 6:00.\nThe ranking will be announced at UTC Oct.22 mon 6:00.",
"afterAggregatingTerm": "Beta Battle Ranked Match has finished.\nPlease check the link below for the ranking result of UTC Oct.22 mon 6:00.",
"newRule": "One minute interval between each battle will be introduced from 1 hour before the end of ranked match. For details."
}
},
"userId": {
"reportButton": "Report User",
"mail": {
"subject": "{userName} {userAddress}",
"body": "User Name: {userName}\nLoomAdress: {userAddress}\n\nTo report this user's problem, just send us an email.\nIf you want to supplement the report, please describe the contents below.\n—————————————————\nSupplement:\n\n\n\n\n\n—————————————————"
}
},
"node": {
"warning": "Up to {challengeLimit} quests can be played per day."
},
"faq": {
"medium": "For more detail(Medium)",
"mail": "Inquiry by e-mail / report of misbehavior"
},
"account": {
"basic": "Basic",
"userName": "User Name",
"userId": "User ID",
"ethAddress": "Wallet Address",
"publishEthAddress": "Publish Wallet Address",
"phoneNumber": "Phone Number",
"country": "Country of Residence",
"prime": {
"extend": "Extend",
"leftDays": {
"before": "",
"after": "days left"
},
"join": "Buy",
"subscription": "Subscription"
},
"gumHistory": "GUM History",
"connect": {
"wallet": "Connect to Wallet",
"google": "Connect to Google",
"connect": "Connect",
"connected": "Connected"
},
"reportSetting": {
"title": "Notification Settings",
"dropped": "Drop Legendary",
"putTrade": "Legendary's submission to the trade"
},
"others": "Others",
"signOut": "Sign Out"
},
"land": {
"title": "Land",
"noland": "Not Belonged",
"setting": "Land Settings",
"settingG5": "Battle Order Of Knights In Flag Battle (King/G5 Only)",
"kings": "Kings",
"noKings": "No Kings",
"maestros": "Maestros",
"noMaestros": "Not assigned",
"noKnights": "No current Knights",
"knight": "Knight",
"knights": "Knights",
"faPool": "Free Agent GUM Pool",
"lordsCount": "Lords Count",
"citizensCount": "Citizens Count",
"seeAllKnights": "See All Knights",
"profit": "Land Profit",
"landProfitDistribution": "Land Profit Distribution",
"cryptidCeDistribution": "Cryptid CE Distribution",
"forward": "Carry Forward",
"community": "Community",
"citizenMessage": "Citizen Message",
"flagBattleHistory": "Flag Battle History",
"freeAgentKnights": "Free Agent Knights",
"generalCommanderLock": "General Commander Lock",
"nie": "Nie",
"detail1": "If you have a landsector, you can become a lord of the land. And you can dedicate to Cryptid of the land and quest its land node. Also you can withdraw landlord reward.",
"detail2": "When you send your landsector for its first time, you need to set name and art edit.",
"join": {
"buttonen": "Join",
"buttonja": "",
"1": "Land you belong to",
"2": "Once you choose it you can not leave until the next preparatory period",
"3": "You will no longer be able to turn Free Agent this season.",
"current": "Joined Land",
"noland": "Not Joined",
"title": "Join Land",
"detail": {
"already": "You can change your land only once during the preparation period of every land battle season.\nYou can not belong to any lands until the next preparation period, even if you leave your land and become Independent.",
"new": "When you belong to land, your hero can get stronger owing to Cryptid and you can entry land battle.\nYou can only change once every season.",
"community": "Sometimes, King and Maestros run campains or supports users\nLet's check community before deciding your land."
}
},
"transfer": {
"buttonen": "Transfer To",
"buttonja": ""
},
"leave": {
"button": "Become Independent",
"1": "Leave the land and become Independent",
"2": "Once you leave this land and become Independent, you can not belong to any lands until the next preparation period",
"3": "You can not join any lands till next season. Are you sure to leave?"
},
"other": {
"button": "Transfer to Other Land",
"title": "Other Lands"
},
"lord": {
"list": "Lord List",
"count": "Lord Count"
},
"citizen": {
"list": "Citizen List",
"count": "Citizen Count"
},
"dedicate": "Dedicate",
"freeAgentPool": {
"donate": "Donate",
"headline": "Dedicate to Free Agent GUM Pool",
"1": "Support your Land with GUM to hire Knights.",
"2": "The dedicated GUM can be used by the King to purchase Knights from other Lands for Land Battle."
},
"freeAgent": {
"declare": "Become Free Agent ({gum} GUM)",
"cancelDeclared": "Cancel Declaration",
"hasDeclared": "Declared to be a Free Agent for {gum} GUM",
"receive": "Hire Free Agent for {gum} GUM",
"notDeclared": "Not Declared.",
"notKnight": "Can't declare Free Agent - Knights only",
"confirm": {
"declare": "Are you sure to become a Free Agent at a price of {gum} GUM?",
"cancelDeclared": "Are you sure to cancel the Free Agent declaration?",
"receive": "Are you sure to hire this Free Agent to your Land for {gum} GUM?"
}
},
"ceFarmRankingButton": "Show CE Farmer Ranking",
"ceFarmRanking": "Node CE Farmer Ranking",
"authorityType": {
"1": "Land Message",
"2": "Community Link",
"3": "Land Name",
"4": "Flag Image",
"5": "Flag Battle Opponent",
"6": "Flag Battle Order",
"7": "Transfer Agreement",
"8": "Cryptid Param Share",
"9": "Land Share",
"10": "Maestro Selection",
"11": "Maestro Authorities",
"12": "Maestro Share Rate",
"13": "Reward Borders",
"14": "Citizen Message",
"15": "Cryptid Wars Operator",
"16": "Set Aura",
"900": "Ignore General Commander Lock"
},
"knightReward": "Knight Reward",
"nieReward": "Nie Reward"
},
"landBattle": {
"title": "Land Battle",
"detail": "Land Battle consists of 'Knight Battle(1-5)', 'Knight Battle-G5' and 'Flag Battle'.\nKnights can get a part of land profit, and G5 can join flag battle(fight with G5 of other lands) as representatives.",
"currentPeriod": "Current Period",
"entryStatus": "Entry status",
"entryCount": "Entry Count",
"entry": "Entry",
"phases": {
"grouping": "Grouping",
"preparation": "Preparation",
"groupingStatus": "Available after Grouping",
"viewGroup": "Scout Opponents",
"battle": "Battle",
"results": "Results",
"qualificationBattle": "Qualification Battle",
"qualificationResults": "Qualification Results",
"tournamentBattle": "Tournament Battle",
"tournamentResults": "Tournament Results"
},
"descriptions": {
"g5": "This battle decides the 5 Knights (G5) who will represent each Land in Flag Battle. Only the Knight Class participates in this battle. G5 Knights will be decided by the Achievement Points ranking at the end of this Battle.",
"knightCommander": "This is the epic battle between all Knight Commanders of all lands. There are two main battles: 1st Battle is a qualification round between Knight Commanders of the same land. 2nd Battle is a tournament between all lands to determine the best Knight Commander!"
},
"pledge": {
"title": "Pledge for fair play",
"body": "I will play fair, conforming to the terms of use and Land-battle rules.",
"warnings": "In the Land Battle you need to organize a dedicated team."
},
"achievementPoints": "Achievement Points Ranking",
"battleGameList": {
"viewBattle": "View Battle",
"viewResult": "View Result"
},
"heroRarityCost": {
"title": "Hero Rarity Cost",
"description": "\"Hero Realty Cost\" has been set for the rarealities \"Novice\", \"common\", \"Uncomon\", \"Rare\", \"Epic\" and \"Legendary\" of heroes. For this land battle, the team needs to be organized so that the sum of the team's hero costs falls within the specified value."
},
"seasonFinals": "Season Finals"
},
"knightBattle": {
"title": "Knight Battle",
"preparation": "Preparation"
},
"knightCommanderBattle": {
"title": "Knight Commander Battle",
"tournament": "Knight Commander Tournament"
},
"flagBattle": {
"title": "Flag Battle",
"target": "Current Target of Flag Battle",
"phases": {
"grouping": "Match Schedule Creation",
"preparation": "Preparation",
"groupingStatus": "Available after Match Schedule Creation",
"viewGroup": "Scout Opponents",
"battle": "Battle",
"results": "Results"
}
},
"class": {
"knight": "Knight",
"knightCommander": "Knight Commander",
"commander": "Commander",
"lieutenant": "Lieutenant"
},
"cryptid": {
"title": "Cryptid",
"detail": "Cryptid is a like guardian angel for each Land.\nYour Team can get stronger with your dedication of NIE and EMA",
"ce": {
"warnings": {
"hero": "Note: Your hero's level might decrease according to the amount of CE you choose to dedicate.",
"extension": "Note: Your extension's level might decrease according to the amount of CE you choose to dedicate."
}
},
"originalExt": {
"warnings": "Note: You will lose ownership of the original extensions you dedicate. You will not be able to use them anymore."
},
"replica": {
"warnings": {
"hero": "All your dedicated replica heroes will be burned.",
"extension": "All your dedicated replica extensions will be burned."
}
},
"effect": "Cryptid Effect",
"emaEffects": {
"title": "EMA Effects",
"points": "EMA Points",
"phy": "PHY Damage",
"int": "INT Damage",
"recovery": "Recovery",
"stamina": "Stamina Recovery",
"cut": "Increased Damage-Cut Rate",
"charge": "Basic Charge",
"detail": "You can get EMA effects from your dedication of Original Extensions(EMA).\nThe effect of EMA is applied at the time of battle of each Knight Battle / Flag Battle / Quest / Raid Battle / Colosseum (in principle, Official Duel Cup has no effect)"
},
"nieRanking": "NIE Ranking",
"dedicate": "dedicate",
"buyCe": "Buy CE to Heroes",
"absorb": "Absorb Extensions",
"barrel": {
"title": "CE Barrel",
"modalTitle": "Dedicate from CE Barrel",
"text": "Enter the CE you wish to dedicate from the CE barrel.",
"confirm": "Dedicate {ce} CE from the CE barrel to the cryptid. Are you sure?"
}
},
"dedicate": {
"dedicateCe": "Dedicate Crypto Energy",
"showAllLevel": "Show All Level",
"showMaxLevelOnly": "Show Max Level Only",
"dedicateReplica": "Dedicate Replica",
"selectBroken": "Select Broken",
"selectRarity": "Select Rarity",
"dedicateOriginalExtension": "Dedicate Original Extension",
"emaDescription": "Extensions must have a Nickname set and can't be used in your team",
"currentEmaEffects": "Current EMA Effects",
"phyDamage": "PHY Damage",
"intDamage": "INT Damage",
"recovery": "Recovery",
"emaPoints": "EMA Points",
"emaEffect": "EMA Effect",
"setNickname": "Set Nickname"
},
"templates": {
"title": "Team Templates",
"duelTemplates": "Duel Templates",
"questTemplates": "Quest Templates",
"description": "Create team templates that you can import when you set up your PvP teams. You can create up to 3 templates, prime users can create up to 6 templates.",
"descriptionQuest": "Create templates to import to your quest teams. This is a prime only feature.",
"new": "New Template",
"deleteTemplate": "Delete Template",
"createHeadline": "Create New Team Template",
"chooseType": "Choose Team Type",
"create": "Create",
"cancel": "Cancel",
"delete": "Delete",
"confirmDelete": "Confirm Delete Template",
"choseDelete": "Choose template to delete",
"template": "Template",
"type": "Type",
"selectFrom": "Select from Template",
"getPrime": "Get 6 total slots with MCH Prime",
"changeOrderTemplate": "Sort Teams"
},
"toku": {
"notice": {
"text": "Our latest ecosystem update removed LAB and introduced TOKU. It is a Proof of Play (PoP) system that rewards active quest farmers with Heroes, Extensions, and GUM.",
"details": "See Details",
"confirm": "Take me to TOKU"
},
"modal": {
"explainer": "Dedicate your CE to your Land Cryptid.",
"personal": "Personal Reward",
"land": "Dedicated to Cryptid",
"heroExtCe": "Original Hero / Extension CE",
"repHeroExt": "Replica Hero / Extension",
"origExt": "Original Extension (EMA)"
},
"collect": "Collect TOKU:",
"dedicate": "Dedicate to Cryptid",
"absorb": "Absorb Extensions",
"treasure": "TOKU Treasure",
"inPrep": "In Preparation - TOKU Treasure will be released soon",
"treasures": {
"treasures": "Treasures",
"history": "History",
"rank": "Rank",
"heroReward": "Novice Hero:",
"basicReward": "Basic Reward",
"primeReward": "Prime Reward",
"getPrime": "Get Prime",
"primeOnly": "Prime Only",
"claim": "Claim",
"claimed": "Claimed",
"needMore": "Need More",
"rewardModalTitle": "Your TOKU Reward",
"exchangeTicket": "Exchange Ticket",
"premiumExchangeTicket": "Premium Exchange Ticket",
"aTreasure": "a treasure",
"congratsMessage": "Congratulations! You have just received ",
"accept": "Yeah!",
"nextReset": "Next TOKU Reset:",
"redeemableUntil": "Redeemable until:",
"acquiredToku": "Acquired Season TOKU",
"totalToku": "Total Acquired TOKU",
"claimAll": "Claim All"
},
"exchange": {
"title": "Ticket Exchange",
"headline": "Available Original Rewards:",
"notEnough": "Not enough tickets",
"redeem": "Redeem Exchange Ticket",
"confirm1": "Are you sure to trade ",
"confirm2": "for ",
"confirm3": "",
"cancel": "Cancel",
"trade": "Trade",
"expandDuelTemplate": "Expand Duel Template +1",
"expandQuestTemplate": "Expand Quest Template +1"
}
},
"market": {
"shop": {
"current": "Current:",
"suggestedGasPrice": "Suggested Gas Price",
"dailybonus": "Daily Bonus",
"dailybonus2": "1% to 300 GUM!",
"dailybonus20190330": "1 in 500 can get between 100GUM and 3000GUM! *",
"comment": "It takes 2 mins to recieve GUM after buying GUM.",
"wallet": "You need to install Ethereum Wallet to buy GUM",
"airdrop": {
"comment": "It takes several minitues to receive assets, according to Ethereum network traffic.",
"wallet": "You need to install Ethereum Wallet to airdrop"
},
"gumgumup": "GUM GUM UP campaign now! 20% Extra GUM & 1 in 34 ETH back!!",
"gumgum": "GUM GUM campaign now! 1 in 34 ETH back!!",
"gumup": "GUM UP campaign now! 20% Extra GUM!!",
"minigumup": "MINI GUM UP campaign now! 10% Extra GUM!!",
"dailyActionTerm": "Reset at {hour} every day",
"beforeHeroSaleInfo": "The skills of the new heroes have been finalized.",
"heroSaleWarning": "If we detect any violation against terms of service (such as using bot, cracking and so on), we will carry out strict measures (such as suspending account, refunding GUM and burning the hero and so on)",
"commonAttention": "If the final price of the last uncommon hero is less than 2000 GUM, we start to sell the new common hero after the end of the hero sale. All common heroes will be resold until the common hero reaches to the maximum number of the issue.",
"prime": {
"about": {
"title": "Monthly MCH Prime Subscription",
"lead": "MCH Prime users can enjoy the following benefits:",
"list": [
"Get double CE in quests",
"Free Daily Bonus",
"Increase quest teams from 3 to 6",
"Increase team templates from 3 to 6",
"Revive teams in quests",
"Limited quests for Prime users",
"Half GUM fees for gift functions",
"CE auto dedication",
"Increase quest team templates from 0 to 6",
"Novice hero \"Sun Shangxiang\", \"David\" and \"Fukuzawa Yukichi\" present (only for those who do not have yet / excluding Free Prime)"
],
"dailybonus1": "- Available once per day (resets at {hour} every day)",
"dailybonus2": "- {gum} GUM, 1 in 500 can get between 100GUM and 3000GUM!",
"dailybonus21": "- {gum} GUM",
"dailybonus3": "* A gas fee is required.",
"continue": "Available up to 5 times every 24 hours"
},
"leftDays": {
"before": "",
"after": "days left",
"warning": "You can renew your subscription {updatableRemainingDays} days before the end.",
"subscriptionState": "Subscription is currently {isSubscribing}",
"toAccount": "Manage Subscription",
"updateTiming": "* It will be automatically updated {updateTiming} days before the end of the MCH Prime."
},
"limited": "For a limited time (Until {limitedTime})",
"notes": "If you buy with ETH, your status is reflected in 5-10 mins after successing the transaction.",
"subscription": {
"about": "Your MCH Prime Subscription",
"discription": [
"Prime Renewal at GUM is a campaign-only installation until March 18. During that time only, automatic renewals will be in effect.",
"You can check the box below to turn on the automatic renewal. You can toggle the subscription ON/OFF at any time in your profile settings.",
"If you enable the automatic renewal: Once the remaining prime period is 72 hours or less, your prime will be automatically renewed.",
"Automatic renewal is only possible with GUM ({primePriceWithGum} GUM). If there is not enough GUM at the renewal day, the prime will not be renewed."
],
"turnedOn": "Turn on automatic renewal (suggested)"
},
"purchase": "You are purchasing 31 days of MCH Prime for {primePrice}. Would you like to continue?",
"submit": "Buy for {primePrice}",
"refund": {
"title": "Refund",
"modal": {
"text": "Cancel MCH Prime at {date} and receive {gum} GUM refund",
"disabled": "Turn off MCH prime subscription"
}
},
"trialPrime": {
"entry": "MCH Prime 12Days Free Trial (Click!!)",
"entryInfo": "",
"conditions": "Free Prime Entry Conditions",
"condition1": "Challenge the quest 6 times",
"condition2": "Land battle entry",
"condition3": "Phone number verification",
"basicPrimeInfo": "Join MCH Prime (31 days)",
"consent": "Join Free Prime. Is it OK?",
"tutorialTitle": "How to Join MCH Prime for Free",
"tutorialBody1": "Challenge the quest 6 times",
"tutorialBody2": "Land battle entry",
"tutorialBody3": "Phone number verification",
"tutorialBody4": "You must meet all of these requirements to join the free trial.\nPlease do your best!"
}
},
"novice": {
"1": "Novice Hero is in game hero.",
"2": "Unable to sell and transfer to an On-Chain Network."
},
"replica": {
"1": "Replica heroes will be expired in 7 days after setting it in your team for the first time. Replica heroes do not recover stamina over time. Please be careful.",
"2": "In addition, please read details before purchase.",
"3": "Currently, Replica Hero is temporarily suspended from sale.",
"4": "Consume",
"5": " GUM and purchase this replica hero?",
"refresh": "Would you consume {gum} GUM and refresh the replica hero pickup?",
"regendaryTrial": [
"The trial campaign runs from July 22th to July 26th, and the campaign’s Legendary Replica Hero (Alexander/Qin Shi Huang /Minamoto Yoshitsune) has an Lv of 100. Note that the Lv will decrease to 70 by July 26th (Planned around UTC 6:00 July 26th) regardless of whether it is used or not.",
"The passive skill effectiveness and params of the new Legendary Hero is currently being adjusted and subject to change without notice. The actual selling of Legendary Heroes reflects the adjusted skills and params.(Updated at UTC 1:43pm July 22nd)",
"During the campaign period, the Replica Hero lineup cannot be refreshed arbitrarily.",
"During the campaign, your purchase status is refreshed at UTC 0:00 o’clock every morning."
]
},
"land": {
"presale": {
"title": "Pre-sale for Land",
"body": {
"finished": "Land Pre-sale application acceptance period has ended.",
"lead": "Pre-sale will be a \"bulk sale\" premised on bulk purchase of the country, mainly for business operators and large-lot investors (imagine like “buy one building” for apartment sales, for example)",
"list": [
"Price: 500ETH/Land",
"Number of Lands to be sold: 4 countries (in 9)",
"Period: 2/13 Wednesday 7:00~2/18 6:00 UTC( winners will be chosen on 2/19)",
"We will do KYC(Know Your Client. Confirm your identification), and once you agree to purchase the land, we will make the agreement with each holder. "
],
"warning": {
"p": "* Please check the following Medium article and apply after understanding the content of Land Pre-sale.",
"a": "https://medium.com/mycryptoheroes/announcement-pre-sale-for-land-ba2553a37422"
},
"button": {
"text": "Application",
"url": "https://docs.google.com/forms/d/e/1FAIpQLSfEvNWJU_TZu_AwVX-rIkDDi8GrbhZAkaW2W2lOUkkGHE4L8w/viewform?usp=sf_link"
}
}
},
"crowdsale": {
"title": "Crowd-sale for Land",
"pledge": {
"content": "I have already checked \"Terms of service\" and \"Land Crowd-sale\"",
"medium": {
"title": "[announcement] Land Crowd-sale (Official Medium)",
"url": "https://medium.com/mycryptoheroes/announcement-land-crowd-sale-f5daf5f08efa"
}
}
}
}
},
"trade": {
"startPrice": "Start Price",
"endPrice": "End Price",
"artRule1": "Listing is free! At purchase time, 10% fee will be deducted.",
"artRule2": "There is a lower limit for \"Start Price\" and \"End Price\". You can set 100 GUM or more for \"Start Price\" and 10 GUM or more for \"End Price\".",
"rule1": "Listing is free! At purchase time, 10% fee will be deducted.",
"rule2": "The rate of the price decrease over time is calculated automatically. The price will decrease by 20% of the difference between Start Price and Ending Price per day. This means, in 5 days, the price will drop to the set 'Ending Price'.",
"rule3": "Note: The item (heroes and/or extensions) must be unequipped in all your teams. Additionally, heroes and/or extensions can't be sent to an On-Chain Network while it's on trade",
"rule4": "You can list up to 100 assets a day. You can cancel your sale listings at any time",
"rule5": "There is a minimum limit for \"Start Price\" and \"End Price\". You need to set at least 100 GUM for \"Start Price\" and at least 10 GUM for \"End Price\".",
"rule6": "You need to wait 24h before listing if your asset (Hero / Extension) has been purchased, used in Quest, Reward, Trade, or was transferred to/from an On-Chain Network",
"rule7": "Once you listed your asset for sale, there is a 30min 'Waiting Period' before anyone can buy it. It has the status 'Just Listed' and cannot be bought during that time. This prevents price scrapers and creates a fair market.",
"rule8": "If a copied art is reported by its original creator, we will stop listing the copied art. In the case of repetitive infringement, we will carry out strict measures (such as suspending accounts, reverting art sale transactions, and so on).",
"buy1": "Confirm buying",
"buy2": "with",
"buy3": "GUM",
"sort": {
"last": "Recent Activity",
"lowest": "Lowest Price",
"highest": "Highest Price",
"highestLv": "Highest Lvl",
"lowestLv": "Lowest Lvl"
},
"header": {
"items": "Items",
"resetStars": "Reset All Stars",
"editSearch": "Edit Search"
},
"status": {
"sold": "Sold",
"trading": "Trading",
"justListed": "Just Listed"
},
"lv": {
"lvMax": "Only Lv Max"
},
"filter": {
"filter": "Filter",
"assetType": "Asset Type",
"type": "Type:",
"status": "Status",
"sort": "Sort",
"star": "Star",
"attributes": "Attributes",
"heroStar": "Show Favorites",
"extensionStar": "Show Favorites",
"rarity": "Rarity",
"lv": "Level",
"clear": "Clear",
"search": "Search"
},
"details": {
"share": "Share",
"offers": "View Offers",
"details": "View Details",
"startPrice": "Start Price",
"endPrice": "End Price",
"currentPrice": "Current Price",
"salesPeriod": "Sales Period",
"assetDetails": "Exhibited asset details",
"seller": "Seller",
"buyer": "Buyer",
"cancel": "Cancel",
"stop": "Stop Sale",
"buy": "Buy",
"confirmBuy": "Buy this asset with {gum} GUM.",
"confirmStop": "Are you sure you want to cancel this trade?"
},
"confirmRemoveStar": "Are you sure to reset all starred heroes? You cannot revert this action.",
"countdown": "You can sell after"
},
"lab": {
"1": "Buy Crypto Energy",
"2": "Sell Rep. Extension",
"3": "Select other Hero",
"4": "Select Hero",
"5": "Crypto Energy at",
"6": "GUM",
"7": "Select Extension",
"8": "Sell at {totalGum} GUM",
"9": "Extension at",
"10": "GUM",
"11": "Confirm buying",
"12": "Confirm Selling",
"13": "Select all",
"14": "Unselect",
"15": "Absorb Extension Crypto Energy",
"16": "(Lab Rate independent)",
"absorb": {
"firstStep": "1. Select Extension to Level Up",
"secondStep": "2. Select Extensions to Absorb",
"currentCE": "Current CE",
"absorbedCE": "Absorbed CE",
"totalCE": "Total CE",
"level": "Level",
"absorb": "Absorb",
"select": "Select Extension to Lvl up",
"confirmHeadline": "Confirm Absorb",
"disclaimer": "Your selected extensions will be absorbed. Are you sure to continue?",
"burnedHeadline": "These extensions will be burned:",
"extension": "Extension",
"cryptid": "Cryptid",
"noExt": "No Original Extensions in Inventory"
}
},
"opensea": "(third-party site)"