-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathvi.json
More file actions
1015 lines (1015 loc) · 62.6 KB
/
vi.json
File metadata and controls
1015 lines (1015 loc) · 62.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"errors": {
"generic": "Bạn không thể làm điều này bây giờ",
"generic_tired": "Bạn đang mệt. Hãy thử lại sau %d giây",
"generic_cant_do_that": "Bạn không thể làm điều này",
"generic_user_dont_exist": "Không tìm thấy người này",
"you_cant_claim": "Bạn không thể tuyên bố chủ quyền khu vực này",
"you_have_to_be_in_a_guild": "Để làm việc này bạn phải ở trong Guild",
"you_dont_have_right_to_change_announcement": "Bạn không có quyền thay đổi thông báo của Guild",
"you_cant_exceed_x_characters": "Không thể vượt quá %d ký tự",
"already_in_guild": "Bạn đang ở trong Guild rồi!",
"guild_name_empty": "Bạn phải đặt tên cho Guild của bạn",
"guild_have_to_be_gm_to_disband": "Chỉ có Guild Master mới được giải tán Guild",
"guild_dont_be_in_guild_to_join_a_guild": "You can't ask to join a guild if you're already in one",
"guild_enter_id_to_join": "Bạn cần nhập ID của Guild mà bạn muốn vào",
"guild_character_not_ask_to_join": "This user didn't ask to join your guild",
"guild_enter_id_to_add": "Để thêm người này bạn cần phải nhập ID của họ",
"guild_cant_remove_appliances": "Bạn không thể làm điều này",
"guild_have_to_enter_id_to_remove_apply": "You must enter the user's ID",
"guild_have_to_enter_id_to_remove_apply_playerside": "You must enter the guild ID",
"guild_not_in_guild": "Bạn không ở trong Guild nào",
"guild_cant_give_this_money": "You can't give this amount to the guild",
"guild_you_dont_have_enough_money": "Bạn không có đủ tiền",
"guild_you_have_to_select_amount_money": "Xin vui lòng điền số lượng cung cấp cho Guild",
"guild_you_have_to_select_amount_to_retrive": "Xin vui lòng điền số lượng muốn rút ra",
"guild_name_cant_exceed_x_characters": "Tên của Guild không được quá %d và thấp hơn %d ký tự",
"guild_name_taken": "Tên Guild đã được đặt",
"guild_player_reach_max_applies": "Bạn có thể đăng ký tham gia tối đa %d Guild cùng một lúc",
"guild_player_already_applied": "Bạn đã đăng ký tham gia Guild này",
"guild_not_exist": "Guild này không tồn tại",
"guild_cant_leave_guild_as_gm": "Là Guild Master, bạn không thể rời khỏi, nhưng bạn có thể giải tán với command sau đây /guild disband",
"guild_dont_have_right_to_kick": "Bạn không có quyền trục xuất thành viên này",
"guild_member_dont_exist": "Thành viên này không có trong Guild",
"guild_dont_have_right_to_remove_money": "Bạn không có quyền rút tiền",
"guild_guild_dont_have_this_amount_of_money": "You can't retrieve this much money from the guild",
"guild_no_enough_money_to_level_up": "Guild không có đủ tiền để lên Lv. Còn thiếu: %dG",
"guild_dont_have_right_to_level_up": "Bạn không có quyền lên Lv Guild",
"guild_maximum_members": "Guild đã đạt số lượng thành viên tối đa",
"guild_cant_invite_players": "You don't have the rights to accept people in your guild",
"guild_already_max_level": "Guild đã đạt Lv cao nhất",
"guild_tournament_started": "Guild của bạn đăng ký và bắt đầu chinh phạt, không thể giải tán bây giờ, xin vui lòng đợi đến khi kết thúc chinh phạt",
"guild_have_to_be_gm_to_enroll": "Bạn phải là Guild Master hoặc Officer để đăng ký chinh phạt",
"guild_already_enroll_in_tournament": "Guild đã được đăng ký chinh phạt",
"guild_tournament_started_generic": "Bạn không thể làm điều này khi đã bắt đầu chinh phạt",
"guild_not_enrolled_in_tournament": "Guild chưa được đăng ký chinh phạt",
"guild_dont_own_this_area": "Khu vực này không thuộc chủ quyền của Guild bạn",
"guild_dont_have_permission_to_levelup_area": "Bạn không có quyền lên Lv khu vực của Guild bạn",
"area_at_max_level": "Khu vực này đã đạt Lv cao nhất",
"area_bonus_not_available": "Điểm thưởng không có sẵn ở khu vực này",
"area_dont_have_enough_stat_points": "You can't allocate this amount of points to this area",
"area_reset_wait_x": "Your guild has already reset this area's bonuses today, you can reset this area again at:\n%s",
"area_already_reset": "This area has no points allocated to be refunded",
"collect_enter_id_to_collect": "Vui lòng nhập ID tài nguyên để thu thập",
"collect_tired_wait_x_seconds": "Bạn đang trong trạng thái mệt mỏi, hãy nghỉ ngơi và thử lại sau: %s giây",
"collect_dont_have_required_level": "Để thu thập tài nguyên này bạn phải đạt Lv Craft là %d and of rebirth level %d",
"item_you_dont_have_this_item": "Bạn không có vật phẩm này",
"item_choose_id_or_equipement": "You must enter the ID of your inventory slot or choose between \"head, chest, legs, weapon, mount\"",
"item_you_cant_equip": "Bạn không thể trang bị vật phẩm này",
"item_you_dont_have": "Bạn không có vật phẩm này",
"item_enter_id_to_equip": "Bạn phải điền ID của vật phẩm để trang bị nó",
"item_you_dont_have_item_equiped_here": "You don't have an equipped item in this slot",
"item_you_have_to_choose_type_to_unequip": "You must choose the kind of item you want to unequip",
"item_cant_equip_higher_level": "Bạn phải đạt Lv tối thiểu là %d để trang bị vật phẩm này",
"item_cant_equip_higher_rebirth_level": "You must be at least at rebirth level %d to equip this item",
"item_cant_sell_favorite": "Bạn không thể bán vật phẩm đã được gắn Tag yêu thích",
"item_you_cant_use": "Bạn không thể sử dụng vật phẩm này",
"item_enter_id_to_use": "Bạn cần nhập ID vật phẩm để sử dụng.",
"character_you_dont_have_enough_to_reset": "Bạn không có đủ tiền để reset lại stats của bạn!",
"character_you_dont_have_enough_to_reset_talents": "You don't have enough money to reset your talents!",
"economic_enter_id_item_to_sell": "Bạn cần nhập ID vật phẩm mà bạn muốn bán",
"economic_have_to_be_in_town": "Bạn phải ở trong thị trấn / thành phố để bán vật phẩm",
"economic_cant_sell_nothing": "Không có gì để bán! All items are protected, no matches or your inventory is empty",
"economic_cant_send_money_to_youself": "Bạn không thể gửi tiền cho chính bản thân",
"economic_minimum_send_gold": "Số tiền gửi ít nhất là 1G",
"economic_dont_have_enough_money": "Bạn không có đủ số tiền này",
"fight_enter_id_monster": "Nhập ID của quái vật nếu muốn chiến đấu với chúng",
"fight_impossible_in_town": "Không thể chiến đấu trong thị trấn / thành phố",
"fight_already_in": "Bạn đang trong một trận chiến, cần kết thúc trận chiến hiện tại để bắt đầu trận chiến mới",
"fight_monter_dont_exist": "Quái vật mà bạn muốn chiến đấu không tồn tại, kiểm tra lại ID",
"travel_already_here": "Bạn đang ở trong khu vực này",
"travel_area_dont_exist": "Khu vực này không tồn tại",
"travel_tired_wait_x": "Mệt mỏi vì di chuyển, hãy nghỉ ngơi và thử lại sau: %d giây",
"fight_pvp_choose_enemy": "Bạn cần phải chọn đối thủ",
"fight_pvp_cant_fight_yourself": "Bạn không thể chiến đấu với chính bản thân",
"fight_pvp_not_same_area": "You can't see this user anywhere near",
"fight_pvp_cant_fight_here": "Bạn không thể chiến đấu với người khác ở đây",
"character_you_cant_distribute_this_amount_of_points": "You can't allocate this amount of points",
"character_attribute_dont_exist": "Điểm thuộc tính này không có",
"languages_lang_dont_exist": "Ngôn ngữ không tồn tại, xin vui lòng kiểm tra danh sách ngôn ngữ bằng comamnd /other lang",
"group_already_in_group": "Bạn không thể làm điều này khi ở trong một nhóm",
"group_not_in_group": "Để làm điều này bạn cần phải ở trong một nhóm",
"group_occupied": "Nhóm của bạn đang bận, hãy thử lại sau khi kết thúc vấn đề đó",
"group_not_leader": "Để làm điều này bạn phải là Leader nhóm",
"group_cant_invite_yourself": "Bạn không thể tự mời bản thân",
"group_user_not_connected": "Bạn cần phải mời người đang online",
"group_invite_already_in_group": "Người này đã ở trong một nhóm",
"group_invite_waiting": "Người này đang có một lời mời chờ xử lý",
"group_you_dont_receive_invitation": "Bạn chưa nhận được lời mời tham gia nhóm",
"group_full_join": "Nhóm bạn muốn tham gia hiện tại đã đủ người",
"group_cant_invite_more_than": "Bạn không thể mời quá %d người cùng một lúc",
"group_user_not_in_your_group": " %s không ở trong nhóm của bạn và cũng không trong danh sách chờ tham gia",
"group_user_kick_empty_name": "Chọn người bạn muốn đá ra khỏi nhóm",
"group_cant_kick_yourself": "Bạn không thể đá bản thân ra khỏi nhóm",
"group_not_same_area": "Các thành viên trong nhóm phải ở cùng một khu vực",
"group_cant_swap_yourself": "Bạn hiện tại đã là Leader của nhóm",
"group_user_swap_empty_name": "Chọn người trở thành Leader của nhóm",
"marketplace_not_exist": "Không có chợ ở đây",
"marketplace_id_item_forgotten": "Bạn phải chọn vật phẩm để bán",
"marketplace_dont_have_object": "Bạn không có vật phẩm",
"marketplace_price_forgotten": "Điền giá mà bạn muốn bán cho",
"marketplace_nb_of_item_not_ok": "Chọn số lượng vật phẩm để bán",
"marketplace_not_this_number_of_item": "Bạn không có đủ số lượng của vật phẩm này",
"marketplace_not_enough_to_pay_tax": "Bạn không có đủ tiền để trả thuế",
"marketplace_id_to_cancel_forgotten": "Bạn phải chọn vật phẩm để rút ra",
"marketplace_order_dont_exist": "Vật phẩm này không tồn tại",
"marketplace_order_not_yours": "Vật phẩm này không thuộc về bạn",
"marketplace_id_to_buy_forgotten": "Bạn cần chọn vật phẩm để mua",
"marketplace_order_yours": "Bạn không thể tự mua các vật phẩm của bạn",
"marketplace_not_enough_money": "Bạn không đủ tiền để làm điều này",
"marketplace_favorite_sell_impossible": "Bạn không thể bán vật phẩm đã được Tag yêu thích",
"craft_no_building": "Không có công trình Craft ở đây",
"craft_dont_exist": "Bản thiết kế không có sẵn",
"craft_dont_have_required_level": "Bạn không đủ Lv yêu cầu để Craft vật phẩm này. Lv Craft thấp nhất phải là: %d",
"craft_dont_have_required_items": "Bạn không đủ nguyên liệu cần thiết để Craft vật phẩm này",
"craft_tired_wait_x_seconds": "Mệt mỏi vì Craft vật phẩm, hãy nghỉ ngơi và thử lại sau: %s giây",
"craft_level_incorrect": "You can't craft an item of this level here",
"craft_rebirth_level_incorrect": "You can't craft an item of this rebirth level here",
"prefix_max_length": "The prefix must not exceed a length of %d characters",
"prefix_undefined": "The prefix must at least be 1 character long",
"prefix_not_owner_server": "You must own this server to change the prefix",
"shop_item_dont_exist": "Bạn phải chọn vật phẩm bạn có",
"shop_no_building": "Không có cửa hàng trong khu vực",
"already_doing_something_command": "You must wait until your last action is completed",
"travel_missing_achievements": "Bạn không thể vào khu vực này, để vào được bạn cần phải mở khóa achievements: \"%s\"",
"trade_not_in_trade": "Không có giao dịch",
"trade_cant_propose_more": "Bạn đang giao dịch với ai đó, cần hủy bỏ hoặc chấm dứt giao dịch hiện tại mới thực hiện được giao dịch khác",
"trade_proposal_waiting": "Người này đang có giao dịch chờ xử lý",
"trade_propose_already_in_trade": "Người này hiện đang thực hiện giao dịch với ai đó",
"trade_user_not_connected": "Bạn chỉ có thể giao dịch với những người có online",
"trade_cant_propose_yourself": "Không thể giao dịch với bản thân",
"trade_already_in_trade": "You are already making a trade, cancel or terminate the current trade to be able to perform this action",
"trade_inventory_changed": "One or more items of the trade are no longer available due to a change in inventory, please check the trade again using the command to display it",
"trade_not_in_same_area": "Để bắt đầu giao dịch bạn phải ở cùng khu vực với người muốn giao dịch",
"trade_you_dont_receive_invitation": "Bạn chưa nhận được yêu cầu giao dịch nào",
"trade_dont_have_that_many_items": "Bạn không có đủ số lượng của vật phẩm này",
"trade_dont_have_item": "Bạn không có vật phẩm này",
"trade_item_dont_exist": "This item does not exist or belong to you",
"trade_not_enough_money": "Bạn không có đủ tiền để đưa vào giao dịch",
"trade_unable_find_item": "Không tìm được vật phẩm này",
"trade_not_accepted": "The other person must accept the trade before you can do this action",
"travel_area_cant_travel": "Bạn không thể di chuyển đến khu vực này",
"talents_show_missing_id": "Please enter the ID of the talent",
"talents_show_node_dont_exist": "This talent doesn't exist",
"talents_node_not_reachable": "This talent is not reachable",
"talents_not_enough_points": "You don't have enough talent points",
"talents_already_unlocked": "You've already unlocked that talent",
"skill_show_dont_exist": "That skill doesn't exist",
"skill_build_cant_add_more": "You can't add more skills to your skills bar",
"skill_build_already_equipped": "That skill is already equipped",
"skill_build_not_unlocked": "You have not unlocked this skill",
"skill_build_not_equipped": "That skill isn't equipped",
"skill_build_incorrect_priority": "Incorrect priority value",
"antispam_remaining": "Challenge failed (%d tries left before being ban for %s minutes)",
"antispam_end": "Challenge failed, you have no more tries left, you can't play for %s minutes...",
"rebirth_cant_rebirth": "You can't rebirth that",
"rebirth_cant_rebirth_max_level": "You are already at the max rebirth level for that",
"rebirth_dont_have_required_items": "You don't have all the required resources to rebirth",
"rebirth_not_max_level": "You must be at max level to rebirth",
"events_dont_exist": "This event doesn't exist"
},
"filters": {
"name": "Name",
"rarity": "Rarity",
"type": "Type",
"subtype": "Subtype",
"level_up": "Level >=",
"level_down": "Level <=",
"rebirth_up": "Rebirth Level >=",
"rebirth_down": "Rebirth Level <=",
"power_up": "Power >=",
"power_down": "Power <=",
"favorite": "Favorite"
},
"appearance": {
"title": "Appearance change",
"desc_select": "Here is the appearance of your character, this appearance contains the current changes you may have made. To go to the modification use the emoji: \"%s\"",
"choose_modify": "Choose what to change:",
"ears": "Ears",
"eyes": "Eyes",
"eyebrows": "Eyebrows",
"nose": "Nose",
"facial_hair": "Facial Hair",
"haircut": "Haircut",
"mouth": "Mouth",
"body_type": "Body Type",
"desc_select_one": "Between brackets and in bold, means that this is the selected choice.\nUse the arrows to change the appearance, the colored emoji to change the color (if available for this type), and use the other emoji to validate",
"list_of_possible_for_type": "List of possible choices for the selected type",
"list_of_possible_color": "List of possible colors for the selected type",
"modifying_elsewhere": "Modification in progress on another message...",
"success": "Successful appearance change!",
"helmet": "Helmet Display",
"left": "Left",
"right": "Right",
"color": "Change the color",
"confirm": "Validate"
},
"tutorial": {
"start": "Welcome to the FightRPG guided tutorial, if this language does not suit you, use the command \"/other lang\".\nFor your first step, use the command \"/info\" to continue the tutorial.",
"info_first": "This command allows you to display all the informations about your character. The emojis that the bot adds (if it has the rights) allow you to hide or show some parts of the panel. Now it's time to display the area your character is in. Use the \"/area info\" command to continue the tutorial.",
"area_first": "This command allows you to display the informations of the area in which your character is. This area has a weather forecast that gives bonuses or penalties. What interests you the most is the list of monsters in the area, you can see the identifier on the left of the name of the monsters. This is the ID you have to use to be able to fight the monster. To continue the tutorial, use the command \"/fight\" followed by a space and the ID number of the monster.",
"fight_first": "Congratulations, you are fighting your first monster! The fight is displayed in the following order: Name of the person doing something, then the result of his action. You can see at the bottom of the message your life, mana and energy points on the left and the opponent's on the right. You can also use the emoji to display the result of the fight directly. Some actions take a certain amount of time and you have to wait between these actions. The time you have to wait depends on the action. If you have won the fight, you may have gained a level, if so to continue the tutorial, use the command \"/attributes\" otherwise fight again using the command \"/fight\". At each fight, except the dungeons, your life points are reset to the maximum.",
"attributes_first": "Here is the panel containing only your attributes, at the top of it you can see your points to distribute. To each main attribute corresponds a shortcut word that allows you to increase it if you have points available.\nHere is a summary of the effects of the attributes: \nStrength (str) → Only used by skills.\nConstitution (con) → Increases your hit points by 10 for each point invested, reduces waiting time after a fight, increases physical defense.\nDexterity (dex) → Increases physical critical chance. \nCharisma (cha) → Increases your chance to stun your opponent with a melee attack, reduces the wait time after an arena fight, increases magic critical evasion rate.\nWill (will) → Makes you more resistant to stun blows, increases physical critical evasion rate. \nChance (luck) → Increases your chance of finding items.\nWisdom (wis) → Increases the experience you gain from fighting, increases magic defense, increments your mana points by 2 for each point you invest.\nPerception (per) → Increases your chance of not being attacked by a monster other than the one you want to fight, increases magic and physical critical evasion rate. \nIntelligence (int) → Increases magic critical rate, increases exp for crafting/gathering, increases chance of gathering.\nAs a beginner we advise you to start with a split between strength and constitution. Use the command \"/up <shortcut attribute> <number of points to distribute>\". The list of shortcuts is located in the help panel, feel free to consult it (command \"/other help\"), you can also reset your points using the command \"/reset\", however this costs gold. To distribute in strength and then in constitution, use: \"/up str 3\" then \"/up con 2\", only the main attributes can be increased in this way except for the armor. Once this is done, use the command \"/talents show\" to continue the tutorial.",
"talents_first": "This is the talent display. With the talents you can unlock new spells, increase your main or secondary attributes regardless of the attribute points to be distributed. The list of identifiers of the available talents allows you to see which talents you can reach. Talents do have a cost though, so make sure you have enough points to take them (you can also reset your talents using the \"/resettalents\" command). To view a talent and see what it allows you to obtain, use the command \"/talent show <idOfTalent>\" and so continue the tutorial (the id of the talent is before the parenthesis in the list of available talents, except for the first one which is not in parenthesis).",
"talentshow_first": "In this display you can see what the talent gives you, as well as its cost. In the title of the display you have the information if you can take it or not. Use the hand emoji to take the talent or use the command \"/talent up <idOfTalent>\" and thus continue the tutorial.",
"talentup_first": "Congratulations, if you had points your talent is now added! Please note that you can add your unlocked spells to your skill bar. The commands are the following: \"/build show\", \"/build add\", \"/build move\". For more informations consult the help panel (command \"/other help\"). Now that you have grasped the basics of managing your character go fight other monsters, once you have obtained an item, use the command \"/inventory\" to display your inventory and continue this tutorial.",
"inventory_first": "Here is your inventory, you can filter it using some filters, use the command \"/other help\" to learn more about filters. In this display you have the list of items in your inventory. When you have an item, use the command \"/item id\" followed by its identifier, to display its informations and continue the tutorial.",
"item_first": "In this display you can see the statistics of the item, next to the attribute is an icon to know if it is higher or lower than your equipped item and in parenthesis is the difference with the equipped item. To equip an item and continue the tutorial, use the command \"/equip\" followed by the item ID in your inventory, or use the emoji 🛡️.",
"equip_first": "By using this command you will equip the item if you meet the necessary conditions. This will unequip the equipped item. To see your equipped items and continue the tutorial, use the command \"/equiplist\"",
"equiplist_first": "With this command you can see the most important informations about your equipment. Now that you've got the basics of combat down, let's get to travel! Use the command \"/region\"",
"region_first": "This command allows you to see all the areas in your region. And also the regions which are connected to it. When you are strong enough, change the area where you are by using the command \"/travel area\" followed by the ID to the left of the area name. To travel from one region to another, use the command \"/travel region\".",
"end": "This is the end of the Fight RPG introduction tutorial! Thank you for following it! For more informations or help, join our support Discord: https://discord.gg/vhHJY8V."
},
"events": {
"specific_loot_area": "Area-specific loots",
"specific_loot_area_types": "Area type specific loots",
"starts": "Starts at",
"ends": "Ends",
"started": "Started on",
"ongoing": "Ongoing Event",
"duration": "Duration of the event",
"no_events": "There are no ongoing events",
"wont_fire_again": "Will not be repeated",
"events_created": "Incoming events have been successfully added to your server."
},
"lootbox": {
"contains": "This loot box may contain %d of the following items:"
},
"antispam": {
"title": "Anti-Spam Challenge",
"select_emoji": "Select the %s emoji to continue playing.",
"success": "Challenge successfully passed!",
"in_progress": "You have a challenge in progress, you must resolve it to continue playing."
},
"skills_builds": {
"add_success": "You have successfully added the \"%s\" skill to your build",
"swap_succes": "Skill priority change successful",
"reset_success": "All your skills have been unequipped",
"remove_success": "You have successfully removed the \"%s\" skill to your build",
"title_show": "All equipped skills (%d/%d)",
"maximum_reached": "Maximum number of skill equipped reached",
"nothing": "You don't have any skill equipped",
"priority": "Cast Order Priority"
},
"talents": {
"header_talents": "Information on all unlocked talent",
"unlocked_skills": "Available skills",
"reachable_talents_ids": "Accessible Talent Ids",
"unlockable_skills": "Unlockable skills",
"x_point": "%d talent point",
"x_point_plural": "%d talent points",
"cost": "Talent Unlocking Cost",
"up_success_unlock": "The talent %s is now unlocked",
"up_success_unlock_skills": "The following skills are now unlocked: %s",
"talents_import_successful": "Import successfully completed",
"talents_import_not_totally_successful": "The import was only partially done, the following talents were not unlocked: \"%s\". Possible error: %s"
},
"skills": {
"damage_information": "Damage Information",
"damage_type": "Damage Type",
"formula": "Formula",
"hpDamage": "Damage to Hp",
"manaDamage": "Damage to Mp",
"lifeSteal": "Life Steal",
"manaSteal": "Mana Steal",
"healHp": "Heal",
"healMp": "Regenerate Mp",
"variance": "Variance",
"number_of_targets": "Number of targets",
"success_rate": "Success Rate",
"required_preparation_points": "Skill Cooldown (Including Bonuses)",
"no_desc": "No description for skill",
"formula_result": "Formula Result"
},
"effects": {
"type": "Effect Type",
"hpHeal": "Heal",
"manaHeal": "Regenerate Mp",
"energyHeal": "Regenerate Energy",
"addState": "Add Status",
"removeState": "Remove Status"
},
"elements": {
"type": "Element Type",
"physical": "Physical",
"fire": "Fire",
"water": "Water",
"earth": "Earth",
"air": "Air",
"dark": "Dark",
"light": "Light"
},
"craft": {
"header_required": "Tên - Type - Subtype - Rarity - Number",
"header_craft_list": "ID - Tên - Type - Min Lv. - Max Lv. - Rarity",
"needed_items": "Vật phẩm cần thiết",
"craft_done": "Bạn đã Craft vật phẩm: \"%s\""
},
"marketplace": {
"placed": "Your %s [x%d] is now on sale (id: %d)",
"placed_plur": "Your %s [x%d] are now on sale (id: %d)",
"header_str": "Người bán - idItem - Tên - Type - Lv - Rarity - Power - Number - Số lượng Giá",
"retrieve": "You've recovered your item",
"retrieve_plur": "You've recovered your items",
"you_sold_plur": "Đã bán \"%s\" x%d được %dG",
"you_sold": "Đã bán \"%s\" x%d được %dG",
"you_buy": "Bạn đã mua vật phẩm %d với giá là %dG",
"you_buy_plur": "Bạn đã mua vật phẩm %d với giá là %dG",
"you_paid_tax": "You've paid %dG of taxes to place this item",
"now_muted": "Marketplaces notifications are now deactivated",
"now_unmuted": "Marketplaces notifications are now activated",
"settings_menu_mute": "%s Marketplaces notifications"
},
"shop": {
"you_buy": "Bạn đã mua \"%s\" x%d với số tiền là: %dG",
"header": "ID - Tên [xSố lượng] - Type - Lv - Rarity - Giá"
},
"group": {
"you_left": "Bạn rời khỏi nhóm của mình",
"invitation_sent": "Đã gửi lời mời tham gia nhóm",
"someone_invited_you": "User %s gửi lời mời tham gia nhóm của họ (sử dụng %s để đồng ý hoặc %s để từ chối)",
"you_joined": "Bạn đã tham gia nhóm",
"you_declined": "Bạn từ chối lời mời tham gia nhóm",
"someone_left_the_group": " %s rời khỏi nhóm",
"someone_joined_the_group": " %s tham gia nhóm",
"someone_declined_invitation": " %s từ chối tham gia nhóm của bạn",
"now_muted": "Group notifications are now deactivated",
"now_unmuted": "Group notifications are now activated",
"user_kicked": " %s đã bị đá ra khỏi nhóm",
"user_swaped": " %s đã trở thành Leader của nhóm",
"invite_cancel": "The group invitation to user %s was cancelled",
"you_ve_been_kicked": "Bạn đã bị đá ra khỏi nhóm",
"nobody_was_invited": "Nobody was invited to join your group",
"group": "Nhóm",
"avg_level": "Lv trung bình: %d",
"avg_power": "Power trung bình: %d",
"members_of_the_group": "Thành viên nhóm",
"invited_users": "Đã gửi lời mời tham gia",
"settings_menu_mute": "%s Thông báo nhóm"
},
"area": {
"monster": "ID: %s | %s | Lv: %s | %s",
"resources": "Tài nguyên của khu vực:",
"resource": "ID: %s | %s | %s",
"list_of_players_in_area": "Danh sách người chơi ở khu vực %s :",
"player": "ID: %s | Tên: %s | Lv: %d",
"wild_area": "%d | %s | Lv: %s",
"city_area": "%d | %s (Town) | Lv: %s",
"dungeon_area": "%d | %s (Dungeon) | Lv: %s",
"no_description": "Không có thông tin mô tả cho khu vực này",
"maximum_quality": "Chất lượng vật phẩm cao nhất:",
"minimum_quality": "Chất lượng vật phẩm thấp nhất:",
"minimum_rebirth_level": "Minimum monsters rebirth level:",
"maximum_rebirth_level": "Maximum monsters rebirth level:",
"monsters_rebirth_level": "Monster Rebirth Levels:",
"you_claimed": "Bạn đã tuyên bố chủ quyền khu vực này",
"owned_by": "Chủ quyền: %s",
"monster_group": "ID: %s | %s (+%d more) | Lv Trung Bình: %s | %s",
"conquest": "Chinh phạt",
"conquest_next": "Thời gian chinh phạt kế tiếp:\n- %s\n- Có %d Guild tham gia tranh đoạt",
"conquest_ongoing": "Chinh phạt đang diễn ra",
"area_progression": "Tiến triển của khu vực",
"level_up": "Khu vực này đã lên Lv",
"bonus_list_header": "Identifier → Refers to",
"up_stat": " %s đã tăng %d điểm",
"reset_stats": "Điểm khu vực này đã được trả lại",
"areas": "Các khu vực",
"list": "Danh sách các khu vực",
"list_regions_connected": "Thông với các vùng đất sau",
"no_connected_regions": "Khu vực này hiện không thông với bất kỳ vùng đất nào",
"follow_the_link": "You can have the list of resources at the link bellow.",
"services": "Dịch vụ",
"service_marketplace": "Chợ (Thuế: %d%)",
"service_forge": "Lò rèn (Craft: Lvl. %d - %d)",
"service_shop": "Cửa hàng (Thuế: %d%)",
"conquest_actual_level": "Lv hiện tại: %d",
"conquest_points_to_distribute": "Điểm có thể nâng: %d",
"conquest_price_to_next_level": "Số tiền cần để up Lv: %dG",
"region": "Vùng đất: %s",
"wild": "Wilderness",
"city": "Town",
"dungeon": "Dungeon"
},
"bonuses": {
"bonuses": "Điểm thưởng",
"xp_fight": "EXP chiến đấu",
"xp_collect": "EXP thu thập",
"xp_craft": "EXP Craft",
"gold_drop": "Rớt tiền",
"item_drop": "Rớt vật phẩm",
"collect_drop": "Rớt tài nguyên",
"no_bonuses": "Không có điểm thưởng nào được kích hoạt",
"harvest_tiredness": "Mệt mỏi khi thu thập",
"travel_tiredness": "Mệt mỏi khi di chuyển"
},
"resources": {
"wood": "Wood",
"ore": "Ore",
"tree": "Tree",
"plant": "Plant",
"woods": "Woods",
"ores": "Ores",
"trees": "Trees",
"plants": "Thực vật",
"animal": "Animal",
"animals": "Animals",
"fabric": "Fabric",
"fabrics": "Fabrics",
"noresources": "Không có tài nguyên ở đây",
"not_collected": "Bạn thu thập tài nguyên không thành công",
"collected_x_resource": "Bạn đã thu thập được %d %s",
"resource_dont_exist": "You don't see this resource anywhere",
"collect_gain_xp": "Bạn nhận được %d EXP Craft(Bao gồm %d EXP thưởng từ khu vực)",
"job_level_up": "Bạn đã lên %d Lv Craft",
"job_level_up_plur": "Bạn đã lên %d Lv Craft",
"tried_to_collect_x_times": "Bạn đã thử thu thập tài nguyên %d lần"
},
"general": {
"nothing_at_this_page": "Trang trống",
"page": "Trang",
"none": "None",
"nobody": "Không có",
"description": "Mô tả",
"monsters": "Quái vật",
"monster": "Monster",
"resource": "Resource",
"resources": "Tài nguyên",
"lvl": "Lv.",
"page_out_of_x": "Trang %d/%d",
"enable": "Enable",
"disable": "Disable",
"region": "Vùng đất",
"modular": "Modular",
"and": "and",
"aquired": "Acquired",
"unlockable": "Unlockable",
"locked": "Locked",
"equipable": "Equipable",
"yes": "Yes",
"no": "No",
"mobile_set": "Mobile Detection Mode: %s. Is user on mobile: %s",
"points": "%d Point",
"points_plur": "%d Points",
"validate": "Validate",
"back": "Back",
"next": "Next",
"edit": "Edit",
"skip": "Skip",
"unlock": "Unlock",
"take": "Take",
"image": "Image",
"reset": "Reset"
},
"guild": {
"you_dont_have_a_guild": "Bạn không có Guild",
"member": "Thành viên",
"members": "Members",
"officer": "Officer",
"guild_master": "Guild Master",
"guild_announcement": "Thông báo của Guild",
"no_guild_announcement": "Không có thông báo Guild",
"you_have_updated_guild_announcement": "Bạn đã cập nhật thông báo của Guild",
"members_out_of": "Thành viên: %d/%d",
"level_out_of": "Lv: %d/%d",
"required_to_level_up": "Số tiền cần để lên Lv Guild là: %d G",
"money_available": "Số tiền hiện có",
"money": "%dG",
"guild_x_created": "Guild: %s dã được tạo!",
"dont_have_enough_to_create": "Bạn không đủ tiền để tạo Guild (Cần %dG)",
"guild_disband": "Bạn đã giải tán Guild!",
"guild_applied": "Bạn đăng ký tham gia Guild",
"character_have_been_accepted": "Đơn đăng ký vào Guild đã được chấp nhận",
"you_have_denied_this_apply": "Application successfully denied",
"you_have_cancel_your_apply": "You've cancelled your application",
"you_have_denied_all_applies": "You've refused all applications",
"you_have_cancel_all_your_applies": "You've cancelled all your applications",
"you_leaved_guild": "Bạn đã rời khỏi Guild",
"member_kicked": "The member was kicked out",
"rank_modified": "This member's rank was successfully changed",
"you_gift_x_g_to_guild": "Bạn đã cống hiến %dG cho Guild",
"you_retrive_x_g_from_guild": "Bạn đã rút ra %dG từ Guild",
"guild_level_up": "Chúc mừng ! Guild đã lên Lv, hiện tại là Lv: %d",
"guild_no_apply_player": "You didn't apply to join a guild",
"nobody_ask_to_join_your_guild": "No one applied to join your guild",
"nothing_to_print": "Nothing to see",
"enroll": "Your guild is now enrolled for the next conquest in this area",
"unenroll": "Your guild is now no longer enrolled to any conquest",
"you_paid_x": "Your guild paid %dG",
"renamed": "Bạn đã đổi tên Guild thành \"%s\"",
"guild_territories": "Khu vực Guild tuyên bố chủ quyền là (%d)",
"guild_territory_enroll": "Đăng ký chinh phạt",
"head_disband": "You are about to disband your guild",
"body_disband": "Dissolving your guild is an irreversible action, all the guild money will disappear, all guild members will be kicked and all guild territories will be abandoned",
"disband_cancelled": "Hủy bỏ giải tán Guild",
"total_player_power": "Tổng Power của thành viên là %d",
"total_player_level": "Tổng Lv của thành viên là %d",
"total_player_rebirth_level": "Total Rebirth Level of members %d",
"current_applications": "Danh sách hiện tại",
"you_ve_been_accepted": "You have been accepted in the guild \"%s\"",
"you_ve_been_kicked": "You have been kicked from your guild"
},
"inventory_equipment": {
"item_equiped": "Bạn đã trang bị vật phẩm (%s)",
"item_unequiped": "Bạn đã gỡ trang bị (%s)",
"id": "id",
"name": "Tên",
"type": "Type",
"subtype": "Subtype",
"level": "Lv",
"rebirth_level": "Rebirth Level",
"rarity": "Rarity",
"empty_inventory": "Rương đồ trống",
"no_desc": "Không có mô tả về vật phẩm này",
"page_x_out_of": "Trang %d/%d",
"currently_equipped": "Đang trang bị",
"attributes": "Thuộc tính",
"secondary_attributes": "Secondary Attributes",
"nothing_in_this_slot": "Bạn không trang bị vật phẩm nào ở vị trí này",
"nothing_equipped": "Bạn không trang bị bất kỳ vật phẩm nào",
"power": "Power",
"item_tag_as_favorite": "Vật phẩm (%s) đã gắn Tag yêu thích",
"item_untag_as_favorite": "Vật phẩm (%s) đã được gỡ Tag yêu thích",
"item_no_stats": "Vật phẩm này không có bất kỳ thuộc tính nào",
"wait_time_reduction": "(Reduces remaining fatigue time by %d%)",
"sellall_title": "Thông tin bán vật phẩm/trang bị",
"sellall_going_to_sell": "Bán mọi thứ trong rương đồ",
"sellall_going_to_sell_all": "Bán tất cả mọi thứ không gắn Tag yêu thích",
"sellall_going_to_sell_rarity": "All items of \"%s\" quality that are not marked as favorites",
"sellall_going_to_sell_type": "All items of \"%s\" type that are not marked as favorites",
"sellall_going_to_sell_level_sup": "All items with their level greater than or equal to %d that are not marked as favorites",
"sellall_going_to_sell_level_inf": "All items with their level lower than or equal to %d that are not marked as favorites",
"sellall_total_value": "Tổng giá trị",
"sellall_are_you_sure": "Bạn có chắc chắn muốn bán?",
"sellall_cancel": "Bạn đã hủy bán",
"sellall_going_to_sell_power_sup": "All items with a power greater than or equal to %d",
"sellall_going_to_sell_power_inf": "All items with a power lower than or equal to %d",
"sellall_going_to_sell_name": "All items whose name contains \"%s\"",
"sellall_going_to_sell_subtype": "All items of \"%s\" subtype that are not marked as favorites",
"sellall_going_to_sell_rebirth_sup": "All items with their rebirth level greater than or equal to %d that are not marked as favorites",
"sellall_going_to_sell_rebirth_inf": "All items with their rebirth level lower than or equal to %d that are not marked as favorites",
"item_tag_as_favorite_filtered": "All items corresponding to the filter are now tagged as favorites",
"item_untag_as_favorite_filtered": "All items corresponding to the filter are no longer tagged as favorites",
"money_bag": "Sell",
"backpack": "Unequip",
"shield": "Equip",
"star": "Protect",
"eight_pointed_black_star": "Unprotect",
"baggage_claim": "Add to trade"
},
"mounts": {
"reduction": "Ảnh hưởng khi di chuyển theo khí hậu/địa hình:",
"all_areas": "Tất cả khu vực: %d%",
"everything_else": "Khác: %d%"
},
"climates": {
"climate": "Khí hậu/địa hình",
"temperate_oceanic": "Ôn đới",
"volcanic_hell": "Núi lửa",
"hot_desert": "Sa mạc",
"eternal_snow": "Băng vĩnh cửu",
"interior": "Trong dungeon"
},
"weather": {
"weather": "Thời tiết",
"sunny": "Nắng",
"cloudy": "U ám",
"foggy": "Sương mù",
"rainy": "mưa",
"rainstorm": "Bão",
"snowy": "Tuyết",
"firestorm": "Bão lửa",
"sandstorm": "Bão cát",
"snowstorm": "Bão tuyết",
"impact": "Ảnh hưởng do thời tiết",
"time_before_ends": "Thời tiết sẽ thay đổi sau"
},
"trade": {
"settings_menu_mute": "%s thông báo giao dịch",
"now_muted": "Thông báo giao dịch đã tắt",
"now_unmuted": "Bật thông báo giao dịch",
"you_cancelled": "Bạn đã hủy giao dịch",
"someone_proposed_you": "%s đã mời bạn giao dịch",
"proposal_sent": "Đã gửi yêu cầu giao dịch",
"you_accepted": "Bạn đã chấp nhận yêu cầu giao dịch",
"notification_accepted": "%s chấp nhận yêu cầu giao dịch",
"notification_cancelled": "%s từ chối giao dịch",
"done": "Giao dịch hoàn tất, vật phẩm hoặc tiền giao dịch sẽ nằm trong rương đồ của bạn",
"notification_await_validation": "Đối tác đã xác nhận giao dịch, hiện đang chờ xác nhận của bạn",
"await_validation": "Xác nhận giao dịch, đang chờ đối tác của bạn xác nhận",
"notification_add_item": "%s đã thêm vật phẩm này \"%s\" [x%d] vào giao dịch",
"add_item": "Bạn đã thêm vật phẩm \"%s\" [x%d] vào giao dịch",
"notification_remove_item": "%s đã bỏ vật phẩm này \"%s\" [x%d] khỏi giao dịch",
"remove_item": "Bạn đã bỏ vật phẩm này \"%s\" [x%d] khỏi giao dịch",
"notification_set_money": "%s đưa cho bạn %dG cho giao dịch này",
"set_money": "Bạn đã đưa ra %dG cho giao dịch này",
"title": "Giao dịch giữa %s và %s",
"is_proposing": "%s đang đề xuất"
},
"character": {
"reset_done": "Đã reset xong!",
"attribute_up_to": "Bạn đã tăng %s lên %d điểm",
"attribute_x_points_available": "Bạn có thể nâng lại %d điểm",
"attribute_x_points_available_plural": "Còn lại %d điểm",
"info_attributes_title": "Thuộc tính | %d điểm có thể nâng (Giá reset là %dG)",
"info_attributes_title_plur": "Thuộc tính | %d điểm có thể nâng (Giá reset là %dG)",
"maximum_level": "Max. Lv",
"character_advancement": "Character Advancement",
"level": "Lv",
"craft_level": "Lv Craft",
"money": "Tiền",
"honor": "Vinh dự",
"health_points": "HP",
"damage_reduction": "Giảm sát thương",
"critical_chance": "Tỷ lệ Critical",
"achievement_earned": "Chúc mừng! Bạn đã đạt đủ điều kiện để mở khóa achievement: \"%s\"",
"achievement_title": "Danh sách Achievements (%d / %d) - %d điểm",
"achievement_earned_word": "Done",
"achievement_name": "%s (%d điểm)",
"no_desc": "No desciption for this achievement",
"maximum_stun_chance": "Tỷ lệ Stun",
"reset_price_title": "Thông tin reset thuộc tính",
"reset_talents_price_title": "Reseting your talents",
"sure_to_reset_title": "Bạn có chắc muốn reset điểm thuộc tính?",
"reset_cancel": "Không reset điểm thuộc tính",
"sure_to_reset_talents_title": "Are you sure to reset your talents?",
"reset_talents_cancel": "You've cancelled your talents reset",
"mana_points": "Mana Points",
"energy_points": "Energy Points",
"character_resources": "Character Resources",
"achievement_points": "Achievement Points (%d / %d)",
"rebirth_available": "Rebirth Available",
"rebirth_unavailable": "Rebirth Unavailable",
"rebirth_do_you_want": "What do you want to rebirth?",
"rebirth_sure_to": "Do you really want to rebirth : %s?",
"rebirth_sure_to_description": "All your items will be un-equipped, your stats, secondary stats, level and talents are going to be reset. You will move to the first area of the game. You won't lose anything else.",
"rebirth_sure_to_description_craft": "Your crafting level will be reset. You won't lose anything else.",
"rebirht_items_loot": "Items you loot will be at least rebirth level: %d.",
"rebirht_items_craft": "Items you craft will be at max rebirth level: %d.",
"rebirth_items_stats": "Items of rebirth level %d, will have %d% more stats compared to no rebirth level.",
"rebirth_monsters_stats": "Monsters of rebirth level %d, will have %d% more stats compared to no rebirth level.",
"rebirth_stats_points_more": "You will have %d points to distribute each level in stats.",
"rebirth_talents_points_more": "You will start with %d more talents points to distribute.",
"rebirth_title": "Rebirth Information",
"current_bonuses": "Current Bonuses",
"rebirth_successful": "Rebirth Successful",
"rebirth_successful_level": "Your strength diminishes, your field of view decreases and you faint. When you wake up, you realize that you are naked, right where your adventure began. However, you feel different, more powerful...",
"rebirth_successful_craft_level": "After a long journey to become the best craftsman, you have found a master in this art, an old man. He has promised to help you, you follow him, he tells you that to become even better, you have to know how to start again. While you are having your tea, the old man quickly gives you a blow to the head. When you wake up, he's gone, but worse, you can't remember how you used to make your things. But you have the impression that you will do even better than your first time!",
"rebirth_cancelled": "You've cancelled your rebirth",
"achievement_count": "Achievements (%d / %d)",
"rebirth_level": "Rebirth your Character",
"rebirth_craft_level": "Rebirth your Craft"
},
"economic": {
"sell_for_x": "Bạn đã bán vật phẩm của bạn với giá %dG",
"sell_for_x_plural": "Bạn đã bán vật phẩm của bạn với giá %dG",
"sell_all_for_x": "Bạn đã bán tất cả các vật phẩm trong rương đồ với giá %dG",
"send_money_to": "Bạn đã gửi số tiền %dG đến %s"
},
"admin": {
"no_admin_xp_command": "Bạn không phải Admin mà vẫn cố gắng xài cheat! Thật không may, thần lực không ở bên bạn lúc này để giúp thoát khỏi án phạt từ hệ thống. (Lv bạn đã bị reset thành 1)."
},
"travel": {
"travel_to_area": "Bạn đã di chuyển đến khu vực: %s",
"travel_to_area_exhaust": "Bạn trong trạng thái mệt mỏi vì vừa di chuyển, hãy nghỉ ngơi và tiếp tục sau %d giây",
"travel_planning": "Di chuyển từ \"%s\" đến \"%s\"",
"wait_time_title": "Thời gian",
"wait_time_body": "%d giây",
"wait_time_body_with_mount": "%d giây (Nhờ thú cưỡi nên bạn giảm được %d giây)",
"gold_price_title": "Chi Phí",
"gold_price_body": "%d G",
"sure_to_travel_title": "Bạn có chắc bạn muốn di chuyển không?",
"sure_to_travel_body": "%s → Có\n%s → Không",
"travel_cancel": "Bạn đã hủy bỏ di chuyển",
"total_without_weather": "Thời gian di chuyển khi không bị thời tiết ảnh hưởng",
"travel_cancel_easter_egg": "You were about to head off, but got lazy and decided to stay. Maybe you're bipolar?"
},
"fight_pve": {
"ganked_by_monster": "Do ẩn nấp kém nên quái vật đã phát hiện và tấn công bạn! (Tăng Per sẽ giúp ẩn nấp tốt hơn)",
"user_get_attacked": "%s bị tấn công bởi: %s!",
"user_attacked": "%s tấn công %s!",
"onfight_user_attack": "%s tấn công quái vật %s được **%d** sát thương",
"onfight_monster_attack": "%s tấn công người chơi %s gây ra **%d** sát thương",
"drop_item": "Chúc mừng! Bạn nhận được vật phẩm (%s)!",
"drop_item_equip": "Bạn nhận được trang bị (%s)!",
"drop_item_equip_plur": "Bạn nhận được trang bị (%s)!",
"drop_item_other": "Bạn nhận được vật phẩm (%s)!",
"drop_item_other_plur": "Bạn nhận được vật phẩm (%s)!",
"level_up": "Chúc mừng! bạn đã lên %d Lv. Lv hiện tại là: %d!",
"money_gain": "Nhận được: %d G",
"xp_gain": "Nhận được: %d EXP",
"nothing_gain": "Bạn không nhận được gì!",
"both_gain": "Nhận được: %d EXP và %d G",
"group_drop_item": "Chúc mừng! Nhóm của bạn nhận được vài vật phẩm(Rarity: %s)",
"group_level_up": "Chúc mừng! Có thành viên trong nhóm của bạn đã lên Lv!",
"group_money_gain": "Nhóm của bạn nhận được: %d G",
"group_xp_gain": "Nhóm của bạn nhận được: %d EXP",
"group_nothing_gain": "Nhóm của bạn không nhận được gì!",
"group_both_gain": "Nhóm của bạn nhận được: %d EXP và %d G",
"group_pm_gain": "Bạn nhận được: %d EXP và %d G",
"group_pm_gain_other": "Bạn giành được vật phẩm: %s",
"group_pm_lost_fight": "Nhóm của bạn đã thua trận chiến",
"group_pm_won_fight": "Nhóm của bạn đã chiến thắng trận chiến",
"fight_wait": "Bạn phải chờ %d giây để tiếp tục"
},
"fight_pvp": {
"onfight_user_attack": "%s tấn công %s được **%d** sát thương",
"honor_gain": "Bạn đã chiến thắng: nhận được %d vinh dự!",
"honor_lose": "Bạn đã thua trận: mất %d vinh dự!",
"honor_not_honorable": "Fight not honorable, bạn đã thua trận: mất %d vinh dự!"
},
"monsters_types": {
"normal": "Thường",
"elite": "Tinh nhuệ",
"boss": "Boss"
},
"fight_general": {
"combat_log": "Combat log",
"critical_hit": "Critical !",
"stun_hit": "Stun !",
"critstun_hit": "Critical + Stun",
"win": "Bạn đã chiến thắng!",
"loose": "Bạn đã thua!",
"now_muted": "Thông báo trận chiến đã tắt",
"now_unmuted": "Bật thông báo trận chiến",
"settings_menu_mute": "%s thông báo trận chiến",
"status_of_fight": "Trạng thái: %s",
"battle_ongoing": "Đang chiến đấu!",
"cant_do_anything": "Can't do anything",
"draw": "Draw"
},
"rarities": {
"common": "Thường",
"rare": "Khá Hiếm",
"superior": "Siêu Hiếm",
"epic": "Sử thi",
"legendary": "Huyền thoại",
"mythic": "Thần thoại"
},
"languages": {
"fr": "French",
"en": "Tiếng Anh",
"pt-BR": "Bồ Đào Nha (Brazin)",
"ru": "Tiếng Nga",
"es": "Spanish",
"vi": "Tiếng Việt",
"list_of_languages": "Danh sách ngôn ngữ hiện có (use the shortcut to switch languages)",
"lang_changed": "Ngôn ngữ thay đổi thành công, bây giờ bot sẽ trả lời bằng ngôn ngữ %s"
},
"other": {
"loading_character": "Đang tải thông tin nhân vật",
"character_loaded": "Đã tải thành công thông tin nhân vật",
"prefix_changed": "Prefix changed",
"old_prefix": "Old prefix",
"new_prefix": "New prefix",
"prefix_title": "Current Prefix",
"check_dm": "A private message has been sent to you with the procedure to follow!"
},
"item_types": {
"weapon": "Vũ khí",
"chest": "Ngực",
"legs": "Chân",
"head": "Đầu",
"resource": "Tài nguyên",
"lootbox": "LootBox",
"potion": "Potion",
"mount": "Thú cưỡi"
},
"item_sous_types": {
"wood": "Wood",
"ore": "Ore",
"plant": "Plant",
"sword": "Kiếm",
"whip": "Roi",
"armor": "Giáp",
"loot_box_equipment": "Equipment Box",
"reset_time_potion": "Anti-Tiredness",
"founder_box": "Founder Reward",
"random_loot_box_equipment": "Random Equipment Box",
"horse": "Ngựa",
"crystal": "Crystal",
"energy_potion": "Toning Potion",
"salamander": "Salamander",
"camel": "Lạc đà",
"polar_bear": "Gấu bắc cực",
"cloth": "Cloth",
"leather": "Leather",
"bow": "Bow",
"dagger": "Dagger",
"wand": "Wand",
"staff": "Staff"
},
"stats": {
"strength": "Str",
"intellect": "Int",
"constitution": "Con",
"armor": "Giáp",
"dexterity": "Dex",
"wisdom": "Wis",
"will": "Will",
"perception": "Per",
"charisma": "Cha",
"luck": "Luck",
"hitRate": "Hit Rate",
"evadeRate": "Physical Evade Rate",
"criticalRate": "Critical Rate",
"regenHp": "Regen HP",
"regenMp": "Regen MP",
"regenEnergy": "Regen Energy",
"skillManaCost": "Skill Mana Cost",
"skillEnergyCost": "Skill Energy Cost",
"criticalEvadeRate": "Critical Evade Rate",
"magicalEvadeRate": "Magical Evade Rate",
"threat": "Threat",
"physicalResist": "Physical Resist",
"fireResist": "Fire Resist",
"waterResist": "Water Resist",
"earthResist": "Earth Resist",
"airResist": "Air Resist",
"darkResist": "Dark Resist",
"lightResist": "Light Resist",
"initiative": "Initiative"
},
"lootboxes": {
"open_message": "Bạn đã mở một loot box, nhận được:\n",
"open_message_mult": "Bạn đã mở %d loot boxes, nhận được:\n",
"no_drop": "Bạn đã mở một loot box, do nhân phẩm thấp nên ko nhận được gì!",
"no_drop_mult": "Bạn đã mở %d loot boxes, do nhân phẩm quá thấp nên ko nhận được gì!"
},
"leaderboards": {
"arena": "Xếp hạng PvP | Tổng vinh dự: %d",
"gold": "Top phú hộ | Tổng tiền hiện có: %dG",
"level": "Top Lv",
"craftlevel": "Top Lv Craft",
"wb_damage": "World Boss: Sát thương",
"wb_attacks": "World Boss: Số lần Atk",
"wb_have_not_participate": "Bạn chưa tham gia vào trận chiến World Boss nào",
"your_rank": "Xếp hạng: #%d / %d Người chơi",
"power": "Top Power | Tổng power: %d",
"achievements": "Achievements Leaderboard | Total achievement points among all players: %d"
},
"world_bosses": {
"no_world_boss": "Hiện tại chưa xuất hiện World Boss",
"spawn_date": "Thời gian xuất hiện: %s",
"last_boss_never_fight": "You have not fought in a world boss fight yet",
"boss_fight_recap_damage_dealt": "Sát thương: %d (Xếp Hạng: %d)",
"boss_fight_recap_attack_count": "Số lần Atk: %d (Xếp Hạng: %d)",
"boss_fight_damage_inflicted": "Bạn đã tấn công boss được %d sát thương",
"boss_fight_damage_inflicted_critical": "Bạn đã tấn công boss được %d sát thương (Critical !)",
"boss_you_particpate_dead": "World Boss \"%s\" sắp chết.",
"boss_already_dead": "World Boss đã chết",
"now_unmuted": "Thông báo World Bosses Bật",
"now_muted": "Tắt thông báo World Bosses",
"settings_menu_mute": "%s Thông báo World Bosses",
"skill_used": "Skill Used",
"travel": "Travel to world boss area"
},
"potions": {
"drink": "Uống: \"%s\"\n",
"drink_plur": "You drank: \"%s\" %d times\n",
"reset_time": "Sau khi sử dụng bạn đã không còn cảm thấy mệt mỏi",
"reduce_time": "Bạn cảm thấy khá hơn, cơn mệt mỏi của bạn giảm được: %d%"
},
"vote_daily": {
"you_voted": "You voted for the bot, thank you!\n",
"vote_no_week_end": "Phần thưởng, bạn nhận được bình thuốc anti-tiredness!",
"vote_week_end": "Phần thưởng tuần! Bạn nhận được 2 bình thuốc anti-tiredness!"
},
"help_panel": {
"help": "Help",
"tutorial": "Hi! I see that is your first time using FightRPG. There is a tutorial at this link: %s\nFollow it before doing anything, it will help you!",
"inventory_title": "Inventory",
"inv": "Shows the inventory",
"inv_filter": "Shows the inventory and filter the results. Filters are: %s",
"item": "Shows the information of the selected item. For equipped items use: head, chest, legs, weapon or mount instead of id.",
"itemfav": "Tag an item as favorite to prevent its sale",
"itemunfav": "Untag and item tag as favorite",
"sell": "Sells the selected item",
"sellall": "Sells all your inventory items",
"sellall_filter": "Sells all items in your inventory that match your <filter>. Filters are: %s",
"sendmoney": "Send money to a player",
"filters_title": "Filters",
"rarities": "Displays the ids of every rarity",
"types": "Displays the ids of every item type",
"equipment_title": "Equipment",
"equipment": "Shows equipped items",
"equip": "Equips the selected item",
"unequip": "Unequips the object from the selected slot",
"use": "Use the specified item",
"character_title": "Character",
"info": "Shows your character's information",
"attributes": "Shows your character's total attributes",
"up": "Adds to attribute statName number Points",
"leaderboard": "Shows your ranking based on the argument (arena, gold, level, craftlevel, power)",
"reset": "Allows you to reset your attributes",
"resettalents": "Allows you to reset your talents",
"fight_title": "Fights",
"fight": "Allows you to try to attack the selected monster/monsters",
"grpfight": "Allow you to try to attack the selected monster/monsters with your group",
"arenaMention": "Allows you to attack the mentioned player",
"arena": "Allows you to attack the selected player",
"areas_title": "Areas",
"area": "Shows the information of the area in which you are",
"areas": "Shows every area",
"areaconquest": "Show the next conquest for this area",
"arealevelup": "Level up the area that your guild possess (you must be in this area)",
"areabonuseslist": "Show the identifiers list related to area bonuses",
"areaplayers": "Shows the players in the zone",
"areaupbonus": "Upgrade one of the available bonuses",
"arearesetbonuses": "Refund all bonuses for current area",
"travel": "Allows you to travel to the area areaID",
"travelregion": "Allows you to travel to the region regionID",
"traveldirect": "Allows you to travel to one area, using it's real areaID",
"guilds_title": "Guilds",
"guild": "Shows the information of the guild you're in",
"guilds": "Shows the guilds",
"gcreate": "Allows the creation of a guild",
"gdisband": "Allows the disbanding of the guild (GM only)",
"gapply": "Allows you to apply to join a guild",
"gaccept": "Accepts someone in your guild",
"gapplies": "Shows the current applications",
"gapplyremove": "Allows you to delete the application of your choice",
"gappliesremove": "Deletes all current applications",
"gannounce": "Allows you to change the guild announcement",
"gaddmoney": "Gives money to the guild",
"gremovemoney": "Retrieves money from the guild",
"glevelup": "Raises the guild level",
"genroll": "Enrolls your guild for the next conquest of the area where you are in",
"gunenroll": "Unenroll the guild from the next conquest of this area",
"gleave": "Leave your guild",
"gmod": "Change the member rank (1: Member, 2: Officer)",
"gleaderswitch": "Exchange your guild master position with another guild member",
"grename": "Change the name of your guild. Cost: %dG",
"gterritories": "Shows the territories held by your guild",
"gkick": "Kick the player from your guild",
"other_title": "Other",
"lang": "Shows the list of available languages",
"lang_param": "Allows you to switch languages",
"groups_title": "Groups",
"grp": "Shows the group you're in",
"grpinvite_mention": "Invites player @mention to join your group",
"grpleave": "Allows you to leave your group",
"grpaccept": "Accepts an invitation to join a group",
"grpdecline": "Declines an invitation to join a group",
"grpkick": "Kicks out a member of your group or cancels an invitation to join your group",
"grpswap": "Allows the group leader to choose a new group leader",
"grpmute": "Deactivates group notifications",
"grpunmute": "Activates group notifications",
"market_title": "Auction house",
"mkmylist": "Displays your sell orders",
"mkplace": "Sell <nb> item <idItemInInventory> for <price>G",
"mkcancel": "Cancels the sale order for the item <idItem>",
"mkbuy": "Buy <nb> of the item <idItem>",
"mksearch": "Search for the item that match filters. Filters are: %s",
"mkshow": "Show all items in the market at given page",
"mksee": "Shows the item <idItem>",
"craft_title": "Job System",
"craftlist": "Show all the available recipes in this city at given page",
"craftshow": "Show the recipe of given ID",
"craft": "Craft the recipe of given ID",
"collect": "Collect the resource of given ID",
"resources": "Show all the resources per area",
"shop_title": "Shop",
"sitems": "Show all the available items to buy in this city at given page",
"sbuy": "Buy the item of given ID",
"world_boss_title": "World Bosses",
"wbfight": "Attack the World Boss if there is one in the area where you are",
"wbshowall": "Displays infos about World Bosses",
"wblastinfo": "Show your stats for the last boss you killed",
"wbleaderboard": "Displays the ranking of the best players in terms of either damage (damage) or attack count (attacks) for the last World Boss in which you participated. The types are: damage,attacks",
"settings": "Shows the settings menu",
"achievements": "Displays Achievements",
"trade_title": "Trades",
"tpropose": "Propose a trade @someone",
"taccept": "Accept a trade proposal",
"tcancel": "Cancel the current trade",
"tshow": "Displays the trade",
"titem": "Shows the item <idInTrade> in the trade",
"tadd": "Add one or more item using <idItemInInventory> to the trade",
"tremove": "Remove one or more item from the trade",
"tsetmoney": "Set the amount of gold you want to trade",
"tvalidate": "Validates the trade. You must be in the same area as the person you are trading with. When you both validated, the trade is over. Everyone must re-validate the trade after changes were made",
"talents_title": "Talents/Skill Tree",
"talents": "Displays information on unlocked and unlockable talents",
"talentshow": "Displays talent information with the <idTalent> identifier",
"talentup": "Unlocks the talent with the <idTalent> identifier",
"skillshow": "Displays the information of the skill with the identifier <idSkill>",
"buildshow": "Displays your skill bar",
"buildadd": "Adds the skill with the <idSkill> identifier to your skill bar",
"buildremove": "Removes the skill with the <idSkill> identifier from your skill bar",
"buildmove": "Moves the skill with the <idSkill> identifier from your skill bar to the <slotNumber> slot",
"buildclear": "Removes all skills from your skill bar",