-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathru.json
1021 lines (1021 loc) · 80.2 KB
/
ru.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"errors": {
"generic": "Вы не можете сделать это прямо сейчас",
"generic_tired": "Вы устали. Подождите %d секунд и повторите попытку",
"generic_cant_do_that": "Вы не можете этого сделать",
"generic_user_dont_exist": "Не удается найти этого пользователя",
"you_cant_claim": "Вы не можете претендовать на эту территорию",
"you_have_to_be_in_a_guild": "Вы должны быть в гильдии для этого",
"you_dont_have_right_to_change_announcement": "У вас нет прав изменять объявление гильдии",
"you_cant_exceed_x_characters": "Не может превышать %d символов",
"already_in_guild": "Невозможно, вы уже в гильдии!",
"guild_name_empty": "Вы должны выбрать название для своей гильдии",
"guild_have_to_be_gm_to_disband": "Вы должны быть Мастером гильдии, что её распустить",
"guild_dont_be_in_guild_to_join_a_guild": "Вы не можете попросить вступить в гильдию, если вы уже в ней",
"guild_enter_id_to_join": "Вам нужно ввести ID гильдии, если вы хотите присоединиться",
"guild_character_not_ask_to_join": "Этот пользователь не просил присоединиться к вашей гильдии",
"guild_enter_id_to_add": "Необходимо ввести ID, чтобы добавить этого пользователя",
"guild_cant_remove_appliances": "Вы не можете этого сделать",
"guild_have_to_enter_id_to_remove_apply": "Необходимо ввести ID пользователя",
"guild_have_to_enter_id_to_remove_apply_playerside": "Необходимо ввести ID гильдии",
"guild_not_in_guild": "Вы не состоите в гильдии.",
"guild_cant_give_this_money": "Вы не можете отдать эту сумму гильдии",
"guild_you_dont_have_enough_money": "У вас недостаточно денег",
"guild_you_have_to_select_amount_money": "Пожалуйста, выберите сумму, которую хотите отдать вашей гильдии",
"guild_you_have_to_select_amount_to_retrive": "Пожалуйста, выберите сумму для извлечения",
"guild_name_cant_exceed_x_characters": "Название гильдии не может превышать %d символов или быть меньше %d символов",
"guild_name_taken": "Это имя уже занято",
"guild_player_reach_max_applies": "Вы можете присоедиться максимум к %d гильдий одновременно",
"guild_player_already_applied": "Вы уже подали заявку на вступление в гильдию",
"guild_not_exist": "Этой гильдии не существует",
"guild_cant_leave_guild_as_gm": "Как Мастер гильдии, вы не можете отказаться от нее, но вы можете распустить гильдию со следующей командой /guild disband",
"guild_dont_have_right_to_kick": "У вас нет прав исключить этого участника",
"guild_member_dont_exist": "Этот участник не существует",
"guild_dont_have_right_to_remove_money": "У вас нет прав на снятие денег",
"guild_guild_dont_have_this_amount_of_money": "Вы не можете получить столько денег от гильдии",
"guild_no_enough_money_to_level_up": "У вашей гильдии недостаточно денег для повышения уровня. Вам все еще нужно: %dG",
"guild_dont_have_right_to_level_up": "У вас нет прав повышать уровень гильдии",
"guild_maximum_members": "Ваша гильдия достигла максимального количества участников",
"guild_cant_invite_players": "Вы не имеете права принимать людей в свою гильдию",
"guild_already_max_level": "Ваша гильдия уже достигла максимального уровня",
"guild_tournament_started": "Ваша гильдия зачисляется на Завоевание, которое уже началось, так что вы не можете распустить её сейчас, пожалуйста, подождите, пока Завоевание не закончится",
"guild_have_to_be_gm_to_enroll": "Вы должны быть мастером гильдии или офицером, чтобы записать вашу гильдию в эту победу",
"guild_already_enroll_in_tournament": "Ваша гильдия уже участвует в Завоевании",
"guild_tournament_started_generic": "Так как Завоевание уже началось, вы не можете сделать это сейчас",
"guild_not_enrolled_in_tournament": "Ваша гильдия не участвует в Завоевании",
"guild_dont_own_this_area": "Ваша гильдия не является владельцем этой территории",
"guild_dont_have_permission_to_levelup_area": "У вас нет прав повышать уровень территории, принадлежащей вашей гильдии",
"area_at_max_level": "Территория уже на максимальном уровне",
"area_bonus_not_available": "Этот бонус не доступен на этой территории",
"area_dont_have_enough_stat_points": "Вы не можете распределить это количество очков на этой территории",
"area_reset_wait_x": "Гильдия уже сбросила бонусы этой области сегодня, вы можете сбросить эту область снова в:\n%s",
"area_already_reset": "В этой области не начисляются баллы, подлежащие возврату",
"collect_enter_id_to_collect": "Пожалуйста, введите ID ресурса, чтобы его собрать",
"collect_tired_wait_x_seconds": "Вы слишком устали, чтобы собрать эти ресурсы, вам все равно придется подождать: %s секунд",
"collect_dont_have_required_level": "У вас нет необходимого уровня Ремесла для сбора этого ресурса, вы должны быть как минимум %d уровня and of rebirth level %d",
"item_you_dont_have_this_item": "У вас нет этого предмета",
"item_choose_id_or_equipement": "Необходимо ввести ID слота инвентаря или выбрать между \"head,chest,legs,weapon\"",
"item_you_cant_equip": "Вы не можете экипировать этот предмет",
"item_you_dont_have": "У вас нет этого предмета",
"item_enter_id_to_equip": "Чтобы экипировать предмет, необходимо ввести его ID",
"item_you_dont_have_item_equiped_here": "У вас нет экипированного предмета в этом слоте",
"item_you_have_to_choose_type_to_unequip": "Вы должны выбрать тип предмета, который вы хотите снять",
"item_cant_equip_higher_level": "Вы должны быть по крайней мере %d уровня, чтобы экипировать этот предмет",
"item_cant_equip_higher_rebirth_level": "Вы должны быть как минимум на уровне возрождения %d, чтобы экипировать этот предмет",
"item_cant_sell_favorite": "Вы не можете продавать предметы, помеченные как избранные",
"item_you_cant_use": "Вы не можете использовать этот предмет",
"item_enter_id_to_use": "Необходимо ввести ID предмета для использования.",
"character_you_dont_have_enough_to_reset": "У вас недостаточно денег, чтобы сбросить статистику!",
"character_you_dont_have_enough_to_reset_talents": "У вас недостаточно денег, чтобы сбросить свои таланты!",
"economic_enter_id_item_to_sell": "Чтобы продать предмет, необходимо ввести его ID",
"economic_have_to_be_in_town": "Вы должны быть в городе, чтобы продать свои вещи",
"economic_cant_sell_nothing": "Нечего продавать! Все предметы защищены, нет совпадений, или Ваш инвентарь пуст",
"economic_cant_send_money_to_youself": "Вы не можете отправить деньги себе",
"economic_minimum_send_gold": "Вы должны послать хотя бы 1G",
"economic_dont_have_enough_money": "У вас нет такой суммы денег.",
"fight_enter_id_monster": "Вы должны ввести ID монстра, если вы хотите сражаться",
"fight_impossible_in_town": "Вы не можете драться в городе",
"fight_already_in": "Вы уже в бою, как только вы закончите вы можете начать новый",
"fight_monter_dont_exist": "Чудовище, с которым ты пытаешься сражаться, не существует",
"travel_already_here": "Вы уже находитесь на этой территории",
"travel_area_dont_exist": "Этой территории не существует",
"travel_tired_wait_x": "Вы слишком устали, чтобы путешествовать, вы должны подождать: %d секунд",
"fight_pvp_choose_enemy": "Вы должны выбрать своего противника",
"fight_pvp_cant_fight_yourself": "Вы не можете бороться сами с собой",
"fight_pvp_not_same_area": "Вы не можете видеть этого пользователя где-либо рядом",
"fight_pvp_cant_fight_here": "Вы не можете сражаться с другим игроком здесь",
"character_you_cant_distribute_this_amount_of_points": "Вы не можете распределить это количество очков",
"character_attribute_dont_exist": "Этот атрибут не существует",
"languages_lang_dont_exist": "Этот язык не существует, пожалуйста, обратитесь к списку доступных языков, используя следующую команду /other lang",
"group_already_in_group": "Вы не можете быть в группе для этого",
"group_not_in_group": "Вы должны быть в группе для этого",
"group_occupied": "Ваша группа занята, завершите то, что вы делаете и повторите попытку",
"group_not_leader": "Вы должны быть лидером группы, чтобы сделать это",
"group_cant_invite_yourself": "Вы не можете пригласить себя",
"group_user_not_connected": "Необходимо пригласить подключенного пользователя",
"group_invite_already_in_group": "Этот пользователь уже входит в группу",
"group_invite_waiting": "У этого пользователя уже есть ожидающее приглашение",
"group_you_dont_receive_invitation": "Вы не получили приглашения присоединиться к группе",
"group_full_join": "Группа, к которой вы пытаетесь присоединиться, заполнена",
"group_cant_invite_more_than": "Нельзя приглашать более %d игроков одновременно",
"group_user_not_in_your_group": "Пользователь %s не входит ни в вашу группу, ни в ожидающий список, чтобы присоединиться к ней",
"group_user_kick_empty_name": "Вы должны выбрать пользователя, которого хотите выгнать",
"group_cant_kick_yourself": "Вы не можете выгнать себя из группы",
"group_not_same_area": "Каждый член группы должен находиться на одной территории",
"group_cant_swap_yourself": "Вы не можете сделать себя лидером группы, так как вы уже лидер группы",
"group_user_swap_empty_name": "Необходимо выбрать пользователя, который будет лидером группы",
"marketplace_not_exist": "Здесь нет рынка",
"marketplace_id_item_forgotten": "Вы должны выбрать предмет для продажи",
"marketplace_dont_have_object": "У вас нет этого предмета",
"marketplace_price_forgotten": "Необходимо ввести цену, по которой вы хотите продать предмет",
"marketplace_nb_of_item_not_ok": "Вы должны выбрать количество предметов для продажи",
"marketplace_not_this_number_of_item": "У вас не так много предметов",
"marketplace_not_enough_to_pay_tax": "У вас недостаточно денег, чтобы заплатить налог",
"marketplace_id_to_cancel_forgotten": "Вы должны выбрать предмет для извлечения",
"marketplace_order_dont_exist": "Этот предмет не существует",
"marketplace_order_not_yours": "Этот предмет вам не принадлежит",
"marketplace_id_to_buy_forgotten": "Вы должны предмет, чтобы купить",
"marketplace_order_yours": "Вы не можете купить ваши собственные предметы",
"marketplace_not_enough_money": "У вас нет достаточно денег, чтобы сделать это",
"marketplace_favorite_sell_impossible": "Вы не можете продавать предметы, помеченные как избранные",
"craft_no_building": "Здесь нет активного здания для Ремесла",
"craft_dont_exist": "Этот чертеж недоступен",
"craft_dont_have_required_level": "У вас нет минимально необходимого уровня для создания этого предмета. Вы должны быть не ниже %d уровня",
"craft_dont_have_required_items": "У вас нет всех необходимых ресурсов для создания этого предмета",
"craft_tired_wait_x_seconds": "Вы слишком устали, чтобы создать предмет, вам все равно придется подождать: %s секунд",
"craft_level_incorrect": "Ты не можешь создать здесь элемент этого уровня",
"craft_rebirth_level_incorrect": "Здесь вы не можете создать предмет такого уровня возрождения",
"prefix_max_length": "Префикс не должен превышать длину %d символов",
"prefix_undefined": "Префикс должен содержать не менее 1 символа",
"prefix_not_owner_server": "Вы должны владеть этим сервером, чтобы изменить префикс",
"shop_item_dont_exist": "Вы должны выбрать существующий элемент",
"shop_no_building": "В этом районе нет магазина.",
"already_doing_something_command": "Вы должны подождать, пока не завершится ваше последнее действие",
"travel_missing_achievements": "Вы не можете получить доступ к этой области, вы пропустили следующие достижения: \"%s\"",
"trade_not_in_trade": "Вы не торгуете",
"trade_cant_propose_more": "Вы уже предложили кому-либо сделку, отмените или прекратите текущую сделку, чтобы иметь возможность предложить другую",
"trade_proposal_waiting": "У этого человека уже есть отложенный торговый запрос",
"trade_propose_already_in_trade": "Этот человек уже торгует с кем-то",
"trade_user_not_connected": "Вы можете торговать только с тем, кто связан",
"trade_cant_propose_yourself": "Вы не можете торговать с самим собой",
"trade_already_in_trade": "Вы уже совершаете сделку, отменяете или прекращаете текущую сделку, чтобы иметь возможность выполнить данное действие",
"trade_inventory_changed": "Один или несколько пунктов сделки больше не доступны в связи с изменением в инвентаризации, пожалуйста, проверьте сделку еще раз с помощью команды для отображения его",
"trade_not_in_same_area": "Чтобы подтвердить сделку, вы должны находиться в той же зоне, что и человек, с которым вы торгуете",
"trade_you_dont_receive_invitation": "Вы не получили торговый запрос",
"trade_dont_have_that_many_items": "У тебя недостаточно единиц этого предмета",
"trade_dont_have_item": "У тебя нет этого предмета",
"trade_item_dont_exist": "Этот предмет не существует и не принадлежит вам",
"trade_not_enough_money": "У тебя не так уж много денег, чтобы вложить в торговлю",
"trade_unable_find_item": "Не могу найти этот пункт",
"trade_not_accepted": "Другой человек должен принять сделку, прежде чем вы сможете сделать это",
"travel_area_cant_travel": "Вы не можете вручную путешествовать в эту область.",
"talents_show_missing_id": "Пожалуйста, введите ID таланта",
"talents_show_node_dont_exist": "Такого таланта не существует",
"talents_node_not_reachable": "Этот талант недостижим",
"talents_not_enough_points": "У вас недостаточно очков таланта",
"talents_already_unlocked": "Вы уже раскрыли этот талант",
"skill_show_dont_exist": "Этого навыка не существует",
"skill_build_cant_add_more": "Вы не можете добавить больше навыков в свою панель навыков",
"skill_build_already_equipped": "Этот навык уже экипирован",
"skill_build_not_unlocked": "Вы не разблокировали этот навык",
"skill_build_not_equipped": "Этот навык не экипирован",
"skill_build_incorrect_priority": "Неверное значение приоритета",
"antispam_remaining": "Вызов не удался (%d попыток осталось до бана на %s минут)",
"antispam_end": "Вызов провален, у вас больше не осталось попыток, вы не можете играть в течение %s минут...",
"rebirth_cant_rebirth": "Ты не можешь переродить это",
"rebirth_cant_rebirth_max_level": "Вы уже находитесь на максимальном уровне перерождения для этого",
"rebirth_dont_have_required_items": "У вас нет всех необходимых ресурсов для перерождения",
"rebirth_not_max_level": "Вы должны быть на максимальном уровне, чтобы переродиться",
"events_dont_exist": "Этого события не существует"
},
"filters": {
"name": "Имя",
"rarity": "Редкость",
"type": "Тип",
"subtype": "Подтип",
"level_up": "Уровень >=",
"level_down": "Уровень <=",
"rebirth_up": "Уровень Перерождения >=",
"rebirth_down": "Уровень Перерождения <=",
"power_up": "Сила >=",
"power_down": "Сила <=",
"favorite": "Любимое"
},
"appearance": {
"title": "Изменение внешнего вида",
"desc_select": "Вот внешний вид вашего персонажа, этот внешний вид содержит текущие изменения, которые вы, возможно, внесли. Чтобы перейти к модификации, используйте эмодзи: \"%s\"",
"choose_modify": "Выберите, что изменить:",
"ears": "Уши",
"eyes": "Глаза",
"eyebrows": "Брови",
"nose": "Нос",
"facial_hair": "Волосы на лице",
"haircut": "Прическа",
"mouth": "Рот",
"body_type": "Тип телосложения",
"desc_select_one": "В скобках и выделено жирным шрифтом означает, что это выбранный вариант.\nИспользуйте стрелки, чтобы изменить внешний вид, цветные эмодзи, чтобы изменить цвет (если доступно для этого типа), и используйте другие эмодзи для проверки",
"list_of_possible_for_type": "Список возможных вариантов для выбранного типа",
"list_of_possible_color": "Список возможных цветов для выбранного типа",
"modifying_elsewhere": "Выполняется изменение другого сообщения...",
"success": "Успешное изменение внешнего вида!",
"left": "Лево",
"right": "Право",
"color": "Изменить цвет",
"confirm": "Подтвердить"
},
"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": "Тип элемента",
"physical": "Физический",
"fire": "Огонь",
"water": "Вода",
"earth": "Земля",
"air": "Воздух",
"dark": "Тьма",
"light": "Свет"
},
"craft": {
"header_required": "Имя - Тип - Подтип - Редкость - Число",
"header_craft_list": "ID - Имя - Тип - Мин.Уровень - Макс.Уровень - Редкость",
"needed_items": "Необходимые Предметы",
"craft_done": "Вы сделали следующий предмет: \"%s\""
},
"marketplace": {
"placed": "Ваш предмет уже продается",
"placed_plur": "Ваши предметы теперь продаются",
"header_str": "Игрок - ID Предмета - Имя - Тип - Уровень - Редкость - Мощность - Число - Цена Единицы",
"retrieve": "Вы восстановили свой предмет",
"retrieve_plur": "Вы восстановили свои предметы",
"you_sold_plur": "Вы продали \"%s\" x%d за %dG",
"you_sold": "Вы продали \"%s\" x%d за %dG",
"you_buy": "Вы купили предмет %d за %dG",
"you_buy_plur": "Вы купили %d предметов за %dG",
"you_paid_tax": "Вы заплатили %dG налогов на этот предмет",
"now_muted": "Уведомления рынка сейчас отключены",
"now_unmuted": "Уведомления рынка сейчас включены",
"settings_menu_mute": "%s уведомлений рынка"
},
"shop": {
"you_buy": "Вы купили \"%s\" x%d по цене : %dG",
"header": "ID Предмета - Имя [xЧисло] - Тип - Уровень - Редкость - Цена"
},
"group": {
"you_left": "Вы покинули свою группу",
"invitation_sent": "Приглашение в группу отправлено",
"someone_invited_you": "Пользователь %s пригласил Вас присоединиться к своей группе (используйте %s для принятия или %s для отклонения)",
"you_joined": "Вы присоединились к группе",
"you_declined": "Вы отклонили приглашение присоединиться к группе",
"someone_left_the_group": "Пользователь %s покинул группу",
"someone_joined_the_group": "Пользователь %s присоединился к вашей группе",
"someone_declined_invitation": "ользователь %s отказался присоединиться к вашей группе",
"now_muted": "Групповые уведомления теперь отключены",
"now_unmuted": "Групповые уведомления теперь включены",
"user_kicked": "Пользователь %s был исключен из группы",
"user_swaped": "Пользователь %s теперь лидер группы",
"invite_cancel": "Приглашение группы для пользователя %s было отменено",
"you_ve_been_kicked": "Вас выгнали из группы.",
"nobody_was_invited": "Никто не был приглашен присоединиться к вашей группе",
"group": "Группа",
"avg_level": "Средний Уровень: %d",
"avg_power": "Средняя Мощность: %d",
"members_of_the_group": "Члены группы",
"invited_users": "Приглашенные пользователи",
"settings_menu_mute": "%s Групповых уведомлений"
},
"area": {
"monster": "ID: %s | %s | Уровень: %s | Тип: %s",
"resources": "Ресурсы территории:",
"resource": "ID: %s | %s | %s",
"list_of_players_in_area": "Список игроков территории %s:",
"player": "ID: %s | Имя: %s | Уровень: %d",
"wild_area": "%d | %s | Уровни: %s",
"city_area": "%d | %s (Город) | Уровень: %s",
"dungeon_area": "%d | %s (Подземелье) | Уровень: %s",
"no_description": "Нет описания для этой территории",
"maximum_quality": "Максимальное качество предмета:",
"minimum_quality": "Минимальное качество предмета:",
"minimum_rebirth_level": "Минимальный уровень возрождения монстров:",
"maximum_rebirth_level": "Максимальный уровень возрождения монстров:",
"monsters_rebirth_level": "Уровни Возрождения Монстров:",
"you_claimed": "Вы претендуете на эту территорию",
"owned_by": "Принадлежит: %s",
"monster_group": "ID: %s | %s (+%d более) | Сред. Ур: %s | Тип: %s",
"conquest": "Завоевание",
"conquest_next": "Следующее Завоевание :\n- %s\n- Количество зарегистрированных гильдий: %d",
"conquest_ongoing": "Завоевание продолжается",
"area_progression": "Прогрессирование территории",
"level_up": "Повышен уровень территории",
"bonus_list_header": "Идентификатор → Означать",
"up_stat": "Бонус %s набрал %d очков",
"reset_stats": "This area's points have been refunded",
"areas": "Территории",
"list": "Список территорий",
"list_regions_connected": "Связанные регионы",
"no_connected_regions": "Нет регионов, связанных с этим регионом",
"follow_the_link": "Вы можете получить список ресурсов по ссылке ниже.",
"services": "Услуги",
"service_marketplace": "Рынок (Налог: %d%)",
"service_forge": "Кузнец (ремесло: Ур. %d - %d)",
"service_shop": "Магазин (Налог: %d%)",
"conquest_actual_level": "Фактический уровень: %d",
"conquest_points_to_distribute": "Очки для распространения: %d",
"conquest_price_to_next_level": "Цена до следующего уровня: %d G",
"region": "Регион: %s",
"wild": "Дикие земли",
"city": "Город",
"dungeon": "Подземелье"
},
"bonuses": {
"bonuses": "Бонусы",
"xp_fight": "Опыт Сражений",
"xp_collect": "Опыт Собирательства",
"xp_craft": "Опыт Ремесла",
"gold_drop": "Выпадение Золота",
"item_drop": "Выпадение Предметов",
"collect_drop": "Выпадения при Собирательстве",
"no_bonuses": "Нет доступных бонусов",
"harvest_tiredness": "Усталость от сбора урожая",
"travel_tiredness": "Усталость от путешествия"
},
"resources": {
"wood": "Древесина",
"ore": "Руда",
"tree": "Дерево",
"plant": "Растение",
"woods": "Древесины",
"ores": "Руды",
"trees": "Деревья",
"plants": "Растения",
"animal": "Животное",
"animals": "Животные",
"fabric": "Ткань",
"fabrics": "Ткани",
"noresources": "Здесь нет ресурсов",
"not_collected": "Вам не удалось собрать ресурс",
"collected_x_resource": "Вы собрали %d %s",
"resource_dont_exist": "Вы нигде не видите этот ресурс",
"collect_gain_xp": "Вы набрали в сумме %d опыта (причем %d опыта, благодаря бонусу территории) для вашего Ремесла",
"job_level_up": "Вы получили %d уровень для вашего Ремесла",
"job_level_up_plur": "Вы получили %d уровней для вашего Ремесла",
"tried_to_collect_x_times": "Вы пытались собрать ресурс %d раз"
},
"general": {
"nothing_at_this_page": "Эта страница пуста",
"page": "Страница",
"none": "Никто",
"nobody": "Никто",
"description": "Описание",
"monsters": "Монстры",
"monster": "Монстр",
"resource": "Ресурс",
"resources": "Ресурсы",
"lvl": "Ур.",
"page_out_of_x": "Страница %d/%d",
"enable": "Включать",
"disable": "Отключать",
"region": "Регион",
"modular": "Модульный",
"and": "и",
"aquired": "Полученно",
"unlockable": "Разблокируемо",
"locked": "Закрыто",
"equipable": "Экипируемо",
"yes": "Да",
"no": "Нет",
"mobile_set": "Mobile Detection Mode: %s. Is user on mobile: %s",
"points": "%d Очко",
"points_plur": "%d Очков",
"validate": "Validate",
"back": "Назад",
"next": "Далее",
"edit": "Edit",
"skip": "Skip",
"unlock": "Unlock",
"take": "Take",
"image": "Image",
"reset": "Reset"
},
"guild": {
"you_dont_have_a_guild": "У вас нет гильдии.",
"member": "Участник",
"members": "Участники",
"officer": "Офицер",
"guild_master": "Мастер Гильдии",
"guild_announcement": "Объявление Гильдии",
"no_guild_announcement": "Нет Объявления Гильдии",
"you_have_updated_guild_announcement": "Вы успешно обновили объявление гильдии",
"members_out_of": "Участники: %d/%d",
"level_out_of": "Уровень: %d/%d",
"required_to_level_up": "Деньги, необходимые для повышения уровня Гильдии: %d G",
"money_available": "Имеющиеся деньги",
"money": "%dG",
"guild_x_created": "Гильдия: %s создана!",
"dont_have_enough_to_create": "У вас недостаточно денег, чтобы создать гильдию (вам нужно %dG)",
"guild_disband": "Вы распустили гильдию!",
"guild_applied": "Вы подали заявку на вступление в гильдию",
"character_have_been_accepted": "Этот пользователь принят в гильдию",
"you_have_denied_this_apply": "Заявка успешно отклонена",
"you_have_cancel_your_apply": "Вы отменили свою заявку",
"you_have_denied_all_applies": "Вы отклонили все заявки",
"you_have_cancel_all_your_applies": "Вы отменили все ваши заявки",
"you_leaved_guild": "Вы покинули вашу гильдию",
"member_kicked": "Уастник был выгнан",
"rank_modified": "Ранг этого участника был успешно изменен",
"you_gift_x_g_to_guild": "Вы отдали %dG своей гильдии",
"you_retrive_x_g_from_guild": "Вы получили %dG от вашей гильдии",
"guild_level_up": "Ваш уровень гильдии увеличен, теперь: %d",
"guild_no_apply_player": "Вы не подавали заявку на вступление в гильдию",
"nobody_ask_to_join_your_guild": "Никто не подал заявку на вступление в вашу гильдию",
"nothing_to_print": "Ничего не вижу",
"enroll": "Ваша гильдия теперь зарегистрирована для следующего Завоевания в этой территории",
"unenroll": "Теперь ваша гильдия освобождена от Завоеваний этой территории",
"you_paid_x": "Ваша гильдия заплатила %dG",
"renamed": "Ты переименовал свою гильдию в \"%s\"",
"guild_territories": "Территории, принадлежащие вашей гильдии (%d)",
"guild_territory_enroll": "Регистрация на право получения",
"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": "Disband cancelled",
"total_player_power": "Total Power of members %d",
"total_player_level": "Total Level of members %d",
"total_player_rebirth_level": "Total Rebirth Level of members %d",
"current_applications": "Current applications",
"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": "Теперь ваш предмет экипирован (%s)",
"item_unequiped": "Предмет был снят (%s)",
"id": "id",
"name": "Имя",
"type": "Тип",
"subtype": "Подтип",
"level": "Уровень",
"rebirth_level": "Уровень Перерождения",
"rarity": "Редкость",
"empty_inventory": "Пустой Инвентарь",
"no_desc": "Нет описания для этого предмета",
"page_x_out_of": "Страница %d/%d",
"currently_equipped": "В Настоящее Время Оборудованно",
"attributes": "Характеристики",
"secondary_attributes": "Вторичные Атрибуты",
"nothing_in_this_slot": "У вас нет никакого экипированного предмета в этом слоте",
"nothing_equipped": "Вы не имеете никакого экипированного предмета",
"power": "Мощность",
"item_tag_as_favorite": "Теперь этот предмет помечен как избранный (%s)",
"item_untag_as_favorite": "Этот предмет больше не помечен как избранное (%s)",
"item_no_stats": "Этот предмет не имеет характеристик",
"wait_time_reduction": "(Снижает время остаточной усталости на %d%)",
"sellall_title": "Планирование продажи Ваших товаров",
"sellall_going_to_sell": "Ты собираешься продать",
"sellall_going_to_sell_all": "Все предметы, не помеченные как избранные",
"sellall_going_to_sell_rarity": "Все товары качества \"%s\", которые не отмечены как избранные",
"sellall_going_to_sell_type": "Все элементы типа \"%s\", не помеченные как избранные",
"sellall_going_to_sell_level_sup": "Все элементы, уровень которых больше или равен %d, не помеченные как фавориты",
"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": "Общая стоимость статей",
"sellall_are_you_sure": "Вы уверены, что хотите продать эти вещи?",
"sellall_cancel": "Вы отменили продажу",
"sellall_going_to_sell_power_sup": "Все предметы с мощностью больше или равной %d",
"sellall_going_to_sell_power_inf": "Все предметы с мощностью ниже или равной %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": "Бонусы/пункты во времени путешествия для следующего климата/поезда:",
"all_areas": "Все площади: %d%",
"everything_else": "Все остальное: %d%"
},
"climates": {
"climate": "Климат",
"temperate_oceanic": "Умеренно-океанический",
"volcanic_hell": "Вулканический ад",
"hot_desert": "Горячая пустыня",
"eternal_snow": "Вечный снег",
"interior": "Интерьер"
},
"weather": {
"weather": "Погода",
"sunny": "Солнечная",
"cloudy": "Облачно",
"foggy": "Туманная",
"rainy": "Дождливая",
"rainstorm": "Буря",
"snowy": "Снежная",
"firestorm": "Огненная буря",
"sandstorm": "Песчаная буря",
"snowstorm": "Метель",
"impact": "Воздействие, связанное с погодой",
"time_before_ends": "Время, оставшееся до изменения погоды"
},
"trade": {
"settings_menu_mute": "%s Trade notifications",
"now_muted": "Trade notifications are now deactivated",
"now_unmuted": "Trade notifications are now activated",
"you_cancelled": "You cancelled the trade",
"someone_proposed_you": "%s invites you to make a trade",
"proposal_sent": "Trade request sent",
"you_accepted": "You have accepted the trade request",
"notification_accepted": "%s accepted the trade request",
"notification_cancelled": "%s cancelled the trade",
"done": "Trade finished, the items and/or money of the trade should be in your inventory",
"notification_await_validation": "The person with whom you are trading has validated the trade, awaiting your validation",
"await_validation": "Trade validated, waiting for the other person",
"notification_add_item": "%s added an item to the trade: \"%s\" [x%d]",
"add_item": "You have successfully added the item \"%s\" [x%d] to the trade",
"notification_remove_item": "%s removed an item to the trade: \"%s\" [x%d]",
"remove_item": "You have successfully removed the item \"%s\" [x%d] from the trade",
"notification_set_money": "%s offers you %dG for this trade",
"set_money": "You have proposed %dG for this trade",
"title": "Trade between %s and %s",
"is_proposing": "%s is proposing"
},
"character": {
"reset_done": "Сброс завершен!",
"attribute_up_to": "Характеристика %s увеличилась и теперь составляет %d пунктов",
"attribute_x_points_available": "Осталось %d непотраченных очков",
"attribute_x_points_available_plural": "Осталось %d непотраченных очков",
"info_attributes_title": "Характеристики | %d очков осталось распределить (Цена сброса %d G)",
"info_attributes_title_plur": "Характеристики | %d очков осталось распределить (Цена сброса %d G)",
"maximum_level": "Макс. Уровень",
"character_advancement": "Character Advancement",
"level": "Уровень",
"craft_level": "Уровень Ремесла",
"money": "Деньги",
"honor": "Слава",
"health_points": "Health Points",
"damage_reduction": "Damage Reduction",
"critical_chance": "Critical Chance",
"achievement_earned": "Congratulations! Thanks to your accomplishments, you have unlocked the following achievement: \"%s\"",
"achievement_title": "Achievements List (%d / %d) - %d Очков",
"achievement_earned_word": "Earned",
"achievement_name": "%s (%d Points)",
"no_desc": "No desciption for this achievement",
"maximum_stun_chance": "Maximum Stun Chance",
"reset_price_title": "Reseting your attributes",
"reset_talents_price_title": "Reseting your talents",
"sure_to_reset_title": "Are you sure to reset your attributes?",
"reset_cancel": "You've cancelled your attributes reset",
"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": "Вы продали свой предмет за %dG",
"sell_for_x_plural": "Вы продали свои предметы за %dG",
"sell_all_for_x": "Вы продали все предметы в вашем инвентаре за %dG",
"send_money_to": "Вы отправили %dG %s"
},
"admin": {
"no_admin_xp_command": "Вы не администратор, но вы пытались обмануть! К сожалению, Бог не добр и решил наказать вас; так вот вам совершенно новая жизнь. (Теперь вы 1 уровня)."
},
"travel": {
"travel_to_area": "Вы путешествуете на территорию под названием: %s",
"travel_to_area_exhaust": "Вы устали, вам придется подождать %d секунд, прежде чем делать что-то снова",
"travel_planning": "Планирование поездки из \"%s\" в \"%s\"",
"wait_time_title": "Ожидаемое время ожидания",
"wait_time_body": "%d секунд",
"wait_time_body_with_mount": "%d секунд (Thanks to your mount you've gained %d seconds)",
"gold_price_title": "Ожидаемая стоимость в золоте",
"gold_price_body": "%d G",
"sure_to_travel_title": "Вы уверены, что хотите путешествовать?",
"sure_to_travel_body": "%s → Да\n%s → Нет",
"travel_cancel": "Вы отменили свою поездку",
"total_without_weather": "Общее время в пути без влияния погоды",
"travel_cancel_easter_egg": "Вы собирались уходить, но поленились и решили остаться. Может быть, у вас биполярное расстройство?"
},
"fight_pve": {
"ganked_by_monster": "Вы не были достаточно скрытными, монстр нападает на вас! (Вам нужно больше восприятия)",
"user_get_attacked": "%s было атаковано: %s!",
"user_attacked": "%s атакует %s!",
"onfight_user_attack": "%s атакует монстра %s и наносит **%d** очков урона",
"onfight_monster_attack": "%s атакует игрока %s и наносит **%d** очков урона",
"drop_item": "Вы выиграли предмет (%s)! Поздравляем!",
"drop_item_equip": "Вы выиграли экипировку (%s)!",
"drop_item_equip_plur": "Вы выиграли экипировку (%s)!",
"drop_item_other": "Вы выиграли предмет (%s)!",
"drop_item_other_plur": "Вы выиграли предметы (%s)!",
"level_up": "Поздравляем! Вы выиграли: %d ур. Ваш уровень теперь: %d!",
"money_gain": "Вы выиграли: %d G",
"xp_gain": "Вы выиграли: %d Опыта",
"nothing_gain": "Вы ничего не выиграли!",
"both_gain": "Вы выиграли: %d Опыта и %d G",
"group_drop_item": "Ваша группа выиграла несколько предметов! Поздравляем! (Rarest item found: %s)",
"group_level_up": "Кто-то повысил свой уровень в вашей группе! Поздравляем!",
"group_money_gain": "Ваша группа выиграла: %d G",
"group_xp_gain": "Ваша группа выиграла: %d Опыта",
"group_nothing_gain": "Ваша группа ничего не выиграла!",
"group_both_gain": "Ваша группа выиграла: %d Опыта и %d G",
"group_pm_gain": "Вы выиграли: %d Опыта и %d G",
"group_pm_gain_other": "Вы также выиграли предметы: %s",
"group_pm_lost_fight": "Ваша группа проиграла бой",
"group_pm_won_fight": "Ваша группа выиграла бой"
},
"fight_pvp": {
"onfight_user_attack": "%s атакует %s и наносит **%d** очков урона",
"honor_gain": "Вы выиграли: %d очков славы!",
"honor_lose": "Вы проиграли: %d очков славы!",
"honor_not_honorable": "Сражаться не честно, вы проиграете: %d очков славы!"
},
"monsters_types": {
"normal": "Обычный",
"elite": "Элита",
"boss": "Босс"
},
"fight_general": {
"combat_log": "Боевой лог",
"critical_hit": "Критический удар",
"stun_hit": "Оглушающий удар",
"critstun_hit": "Критический шоковый удар",
"win": "Вы выиграли бой!",
"loose": "Вы проиграли бой!",
"now_muted": "Fight notifications are now deactivated",
"now_unmuted": "Fight notifications are now activated",
"settings_menu_mute": "%s Fight notifications",
"status_of_fight": "Battle status: %s",
"battle_ongoing": "You're fighting!",
"missed": "Missed!",
"status_removed": "Status removed: %s",
"status_added": "Status added: %s",
"results_lost": "Lost:",
"results_gain": "Gained:",
"results_health_points": "%d hp.",
"results_mana_points": "%d mp.",
"results_energy_points": "%d energy.",
"cant_do_anything": "Can't do anything",
"draw": "Draw"
},
"rarities": {
"common": "Обычный",
"rare": "Редкий",
"superior": "Превосходный",
"epic": "Эпичный",
"legendary": "Легендарный",
"mythic": "Мифический"
},
"languages": {
"fr": "Французский",
"en": "Английский",
"pt-BR": "Бразильский Португальский",
"ru": "Русский",
"es": "Испанский",
"list_of_languages": "Список доступных языков (используйте ярлык для переключения языков)",
"lang_changed": "Язык успешно изменен, бот теперь будет отвечать на %s",
"vi": "Vietnamese"
},
"other": {
"loading_character": "Загрузка вашего персонажа",
"character_loaded": "Персонаж успешно загружен",
"prefix_changed": "Префикс изменен",
"old_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": "Оружие",
"chest": "Нагрудник",
"legs": "Поножи",
"head": "Шлем",
"resource": "Ресурс",
"lootbox": "Коробка Добычи",
"potion": "Зелье",
"mount": "Питомец"
},
"item_sous_types": {
"wood": "Древесина",
"ore": "Руда",
"plant": "Растение",
"sword": "Меч",
"whip": "Кнут",
"metal": "Металл",
"loot_box_equipment": "Коробка Снаряжения",
"reset_time_potion": "Анти-Усталость",
"founder_box": "Вознаграждение Основателя",
"random_loot_box_equipment": "Коробка Случайного Снаряжения",
"horse": "Лошадь",
"crystal": "Кристалл",
"energy_potion": "Тонизирующее зелье",
"salamander": "Саламандра",
"camel": "Верблюд",
"polar_bear": "Полярный Медведь",
"cloth": "Ткань",
"leather": "Кожа",
"bow": "Лук",
"dagger": "Кинжал",
"wand": "Палочка",
"staff": "Посох"
},
"stats": {
"strength": "Сила",
"intellect": "Интеллект",
"constitution": "Телосложение",
"armor": "Броня",
"dexterity": "Ловкость",
"wisdom": "Мудрость",
"will": "Воля",
"perception": "Восприятие",
"charisma": "Харизма",
"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": "Вы открыли ящик с добычей, вы получаете:\n",
"open_message_mult": "Ты открыл %d коробок с награбленным, ты понял:\n",
"no_drop": "Вы открыли ящик с добычей, но ничего не получили!",
"no_drop_mult": "Ты открыл %d коробку с награбленным, но ничего не получил!"
},
"leaderboards": {
"arena": "Рейтинговая таблица PvP | Total honor among all players: %d",
"gold": "Gold Leaderboard | Total gold among all players: %dG",
"level": "Level Leaderboard",
"craftlevel": "Craft Level Leaderboard",
"wb_damage": "Всемирный босс: Повреждение",
"wb_attacks": "Всемирный босс: Атака графа",
"wb_have_not_participate": "You have not yet participated in a boss fight",
"your_rank": "Your rank: #%d out of %d players",
"power": "Power Leaderboard | Total power among all players: %d",
"achievements": "Achievements Leaderboard | Total achievement points among all players: %d"
},
"world_bosses": {
"no_world_boss": "Здесь нет мирового босса",
"spawn_date": "Дата порождения: %s",
"last_boss_never_fight": "Ты еще не сражался в бою мирового босса.",
"boss_fight_recap_damage_dealt": "Ущерб Считается: %d (ранг: %d)",
"boss_fight_recap_attack_count": "Атака графа: %d (ранг: %d)",
"boss_fight_damage_inflicted": "Вы нанесли %d очков урона.",
"boss_fight_damage_inflicted_critical": "You've inflicted %d damage points (Critical Hit !)",
"boss_you_particpate_dead": "The world boss \"%s\" you were fighting against is now dead.",
"boss_already_dead": "This world boss is already dead",
"now_unmuted": "World Bosses notifications are now activated",
"now_muted": "World Bosses notifications are now deactivated",
"settings_menu_mute": "%s World Bosses notifications",
"skill_used": "Skill Used",
"travel": "Travel to world boss area"
},
"potions": {
"drink": "Вы выпили: \"%s\"\n",
"drink_plur": "You drank: \"%s\" %d times\n",
"reset_time": "Вы чувствуете, что ваша усталость уходит, ваше время усталости было сброшено",
"reduce_time": "Ты чувствуешь себя бодрым, время усталости сократилось на порядок: %d%"
},
"vote_daily": {
"you_voted": "Вы проголосовали за бота, спасибо вам!\n",
"vote_no_week_end": "В награду вы получите зелье против усталости!",
"vote_week_end": "Бонус на выходные! Вы получаете два зелья против усталости!"
},
"help_panel": {
"help": "Помощь",
"tutorial": "Привет! Я вижу, что вы впервые используете FightRPG. Существует учебник по этой ссылке: %sСледуйте за ним, прежде чем что-либо делать, это поможет вам!",
"inventory_title": "Инвентарь",
"inv": "Показывает инвентарь",
"inv_filter": "Показывает инвентаризацию и фильтрует результаты. Фильтры - да: rarity,level,type,power,name",
"item": "Отображает информацию о выбранном предмете. Для использования оборудованных объектов: head, chest, legs, weapon или horse вместо ID.",
"itemfav": "Помечает предмет как избранное, чтобы предотвратить его продажу",
"itemunfav": "Снимает статус избранного с предмета",
"sell": "Продает выбранный предмет",
"sellall": "Продает все предметы в инвентаре",
"sellall_filter": "Sells all items in your inventory that match your <filter>. Filters are: %s",
"sendmoney": "Отправляет деньги игроку",
"filters_title": "Фильтры",
"rarities": "Отображает идентификационные данные всех колесниц.",
"types": "Отображает идентификаторы каждого типа товаров",
"equipment_title": "Снаряжение",
"equipment": "Показывает экипированные предметы",
"equip": "Снаряжает выбранного предмет",
"unequip": "Снимает объект из выбранного слота",
"use": "Использует указанный предмет",
"character_title": "Персонаж",
"info": "Показывает информацию о вашем персонаже",
"attributes": "Показывает общие атрибуты вашего персонажа",
"up": "Добавляет к характеристике statName количество Очков",
"leaderboard": "Shows your ranking based on the argument (arena, gold, level, craftlevel, power)",
"reset": "Позволяет сбросить характеристики",
"resettalents": "Allows you to reset your talents",
"fight_title": "Сражения",
"fight": "Позволяет попробовать атаковать выбранного монстра/монстров",
"grpfight": "Позволяет вам попытаться атаковать выбранного монстра / монстров с вашей группой",
"arenaMention": "Позволяет атаковать указанного игрока",
"arena": "Позволяет атаковать выбранного игрока",
"areas_title": "Территории",
"area": "Показывает информацию о территории, в которой вы находитесь",
"areas": "Показывает каждую территорию",
"areaconquest": "Показывает следующее Завоевание для этой территории",
"arealevelup": "Поднимает уровень территории, которой ваша гильдия обладают (вы должны быть на этой территории)",
"areabonuseslist": "Показывает список идентификаторов, связанных с бонусами территории",
"areaplayers": "Показывает игроков на территории",
"areaupbonus": "Обновляет один из доступных бонусов",
"arearesetbonuses": "Refund all bonuses for current area",
"travel": "Позволяет путешествовать по территориям (ID территории)",
"travelregion": "Позволяет путешествовать по регионам (ID региона)",
"traveldirect": "Allows you to travel to one area, using it's real areaID",
"guilds_title": "Гильдии",
"guild": "Показывает информацию о гильдии, в которой вы находитесь",
"guilds": "Показывает гильдии",
"gcreate": "Позволяет создавать гильдии",
"gdisband": "Позволяет расформировать гильдию (только ГМ)",
"gapply": "Позволяет подать заявку на вступление в гильдию",
"gaccept": "Принимает кого-то в вашу гильдию",
"gapplies": "Показывает текущие заявления",
"gapplyremove": "Позволяет удалить заявления по вашему выбору",
"gappliesremove": "Удаляет все текущие заявления",
"gannounce": "Позволяет изменить объявление гильдии",
"gaddmoney": "Передает деньги гильдии",
"gremovemoney": "Позволяет получить деньги из гильдии",
"glevelup": "Повышает уровень гильдии",
"genroll": "Регистрирует вашу гильдию для следующего Завоевания территории, в которой вы находитесь",
"gunenroll": "Отменяет регистрацию гильдии от следующего Завоевания этой территории",
"gleave": "Позволяет покинуть гильдию",
"gmod": "Измененяет ранга участника (1: Участник, 2: Офицер)",
"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": "Другие",
"lang": "Показывает список доступных языков",
"lang_param": "Позволяет переключать языки",
"groups_title": "Группы",
"grp": "Показывает информацию о группе",
"grpinvite_mention": "Приглашает игрока @упоминание присоединиться к вашей группе",
"grpleave": "Позволяет покинуть группу",
"grpaccept": "Принимает приглашение присоединиться к группе",
"grpdecline": "Отклоняет приглашение присоединиться к группе",
"grpkick": "Удаляет участника группы или отмена приглашения присоединиться к группе",
"grpswap": "Позволяет лидеру группы выбрать нового лидера группы",
"grpmute": "Отключает уведомления группы",
"grpunmute": "Включает уведомления группы",
"market_title": "Аукционный дом",
"mkmylist": "Отображает ваши заказы на продажу",
"mkplace": "Выставляет <nb> предмет <idПредметаВИнвентаре> за <цена>G",
"mkcancel": "Отменяет заказ на продажу предмета <idПредмета>",
"mkbuy": "Покупает <nb> ппредмет <idПредмета>",
"mksearch": "Search for the item that match filters. Filters are: %s",
"mkshow": "Показывает все товары на рынке на данной странице",
"mksee": "Показывает предмет <idПредмет>",
"craft_title": "Система Ремесла",
"craftlist": "Показывает все доступные рецепты в этом городе на данной странице",
"craftshow": "Показывает рецепт данного ID",
"craft": "Изготавливает по рецепту данного ID",
"collect": "Соберает ресурс данного ID",
"resources": "Показывает все ресурсы на территории",
"shop_title": "цех",
"sitems": "Показать все доступные товары для покупки в этом городе на данной странице",
"sbuy": "Купить предмет данного ID",
"world_boss_title": "Мировые Боссы",
"wbfight": "Атакуйте мирового босса, если он есть в том районе, где вы находитесь.",
"wbshowall": "Отображает информацию о мировых боссах",
"wblastinfo": "Покажите вашу статистику по последнему боссу, которого вы убили.",
"wbleaderboard": "Displays the ranking of the best players in terms of either damage (damage) or attack counts (attacks) for the last World Boss in which you participated. The types are: damage,attacks",
"settings": "Показывает меню настроек",
"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",