forked from DexterHuang/CyberCodeOnline
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathko.json
More file actions
14649 lines (14649 loc) · 426 KB
/
ko.json
File metadata and controls
14649 lines (14649 loc) · 426 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
{
"EquipmentSlot": {
"backpack": {
"eng": "backpack",
"trans": "가방"
},
"boots": {
"eng": "boots",
"trans": "신발"
},
"helmet": {
"eng": "helmet",
"trans": "헬멧"
},
"lowerArmor": {
"eng": "lower armor",
"trans": "하의"
},
"primaryWeapon": {
"eng": "primary weapon",
"trans": "주 무기"
},
"secondaryWeapon": {
"eng": "special weapon",
"trans": "특수 무기"
},
"tertiaryWeapon": {
"eng": "destructive weapon",
"trans": "파괴 무기"
},
"upperArmor": {
"eng": "upper armor",
"trans": "상의"
}
},
"IAP": {
"bonusReward": {
"eng": "${eventName} bonus:",
"trans": "${eventName} 보너스 :",
"vars": [
"eventName"
]
},
"currency": {
"paypalExclusive": {
"eng": "PayPal Exclusive!",
"trans": "오직 페이팔에서만!"
},
"tag": {
"bestValue": {
"eng": "Best Value!",
"trans": "최고의 가성비!"
},
"popular": {
"eng": "Popular",
"trans": "인기"
}
}
},
"paypal": {
"paypalBonus": {
"eng": "You will receive additional 10% more Units with paypal purchase",
"trans": "페이팔 결제시 10% 더 많은 유닛을 추가로 받게됩니다"
},
"paypalBonusTitle": {
"eng": "All PayPal purchases grants 10% additional Units! You may use paypal only on website version, simply login with your browser.",
"trans": "페이팔 결제시 10%의 보너스 유닛을 드립니다! 웹사이트 버전에서만 이용 가능하며, 브라우저에서 쉽게 로그인 가능합니다."
}
},
"purchasing": {
"eng": "Purchasing",
"trans": "구매"
},
"receive": {
"eng": "Receive",
"trans": "구매"
},
"total": {
"eng": "total",
"trans": "총"
}
},
"MutedScreen": {
"appealForm": {
"eng": "Appeal Form",
"trans": "신고 양식"
},
"description1": {
"eng": "We are very sorry this happened, please understand we are required to maintain a safe environment for all players and ensure that everyone can play the game in a pleasant environment. Thats why we have to mute when it is needed. please do read our chat rules from the link below for full information",
"trans": "불편을 드려서 정말로 죄송합니다. 부디 모든 플레이어가 쾌적한 환경에서 게임을 플레이할 수 있게 유지해야 함을 이해해 주세요. 이를 위해서 필요 시 음소거(뮤트)를 할 수 있습니다. 자세한 정보는 아래 채팅 규칙을 읽어주세요."
},
"description2": {
"eng": "If you believe it was a misunderstanding, please contact the moderator via our discord channel linked below.",
"trans": "음소거(뮤트)가 잘못되었거나 오해라고 생각한다면, 아래의 Discord 채널 링크를 통해 관리자(모더)에게 문의하십시오."
},
"description3": {
"eng": "If you would like to report a moderator for abuse or misconduct, you may reach out to Dexter (the developer of this app) via the appeal form below",
"trans": "권력 남용 또는 위법 행위로 관리자(모더)를 신고하려면, 아래의 신고 양식을 가지고 덱스터(이 앱의 개발자)에게 연락해주세요."
},
"description4": {
"eng": "Alternatively, you may also contact the developer via email at ching.huang.dexter@gmail.com",
"trans": "또는, ching.huang.dexter@gmail.com으로 이메일을 통해 연락할 수도 있습니다."
},
"rules": {
"eng": "Chat Rules",
"trans": "채팅 규칙"
},
"title": {
"eng": "Chat Disabled",
"trans": "채팅 비활성화됨"
}
},
"Quest": {
"requirement": {
"clearChallengeDungeon": {
"description": {
"eng": "Clear a challenge dungeon (can be co-op)",
"trans": "챌린지 난이도의 던전을 클리어하세요 (협동 가능)"
},
"name": {
"eng": "Clear challenge dungeon",
"trans": "챌린지 난이도 던전 클리어"
}
},
"clearDungeon": {
"description": {
"eng": "Clear any dungeon (can be co-op)",
"trans": "아무 종류의 던전을 클리어하세요 (협동 가능)"
},
"name": {
"eng": "Clear dungeon",
"trans": "던전 클리어"
}
},
"clearDungeonCoOp": {
"description": {
"eng": "Clear any dungeon with 1 or more players",
"trans": "1명 이상의 플레이어와 함께 아무 던전을 클리어하세요"
},
"name": {
"eng": "Clear dungeon with friends",
"trans": "친구와 같이 던전 클리어"
}
},
"damage": {
"description": {
"eng": "Deal damage to any enemy",
"trans": "아무 적에게나 데미지를 주십시오"
},
"name": {
"eng": "Deal damage",
"trans": "데미지 주기"
}
},
"enemyKill": {
"description": {
"eng": "Kill any enemy",
"trans": "아무 적이나 죽이세요"
},
"name": {
"eng": "Kill enemy",
"trans": "적 사살"
}
},
"exp": {
"description": {
"eng": "Receive exp from any source",
"trans": "다양한 방식으로 경험치를 획득해보세요"
},
"name": {
"eng": "Receive exp",
"trans": "경험치 획득"
}
},
"globalChat": {
"description": {
"eng": "Chat with other players, spam not allowed",
"trans": "다른 플레이어와 채팅해보세요. 다만 의미없는 채팅이나 도배를 하면 뮤트(채팅 불가)를 받을수 있습니다."
},
"name": {
"eng": "Use global chat",
"trans": "글로벌 채팅을 사용해보세요"
}
},
"joinDungeon": {
"description": {
"eng": "Join other player's dungeon",
"trans": "다른 플레이어의 던전에 참가하세요"
},
"name": {
"eng": "Join Dungeon",
"trans": "던전 입장"
}
},
"killGang1": {
"description": {
"eng": "Defeat Animals gang enemies",
"trans": "애니멀즈 갱 멤버를 물리치십시오"
},
"name": {
"eng": "Defeat Animals gang member",
"trans": "애니멀즈 갱 멤버를 물리치십시오"
}
},
"killGang2": {
"description": {
"eng": "Defeat Voodoo boys gang enemies",
"trans": "부두보이즈 갱 멤버를 물리치십시오"
},
"name": {
"eng": "Defeat Voodoo boys gang member",
"trans": "부두보이즈 갱 멤버를 물리치십시오"
}
},
"killGang3": {
"description": {
"eng": "Defeat Scavengers gang enemies",
"trans": "스캐빈저 갱 멤버를 물리치십시오"
},
"name": {
"eng": "Defeat Scavengers gang member",
"trans": "스캐빈저 갱 멤버를 물리치십시오"
}
},
"molecularPrint": {
"description": {
"eng": "use molecular print to print any item cache",
"trans": "3D 분자 프린터를 사용하여 아무 아이템 캐시를 인쇄하세요"
},
"name": {
"eng": "Print equipment",
"trans": "장비 인쇄"
}
},
"money": {
"description": {
"eng": "Acquire Bitcoins in any way",
"trans": "다양한 방식으로 비트코인을 습득해보세요"
},
"name": {
"eng": "Acquire Bitcoins",
"trans": "비트코인 획득"
}
},
"openCrate": {
"description": {
"eng": "Open crate in dungeon",
"trans": "던전에서 상자를 열어보세요"
},
"name": {
"eng": "Open Crate",
"trans": "상자 열기"
}
},
"sellItem": {
"description": {
"eng": "Place an item on the market",
"trans": "시장 가판대에 아이템을 올려보세요"
},
"name": {
"eng": "Be a merchant",
"trans": "상인이 되어보세요"
}
},
"tutorial": {
"description": {
"eng": "Tutorial Page is in profile tab -> Tutorial",
"trans": "튜토리얼 페이지는 '프로필 탭 -> 가이드'에 있습니다."
},
"name": {
"eng": "Open tutorial Page",
"trans": "튜토리얼(가이드) 페이지 열기"
}
}
}
},
"action": {
"autoFarm": {
"description1": {
"eng": "Deploys an AI to dungeon for you. This will use up an AI Core, they usually only just manage the one trip.",
"trans": "당신을 대신해 AI를 던전으로 파견합니다. 이때 AI 코어가 하나 소모되며, 보통은 한 번의 임무만 처리해 줍니다."
},
"name": {
"eng": "Deploy farm bot",
"trans": "자동사냥 봇 배치"
},
"tut": {
"eng": "You can use your AI Core to Auto-Farm enemies while you AFK",
"trans": "직접 움직이지 않아도 AI 코어를 이용하여 적들을 자동 사냥할 수 있습니다"
}
},
"bulkCrafting": {
"name": {
"eng": "Bulk Crafting",
"trans": "대량 제작"
}
},
"clanDecryptShard": {
"description": {
"eng": "Decrypt a memory shard to retrieve useful intel.",
"trans": "유용한 정보를 얻기 위해 메모리 샤드를 해독합니다. \r\n *메모리 샤드는 대화 내용이나 특정 정보가 담겨 있는 작은 데이터 카드를 말합니다. 조각 안에는 대부분 사이버코드 세계의 잡학지식들이 들어 있지만, 일부 조각에는 임무 수행에 필요한 핵심 자료가 담겨 있는 경우도 있습니다."
},
"name": {
"eng": "Decrypt memory shard",
"trans": "메모리 샤드 해독"
}
},
"clanOccupation": {
"description": {
"eng": "Help reinforce and establish greater control of Shangri-la city.",
"trans": "샹그릴라 시의 점령도를 강화하고 확립하는 것을 돕습니다."
},
"name": {
"eng": "Reinforce occupation at Shangri-la",
"trans": "샹그릴라 점령 강화"
}
},
"clanResource": {
"description": {
"eng": "Help gather and manage needed resources for your gang",
"trans": "당신의 갱에 필요한 자원을 모으고 관리합니다"
},
"name": {
"eng": "Gather Gang Resource",
"trans": "갱단 자원 수집"
}
},
"furnitureWorkshop": {
"description": {
"eng": "Search the coastline for beached cargo containers and salvage materials for furniture crafting.",
"trans": "바닷가에서 좌초된 화물 컨테이너를 찾아 가구 제작에 쓸 수 있는 재료를 회수해 보세요."
},
"name": {
"eng": "Salvage Beached Tech Cargo",
"trans": "좌초된 기술 화물 인양"
}
},
"gambling1": {
"description": {
"eng": "Konnichiwa!! ^___^\n Come play the MEGA Pachinko! With chance to win HUGE EPIC rewards\n only 5000 btc per session, LIMITED TIME OFFER!!! <3<3<3\n ##Special thanks for Militech for sponsoring this event##",
"trans": "Konnichiwa!! ^___^\r\n MEGA 파칭코를 플레이 해봐! 엄청난 보상을 받을 수도 있다고!\r\n 한 번당 5000 BTC, 기간 한정 특가!!! <3<3<3\r\n ##이 이벤트의 스폰서인 Militech에게 경의를 표하며##"
},
"name": {
"eng": "Play MEGA Pachinko Game",
"trans": "MEGA 파칭코"
}
},
"gambling2": {
"description": {
"eng": "Konnichiwa!! UwU\n Are you feeling rich and lucky today?\n play now only 1,000,000 btc once (limited time special offer!) with 0.1% chance to win a EPIC item! \n ",
"trans": "Konnichiwa !! uwu. \r\n 오늘따라 운이 좋으신 거 같나요? \r\n 한 번에 1,000,000 BTC (기간 한정 특가!!!!!) 운이 좋다면 0.1퍼센트 확률로 '에픽' 아이템을 얻을 수도 있습니다!"
},
"name": {
"eng": "Play MEGA Pachinko s plus pro max",
"trans": "MEGA 파칭코 S Plus Pro Max"
}
},
"globalQuest": {
"description": {
"eng": "Launch a collaborative attack in cyberspace targeting the Shangri-La Data Fortress.\nIf the attack succeeds, it's possible to force the Data Fortress to transmit exploits to all cybernetically connected users.",
"trans": "샹그릴라 데이터 요새를 목표로 사이버 공간에서 합동 공격을 시작합니다. \r\n 공격이 성공하면, 데이터 요새가 사이버넷에 연결된 모든 사용자들에게 취약점을 전송하게 할 수 있습니다."
},
"name": {
"eng": "Hack SL Data Fortress",
"trans": "SL 데이터 요새 해킹"
}
},
"increaseAmmo": {
"description": {
"eng": "Tinker with ammunition, to find more effective ways of crafting it.",
"trans": "더 효과적인 탄약 제조 방법을 찾기 위해 탄약을 손봅니다."
},
"name": {
"eng": "Improve Ammunition",
"trans": "탄약 제조 기술 개선"
}
},
"increaseMedical": {
"description": {
"eng": "Download useful data from a local body mod clinic to craft higher quality medical bots and drones.",
"trans": "신체 개조 진료소에서 유용한 데이터를 다운로드하여, 높은 품질의 의료 로봇과 드론을 제작할 수 있도록 합니다."
},
"name": {
"eng": "Hack a Body Mod Clinic",
"trans": "신체 개조 진료소 해킹"
}
},
"increasePrint": {
"description": {
"eng": "Improve Printing Rank without sacrificing tech scrap, this may help to increase the level of your prints.",
"trans": "공학 조각을 소모하지 않고 인쇄 기술을 개선합니다. 인쇄 레벨을 높이는 데 도움이 될 수 있습니다."
},
"name": {
"eng": "work in printing factory",
"trans": "인쇄 공장 작업"
}
},
"petAFK": {
"description": {
"eng": "Volunteer at the local pet shelter to help take care of the animals.",
"trans": "동물을 돌보는 것을 돕기 위해 지역 애완동물 보호소에서 자원봉사를 합니다."
},
"name": {
"eng": "Pet Shelter Volunteer Shift",
"trans": "동물 보호소 자원봉사자 교대 근무"
}
},
"powerSalvage": {
"description": {
"eng": "Dismantle abandoned power units to extract energy cells and materials.",
"trans": "버려진 엔진을 분해하여 에너지 셀과 자원을 추출하세요."
},
"name": {
"eng": "Salvage Power Units",
"trans": "엔진 회수"
}
},
"reverseEngineer": {
"description": {
"eng": "Reverse engineer tech scrap to improve your Print Rank. \n You'll need to sacrifice some of your tech scrap.",
"trans": "공학 조각을 분석하여 인쇄 레벨을 높입니다. \r\n 공학 조각을 소모해야 합니다."
},
"name": {
"eng": "Reverse Engineer Scraps",
"trans": "조각 역변환"
}
},
"reverseMining": {
"description": {
"eng": "Engaging in crypto mining will earn you Bitcoins, however due to the intense use of the Hash Processors, the Quantum Processing Unit, otherwise known as the QPU, will often burn out.",
"trans": "암호 화폐 채굴에 참여하면 비트코인을 벌 수 있지만, 해시 프로세서의 과도한 사용으로 인해 QPU(양자 처리 장치)가 자주 타버립니다."
},
"name": {
"eng": "initiate crypto mining",
"trans": "암호 화폐 채굴"
}
},
"scavenge": {
"description1": {
"eng": "Search around in ${zoneName} and scavenge for useful items.\n Who knows, maybe you'll get lucky!",
"trans": "${zoneName}에서 주변을 뒤져 보면서 유용한 아이템을 찾아보세요! 누가 알겠어요, 행운이 따를지도 몰라요",
"vars": [
"zoneName"
]
},
"name": {
"eng": "Scavenge in ${zoneName}",
"trans": "${zoneName} 탐색",
"vars": [
"zoneName"
]
}
},
"tag": {
"afkExpFarm": {
"eng": "AFK Exp Farm",
"trans": "AFK 경험치 농장"
},
"afkResourceGather": {
"eng": "AFK Resource Gather",
"trans": "AFK 자원 수집"
},
"ammoTraining": {
"eng": "Ammo Training",
"trans": "탄약 훈련"
},
"apartment": {
"eng": "Apartment",
"trans": "아파트"
},
"coop": {
"eng": "Co-op",
"trans": "코옵"
},
"gambling": {
"eng": "Gambling",
"trans": "도박"
},
"medicalTraining": {
"eng": "Medical Training",
"trans": "의료 훈련"
},
"mining": {
"eng": "Mining",
"trans": "채굴"
},
"pet": {
"eng": "Pet",
"trans": "펫"
},
"printingTraining": {
"eng": "Printing Training",
"trans": "프린트 연습"
},
"top2Only": {
"eng": "Top 2 Only",
"trans": "상위 2개만"
}
},
"topClanExclusive": {
"description": {
"eng": "Bribe government officials and the SLPD to collect protection fees from business owners and citizens in Shangri-La. Maybe you'll get some EPIC items from them? (Exclusive to the Top 2 Gangs on the Occupation Leaderboard",
"trans": "정부 공무원과 경찰들을 매수하여 샹그릴라 지역의 사업자와 시민들로부터 보호비를 징수합니다. 운이 좋으면 '에픽' 아이템을 얻을 수 있을지도 모릅니다. (점령 순위 Top 2 갱단 전용)"
},
"name": {
"eng": "Collect Protection Fees",
"trans": "보호비 수집"
}
},
"trade": {
"name": {
"eng": "Trade",
"trans": "거래"
}
}
},
"actionStartModal": {
"extendButton": {
"activate": {
"eng": "Boost now",
"trans": "보상 향상하기"
},
"activatedDescription": {
"eng": "Boost activated, you must tick the checkbox below to enable it for this task",
"trans": "향상 버프가 활성화되어 있습니다. 향상 작업을 활성화하려면 아래의 박스에 체크해야합니다",
"vars": [
"itemName"
]
},
"activatedTitle": {
"eng": "Reward Boost (Activated)",
"trans": "전리품 향상 (활성화됨)"
},
"enableBoost": {
"eng": "Enable reward boost",
"trans": "전리품 향상 적용"
},
"notActivatedDescription": {
"eng": "Double the items and exp! while the duration and cost will increase by 4 times",
"trans": "획득 경험치와 아이템을 두 배로 늘립니다! 대신 지속 시간과 비용은 4 배 증가합니다",
"vars": [
"itemName"
]
},
"notActivatedTitle": {
"eng": "Reward Boost",
"trans": "전리품 향상"
}
},
"startButton": {
"title": {
"eng": "start",
"trans": "시작"
}
},
"timeReductionButton": {
"activate": {
"eng": "reduce now",
"trans": "지금 단축하기"
},
"description": {
"eng": "Reduce time needed for action by 40%, stackable upto 80%",
"trans": "오프라인 작업에 필요한 시간을 40% 단축합니다. 이 버프는 최대 80%까지 쌓을 수 있습니다",
"vars": [
"itemName"
]
},
"title": {
"eng": "Time Reduction (currently ${currentPercent}%)",
"trans": "작업 시간 단축 (현재 ${currentPercent}%)",
"vars": [
"itemName",
"currentPercent"
]
}
}
},
"adminStreetCred": {
"copyLink": {
"eng": "Copied link to clipboard",
"trans": "클립보드에 링크가 복사되었습니다"
},
"goToAppStore": {
"eng": "Go to App Store",
"trans": "앱 스토어로 가기"
},
"section1": {
"description1": {
"eng": "I see you wanted to give street cred to me. I really appreciate it!",
"trans": "저에게 명성을 주시고 싶으시군요. 정말 감사합니다!"
},
"description2": {
"eng": "However, please reserve your street cred for who truly deservers it; the skippers, buff deployers and other awesome players that makes the community great 💖",
"trans": "하지만 명성은 커뮤니티를 훌륭하게 만드는 스키퍼, 버프 배포자, 기타 멋진 플레이어 등 진정으로 받을 자격이 있는 분들을 위해 남겨주세요 💖"
},
"title": {
"eng": "Hey Thanks!",
"trans": "감사합니다!"
}
},
"section2": {
"description1": {
"eng": "Contribute to the community and help out server bills by deploy some buffs or do some skips",
"trans": "버프를 배포하거나 스킵을 실행해서 커뮤니티에 기여하고 서버 비용에 도움을 주실 수 있습니다."
},
"description2": {
"eng": "Drop a 5 star review on the app store, so more people will discover the game",
"trans": "앱 스토어에 별 5개 리뷰를 남겨서 더 많은 사람들이 이 게임을 발견할 수 있도록 할 수 있습니다."
},
"description3": {
"eng": "Share the game with your friends, you will receive free Units when they top up.",
"trans": "친구와 게임을 공유하세요. 그들이 충전할 때 무료 유닛을 받게 됩니다."
},
"title": {
"eng": "If you like my game, you can:",
"trans": "제 게임이 마음에 드신다면:"
}
},
"share": {
"eng": "Share",
"trans": "공유하기"
},
"shareText": {
"eng": "It's a Cyberpunk Text MMO, no p2w, no ads and has a great community!",
"trans": "사이버펑크 텍스트 MMO입니다. p2w이 아니고, 광고도 없으며, 훌륭한 커뮤니티가 있습니다!"
},
"shareTitle": {
"eng": "Check out this game!",
"trans": "이 게임 한번 확인해보실래요?"
}
},
"apartment": {
"address": {
"cityName": {
"eng": "Shangri-la",
"trans": "상그릴라"
}
},
"deleteNoteConfirm": {
"eng": "Delete this note?",
"trans": "이 글을 삭제할까요?"
},
"error": {
"noApartment": {
"eng": "You don't have an apartment",
"trans": "소유중인 아파트가 없습니다"
}
},
"furniture": {
"eng": "Furniture",
"trans": "가구"
},
"furnitureSlots": {
"eng": "Furniture Slots",
"trans": "가구 슬롯"
},
"getStickerHint": {
"eng": "Friendship Stickers can be obtained from quests and events.",
"trans": "퀘스트와 이벤트에서 우정 스티커를 획득할 수 있습니다."
},
"jukeBox": {
"eng": "JukeBox",
"trans": "주크박스"
},
"leaveNote": {
"eng": "Leave a Note",
"trans": "메모 남기기"
},
"noNotes": {
"eng": "NO DATA FOUND // BE THE FIRST",
"trans": "적힌 글이 없습니다 // 첫 번째 작성자가 되어보세요"
},
"noSticker": {
"eng": "You need a Friendship Sticker to post a note!",
"trans": "글을 적으려면 우정 스티커가 필요합니다!"
},
"notePlaceholder": {
"eng": "Write something nice... (Max 128 chars)",
"trans": "여기에 멋진 글을 적어보세요... (최대 128자)"
},
"petSlots": {
"eng": "Pet Slots",
"trans": "펫 슬롯"
},
"post": {
"eng": "Post",
"trans": "게시물"
},
"postNote": {
"error": {
"contentTooLong": {
"eng": "Content too long or empty",
"trans": "내용이 너무 길거나 비어 있습니다"
},
"negativeSentiment": {
"eng": "Message is flagged by AI, only friendly content is allowed.",
"trans": "AI에 의해 메시지가 차단되었습니다. 우호적인 내용만 허용욉니다."
},
"noItem": {
"eng": "You need a ${itemName} to leave a note. ${itemName} can be obtained from quests and events.",
"trans": "글을 남기려면 ${itemName}가 필요합니다. ${itemName}는 퀘스트와 이벤트에서 얻을 수 있습니다.",
"vars": [
"itemName"
]
},
"notFriends": {
"eng": "You must be friends with the owner to post",
"trans": "소유자와 친구가 되어야 게시할 수 있습니다"
},
"ownerNotFound": {
"eng": "Owner not found",
"trans": "소유자를 찾을 수 없습니다"
},
"restricted": {
"eng": "This player has disabled their wall",
"trans": "이 플레이어는 벽을 비활성화했습니다"
}
}
},
"rent": {
"paidMail": {
"eng": "You have paid your apartment rent of ${amount}",
"trans": "아파트 임대료를 ${amount} 지불했습니다",
"vars": [
"amount"
]
},
"unpaidMail": {
"eng": "You have failed to pay your apartment rent, your apartment has been terminated",
"trans": "아파트 임대료 납부에 실패했습니다. 당신의 아파트 계약이 해지되었습니다"
}
},
"rentalDueDate": {
"eng": "Rental Due Date: ${rentalDueDate} (${timeToDue})",
"trans": "임대료 지불일: ${rentalDueDate} (${timeToDue})",
"vars": [
"timeToDue",
"rentalDueDate"
]
},
"stickerCount": {
"eng": "You have: ${count}",
"trans": "보유: ${count}개",
"vars": [
"count"
]
},
"stickerRequired": {
"eng": "Friendship Sticker Required",
"trans": "우정 스티커 필요"
},
"terminateLease": {
"eng": "Terminate Lease",
"trans": "임대 계약 해지"
},
"title": {
"eng": "${playerName}'s Apartment",
"trans": "${playerName}의 아파트",
"vars": [
"playerName"
]
},
"viewMarket": {
"eng": "View Apartment Market",
"trans": "아파트 시장 보기"
},
"viewPets": {
"eng": "View Pets",
"trans": "애완동물 보기"
},
"wall": {
"eng": "Apartment Wall",
"trans": "아파트 벽"
},
"wallDisabled": {
"eng": "WALL // DISABLED",
"trans": "벽 // 비활성화"
}
},
"apartmentMarket": {
"title": {
"eng": "Apartment Market",
"trans": "아파트 시장"
},
"week": {
"eng": "WEEK",
"trans": "주"
}
},
"artPromo": {
"desc1": {
"eng": "We are giving out Epic Caches, Explorer Backpack, Employee Suitcase and Emblems to the top 5 winners!",
"trans": "상위 5명에게 에픽 캐시, 모험가의 배낭, 직원 서류 가방 및 엠블럼이 지급됩니다!"
},
"desc2": {
"eng": "Check out the #event channel on Discord for more details!",
"trans": "자세한 내용은 Discord의 #Event 채널을 확인하세요!"
},
"title": {
"eng": "Spooky Character Art Competition!",
"trans": "으스스한 캐릭터 아트 경쟁!"
}
},
"basicInfo": {
"nameInvalid": {
"eng": "name length must be greater then 4, less then or equal to 16 and only contains English characters, numbers or '_'",
"trans": "이름 길이는 4자 초과, 16자 이하여야 하며, 영어 문자, 숫자 또는 \\ '_ \\'만 포함해야합니다"
},
"nameProfane": {
"eng": "This name contains wordings not allowed, please use other name",
"trans": "이 닉네임에는 사용할 수 없는 단어가 포함되어 있습니다. 다른 닉네임을 사용하십시오"
},
"nameUsed": {
"eng": "this name is used by other player, please use other name",
"trans": "이 닉네임은 다른 플레이어가 사용합니다. 다른 닉네임을 사용하십시오"
},
"reservedKeyword": {
"eng": "This name contains reserved wordings, please use other name",
"trans": "이 이름에는 제한된 단어가 포함되어 있습니다"
}
},
"battleUI": {
"quickSlotModal": {
"title": {
"eng": "Select an item to bind to quick slot",
"trans": "퀵슬롯에 등록할 아이템을 선택하십시오."
}
}
},
"buffActivateButton": {
"alreadyActivated": {
"eng": "Activated",
"trans": "이미 활성화됨"
}
},
"buffActivation": {
"expBuff": {
"button": {
"eng": "Activate",
"trans": "활성화"
},
"description": {
"eng": "Increase your EXP gain by 80% for 20 minutes",
"trans": "경험치 획득량을 20 분 동안 80% 증가시킵니다"
},
"title": {
"eng": "EXP Buff (Currently ${current}%)",
"trans": "경험치 버프 (현재 ${current}%)",
"vars": [
"current"
]
}
}
},
"buffSponsorModal": {
"giveCredit": {
"eng": "Give Street Cred",
"trans": "명성 주기"
},
"viewProfile": {
"eng": "View Profile",
"trans": "프로필 보기"
}
},
"bulkCrafting": {
"cannotCraft": {
"eng": "You cannot craft while not idle",
"trans": "기본상태가 아닌 동안에는 제작을 할 수 없습니다"
}
},
"bulkCraftingSubtype": {
"printSell": {
"description": {
"eng": "Print items and sell them for money",
"trans": "아이템을 인쇄하여 돈으로 판매"
},
"title": {
"eng": "Print & Sell",
"trans": "인쇄 및 판매"
}
},
"recycle": {
"description": {
"eng": "Add items to recycle them more efficiently",
"trans": "더 효율적으로 재활용하기 위해 아이템을 추가하십시오"
},
"title": {
"eng": "Recycle",
"trans": "재활용"
}
}
},
"bundle": {
"alreadyPurchased": {
"eng": "Available again in ${time}",
"trans": "${time} 뒤에 다시 구매할 수 있습니다.",
"vars": [
"time"
]
},
"bell2": {
"name": {
"eng": "cassette tape",
"trans": "카세트 테이프"
}
},
"bell3": {
"name": {
"eng": "Equipment Package",
"trans": "장비 패키지"
}
},
"cali": {
"namev2": {
"eng": "Calibration bundle (60%)",
"trans": "교정 패키지 (60%)"
}
},
"cali2": {
"namev2": {
"eng": "Calibration bundle (100%)",
"trans": "교정 패키지 (100%)"
}
},
"cycle": {
"daily": {
"description": {
"eng": "Available once a day",
"trans": "하루에 한 번 구매할 수 있습니다"
},
"name": {
"eng": "Daily",
"trans": "일일"
}
},
"monthly": {
"description": {
"eng": "Available once a month",
"trans": "한 달에 한 번 구매할 수 있습니다"
},
"name": {
"eng": "Monthly",
"trans": "월간 간행물"
}
},
"once": {
"description": {
"eng": "One-time special per account",
"trans": "계정 당 오직 한 번만 구매할 수 있습니다"
},
"name": {
"eng": "Once",
"trans": "한정"
}
},
"weekly": {
"description": {
"eng": "Available once a week",
"trans": "매주 한 번 구매할 수 있습니다"
},
"name": {
"eng": "Weekly",
"trans": "주간"
}
}
},
"free": {
"eng": "Free",
"trans": "무료"
},
"freeSkip": {
"name": {
"eng": "Free Personal Skip",
"trans": "무료 개인 스킵"
}
},
"rareEquipmentCrate": {
"name": {
"eng": "Rare Equipment Crate",
"trans": "희귀 장비 상자"
}
},
"retro": {
"name": {
"eng": "Synthwave bundle",
"trans": "신스웨이브 패키지"
}
},
"skip": {
"name": {
"eng": "Skip supply bundle",
"trans": "오프라인 스킵 패키지"
}
}
},
"bundleDetailsModal": {
"alreadyPurchased": {
"eng": "Available again in ${time}",
"trans": "${time} 후에 다시 구매할 수 있습니다",
"vars": [