-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathlocal_data.dat
3828 lines (3828 loc) · 239 KB
/
local_data.dat
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
DST_ACCOUNT_CREATE_SUCCESS="[align = ""center""][font size = ""12"" color=""f4d762""]Account Creation Successful[/font][br][br][font size = ""10"" color=""ffffff""]Your account has been created and should[br]now have access to Dragon Ball Online[/font]"
DST_ACCOUNT_SERVER_CONNECT_FAIL="[align = ""center""][font size = ""12"" color=""f4d762""]Authentication Failure[/font][br][br][font size = ""10"" color=""f36a7c""]You've failed to connect to[br]the authentication server.[/font][br][br][font size = ""10"" color=""ffffff""]Please try again in a few minutes.[/font]"
DST_ACTION_TYPE_NORMAL="Normal"
DST_ACTION_TYPE_SOCIAL="Social"
DST_AGGROLIST_TITLE="Aggro List"
DST_AGGROPT_AVATAR="Your Aggro."
DST_AGGROPT_PARTY="Party's Aggro."
DST_AGGROPT_PET="Pet's Aggro."
DST_AIRING_POSE="Motion posture"
DST_AIR_AP_GUI_COMMENT="AP is consumed only during accelerated flying.\nIt regenerates while you fly slowly or while on ground."
DST_AIR_CAN_NOT_FLY="You can't fly right now."
DST_AIR_CAN_NOT_USE_BATTLE_MODE="You can't fly during a fight."
DST_AIR_EFFECT="Air effect"
DST_AIR_POSE="Air pose"
DST_ALRAM_ITEMBOX_USE="[align = ""center""][font size = ""9"" color=""269eff""]%s[/font][br]Popo's Chest box contains an exp. scroll."
DST_ALREADY_EXIST_SAME_TYPE_EQIP="That type has already been equipped."
DST_ALREADY_SAME_CHANNEL="You are already on this Channel"
DST_ASK_CHANGE_CHANNEL="[align = ""center""][font size = ""12"" color=""f4d762""]Change Channel[/font][br][br][font size = ""10"" color=""ffffff""]You're about to change channel.[/font]"
DST_AUTO_RECOVER_ARRAY="Remaining amount of recovery: %s"
DST_AUTO_RECOVER_COMMENT="If %s less than %d%% recover %d%% "
DST_AUTO_RECOVER_COMMENT1="Must wait %s seconds after recovery"
DST_AVATAR_SEX_FEMALE="Female"
DST_AVATAR_SEX_MALE="Male"
DST_AVATAR_SEX_NOT_EXIST="No Gender"
DST_AXE="Axe"
DST_A_DAY="Date"
DST_BACKDST_PACK="Backpack"
DST_BAG_REMOTE_SELL="Remote Sales"
DST_BAG_SLOT="Bag Slot"
DST_BAG_TITLE="Inventory"
DST_BASE_POSE="Basic Position"
DST_BATTLEATTR_ARMOR="Armor Properties: "
DST_BATTLEATTR_ATTACK_RATE="Damage %.0f%%"
DST_BATTLEATTR_ATTACK_RATE_TARGET=" Attack Attribute: %.0f%%"
DST_BATTLEATTR_ATTR="Attributes: "
DST_BATTLEATTR_DEFENCE_RATE="Defense %.0f%%"
DST_BATTLEATTR_DEFENCE_RATE_TARGET=" Defense Attribute: %.0f%%"
DST_BATTLEATTR_ON_TARGET="On Target"
DST_BATTLEATTR_WEAPON="Weapon Properties: "
DST_BATTLE_ATTRIBUTE_CHANG_ZENNY_ERR="Insufficient Zeni."
DST_BATTLE_CAN_NOT_ATTACK_TARGET="Can't attack."
DST_BAZOOKA="Bazooka"
DST_BENEFIT_ADD_EXP_PC="%d%% Bonus EXP"
DST_BENEFIT_ADD_USE_NETSTORE_PC="NetStore Available"
DST_BENEFIT_ADD_VEHICLE_SPEED_PC="%d%% Bonus Vehicle speed"
DST_BENEFIT_ADD_ZENNY_PC="%d%% Bonus Zeni"
DST_BENEFIT_BASIC_TITLE="Bonus"
DST_BIND_SUCCESS="This is your new Home Teleport area!"
DST_BIND_TEXT="[align = ""center""][font size = ""12"" color=""f4d762""]Home Teleport[/font][br][br][font size = ""10"" color=""269eff""]When the player dies he can re-spawn[br]to his chosen Popo Stone.[/font][br][br][font size = ""10"" color=""ffffff""]Change your Home Teleport[br]Location to this Area?[/font]"
DST_BLEED_DEFENCE="Bleeding Def."
DST_BLOCK_MODE_COOLTIME="Block is on cooldown"
DST_BLOCK_WATCH_MY_EQUIP="Scan jammed"
DST_BROADCAST_CCBD_CLEAR="%s CLEARED CC Battle Dungeon 150 Floor"
DST_BROADCAST_CCBD_CLEAR_USER_NOT_FOUND="CC Battle Dungeon 150 Floor WAS CLEARED"
DST_BUDOKAI_INDI_DOJO_RECOMMNED="Dojo Finalists"
DST_BUDOKAI_INDI_REQ_CANCEL="[align =""center""][font size=""12""color=""f4d762""]Cancel Registration[/font][br][br][font size=""10""color=""f36a7c""]Are you sure to cancel the registration?[/font]"
DST_BUDOKAI_INDI_REQ_CLASS="Class"
DST_BUDOKAI_INDI_REQ_GUILD="Guild"
DST_BUDOKAI_INDI_REQ_LEVEL="Level"
DST_BUDOKAI_INDI_REQ_NAME="Name"
DST_BUDOKAI_INDI_REQ_RANKING="Battle Points"
DST_BUDOKAI_INDI_REQ_RECORD="Battle Rank"
DST_BUDOKAI_INDI_REQ_RECORD_DATA="%dW %dL %dD"
DST_BUDOKAI_MAJORMATCH_INFO_TITLE_16="RO16"
DST_BUDOKAI_MAJORMATCH_INFO_TITLE_16_WAIT="RO16 standby"
DST_BUDOKAI_MAJORMATCH_INFO_TITLE_32="RO32"
DST_BUDOKAI_MAJORMATCH_INFO_TITLE_32_WAIT="RO32 standby"
DST_BUDOKAI_MAJORMATCH_INFO_TITLE_8="RO8"
DST_BUDOKAI_MAJORMATCH_INFO_TITLE_8_WAIT="RO8 standby"
DST_BUDOKAI_MAJORMATCH_INFO_TITLE_END="Awards"
DST_BUDOKAI_MAJORMATCH_INFO_TITLE_FINAL="Finals"
DST_BUDOKAI_MAJORMATCH_INFO_TITLE_SEMIFINAL="Semi-finals"
DST_BUDOKAI_MAJORMATCH_INFO_TITLE_SEMIFINAL_WAIT="Semi-final standby"
DST_BUDOKAI_MINORMATCH_ALIVE_TITLE="Alive"
DST_BUDOKAI_MINORMATCH_ENEMY_NAME_TITLE="Name"
DST_BUDOKAI_MINORMATCH_INFO_TITLE="Battle Royale"
DST_BUDOKAI_MINORMATCH_INFO_TITLE_BATTLE="Qualifiers"
DST_BUDOKAI_MINORMATCH_INFO_TITLE_WAIT="Qualifier standby"
DST_BUDOKAI_MINORMATCH_KOCOUNTER_TITLE="K.O"
DST_BUDOKAI_MINORMATCH_TOTAL_TITLE="Total"
DST_BUDOKAI_MINOR_DICE_READY_NOTIFY="%u ready up"
DST_BUDOKAI_MINOR_DICE_SCORE_NOTIFY="%s Score Results %u"
DST_BUDOKAI_MINOR_DICE_SCORE_NOTIFY_TEAM="%s Team Result ( %u )"
DST_BUDOKAI_MINOR_DICE_WIN_NOTIFY="%s Won %u"
DST_BUDOKAI_MINOR_DICE_WIN_NOTIFY_TEAM="%s team has won %u"
DST_BUDOKAI_MINOR_KILL_ANNOUNCE="%s Killed %s "
DST_BUDOKAI_MINOR_WAIT_FOR_DICE_NOTIFY="Please Wait I'm Busy"
DST_BUDOKAI_MINOR_WAIT_FOR_KO="%d seconds to KO"
DST_BUDOKAI_MINOR_WAIT_FOR_RINGOUT="%d seconds to ring out"
DST_BUDOKAI_MUDOSA_INFO="Mudosa Village %d"
DST_BUDOKAI_MUDOSA_TELEPOR_INFO="TP INFO: 200,000 Zeni Fee"
DST_BUDOKAI_NEWS_BUTTON_INDIREQ="Join Solo"
DST_BUDOKAI_NEWS_BUTTON_TEAMREQ="Join Team"
DST_BUDOKAI_NEWS_BUTTON_TICKET="Receipt"
DST_BUDOKAI_NEWS_BUTTON_TOURNAMENT="Tournament"
DST_BUDOKAI_NEWS_CAN_ONLY_LEADER="Party Leader Apply"
DST_BUDOKAI_NEWS_HEADLINE_AWARD="Budokai is closed!"
DST_BUDOKAI_NEWS_HEADLINE_DOJORECOMMEND="Best Dojo"
DST_BUDOKAI_NEWS_HEADLINE_MAJOR="Tournament Qualifiers"
DST_BUDOKAI_NEWS_HEADLINE_OPENNOTICE="Budokai is open!"
DST_BUDOKAI_NEWS_HEADLINE_REGISTER="Register now!"
DST_BUDOKAI_NEWS_INFO_INDI_STATE="You are a solo %s"
DST_BUDOKAI_NEWS_INFO_STATE_FINAL_MATCH="%s final match started."
DST_BUDOKAI_NEWS_INFO_STATE_MAJOR_MATCH="%s %s in progress."
DST_BUDOKAI_NEWS_INFO_STATE_MATCH_END="%s is over."
DST_BUDOKAI_NEWS_INFO_STATE_MINOR_MATCH="%s qualifiers started."
DST_BUDOKAI_NEWS_INFO_STATE_REGISTER="%s registration ends in %s."
DST_BUDOKAI_NEWS_INFO_STATE_SEMIFINAL_MATCH="%s semi-finals started."
DST_BUDOKAI_NEWS_INFO_STATE_WAIT_FINAL_MATCH="%s finals start in %s."
DST_BUDOKAI_NEWS_INFO_STATE_WAIT_MAJOR_MATCH="%s %s will start in %s."
DST_BUDOKAI_NEWS_INFO_STATE_WAIT_MINOR_MATCH="%s qualifiers will start in %s."
DST_BUDOKAI_NEWS_INFO_STATE_WAIT_SEMIFINAL_MATCH="%s semi-finals start in %s."
DST_BUDOKAI_NEWS_INFO_TEAM_STATE="You're in a Party %s"
DST_BUDOKAI_NEWS_MUDOSA_ENTER_LEFT_TIME="Entry Time: %s left."
DST_BUDOKAI_NEWS_NEXT_MUDOSA_OPEN="Next round: %s"
DST_BUDOKAI_NEWS_NOPLAN="Undecided"
DST_BUDOKAI_NEWS_NOTICE_GUIDE_DOJO_TITLE="Dojo"
DST_BUDOKAI_NEWS_NOTICE_GUIDE_MINOR_TITLE="Application Period"
DST_BUDOKAI_NEWS_NOTICE_GUIDE_TIME="%d months %d days %s %d:%02d"
DST_BUDOKAI_NEWS_NOTICE_GUIDE_TIME_AM="AM"
DST_BUDOKAI_NEWS_NOTICE_GUIDE_TIME_FULL="%s ~ %s"
DST_BUDOKAI_NEWS_NOTICE_GUIDE_TIME_PM="PM"
DST_BUDOKAI_NEWS_NOTICE_INDI_REGISTER="Sign Up"
DST_BUDOKAI_NEWS_NOTICE_INDI_STATE="State Info"
DST_BUDOKAI_NEWS_NOTICE_INDI_WINNER="1st/2nd"
DST_BUDOKAI_NEWS_NOTICE_NOT_PRIZE="No Winners"
DST_BUDOKAI_NEWS_NOTICE_PRIZE_SECOND_WINNER="2nd: %s"
DST_BUDOKAI_NEWS_NOTICE_PRIZE_TEAM_SECOND_WINNER="2nd: %s"
DST_BUDOKAI_NEWS_NOTICE_PRIZE_TEAM_WINNER="1st: %s"
DST_BUDOKAI_NEWS_NOTICE_PRIZE_WINNER="1st: %s"
DST_BUDOKAI_NEWS_NOTICE_TEAM_REGISTER="Team Sign Up"
DST_BUDOKAI_NEWS_NOTICE_TEAM_STATE="Team State Info"
DST_BUDOKAI_NEWS_NOTICE_TEAM_WINNER="Team 1st/2nd"
DST_BUDOKAI_NEWS_NOTICE_WAIT_GUIDE="%s duration: %s"
DST_BUDOKAI_NEWS_NTOCIE_NOT_PRIZE_TEAM="No Winning Party"
DST_BUDOKAI_NEWS_TITLE="Tenkaichi Budokai Nr. %d "
DST_BUDOKAI_NEWS_YOU_ARE_NOT_ENTRANT="You have not signed up."
DST_BUDOKAI_NOTICE_DATA_LOADING="Loading Data..."
DST_BUDOKAI_NOTICE_DOJO_RECOMMEND="%s recommendations."
DST_BUDOKAI_NOTICE_END="%s %s Awards in progress."
DST_BUDOKAI_NOTICE_FINAL_MATCH="%s %s finals have started."
DST_BUDOKAI_NOTICE_MAJOR_MATCH="%s %s %s has begun."
DST_BUDOKAI_NOTICE_MINOR_MATCH="%s %s qualifiers have started."
DST_BUDOKAI_NOTICE_OPEN_NOTICE="Tournament %s is starting."
DST_BUDOKAI_NOTICE_PARTY="Party"
DST_BUDOKAI_NOTICE_REGISTER="%s %s apply for qualifiers."
DST_BUDOKAI_NOTICE_SEMIFINAL_MATCH="%s %s semi-finals have started."
DST_BUDOKAI_NOTICE_SOLO="Solo"
DST_BUDOKAI_NOTICE_WAIT_FINAL_MATCH="%s %s finals will start soon."
DST_BUDOKAI_NOTICE_WAIT_MAJOR_MATCH="%s %s %s will start soon."
DST_BUDOKAI_NOTICE_WAIT_MINOR_MATCH="%s %s qualifiers will start soon."
DST_BUDOKAI_NOTICE_WAIT_SEMIFINAL_MATCH="%s %s semi-finals will start soon."
DST_BUDOKAI_PC_STATE_16_DROPOUT="RO16 contestant"
DST_BUDOKAI_PC_STATE_16_ENTRY="RO16 finalist"
DST_BUDOKAI_PC_STATE_32_DROPOUT="RO32 contestant"
DST_BUDOKAI_PC_STATE_32_ENTRY="RO32 finalist"
DST_BUDOKAI_PC_STATE_8_DROPOUT="RO8 contestant"
DST_BUDOKAI_PC_STATE_8_ENTRY="RO8 finalist"
DST_BUDOKAI_PC_STATE_FINAL_ENTRY="Finalist"
DST_BUDOKAI_PC_STATE_FINAL_WINNER="Winner"
DST_BUDOKAI_PC_STATE_MINOR_APPLICANT="Qualifier"
DST_BUDOKAI_PC_STATE_MINOR_DROPOUT="Contestant"
DST_BUDOKAI_PC_STATE_MINOR_ENTRY="Qualifier finalist"
DST_BUDOKAI_PC_STATE_NONE="N/A"
DST_BUDOKAI_PC_STATE_PRIZE_WINNER="Winner"
DST_BUDOKAI_PC_STATE_SEMIFINAL_ENTRY="Semi-finalist"
DST_BUDOKAI_PC_STATE_SEMIFINAL_WINNER="Runner-up"
DST_BUDOKAI_PROGRESS_MESSAGE_16="RO16"
DST_BUDOKAI_PROGRESS_MESSAGE_32="RO32"
DST_BUDOKAI_PROGRESS_MESSAGE_8="RO8"
DST_BUDOKAI_PROGRESS_MESSAGE_END="All battles have ended."
DST_BUDOKAI_PROGRESS_MESSAGE_FINAL_WAIT_LOSER="Upcoming: Final"
DST_BUDOKAI_PROGRESS_MESSAGE_FINAL_WAIT_LOSER1="Stay & Be Rewarded"
DST_BUDOKAI_PROGRESS_MESSAGE_MATCH_ALL_FINISHED="%s all finished"
DST_BUDOKAI_PROGRESS_MESSAGE_MATCH_BEFORE_10SEC="10s %s goes into the arena"
DST_BUDOKAI_PROGRESS_MESSAGE_MATCH_DECISION_NEXT="%s will continue"
DST_BUDOKAI_PROGRESS_MESSAGE_MATCH_END="%s - %s Battle ended"
DST_BUDOKAI_PROGRESS_MESSAGE_MATCH_LOSER="%s has Lost"
DST_BUDOKAI_PROGRESS_MESSAGE_MATCH_WINNER="%s has Won"
DST_BUDOKAI_PROGRESS_MESSAGE_MINOR="Qualifier"
DST_BUDOKAI_PROGRESS_MESSAGE_MINORMATCH_BEFORE_1MIN="Tournament starts soon"
DST_BUDOKAI_PROGRESS_MESSAGE_MINORMATCH_BEFORE_1MIN2="Registration close soon"
DST_BUDOKAI_PROGRESS_MESSAGE_MINORMATCH_ENTERING="Enter the Tournament"
DST_BUDOKAI_PROGRESS_MESSAGE_MINORMATCH_ENTERING2="Please Join"
DST_BUDOKAI_PROGRESS_MESSAGE_RECEIVE_NEWS="Budokai Announcement"
DST_BUDOKAI_PROGRESS_MESSAGE_SEMI_FINAL_RUNNING="Semi Final On-Going"
DST_BUDOKAI_PROGRESS_MESSAGE_SF="Semi-final"
DST_BUDOKAI_PROGRESS_MESSAGE_START="The Tournament is about to Start!"
DST_BUDOKAI_REGISTER_INFO_TITLE="Registration period"
DST_BUDOKAI_REQUEST_FINAL="Final"
DST_BUDOKAI_REQUEST_MAJOR="Qualification"
DST_BUDOKAI_REQUEST_MINOR="Preliminary"
DST_BUDOKAI_REQUEST_TITLE="Application"
DST_BUDOKAI_REQ_BUTTON_ACCEPT="yes"
DST_BUDOKAI_REQ_BUTTON_CANCEL="no"
DST_BUDOKAI_RESULT_MESSAGE="[font size=""14""color=""000000""]That was a great battle![br][br]You'll be moved out soon!"
DST_BUDOKAI_RESULT_MESSAGE_FINAL="[font size=""14""color=""000000""]What's this? Ladies and gentlemen we finally have a winner![br][br]That was amazing, congratulations!"
DST_BUDOKAI_RESULT_MESSAGE_SEMIFINAL_1="[font size=""14""color=""000000""]What an amazing fight![br][br]It was worth seeing!"
DST_BUDOKAI_RESULT_MESSAGE_SEMIFINAL_2="[font size=""14""color=""000000""]Next fight will start soon.[br][br]I wish you good luck and hope you win!"
DST_BUDOKAI_RESULT_POINT_WINNER_GUIDE="%s team member %s must decide %d : %d."
DST_BUDOKAI_SIDEICON_TITLE="Tenkaichi Budokai"
DST_BUDOKAI_SUCCESS_APPLICATION="%s Application completed."
DST_BUDOKAI_SUCCESS_GUIDE="%s's Number : "
DST_BUDOKAI_SUCCESS_MEMBER="Team"
DST_BUDOKAI_TEAMINFO_CLASS="Class"
DST_BUDOKAI_TEAMINFO_DOJO_RECOMMAND="Leader"
DST_BUDOKAI_TEAMINFO_GUILD_NAME="Guild"
DST_BUDOKAI_TEAMINFO_LEVEL="Level"
DST_BUDOKAI_TEAMINFO_LEVEL_CLASS="Lv.%u %s"
DST_BUDOKAI_TEAMINFO_LEVEL_VALUE="Lv.%u"
DST_BUDOKAI_TEAMINFO_MATCH_NAME_COMMON="%d Elimination Round %u"
DST_BUDOKAI_TEAMINFO_MATCH_NAME_FINAL="Finals"
DST_BUDOKAI_TEAMINFO_MATCH_NAME_SEMIFINAL="Semi Final %u"
DST_BUDOKAI_TEAMINFO_NOT_IN_GUILD="Not in a Guild"
DST_BUDOKAI_TEAMINFO_PRIVATE_RECORD="Battle Ranked"
DST_BUDOKAI_TEAMINFO_RANKING_POINT="World Ranking Points"
DST_BUDOKAI_TEAMINFO_RECORD="Ranked Battle"
DST_BUDOKAI_TEAMINFO_RECORD_DATA="%u I %u W %u L"
DST_BUDOKAI_TEAMINFO_TITLE="Match Info"
DST_BUDOKAI_TEAM_LEAVE_NOTIFY="The leader cancelled the registration."
DST_BUDOKAI_TEAM_MEMBER_LEAVE_NOTIFY="%s Request to cancel."
DST_BUDOKAI_TEAM_REQ_CANCEL="[align = ""center""][font size=""12""color=""f4d762""]Team Registration Cancel[/font][br][br][font size=""10""color=""f36a7c""]Are you sure to Cancel?[/font]"
DST_BUDOKAI_TEAM_REQ_TEAMLEVEL="Level %d"
DST_BUDOKAI_TEAM_REQ_TEAMNAME="Name : "
DST_BUDOKAI_TELEPORT_MSG_MATCH="%s Stadium"
DST_BUDOKAI_TELEPORT_MSG_TBSERVER="Mudosa"
DST_BUDOKAI_TICKET_TITLE="Ticket"
DST_BUDOKAI_TIME_DAY="%d day"
DST_BUDOKAI_TIME_HOUR="%d hour"
DST_BUDOKAI_TIME_MINUTE="%d minute"
DST_BUDOKAI_TIME_SECOND="%d second"
DST_BUDOKAI_TOURNAMENT_A_GROUP="Group A"
DST_BUDOKAI_TOURNAMENT_B_GROUP="Group B"
DST_BUDOKAI_TOURNAMENT_FINAL="Final"
DST_BUDOKAI_TOURNAMENT_INFO_1="Qualifiers will continue."
DST_BUDOKAI_TYPE_ADULT_TITLE="Senior"
DST_BUDOKAI_TYPE_CHILD_TITLE="Kid"
DST_BUFF_ACTIVATE_BUFF_MSG="%s Buff Activated"
DST_BUFF_CAN_NOT_DELETE_SUB_BUFF_MSG="Can't Remove Buff"
DST_BUFF_CAN_NOT_DROP_TEXT="Can't Remove"
DST_BUFF_DEACTIVATE_BUFF_MSG="Buff: %s Disabled"
DST_BUFF_DROP_TEXT="Click icon to disable/enable or remove buff"
DST_BUFF_MB_DELETE_SUB_BUFF_MSG="[align = ""center""][font size=""12""color=""f4d762""]Buff Removal[/font][br][br][font size=""10""color=""269eff""]Remove Buff: %s ?[/font][br][br][font size=""10""color=""f4d762""]INFO: Autopots can't be removed but you can [br]disable/enable them.[/font]"
DST_BUFF_REMAIN_TIME="Cooldown : %s"
DST_BUFF_RESTRICTION="Buff Restriction"
DST_BURN_DEFENCE="Burn Def."
DST_BUS_ASK_GET_OFF="[align = ""center""][font size=""12""color=""f4d762""]Stopping Bus[/font] [br][br][font size=""10""color=""269eff""]Get off before reaching the next stop.[/font][br][br][font size=""10""color=""ffffff""]Get off the Bus?[/font]"
DST_BUS_ASK_GET_ON="Ride Bus?"
DST_BUS_SUCCESS_GET_ON="Paid %u"
DST_CAN_NOT_ALTAR="Can't use Shenron's altar"
DST_CAN_NOT_OPEN_MORE_REGULAR_DIALOG="Too many windows open"
DST_CASH="Cash"
DST_CASH_ITEM="Cash Items"
DST_CAUTION_SIDEICON_TITLE="Warning Messages"
DST_CCBD="CC Dungeon"
DST_CCBD_AGREE_CANCEL_ENTER="Cancel"
DST_CCBD_AGREE_CHALLENGE_STAGE="Floor : %d"
DST_CCBD_AGREE_CHAR_NAME="Name"
DST_CCBD_AGREE_ENTER="Enter"
DST_CCBD_AGREE_READY="Ready"
DST_CCBD_AGREE_STAND_BY="Wait"
DST_CCBD_AGREE_STATE="Status"
DST_CCBD_AGREE_TITLE="Enter"
DST_CCBD_BOARD_CHALLEGNE="Challenge Settings"
DST_CCBD_BOARD_EXPLAIN="[font size = ""7""]Participants who enter CC Battle Dungeon will fight enemies on each floor.[br]Each floor's difficulty is different. Every 5th floor will be a boss floor, and once boss is defeated you have the option to take reward and leave or carry on.[/font][br][font size = ""8"" color = ""f36a7c""]Recommended Level: 50[/font][br][font size = ""8"" color = ""ffff68""]Higher floors give better rewards![/font]"
DST_CCBD_BOARD_INAVLID_ITEM="Invalid Item."
DST_CCBD_BOARD_SETUP="Setup"
DST_CCBD_BOARD_SETUP_COMPLETE="Complete"
DST_CCBD_BOARD_YOU_CAN_ENTER_CCBD="Floor %d can be entered"
DST_CCBD_CANCEL_TOOLIP="Use the menu on the left to leave party."
DST_CCBD_LEAVE_CCBD="[align = ""center""][font size = ""12"" color=""f4d762""]Leave CCBD Dungeon[/font][br][br][font size = ""9"" color=""84cefc""]Current Floor: %d.[/font][br][br][font size = ""10"" color=""f36a7c""]You'll lose all progress[br]and will be moved to the entrance.[/font][br][br][font size = ""9"" color=""f36a7c""]Leave CCBD?[/font][br][br]"
DST_CCBD_REWARD_EXPLAIN="[font size = ""10"" color=""f4d762""]Dungeon Choice Rules[br][/font][font size = ""9"" color=""84cefc""]Reward: [/font][font size = ""9"" color=""ffffff""]Receive item, but leave dungeon.[br][/font][font size = ""9"" color=""84cefc""]Challenge: [/font][font size = ""9"" color=""ffffff""]Continue, but no item yet.[/font]"
DST_CCBD_REWARD_EXPLAIN2="Choose one."
DST_CCBD_REWARD_ITEM="CCBD Awards"
DST_CCBD_REWARD_LAST_EXPLAIN="[font size = ""12"" color=""f4d762""]Dungeon Complete![br][br][/font][font size = ""9"" color=""ffffff""]You have complete the dungeon.[/font][br][br][font size = ""9"" color=""f36a7c""]You will get a reward and[br]will be moved to the entrance.[/font]"
DST_CCBD_REWARD_LAST_LEVEL="Dungeon battle success"
DST_CCBD_REWARD_LEVEL="Floor %d complete"
DST_CCBD_REWARD_MEMBER_SELECT_CHALLENGE_NEXT="[align = ""center""][font size = ""12"" color=""f4d762""]Challenge[/font][br][br][font size = ""9"" color=""f36a7c""]Continue to next floor for better reward?[/font]"
DST_CCBD_REWARD_MEMBER_SELECT_REWARD="[align = ""center""][font size = ""12"" color=""f4d762""]Reward[/font][br][br][font size = ""9"" color=""f36a7c""]Accept the following item?[br]You'll leave the dungeon.[/font]"
DST_CCBD_REWARD_MEMBER_SELECT_REWARD_LAST_STAGE="Congrats! Dungeon Complete"
DST_CCBD_REWARD_SELECT_CHALLENGE="Challenge"
DST_CCBD_REWARD_SELECT_MOVE="Move"
DST_CCBD_REWARD_SELECT_REWARD="Reward"
DST_CCBD_REWARD_STATE_CHALLENGE_NEXT="Challenge"
DST_CCBD_REWARD_STATE_SELECTED_REWARD="Reward"
DST_CCBD_REWARD_STATE_SELECTING="Choosing..."
DST_CCBD_REWARD_TITLE="Selection"
DST_CCBD_REWARD_TITLE_LAST="Reward"
DST_CCBD_STATUS_DISABLE_CHARGE_LPEP="LP/EP recovery disabled"
DST_CCBD_STATUS_DISABLE_GET_EXP="EXP gains disabled"
DST_CCBD_STATUS_DISABLE_ITEM="Consumables disabled"
DST_CCBD_WAIT_AFTER_REWARD="Please Wait."
DST_CHANGE_ITEMBATTLEATTR_ONE_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Edit item[/font][br][br][font size = ""10"" color=""ffffff""]Price: %s Zeni[br]Success Rate: %d%%[/font]"
DST_CHANGE_ITEMBATTLEATTR_TWO_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Edit item[/font][br][br][font size = ""10"" color=""ffffff""]Price: %s Zeni[br]Success Rate: %d%%[br][br]The items attribute gets rewritten.[/font]"
DST_CHARACTER_FAIL_BY_BUDOKAI="Can't join Budokai."
DST_CHARACTER_FAIL_BY_GUILD="Can't Sign"
DST_CHARACTER_NAME_RULE="2-8 Characters"
DST_CHARM_COOLTIME="Cooldown Reduced by %d%%"
DST_CHARM_DROPRATE="Increase Drop Rate by %d%%"
DST_CHARM_EXP="obtain %d%% extra XP"
DST_CHARM_RP_SHARING="Share %d RP"
DST_CHARTITLE_ADD="Title %s acquired."
DST_CHARTITLE_INVALID="Invalid"
DST_CHARTITLE_NOSELECT="Unavailable"
DST_CHARTITLE_NOT_SELECTED="Unavailable."
DST_CHARTITLE_PROVIDE="Title Effect"
DST_CHAR_CAN_CHANGE_CLASS="Need Master Class"
DST_CHAR_GROWN_DOWN="You are a kid!"
DST_CHAR_GROWN_UP="You are an adult!"
DST_CHAR_SERVER_CONNECT_FAIL="[align = ""center""][font size = ""12"" color=""f4d762""]Connection Failed[/font][br][br][font size = ""10"" color=""f36a7c""]Failed to connect to[br]Character Server.[/font][br][br][font size = ""10"" color=""ffffff""]Please try again later.[/font]"
DST_CHAR_SERVER_EXIT="[align = ""center""][font size = ""12"" color=""f4d762""]Log Out[/font][br][br][font size = ""10"" color=""269eff""]Returning to the Lobby.[/font][br][br][font size = ""10"" color=""ffffff""]Do you wish to Log Out?[/font]"
DST_CHAR_TITLE="Title"
DST_CHAT_CAN_SEND_WHISPER_TO_ME="Can't whisper yourself."
DST_CHAT_COMMAND="Command: %s"
DST_CHAT_DISP_COMMAND_FIRST="Top"
DST_CHAT_DISP_COMMAND_LAST="Last"
DST_CHAT_DISP_COMMAND_LOCK="Lock"
DST_CHAT_DISP_COMMAND_NEXT="Down"
DST_CHAT_DISP_COMMAND_PREV="Up"
DST_CHAT_DISP_COMMAND_UNLOCK="Unlock"
DST_CHAT_FAIL_TO_NO_GUILD="Not in a Guild"
DST_CHAT_FAIL_TO_NO_PARTY="Not in a Party"
DST_CHAT_FAIL_TO_USE_WHISPER="To whisper enter [/w ID]."
DST_CHAT_FAIL_TO_WHISPER_NO_TARGET="%s isn't Online"
DST_CHAT_FILTER="Menu"
DST_CHAT_HAVE_NO_USER_TO_REPLY="No User to Reply"
DST_CHAT_HELP_TEXT="[/w ID] : whisper\n[/p] : Party Dialog\n[/g] : Style Dialog\n[/s] : cry\n[/r] : To reply to last whisper"
DST_CHAT_IME_ENG="A"
DST_CHAT_IME_KOR="end"
DST_CHAT_MODE_COMMENT="Reply"
DST_CHAT_MODE_FIND_PARTY="LFP"
DST_CHAT_MODE_FIND_PARTY_EXTEND="LFG: %s"
DST_CHAT_MODE_GENERAL="All"
DST_CHAT_MODE_GUILD="Guild"
DST_CHAT_MODE_GUILD_MASTER="Guild Master"
DST_CHAT_MODE_PARTY="Party"
DST_CHAT_MODE_PARTY_MASTER="Party Master"
DST_CHAT_MODE_SHOUT="Shout"
DST_CHAT_MODE_SYSTEM="System"
DST_CHAT_MODE_TRADE="Trade"
DST_CHAT_MODE_TRADE_EXTEND="Trade: %s"
DST_CHAT_MODE_TYPE="%s: "
DST_CHAT_MODE_WHISPER="Whisper"
DST_CHAT_OPTION_GUI_TITLE="Chat mode"
DST_CHAT_SERVER_CONNECT_FAIL="[align = ""center""]Connection Failed[br][br]Failed to connect to a chat server.[br][br]try again later."
DST_CHAT_SERVER_DISCONNECT="Chat disconnected."
DST_CHAT_SERVER_RECONNECT="Chat connected."
DST_CHAT_SERVER_TITLE="Chat Server Notification"
DST_CHAT_SHORT_CUT_COMMAND="Help"
DST_CHAT_SHORT_CUT_FIND_PARTY="/f "
DST_CHAT_SHORT_CUT_FIND_PARTY_LOCAL="/f"
DST_CHAT_SHORT_CUT_GENERAL="/n "
DST_CHAT_SHORT_CUT_GENERAL_LOCAL="/n"
DST_CHAT_SHORT_CUT_GUILD="/g "
DST_CHAT_SHORT_CUT_GUILD_LOCAL="/g"
DST_CHAT_SHORT_CUT_GUILD_LOCAL_NOTIFY="/c"
DST_CHAT_SHORT_CUT_GUILD_NOTIFY="/c "
DST_CHAT_SHORT_CUT_HELP="/?"
DST_CHAT_SHORT_CUT_INVITE_PARTY="/invite "
DST_CHAT_SHORT_CUT_LAST_WHISPER_USER="/r "
DST_CHAT_SHORT_CUT_LAST_WHISPER_USER_LOCAL="/r"
DST_CHAT_SHORT_CUT_PARTY="/p "
DST_CHAT_SHORT_CUT_PARTY_LOCAL="/p"
DST_CHAT_SHORT_CUT_PARTY_LOCAL_NOTIFY="/z"
DST_CHAT_SHORT_CUT_PARTY_NOTIFY="/z "
DST_CHAT_SHORT_CUT_SHOUT="/s "
DST_CHAT_SHORT_CUT_SHOUT_LOCAL="/s"
DST_CHAT_SHORT_CUT_TRADE="/t "
DST_CHAT_SHORT_CUT_TRADE_LOCAL="/t"
DST_CHAT_SHORT_CUT_WHISPER="/w "
DST_CHAT_SHORT_CUT_WHISPER_LOCAL="/w"
DST_CHAT_TOO_FAST_INPUT_MESSAGE="Don't Spam"
DST_CHAT_TOO_FAST_INPUT_MESSAGE_ON_SHOUT="Don't Spam the Shout"
DST_CHAT_TOO_FAST_INPUT_MESSAGE_ON_TIME_CHECK="Chatting Too Fast"
DST_CHAT_TYPE_GENERAL="[%s] %s: %s"
DST_CHAT_TYPE_WHISPER_AVATER="[%s] From '%s': %s"
DST_CHAT_TYPE_WHISPER_TARGET="[%s] To '%s': %s"
DST_CHAT_WHISPER="%s %s: "
DST_CHECKING_COMMUNITY_SERVER="[align = ""center""]Community Server[br][br]Dragon Ball Online Community Server[br]is being checked[br][br]You can access the game later."
DST_CHECKING_GAME_SERVER="[align = ""center""]Game Check[br][br]Dragon Ball Online is Offline.[br][br]You can access the game later."
DST_CINEMATIC_EXPLAIN_ESCKEY="Hit ESC to skip"
DST_CINEMATIC_USER_CANCLE="%s skipped the movie."
DST_CITYMAP_DEADMINE="HoiPoi Mine"
DST_CITYMAP_DRAGON="Dragon Cave"
DST_CITYMAP_FEARLAND="Fearland"
DST_CITYMAP_HEADOFFICE="Red Pants HQ"
DST_CITYMAP_RUIN="Red Ribbon HQ"
DST_CITYMAP_WATERFALL="Aria Waterfall Cave"
DST_CITYMAP_WATERWAY="Underground Waterway"
DST_CITYMAP_WESTCITY="West City"
DST_CITYMAP_YAHOI="Yahoi Fortress"
DST_CLAW="Claws"
DST_CLIENT_DATA_IS_CRACK="[align = ""center""]Error[br][br]Client error, Re-run the Launcher.[br][br]Sorry! (Disconnecting)"
DST_CLUB="Club"
DST_COIN="Coins"
DST_COMMERCIAL_BUDOKAI="%dst Tournament Winner: %s %s %s %s."
DST_COMMERCIAL_CANT_EXTEND_TERM_LIMETED_ITEM="Can't Extend"
DST_COMMERCIAL_DAILY_TMQRECORD="New TMQ Daily Record: %s TMQ %s mode %s by %s."
DST_COMMERCIAL_GUILD_NAME_CHANGE_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Guild Rename[/font][br][br][font size = ""10"" color=""269eff""]You're renaming the Guild.[/font][br][br][size = ""10"" color=""f36a7c""]Renaming takes[br]%s 1day.[/font][br][br][font size = ""10"" color=""ffffff""]Rename the Guild?[/font]"
DST_COMMERCIAL_HAVE_NOT_CRESCENT_POPO="Missing Popo Stone."
DST_COMMERCIAL_HAVE_NOT_GUILD_NAME_CHANGE="Guild Name Not Changed"
DST_COMMERCIAL_ITEMMIX="%s created a %s."
DST_COMMERCIAL_ITEMUPGRADE="%s upgraded %s to + %d."
DST_COMMERCIAL_MB_CAPSULEKIT_BUY_BTN="Buy"
DST_COMMERCIAL_MB_CAPSULEKIT_ITEM_SELECT="[align = ""center""][font size = ""12"" color=""f4d762""]Move Item[/font][br][br][font size = ""10"" color=""269eff""]You can move the item or[br]increase durability.[/font][br][br][font size = ""10"" color=""f36a7c""]To increase durability you need[br]the same item in your inventory.[/font][br][br][font size = ""10"" color=""ffffff""]You want increase the durability?[/font]"
DST_COMMERCIAL_MB_CAPSULEKIT_ITEM_TERM_EXTENTION="[align = ""center""][font size = ""12"" color=""f4d762""]Buy Item[/font][br][br][font size = ""10"" color=""269eff""]You can buy the item or[br]increase durability.[/font][br][br][font size = ""10"" color=""f36a7c""]To increase durability you need[br]the same item in your inventory.[/font][br][br][font size = ""10"" color=""ffffff""]You want increase the durability?[/font]"
DST_COMMERCIAL_MB_CAPSULEKIT_ITEM_TERM_EXTENTION_BTN="Renewal"
DST_COMMERCIAL_MB_CAPSULEKIT_MOVE_BTN="Move"
DST_COMMERCIAL_MB_CAPSULEKIT_TERM_EXTENTION_BTN="Renewal"
DST_COMMERCIAL_MB_DELETE_TERM_LIMETED_ITEM_BTN="Discard"
DST_COMMERCIAL_MB_DELETE_TERM_LIMETED_ITEM_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Discard item[/font][br][br][font size = ""10"" color=""f36a7c""]%s[br]This item period expires.[br]Are you sure you want discard it,[br]without extending the period?[/font][br][br][font size = ""10"" color=""269eff""]Renewal is possible without discard.[/font][br][br][font size = ""10"" color=""ffffff""]Do you really want to discard?[/font]"
DST_COMMERCIAL_MB_DIRECT_BUY_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Quick Buy item[/font][br][br][font size = ""10"" color=""269eff""]You can purchase the item right away.[/font][br][br][font size = ""10"" color=""f4d762""]If the same kind of item is already[br]in your inventory the durability got[br]renewed.[/font][br][br][font size = ""10"" color=""f36a7c""]Item: %s[br]Cost Zeni: %d[/font][br][br][font size = ""10"" color=""ffffff""]Do you want to buy it?[/font]"
DST_COMMERCIAL_MB_DIRECT_BUY_NETPY_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Quick Buy item[/font][br][br][font size = ""10"" color=""269eff""]You can purchase the item right away.[/font][br][br][font size = ""10"" color=""f4d762""]If the same kind of item is already[br]in your inventory the durability got[br]renewed.[/font][br][br][font size = ""10"" color=""f36a7c""]Item: %s[br]Cost Tokken: %d[/font][br][br][font size = ""10"" color=""ffffff""]Do you want to buy it?[/font]"
DST_COMMERCIAL_MB_ITEM_BUY_CONFIRM_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Mobile item[/font][br][br][font size = ""10"" color=""269eff""]The item will got in your inventory.[/font][br][br][font size = ""10"" color=""f36a7c""]If the same kind of item is already[br]in your inventory the durability got[br]renewed.[/font][br][br][font size = ""10"" color=""ffffff""]Are you sure to buy the item?[/font]"
DST_COMMERCIAL_MB_ITEM_BUY_MSG="[align = ""center""]Do you want to buy this item?"
DST_COMMERCIAL_MB_ITEM_MOVE_CONFIRM_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Confirm Move[/font][br][br][font size = ""10"" color=""269eff""]The selected items will be moved to the inventory.[/font][br][br][font size = ""10"" color=""ffffff""]Move your items?[/font]"
DST_COMMERCIAL_MB_ITEM_TAKE_CONFIRM_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Moving items[/font][br][br][font size = ""10"" color=""269eff""]Move the selected item to the capsule kit.[/font][br][br][font size = ""10"" color=""f36a7c""]When moved into the capsule kit[br]and the same item already exists[br]the durability get increased.[/font][br][br][font size = ""10"" color=""ffffff""]Are you sure you want to move an item?[/font]"
DST_COMMERCIAL_MB_ITEM_TERM_EXTENTION_BTN="Renewal"
DST_COMMERCIAL_MB_QUICK_TELEPORT_SLOT_DELETE="[align = ""center""][font size=""12""color=""f4d762""]Teleport[/font][br][br][font size=""10""color=""ffffff""]Delete this Slot?[/font]"
DST_COMMERCIAL_MB_QUICK_TELEPORT_SLOT_MOVE="[align = ""center""][font size=""12""color=""f4d762""]Teleport[/font][br][br][font size=""10""color=""ffffff""]Teleport to saved location?[/font]"
DST_COMMERCIAL_MB_QUICK_TELEPORT_SLOT_OVERWRITE="[align = ""center""][font size=""12""color=""f4d762""]Teleport[/font][br][br][font size=""10""color=""ffffff""]Overwrite this Slot?[/font]"
DST_COMMERCIAL_MB_QUICK_TELEPORT_SLOT_WRITE="[align = ""center""][font size=""12""color=""f4d762""]Teleport[/font][br][br][font size=""10""color=""ffffff""]Save location to slot?[/font]"
DST_COMMERCIAL_MB_TERM_EXTENTION="[align = ""center""][font size = ""12"" color=""f4d762""]Item Expiration[/font][br][br][font size = ""10"" color=""269eff""]The item's time limit has expired.[/font][/font][br][br][font size = ""10"" color=""ffffff""]Pay to extend it's use?[/font]"
DST_COMMERCIAL_MB_TERM_EXTENTION_BTN="Renewal"
DST_COMMERCIAL_MB_TERM_OR_BUY_SELECT_CONFIRM_BTN="Renewal"
DST_COMMERCIAL_MB_TERM_OR_BUY_SELECT_CONFIRM_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Renew Item[/font][br][br][font size = ""10"" color=""ffffff""]Renew the item?[/font]"
DST_COMMERCIAL_MB_UPDATE_TERM_LIMETED_ITEM_BTN="Renew"
DST_COMMERCIAL_MB_UPDATE_TERM_LIMETED_ITEM_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Renew Item[/font][br][br][font size = ""10"" color=""269eff""]You can extend the duration of the item.[/font][br][br][font size = ""10"" color=""f4d762""]Period of %s has expired.[br]It can be extended.[/font][br][br][font size = ""10"" color=""ffffff""]Purchase the extension now?[/font]"
DST_COMMERCIAL_MB_USE_TERM_LIMETED_ITEM_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]Renew Item[/font][br][br][font size = ""10"" color=""269eff""]You can extend the duration of the item.[/font][br][br][font size = ""10"" color=""f4d762""]Period of %s has expired.[br]It can be extended.[/font][br][br][font size = ""10"" color=""ffffff""]Purchase the extension now?[/font]"
DST_COMMERCIAL_NO_EXIST_TERM_LIMETED_ITEM="Can't extend"
DST_COMMERCIAL_REFILL_CASH="Charge"
DST_COMMERCIAL_SKILL_POINT_RESET_MSG="[align = ""center""]SP Reset[br][br]All Skills will be Reset[br][br]Use Item: %s [br]SP Saved: %u[br]Refund: 120,000 Zeni [br][br]Learn skill[br]Refund Zeni for all that you relearn[br]No SP needed for Reset.[br][br]Reset SP[br]"
DST_COMMERCIAL_SKILL_POINT_RESET_PLUS_MSG="[align = ""center""][font size = ""12"" color=""f4d762""]SP Reset[/font][br][br][font size = ""10"" color=""269eff""]All Skills will reset.[/font][br][br][font size = ""10"" color=""f36a7c""]Item used: %s[/font][br][font size = ""10"" color=""f4d762""]Saved SP: %u[/font][br][br][font size = ""10"" color=""f36a7c""]Skills without SP don't reset.[/font][br][br][font size = ""10"" color=""ffffff""]Reset Skills now?[font][br] "
DST_COMMERCIAL_TERM_LIMETED_ITEM_EXPIRE="%s Expired and Use is Suspended"
DST_COMMERCIAL_TERM_LIMITED_ITEM_WARNING_MSG="%s is about to expire."
DST_COMMERCIAL_TMQRECORD="New TMQ Record: %s TMQ %s mode %s by %s."
DST_COMMERCIAL_USE_CRESCENT_POPO="Popostone Used"
DST_COMMERCIAL_USE_GUILD_NAME_CHANGE_ITEM="Guild Name Changed"
DST_COMMERCIAL_USE_SKILL_POINT_RESET_ITEM="Item used to reset SP"
DST_COMMERCIAL_USE_TERM_BUY_DURATION="Renewal"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_ADD_TIME="Add Time"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_BUY_Q1="Extend Time?"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_CASH_BUY_WARN_DESC1="This item can be Extended"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_CASH_EXTEND_Q="Extend the Item?"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_CONSUME_CASH="CC Cash cost"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_CONSUME_JENNY="Zeni Used"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_CONSUME_NETPHY="Token used"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_EXTEND_Q="Extend Item?"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_INFO="Remaining Time %s"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_INFO_BELOW_HOUR="Less Than 1 Hour"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_OWNED_CASH="CC Cash owned"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_OWNED_JENNY="Zeni Owned"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_OWNED_NETPHY="Tokens owned"
DST_COMMERCIAL_USE_TERM_LIMETED_ITEM_REMIAN_TIME="Remaining time"
DST_COMMERCIAL_USE_TERM_LIMITED_ITEM_BUY_SELECT="Choose Item"
DST_COMMERCIAL_USE_TERM_LIMITED_ITEM_BUY_TITLE="Buy"
DST_COMMERCIAL_USE_TERM_LIMITED_ITEM_DURATION="Duration"
DST_COMMERCIAL_USE_TERM_LIMITED_ITEM_EXPIRED_INFO="Expired"
DST_COMMERCIAL_USE_TERM_LIMITED_ITEM_TITLE="Renew"
DST_COMMERCIAL_WAGU1ST="%s got a %s from the Wagu Machine"
DST_COMMON_WAREHOUSE_ADD_DURATION="Share Guild Warehouse %dday %dhour extended"
DST_COMMON_WAREHOUSE_EXPIRED="Guild Warehouse Expired"
DST_COMMON_WAREHOUSE_REMAIN_TIME="Remaining: "
DST_COMMUNITY_NAME="Guild"
DST_COMMU_TARGET_FRIEND="Friends"
DST_COMMU_TARGET_GUILD="Guild"
DST_COMMU_TARGET_PARTY="Party"
DST_CONFIRM_LEAVE_CCBD_TO_DOJO_SCRAMBLE="You'll leave the dungeon and party"
DST_CONFIRM_LEAVE_CCBD_TO_OTHER_ONE="You'll leave the dungeon and party"
DST_CONNECTSHOP_TITLE="Remote Stores"
DST_CONNECT_MAILBOX="Mailbox Access"
DST_CONTRACT_ACCEPT="Accept"
DST_CONTRACT_NOT_ACCEPT="Reject"
DST_CONTRACT_PLEASE_READ="Accept"
DST_CONTRACT_TITLE="Game Policies"
DST_CONTROL_HELPWND_TITLE="See Instruction"
DST_COSTUME_SHOP_ITEMSWAP_BUY_CONFIRM="[align = ""center""][font size = ""12"" color = ""f4d762""]%s[/font][br][br][font size = ""10"" color = ""ffffff""]You are going to buy [/font][font size = ""10"" color = ""f4d762""]%s x %d[/font][font size = ""10"" color = ""ffffff""]Are you sure about this?[/font][/align]"
DST_COSTUME_SHOP_NEED_MORE_COSTUME_COIN="Not enough COSTUME Coin"
DST_COSTUME_SHOP_TITLE_NAME="Custom Store"
DST_CRANE_ROSHI="Crane Hermit"
DST_DARK_WARRIOR="Dark Warrior"
DST_DATA_LOADING="Loading"
DST_DAY="Day"
DST_DBC_ALREADY_USE_ALTAR="The altar is in use."
DST_DBC_COLLECT_COMPLETE="Dragon Ball Rewards"
DST_DBC_DRAGONBALL_NOT_FOUND="Dragon Ball not found."
DST_DBC_ITEM_BACK="Return"
DST_DBC_ITEM_CONFIRM="Do you want this item?"
DST_DBC_ITEM_OK="Ok"
DST_DBC_KEYWORD="Order"
DST_DBC_NOT_DRAGONBALL="Not a Dragon Ball"
DST_DBC_NOT_ENOUGH="Missing a Dragon Ball"
DST_DBC_NOT_KEYWORD="Enter Text to Summon Shenron"
DST_DBC_NOT_SAME="Check Dragon Ball"
DST_DBC_NOT_SAME_NUMBER="Double Number"
DST_DBC_NO_SEASON="Dragon Ball Collection Period isn't in progress"
DST_DBC_REWARD_COMMENT="All Dragon Balls collected, make a wish."
DST_DBC_SCRAMBLE_CANNOT_REWARD_SEASON_IS_END="Scramble has Ended, Please wait for the next Event"
DST_DBC_SEASON="Dragon Ball Collection Period is in progress"
DST_DBC_TIME_LIMIT="Limited Time"
DST_DELETE="Delete"
DST_DELIBERATION_RANK_FIRST_ENTER_GAME_MESSAGE_WARING_1="Long term playtime may be harmful to your health. You should take regular breaks."
DST_DELIBERATION_RANK_MESSAGE_0="Since the start, %d time has elapsed."
DST_DELIBERATION_RANK_MESSAGE_1="You have played for 1 Hour"
DST_DELIBERATION_RANK_MESSAGE_2="You have played for 2 Hours"
DST_DELIBERATION_RANK_MESSAGE_3="You have played for 3 Hours"
DST_DELIBERATION_RANK_MESSAGE_4="You have played for 4 Hours"
DST_DELIBERATION_RANK_MESSAGE_5="You have played for 5 Hours"
DST_DELIBERATION_RANK_MESSAGE_LASTMSG="Excessive play can disturb their daily life."
DST_DELIBERATION_RANK_MESSAGE_WARING_1="You should take a break"
DST_DELIBERATION_RANK_TEXT_IN_LOGIN="Your need to be at least 12 years old to play this game."
DST_DENDEN_HEALER="Dende Priest"
DST_DIALOG_MODE_CHAT_RESIZING="Chat Resize"
DST_DIALOG_MODE_ITEM_IDENTIFICATION="Select Items"
DST_DIALOG_MODE_ITEM_REPAIR="Item(s) Repaired"
DST_DIALOG_MODE_NARRATION="Please Wait while I'm on the bot check"
DST_DICE_BUDOKAI_MINOR_EXPLAIN="The Dice will Roll"
DST_DICE_EXPLAIN="1-99 will Show"
DST_DICE_EXPLAIN2="Click on the Dice"
DST_DICE_RESULT="%s(dice) :%s"
DST_DISABLE="Not"
DST_DISASSEMBLE_ALREADY_DISASSEMBLING="Already decomposed"
DST_DISASSEMBLE_ALREADY_REGIST_TARGET="Item already Registered"
DST_DISASSEMBLE_CAN_NOT_FIND_TARGET="Register to degrade target item"
DST_DISASSEMBLE_CLOSE="Close"
DST_DISASSEMBLE_EXCUTE="Disassemble"
DST_DISASSEMBLE_GET_MATERIAL="Get Materials"
DST_DISASSEMBLE_GRADE_ALRAM="[align = ""center""][font size = ""12"" color=""f4d762""]Disassemble items[/font][br][br][font size = ""10"" color=""ffffff""]Are you sure you want to disassemble[br]the enhanced item?[/font][br][br][font size = ""10"" color=""dd0010""]It can't be recovered.[br][br][/font]"
DST_DISASSEMBLE_MATERIAL_LEVEL="Level"
DST_DISASSEMBLE_MATERIAL_MAX_CLASS="Max rating"
DST_DISASSEMBLE_MATERIAL_MAX_CLASS_RATE="Chances of obtaining the maximum rating:%.2f%%"
DST_DISASSEMBLE_MATERIAL_TYPE="Kind"
DST_DISASSEMBLE_MATERIAL_TYPE_ETC="Other"
DST_DISASSEMBLE_MATERIAL_TYPE_FABRIC="Fabric"
DST_DISASSEMBLE_MATERIAL_TYPE_METAL="Metal"
DST_DISASSEMBLE_MATERIAL_TYPE_SKIN="Skin"
DST_DISASSEMBLE_MATERIAL_TYPE_STONE="Stone"
DST_DISASSEMBLE_MATERIAL_TYPE_WOOD="Wood"
DST_DISASSEMBLE_NEGATIVE="Not Converted"
DST_DISASSEMBLE_ONLY_EQUIP_ITEM="Can't be disassembled"
DST_DISASSEMBLE_SUCCESS="Disassemble succeed."
DST_DISASSEMBLE_TARGET="Target disassemble"
DST_DISASSEMBLE_TITLE="Material Degradation"
DST_DISCARD_BTN="Trash"
DST_DOGI_ASK_APPLY_CHANGE="[align =""center""][font size=""12""color=""f4d762""]Uniform dyeing[/font][br][br][font size=""10""color=""ffffff""]Would you like to end uniform staining?[/font]"
DST_DOGI_CHANGED="The color has changed."
DST_DOGI_COLOR="Color"
DST_DOGI_EXPAIN_DYE="Can't show a preview"
DST_DOGI_MUST_REGI_DOGI_SLOT="Register the dye."
DST_DOGI_ONLY_REGISTER_DYE_ITEM="Only registered dye items."
DST_DOGI_PREVIEW="Preview"
DST_DOGI_SETUP="Dyeing"
DST_DOGI_YOU_MUST_GET_DOGI_CHANGE_FUNCTION="Make sure that you've permission."
DST_DOGI_YOU_MUST_GET_DOGI_FUNCTION="Make sure that you've permission."
DST_DOGI_YOU_MUST_GET_DOJO_DOGI_CHANGE_FUNCTION="Make sure that you've permission."
DST_DOGI_YOU_MUST_GET_DOJO_DOGI_FUNCTION="Make sure that you've permission."
DST_DOJO="Dojo"
DST_DOJO_ACCEPTED_SCRAMBLE="Dojo Scramble Accept"
DST_DOJO_ACCOUNT_AMOUNT="Total"
DST_DOJO_ACCOUNT_BALANCE="Balance"
DST_DOJO_ACCOUNT_EXPENDITURE="Usage"
DST_DOJO_ACCOUNT_ITEM="For"
DST_DOJO_ACCOUNT_TYPE_BATTLE_INCOME="Battle Deposit"
DST_DOJO_ACCOUNT_TYPE_BATTLE_OUTCOME="Battle Withdraw"
DST_DOJO_ACCOUNT_TYPE_LEADER_INCOME="Deposit"
DST_DOJO_ACCOUNT_TYPE_LEADER_OUTCOME="Withdraw"
DST_DOJO_ACCOUNT_TYPE_VILLAGE_INCOME="Donate"
DST_DOJO_ACCOUNT_WAREHOUSE="Guild Bank"
DST_DOJO_ADD_FUNCTION="[align = ""center""][font size = ""12"" color=""f4d762""]%s[/font][br][br][font size = ""10"" color=""269eff""]Get more benefits from more features.[/font][br][br][font size = ""10"" color=""ffffff""]Requirements:[/font][br][br][font size = ""10"" color=""f36a7c""]Points needed: %d [br]Zeni: %s[/font][br][br][font size = ""10"" color=""ffffff""]Add Feature?[/font]"
DST_DOJO_ADD_FUNCTION_NOTIFY_TO_MASTER="[align = ""center""][font size = ""12"" color=""f4d762""]Change[/font][br][br][font size = ""10"" color=""269eff""]Successful![/font][br][br]font size = ""10"" color=""ffffff""]Changes:[/font][br][br][font size = ""10"" color=""f4d762""]Feature: %s[/font]"
DST_DOJO_ADD_FUNCTION_NOTIFY_TO_MEMBER="Dojo Feature Changed."
DST_DOJO_ADD_TENKAI_SEED="[align = ""center""][font size = ""12"" color=""f4d762""]Tournament Players[/font][br][br][font size = ""10"" color=""269eff""]Players who prove to be the best.[br]Will go to the 32 qualification spots[br]Fight to Qualify.[/font][br][br][font size = ""10"" color=""ffffff""]All players[br]Check the following:[/font][br][br][font size = ""10"" color=""f36a7c""]This is the best Tournament[br]in the world.[/font][br][br][font size = ""10"" color=""ffffff""]So you better make sure[br]You're here![/font]"
DST_DOJO_ASK_ESTABLISHMENT="[align = ""center""][font size = ""12"" color=""f4d762""]Dojo Creation[/font][br][br][font size = ""10"" color=""269eff""]Dojo Creation[br]The members in the Dojo[br]are responsible to[br]keep the Dojo safe.[br][br]When the Dojo is made[br]you get special content and benefits.[/font][br][br][font size = ""10"" color=""ffffff""]To get a Dojo:[/font][br][br][font size = ""10"" color=""f36a7c""]Dojo Ownership[br](buy with points)[/font][br][br][font size = ""10"" color=""ffffff""]Buy a Dojo?[/font]"
DST_DOJO_ASK_SCRAMBLE="Dojo Scramble"
DST_DOJO_ASK_UPGRAGE_WITH_ZENNY="[align = ""center""][font size = ""12"" color=""f4d762""]Dojo Upgrade[/font][br][br][font size = ""10"" color=""269eff""]Upgrade Dojo[br]If management upgrade[br]You can add special features[/font][br][br][font size = ""10"" color=""ffffff""]Click ok to pay[/font][br][br]font size = ""10"" color=""f36a7c""]Zeni: %s[/font][br][br][font size = ""10"" color=""ffffff""]Upgrade Dojo?[/font]"
DST_DOJO_ASK_UPGRAGE_WITH_ZENNY_AND_HOIPOI="[align = ""center""][font size = ""12"" color=""f4d762""]Dojo Upgrade[/font][br][br][font size = ""10"" color=""269eff""]Upgrade Dojo[br]If management upgrade[br]You can add special features.[/font][br][br][font size = ""10"" color=""ffffff""]Click ok to use the item.[/font][br][br][font size = ""10"" color=""f36a7c""]Zeni: %s [br]Items : HoiPoi %d [/font][br][br][font size = ""10"" color=""ffffff""]Upgrade Dojo?[/font]"
DST_DOJO_BATTLE_APPLICATION_FOR_BATTLE="Apply"
DST_DOJO_BATTLE_DUEL_DEFFENCE_PLAYER="Def"
DST_DOJO_BATTLE_DULE_OFFENCE_PLAYER="Duel"
DST_DOJO_BATTLE_SCRAMBLE_OFFENCE_PLAYER="Scramble"
DST_DOJO_CAN_NOT_UPGRADE_BECAUSE_MAX_LEVEL="Max Level"
DST_DOJO_CAN_NOT_UPGRADE_BECAUSE_NEED_ITEM="Need Item"
DST_DOJO_CAN_NOT_UPGRADE_BECAUSE_NEED_MORE_ITEM="Need More Items"
DST_DOJO_HAVE_NOT_DOJO="No Dojo"
DST_DOJO_INFO="Dojo Info"
DST_DOJO_INFO_BATTLE="Battle"
DST_DOJO_INFO_CITY_NAME="City name"
DST_DOJO_INFO_DOJO_INFO="Dojo Info"
DST_DOJO_INFO_DOJO_LEVEL="Dojo Lv."
DST_DOJO_INFO_DOJO_NAME="Dojo Name"
DST_DOJO_INFO_GUILD_NAME="Guild Name"
DST_DOJO_INFO_GUILD_NOTICE="Guild Note"
DST_DOJO_INFO_GUILD_POINT="Guild Point"
DST_DOJO_INFO_INFO="Info"
DST_DOJO_INFO_NOTICE_INPUT="Note in"
DST_DOJO_INFO_PUBLIC_SECURITY="Status"
DST_DOJO_INFO_SET_TENKAI_SEED_PLAYER="Seed Exhibitors"
DST_DOJO_INFO_TENKAI_SEED_PLAYER="Exhibitors"
DST_DOJO_LOST_DOJO="%s Guild %s took ownership of the Dojo."
DST_DOJO_LOST_DOJO_COLOR="Uniform color reset."
DST_DOJO_NAME="Name"
DST_DOJO_NEED_GUILD_POINT="Need Points"
DST_DOJO_NEED_ITEM="Need Item"
DST_DOJO_NEED_ZENNY="Need Zeni"
DST_DOJO_ONLY_REGISTER_ITEM="Can't register."
DST_DOJO_ONLY_REGI_BAG_ZENNY="Only for Zeni."
DST_DOJO_PEACE_STATE_COMMON="Normal"
DST_DOJO_PEACE_STATE_FEAR="Fear"
DST_DOJO_PEACE_STATE_FESTIVAL="Festive"
DST_DOJO_PEACE_STATE_PANIC="Panic"
DST_DOJO_PEACE_STATE_QUIET="Quiet"
DST_DOJO_REJECT_SCRAMBLE="Dojo Scramble Reject"
DST_DOJO_REWARD_GUILD_REPUTATION="Victory %d Guild has %u Points earned"
DST_DOJO_REWARD_ITEM="Victory: %s Items %d earned"
DST_DOJO_REWARD_NPC_NARRATION="[font size = ""13"" color = ""000000""]If you win items, I will put them in the guild bank!"
DST_DOJO_RUN_UPGRADE="Upgrade"
DST_DOJO_SCRAMBLE="Dojo Scramble"
DST_DOJO_SCRAMBLE_ACCEPT_CHALLENGE="[align = ""center""][font size = ""12"" color=""f4d762""]Scramble Request[/font][br][br][font size = ""10"" color=""269eff""]%s Challenge from Dojo[br][br]Accept the challenge to prove your worth[br]Fight for the Dojo's fate[br]If you Reject[br]You can't win any Zeni.[/font][br][br][font size = ""10"" color=""ffffff""]Required[/font][br][br][font size = ""10"" color=""f36a7c""]Zeni: %s[/font][br][br][font size = ""10"" color=""ffffff""]Accept Challenge?[/font]"
DST_DOJO_SCRAMBLE_ACCEPT_CHALLENGE_CANCEL_BTN="No"
DST_DOJO_SCRAMBLE_ACCEPT_CHALLENGE_OK_BTN="Ok"
DST_DOJO_SCRAMBLE_ASK_CHALLENGE="[align = ""center""][font size = ""12"" color=""f4d762""]Dojo Scramble[/font][br][br][font size = ""10"" color=""269eff""]Dojo Players[br]will send a challenge.[br]When the challenge is accepted[br]you'll have to fight.[br][br]When you send a challenge[br]You must win[br]Or be ready to laughed at[br]Know your enemy![/font][br][br][font size = ""10"" color=""ffffff""]Matches for Zeni[br](Match might be rejected.)[/font][br][br][font size = ""10"" color=""f36a7c""]Zeni: %s[/font][br][br][font size = ""10"" color=""ffffff""]Send Challenge?[/font]"
DST_DOJO_SCRAMBLE_ASK_CHALLENGE_OK_BTN="Ok"
DST_DOJO_SCRAMBLE_ASK_TELEPORT="[align = ""center""][font size = ""12"" color=""f4d762""]Join Dojo Scramble[/font][br][br][font size = ""10"" color=""269eff""]It's time to fight[br]Go to the ring[br]Tension Control check.[br]Tension control used.[/font][br][br][font size = ""10"" color=""ffffff""]Fight rules:[/font][br][br][font size = ""10"" color=""f4d762""]Win : get up to 500 points[br][br]1 Learn how to fight[/font][br][font size = ""10"" color=""ffffff""]+2 points if dojo imprint acquisition[/font][br][br][font size = ""10"" color=""f4d762""]2 points to go[/font][br][font size = ""10"" color=""ffffff""]Tension Points 300 bet +8[/font][br][br][font size = ""10"" color=""f4d762""]Tension points[/font][br][font size = ""10"" color=""ffffff""]1 or 2 Tension Points[/font][br][br][font size = ""10"" color=""f36a7c""]Can't create a party in a fight[/font][br][br][font size = ""10"" color=""ffffff""]Go to the fight?[/font]"
DST_DOJO_SCRAMBLE_ASK_TELEPORT_OK_BTN="Ok"
DST_DOJO_SCRAMBLE_CHANGE_SEAL_OWNER="%s captured %s!"
DST_DOJO_SCRAMBLE_ENTER="Enter"
DST_DOJO_SCRAMBLE_GUILD_MEMBER_COUNT="Members"
DST_DOJO_SCRAMBLE_NO_OWNER_SEAL="No Logo"
DST_DOJO_SCRAMBLE_OTHER_GUILD_SEAL="Other Logo"
DST_DOJO_SCRAMBLE_OUR_GUILD_SEAL="Our Logo"
DST_DOJO_SCRAMBLE_OWNER_SEAL_COUNT="Logo"
DST_DOJO_SCRAMBLE_REWARD_ITEM="Items"
DST_DOJO_SCRAMBLE_REWARD_REPUTATION="Points"
DST_DOJO_SCRAMBLE_RULE="[font size=""11""color=""FFFF33""]1. 5 to 500 points to start![br][br]2. 1 hour to beat the best score![br][br]3. But, whoever survives wins!"
DST_DOJO_SCRAMBLE_RULE_TITLE="Fight to win"
DST_DOJO_SCRAMBLE_STATE_END="Fight End!"
DST_DOJO_SCRAMBLE_STATE_INITIAL="Prepare to fight"
DST_DOJO_SCRAMBLE_STATE_NORMAL="Today %dh %dmin Dojo Scramble"
DST_DOJO_SCRAMBLE_STATE_NORMAL2="Today %d point for Dojo Scramble"
DST_DOJO_SCRAMBLE_STATE_READY="Get Ready"
DST_DOJO_SCRAMBLE_STATE_RECEIVE="Dojo War Scramble:\nRequest possible"
DST_DOJO_SCRAMBLE_STATE_REJECT_END="Dojo Scramble Rejected"
DST_DOJO_SCRAMBLE_STATE_STANDBY="standby: fight starting"
DST_DOJO_SCRAMBLE_STATE_START="Fight started!"
DST_DOJO_SCRAMBLE_TITLE="Scramble"
DST_DOJO_SUCCESS_ADDITION_TENKAI_SEED="[align = ""center""][font size = ""12"" color=""f4d762""]Player Info[/font][br][br][font size = ""10"" color=""269eff""]%s Qualified[br]Good luck in the Tournament.[/font]"
DST_DOJO_SUCCESS_ESTABLISHMENT_TO_MASTER="[align = ""center""][font size = ""12"" color=""f4d762""]Dojo[/font][br][br][font size = ""10"" color=""269eff""]created.[/font][br][br][font size = ""10"" color=""f4d762""]%s Created.[/font] "
DST_DOJO_SUCCESS_ESTABLISHMENT_TO_MEMBER="%s Created."
DST_DOJO_UPGRADE="Upgrade"
DST_DOJO_UPGRADE_CONSUMPTION_GUILD_POINT="Got"
DST_DOJO_UPGRADE_CONSUMPTION_ZENNY="Current Zeni"
DST_DOJO_UPGRADE_CURENT_LEVEL_0="Lv.1"
DST_DOJO_UPGRADE_CURENT_LEVEL_1="Lv.2"
DST_DOJO_UPGRADE_CURENT_LEVEL_2="Lv.3"
DST_DOJO_UPGRADE_CURENT_LEVEL_3="Lv.4:Update"
DST_DOJO_UPGRADE_CURENT_LEVEL_4="Lv.5"
DST_DOJO_UPGRADE_CURENT_LEVEL_5="Lv.6:Update"
DST_DOJO_UPGRADE_CURENT_LEVEL_6="Lv.7"
DST_DOJO_UPGRADE_CURENT_LEVEL_7="Lv.8:Update"
DST_DOJO_UPGRADE_NEED_ITEM="Upgrade Stone"
DST_DOJO_UPGRADE_NEXT_LEVEL_1="Next Lv.2"
DST_DOJO_UPGRADE_NEXT_LEVEL_2="Next Lv.3"
DST_DOJO_UPGRADE_NEXT_LEVEL_3="Next Lv.4"
DST_DOJO_UPGRADE_NEXT_LEVEL_4="Next Lv.5"
DST_DOJO_UPGRADE_NEXT_LEVEL_5="Next Lv.6"
DST_DOJO_UPGRADE_NEXT_LEVEL_6="Next Lv.7"
DST_DOJO_UPGRADE_NEXT_LEVEL_7="Next Lv.8"
DST_DO_EMPTY_CAPSULEKIT="First empty Capsule kit."
DST_DRAGONBALLSCRAMBLE_FOR_BASIC_BENEFIT="Maximum LP increase by: %d%% [DBS]"
DST_DRAGONBALL_SCRAMBLE_ALREADY_JOIN="Already joined Scramble"
DST_DRAGONBALL_SCRAMBLE_CAN_NOT_TRADE_TARGET="Can't trade Dragon Ball"
DST_DRAGONBALL_SCRAMBLE_CHANNEL_INFO="Dragon Ball Scramble Event!"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_CANCEL="Cancel"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_DROP_1="Fainted"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_DROP_2="Teleport or Exit"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_DROP_3="PK Impossible to Enter"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_DROP_TITLE="Losing"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_GET_1="Dropped To pick up"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_GET_2="Call Dragon"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_GET_3="Spiked with Item"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_GET_TITLE="Scramble!"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_OK="App."
DST_DRAGONBALL_SCRAMBLE_CONFIRM_TITLE="Dragon Ball Scramble App."
DST_DRAGONBALL_SCRAMBLE_CONFIRM_WARNING_TITLE="Note!"
DST_DRAGONBALL_SCRAMBLE_CONFIRM_WARNINR="1)No Bus. 2)Not Ranked."
DST_DRAGONBALL_SCRAMBLE_DROP_MSG="Dragon Ball Lost!!"
DST_DRAGONBALL_SCRAMBLE_FAINT_DROP_MSG="You have Fainted"
DST_DRAGONBALL_SCRAMBLE_GAIN_BUDOJI_MILEAGE="Earned %d Mudosa"
DST_DRAGONBALL_SCRAMBLE_I_AM_NOT_PLAYER="Not Scramble Participant"
DST_DRAGONBALL_SCRAMBLE_I_AM_PLAYER="Scramble Participant"
DST_DRAGONBALL_SCRAMBLE_JOIN_CONFIRM_MSGBOX="[align = ""center""][font size=""12""color=""f4d762""]Join Dragon Ball Scramble[/font][br][br][font size=""10""color=""269eff""]Note: You can't exit Dragon Ball Scramble until it's over.[/font]"
DST_DRAGONBALL_SCRAMBLE_JOIN_MSGBOX="[align = ""center""]Dragon Ball Scramble[br][br]join?"
DST_DRAGONBALL_SCRAMBLE_LOOT_BATTLE_DRAGONBALL="Earned %d Dragon Ball"
DST_DRAGONBALL_SCRAMBLE_PARTY_LEAVE="Left Party"
DST_DRAGONBALL_SCRAMBLE_READY_FOR_JOIN_RES="Ready, Waiting response"
DST_DRAGONBALL_SCRAMBLE_RETURN_MSG="Can't join Dragon Ball scramble"
DST_DRAGONBALL_SCRAMBLE_SEASON_BEGIN_NFY="Dragon Ball Scramble Event Started"
DST_DRAGONBALL_SCRAMBLE_SEASON_END_NFY="Dragon Ball Scramble Event End"
DST_DRAGONBALL_SCRAMBLE_SEASON_REWARD_COOLTIME_NFY="Battle Dragon Ball turned into a stone, you won't receive compensation"
DST_DRAGONBALL_SCRAMBLE_SEASON_REWARD_LIMIT_OVER_NFY="[align = ""center""]Dragon Ball Scramble Info[br][br]Scramble full[br]no compensation in this channel"
DST_DRAGONBALL_SCRAMBLE_TOOLTIP="%d Star Battle Dragon Ball"
DST_DRGONBALL_SCRAMBLE_SEASON_REFRESH_NFY="Battle Dragon Ball have been compensated"
DST_DROPITEM_ZENNY="%s Zeni"
DST_DRUM="Drum"
DST_DUALDST_GUN="Dual Gun"
DST_DUNGEON_DIRECT_ENTER="Enter"
DST_DWC_CARDCOUNT="Card Count"
DST_DWC_CARD_CLEAR_TOOLTIP="Current available attacks"
DST_DWC_CARD_GRADE="Card Grade"
DST_DWC_CARD_GRADE_00="ALL"
DST_DWC_CARD_GRADE_01="Common"
DST_DWC_CARD_GRADE_02="Uncommon"
DST_DWC_CARD_GRADE_03="Unique"
DST_DWC_CARD_GRADE_04="Rare"
DST_DWC_CARD_GRADE_05="Legendary"
DST_DWC_CARD_TARGET_TOOLTIP="Attack"
DST_DWC_CHOOSE_TITLE="Select Target"
DST_DWC_CLEAR_CARD_TOOLTIP="Confirm access to the card"
DST_DWC_CONDITION="Target Condition"
DST_DWC_CONDITION_RB_STRAIGHTWIN="%d Streak"
DST_DWC_CONDITION_STATE="Condition Status"
DST_DWC_ENTER_CONDITION="Entrance Conditions"
DST_DWC_ENTER_CONFIRM="[align = ""center""]Dragon World Challenge (DWC) Entry[br][br]Remaining # of entries this week: %d[br][br]You can't withdraw.[br]Do you want to enter?[br]"
DST_DWC_ENTER_QUESTION="[br][align = ""center""][font size = ""10"" color=""f4d762""]DWC Admission[/font][br][br][font size = ""10"" color=""269eff""]You can play %d more times today[/font][br][br][font size = ""10"" color=""f4d762""]Would you like to play?[/font][br]"
DST_DWC_ESSENTIAL_TITLE="Goal Required"
DST_DWC_FIELD_ENTER="DWC Entry Status"
DST_DWC_FIELD_ENTER_COMMAND="Enter DWC"
DST_DWC_GRADE="Rating"
DST_DWC_GRADE_TOOLTIP="Select a card."
DST_DWC_HERO_TITLE="Hero Info"
DST_DWC_INFO_COMMAND="DWC Info"
DST_DWC_MAIN_TITLE="Dragon World Challenge"
DST_DWC_PLAYER_COUNT="Player Count"
DST_DWC_PLAYER_COUNT_TEXT="%d ~ %d players"
DST_DWC_PLAYLEVEL="等級%d以上"
DST_DWC_PLAY_LEVEL="Difficulty Level"
DST_DWC_PROLOG_TITLE="Prolog"
DST_DWC_REPEAT_REWARD="Repeat Rewards"
DST_DWC_REWARD="Reward"
DST_DWC_SCENARIOINFO_TITLE="Scenario Info"
DST_DWC_SCENARIO_CLEAR=" [finished]"
DST_DWC_SCENARIO_CONDITION_TITLE="Entry Details"
DST_DWC_SCENARIO_LIST="DWC Scenario List"
DST_DWC_SCENARIO_LOCK="[locked]"
DST_DWC_SCENARIO_OPEN="[open]"
DST_DWC_SCENARIO_TOOLTIP="Select the plot and organize relevant cards."
DST_DWC_SIDE_VIEW="DWC Completed. Press V to open the main menu."
DST_DWC_STATE_CLEAR="結束"
DST_DWC_STATE_LOCK="鎖定"
DST_DWC_STATE_OPEN="進攻中"
DST_DWC_STATE_PLAY="Attack"
DST_DWC_STATE_TOOLTIP="Select the card to attack the state and organize."
DST_DWC_STATUS="Status"
DST_DWC_TARGET="Target"
DST_DWC_TARGET_TITLE="Target Goal"
DST_DWC_TITLE="Dragon World Challenge"
DST_DYNAMIC_FIELD_SIDEVIEW_BOSSKILLTIME="%d hour %d minute"
DST_DYNAMIC_FIELD_SIDEVIEW_CONTENT_01="At 100% the BOSS will appear!"
DST_DYNAMIC_FIELD_SIDEVIEW_CONTENT_02="After 2h the Boss disappear."
DST_DYNAMIC_FIELD_SIDEVIEW_CONTENT_03="A NPC appear after success."
DST_DYNAMIC_FIELD_SIDEVIEW_CONTENT_04="Click the icon for the quest!"
DST_DYNAMIC_FIELD_SIDEVIEW_CONTENT_05="Quest activated."
DST_DYNAMIC_FIELD_SIDEVIEW_PERCENTAGE="%s%%"
DST_DYNAMIC_FIELD_SIDEVIEW_TITLE_01="Boss Monster emerges"
DST_DYNAMIC_FIELD_SIDEVIEW_TITLE_02="Eliminate BOSS monster"
DST_DYNAMIC_FIELD_SIDEVIEW_TITLE_03="Monster emerges"
DST_ENABLE="Available"
DST_ENGINEER="Engineer"
DST_EQUIP_SLOT_TYPE_ACCESSORY1="Accessory 1 - Mask"
DST_EQUIP_SLOT_TYPE_ACCESSORY2="Accessory 2 - Richness"
DST_EQUIP_SLOT_TYPE_ACCESSORY3="Accessory 3 - Backpack"
DST_EQUIP_SLOT_TYPE_BOOTS="Shoes"
DST_EQUIP_SLOT_TYPE_DOGI="Dogi"
DST_EQUIP_SLOT_TYPE_EARRING="Earring"
DST_EQUIP_SLOT_TYPE_HAIR="Hair"
DST_EQUIP_SLOT_TYPE_HAND="Weapon"
DST_EQUIP_SLOT_TYPE_JACKET="Jacket"
DST_EQUIP_SLOT_TYPE_NECKLACE="Necklace"
DST_EQUIP_SLOT_TYPE_PANTS="Pants"
DST_EQUIP_SLOT_TYPE_QUEST="Quest"
DST_EQUIP_SLOT_TYPE_RING="Ring"
DST_EQUIP_SLOT_TYPE_SCOUTER="Scouter"
DST_EQUIP_SLOT_TYPE_SUB_WEAPON="Sub Weapon"
DST_ERROR_DUPLICATE_NAME="[%s]Already Exists."
DST_ERROR_NO_USE_BY_PARTY_MEMBER="Party status unavailable."
DST_ERROR_RENAME_PENALTY_PERIOD="Penalty: %d remain"
DST_ERROR_WRONG_NAME="[%s]Unavailable."
DST_EVENTMACHINE_SIDEICON_TOOLTIP="Event Machine ( Event Coin X %d )"
DST_EVENT_ITEM="Event Items"
DST_EVENT_MACHINE_NAME="Event Machine %d"
DST_EXP_AUTO_RECOVER_ARRAY="剩餘經驗值 %s"
DST_EXP_AUTO_RECOVER_COMMENT="Every %d seconds pet earns %d EXP"
DST_EXP_INFO="EXP: %d / %d"
DST_FAN="Fan"
DST_FINISHED_MONSTER="%s finished"
DST_FREEPVP_CANT_WITH_BLACKLIST="Can't Duel Blacklisted Player."
DST_FREEPVP_CHALLENGE="[align = ""center""][font size = ""12"" color=""f4d762""]Duel Request[/font][br][br][font size = ""10"" color=""269eff""]You are being challenged[br]to a Duel.[/font][br][br][font size = ""10"" color=""f4d762""]Challenger: %s[/font][br][br][font size = ""10"" color=""ffffff""]Accept Challenge?[/font]"
DST_FREEPVP_DRAW="It's a draw!"
DST_FREEPVP_LOSE="%s lost the duel."
DST_FREEPVP_OUTSIDE_STAGE="%d Seconds until you give up."
DST_FREEPVP_WIN="%s won the duel."
DST_FRIDAY="Friday"
DST_FRIEND_ADD="Add"
DST_FRIEND_BLOCK="Block"
DST_FRIEND_DELETE="Remove"
DST_FRIEND_ERR_EXIST_BLACK="Already Blacklisted"
DST_FRIEND_ERR_EXIST_FRIEND="Already Friends"
DST_FRIEND_ERR_SELF_EXIT_BLOCK="Can't blacklist yourself"
DST_FRIEND_ERR_SELF_EXIT_FRIENDLIST="Can't befriend yourself"
DST_FRIEND_INVALID_USER="Invalid User"
DST_FRIEND_INVITE="Invite"
DST_FRIEND_MAIL="Mail"
DST_FRIEND_MSG_BLACK_ADD="[align = ""center""]Blacklist[br][br]Blacklisting[br]Users can't Contact You[br][br]Enter Name"
DST_FRIEND_MSG_BLACK_ADD_RESULT="%s is added to the blacklist"
DST_FRIEND_MSG_BLACK_DEL_RESULT="%s is removed from the blacklist"
DST_FRIEND_MSG_BLACk_DEL="[align = ""center""][font size = ""12"" color=""f4d762""]Remove Blacklist[/font][br][br][font size = ""10"" color=""269eff""]Removing Blacklisted User[/font][br][br][font size = ""10"" color=""ffffff""]Deleting from Blacklist.[/font][br][br][font size = ""10"" color=""f4d7""]Removing: %s[/font][br][br][font size = ""10"" color=""ffffff""]Remove User?[/font]"
DST_FRIEND_MSG_FRIEND_ADD="[align = ""center""][font size = ""12"" color=""f4d762""]Add Friends[/font][br][br][font size = ""10"" color=""f36a7c""]Adding a Friend[br]Friends can be used to make Parties etc.[/font][br][br][font size = ""10"" color=""ffffff""]Enter Name[/font]"
DST_FRIEND_MSG_FRIEND_ADD_RESULT="%s is added to the friendlist"
DST_FRIEND_MSG_FRIEND_DEL="[align = ""center""][font size = ""12"" color=""f4d762""]Remove Friend[/font][br][br][font size = ""10"" color=""f36a7c""]Removing Friend[/font][br][br][font size = ""10"" color=""ffffff""]Deleting from Friend List.[/font][br][br][font size = ""10"" color=""f36a7c""]Removing: %s[/font][br][br][font size = ""10"" color=""ffffff""]Remove Friend?[/font]"
DST_FRIEND_MSG_FRIEND_DEL_RESULT="%s is removed from the friendlist"
DST_FRIEND_MSG_FRIEND_MOVE_RESULT="%s moved to the block list"
DST_FRIEND_MSG_LOGIN="%s has logged in"
DST_FRIEND_OFFLINE="Offline"
DST_FRIEND_SUBJECT_CHANNEL="Channel"
DST_FRIEND_SUBJECT_LEVEL="Level"
DST_FRIEND_SUBJECT_LOC="Area"
DST_FRIEND_SUBJECT_NAME="Name"
DST_FRIEND_TAB_BLACKLIST="Blacklist"
DST_FRIEND_TAB_FRIEND="Friends"
DST_FRIEND_TOO_OVER_NAME="Name Too Long"
DST_FRIEND_WHISPER="Whisper"
DST_GAMBLE_COMMAND="Draw"
DST_GAMBLE_GUIDE="To play you need: \n- %u Mudosa Points \n- 10,000 Zeni"
DST_GAMBLE_GUIDE_RESULT="Capsule Earned"
DST_GAMBLE_GUIDE_ZENNY="%s Zeni, to get a capsule"
DST_GAMBLE_NOT_ENOUGH_MUDOSA_POINT="Need Mudosa Points"
DST_GAME_EXIT="[align = ""center""][font size=""12""color=""f4d762""]Exit Game[/font][br][br][font size=""10""color=""269eff""]Do you wish to exit DBOPS?[/font][br][font size=""10""color=""ffffff""]Thanks for playing[br]Dragon Ball Online Private Server![/font]"
DST_GAME_PARTY_CANT_INVITE_TARGET_SANDBAG="HTB is used, can't invite now"
DST_GAME_PARTY_CANT_JOIN_TARGET_SANDBAG="HTB is used, can't join the state"
DST_GAME_SERVER_CONNECT_FAIL="[align = ""center""]Connection Failed[br][br]Failed to connect to game servers[br][br]Try again later."
DST_GEM="Gem"
DST_GET="Get"
DST_GIFT_SHOP_MAX_WP="WP's maximum value is 2000."
DST_GIFT_SHOP_SIDE_ICON_TOOLTIP="Current WP-Points %d"
DST_GIFT_SHOP_TITLE_NAME="Wagu Point Shop"
DST_GLOVE="Gloves"
DST_GMT_APPLY_END_NOTICE="%s Period has Ended"
DST_GMT_APPLY_GUIDE="Starts next Day"
DST_GMT_APPLY_START_NOTICE="%s Period has Started"
DST_GMT_APPLY_TIME="Apply Time"
DST_GMT_CANT_RESET="Can't reset."
DST_GMT_CHANGE_TIME="Change Time"
DST_GMT_DONOT_CHECK_ALL="Please set EXP and Zeni Bonus"
DST_GMT_ENABLE_CHECK_COUNT="Count Check: %d"
DST_GMT_EXP_FOR_BENEFIT="%u%% EXP Bonus [%02d:00 - %02d:00]"
DST_GMT_EXT_GET="Bonus Selection"
DST_GMT_LIST_EXP="%u%% EXP Bonus"
DST_GMT_LIST_ZENNY="%u%% Zeni Bonus"
DST_GMT_NO_TIME="No Time"
DST_GMT_PROFILE="Select which Bonus Option you would like to\nreceive."
DST_GMT_REMAIN_COUNT="GMT Resets left: %d"
DST_GMT_RESET="Reset"
DST_GMT_RESET_ALREADY_OPEN="Window is already Opened"
DST_GMT_RESET_COUNT_OVER="Number of Hours Exceeded"
DST_GMT_RESET_TITLE="Set Time"
DST_GMT_TIME_INFO="%2d:00"
DST_GMT_TITLE="Bonus Times"
DST_GMT_TITLE_EXP="Bonus EXP"
DST_GMT_TITLE_ZENNY="Bonus Zeni"
DST_GMT_ZENNY_FOR_BENEFIT="%u%% Zeni Bonus [%02d:00 - %02d:00]"
DST_GRAND_MA="Grand Chef Majin"
DST_GUARD_GAUGE_CANNOT_USE="Guard is in cooldown"
DST_GUARD_GAUGE_CAN_USE="Can Use Guard"
DST_GUILD="Guild"
DST_GUILDWAREHOUSE_TITLE_1="Guild Warehouse 1"
DST_GUILDWAREHOUSE_TITLE_2="Guild Warehouse2"
DST_GUILDWAREHOUSE_TITLE_3="Guild Warehouse3"
DST_GUILD_ADD_FUNCTION="[align = ""center""][font size = ""12"" color=""f4d762""]%s[/font][br][br][font size = ""10"" color=""269eff""]Improvements[/font][br][br][font size = ""10"" color=""ffffff""]The Following is Required[/font][br][br][font size = ""10"" color=""f36a7c""]Guild Points: %d[br][br]Zeni: %s[/font][br][br][font size = ""10"" color=""ffffff""]Add Feature?[/font]"
DST_GUILD_ADD_FUNCTION_NOTIFY_TO_MASTER="[align = ""center""][font size = ""12"" color=""f4d762""]Guild Change Made[/font][br][br][font size = ""10"" color=""269eff""]Good Job![/font][br][br][font size = ""10"" color=""f4d762""]Changes are:[br]%s[/font]"
DST_GUILD_ADD_FUNCTION_NOTIFY_TO_MEMBER="Access Changed"
DST_GUILD_APPOINT_SECOND_MASTER="[align = ""center""][font size = ""12"" color=""f4d762""]Appointment of the Jr. Master[/font][br][br][font size = ""10"" color=""269eff""]Appoint a Jr. Master of the guild.[/font][br][br][font size = ""10"" color=""ffffff""]Following player gets Jr. Master privileges.[/font][br][br][font size = ""10"" color=""f4d762""]Player: %s[/font][br][br][font size = ""10"" color=""ffffff""]Do you want to appoint the player?[/font]"
DST_GUILD_ASK_CHANGE_GUILD_EMBLEM_WITH_ZENNY="[align = ""center""][font size = ""12"" color=""f4d762""]Change Guild Emblem[/font][br][br][font size = ""10"" color=""ffffff""]If you want to change the guild emblem [br]You need to pay the following amount.[/font][br][br]Cost: %s Zeni[br][br][font size = ""10"" color=""ffffff""]Change Guild Emblem?[/font]"
DST_GUILD_CANCELED_DISSOLVE="Dissolve cancelled."
DST_GUILD_CANCEL_DISSOLVE="[align =""center""][font size=""12""color=""f4d762""]Guild Dissolve[/font][br][br][font size=""10""color=""269eff""]Cancel the guild dissolve.[/font][br][br][font size=""10""color=""ffffff""]You want to cancel the dissolve?[/font]"
DST_GUILD_CHANGED_GUILD_NAME="Guild Renamed"
DST_GUILD_CHANGED_GUILD_NOTICE="New Notice"
DST_GUILD_CHANGED_GUILD_NOTICE_SUCCESS="New Notice"
DST_GUILD_CHANGE_GUILD_EMBLEM="Emblem Changed"
DST_GUILD_CHANGE_GUILD_NAME="[align = ""center""][font size = ""12"" color=""f4d762""]Change Guild Name[/font] [br][br][font size = ""10"" color=""269eff""]New Name:[/font][br][br][font size = ""10"" color=""f36a7c""]2-16 Characters[/font][br]"
DST_GUILD_CHANGE_MASTER="%s is the New Master"
DST_GUILD_CLASS_CHANGE_MEMBER="%s %s"
DST_GUILD_CONTRIBUTION_ZENNY="[align = ""center""][font size = ""12"" color=""f4d762""]Zeni Donation[br](for style points)[/font][br][br][font size = ""10"" color=""269eff""]By donating Zeni[br]The guild gets points[br]To expand the guild.[/font][br][br][font size = ""10"" color=""ffffff""]Donation Amount:[/font][br][br][font size = ""10"" color=""f4d762""]Selected Amount: %s Zeni[br](10000 Zeni = 5 Style Points)[/font][br][br][font size = ""10"" color=""ffffff""]Donate Zeni?[/font]"
DST_GUILD_CONTRIBUTION_ZENNY_NOTIFY="Zeni for the Guild"
DST_GUILD_CONTRIBUTION_ZENNY_OTHERS="%s donated %s Zeni to Guild"
DST_GUILD_CREATE="Guild Created"
DST_GUILD_CREATE_GUILD_EMBLEM="Emblem Made"
DST_GUILD_CREATE_NFY="%s was created."
DST_GUILD_CURRNET_POINT="Style Points"
DST_GUILD_CURRNET_POINT_EXPAIN="Donation: %d, Gained: %d"
DST_GUILD_CUR_POS="Area"
DST_GUILD_DECLINE="%s Declined"
DST_GUILD_DISBAND="Guild Disband"
DST_GUILD_DISMISS_SECOND_MASTER="%s was demoted."
DST_GUILD_DISMISS_SECOND_MASTER_REQ="[align = ""center""][font size = ""12"" color=""f4d762""]Deprived of the Jr. Master position[/font][br][br][font size = ""10"" color=""ffffff""]Deprived of the following player privileges.[/font][br][br][font size = ""10"" color=""f36a7c""]Player: %s[/font][br][br][font size = ""10"" color=""ffffff""]Do you want to deprive Jr. Master authority?[/font]"
DST_GUILD_DO_DISSOLVE="[align = ""center""][font size = ""12"" color=""f4d762""]Disband Guild[/font][br][br][font size = ""10"" color=""f36a7c""]Disbanding a guild will remove the guild name.[br][br](The guild will be removed instantly) [/font][br][br][font size = ""10"" color=""ffffff""]Start disbanding Guild?[/font]"
DST_GUILD_DO_MAKE="[align = ""center""][font size = ""12"" color=""f4d762""]Guild Creation[/font][br][br][font size = ""10"" color=""269eff""]Gather your party members[br]Creating a guild provides a variety of content[br]to enjoy.[/font][br][br][font size = ""10"" color=""ffffff""][/font]To create Guild[br]The following are required.[br][br][font size = ""10"" color=""f36a7c""]Required level: Lvl 30[br]Party size: 5[br]Zeni: 200,000[br]Guild Name: Must be 2-16 characters[/font][br][br][font size = ""10"" color=""ffffff""]Enter name and press Ok.[/font]"
DST_GUILD_DO_NOT_FUNC_FOR_DISBAND="Break"
DST_GUILD_EMBLEM_EXPLAIN_1="text, templates, backgrounds, combine"
DST_GUILD_EMBLEM_EXPLAIN_2="(can be set separately for each color)"
DST_GUILD_EMBLEM_INFO="Emblem"
DST_GUILD_EMBLEM_MODIFY_INFO="Style Changes"
DST_GUILD_EMBLEM_TITLE="Logo"
DST_GUILD_EMPTY="Not in a Guild"
DST_GUILD_ENTRUST_MASTER="Assign Guild Master %s"
DST_GUILD_EXPIRED="%s Didn't respond to the Invite"
DST_GUILD_GYM="Dojo"
DST_GUILD_INVITE="%s Invited"
DST_GUILD_INVITE_REQ="[align = ""center""][font size = ""12"" color=""f4d762""]Guild Join Request[/font] [br][br][font size = ""10"" color=""269eff""]You have received a Guild Invite[/font][br][br][font size = ""10"" color = ""ffffff""]Do you want to join %s ?[/font][br]"
DST_GUILD_INVITE_RES="You are now in a Guild!"
DST_GUILD_IS_ONLY_MASTER="Master Only"
DST_GUILD_KICKOUT_MEMBER="%s was expelled from the Guild"
DST_GUILD_KICK_OUT="[align = ""center""][font size = ""12"" color=""f4d762""]Dismiss[/font][br][br][font size = ""10"" color=""f36a7c""]Dismiss the player from the guild.[/font][br][br][font size = ""10"" color=""f36a7c""]Player: %s[/font][br][br][font size = ""10"" color=""ffffff""]Are you sure, to dismiss the player?[/font]"
DST_GUILD_LEAVE="Leave"
DST_GUILD_LEAVE_ASK="[align = ""center""][font size=""12""color=""f4d762""]Leave Guild[/font][br][br][font size=""10""color=""ffffff""]You are sure to leave the Guild?[/font]"
DST_GUILD_LEAVE_AVATAR="You left the Guild"
DST_GUILD_LEAVE_MEMBER="%s has left the Guild"
DST_GUILD_LEVEL="Lv."
DST_GUILD_LEVEL_CHANGE_MEMBER="%s is now Lv.%d"
DST_GUILD_MASTER="Master"
DST_GUILD_MAX_POINT="Max Points"
DST_GUILD_MAX_POINT_EXPAIN="Get Points for Skills."
DST_GUILD_MEMBER="Members"
DST_GUILD_NAME_RULE="Name must be 2-16 characters"
DST_GUILD_NEW_MEMBER="%s has joined the Guild"
DST_GUILD_NOTICE="Notice"
DST_GUILD_NOTICE_DISSOLVE="Guild will be disbanded.\nDate %dYear %dMonth %dDay (%s) at %d:%dMin."
DST_GUILD_NOTICE_TITLE="Notice"
DST_GUILD_NOT_JOIN="Not in a Guild"
DST_GUILD_NOT_SELECT_EMBLEM="background, framework, etc."
DST_GUILD_ONLINE_MEMBER="%s is Online"
DST_GUILD_SECOND_MASTER="Jr. Master"
DST_GUILD_SECOND_MASTER_APPOINTED="%s has been appointed as Jr. Master"
DST_GUILD_SETUP_EMBLEM_COLOR="Logo Color"
DST_GUILD_WAREHOUSE_CAN_NOT_DISCARD="No-Discard"
DST_GUILD_WAREHOUSE_SAVE_ZENNY="%s Zeni Stored"
DST_GUILD_WAREHOUSE_ZENNY_DRAW_OUT="Drew %s Zeni from Bank"
DST_GUN="Gun"
DST_GUN_MANIA="Gun Maniac"
DST_HELPWND_GOLIST="Jump To"
DST_HELPWND_HELPCONTENTS="Contents"
DST_HELPWND_PETITION_TO_GM="GM Help"
DST_HELPWND_TITLE="Help"
DST_HELPWND_TOP_TITLE="Dragon Ball Online Guide"
DST_HLS_ALREADY_CONFIRM="Confirmation Already Opened"
DST_HLS_ALREADY_GIFT="Gift Window Already Open"
DST_HLS_CANT_SEARCH_IN_CURRENT_TAB="You can't search on this tab."
DST_HLS_CASHCHARGE="Charge"
DST_HLS_CONFIRM_BTN_BUY="Buy"
DST_HLS_CONFIRM_BTN_CANCEL="Cancel"
DST_HLS_CONFIRM_BTN_CASHCHARGE="Charge"
DST_HLS_CONFIRM_BTN_OK="Ok"
DST_HLS_CONFIRM_BUY_TITLE="Confirm Purchase"
DST_HLS_CONFIRM_DURATION="Duration: %s"
DST_HLS_CONFIRM_GIFT_CHARACTER="Character"
DST_HLS_CONFIRM_GIFT_SELECT_PLAYER="Select Player"
DST_HLS_CONFIRM_GIFT_SERVER="Servers"
DST_HLS_CONFIRM_GIFT_TITLE="Gift"
DST_HLS_CONFIRM_GIFT_WHO="Gift Who?"
DST_HLS_CONFIRM_HAVE_CASH="Have Cash"
DST_HLS_CONFIRM_HTML_GUIDE="Purchases are Not Refundable."
DST_HLS_CONFIRM_NEED_CASH="Need Cash"
DST_HLS_CONFIRM_REMAIN_CASH="Remain"
DST_HLS_CONFIRM_RESULT_GUIDE="Info Shown Below. Hit OK to Complete."
DST_HLS_CONFIRM_TITLE="Buy"
DST_HLS_GIFT_CHAR_NAME_GUIDE="Enter Player Name"
DST_HLS_HAVE_CASH="Cash"
DST_HLS_HAVE_COIN="Coins"
DST_HLS_HAVE_EVENTCOIN="Event Coin"
DST_HLS_INIT_SEARCH="Refresh"
DST_HLS_ITEM_BUY_SUCCESS="Item Bought"
DST_HLS_ITEM_GIFT_SUCCESS="Item Gifted"
DST_HLS_ITEM_NOT_CONFIRM_GIFT="Gift Not Confirmed"
DST_HLS_ITEM_TOOLTIP_DURATION_TYPE_LIMIT="Limit"
DST_HLS_ITEM_TOOLTIP_DURATION_TYPE_NOLIMIT="Consumable"
DST_HLS_ITEM_TOOLTIP_PACKAGE="Package"
DST_HLS_ITEM_TOOLTIP_PACKAGE_ITEM="%s %d more"
DST_HLS_ITEM_TYPE_ACCOUNT_STORE="Extend Time of Bank Account"
DST_HLS_ITEM_TYPE_ADD_CHARACTER="Seniors can add more Characters"
DST_HLS_ITEM_TYPE_ADD_CHARACTER_PLUS="You can add a Character"
DST_HLS_ITEM_TYPE_EXP_ZENNY="Add Zeni to Gain Bonus EXP"
DST_HLS_ITEM_TYPE_GMT="Extend Time"
DST_HLS_ITEM_TYPE_ITEM_CREATE="Cash Shop Capsule"
DST_HLS_ITEM_TYPE_PACKAGE="Bundles"
DST_HLS_QUICK_LINK="Related Items"
DST_HLS_REFRESH="Refresh"
DST_HLS_SEARCH="Search"
DST_HLS_SEARCH_GUIDE="Enter Item Name"
DST_HLS_SLOT_BUY="Buy"
DST_HLS_SLOT_GIFT="Gift"
DST_HLS_SLOT_PREVIEW="Preview"