-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstringcommon.xml
6535 lines (6535 loc) · 744 KB
/
stringcommon.xml
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
<?xml version="1.0" encoding="utf-8"?>
<ms2>
<key id="s_empty_string" value="" />
<key id="s_raw_ngs_init_error" value="An error occurred while executing NGS. ({0:08X})" />
<key id="s_number_string_1111" value="{3},{2},{1},{0}" />
<key id="s_number_string_1110" value="{3},{2},{1}K" />
<key id="s_number_string_1101" value="{3},{2},000,{0}" />
<key id="s_number_string_1011" value="{3},000,{1},{0}" />
<key id="s_number_string_0111" value="{2},{1},{0}" />
<key id="s_number_string_1100" value="{3},{2}M" />
<key id="s_number_string_1010" value="{3},000,{1}K" />
<key id="s_number_string_0110" value="{2},{1}K" />
<key id="s_number_string_1001" value="{3},000,000,{0}" />
<key id="s_number_string_0101" value="{2},{0}" />
<key id="s_number_string_0011" value="{1},{0}" />
<key id="s_number_string_1000" value="{3}B" />
<key id="s_number_string_0100" value="{2}M" />
<key id="s_number_string_0010" value="{1}K" />
<key id="s_number_string_0001" value="{0}" />
<key id="s_number_string_meso" value="{0} Meso(s)" />
<key id="s_number_string_exp" value="{0} Experience" />
<key id="s_err_system_title" value="System Error" />
<key id="s_err_system_check_graphic_driver" value="There was an issue with your graphics driver.\nPlease update your graphics driver." />
<key id="s_err_system_graphic_error0" value="Failed to create renderer." />
<key id="s_err_system_graphic_error1" value="Failed to initialize DirectX 9. (Creation failed: Could not initialize DirectX9)" />
<key id="s_err_system_graphic_error2" value="Incorrect adapter. (Creation failed: Invalid Adapter)" />
<key id="s_err_system_graphic_error3" value="Incorrect 3D device. (Creation failed: Invalid 3D device type)" />
<key id="s_err_system_graphic_error4" value="Incorrect adapter. (Creation failed: Invalid Adapter)" />
<key id="s_err_system_graphic_error5" value="Incorrect 3D device. (Creation failed: Invalid 3D device type)" />
<key id="s_err_system_graphic_error6" value="The requested device is not valid. (Creation failed: Requested device not valid)" />
<key id="s_err_system_graphic_error7" value="The hardware device cannot be created. (Creation failed: Could not create hardware device.\nD3DERR_DEVICELOST)" />
<key id="s_err_system_graphic_error8" value="The hardware device cannot be created. (Creation failed: Could not create hardware device.\n D3DERR_INVALIDCALL)" />
<key id="s_err_system_graphic_error9" value="The hardware device cannot be created. (Creation failed: Could not create hardware device.\nD3DERR_NOTAVAILABLE)" />
<key id="s_err_system_graphic_error10" value="The hardware device cannot be created. (Creation failed: Could not create hardware device.\nD3DERR_OUTOFVIDEOMEMORY)" />
<key id="s_err_system_graphic_error11" value="Desired framebuffer format can't be found. (Creation failed: Could not find desired framebuffer format)" />
<key id="s_err_system_graphic_error12" value="Desired depth/stencil format can't be found. (Creation failed: Could not find desired depth/stencil format)" />
<key id="s_err_system_graphic_error13" value="Desired fullscreen mode can't be applied. (Creation failed: Could not match desired fullscreen mode)" />
<key id="s_err_system_graphic_error14" value="Could not query device caps. (Creation failed: Could not query device caps)" />
<key id="s_err_system_graphic_error15" value="Your device does not support single-pass multi-texture. (Creation failed: Device does not support single-pass multi-texture)" />
<key id="s_err_system_graphic_error16" value="This graphics card isn't supported. (Vertex shader version > 3.0)" />
<key id="s_err_system_graphic_error17" value="This graphics card isn't supported. (Pixel shader version > 3.0)" />
<key id="s_err_system_graphic_error18" value="This graphics card isn't supported. (Hardwareinstancing)" />
<key id="s_msg_restriction_special_chatting_need_acc_char_level" value="You must have a Lv. {0} or higher character on your account to use Channel, World, or Super Chat." />
<key id="s_msg_restriction_special_chatting_need_acc_adv_level" value="You must have a Prestige Rank {0} or higher character on your account to use Channel, World, or Super Chat." />
<key id="s_msg_restriction_special_chatting_over_daily_usage_limit" value="You've reached the daily cap so you can no longer use Channel, World, or Super Chat." />
<key id="s_msg_restriction_mail_send_need_acc_char_level" value="You must have a Lv. {0} or higher character on your account to send mail." />
<key id="s_msg_restriction_mail_send_need_acc_adv_level" value="You must have a Prestige Rank {0} or higher character on your account to send mail." />
<key id="s_msg_restriction_mail_send_over_daily_usage_limit" value="You've reached the daily cap so you can no longer send mail." />
<key id="s_msg_restriction_whisper_chatting_need_acc_char_level" value="You must have a character on your account that's at least Lv. {0} to send whispers." />
<key id="s_msg_restriction_whisper_chatting_need_acc_adv_level" value="You must have a character on your account with at least Prestige Rank {0} to send whispers." />
<key id="s_msg_restriction_group_chatting_need_acc_char_level" value="You must have a character on your account that's at least Lv. {0} to create a group chat." />
<key id="s_msg_restriction_group_chatting_need_acc_adv_level" value="You must have a character on your account with at least Prestige Rank {0} to create a group chat." />
<key id="s_msg_restriction_ugc_banner_need_acc_char_level" value="You must have a character on your account that's at least Lv. {0} to reserve a display." />
<key id="s_msg_restriction_ugc_banner_need_acc_adv_level" value="You must have a character on your account with at least Prestige Rank {0} to reserve a display." />
<key id="s_admin_character_name" value="Administrator" />
<key id="s_err_inventory" value="Your inventory is full." />
<key id="s_err_warehouse" value="Please empty your Furnishing Storage." />
<key id="s_err_lack_price" value="Payment failed." />
<key id="s_err_not_enough_level" value="You do not meet the level requirements." />
<key id="s_err_inventory_tab_full" value="Empty your [{0}] inventory tab." />
<key id="s_err_dropitem_pickfail_ownership" value="This item does not belong to you." />
<key id="s_err_invalid_shortkey_code" value="You need to set up the shortcut key." />
<key id="s_msg_item_upgrade_disabled" value="This item cannot be enchanted." />
<key id="s_msg_item_remove_expired_item_in_inventory" value="You have one or more expired items. Would you like to discard them while sorting?" />
<key id="s_err_check_survival_with" value="The {0} tab cannot be accessed now." feature="SurvivalContents01" />
<key id="s_err_gender" value="Your character does not meet the gender requirements to use this item." />
<key id="s_word_item_notuse" value="You cannot use that right now." />
<key id="s_word_item_notuse_hpfull" value="Your health is already full." />
<key id="s_word_item_notuse_spfull" value="Your spirit is already full." />
<key id="s_word_item_notuse_epfull" value="Your stamina is already full." />
<key id="s_item_err_use_low_level" value="Your level is too low to use this." />
<key id="s_item_invalid_function_item" value="This item cannot be used." />
<key id="s_item_invalid_do_not_have" value="You don't have that item." />
<key id="s_item_invalid_function_item_this_field" value="This item cannot be used in this field." />
<key id="s_item_invalid_function_item_event_not_start" value="It's not time for the event." />
<key id="s_item_invalid_function_not_use_item" value="This is not the period to use that." />
<key id="s_word_item_change_name_samename" value="You cannot enter the current name." />
<key id="s_err_max_length_check" value="({0}/{1} letters)" />
<key id="s_err_job" value="Wrong job." />
<key id="s_err_lack_coupon" value="Insufficient vouchers." />
<key id="s_err_lack_super_coupon" value="You don't have enough Super Chat Themes." />
<key id="s_err_lack_money" value="Insufficient currency." />
<key id="s_err_lack_meso" value="Not enough mesos." />
<key id="s_err_lack_merat" value="Not enough merets." />
<key id="s_err_lack_merat_blue" value="Not enough blue merets." />
<key id="s_err_lack_merat_red" value="Not enough red merets." />
<key id="s_err_lack_merat_ask" value="Not enough merets.\nDo you want to buy merets?" />
<key id="s_err_lack_payment_item" value="Insufficient items. (Missing Item: $item:{0}$)" />
<key id="s_err_lack_honor_token" value="Not enough valor tokens." />
<key id="s_err_lack_karma_token" value="Not enough treva." />
<key id="s_err_lack_lu_token" value="Not enough rue." />
<key id="s_err_lack_habi_token" value="Not enough havi." />
<key id="s_err_lack_redmerat" value="Not enough red merets." />
<key id="s_err_lack_reverse_coin" value="Not enough reverse coins." />
<key id="s_err_lack_mentor_token" value="Not enough mentor points." />
<key id="s_err_lack_mentee_token" value="Not enough mentee points." />
<key id="s_err_lack_star_point" value="Not enough star points." />
<key id="s_err_lack_guild_event_fund" value="Not enough guild event funds." />
<key id="s_err_not_learn_skill" value="You have not learned this skill yet." />
<key id="s_err_not_allow_pvpField" value="You cannot use your previous skills on the battlefield." />
<key id="s_item_err_code" value="System Error: Item. code = {0}" />
<key id="s_err_invalid_item" value="Item not found." />
<key id="s_err_invalid_item_cannot_buy_by_period" value="You cannot purchase this at this time." />
<key id="s_err_lack_shopitem" value="Not enough supplies." />
<key id="s_err_shop_expired" value="상점이 만료되었습니다." />
<key id="s_msg_item_upgrade_level" value="Upgrade to level {0}" />
<key id="s_msg_item_upgrade_failed" value="The light fades, and the scroll disappears." />
<key id="s_msg_item_upgrade_complete" value="The scroll shines brightly and exudes a mysterious power." />
<key id="s_msg_item_default" value="Use this item?" />
<key id="s_msg_item_open_item_box" value="Use the item?\nIt will be sent to your mailbox if your inventory is full." />
<key id="s_msg_item_open_item_box_limit_tradecount" value="This will use up one of your item's trades, taking it from <FONT color='#FFA200'>{0} to {1}</FONT>. If your inventory is full, it will be sent to your mailbox.\n\nUse the item?" />
<key id="s_msg_item_open_item_box_multi_no_having_count" value="<FONT color='#FF5F5F' >Not enough items.</FONT>\nYou need {1} item(s) to use this.\n(Current: {0})" />
<key id="s_msg_item_open_item_box_multi" value="Use the item?\n{1} will be consumed for each use.\n" />
<key id="s_msg_item_open_item_box_with_key" value="Use the item?\n{0} will be consumed if you use the item.\nIt will be sent to your mailbox\nif your inventory is full." />
<key id="s_msg_item_open_item_box_with_key_limit_tradecount" value="This will use up one of your item's trades, taking it from\n<FONT color='#FFA200'>{1} to {2}</FONT>.\n{0} will be consumed\nIf your inventory is fully, any items obtained will be sent to your mailbox.\nUse the item?" />
<key id="s_msg_item_open_item_box_with_key_no_key" value="You need {0}\nto use the item." />
<key id="s_msg_item_open_item_box_with_key_no_key_count" value="You need {2} {0} to use this item.\n(Current: {1})" />
<key id="s_msg_item_open_dungeon_item_box" value="Use the item and use up one of your\ndungeon reward claims?\nIt will be sent to your mailbox if your inventory is full." />
<key id="s_msg_item_open_item_dont_ask_check" value="Do not ask for 7 days" />
<key id="s_msg_item_open_item_dont_ask_check_buycube" value="Do not ask for 1 day" />
<key id="s_msg_item_open_item_announce_to_world" value="{0} has earned {2} from {1}." />
<key id="s_msg_item_identified_item_announce_to_world" value="{0} analyzed {1} and received {2}." />
<key id="s_msg_item_open_item_announce_to_world_meso" value="{0} has earned {2} meso(s) from {1}." />
<key id="s_msg_item_open_item_announce_to_world_merat" value="{0} has earned {2} meret(s) from {1}." />
<key id="s_msg_dungeon_item_open_dungeon_count" value="You have reached the reward limit." />
<key id="s_msg_currency_overflow" value="If you hit your wallet's {0} limit, any extra that you acquire will be discarded." />
<key id="s_msg_item_use_name" value="Use [{0}]?" />
<key id="s_msg_expand_inven_complete" value="Your inventory has been expanded." />
<key id="s_msg_expand_inven_already_maximum" value="You cannot expand your inventory any further." />
<key id="s_msg_expand_character_slot_complete" value="A character slot has been added." />
<key id="s_msg_expand_character_slot_already_maximum" value="You have already unlocked the maximum number of character slots." />
<key id="s_msg_expand_inven_forced" value="Your <FONT color='#FF5F5F' >{0}</FONT> tab has been fully expanded.\nYou won't be able to expand it any further.\nDo you still want to use it?" />
<key id="s_msg_item_open_massive_error_another_portal" value="There's already a portal here." />
<key id="s_msg_item_open_massive_error_too_many_portal" value="You can't place this here anymore. Please choose another channel or map." />
<key id="s_msg_item_open_massive_open" value="<FONT color='#FFD200' size='18' >Creating a Mini-Game</FONT>\n<FONT size='3'> </FONT>\n<p align='left'>Uses {0}.\n<FONT color='#5CD1E5' >Use the item to create a mini-game portal at your current position and teleport to the mini-game map.</FONT>\n\n Game Name: <FONT color='#FFD200' size='18' >{0}</FONT>\n Max Players: <FONT color='#FFD200' size='18' >{1}</FONT></FONT> \n Portal Duration: <FONT color='#FFD200' size='18' >{2}</FONT>\n<FONT size='3'> </FONT>\n <FONT color='#C9C9C9' >Anyone can enter if a password is not set.</FONT></p>" />
<key id="s_msg_item_open_massive_open_wedding" value="<FONT color='#FFD200' size='18' >[Post-wedding ceremony]</FONT>\n<FONT size='3'> </FONT>\n<p align='left'>Use the item {0}.\n<FONT color='#5CD1E5' >Use the item to create a mini-game portal at your current position and teleport to the mini-game map.</FONT>\n\n • After-party Event Map Name : <FONT color='#FFD200' size='18' >{0}</FONT>\n • Max Players: <FONT color='#FFD200' size='18' >{1}명</FONT></FONT> \n • Portal Duration : <FONT color='#FFD200' size='18' >{2}</FONT>\n<FONT size='3'> </FONT>\n • Set password<FONT color='#C9C9C9' >Anyone can enter if a password is not set.</FONT></p>" feature="Wedding" />
<key id="s_msg_item_open_massive_portal_tooltip" value="\n{1}\nHost: {0}" />
<key id="s_msg_item_open_massive_open_message" value="{0} started a game of {1}." />
<key id="s_msg_item_open_massive_extra_reward_start" value="Get a bonus reward by clearing Mini-Game M. ({1}/{0} per day)" />
<key id="s_msg_item_open_massive_extra_reward_clear" value="You got a bonus Mini-Game M reward. ({1}/{0} per day)" />
<key id="s_msg_item_open_massive_cant_open" value="You cannot do that here." />
<key id="s_msg_item_open_massive_only_wedding_user" value="Photo and after-party tickets can only be used by the bride and groom at the wedding hall." feature="Wedding" />
<key id="s_msg_item_open_massive_invalid_state" value="Currently not available." />
<key id="s_msg_item_active_codi_tab_already_limitless" value="이미 코디 아이텝 탭을 활성화했습니다." feature="Skin2tab" />
<key id="s_msg_item_active_codi_tab_already_period_use_limitless" value="코디 아이템 사용 기간이 남았습니다. 그래도 사용하시겠습니까?" feature="Skin2tab" />
<key id="s_msg_item_active_codi_tab_max" value="{0}일을 초과하여 사용할 수 없습니다." feature="Skin2tab" />
<key id="s_msg_item_active_codi_tab_add_period" value="{0}일을 추가하시겠습니까?" feature="Skin2tab" />
<key id="s_msg_item_active_codi_tab_period" value="{0}일 동안 코디 아이템을 이용할 수 있습니다.\n아이템을 사용하시겠습니까?" feature="Skin2tab" />
<key id="s_msg_item_active_codi_tab_limitless" value="코디 아이템을 무제한 이용할 수 있습니다.\n아이템을 사용하시겠습니까?" feature="Skin2tab" />
<key id="s_msg_item_active_codi_tab_complete_limitless" value="코디 아이템을 무제한 사용할 수 있습니다." feature="Skin2tab" />
<key id="s_msg_item_active_codi_tab_complete_period" value="코디 아이템의 이용 가능 기간이 {0}일 추가되었습니다." feature="Skin2tab" />
<key id="s_msg_item_change_beauty" value="Do you want to use this?\n\nIf you're already using the selected style, you will only be able to adjust its color and length or position and size." />
<key id="s_msg_item_err_change_beauty_invalid_state" value="You cannot use that right now." />
<key id="s_msg_item_install_bill_board_cant_install" value="You cannot do that here." />
<key id="s_msg_item_install_bill_board_invalid_state" value="Currently not available." />
<key id="s_msg_item_auto_install_equipment" value="Automatically equipped {0}." feature="AutoNewEquipSet" />
<key id="s_msg_item_open_item_box_multiopen_ok" value="Open" feature="" />
<key id="s_msg_item_open_item_box_multiopen_title" value="Open Multiple" feature="" />
<key id="s_msg_item_open_blueprint" value="You about to use {0} to change your home. Once done, these changes can't be reverted.\n\nProceed?" />
<key id="s_notify_currency_overflow" value="You reached the max number of {0} that you can have. {0} x{1} cannot be obtained and will disappear." />
<key id="s_notify_currency_overflow_period" value="You reached the weekly max number of {0} that you can have. {0} x{1} cannot be obtained and will disappear." />
<key id="s_err_lack_guild_trophy" value="Not enough guild trophies." />
<key id="s_err_lack_guild_require_date" value="You can buy after being in the guild for 7 days." />
<key id="s_err_lack_guild_master" value="Only the guild leader can make the purchase." />
<key id="s_err_lack_guild_npc_level" value="Upgrade the guild NPC." />
<key id="s_err_lack_achieve" value="You must have the "{0}" trophy to do this." />
<key id="s_err_lack_fame_alliance" value="You must be {1} by {0}." />
<key id="s_err_lack_championship_grade" value="Must be above {0} rank." />
<key id="s_err_lack_championship_join_count" value="Must participate more than {0} times." />
<key id="s_err_cannot_use_by_function_cube_climb" value="You cannot wall climb here." />
<key id="s_err_cannot_use_by_function_cube_jump" value="You cannot jump here." />
<key id="s_err_cannot_use_by_function_cube_skill" value="You cannot use skills here." />
<key id="s_err_cannot_use_by_function_cube_play_instrument" value="You cannot perform here." />
<key id="s_err_cannot_use_in_design_home" value="You cannot use this while furnishing." />
<key id="s_err_cannot_buy_limited_item_more" value="You cannot place furnishings that are not currently available for purchase." />
<key id="s_err_cannot_buy_period" value="This item can only be purchased during the following period:\n{0} - {1}" />
<key id="s_err_cannot_buy_period_from_start" value="This item can be purchased starting on {0}." />
<key id="s_err_cannot_buy_period_day" value="Can only be purchased on {0}." />
<key id="s_err_cannot_buy_period_day_and_date" value="You can only purchase this from {0} during the event period.\nEvent Period: {1}" />
<key id="s_err_cannot_buy_period_fmt_part_time" value="{0:02d}:{1:02d} - {2:02d}:{3:02d}" />
<key id="s_err_cannot_buy_period_fmt_date" value="{0} - {1}" />
<key id="s_err_cannot_buy_period_fmt_date_from_start" value="{0} -" />
<key id="s_err_cannot_buy_period_fmt_date_to_end" value="- {0}" />
<key id="s_err_cannot_buy_period_day_and_parttime" value="This item can only be purchased at the following times.\nDays: {0}\nTime: {1}" />
<key id="s_err_cannot_buy_period_day_and_parttime_and_date" value="This item can only be purchased on a {0} during the following period:\n\n<b><u>Availability</b></u>\n{2}\n{1}" />
<key id="s_err_cannot_install_blueprint" value="That furnishing cannot be placed in the current mode." />
<key id="s_err_cannot_install_maid_in_practice" value="Assistants cannot be placed in the current mode." />
<key id="s_err_cannot_install_nurturing_in_design_home" value="Life Skill items cannot be placed in the current mode." />
<key id="s_err_cannot_install_magic_portal" value="Interior portals cannot be placed in the current mode." />
<key id="s_err_cannot_install_trigger_editor" value="Trigger editors cannot be placed in the current mode." />
<key id="s_err_cannot_install_trigger_controlobject" value="Trigger control items cannot be placed in the current mode." />
<key id="s_err_cannot_install_interior_message" value="Interior message items cannot be placed in the current mode." />
<key id="s_err_cannot_install_event_cube" value="Event items cannot be placed in the current mode." />
<key id="s_err_cannot_install_trophy_relative_cube" value="Trophy-related furnishings cannot be placed in the current mode." />
<key id="s_err_cannot_install_workbench_cube" value="Assistant cooking/alchemy/jeweling stations cannot be placed in the current mode." />
<key id="s_err_cannot_install_fittingdoll" value="Mannequins cannot be placed in the current mode." />
<key id="s_err_cannot_install_ugcdesign_maidin_other" value="UGC items made by others cannot be placed in the current mode." />
<key id="s_err_cannot_sell_petitem_summon" value="You cannot sell a pet while it is summoned. Please unsummon your pet and try again." />
<key id="s_err_cannot_destroy_petitem_summon" value="You cannot discard a pet while it is summoned." />
<key id="s_err_cannot_destroy_petitem_hasitem" value="You cannot discard that pet, as there are items in its bag." />
<key id="s_err_cannot_already_target_level_potion" value="You cannot use the potion because you have reached level {0}." />
<key id="s_err_cannot_destroy_petsystem_opendialog" value="This item can't be destroyed while the pet window is open." />
<key id="s_err_cannot_compose_petitem_hasitem" value="You cannot use that pet as a catalyst, as there are items in its bag." />
<key id="s_err_cannot_change_shortkey_page" value="You can't change the quickslot page." />
<key id="s_err_cannot_evolution_petitem_hasitem" value="You cannot use that pet as a catalyst, as there are items in its bag." feature="PetEvolution01" />
<key id="s_err_cannot_evolution_consume" value="This pet cannot gain any more evolution points." feature="PetEvolution01" />
<key id="s_err_cannot_open_multi_itembox_inventory" value="No additional containers can be opened, as your inventory is full. Please make space in your inventory." />
<key id="s_err_cannot_open_multi_itembox_inventory_fail" value="Unable to open boxes." />
<key id="s_err_cannot_use_maview_in_testsvr" value="Maview cannot be used on the test server." />
<key id="s_mirror_err_not_editable_cp" value="You are currently wearing a hat that cannot be modified." />
<key id="s_mirror_err_not_editable_cp_by_transp_badge" value="You cannot adjust headgear hidden by a Transparency Badge." />
<key id="s_mirror_err_not_equip_cp" value="Please wear a hat that can be modified to use this." />
<key id="s_job_difficulty" value="<FONT color='#FF5F5F' size='15' >The difficulty level of this job is very high.\nOnce you advance in this job, you will not be able to change it.\nDo you want to advance?</FONT>" />
<key id="s_err_job_not_enough_meso" value="You do not have enough mesos to raise your job rank." />
<key id="s_err_job_not_enough_level" value="Your level is not high enough to raise your job rank." />
<key id="s_err_job_bad_job" value="Job advancement is only possible as a beginner." />
<key id="s_err_job_no_penalty" value="You do not need treatment when healthy." />
<key id="s_err_job_not_complete_quest" value="You have not completed the quest." />
<key id="s_err_job_dayofweek" value="Chat conditions do not apply." />
<key id="s_err_job_debuff" value="You cannot use this." />
<key id="s_err_job_guild" value="You must join a guild." />
<key id="s_err_job_unknown" value="Cannot be used due to conditions." />
<key id="s_err_job_inventory_full" value="Empty {0} spaces in your inventory." />
<key id="s_mail_send" value="Mail has been sent." />
<key id="s_mail_return" value="Mail has been returned." />
<key id="s_mail_delete" value="The mail has been deleted." />
<key id="s_notify_mail_recieve" value="You've got mail." />
<key id="s_mail_notify_recieve_gift" value="You received a gift from {0}!" />
<key id="s_mail_err_cannot_attach_item" value="Item cannot be attached." />
<key id="s_mail_get_gift_item" value="{0}\n<font color='#FFD200'>{1} has sent you a gift. Check your mailbox.</font>" />
<key id="s_mail_read_list" value="Do you want to mark all of the selected mail as read?" />
<key id="s_mail_delete_list" value="Do you want to delete all of the selected mail?" />
<key id="s_mail_receive_list" value="Do you want to retrieve all of the attached items on the selected mail?" />
<key id="s_mail_delete_list_received_mail" value="Do you want to delete the mail and attached items?" />
<key id="s_mail_delete_list_attached_mail" value="Your selection includes mail with items attached. Are you sure you want to delete them? Mail without attachments will still be deleted." />
<key id="s_mail_delete_list_attached_mail_checkbox" value="Delete Mail with Items Attached" />
<key id="s_change_ch_err_field" value="You cannot move channels here." />
<key id="s_reveal_taxi_station" value="You have discovered a taxi stop." />
<key id="s_msg_not_visit" value="This place hasn't been discovered yet." />
<key id="s_msg_not_visitable" value="Unable to access because the waterway has been cut off." />
<key id="s_inventory_tab_equip" value="Gear" />
<key id="s_inventory_tab_life" value="Fishing/Music" />
<key id="s_inventory_tab_etc" value="Misc" />
<key id="s_inventory_tab_summon" value="Mount" />
<key id="s_inventory_tab_skin" value="Outfit" />
<key id="s_inventory_tab_gem" value="Gemstone" />
<key id="s_inventory_tab_quest" value="Quest" />
<key id="s_inventory_tab_material" value="Catalysts" />
<key id="s_inventory_tab_mastery" value="Life Skills" feature="BagRenewal01" />
<key id="s_inventory_tab_pet" value="Pet" feature="BagRenewal01" />
<key id="s_inventory_tab_activeskill" value="Consume" feature="BagRenewal01" />
<key id="s_inventory_tab_coin" value="Currency" />
<key id="s_inventory_tab_badge" value="Badges" />
<key id="s_inventory_tab_survival" value="Mushking" feature="SurvivalContents01" />
<key id="s_inventory_tab_lapenshard" value="Lapenshards" feature="Lapenshard01" />
<key id="s_inventory_tab_piece" value="Fragments" feature="InventoryPieceTab" />
<key id="s_inventory_ask_expand" value="Do you want to spend {0} <Img Src='export_common_icon_merat' vspace='-4'></Img> to expand your {1} inventory by {2} spaces?" />
<key id="s_inventory_err_expand_max" value="The selected inventory cannot be expanded any further." />
<key id="s_inventory_err_open_bank_remain_time" value="{0} sec left on cooldown." />
<key id="s_err_stat" value="Attributes are too low." />
<key id="s_err_target" value="No target." />
<key id="s_skill_err_weapon" value="You do not have the necessary weapon equipped." />
<key id="s_err_lack_hp" value="Not enough health." />
<key id="s_err_lack_sp" value="Not enough spirit." />
<key id="s_err_lack_ep" value="Not enough stamina." />
<key id="s_err_unable" value="You cannot do that while tombstoned." />
<key id="s_err_cannot_fly" value="You cannot use this during combat." />
<key id="s_err_cannot_use_here" value="You cannot do that here." />
<key id="s_err_cannot_use_dead" value="You cannot use this while tombstoned." />
<key id="s_err_cannot_use_cooltime" value="You cannot do that yet." />
<key id="s_err_cannot_use_only_shadowworld" value="You can only use this in the Land of Darkness." />
<key id="s_err_require_additional_effect" value="You cannot use that right now." />
<key id="s_err_got_of_control_unable_potion" value="You cannot use potions while tombstoned." />
<key id="s_err_skill_use_disable" value="You cannot use that right now." />
<key id="s_err_skill_use_disable_by_require_condition" value="You do not meet the conditions to use this." />
<key id="s_err_skill_maximum_Height" value="You can't fly any higher." />
<key id="s_err_cannot_use_here_pet_trap" value="You cannot do that while enemies are nearby." />
<key id="s_err_taming_attack_other_user" value="Another player is already capturing that pet." />
<key id="s_skill_require_achieve" value="<font size='3'>\n</font>Requires Trophy: {0}\n • <i>{1}</i>" comment="{0}:[분류]트로피 제목 ex)[생활 트로피]Ⅶ.티끌모아태산, {1}:트로피 목표 ex)5,000메소 주워서 획득하기" />
<key id="s_portal_invincible_effect_name" value="Pocket Realm Departure" />
<key id="s_portal_invincible_effect_description" value="You are leaving the Pocket Realm.\nYou will not take damage until your body and mind\ncompletely escape." />
<key id="s_revival_effect_name" value="Tombshocked" />
<key id="s_revival_effect_description" value="Escaping the tombstone left you weak. \n" />
<key id="s_revival_invincible_effect_name" value="Close Call" />
<key id="s_revival_invincible_effect_description" value="Until you regain your energy, you cannot be damaged further." />
<key id="s_ugc_upload_reserve_ok" value="Reservation complete." />
<key id="s_ugcmap_cant_guide_build" value="You cannot enter Furnishing Mode here." />
<key id="s_ugc_err_craft_mode" value="You cannot furnish here." />
<key id="s_msg_ugc_cannot_edit" value="This file cannot be modified." />
<key id="s_ugcmap_no_home" value="You have not visited the house. Click the house button to go there." />
<key id="s_ugcmap_buy_realestate" value="You rented the plot of land." />
<key id="s_ugcmap_sell_realestate" value="You have canceled your real estate contract." />
<key id="s_ugcmap_use_sale_coupon_to_buy" value="The area has been purchased using a voucher." />
<key id="s_ugcmap_not_owned_item" value="You do not own this item." />
<key id="s_ugcmap_dont_have_ownership" value="You do not own this area." />
<key id="s_ugcmap_cant_be_created" value="That cannot be placed here." />
<key id="s_ugcmap_cant_create_on_place" value="This cannot be placed at this location." />
<key id="s_ugcmap_no_base_cube" value="That cannot be placed at this location." />
<key id="s_ugcmap_cant_create_ground_on_ground" value="This terrain cannot be placed above other terrain." />
<key id="s_ugcmap_cant_create_on_ground" value="Can't put this above terrain." />
<key id="s_ugcmap_only_be_created_on_ground" value="This can only be placed above terrain." />
<key id="s_ugcmap_cant_stack_on" value="That cannot be placed here." />
<key id="s_ugcmap_no_wall_to_attach" value="You must have a nearby wall to place a wall decoration" />
<key id="s_ugcmap_not_wall_attachable" value="This item cannot be placed on the wall." />
<key id="s_ugcmap_only_be_created_on_wall" value="Wall decorations can only be placed on terrain block walls." />
<key id="s_ugcmap_cant_attached_to_this_wall" value="I can't put that on this wall." />
<key id="s_ugcmap_attached_cube_exist" value="A different wall decoration has been placed." />
<key id="s_ugcmap_have_already_attached" value="That item has already been placed." />
<key id="s_ugcmap_create_on_non_empty_area" value="There are still placed items." />
<key id="s_ugcmap_no_cube_to_replace" value="There are no items to exchange." />
<key id="s_ugcmap_cant_be_replaced" value="You cannot replace this with a furnishing of a different type." />
<key id="s_ugcmap_cant_replace_stackable_with_not_stackable" value="This can only be exchanged for items that can be stacked." />
<key id="s_ugcmap_cant_replace_same_cube" value="That item is already placed." />
<key id="s_ugcmap_cant_buy_more_than_two_house" value="You cannot buy this because you have already bought another area." />
<key id="s_ugcmap_need_trophy" value="You do not meet the trophy requirements for this home expansion." />
<key id="s_ugcmap_height_limit" value="You cannot place that above the home's ceiling." />
<key id="s_ugcmap_area_limit" value="You can't place that here." />
<key id="s_ugcmap_building_count" value="You cannot place any more of this structure." />
<key id="s_ugcmap_cant_remove_cube_with_attached" value="Collect the attached items first." />
<key id="s_ugcmap_cant_remove_before_remove_all_stacked" value="The stacked items must be collected first." />
<key id="s_ugcmap_no_cube_to_remove" value="There are no items to collect." />
<key id="s_ugcmap_cant_be_removed" value="That cannot be retrieved." />
<key id="s_ugcmap_no_attached_object" value="There is no wall decoration in the direction you are facing." />
<key id="s_ugcmap_no_cube_to_rotate" value="There are no items to rotate." />
<key id="s_ugcmap_wall_direction_error" value="Face the wall you want to place it on." />
<key id="s_ugcmap_cant_create_under_attach" value="This cannot be placed below a wall decoration." />
<key id="s_ugcmap_cant_attach_upper_cube" value="A wall decoration cannot be placed above this item." />
<key id="s_ugcmap_cant_replace_under_attach" value="This cannot be placed below a wall decoration." />
<key id="s_ugcmap_cant_place_maid" value="You have already placed the maximum number of servants." />
<key id="s_ugcmap_only_place_on_the_floor" value="This can only be placed on the ground." />
<key id="s_ugcmap_not_extension_date" value="The duration cannot be extended yet." />
<key id="s_ugcmap_need_extansion_pay" value="You do not have the necessary funds to extend the contract." />
<key id="s_ugcmap_expired_salable_group" value="This area is waiting to be sold." />
<key id="s_ugcmap_cant_sell_my_home_in_indoor" value="Please sell while outdoors." />
<key id="s_ugcmap_blocked_salable_group" value="Houses planned for redevelopment cannot be purchased." />
<key id="s_ugcmap_try_place_empty" value="There are no items to place." />
<key id="s_ugcmap_cant_replace_type" value="This item cannot be exchanged." />
<key id="s_ugcmap_cant_rotate_attached" value="This wall decoration cannot be rotated." />
<key id="s_ugcmap_lift_error_msg" value="You cannot place that there." />
<key id="s_ugcmap_trigger_count" value="This cannot be placed." />
<key id="s_ugcmap_installnpc_count" value="This cannot be placed." />
<key id="s_ugcmap_no_owner_to_commend" value="This house cannot be recommended." />
<key id="s_ugcmap_add_commend_home_fail_from_db" value="Star Architect nomination failed. Please try again later." />
<key id="s_ugcmap_cant_commend_myself" value="You cannot nominate yourself." />
<key id="s_ugcmap_cant_commend_duplicate" value="Already nominated." />
<key id="s_ugcmap_ban_word_included" value="Contains a forbidden word." />
<key id="s_ugcmap_not_my_house" value="This is not your house." />
<key id="s_ugcmap_automatic_removal" value="<p align='center'><FONT color='#FF5F5F'>All furnishing items placed indoors will be collected.</FONT>\n<FONT color='#c0c0c0'>You can find the items in your furnishing storage. Items equipped to mannequins will be moved to your inventory or sent to you via mail. If you leave while the space is being cleared or if the default placements change, the clearing process will be canceled.</FONT>\n<FONT size='3' color='#FFD200'> </FONT>\nDo you want to clear out your home's interior?</font></p>" />
<key id="s_ugcmap_cant_take_interior_gift_more" value="No more bonuses can be collected today." />
<key id="s_ugcmap_take_interior_gift_fail_from_db" value="Bonuses cannot be received at the moment. Please try again later." />
<key id="s_ugcmap_already_taken_interior_grade_gift" value="You have already received the bonus." />
<key id="s_ugcmap_area_level_extended_successfully" value="You've increased the area of your home." />
<key id="s_ugcmap_height_level_extended_successfully" value="You've increased the height of your home." />
<key id="s_ugcmap_area_level_shrink_successfully" value="You've decreased the area of your home." />
<key id="s_ugcmap_height_level_shrink_successfully" value="You've decreased the height of your home." />
<key id="s_ugcmap_not_use_blueprint_item" value="You can only use a blueprint while in your home." feature="Blueprint" />
<key id="s_ugc_edit_homeless" value="<p align='center'><FONT color='#FFD200'>You haven't been to your house!</FONT>\n<FONT color='#c0c0c0'>If you move to the house after purchasing the furnishing voucher,\nyou will sent indoors.</FONT>\n<FONT size='3' color='#FFD200'> </FONT>\nDo you want to purchase this furnishing voucher?</font></p>" />
<key id="s_ugc_edit_different_indoorsize" value="<p align='center'><FONT color='#FF5F5F'>(Warning) The size of the Furnishing Voucher item is too big for your house.</FONT>\n<FONT color='#c0c0c0'>Even if you buy this furnishing voucher, the item cannot be placed in your current house.</FONT>\n<FONT size='3' color='#FFD200'> </FONT>\nDo you still want to buy this furnishing voucher?</font></p>" />
<key id="s_ugc_edit_demolish_agree" value="I'm sure I want to clear these items." />
<key id="s_ugcmap_package_name" value="You're about to use the <b>{0}</b>." />
<key id="s_ugcmap_package_description" value="<FONT color='#C0C0C0'>This action cannot be reversed. All furnishings included in the package will be moved to your furnishing list (visible in build mode).</FONT> <FONT color='#FF5F5F'>The decoration process will be paused if you exit the house before completion. If you don't meet the requirements to place a furnishing, decoration will continue without that item.</FONT>" />
<key id="s_ugcmap_package_build_condition" value="<b>Requirements For Use</b>" />
<key id="s_ugcmap_package_build_description" value="Requires home interior dimensions {0} or greater.\nHome interior must be clear of all furnishings." />
<key id="s_ugcmap_db" value="System Error" />
<key id="s_ugcmap_center" value="System Error" />
<key id="s_ugcmap_not_exist_craft_item" value="System Error: Item does not exist." />
<key id="s_ugcmap_null_cube_item_info" value="System Error: Furnishing information not found." />
<key id="s_ugcmap_retry_later" value="System Error: Please try again later" />
<key id="s_ugcmap_waiting_for_cube_to_be_created" value="The block is being placed. Please try again later." />
<key id="s_ugcmap_waiting_for_cube_to_be_replaced" value="The block is being exchanged. Please try again later." />
<key id="s_ugcmap_waiting_for_cube_to_be_removed" value="The block is being removed. Please try again later." />
<key id="s_ugcmap_cant_remove_default_cube" value="The default terrain cannot be retrieved." />
<key id="s_ugcmap_cant_rotate_default_cube" value="The default terrain cannot be rotated." />
<key id="s_ugcmap_not_for_sale" value="You cannot purchase at this time." />
<key id="s_ugcmap_my_house" value="You have already purchased this home expansion." />
<key id="s_ugcmap_already_expired" value="The contract has expired." />
<key id="s_ugcmap_system_error" value="Due to a system error, the contract cannot be made." />
<key id="s_ugcmap_already_owned" value="Another player has already completed the purchase." />
<key id="s_ugcmap_salable" value="The contract cannot be canceled." />
<key id="s_ugcmap_not_a_buyable" value="This location cannot be bought." />
<key id="s_ugcmap_no_cube_to_lift" value="There are no objects to lift." />
<key id="s_ugcmap_cant_lift_ugc_cube" value="This object cannot be lifted." />
<key id="s_ugcmap_cant_lift_salable" value="You can't pick up items that belong to someone else." />
<key id="s_construct_up_limit" value="That object cannot be raised any higher." />
<key id="s_construct_down_limit" value="That object cannot be lowered any further." />
<key id="s_construct_only_indoor" value="This item is for indoor use only." />
<key id="s_construct_only_outdoor" value="This item is for outdoor use only." />
<key id="s_construct_category" value="Category: {0}" />
<key id="s_construct_buy_price" value="Price" />
<key id="s_construct_require_interior_level" value="<FONT color='#FF0000'>Requires Trophy for Interior Design Rank {0}</FONT>" />
<key id="s_construct_require_trophy" value="<FONT color='#FF0000'>{0}</FONT>" comment="{0}:미달성 트로피 제목+내용" />
<key id="s_construct_usecount_and_hascount" value="In use / Owned" />
<key id="s_construct_usecount_and_hascount_arg" value="<FONT color='#FFD200'>{0} In Use</FONT><FONT color='#FFFFFF'>/{1} Owned</FONT>" />
<key id="s_construct_edit_design_install_empty_ugc" value="Please retrieve all Block Templates and try again." />
<key id="s_housing_point_interior_level" value="Interior Design Rank {0}" />
<key id="s_ugcmap_not_enough_money" value="You do not have enough funds to complete the purchase." />
<key id="s_ugcmap_have_equipitems" value="There is an item placed at the house." />
<key id="s_err_ugcmap_package_cant_use" value="You cannot use that right now." />
<key id="s_err_ugcmap_package_cant_use_in_this_map" value="Cannot be used on this map." />
<key id="s_err_ugcmap_package_should_use_in_indoor" value="Can only be used in the indoor space of the house." />
<key id="s_err_ugcmap_package_not_a_valid_package_item" value="This is not a normal Furnishing Voucher." />
<key id="s_err_ugcmap_package_cant_use_in_others_home" value="Can only be used in the indoor space of the house." />
<key id="s_err_ugcmap_package_clear_indoor_first" value="You must clear your home of furnishings first." />
<key id="s_err_ugcmap_package_not_a_valid_indoor" value="This is not a normal indoor space." />
<key id="s_err_ugcmap_package_not_a_indoor_for_package_item" value="Interior Furnishing Sets cannot be used in this indoor space." />
<key id="s_err_ugcmap_package_not_a_indoor_for_this_package_item" value="This Interior Furnishing Set cannot be used in this indoor space." />
<key id="s_err_ugcmap_package_failed_to_consume_package_item" value="Interior Furnishing Set failed." />
<key id="s_err_ugcmap_package_automatic_creation_is_in_progress" value="You cannot do that during auto-decoration." />
<key id="s_err_ugcmap_package_automatic_removal_is_in_progress" value="Cannot be done while clearing out the indoor space." />
<key id="s_ugcmap_package_automatic_creation_completed" value="The saved design has been applied." />
<key id="s_ugcmap_package_automatic_removal_completed" value="The home's interior has been cleared of all furnishings." />
<key id="s_ugcmap_package_automatic_creation_suspended" value="Automatic decoration has been paused." />
<key id="s_ugcmap_package_automatic_removal_suspended" value="You have canceled the removal of all interior furnishings." />
<key id="s_ugcmap_package_automatic_creation_skip" value="The material needed for placement cannot be used. Placement will continue without it." />
<key id="s_ugcmap_package_open_package_when_indoor_size_is_different" value="<FONT color='#FF5F5F'>Your home's interior dimensions do not meet the requirements to begin auto-decorating with this furnishing package.</Font>\nDo you want retrieve the items without auto-decorating? <b>This will consume the furnishing package.</b>" />
<key id="s_ugcmap_package_open_package_when_indoor_is_empty" value="<FONT color='#FF5F5F'>You must clear your home's interior of furnishing to begin auto-decorating.</Font>\nDo you want to retrieve the materials without auto-decorating? <b>This will consume the furnishing package.</b>" />
<key id="s_err_ugcmap_design_home_should_use_in_design_home" value="Enter the Decor Planner and try again." />
<key id="s_err_ugcmap_design_home_not_my_design_home" value="You can only do that in the Decor Planner." />
<key id="s_err_ugcmap_design_home_indoor_isnt_empty" value="You must clear the home first." />
<key id="s_err_ugcmap_design_home_should_use_in_home" value="Must be used in the indoor space." />
<key id="s_err_ugcmap_design_home_nothing_to_import" value="There is no saved floor plan." />
<key id="s_err_ugcmap_design_home_invalid_item" value="System Error" />
<key id="s_err_ugcmap_design_home_not_enough_meso" value="Not enough mesos." />
<key id="s_err_ugcmap_design_home_not_enough_merat" value="Not enough merets." />
<key id="s_err_ugcmap_design_home_not_enough_item" value="Not enough funds." />
<key id="s_err_ugcmap_design_home_not_enough_honor_token" value="Not enough valor tokens." />
<key id="s_err_ugcmap_design_home_not_enough_karma_token" value="Not enough treva." />
<key id="s_err_ugcmap_design_home_not_enough_lu_token" value="Not enough rue." />
<key id="s_err_ugcmap_design_home_not_enough_habi_token" value="Not enough havi fruit." />
<key id="s_err_ugcmap_design_home_not_enough_shard_token" value="Not enough shadow fragments." />
<key id="s_err_ugcmap_design_home_not_enough_red_merat_token" value="Not enough red merets." />
<key id="s_err_ugcmap_design_home_not_enough_reverse_coin" value="Not enough reverse coins." />
<key id="s_err_ugcmap_design_home_not_enough_mentor_token" value="Not enough mentor points." />
<key id="s_err_ugcmap_design_home_not_enough_mentee_token" value="Not enough mentee points." />
<key id="s_err_ugcmap_design_home_not_enough_star_point" value="Not enough star points." />
<key id="s_err_ugcmap_design_home_invalid_design_index" value="Select the correct floor plan." />
<key id="s_err_ugcmap_cant_save_maid" value="All furnishing placements except for assistant placement will be saved.\nDo you want to save?" />
<key id="s_err_ugcmap_guide_object_cant_go_far" value="You have moved beyond the maximum movement area. Please move the character and try again." />
<key id="s_err_ugcmap_cant_find_delegate_owner" value="You cannot do that unless the home owner is present." />
<key id="s_err_ugcmap_only_owner_can_set_balance" value="Only the owner of the house can set the balance." />
<key id="s_err_ugcmap_meso_balance_should_be_positive_number" value="The meso balance must be set as a positive value." />
<key id="s_err_ugcmap_merat_balance_should_be_positive_number" value="The meret balance must be set as a positive value." />
<key id="s_err_ugcmap_meso_merat_balance_description" value="Provides an allowance for guests to spend on furnishing your home. The budget will be reset to 0 if the owner leaves the home." />
<key id="s_err_ugcmap_nothing_to_export" value="No blocks are placed." />
<key id="s_err_ugcmap_cant_use_clear_ugc_map" value="Cannot be used here." />
<key id="s_err_ugcmap_not_massive_event_field" value="Can only be used on the furnishing event map." />
<key id="s_err_ugcmap_not_enough_meso_balance" value="You do not have enough mesos." />
<key id="s_err_ugcmap_not_enough_merat_balance" value="You do not have enough merets." />
<key id="s_err_ugcmap_cant_find_delegator_in_this_map" value="Character not found." />
<key id="s_err_ugcmap_cant_full_delegator_user" value="You have reached the limit of people you can grant furnishing authority to." />
<key id="s_err_ugcmap_cant_duplicate_delegator_in_this_map" value="That character is already permitted to furnish your home." />
<key id="s_err_ugcmap_cant_build_empty_ugc" value="Double-click the designer item icon to edit the template again." />
<key id="s_err_ugcmap_should_use_in_home" value="Can only be used in the indoor space of the house." />
<key id="s_err_ugcmap_construct_exp_overtime" value="You can't earn any more experience from decorating today." />
<key id="s_ugcmap_add_delegator_user" value="You have been granted furnishing rights." />
<key id="s_ugcmap_remove_delegator_user" value="Your furnishing rights have been revoked." />
<key id="s_ugcmap_give_delegator_user" value="{0} has been granted permission to furnish this home." />
<key id="s_ugcmap_release_delegator_user" value="{0}'s rights to furnish have been revoked." />
<key id="s_ugcmap_removeall_delegator_user" value="The people inside cannot furnish if you are outside the house." />
<key id="s_err_ugcmap_blueprint_preview_cube_action_disabled" value="You cannot do that in blueprint preview." />
<key id="s_err_ugcmap_blueprint_preview_already" value="You can't do that while previewing a blueprint." />
<key id="s_err_ugcmap_blueprint_preview_after" value="Please try again later." />
<key id="s_buddy_err_unknown" value="System Error: Community" />
<key id="s_notify_levelup" value="Reached level {0}." />
<key id="s_notify_learn_skill" value="Learned the [{0}] skill." />
<key id="s_notify_adventure_levelup" value="Reached Prestige Rank {0}." />
<key id="s_notify_achieve_reward_function" value="You can automatically pick up items." />
<key id="s_notify_achieve_reward_deadfail" value="You cannot claim trophy rewards while tombstoned." />
<key id="s_notify_groupchat_invite" value="{0} invited {1} to the group chat." />
<key id="s_notify_groupchat_invited" value="{0} invited you to the group chat." />
<key id="s_notify_groupchat_leave" value="{0} left the chat room." />
<key id="s_notify_groupchat_login" value="{0} logged in." />
<key id="s_notify_groupchat_logout" value="{0} logged out." />
<key id="s_notify_groupchat_reject" value="{0} declined the group chat invitation." />
<key id="s_err_groupchat_maxjoin" value="Group chats can include up to 20 people." />
<key id="s_err_groupchat_null_target_user" value="You cannot invite that player to the group chat." />
<key id="s_err_groupchat_add_member_target" value="You cannot invite that player to the group chat." />
<key id="s_err_groupchat_join_exist" value="You are already participating in the chat." />
<key id="s_err_groupchat_name_exist" value="There is a group chat with the same name." />
<key id="s_err_groupchat_maxgroup" value="{0} is already participating in 3 group chats." />
<key id="s_groupchat_list" value="Which chat room will you invite them to?" />
<key id="s_groupchat_exit" value="Do you want to leave the {0} chat room?" />
<key id="s_fittingdoll_error_invalid_owner" value="This is not your mannequin." />
<key id="s_fittingdoll_InvalidDoll" value="System Error: Mannequin. Code = {0}" />
<key id="s_fittingdoll_InvalidItemType_Skin" value="This mannequin can only wear equipment items." />
<key id="s_fittingdoll_InvalidItemType_Equip" value="This mannequin can only wear outfit items." />
<key id="s_fittingdoll_InventoryFull" value="Your inventory is full." />
<key id="s_fittingdoll_InvalidItem" value="This item cannot be equipped." />
<key id="s_fittingdoll_InvalidItem_rule" value="Cannot be used with the current weapon." />
<key id="s_fittingdoll_Invaliditem_limit" value="One or more of the selected items cannot be worn due to level, gender, or job restrictions." />
<key id="s_fittingdoll_Invaliditem_male" value="This mannequin can only wear men's or unisex items." />
<key id="s_fittingdoll_Invaliditem_female" value="This mannequin can only wear women's or unisex items." />
<key id="s_fittingdoll_Invalid_slot" value="You cannot place that item in that slot." />
<key id="s_fittingdoll_Invalid_binding" value="You cannot change clothes because this item belongs to another character." />
<key id="s_fittingdoll_Invalid_moveDisable" value="You cannot change into clothes that were placed by another character." />
<key id="s_fittingdoll_Invalid_doll" value="The mannequin has been destroyed." />
<key id="s_fittingdoll_failswap" value="Failed to switch gear. Please check your inventory." />
<key id="s_fittingdoll_transform_done_all" value="You've successfully swapped gear with the mannequin!" />
<key id="s_fittingdoll_transform_done_partially" value="Some items could not be swapped." />
<key id="s_msg_chatting_welcome" value="Welcome to MapleStory 2. Have a wonderful day!" />
<key id="s_msg_chatting_welcome_pubtest1" value="Welcome to the Reset server.\nThe service may be slightly unstable on this server.\nThe content on the Reset server may be different from the content that will appear on the Scania server later." />
<key id="s_msg_chatting_welcome_pubtest2" value="Welcome to the Reset server.\nThe service may be slightly unstable on this server.\nThe content on the Reset server may be different from the content that will appear on the Scania server later." />
<key id="s_msg_chatting_welcome_pubtest1" value="Welcome to the Reset server.\nThe service may be slightly unstable on this server.\nThe content on the Reset server may be different from the content that will appear on the Scania server later." locale="CN" />
<key id="s_msg_chatting_welcome_pubtest2" value="Welcome to the Reset server.\nThe service may be slightly unstable on this server.\nThe content on the Reset server may be different from the content that will appear on the Scania server later." locale="CN" />
<key id="s_msg_chatting_changechannel" value="Connected to channel {0}." />
<key id="s_msg_chatting_consume_merat" value="You spent {0} meret(s)." />
<key id="s_msg_chatting_consume_merat_blue" value="You spent {0} blue meret(s)." />
<key id="s_msg_chatting_consume_merat_red" value="You spent {0} red meret(s)." />
<key id="s_msg_chatting_consume_merat_message" value="Meret price may change during official launch." />
<key id="s_buddy_alert_receive_request" value="New friend request received." />
<key id="s_party_leave_me" value="You left the party." />
<key id="s_party_break" value="The party has been disbanded." />
<key id="s_party_join_me" value="You joined the party." />
<key id="s_party_expel_me" value="You were kicked from the party." />
<key id="s_party_join_someone" value="{0} joined the party." />
<key id="s_party_leave_someone" value="{0} left the party." />
<key id="s_party_expel_someone" value="{0} has been kicked from the party." />
<key id="s_party_member_login" value="Party member {0} logged in." />
<key id="s_party_member_logout" value="Party member {0} logged out." />
<key id="s_party_chief_me" value="You are now the party leader." />
<key id="s_party_chief_someone" value="{0} is now the party leader." />
<key id="s_party_member_dead_tomb" value="Your party member, {0}, is stuck under a tombstone." />
<key id="s_party_member_dead_dark_tomb" value="Your party member, {0}, is stuck under a metal tombstone." />
<key id="s_party_err_no_party" value="You are not in a party." />
<key id="s_party_check_change_chief" value="Make {0} the party leader?" />
<key id="s_party_check_expel_member" value="Kick {0}?" />
<key id="s_party_expel_boss_room" value="You cannot kick a party member while you are fighting a dungeon boss." />
<key id="s_party_expel_maple_survival_squad" value="You cannot kick a player that is already in a Mushking Royale match." />
<key id="s_party_invite_boss_room" value="You cannot send a party invite while fighting a dungeon boss." />
<key id="s_party_someone_get_high_item" value="{0} got {1}." />
<key id="s_party_auto_join_confirm" value="Join the <FONT color='#FFA200'>[{0}]</FONT> party?" />
<key id="s_party_match_dungeon" value="A party has been found. Enter the dungeon lobby?" />
<key id="s_party_match_dungeon_register" value="Searching for {0} dungeon party." />
<key id="s_party_match_dungeon_unregister" value="The {0} dungeon party search has been canceled." />
<key id="s_party_create_dungeon" value="{0} Dungeon has been created. Would you like to enter?" />
<key id="s_party_create_club" value="Enter club name.\n(Maximum {1} letters.)" comment="{0}:한글 최대글자수 {1}:최대글자수" feature="Club" />
<key id="s_party_change_name" value="Enter a new club name. (Maximum {1} letters.)\n\n<FONT color='#FF5F5F' >Clubs can be renamed once every hour.</FONT>" comment="{0}:한글 최대글자수 {1}:최대글자수" feature="Club" />
<key id="s_party_dungeon_giveup" value="Abandoning the dungeon will fail the challenge for all party members.\nProceed?" />
<key id="s_party_notify_dungeon_giveup" value="The party leader has abandoned the dungeon." />
<key id="s_party_join_dungeon_helper_msg" value="<FONT color='#FFA200'>{0}</FONT> has asked for help with <FONT color='#FFA200'>{1}</FONT>. Will you join their party?" feature="FindDungeonHelp" />
<key id="s_party_join_dungeon_member_msg" value="<FONT color='#FFA200'>{0}</FONT> has asked for help with <FONT color='#FFA200'>{1}</FONT>. Will you join their party?" feature="FindDungeonHelp" />
<key id="s_party_dungeon_name" value="{0}" />
<key id="s_party_is_my_dungeon_help" value="You can't respond to your own call for help." feature="FindDungeonHelp" />
<key id="s_party_has_party" value="You are already in a party." />
<key id="s_party_find_dungeon_helper_cooldown" value="You can ask for help again after {0} sec." feature="FindDungeonHelp" />
<key id="s_party_join_only_dungeon_expert" value="You can only help with dungeons that you've cleared {1} or more times. (After Lv. 50, you can help with any normal adventures that are below that level.)" feature="FindDungeonHelp" />
<key id="s_party_change_help_dungeon" value="The requested dungeon has been changed to {0}." feature="FindDungeonHelp" />
<key id="s_party_vote_title_kick_user" value="Kick <FONT color='#FFA200'>{0}</FONT> from the party? Kicking this party member requires at least <FONT color='#FFA200'>{1}</FONT> votes. ({2})" />
<key id="s_party_vote_kick_user_confirm" value="Initiate a vote to kick <FONT color='#FFA200'>{0}</FONT> from party?" />
<key id="s_party_vote_kick_user_notify" value="{0} has initiated a party kick vote." />
<key id="s_party_vote_expired" value="The voting period has ended." />
<key id="s_party_vote_rejected_kick_user" value="The vote to kick failed." />
<key id="s_party_vote_canceled" value="The vote was canceled." />
<key id="s_party_vote_ready_message" value="The party leader has initiated a ready check." />
<key id="s_party_vote_ready_message_end" value="The ready check has been completed." />
<key id="s_club_create" value="The club "{0}" has been created." feature="Club" />
<key id="s_club_create_ask" value="{0} has invited you to the club "<FONT color='#FFA200'>{1}</FONT>." Do you want to join this club?" feature="Club" />
<key id="s_club_break" value="The club "{0}" has been disbanded." feature="Club" />
<key id="s_club_invite_someone" value="You invited {0} to the {1} club." feature="Club" />
<key id="s_club_invite_me" value="{0} has invited you to the <FONT color='#FFA200'>{1}</FONT> club. Do you want to join this club?" feature="Club" />
<key id="s_club_invite_cant_me" value="You cannot invite yourself." feature="Club" />
<key id="s_club_invite_invalid_charname" value="Invalid name." feature="Club" />
<key id="s_club_join" value="<FONT color='#938eff'>Joined the {0} club.</FONT>" feature="Club" />
<key id="s_club_join_reject" value="<FONT color='#938eff'>Declined the {0} club invitation.</FONT>" feature="Club" />
<key id="s_club_join_reject_invite" value="<FONT color='#938eff'>{0} has declined the {1} club invitation.</FONT>" feature="Club" />
<key id="s_club_join_reject_timeout" value="<FONT color='#938eff'>{0} cannot receive {1} club invitations now.</FONT>" feature="Club" />
<key id="s_club_join_reject_logout" value="<FONT color='#938eff'>{0} cannot receive {1} club invitations now.</FONT>" feature="Club" />
<key id="s_club_leave" value="<FONT color='#938eff'>Left the {0} club.</FONT>" feature="Club" />
<key id="s_club_notify_leave" value="<FONT color='#938eff'>{0} has left the {1} club.</FONT>" feature="Club" />
<key id="s_club_notify_accept_invite" value="<FONT color='#938eff'>{1} has accepted {0}'s invitation to the {2} club.</FONT>" feature="Club" />
<key id="s_club_notify_login_member" value="<FONT color='#938eff'>{0} club member {1} has logged in.</FONT>" feature="Club" />
<key id="s_club_notify_logout_member" value="<FONT color='#938eff'>{0} club member {1} has logged out.</FONT>" feature="Club" />
<key id="s_club_notify_change_master" value="<FONT color='#938eff'>{1} is now the leader of the {0} club.</FONT>" feature="Club" />
<key id="s_club_notify_change_master_me" value="<FONT color='#938eff'>You are now the leader of the {0} club.</FONT>" feature="Club" />
<key id="s_club_notify_change_buff" value="<FONT color='#938eff'>The buff for the club "{0}" has been changed.</FONT>" feature="Club" />
<key id="s_club_notify_change_name" value="<FONT color='#938eff'>The {0} club has been renamed {1}.</FONT>" feature="Club" />
<key id="s_club_ui_offline_time_day" value="{0} day(s)" feature="Club" />
<key id="s_club_ui_offline_time_hour" value="{0} hour(s)" feature="Club" />
<key id="s_club_ui_offline_time_min" value="{0} minute(s)" feature="Club" />
<key id="s_club_ui_offline_time_sec" value="A moment ago" feature="Club" />
<key id="s_club_ui_offline_unknown" value="Unknown" feature="Club" />
<key id="s_club_ui_offline" value="Offline {0}" feature="Club" />
<key id="s_club_ui_member_location" value="Ch. {0} | {1}" feature="Club" />
<key id="s_club_ui_member_detail" value="Lv. {0} {1}" feature="Club" />
<key id="s_club_ui_invite_member" value="Enter the name of the character you want to invite to your club." feature="Club" />
<key id="s_club_ui_create" value="Enter the <FONT color='#FFA200'>club name you want to use</FONT>.\nThis costs <FONT color='#FFA200'>{0}</FONT><Img Src='export_common_icon_meso' vspace='-4'></Img>.\n(Up to 10 letters can be entered. Spaces are not allowed.)" feature="Club" />
<key id="s_club_ui_leave" value="Do you really want to leave the {0} club?</FONT>" feature="Club" />
<key id="s_club_ui_change_master" value="Do you want to transfer your {1} club leader authority to {0}?" feature="Club" />
<key id="s_club_ui_create_time" value="{1}/{2}/{0}" feature="Club" />
<key id="s_club_ui_select_target_member" value="Select a target first." feature="Club" />
<key id="s_club_ui_current_member" value="({0}/{1} people)" feature="Club" />
<key id="s_club_ui_msg_buff_setting" value="Select the club buff you want to apply to your club parties. (Only 1 club buff can be active at any time)." feature="Club" />
<key id="s_club_err_unknown" value="Unknown club error" feature="Club" />
<key id="s_club_err_create" value="The club "{0}" could not be created." feature="Club" />
<key id="s_club_err_create_reject" value="{0} declined the invitation. The club "{1}" could not be created." feature="Club" />
<key id="s_club_err_null_club" value="Cannot find the club." feature="Club" />
<key id="s_club_err_create_no_party" value="You are either not in a party or not the party leader." feature="Club" />
<key id="s_club_err_already_exist" value="That character is already a member of the club." feature="Club" />
<key id="s_club_err_wait_inviting" value="Unable to send invite." feature="Club" />
<key id="s_club_err_blocked" value="Failed to deliver club invitation." feature="Club" />
<key id="s_club_err_has_guild" value="You have already joined that club." feature="Club" />
<key id="s_club_err_invalid_guild" value="Invalid club." feature="Club" />
<key id="s_club_err_null_user" value="Cannot invite to the club." feature="Club" />
<key id="s_club_err_name_exist" value="A club with this name already exists." feature="Club" />
<key id="s_club_err_name_value" value="Contains a forbidden word." feature="Club" />
<key id="s_club_err_null_member" value="Cannot find the club member." feature="Club" />
<key id="s_club_err_exist_member" value="Clubs cannot be disbanded while they still have members." feature="Club" />
<key id="s_club_err_full_member" value="The club is full." feature="Club" />
<key id="s_club_err_not_join_member" value="Not a registered club member." feature="Club" />
<key id="s_club_err_cannot_leave_master" value="Club leaders cannot leave their own clubs." feature="Club" />
<key id="s_club_err_expel_target_master" value="You cannot kick the club leader." feature="Club" />
<key id="s_club_err_no_master" value="Only club leaders can do this." feature="Club" />
<key id="s_club_err_fail_addmember" value="Failed to invite club member." feature="Club" />
<key id="s_club_err_null_invite_member" value="This character was not invited." feature="Club" />
<key id="s_club_err_none" value="Undefined club error" feature="Club" />
<key id="s_club_err_block" value="Club-related functions are restricted." feature="Club" />
<key id="s_club_err_fail_this_field" value="The target is in a location where they cannot be invited." feature="Club" />
<key id="s_club_err_full_club" value="You can only create up to {0} clubs." feature="Club" />
<key id="s_club_err_full_club_member" value="That character cannot join any more clubs." feature="Club" />
<key id="s_club_err_notparty_alllogin" value="Some of your party members cannot be invited to the club." feature="Club" />
<key id="s_club_err_remain_time" value="<FONT color='#FF5F5F' >Clubs can be renamed only once every hour. </FONT> Please try again later." feature="Club" />
<key id="s_club_err_same_club_name" value="This is the club's current name." feature="Club" />
<key id="s_club_err_already_creating" value="You've already created a club." feature="Club" />
<key id="s_club_err_clubname_has_blank" value="You cannot use spaces in club names." feature="Club" />
<key id="s_guild_err_no_guild" value="You are not a member of a guild." />
<key id="s_guild_err_invalide_create_name" value="Guild names can be 2 to 10 letters long." />
<key id="s_guild_create" value="The guild {0} has been created." />
<key id="s_guild_break" value="The guild has been disbanded." />
<key id="s_guild_invite_someone" value="You invited {0} to the guild." />
<key id="s_guild_invite_me" value="{0} has invited you to join the\n<FONT color='#FFA200'>{1}</FONT> guild.\nDo you want to join the guild?" />
<key id="s_guild_invite_cant_me" value="You cannot invite yourself." />
<key id="s_guild_invite_invalid_charname" value="Invalid name." />
<key id="s_guild_donate_complete" value="The donation has been completed." />
<key id="s_guild_attend_complete" value="You checked in." />
<key id="s_guild_join" value="<FONT color='#ff8adf'>You joined the guild {0}.</FONT>" />
<key id="s_guild_join_reject" value="<FONT color='#ff8adf'>You have rejected the guild invitation from {0}.</FONT>" />
<key id="s_guild_join_reject_invite" value="<FONT color='#ff8adf'>{0} has rejected the guild invitation.</FONT>" />
<key id="s_guild_join_reject_timeout" value="<FONT color='#ff8adf'>{0} cannot receive the guild invitation at the moment.</FONT>" />
<key id="s_guild_join_reject_logout" value="<FONT color='#ff8adf'>{0} cannot receive the guild invitation at the moment.</FONT>" />
<key id="s_guild_leave" value="<FONT color='#ff8adf'>You have left {0}.</FONT>" />
<key id="s_guild_leave_master_cant" value="The guild leader cannot withdraw from the guild." />
<key id="s_guild_change_notify" value="The guild notice has been changed." />
<key id="s_guild_notify_leave" value="<FONT color='#ff8adf'>{0} has left the guild.</FONT>" />
<key id="s_guild_notify_notify_message" value="<FONT color='#ff8adf'>{0}</FONT>" />
<key id="s_guild_change_grade_sucess" value="The name and/or privileges of the {0} rank have changed." />
<key id="s_guild_grade_default_master" value="Leader" />
<key id="s_guild_grade_default_group1" value="Co-Leader" />
<key id="s_guild_grade_default_group2" value="Guild Member" />
<key id="s_guild_grade_default_group3" value="Initiate" />
<key id="s_guild_grade_default_group4" value="Guild Member 2" />
<key id="s_guild_grade_default_group5" value="Initiate 2" />
<key id="s_guild_extend_capacity_success" value="The maximum amount of guild members is now {0}." />
<key id="s_guild_extend_capacity_err_cannot" value="The guild member maximum cannot be changed." />
<key id="s_guild_extend_capacity_err_current" value="A problem occurred while changing the maximum amount of guild members." />
<key id="s_guild_search_same_propensity" value="Preferences have remained the same." />
<key id="s_guild_search_max_join_request" value="You can submit up to 10." />
<key id="s_guild_search_last_request" value="Please wait a moment." />
<key id="s_guild_search_null_join_guild_request" value="Application not found." />
<key id="s_guild_skill_use_skill" value="You have used the [{0}] skill." />
<key id="s_guild_gain_exp" value="Your guild received {0} guild experience." />
<key id="s_guild_gain_fund" value="You have acquired {0} guild funds." />
<key id="s_guild_gain_exp_fund" value="Your guild received {0} guild experience and {1} guild funds." />
<key id="s_guild_open_event" value="The {0} mini-game is now open." />
<key id="s_guild_storage_history_gift" value="{0} has gifted {1} x{2} to {3}. ({4})" />
<key id="s_guild_storage_gift" value="You have gifted an item to guild member {0}. The item will arrive shortly via mail." />
<key id="s_guild_storage_not_enough_gift_need_period" value="Can gift after being a guild member for {0} days." />
<key id="s_guild_vsGame_another_game_exist" value="The game is in progress." />
<key id="s_guild_vsGame_can_regist" value="Guild mini-game wars can now begin." />
<key id="s_guild_gain_contribution" value="You have acquired {0} contributions." />
<key id="s_guild_notify_change_grade" value="<FONT color='#ff8adf'>{0}'s guild rank and authority have changed.</FONT>" />
<key id="s_guild_notify_accept_invite" value="<FONT color='#ff8adf'>{0} invited {1} to the guild, and they accepted.</FONT>" />
<key id="s_guild_notify_expel_member" value="<FONT color='#ff8adf'>{0} has kicked {1} out of the guild.</FONT>" />
<key id="s_guild_notify_expeled" value="<FONT color='#ff8adf'>You have been kicked out of the guild.</FONT>" />
<key id="s_guild_notify_expeled_from" value="<FONT color='#ff8adf'>{0} has kicked you out of the guild.</FONT>" />
<key id="s_guild_notify_login_member" value="<FONT color='#ff8adf'>Guild member {0} has logged on.</FONT>" />
<key id="s_guild_notify_logout_member" value="<FONT color='#ff8adf'>Guild member {0} has logged off.</FONT>" />
<key id="s_guild_notify_change_member_grade" value="<FONT color='#ff8adf'>{0} is now the rank of [{1}].</FONT>" />
<key id="s_guild_notify_change_member_grade_me" value="<FONT color='#ff8adf'>Changed to the rank of [{0}] in the guild.</FONT>" />
<key id="s_guild_notify_change_master" value="<FONT color='#ff8adf'>{0} is now the guild leader.</FONT>" />
<key id="s_guild_notify_change_master_me" value="<FONT color='#ff8adf'>You have become the guild leader.</FONT>" />
<key id="s_guild_notify_change_notify" value="<FONT color='#ff8adf'>{0} has changed the guild notice.</FONT>" />
<key id="s_guild_notify_change_mark" value="<FONT color='#ff8adf'>{0} has changed the guild emblem.</FONT>" />
<key id="s_guild_notify_change_name" value="<FONT color='#ff8adf'>Guild name has changed to [{0}].</FONT>" />
<key id="s_guild_notify_change_capacity" value="<FONT color='#ff8adf'>The guild's member maximum has been changed.</FONT>" />
<key id="s_guild_notify_achieve_progress" value="<FONT color='#ff8adf'>{0} has obtained a trophy. {1}</FONT>" />
<key id="s_guild_notify_achieve_complete" value="<FONT color='#ff8adf'>{0} has completed the final tier of a trophy! {1}</FONT>" />
<key id="s_guild_notify_pvp_get_grade" value="<FONT color='#ff8adf'>Guild battleground rank has changed. : {0}</FONT>" />
<key id="s_guild_notify_pvp_regist" value="<FONT color='#ff8adf'>{0} has applied for the Guild Battle.</FONT>" />
<key id="s_guild_notify_pvp_unregist" value="<FONT color='#ff8adf'>{0} has canceled the application for the Guild Battle.</FONT>" />
<key id="s_guild_notify_pvp_result_win" value="<FONT color='#ff8adf'>You have won against the guild {0}.</FONT>" />
<key id="s_guild_notify_pvp_result_lose" value="<FONT color='#ff8adf'>You have lost to the guild {0}.</FONT>" />
<key id="s_guild_notify_search_join_accept" value="<FONT color='#ff8adf'>{0} accepted {1}'s guild membership application.</FONT>" />
<key id="s_guild_notify_search_join_reject" value="<FONT color='#ff8adf'>{0} denied {1}'s guild membership application.</FONT>" />
<key id="s_guild_notify_use_skill_user" value="<FONT color='#ff8adf'>{0} used the {1} skill.</FONT>" />
<key id="s_guild_notify_open_event_user" value="<FONT color='#ff8adf'>{0} started a game of [{1}].</FONT>" />
<key id="s_guild_notify_house_upgrade" value="<FONT color='#ff8adf'>{0} has changed the guild house theme to [{2}].</FONT>" />
<key id="s_guild_notify_change_poster" value="<FONT color='#ff8adf'>{0} has changed the guild poster.</FONT>" />
<key id="s_guild_notify_upgrade_skill" value="<FONT color='#ff8adf'>{0} upgraded the skill [{1}].</FONT>" />
<key id="s_guild_notify_upgrade_npc" value="<FONT color='#ff8adf'>{0} upgraded {1} to level {2}.</FONT>" />
<key id="s_guild_notify_vsGame_open" value="Would you like to join your guild in a mini-game duel against another guild?\n\nClick Yes to teleport immediately." />
<key id="s_guild_notify_vsGame_register_ticket" value="You have requested a guild mini-game war." />
<key id="s_guild_notify_vsGame_unregister_ticket" value="You have canceled the guild mini-game war." />
<key id="s_guild_notify_vsGame_match_canceled" value="Cannot find mini-game war opponent." />
<key id="s_guild_notify_vsGame_reward_exp" value="Your guild received {0} guild experience." />
<key id="s_guild_notify_vsGame_reward_fund" value="You have acquired {0} guild funds." />
<key id="s_guild_pvp_matching_complete_success" value="<FONT color='#ff8adf'>Guild Battle matchmaking is complete.</FONT>" />
<key id="s_guild_pvp_matching_complete_fail" value="<FONT color='#ff8adf'>Guild Battle matchmaking failed. If you would like to participate in the next battle, please apply again.</FONT>" />
<key id="s_guild_pvp_matching_complete_popup" value="Guild Battle matchmaking complete. Do you want to enter the battle arena?" />
<key id="s_guild_pvp_already_pvp_field" value="<FONT color='#ff8adf'>You have already arrived at the Glorious Arena.</FONT>" />
<key id="s_guild_pvp_can_regist_when_login" value="You can participate in the Guild Battle. Try applying now." />
<key id="s_guild_pvp_can_regist_when_playing" value="You can apply for the Guild Battle now." />
<key id="s_guild_pvp_join_only_matched" value="The matches for the current Guild Battle have not finished." />
<key id="s_guild_pvp_join_not_equal_championship_guild" value="You cannot participate in this season's guild championship with the current guild." />
<key id="s_guild_pvp_done_choose_championship_guild" value="You can participate in the Guild Championship now." />
<key id="s_guild_search_choose_propensity" value="You did not select a guild focus, active time or member age range to search by." />
<key id="s_guild_search_guild_search_no_result" value="No search results." />
<key id="s_guild_search_join_reject_mail_sender" value="Guild Application Helper" />
<key id="s_guild_search_join_reject_mail_title" value="The guild application for {0} has been denied." />
<key id="s_guild_search_join_reject_mail_content" value="Hello! I'm the person responsible for overseeing guild applications.\nUnfortunately, your membership application for {0} has been denied.\n\nGo to Guild > Search to search for another guild on the guild finder menu. Try applying to a new guild! I hope you get accepted soon and meet some great guild members!" />
<key id="s_guild_search_request_join_guild" value="You have applied to the guild {0}." />
<key id="s_guild_search_cancel_request_join_guild" value="You have canceled the membership application for the guild {0}." />
<key id="s_guild_search_accept_requested_member" value="You have accepted {0}'s guild membership application." />
<key id="s_guild_search_reject_requested_member" value="You have denied {0}'s guild membership application." />
<key id="s_guild_chat_mega_phone" value="<FONT color='#ff8adf'>[{0}] {1}</FONT>" />
<key id="s_guild_ui_offline_time_day" value="{0} day(s)" />
<key id="s_guild_ui_offline_time_hour" value="{0} hour(s)" />
<key id="s_guild_ui_offline_time_min" value="{0} minute(s)" />
<key id="s_guild_ui_offline_time_sec" value="A moment ago" />
<key id="s_guild_ui_offline_unknown" value="Unknown" />
<key id="s_guild_ui_offline" value="Offline {0}" />
<key id="s_guild_ui_member_location" value="Ch. {0} | {1}" />
<key id="s_guild_ui_member_detail" value="Lv. {0} {1} | {2}" />
<key id="s_guild_ui_invite_member" value="Please enter the name of the character you wish to invite to the guild." />
<key id="s_guild_ui_create" value="Enter a name for your new guild. You must pay a fee of <Img Src='export_common_icon_meso' vspace='-4'></Img><FONT color='#FFA200'>{0}</FONT> to create your guild.\n\nGuild names may be from {1} to {2} letters." comment="{0}:메소 {1}:최소글자수 {2}:최대글자수" />
<key id="s_guild_ui_change_name" value="Enter your new guild name. Only the guild leader can rename the guild.\n\n<FONT color='#FFA200'>Other players will need to log in again to see the new name.</FONT>\n(Maximum {0} letters.)" comment="{0}:최대글자수" />
<key id="s_guild_ui_change_notify" value="Please write a guild notice." />
<key id="s_guild_ui_extend_member" value="Do you want to use <FONT color='#FFA200'>{0}</FONT><Img Src='export_common_icon_meso' vspace='-4'></Img>\nand expand the maximum amount of guild members to <FONT color='#FFA200'>{1}</FONT> people?" />
<key id="s_guild_ui_extend_max" value="You can no longer increase the number of members." />
<key id="s_guild_ui_break" value="If you disband this guild, this season's guild championship record will be reset. Also, if you join a new guild, you will not be able to participate for the new guild if you did for the old one.\n<FONT color='#FFA200'>Do you really want to disband the guild?</FONT>" />
<key id="s_guild_ui_leave" value="If you leave this guild, this season's guild championship participation count will be reset. Also, if you join a new guild, you will not be able to participate in the guild championship for the new guild if you joined for the old one.\n<FONT color='#FFA200'>Do you want to leave the guild?</FONT>" />
<key id="s_guild_ui_not_to_master" value="You cannot peform that action on the guild leader." />
<key id="s_guild_ui_change_master" value="Do you want to make {0} the guild leader?" />
<key id="s_guild_ui_expel" value="Kicking {0} will reset your guild's championship participation count for the season. If {0} has already participated in the guild champioinships and joins a new guild, they will not be able to participate on behalf of their new guild.\n<FONT color='#FFA200'>Do you really want to kick {0}?</FONT>" />
<key id="s_guild_ui_guild_create_time" value="{1}/{2}/{0}" />
<key id="s_guild_ui_must_input_group_name" value="The <FONT color='#FFA200'>guild leader</FONT> and <FONT color='#FFA200'>rank 8</FONT>\nmust choose a name.\nNew guild members will start at the lowest rank when they first join." />
<key id="s_guild_ui_already_member_have_group" value="{0} cannot be left empty because there are still guild members who hold that rank." />
<key id="s_guild_ui_select_target_member" value="Select a target first." />
<key id="s_guild_ui_current_member" value="{0} / {1}" />
<key id="s_guild_ui_memo" value="Enter a message.\n(20 Characters Max.)" />
<key id="s_guild_ui_donate_popup" value="When you donate, mesos are added to your guild funds\nand you are rewarded with experience.\nDonate {0}<Img Src='export_common_icon_meso' vspace='-4'> to the guild?\n{1} / {2}" />
<key id="s_guild_ui_championship_history_score_normal" value="{0}: {1}" />
<key id="s_guild_ui_championship_history_no_fight_win" value="Win by Default" />
<key id="s_guild_ui_championship_history_no_fight_lose" value="Lose by Default" />
<key id="s_guild_ui_championship_condition" value="You can apply when more than 3 guild members\nat level {0} or higher are connected." />
<key id="s_guild_ui_championship_rating" value="Rank {0} | {1} points" />
<key id="s_guild_ui_championship_combat" value="Battles: {0} Wins: {1} Losses: {2}" />
<key id="s_guild_ui_championship_rank" value="{0} place" />
<key id="s_guild_ui_championship_grade_tooltip" value="{0}: {1} points" />
<key id="s_guild_ui_championship_really_unregist" value="Do you want to cancel the Guild Battle application?" />
<key id="s_guild_ui_championship_no_regist_auth" value="You don't have the authority for registrations or cancellations." />
<key id="s_guild_ui_championship_no_period_day" value="The championship season has not yet begun." />
<key id="s_guild_ui_championship_no_period_time" value="You can only apply to participate in competitions between 7-10 PM on weekdays and 5-10 PM on Saturdays and holidays." />
<key id="s_guild_ui_championship_my_participate" value="<Img Src='icon_championship' vspace='-5'/>Participated {0} time(s)" />
<key id="s_guild_ui_championship_member_participate" value="You participated in this season's guild championship {0} time(s)\nYou've participated a total of {1} time(s)" />
<key id="s_guild_ui_championship_member_grade_score" value="{0} points" />
<key id="s_guild_ui_championship_reward_player" value="Player ({0} <img src='export_common_icon_honor' vspace='-5' width='16' height='16' />)" />
<key id="s_guild_ui_championship_reward_supporter" value="Supporter ({0} <img src='export_common_icon_honor' vspace='-5' width='16' height='16' />)" />
<key id="s_guild_ui_championship_choose_championship_guild" value="You are participating in the {0} guild championship.\nIf you click OK, you'll be entered as a member of the {1} guild.\nIf you want to join as part of a different guild once the championship starts,\nsearch Guild Battle in FAQ and contact customer support." />
<key id="s_guild_ui_championship_info_championship_guild" value="Season Guild: {0} Guild" />
<key id="s_guild_ui_pvp_draw" value="It's a draw." />
<key id="s_guild_ui_pvp_win" value="Our guild has won the battle." />
<key id="s_guild_ui_pvp_lose" value="Our guild has lost the battle." />
<key id="s_guild_ui_pvp_result_winner_rating" value="{0} <FONT color='#82D83C'>(+{1})</FONT>" />
<key id="s_guild_ui_pvp_result_loser_rating_add" value="<FONT color='#FF4040'>({0})</FONT>" />
<key id="s_guild_ui_pvp_result_reward" value="Reward: {0} x{1}" />
<key id="s_guild_search_join_requester_info" value="Level {0} | {1}" />
<key id="s_guild_ui_skill_duration" value="Duration {0}" />
<key id="s_guild_ui_skill_cooldown" value="Cooldown {0}" />
<key id="s_guild_ui_skill_using" value="Active" />
<key id="s_guild_ui_skill_waiting" value="Waiting" />
<key id="s_guild_ui_skill_require_level" value="Lv. {0}" />
<key id="s_guild_ui_event_max_user_count" value="Up to {0} people" />
<key id="s_guild_ui_info_guild_exp" value="Guild Experience: {0} / {1}" />
<key id="s_guild_ui_info_guild_exp_event" value="Guild Experience <FONT color='#FF4040'>x{0}</FONT>\nGuild Experience {1} / {2}" />
<key id="s_guild_ui_info_guild_exp_max" value="Max Guild Level Reached" />
<key id="s_guild_ui_info_guild_exp_tooltip" value="<FONT color='#FFD200' size='15' >Guild Experience</FONT>\n<FONT size='3'> </FONT>\nEarned by:\n- Checking in\n- Playing the Dance Dance Stop mini-game\n- Completing guild quests\n" />
<key id="s_guild_ui_info_guild_fund_tooltip" value="<FONT color='#FFD200' size='15' >Guild Funds\nMaximum: {0}</FONT>\n<FONT size='3'> </FONT>\nThe guild fund limit increases at Guild Levels 2, 5, 8, 11, and 15.\n\nEarned by:\n- Checking in\n- Playing the Dance Dance Stop mini-game\n- Completing guild quests\n" />
<key id="s_guild_ui_info_guild_raid_tooltip" value="- Obtained Upon Clearing a Guild Raid" />
<key id="s_guild_ui_search_search_name" value="Please enter the name you want to search for." />
<key id="s_guild_ui_skill_use_skill" value="<p align='center'>Spend <FONT color='#FFA200'>{0}</FONT><Img Src='export_icon_guild_fund' vspace='-4'></Img> from guild funds to activate the <FONT color='#FFA200'>{1}</FONT> buff?</p>" />
<key id="s_guild_ui_skill_use_skill_event" value="<p align='center'><FONT color='#FFA200'>{0}</FONT><Img Src='export_common_icon_item_90000026' vspace='-4'></Img>을 사용하여 <FONT color='#FFA200'>{1}</FONT> 스킬을 사용하시겠습니까?\n\n※ 길드 기금 금액과 버프 종류를 꼭 확인해주세요.</p>" />
<key id="s_guild_ui_skill_use_personal_skill" value="Spend <FONT color='#FFA200'>{0}</FONT><Img Src='export_common_icon_meso' vspace='-4'></Img> to activate\nthe <FONT color='#FFA200'>{1}</FONT> buff?\n\n* This fee will be deducted from your own wallet." />
<key id="s_guild_ui_skill_use_skill_term_agree" value="I have fully read and understood the above warning." />
<key id="s_guild_ui_skill_upgrade_popup" value="Spend <FONT color='#FFA200'>{0}</FONT><Img Src='export_icon_guild_fund' vspace='-4'></Img> from guild funds to upgrade the ability <FONT color='#FFA200'>{1}</FONT>\nto <FONT color='#FFA200'>level {2}</FONT>?" />
<key id="s_guild_ui_event_skill_upgrade_popup" value="<FONT color='#FFA200'>{0}</FONT><Img Src='export_common_icon_item_90000026' vspace='-4'></Img>을 사용하여\n<FONT color='#FFA200'>{1}</FONT> 스킬을 <FONT color='#FFA200'>레벨 {2}</FONT> 스킬로\n업그레이드를 진행하시겠습니까?" />
<key id="s_guild_ui_house_upgrade_upgrade" value="Upgrade\n{0} <Img Src='export_icon_guild_fund' vspace='-6'></Img>" />
<key id="s_guild_ui_house_change_theme" value="Theme Change\n{0} <Img Src='export_icon_guild_fund' vspace='-6'></Img>" />
<key id="s_guild_ui_house_use_upgrade" value="Do you want to spend <FONT color='#FFA200'>{0}</FONT><Img Src='export_icon_guild_fund' vspace='-4'></Img>to upgrade to the <FONT color='#FFA200'>{2}</FONT> theme?" />
<key id="s_guild_ui_skill_use_change_theme" value="Do you want to use <FONT color='#FFA200'>{0}</FONT><Img Src='export_icon_guild_fund' vspace='-4'></Img>and change to the <FONT color='#FFA200'>{1}</FONT> theme?" />
<key id="s_guild_ui_house_npc_condition_guildlevel" value="Guild Level {0}" />
<key id="s_guild_ui_house_npc_condition_guildhouselevel" value="Guild House Level {0}" />
<key id="s_guild_ui_house_npc_name" value="{0}\n(Level {1})" />
<key id="s_guild_ui_house_npc_name_nolevel" value="{0}\n(Not Hired)" />
<key id="s_guild_ui_house_npc_upgrade_nocost" value="Hire" />
<key id="s_guild_ui_house_npc_upgrade_cost" value="{0} <Img Src='export_icon_guild_fund' vspace='-4'>" />
<key id="s_guild_ui_house_npc_upgrade_popup" value="Do you want to use <FONT color='#FFA200'>{0}</FONT><Img Src='export_icon_guild_fund' vspace='-4'></Img> to upgrade <FONT color='#FFA200'>{1} to level {2}</FONT>?" />
<key id="s_guild_ui_house_npc_upgrade_popup_first" value="Do you want to hire a <FONT color='#FFA200'>{0}</FONT>?" />
<key id="s_guild_ui_vsGame_title" value="(Mini-Game) Dance Dance Stop" />
<key id="s_guild_ui_vsGame_userCount" value="No max player limit" />
<key id="s_guild_ui_vsGame_description" value="Sign-ups open Saturday 18:55:10-20:00:00\nA dance-off against other guilds. If your guild has the most dancers still standing, you win the round. Win 3 rounds to win the match! Guild experience and funds are awarded based on performance." feature="GuildMinigame01" />
<key id="s_guild_ui_vsGame_description" value="Sign-ups open Saturday 18:55:10-20:00:00\nA dance-off against other guilds. If your guild has the most dancers still standing, you win the round. Win 3 rounds to win the match! Guild experience and funds are awarded based on performance." feature="GuildMinigame01" locale="NA" />
<key id="s_guild_ui_vsGame_description_close" value="Currently Unavailable." />
<key id="s_guild_raid_info_score" value="My Raid Score: {0}\nGuild Raid Score: {1}" />
<key id="s_guild_raid_history_desc" value="({0}) {1}: {2}" />
<key id="s_guild_err_unknown" value="Unknown Guild Error" />
<key id="s_guild_err_null_guild" value="Guild not found." />
<key id="s_guild_err_already_exist" value="This character is already a member of a guild." />
<key id="s_guild_err_wait_inviting" value="Unable to send invite." />
<key id="s_guild_err_blocked" value="Guild invitation failed." />
<key id="s_guild_err_has_guild" value="They have already joined another guild." />
<key id="s_guild_err_invalid_guild" value="The guild is no longer valid." />
<key id="s_guild_err_null_user" value="Unable to invite the player to your guild." />
<key id="s_guild_err_name_exist" value="A guild with the same name already exists." />
<key id="s_guild_err_name_value" value="Contains a forbidden word." />
<key id="s_guild_err_empty_count" value="Confirm the amount." />
<key id="s_guild_err_empty_member" value="Select guild member." />
<key id="s_guild_err_null_member" value="Guild member not found." />
<key id="s_guild_err_exist_member" value="The guild cannot be disbanded if there are any guild members." />
<key id="s_guild_err_full_member" value="You have reached the maximum number of guild members." />
<key id="s_guild_err_not_join_member" value="This guild member has not joined." />
<key id="s_guild_err_cannot_leave_master" value="The guild leader cannot leave the guild." />
<key id="s_guild_err_expel_target_master" value="You cannot kick the guild leader." />
<key id="s_guild_err_not_enough_level" value="To create a guild, you must be above level {0}." />
<key id="s_guild_err_no_money" value="Not enough mesos." />
<key id="s_guild_err_no_authority" value="You don't have permission to do that." />
<key id="s_guild_err_no_master" value="Only the guild leader can do that." />
<key id="s_guild_err_invalid_grade_range" value="This rank cannot be used." />
<key id="s_guild_err_invalid_capacity_range" value="You cannot change the maximum amount of guild members to this value." />
<key id="s_guild_err_invalid_grade_data" value="This rank cannot be used." />
<key id="s_guild_err_invalid_grade_index" value="Incorrect rank." />
<key id="s_guild_err_exist_empty_grade_index" value="This rank cannot be granted." />
<key id="s_guild_err_set_grade_failed" value="Rank setting failed." />
<key id="s_guild_err_fail_addmember" value="Guild member invitation failed." />
<key id="s_guild_err_cant_during_pvp" value="Cannot be done during a guild battle." />
<key id="s_guild_err_null_invite_member" value="This character was not invited." />
<key id="s_guild_err_none" value="Undefined Guild Error" />
<key id="s_guild_err_block" value="Guild related functions are restricted." />
<key id="s_guild_err_fail_change_gradename" value="\nThis rank cannot currently be renamed.\n\n<p align='left'>{0}</p>" />
<key id="s_guild_err_fail_change_gradename_row" value="Rank: {0}\n• {1}\n" />
<key id="s_guild_err_fail_this_field" value="The target is in a location where they cannot be invited." />
<key id="s_guild_err_not_enough_guild_level" value="The guild level is not high enough." />
<key id="s_guild_err_not_enough_guild_fund" value="Not enough guild funds." />
<key id="s_guild_err_not_enough_guild_event_fund" value="Not enough guild event funds." />
<key id="s_guild_err_cannot_use_skill" value="You cannot use the guild skill right now." />
<key id="s_guild_err_cannot_open_event_create_date" value="The guild can be used 24 hours after it has been created." />
<key id="s_guild_err_too_short_to_search" value="Please enter at least 2 letters." />
<key id="s_guild_err_too_fast_to_search_by_name" value="Please try again later." />
<key id="s_guild_err_same_guild_house_theme" value="The theme you are trying to apply is the same as the current theme." />
<key id="s_guild_err_need_guild_level" value="Available starting from guild level {0}." />
<key id="s_guild_err_need_pre_house_level" value="You must upgrade the guild house from the previous tier." />
<key id="s_guild_err_max_level" value="You have reached the max level." />
<key id="s_guild_err_isNotVsGameTime" value="Applications are not currently being accepted." />
<key id="s_guild_err_requireOnlineUserCount" value="You need at least {0} players online." />
<key id="s_guild_err_buy_no_master" value="Can only be purchased by guild leaders." />
<key id="s_guild_err_attend_already" value="You've already checked in today." />
<key id="s_guild_err_donateMax" value="You've already donated the maximum amount allowed." />
<key id="s_guild_err_donate_guildFundMax" value="Your guild cannot hold any more guild funds." />
<key id="s_guild_err_can_next_day" value="You must wait until tomorrow to do that." />
<key id="s_guild_err_storage_not_enough_count" value="Not enough." />
<key id="s_guild_err_storage_send_only_to_me" value="This item can only be gifted to the guild leader." />
<key id="s_guild_err_storage_over_slot_max_count" value="You can only gift {0} of this item." />
<key id="s_PvpGuildResult_title_pvp" value="Guild Battle Results" />
<key id="s_PvpGuildResult_title_vsGame" value="Mini-Game Results" />
<key id="s_PvpGuildResult_vsGame_result_win" value="You won the match against the {0} Guild." />
<key id="s_PvpGuildResult_vsGame_result_lose" value="You lost the match against the {0} Guild." />
<key id="s_PvpGuildResult_vsGame_result_draw" value="Your match against the {0} Guild was a draw." />
<key id="s_individual_waiting_unknown" value="Average wait time: Unknown" />
<key id="s_individual_waiting_min" value="Average wait time: {0} minute(s)" />
<key id="s_individual_waiting_hour" value="Average wait time: More than 10 minutes" />
<key id="s_individual_register_other_arena" value="Battle applications have been temporarily disabled\nbecause you either did not respond to a previous battleground invitation\nor you left the battle arena." />
<key id="s_individual_register_call_of_arena" value="Battle applications have been temporarily disabled\nbecause you either did not respond to a previous battleground invitation\nor you left the battle arena." />
<key id="s_individual_register_low_level" value="You cannot apply because your level is too low." />
<key id="s_individual_register_done" value="You have applied for the battle arena.\nPlease wait while searching for an opponent." />
<key id="s_individual_unregister_done" value="You have canceled the battle arena application." />
<key id="s_individual_matching_done" value="Matchmaking complete. Do you want to enter the battle arena?" />
<key id="s_individual_join_error_dead" value="You can't do that while tombstoned\nPlease revive and try again." />
<key id="s_individual_join_error_field" value="That can't be done here. Try again somewhere else." />
<key id="s_err_cannot_find_user" value="Unable to send whisper." />
<key id="s_err_input_whisper_target" value="Enter the name of the character you want to whisper to." />
<key id="s_err_cannot_find_club" value="Unable to send club chat." />
<key id="s_err_input_club" value="Enter the club to send the club chat to." />
<key id="s_msg_take_item" value="You got {0}." />
<key id="s_msg_take_item_count" value="You got {0} x{1}." />
<key id="s_msg_take_item_to_guild_storage" value="You put {0} into the guild gift bank." />
<key id="s_msg_take_item_count_to_guild_storage" value="You put {0} x{1} into the guild gift bank." />
<key id="s_msg_take_item_ugc_cube" value="You obtained {0}." />
<key id="s_msg_take_item_count_ugc_cube" value="You obtained {0} x{1}. Find it in your list of Furnishings." />
<key id="s_msg_take_exp" value="You got {0} experience." />
<key id="s_msg_take_rest_exp" value="(Rest experience bonus applied.)" />
<key id="s_msg_take_assist_bonus_exp" value="You got {0} bonus experience." />
<key id="s_msg_take_assist_bonus_exp_system" value="You got an experience bonus for helping defeat a powerful foe. (EXP +{0})" />
<key id="s_msg_take_map_exp" value="You got {1} experience for discovering {0}." />
<key id="s_msg_take_taxi_exp" value="You got {1} experience for discovering the {0} taxi stop." />
<key id="s_msg_take_telescope_exp" value="You got {1} experience for discovering a new area, {0}." />
<key id="s_msg_take_play_instrument_exp" value="You got {0} experience for playing an instrument." />
<key id="s_msg_take_fishing_exp" value="You got {0} experience from fishing." />
<key id="s_msg_take_arcade_exp" value="You got {0} experience from Maple Arcade." />
<key id="s_msg_take_normal_chest_exp" value="You got {0} experience from opening a wooden treasure chest." />
<key id="s_msg_take_normal_rare_exp" value="You got {0} experience from opening a golden treasure chest." />
<key id="s_msg_take_normal_rare_first_exp" value="You got {0} experience from opening a golden treasure chest for the first time." />
<key id="s_msg_take_event_additional" value="<FONT color='#'FFB400> (Event bonus applied).</FONT>" />
<key id="s_msg_take_adventure_level_exp" value="You got {0} prestige experience." />
<key id="s_msg_take_survival_level_exp" value="You got {0} royale experience." />
<key id="s_msg_take_meso" value="You got {0} meso(s)." />
<key id="s_msg_consume_meso" value="You spent {0} meso(s)." />
<key id="s_msg_take_pcbang" value="(PC cafe benefits applied)" />
<key id="s_msg_take_merat" value="You got {0} meret(s)." />
<key id="s_msg_take_merat_blue" value="You got {0} blue meret(s)." />
<key id="s_msg_take_merat_red" value="You got {0} red meret(s)." />
<key id="s_msg_take_honor_token" value="You got Valor Token x{0}." />
<key id="s_msg_take_karma_token" value="You got {0} treva(s)." />
<key id="s_msg_take_lu_token" value="You got {0} rue." />
<key id="s_msg_take_habi_token" value="You got {0} havi." />
<key id="s_msg_take_reverse_coin" value="You got {0} reverse coin(s)." />
<key id="s_msg_take_mentor_token" value="You got {0} mentor points." />
<key id="s_msg_take_mentee_token" value="You got {0} mentee points." />
<key id="s_msg_take_star_point" value="You got {0} star points." />
<key id="s_msg_party_invite" value="{0} invited you to a party.\nJoin the party?" />
<key id="s_msg_popup_time" value="Time Left: {0} sec" />
<key id="s_party_ch" value="Ch. {0}" />
<key id="s_party_ch_dungeon" value="" />
<key id="s_party_err_code" value="System Error: Party, code = {0}, {1}" />
<key id="s_party_err_not_exist" value="You cannot invite that player to the party." />
<key id="s_party_err_target" value="You cannot invite that player to the party." />
<key id="s_party_err_already" value="The party has already been made." />
<key id="s_party_err_alreadyInvite" value="{0} has already received a party request." />
<key id="s_party_err_inviteMe" value="You already received a party invite." />
<key id="s_party_err_not_chief" value="You are not the party leader." />
<key id="s_party_err_full" value="The party is full." />
<key id="s_party_err_myself" value="You cannot invite yourself to a party." />
<key id="s_party_err_cannot_invite" value="That player cannot accept party invites at this time." />
<key id="s_party_err_deny" value="{0} declined the party invitation." />
<key id="s_party_err_deny_by_system" value="{0} cannot accept party invitations right now. Please try again later." />
<key id="s_party_err_deny_by_auto" value="{0} refused the party invitation." />
<key id="s_party_err_deny_by_timeout" value="{0} failed to respond to your party invitation." />
<key id="s_party_err_leave_no_party" value="You cannot leave a party if you are not in one." />
<key id="s_party_err_fail_enterable_result" value="You did not meet the entry requirements." />
<key id="s_party_err_lack_level" value="Your Level is lower than the minimum level requirement." />
<key id="s_party_err_lack_gear_score" value="Your Gear Score is lower than the minimum Gear Score requirement." />
<key id="s_party_err_full_limit_player" value="The party is full." />
<key id="s_party_err_invalid_recruit" value="This recruitment listing has been deleted." />
<key id="s_party_err_invalid_party" value="This recruitment listing has been deleted." />
<key id="s_party_err_invalid_chief" value="Recruitment listing outdated. Please refresh and try again." />
<key id="s_party_err_wrong_party" value="Recruitment listing outdated. Please refresh and try again." />
<key id="s_party_err_wrong_recruit" value="Recruitment listing outdated. Please refresh and try again." />
<key id="s_party_err_not_found" value="Party not found." />
<key id="s_party_err_already_vote" value="Another request is already in progress." />
<key id="s_party_err_vote_need_more_people" value="Not enough party members to start a kick vote." />
<key id="s_party_err_vote_cooldown" value="Please wait before requesting another vote." />
<key id="s_party_err_vote_cannot_kick_vote" value="That can only be done while battling the boss of {0}." />
<key id="s_party_request_invite" value="You requested to join {0}'s party." />
<key id="s_party_err_can_use_only_chief" value="Only the party leader can use this." />
<key id="s_whisper_err_myself" value="You cannot whisper to yourself." />
<key id="s_whisper_err_target" value="Character not found." />
<key id="s_admin_block_velma_notice" value="You cannot do this while you have a Penalty. Your Penalty will be lifted on {1}/{2}/{0:04d} at {3:02d}:{4:02d}:{5:02d}." />
<key id="s_admin_block_velma_notice_chat" value="You cannot chat while you have a Penalty." />
<key id="s_admin_block_velma_add" value="You have been given a Penalty." />
<key id="s_admin_block_velma_endtime_dec" value="Your Penalty sentence has been reduced by {0} second(s)." />
<key id="s_admin_block_velma_msgbox_title" value="Penalty Notice" />
<key id="s_admin_block_velma_msgbox_content" value="Prohibited because of your Penalty. \n\n[Duration]\n{3:02d}:{4:02d}:{5:02d} on {1}/{2}/{0:04d} through {9:02d}:{10:02d}:{11:02d} on {7}/{8}/{6:04d}\n\n[Reason]\n{12}" />
<key id="s_admin_block_velma_ugc_notice" value="You cannot do this while you have a Citation. Your Citation will be lifted on {1}/{2}/{0:04d} at {3:02d}:{4:02d}:{5:02d}." />
<key id="s_admin_block_velma_ugc_add" value="You have been given a Citation." />
<key id="s_admin_block_velma_ugc_endtime_dec" value="Your Citation sentence has been reduced by {0} second(s)." />
<key id="s_admin_block_velma_ugc_msgbox_title" value="Citation Notice" />
<key id="s_admin_block_velma_ugc_msgbox_content" value="Prohibited because of your Citation. \n\n[Duration]\n{3:02d}:{4:02d}:{5:02d} on {1}/{2}/{0:04d} through {9:02d}:{10:02d}:{11:02d} on {7}/{8}/{6:04d}\n\n[Reason]\n{12}" />
<key id="s_admin_block_cash_out" value="의심스러운 활동이 감지되어 선물하기 및 아이템 거래가 제한 되었습니다.\n고객님의 소중한 넥슨ID(게임ID) 보호를 위해 일시적으로 제한되며\n{0} 이후 선물하기와 아이템 거래를 정상적으로 이용하실 수 있습니다." />
<key id="s_admin_block_create_guild_msgbox_title" value="Guild Creation Notice" />
<key id="s_admin_block_create_guild_msgbox_content" value="You are currently prohibited from creating a guild.\n\n[Period]\n{0:04d}/{1}/{2} {3:02d}:{4:02d}:{5:02d} / {6:04d}/{7}/{8} {9:02d}:{10:02d}:{11:02d}\n\n[Reason]\n{12}" />
<key id="s_admin_block_transfer_msgbox_title_kr" value="거래 제한 안내" locale="KR" />
<key id="s_admin_block_transfer_msgbox_content_kr" value="모험가님의 계정을 계정도용피해 등으로부터\n보호하기 위해 "거래제한" 조치가 적용되었습니다.\n\n본인인증 후 정상적으로 거래하실 수 있습니다.\n본인인증이 어렵다면 고객센터로 문의 부탁드립니다.\n본인인증을 진행하시겠습니까?" locale="KR" />
<key id="s_admin_block_transfer_msgbox_title" value="Trade Restriction Notice" />
<key id="s_admin_block_transfer_msgbox_content" value="Due to suspicious activity, you have been restricted from trading. To appeal this decision, open a ticket through the MapleStory 2 support page. <b>Period:</b> {1}/{2}/{0:04d} {3:02d}:{4:02d}:{5:02d} to {7}/{8}/{6:04d} {9:02d}:{10:02d}:{11:02d} <b>Reason:</b> {12}" />
<key id="s_admin_block_login" value="Login is prohibited." />
<key id="s_admin_block_chat" value="Chat is prohibited." />
<key id="s_admin_block_banner_reg" value="Banner registration is prohibited." />
<key id="s_admin_block_ugcmarket_reg" value="Market listing is prohibited." />
<key id="s_admin_block_ugc_equip" value="Attaching a designer item is prohibited." />
<key id="s_admin_block_ugc_create" value="Designing a template is prohibited." />
<key id="s_admin_block_guild_create" value="Guild creation is prohibited." />
<key id="s_admin_block_guild_mark_change" value="Modifying the guild emblem is prohibited." />
<key id="s_admin_block_profile_change" value="Profile modification is prohibited." />
<key id="s_admin_block_char_name_change" value="Character name change is prohibited." />
<key id="s_admin_block_mail_send" value="Mail delivery is prohibited." />
<key id="s_admin_block_default" value="You have been restricted from using this function." />
<key id="s_admin_block_ugcmap_create" value="Distributing furnishing items is prohibited." />
<key id="s_admin_block_party_search" value="The Party Search function is prohibited." />
<key id="s_admin_block_play_score" value="Playing an instrument is prohibited." />
<key id="s_admin_block_write_music" value="Composing Music Scores is prohibited." />
<key id="s_admin_block_transfer" value="Trade is prohibited." />
<key id="s_admin_block_period" value="( {0:04d}/{1}/{2} {3:02d}:{4:02d}:{5:02d} / {6:04d}/{7}/{8} {9:02d}:{10:02d}:{11:02d} )" />