-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathes.json
More file actions
1022 lines (1022 loc) · 61.9 KB
/
Copy pathes.json
File metadata and controls
1022 lines (1022 loc) · 61.9 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": "No puedes hacer eso ahora mismo",
"generic_tired": "Estas cansado. Espera %d segundos y intenta denuevo",
"generic_cant_do_that": "No puedes hacer eso",
"generic_user_dont_exist": "No se puede encontrar a este usuario",
"you_cant_claim": "No puedes reclamar esta Area",
"you_have_to_be_in_a_guild": "Tienes que estar en un gremio para hacer esto",
"you_dont_have_right_to_change_announcement": "No tienes los derechos para cambiar el anuncio del gremio",
"you_cant_exceed_x_characters": "No puedes exceder los %d caracteres",
"already_in_guild": "Imposible, ya estas en un gremio!",
"guild_name_empty": "Tienes que elejir un nombre para tu gremio",
"guild_have_to_be_gm_to_disband": "Tienes que ser el maestro de la gremio para disolverla",
"guild_dont_be_in_guild_to_join_a_guild": "No puedes solicitar entrar a un gremio si ya estas en uno",
"guild_enter_id_to_join": "Tienes que poner la ID de el gremio si quieres entrar",
"guild_character_not_ask_to_join": "Este usuario no solicitó entrar a tu gremio",
"guild_enter_id_to_add": "Necesitas poner la ID de el usuario para añadirlo",
"guild_cant_remove_appliances": "No puedes hacer esto",
"guild_have_to_enter_id_to_remove_apply": "Tienes que poner la ID del usuario",
"guild_have_to_enter_id_to_remove_apply_playerside": "Tienes que poner la ID del gremio",
"guild_not_in_guild": "No estas en un gremio",
"guild_cant_give_this_money": "No puedes donar esta cantidad al gremio",
"guild_you_dont_have_enough_money": "No tienes suficiente dinero",
"guild_you_have_to_select_amount_money": "Por favor selecciona la cantidad de dinero que deseas donar",
"guild_you_have_to_select_amount_to_retrive": "Por favor selecciona la cantidad de dinero que deseas recuperar",
"guild_name_cant_exceed_x_characters": "El nombre del gremio no puede exceder los %d caracteres o tener menos que %d caracteres",
"guild_name_taken": "Este nombre ya fue elegido",
"guild_player_reach_max_applies": "Solo puedes aplicar a %d al mismo tiempo como máximo",
"guild_player_already_applied": "Ya has solicitado entrar a este gremio",
"guild_not_exist": "Este gremio no existe",
"guild_cant_leave_guild_as_gm": "Como maestro del gremio, no puedes abandonarlo, pero puedes disolverlo con el siguiente comando /guild disband",
"guild_dont_have_right_to_kick": "No tienes los derechos para hechar a esta persona",
"guild_member_dont_exist": "Este miembro no existe",
"guild_dont_have_right_to_remove_money": "No tienes los derechos para recuperar dinero",
"guild_guild_dont_have_this_amount_of_money": "No puedes recuperar esta cantidad de dinero del gremio",
"guild_no_enough_money_to_level_up": "Tu gremio no tiene el dinero suficiente para subir de nivel. Necesitas : %dG",
"guild_dont_have_right_to_level_up": "No tienes los derechos para subir de nivel al gremio",
"guild_maximum_members": "Tu gremio llegó al numero máximo de jugadores",
"guild_cant_invite_players": "No tienes los derechos para aceptar usuarios al gremio",
"guild_already_max_level": "Tu gremio ya llego al nivel máximo",
"guild_tournament_started": "Tu gremio se inscribió en una conquista que ya empezó, asi que no puedes disolverla, por favor espera hasta que la conquista haya terminado",
"guild_have_to_be_gm_to_enroll": "Tienes que ser el maestro del gremio o un oficial para inscribir a tu gremio en esta conquista",
"guild_already_enroll_in_tournament": "Tu gremio ya está inscrito a una conquista",
"guild_tournament_started_generic": "parece que la conquista ya ha comenzado, no puedes hacer esto ahora",
"guild_not_enrolled_in_tournament": "Tu gremio no esta inscrito a ninguna conquista",
"guild_dont_own_this_area": "Tu gremio no es el dueño de esta Area",
"guild_dont_have_permission_to_levelup_area": "No tienes los permisos para subir de nivel a un area de tu gremio",
"area_at_max_level": "Esta area esta en su máximo nivel",
"area_bonus_not_available": "Este bonus no está disponible en este area",
"area_dont_have_enough_stat_points": "No puedes asignar esta cantidad de puntos en esta area",
"area_reset_wait_x": "A 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": "Por favor ingrese la ID del recurso a recolectar",
"collect_tired_wait_x_seconds": "Estas demasiado cansado para recolectar estos recursos, todavía tienes que esperar: %s segundos",
"collect_dont_have_required_level": "No tienes el nivel de elaboración requerido para recolectar este recurso, tienes que ser al menos nivel %d and of rebirth level %d",
"item_you_dont_have_this_item": "No tienes este item",
"item_choose_id_or_equipement": "Tienes que ingresar la ID del espacio en tu inventario, o elegir entre \"head (casco), chest (pechera), legs (piernas) , weapon (arma), mount (montura)\"",
"item_you_cant_equip": "No puedes equipar este item",
"item_you_dont_have": "No tienes este item",
"item_enter_id_to_equip": "Tienes que ingresar la ID del item para equiparlo",
"item_you_dont_have_item_equiped_here": "No tienes un item equipado en este espacio",
"item_you_have_to_choose_type_to_unequip": "Debes elegir el tipo de item que deseas desequipar",
"item_cant_equip_higher_level": "Tienes que ser al menos nivel %d para equipar este item",
"item_cant_equip_higher_rebirth_level": "You must be at least at rebirth level %d to equip this item",
"item_cant_sell_favorite": "No puedes vender un item etiquetado como favorito",
"item_you_cant_use": "No puedes usar este item",
"item_enter_id_to_use": "Tienes que ingresar el ID del item a usar.",
"character_you_dont_have_enough_to_reset": "No tienes el dinero suficiente para reiniciar tus estadisticas!",
"character_you_dont_have_enough_to_reset_talents": "You don't have enough money to reset your talents!",
"economic_enter_id_item_to_sell": "Tienes que ingresar la ID del item a vender",
"economic_have_to_be_in_town": "Tienes que estar en un pueblo para vender tus items",
"economic_cant_sell_nothing": "¡No hay nada que vender! Todos los artículos están protegidos, no hay coincidencias o su inventario está vacío.",
"economic_cant_send_money_to_youself": "No puedes enviarte dinero a ti mismo",
"economic_minimum_send_gold": "Necesitas enviar al menos 1G",
"economic_dont_have_enough_money": "No tienes esa cantidad de dinero",
"fight_enter_id_monster": "Debes ingresar la ID del monstruo si quieres pelear",
"fight_impossible_in_town": "No puedes pelear en un pueblo",
"fight_already_in": "Ya estas en una pelea, una vez que termines puedes comenzar una nueva",
"fight_monter_dont_exist": "El monstruo con el que estas intentando pelear no existe",
"travel_already_here": "Ya estas en esta area",
"travel_area_dont_exist": "Esta area no existe",
"travel_tired_wait_x": "Estas muy cansado para viajar, debes esperar:%d segundos",
"fight_pvp_choose_enemy": "Tienes que elegir a tu oponente",
"fight_pvp_cant_fight_yourself": "No puedes luchar contigo mismo",
"fight_pvp_not_same_area": "No puedes ver a este usuario cerca de ti",
"fight_pvp_cant_fight_here": "No puedes luchar con otro jugador aqui",
"character_you_cant_distribute_this_amount_of_points": "No puedes asignar esta cantidad de puntos",
"character_attribute_dont_exist": "Este atributo no existe",
"languages_lang_dont_exist": "Este idioma no existe, por favor consulte la lista de idiomas disponibles usando el siguiente comando /other lang",
"group_already_in_group": "No puedes estar en un grupo para hacer esto",
"group_not_in_group": "Tienes que estar en un grupo para hacer esto",
"group_occupied": "Tu grupo esta ocupado, finaliza lo que estas haciendo e inténtalo de nuevo",
"group_not_leader": "Tienes que ser el lider del grupo para hacer esto",
"group_cant_invite_yourself": "No puedes invitarte a ti mismo",
"group_user_not_connected": "Tienes que invitar a un usuario conectado",
"group_invite_already_in_group": "Este usuario ya esta en un grupo",
"group_invite_waiting": "Este usuario tiene una invitacion pendiente",
"group_you_dont_receive_invitation": "No has recibido ninguna invitacion para unirte a un grupo",
"group_full_join": "El grupo al que intentas entrar esta lleno",
"group_cant_invite_more_than": "No puedes invitar mas de %d jugadores al mismo tiempo",
"group_user_not_in_your_group": "El usuario %s no esta en el grupo ni en la lista pendiente para unirse a él",
"group_user_kick_empty_name": "You must select the user you want to kick out",
"group_cant_kick_yourself": "No puedes echarte a ti mismo del grupo",
"group_not_same_area": "Cada miembro del grupo tiene que estar en la misma area",
"group_cant_swap_yourself": "No puedes hacerte lider del grupo porque ya eres el lider del grupo",
"group_user_swap_empty_name": "Debes seleccionar el usuario al que quieres intercambiar el lider del grupo",
"marketplace_not_exist": "No hay ningun mercado aqui",
"marketplace_id_item_forgotten": "Tienes que elegir el item para vender",
"marketplace_dont_have_object": "No tienes este item",
"marketplace_price_forgotten": "Tienes que ingresar el precio al que quieres vender el item",
"marketplace_nb_of_item_not_ok": "Tienes que elegir el numero de items para vender",
"marketplace_not_this_number_of_item": "No tienes tantos items",
"marketplace_not_enough_to_pay_tax": "No tienes el dinero suficiente para pagar el impuesto",
"marketplace_id_to_cancel_forgotten": "Tienes que elegir el item para recuperar",
"marketplace_order_dont_exist": "Este item no existe",
"marketplace_order_not_yours": "Este item no te pertenece",
"marketplace_id_to_buy_forgotten": "Tienes que elegir el item para comprar",
"marketplace_order_yours": "No puedes comprar tus propios items",
"marketplace_not_enough_money": "No tienes el suficiente dinero para hacer esto",
"marketplace_favorite_sell_impossible": "No puedes vender un item etiquetado como favorito",
"craft_no_building": "No hay ningun edificio de artesanía activo aquí",
"craft_dont_exist": "Este plano no está disponibel",
"craft_dont_have_required_level": "No tienes el minimo nivel requerido para elaborar este item. Tienes que ser al menos nivel: %d",
"craft_dont_have_required_items": "No tienes los recursos necesarios para elaborar este item",
"craft_tired_wait_x_seconds": "Estas muy cansado para elaborar este item, todavia necesitas esperar: %s segundos",
"craft_level_incorrect": "No puedes fabricar un ítem de este nivel aquí",
"craft_rebirth_level_incorrect": "You can't craft an item of this rebirth level here",
"prefix_max_length": "El prefijo no debe exceder una longitud de %d caracteres",
"prefix_undefined": "El prefijo tiene que tener al menos 1 carácter",
"prefix_not_owner_server": "Tienes que ser el creador de este servidor para cambiar el prefijo",
"shop_item_dont_exist": "Tienes que elejir un item existente",
"shop_no_building": "No hay tienda en esta area",
"already_doing_something_command": "Tienes que esperar hasta que se complete tu ultima accion",
"travel_missing_achievements": "No puedes acceder a esta area, te estas perdiendo los siguientes logros: \"%s\"",
"trade_not_in_trade": "No estas comerciando",
"trade_cant_propose_more": "Ya has propuesto un intercambio a alguien, cancela el intercambio actual para que puedas proponer otro",
"trade_proposal_waiting": "Esta persona ya tiene una solicitud de intercambio pendiente",
"trade_propose_already_in_trade": "Esta persona esta en un comercio actualmente",
"trade_user_not_connected": "Solo puedes comerciar con usuarios conectados",
"trade_cant_propose_yourself": "No puedes comerciar contigo mismo",
"trade_already_in_trade": "Ya estas realizando un comercio, cancela o finaliza el comercio actual para poder realizar esta acción",
"trade_inventory_changed": "Uno o mas items del comercio ya no están disponibles debido a un cambio en el inventario, por favor, vuelva a verificar el comercio usando el comando para mostrarlo",
"trade_not_in_same_area": "Para validar el comercio, debes estar en la misma area que la persona con la que estás negociando",
"trade_you_dont_receive_invitation": "No has recibido una solicitud de negociación",
"trade_dont_have_that_many_items": "No tienes suficientes unidades de este item",
"trade_dont_have_item": "No tienes este item",
"trade_item_dont_exist": "Este item no existe o te pertenece",
"trade_not_enough_money": "No tienes tanto dinero para poner en el comercio",
"trade_unable_find_item": "No se puede encontrar este item",
"trade_not_accepted": "La otra persona debe aceptar el oficio antes de que usted pueda hacer esta acción",
"travel_area_cant_travel": "No puede viajar a esta área",
"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": "Nombre - Tipo - Subtipo - Rareza - Número",
"header_craft_list": "ID - Nombre - Tipo - Lvl. Mínimo - Lvl. Máximo - Rareza",
"needed_items": "Items necesarios",
"craft_done": "Haz realizado el siguiente item: \"%s\""
},
"marketplace": {
"placed": "Tu %s [x%d] Ya está a la venta (id: %d)",
"placed_plur": "Tu %s [x%d] Ya está a la venta (id: %d)",
"header_str": "Usuario - ItemID - Nombre - Tipo - Nivel - Rareza - Energía - Numero - Precio unitario",
"retrieve": "Has recuperado tu item",
"retrieve_plur": "Has recuperado tus items",
"you_sold_plur": "Has vendido \"%s\" x%d por %dG",
"you_sold": "Has vendido \"%s\" x%d por %dG",
"you_buy": "Has comprado %d item por %dG",
"you_buy_plur": "Has comprado %d items por %dG",
"you_paid_tax": "Has pagado %dG de impuesto para colocar este item",
"now_muted": "Las notificaciones de los mercados están desactivadas ahora",
"now_unmuted": "Las notificaciones de los mercados están activadas ahora",
"settings_menu_mute": "%s Notificaciones de mercados"
},
"shop": {
"you_buy": "Has comprado \"%s\" x%d por el precio de: %dG",
"header": "ID - Nombre [xCantidad] - Tipo - Nivel - Rareza - Precio"
},
"group": {
"you_left": "Abandonaste el grupo",
"invitation_sent": "Invitacion a unirse al grupo enviado",
"someone_invited_you": "El usuario %s te invito a unirse a su grupo (usa %s para aceptarlo o %s para rechazarlo)",
"you_joined": "Te uniste al grupo",
"you_declined": "Has rechazado la invitacion para unirte al grupo",
"someone_left_the_group": "El usuario %s abandonó el grupo",
"someone_joined_the_group": "El usuario %s se unió al grupo",
"someone_declined_invitation": "El usuario %s rechazó unirse a tu grupo",
"now_muted": "Las notificaciones de grupo ahora estan desactivadas",
"now_unmuted": "Las notificaciones de grupo ahora estan activadas",
"user_kicked": "El usuario %s fue expulsado del grupo",
"user_swaped": "El usuario %s ahora es el líder del grupo",
"invite_cancel": "La invitacion grupal al usuario %s fue cancelada",
"you_ve_been_kicked": "Fuiste expulsado del grupo",
"nobody_was_invited": "Nadie fue invitado a unirse a tu grupo",
"group": "Grupo",
"avg_level": "Nivel promedio: %d",
"avg_power": "Energía promedio: %d",
"members_of_the_group": "Miembros del grupo",
"invited_users": "Usuarios invitados",
"settings_menu_mute": "%s Notificaciones de grupo"
},
"area": {
"monster": "ID: %s | %s | Lvl: %s | Tipo: %s",
"resources": "Recursos del area:",
"resource": "ID: %s | %s | %s",
"list_of_players_in_area": "Lista de jugadores de la %s area:",
"player": "ID: %s | Nombre: %s | Nivel: %d",
"wild_area": "%d | %s | Nivel: %s",
"city_area": "%d | %s (Pueblo) | Nivel: %s",
"dungeon_area": "%d | %s (Mazmorra) | Nivel: %s",
"no_description": "No hay descripcion disponible para esta area",
"maximum_quality": "Calidad máxima para un item:",
"minimum_quality": "Calidad mínima para un item:",
"minimum_rebirth_level": "Minimum monsters rebirth level:",
"maximum_rebirth_level": "Maximum monsters rebirth level:",
"monsters_rebirth_level": "Monster Rebirth Levels:",
"you_claimed": "Has reclamado esta area",
"owned_by": "Propiedad de: %s",
"monster_group": "ID: %s | %s (+%d mas) | lvl Promed.: %s | Tipo: %s",
"conquest": "Conquista",
"conquest_next": "Próxima conquista :\n- %s\n- Numero de gremios inscritos: %d",
"conquest_ongoing": "Conquista en curso",
"area_progression": "Progresión del area",
"level_up": "El area ha subido de nivel",
"bonus_list_header": "Identificador => Se refiere a",
"up_stat": "El bonus %s han ganado %d puntos",
"reset_stats": "This area's points have been refunded",
"areas": "Areas",
"list": "Lista de areas",
"list_regions_connected": "Regiones conectadas",
"no_connected_regions": "No hay regiones conectadas con esta region",
"follow_the_link": "Puedes tener la lista de recursos en el siguiente enlace.",
"services": "Services",
"service_marketplace": "Mercado (Impuesto: %d%)",
"service_forge": "Forjador (Elaboracion: Lvl. %d - %d)",
"service_shop": "Tienda (Impuesto: %d%)",
"conquest_actual_level": "Nivel actual: %d",
"conquest_points_to_distribute": "Puntos a distribuir: %d",
"conquest_price_to_next_level": "Precio al siguiente nivel: %dG",
"region": "Region: %s",
"wild": "Wilderness",
"city": "Town",
"dungeon": "Dungeon"
},
"bonuses": {
"bonuses": "Bonuses",
"xp_fight": "Lucha XP",
"xp_collect": "Coleccion XP",
"xp_craft": "Elaboracion XP",
"gold_drop": "Oro Drop",
"item_drop": "Item Drop",
"collect_drop": "Colección Drop",
"no_bonuses": "No hay bonus disponible",
"harvest_tiredness": "Harvest tiredness",
"travel_tiredness": "Travel tiredness"
},
"resources": {
"wood": "Madera",
"ore": "Mineral",
"tree": "Arbol",
"plant": "Planta",
"woods": "Maderas",
"ores": "Minerales",
"trees": "Arboles",
"plants": "Plantas",
"animal": "Animal",
"animals": "Animals",
"fabric": "Fabric",
"fabrics": "Fabrics",
"noresources": "No hay recursos aqui",
"not_collected": "No tuviste éxito en recoger este recurso",
"collected_x_resource": "Has conseguido%d %s",
"resource_dont_exist": "No puedes ver este recurso por ninguna parte",
"collect_gain_xp": "Has ganado un total de %d XP (con un %d XP de bonus gracias al area) a tu trabajo de artesano",
"job_level_up": "Has ganado %d nivel a tu trabajo de artesano",
"job_level_up_plur": "Has ganado %d niveles a tu trabajo de artesano",
"tried_to_collect_x_times": "Has intentado recoger este recurso %d veces"
},
"general": {
"nothing_at_this_page": "Esta página esta vacía",
"page": "Página",
"none": "Ninguno",
"nobody": "Nadie",
"description": "Descripción",
"monsters": "Monstruos",
"monster": "Monstruo",
"resource": "Recurso",
"resources": "Recursos",
"lvl": "Lvl.",
"page_out_of_x": "Página %d/%d",
"enable": "Habilitar",
"disable": "Inhabilitar",
"region": "Región",
"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": "No tienes un gremio",
"member": "Miembro",
"members": "Miembros",
"officer": "Oficial",
"guild_master": "Maestro de gremio",
"guild_announcement": "Anuncio de gremio",
"no_guild_announcement": "Ningún anuncio de gremio",
"you_have_updated_guild_announcement": "Has actualizado exitosamente el anuncio del gremio",
"members_out_of": "Miembros: %d/%d",
"level_out_of": "Nivel: %d/%d",
"required_to_level_up": "Dinero requerido para subir de nivel al gremio: %d G",
"money_available": "Dinero disponible",
"money": "%dG",
"guild_x_created": "El gremio: %s Ha sido creado!",
"dont_have_enough_to_create": "No tienes dinero suficiente para crear el gremio (Necesitas %dG)",
"guild_disband": "Disolviste el gremio!",
"guild_applied": "Aplicaste para unirte al gremio",
"character_have_been_accepted": "Este usuario a sido aceptado en el gremio",
"you_have_denied_this_apply": " Solicitud rechazada exitosamente",
"you_have_cancel_your_apply": "Has cancelado tu solicitud",
"you_have_denied_all_applies": "Has rechazado todas las solicitudes",
"you_have_cancel_all_your_applies": "Haz cancelado todas tus solicitudes",
"you_leaved_guild": "Has abandonado tu gremio",
"member_kicked": "El miembro fue expulsado",
"rank_modified": "El rango de este miembro fue cambiado exitosamente",
"you_gift_x_g_to_guild": "Has donado %dG a tu gremio",
"you_retrive_x_g_from_guild": "Has recuperado %dG De tu gremio",
"guild_level_up": "Tu nivel de gremio ha aumentado. ahora es: %d",
"guild_no_apply_player": "No solicitaste para unirte a un gremio",
"nobody_ask_to_join_your_guild": "Nadie solicitó unirse a tu gremio",
"nothing_to_print": "No hay nada que ver",
"enroll": "Tu gremio ahora está inscrita para la próxima conquista de esta area",
"unenroll": "Tu gremio ya no está inscrito en inguna conquista",
"you_paid_x": "Tu gremio a pagado %dG",
"renamed": "Has renombrado el nombre de tu gremio a \"%s\"",
"guild_territories": "Propiedades territoriales de tu gremio (%d)",
"guild_territory_enroll": "Registro de Conquista",
"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": "Tu item ahora está equipado (%s)",
"item_unequiped": "El item ha sido desequipado (%s)",
"id": "id",
"name": "Nombre",
"type": "Tipo",
"subtype": "Subtipo",
"level": "Nivel",
"rebirth_level": "Rebirth Level",
"rarity": "Rareza",
"empty_inventory": "Inventario vacío",
"no_desc": "No hay descripción para este item",
"page_x_out_of": "Página %d/%d",
"currently_equipped": "Actualmente equipado",
"attributes": "Atributos",
"secondary_attributes": "Secondary Attributes",
"nothing_in_this_slot": "No tienes ningun item equipado en este espacio",
"nothing_equipped": "No tienes ningun item equipado",
"power": "Poder",
"item_tag_as_favorite": "Este item está etiquetado como favorito ahora (%s)",
"item_untag_as_favorite": "Este item ya no está etiquetado como favorito (%s)",
"item_no_stats": "Este item no tiene ningún atributo",
"wait_time_reduction": "(Reduce el tiempo de fatiga restante %d%)",
"sellall_title": "Planificación de la venta de tus items",
"sellall_going_to_sell": "Estas a punto de vender",
"sellall_going_to_sell_all": "Todos los items que no estén marcados como favoritos",
"sellall_going_to_sell_rarity": "Todos los items de calidad \"%s\" que no fueron marcados como favoritos",
"sellall_going_to_sell_type": "Todos los items de tipo \"%s\" que no fueron marcados como favoritos",
"sellall_going_to_sell_level_sup": "Todos los objetos con su nivel mayor o igual a %d que no están marcados como favoritos",
"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": "Valor total de los items",
"sellall_are_you_sure": "¿Estas seguro que quieres vender estos items?",
"sellall_cancel": "Cancelaste la venta",
"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": "Bonificaciones/penalizaciones del tiempo de viaje segun el clima/terreno:",
"all_areas": "Todas las áreas: %d%",
"everything_else": "Todo lo demás: %d%"
},
"climates": {
"climate": "Clima",
"temperate_oceanic": "Templado oceánico",
"volcanic_hell": "Infierno volcánico",
"hot_desert": "Desierto caliente",
"eternal_snow": "Nieve eterna",
"interior": "Interior"
},
"weather": {
"weather": "Tiempo",
"sunny": "Soleado",
"cloudy": "Nublado",
"foggy": "Neblina",
"rainy": "Lluvioso",
"rainstorm": "Tormenta de lluvia",
"snowy": "Nevado",
"firestorm": "Tormenta de fuego",
"sandstorm": "Tormenta de arena",
"snowstorm": "Tormenta de nieve",
"impact": "Weather-related impacts",
"time_before_ends": "Time remaining before weather change"
},
"trade": {
"settings_menu_mute": "%s Notificaciones de intercambio",
"now_muted": "Las notificaciones de intercambio están ahora desactivadas",
"now_unmuted": "las notificaciones de intercambio están ahora activadas",
"you_cancelled": "Cancelaste el intercambio",
"someone_proposed_you": "%s quiere hacer un intercambio contigo",
"proposal_sent": "Solicitud de intercambio enviada",
"you_accepted": "Aceptaste la solicitud de intercambio",
"notification_accepted": "%s aceptó la solicitud de intercambio",
"notification_cancelled": "%s canceló el intercambio",
"done": "intercambio realizado, los objetos y/o el dinero intercambiado deberían estar en tu inventario",
"notification_await_validation": "La persona con quien estas intercambiando aprobó el intercambio, está esperando tu aprobación",
"await_validation": "Intercambio aprobado, esperando a la otra persona",
"notification_add_item": "%s añadió un objeto al intercambio: \"%s\" [x%d]",
"add_item": "Añadiste exitosamente el objeto \"%s\" [x%d] al intercambio",
"notification_remove_item": "%s removió un item del intercambio: \"%s\" [x%d]",
"remove_item": "Removiste exitosamente el objeto \"%s\" [x%d] del intercambio",
"notification_set_money": "%s te ofrece %dG para este intercambio",
"set_money": "Has propuesto %dG para este intercambio",
"title": "intercambio entre %s y %s",
"is_proposing": "%s está proponiendo"
},
"character": {
"reset_done": "Reinicio realizado!",
"attribute_up_to": "El atributo %s ha aumentado y ahora tiene %d puntos",
"attribute_x_points_available": "Hay %d punto más para distribuir",
"attribute_x_points_available_plural": "Hay %d puntos más para distribuir",
"info_attributes_title": "Atributos | %d punto para distribuir (Precio de reinicio %dG)",
"info_attributes_title_plur": "Atributos | %d puntos para distribuir (Precio de reinicio %dG)",
"maximum_level": "Nivel máximo",
"character_advancement": "Character Advancement",
"level": "Nivel",
"craft_level": "Nivel para elaboración",
"money": "Dinero",
"honor": "Honor",
"health_points": "Puntos de vida",
"damage_reduction": "Reducción de daño",
"critical_chance": "Probabilidad de crítico",
"achievement_earned": "Felicitaciones! Gracias a tu esfuerzo, has desbloqueado el siguiente logro: \"%s\"",
"achievement_title": "Lista de logros (%d / %d) - %d Puntos",
"achievement_earned_word": "Conseguido",
"achievement_name": "%s (%d Puntos)",
"no_desc": "Este logro no tiene descripción",
"maximum_stun_chance": "Máxima probabilidad de aturdimiento",
"reset_price_title": "Reiniciando tus atributos",
"reset_talents_price_title": "Reseting your talents",
"sure_to_reset_title": "Estas seguro de reiniciar tus atributos?",
"reset_cancel": "Cancelaste tu reinicio de atributos",
"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": "Has vendido tu objeto por %dG",
"sell_for_x_plural": "Has vendido tus objetos por %dG",
"sell_all_for_x": "Has vendido todos los objetos de tu inventario por %dG",
"send_money_to": "Has enviado %dG a %s"
},
"admin": {
"no_admin_xp_command": "No eres un administrador pero intentaste hacer trampa! Desafortunadamente, Dios no es bueno y decidió castigarte; asi que aqui tienes tu nueva vida. (Ahora eres nivel 1)."
},
"travel": {
"travel_to_area": "Viajaste al área llamada: %s",
"travel_to_area_exhaust": "Estás cansado, tendras que esperar %d segundos antes de hacer algo de nuevo",
"travel_planning": "Estás por viajar desde \"%s\" hasta \"%s\"",
"wait_time_title": "Tiempo de espera estimado",
"wait_time_body": "%d segundos",
"wait_time_body_with_mount": "%d segundos (Gracias a tu montura, esperas %d segundos menos)",
"gold_price_title": "Costo de oro estimado",
"gold_price_body": "%d G",
"sure_to_travel_title": "Estas seguro que quieres viajar?",
"sure_to_travel_body": "%s => Si\n%s => No",
"travel_cancel": "Has cancelado tu viaje",
"total_without_weather": "Total travel time without weather impact",
"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": "No fuiste lo suficientemente sigiloso/a, un monstruo te ataca! (Necesitas mas persepción)",
"user_get_attacked": "%s fue atacado por: %s!",
"user_attacked": "%s atacó a %s!",
"onfight_user_attack": "%s atacó al monstruo %s e infligió **%d** de daño",
"onfight_monster_attack": "%s atacó al jugador %s e infligió **%d** de daño",
"drop_item": "Conseguiste un objeto (%s)! felicidades!",
"drop_item_equip": "Conseguiste equipamiento (%s)!",
"drop_item_equip_plur": "Conseguiste equipamiento (%s)!",
"drop_item_other": "Conseguiste un objeto (%s)!",
"drop_item_other_plur": "Conseguiste varios objetos (%s)!",
"level_up": "Felicidades! Subiste: %d nivel. Ahora eres nivel: %d!",
"money_gain": "Ganaste: %d G",
"xp_gain": "Ganaste: %d XP",
"nothing_gain": "Ganaste absolutamente nada!",
"both_gain": "Ganaste: %d XP y %d G",
"group_drop_item": "Tu equipo consiguió algunos objetos! Felicidades! (Objeto de mayor calidad encontrado: %s)",
"group_level_up": "Alguien de tu grupo subió de nivel! Felicidades!",
"group_money_gain": "Tu grupo ganó: %d G",
"group_xp_gain": "Tu grupo ganó: %d XP",
"group_nothing_gain": "Tu grupo ganó absolutamente nada!",
"group_both_gain": "Tu grupo ganó: %d XP y %d G",
"group_pm_gain": "Ganaste: %d XP y %d G",
"group_pm_gain_other": "Tambien ganaste items: %s",
"group_pm_lost_fight": "Tu grupo perdió la pelea",
"group_pm_won_fight": "Tu grupo ganó la pelea"
},
"fight_pvp": {
"onfight_user_attack": "%s atacó a %s e inflingió **%d** de daño",
"honor_gain": "Ganaste: %d puntos de honor!",
"honor_lose": "Perdiste: %d puntos de honor!",
"honor_not_honorable": "Batalla sin honor, perdiste: %d puntos de honor!"
},
"monsters_types": {
"normal": "Normal",
"elite": "Élite",
"boss": "Jefe"
},
"fight_general": {
"combat_log": "Reguistro de batalla",
"critical_hit": "Ataque crítico",
"stun_hit": "Ataque de aturdimiento",
"critstun_hit": "Ataque de aturdimiento crítico",
"win": "Ganaste la batalla!",
"loose": "Perdiste la batalla!",
"now_muted": "Las nitificaciones de batalla están ahora desactivadas",
"now_unmuted": "Las notificaciones de batalla están ahora activadas",
"settings_menu_mute": "%s Notoficaciones de batalla",
"status_of_fight": "Estado da batalha: %s",
"battle_ongoing": "Você está lutando!",
"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": "Común",
"rare": "Raro",
"superior": "Superior",
"epic": "Épico",
"legendary": "Legendario",
"mythic": "Mítico"
},
"languages": {
"fr": "Francés",
"en": "Inglés",
"pt-BR": "Brazileño Portugués",
"ru": "Ruso",
"es": "Español",
"list_of_languages": "Lista de lenguajes disponibles (Usa la abreviación para cambiar entre lenguajes)",
"lang_changed": "Lenguaje cambiado correctamente, el bot ahora está en %s",
"vi": "Vietnamese"
},
"other": {
"loading_character": "Cargando tu personaje",
"character_loaded": "Personaje cargado correctamente",
"prefix_changed": "Prefijo cambiado",
"old_prefix": "Prefijo viejo",
"new_prefix": "Prefijo nuevo",
"prefix_title": "Prefijo actual",
"check_dm": "A private message has been sent to you with the procedure to follow!"
},
"item_types": {
"weapon": "Arma",
"chest": "Pechera",
"legs": "Piernas",
"head": "Casco",
"resource": "Recurso",
"lootbox": "Caja",
"potion": "Poción",
"mount": "Montura"
},
"item_sous_types": {
"wood": "Madera",
"ore": "Mineral",
"plant": "Planta",
"sword": "Espada",
"whip": "Látigo",
"metal": "Metal",
"loot_box_equipment": "Caja de equipamiento",
"reset_time_potion": "Anti-cansancio",
"founder_box": "Recompensa encontrada",
"random_loot_box_equipment": "Caja de equipamiento aleatorio",
"horse": "Caballo",
"crystal": "Cristal",
"energy_potion": "Poción energizante",
"salamander": "Salamander",
"camel": "Camel",
"polar_bear": "Polar Bear",
"cloth": "Cloth",
"leather": "Leather",
"bow": "Bow",
"dagger": "Dagger",
"wand": "Wand",
"staff": "Staff"
},
"stats": {
"strength": "Fuerza",
"intellect": "Intelecto",
"constitution": "Salud",
"armor": "Armadura",
"dexterity": "Destreza",
"wisdom": "Sabiduría",
"will": "Reflejos",
"perception": "Percepción",
"charisma": "Carisma",
"luck": "Suerte",
"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": "Abriste una caja, obtienes:\n",
"open_message_mult": "Abriste %d cajas, obtienes:\n",
"no_drop": "Abriste una caja, pero estaba vacía!",
"no_drop_mult": "Abriste %d cajas, pero estaban vacías!"
},
"leaderboards": {
"arena": "Tabla de clasificaciónes JvJ | Puntos de Honor total entre todos los jugadores: %d",
"gold": "Tabla de clasificaciónes Oro | Oro total entre todos los jugadores: %dG",
"level": "Tabla de clasificaciónes Nivel",
"craftlevel": "Tabla de clasificaciónes Nivel para elaboración",
"wb_damage": "Jefe Global: Daño",
"wb_attacks": "Jefe Global: Número de ataques",
"wb_have_not_participate": "Aún no has participado en una batalla contra el jefe",
"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": "No hay un Jefe Global aquí",
"spawn_date": "Fecha de aparición: %s",
"last_boss_never_fight": "Aún no has luchado contra el Jefe Global",
"boss_fight_recap_damage_dealt": "Daño realizado: %d (Rango: %d)",
"boss_fight_recap_attack_count": "Recuento de ataques: %d (Rango: %d)",
"boss_fight_damage_inflicted": "Has inflingido %d de daño",
"boss_fight_damage_inflicted_critical": "Has inflingido %d de daño (Golpe Crítico!)",
"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": "Bebiste: \"%s\"\n",
"drink_plur": "Bebiste: \"%s\" %d veces\n",
"reset_time": "Sientes como tu cansancio desaparece, tu tiempo de espera ha sido reinciado",
"reduce_time": "Te sientes vigorizado, tu tiempo de espera ha sido reducido en un: %d%"
},
"vote_daily": {
"you_voted": "Has votado por el bot, gracias!\n",
"vote_no_week_end": "Como recompensa, recibes una poción anti-cancancio!",
"vote_week_end": "bonificación de fin de semana! Recibes dos pociones anti-cansancio!"
},
"help_panel": {
"help": "Ayuda",
"tutorial": "Hola! veo que esta es tu primera vez usando el FightRPG. Hay un tutorial en este enlace: %s\nFollow para que lo leas antes de hacer nada, te ayudará!",
"inventory_title": "Inventario",
"inv": "Muestra tu inventario",
"inv_filter": "muestra tu inventario y filtra los resultados. Los filtros son: %s",
"item": "Muestra información sobre el objeto seleccionado. para objetos equipados usa: head (casco), chest (pechera), legs (piernas), weapon (arma) o mount (montura) en lugar del ID.",
"itemfav": "Etiqueta un objeto como favorito para evitar que sea vendido",
"itemunfav": "Quita la etiqueta de favorito a un objeto",
"sell": "Vende el objeto seleccionado",
"sellall": "Vende todos los objetos del inventario",
"sellall_filter": "Sells all items in your inventory that match your <filter>. Los filtros son: %s",
"sendmoney": "Envía dinero a un jugador",
"filters_title": "Filtros",
"rarities": "Muestra los ID de todas las rarezas",
"types": "Muestra los ID de todos los tipos",
"equipment_title": "equipo",
"equipment": "Muestra los objetos equipados",
"equip": "Equipa el item seleccionado",
"unequip": "Quita del equipo el objeto seleccionado",
"use": "Usa el objeto especificado",
"character_title": "Personaje",
"info": "Muestra la información de tu personaje",
"attributes": "Muestra los atributos totales de tu personaje",
"up": "Añade al atributo seleccionado el numero de puntos especificados (ejemplo:up str 5)",
"leaderboard": "Muestra tu Clasificación según su tipo (arena, gold, level, craftlevel, power)",
"reset": "Te permite reiniciar tus atributos",
"resettalents": "Allows you to reset your talents",
"fight_title": "Batallas",
"fight": "Te permite intentar atacar al monstruo/monstruos seleccionado/seleccionados",
"grpfight": "Te permite intentar atacar al monstruo/monstruos seleccionado/seleccionados con tu grupo",
"arenaMention": "Te permite atacar al jugador mencionado",
"arena": "Te permite atacar al jugador seleccionado",
"areas_title": "Áreas",
"area": "Muestra información del área en el que estás",
"areas": "Muestra todas las áreas",
"areaconquest": "Muestra la siguiente conquista para este área",
"arealevelup": "Sube de nivel el área que tu gremio posee (debes estar en ese área)",
"areabonuseslist": "Muestra la lista de bonificaciones de este área",
"areaplayers": "Muestra los jugadores del área actual",
"areaupbonus": "Mejora uno de las bonificaciones disponibles",
"arearesetbonuses": "Refund all bonuses for current area",
"travel": "Te permite viajar al área seleccionada (ejemplo: travel 2)",
"travelregion": "Te permite viajar a la región seleccionada (ejemplo: travelregion 1)",
"traveldirect": "Allows you to travel to one area, using it's real areaID",
"guilds_title": "Gremios",
"guild": "Muestra la información del gremio al que perteneces",
"guilds": "Muestra los gremios existentes",
"gcreate": "Te permite crear un gremio",
"gdisband": "Te permite desarmar un gremio (solo el dueño puede)",
"gapply": "Te permite solicitar tu union a un gremio",
"gaccept": "Te permite aceptar a alguien en tu gremio",
"gapplies": "Muestra las solicitudes de union al gremio",
"gapplyremove": "Te permite descartar una solicitud de union",
"gappliesremove": "Te permite borrar todas las solicitudes de union",
"gannounce": "Te permite cambiar el anuncio de tu gremio",
"gaddmoney": "Añade dinero a tu gremio",
"gremovemoney": "Retira dinero de tu gremio",
"glevelup": "Sube el nivel de tu gremio",
"genroll": "Inscribe a tu gremio para la siguiente conquista del área en el que estás",
"gunenroll": "Desuscribe a tu gremio de la siguiente conquista del área en el que estás",
"gleave": "Abandonar tu gremio",
"gmod": "cambiar el rango de un miembro del gremio (1: Miembro, 2: Oficial)",
"gleaderswitch": "Cambia tu rango de maestro del gremio con algún otro miembro del gremio",
"grename": "Cambia el nombre de tu gremio. Costo: %dG",
"gterritories": "Muestra los territorios de tu gremio",
"gkick": "expulsa al miembro seleccionado de tu gremio",
"other_title": "Otros",
"lang": "Muestra la lista de los lenguajes disponibles",
"lang_param": "te permite cambiar el lenguaje",
"groups_title": "Grupos",
"grp": "Muestra el grupo en el que estás",
"grpinvite_mention": "Invita al jugador @mencionado a unirse a tu grupo",
"grpleave": "Te permite abandonar el grupo",
"grpaccept": "Acepta una invitación para unirte a un grupo",
"grpdecline": "Rechaza una invitacion para unirte a un grupo",
"grpkick": "expulsa un miembro de tu grupo o cancela una solicitud de union a tu grupo",
"grpswap": "Te permite elegir un nuevo líder de grupo",
"grpmute": "Desactiva las notificaciones de grupo",
"grpunmute": "Activa las notificaciones de grupo",
"market_title": "Casa de subastas",
"mkmylist": "muestra tu lista de objetos a la venta",
"mkplace": "Vende <cantidad> objeto <IdDelObjetoEnTuInventario> por <price>G",
"mkcancel": "Cancela la venta del objeto seleccionado <idDeObjeto>",
"mkbuy": "compra <cantidad> del objeto <idDelObjeto>",
"mksearch": "Busca el elemento que coincida con los filtros. Los filtros son: %s",
"mkshow": "Muestra todos los objetos del mercado en la página dada",
"mksee": "Muestra el objeto <iddelObjeto>",
"craft_title": "Sistema de trabajo",
"craftlist": "muestra todas las recetas disponibles en esta ciudad en la página dada",
"craftshow": "Muestra la receta del ID seleccionado",
"craft": "elabora la receta del ID seleccionado",
"collect": "Recoje el recurso del ID seleccionado",
"resources": "muestra todos los recursos de todas las áreas",
"shop_title": "Tienda",
"sitems": "Muestra todos los objetos disponibles para comprar en esta ciudad en la página dada",
"sbuy": "Compra el objeto del ID seleccionado",
"world_boss_title": "Jefes Globales",
"wbfight": "Ataca al Jefe Global (si hay uno en tu área actual)",
"wbshowall": "Muestra informacion sobre los Jefes Globales",
"wblastinfo": "Muestra tus estadisticas del ultimo Jefe que mataste",
"wbleaderboard": "Muestra la clasificación de los mejores jugadores en términos de daño (damage) o recuento de ataques (attacks)del ultimo Jefe GLobal que atacaste",
"settings": "Muestra el menú de ajustes",
"achievements": "Muestra los logros",
"trade_title": "Intercambios",
"tpropose": "Proponer un intercambio a @alguien",
"taccept": "Aceptar la propuesta de intercambio",
"tcancel": "Cancelar el intercambio actual",
"tshow": "Mostrar el intercambio",
"titem": "Mostrar el objeto <idEnIntercambio> en el intercambio",
"tadd": "Añadir un objeto mas usando <idObjetoEnInventario> al intercambio",
"tremove": "Quitar uno o mas objetos del intercambio",
"tsetmoney": "Establecer la cantidad de oro que quieres intercambiar",
"tvalidate": "Aceptar el intercambio. Debes estar en el mismo área que la persona con quien estás intercambiando. Cuando los dos acepten, el intercambio termina. Todos deben volver a aceptar el intercambio despues de que se hagan cambios",
"talents_title": "Talents/Skill Tree",
"talents": "Displays information on unlocked and unlockable talents",
"talentshow": "Displays talent information with the <idTalent> identifier",