-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathresponses.json
2136 lines (2136 loc) · 141 KB
/
responses.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
{
"start_1":"Hi %s, first of all, select your language :)",
"start_2":{
"es":"Bienvenido a @{}. Este bot te mostrará todos los aspectos disponibles, te avisará de las nuevas ofertas y rotaciones, te permitirá ver información de invocadores y partidas, contra quién es débil y contra quién fuerte cada personaje y más cosas en el futuro :)",
"en":"Welcome to @{}. This bot will show you all the skins and champions, will notify you when new sales are rotations are availables, will let you see information about summoners and matches, who is weak or strong versus each champion and more things in the future! :)",
"it":"Benvenuto a @{}. Questo bot ti mostrerà tutti i campioni disponibili e i loro rispettivi aspetti, ti avviserà delle nuove offerte e rotazioni, ti permetterà vedere informazioni su evocatori e partite, contro chi è debole e contro chi è forte ogni personaggio e più cose nel futuro! :)",
"de":"Willkommen beim @{}. Dieser Bot zeigt alle Skins und Champions an, benachrichtigt dich, wenn neue Angebote im Store oder neue Championrotationen verfügbar sind, zeigt dir Informationen über Beschwörer und aktive Spiele, offenbart, welcher Champion schwach oder stark gegen welchen Champion ist und wird noch vieles mehr in Zukunft können! :)",
"pt":"Bem vindo ao @{}. Este bot mostrará todas as skins e campeões, vai te avisar das novas promoções e rotações, vai permitir ver informações de invocadores e partidas, para cada campeão quem é mais forte ou mais fraco que ele e mais coisas no futuro! :) ",
"fr":"Bienvenue sur le @{}. Ce bot te permet de consulter tous les champions et leurs skins, te prévient quand des nouvelles offres et rotations de champions sont disponibles, te donne accès aux informations sur les invocateurs et les parties, ainsi qu'un aperçu des matchups (qui est fort/faible contre qui) des champions et bien plus encore dans un futur proche ! :) ",
"fa":"خوش آمدید به @{} . این بات به شما نشان میدهد تمام چمپیون ها و اسکین هایشان را،همچنین جدیدترین چمپ های فیری هفته و تخفیف های هفتگی ، اطلاعات درباره بازیکنان و بازی ها، کدام چمپ در مقابل کدام ضعیف و یا قوی هست و اضافه میشود امکانات بیشتر در آینده! :)",
"pl":"Witaj w @{}. Bot pokaże Ci wszystkie skiny i bohaterów, poinformuje Cię o nowych wyprzedażach oraz dostępnych rotacjach, pokaże informacje na temat przywoływaczy i meczów, który bohater jest słaby lub silny przeciwko innemu, i więcej w niedalekiej przyszłości! :)",
"tr":"@{}'a hoşgeldin! Bu bot sana tüm şampiyonları ve kostümleri yeni satışlarıyla ve haftalık rotasyonuyla birlikte sunacak. Aynı zamanda sihirdarların bilgilerini ve maçları sırasında kimin güçlü olduğunu gösterecek. Daha fazla özellik yakında :)",
"ro":"Bine ai venit în @{}. Acest bot iți va arăta toate skin-urile și campionii, iți va trimite notificare când vor fi reduceri și rotații valabile, te va lăsa să vezi informații despre invocatori și meciuri, cine este slab sau puternic împotriva fiecărui campion și mult mai multe lucruri în viitor! :)",
"ru":"Добро пожаловать в @{}. Этот бот покажет Вам все скины и чемпионов, будет уведомлять вас о новых продажах и доступных изменениях, позволит увидеть информацию о призывателях и матчах, а так же узнать слабых или сильных чемпионов в сравнении с Вашим и многое другое! :)",
"ar":"مرحبا بك في @{} هذا البوت سوف يظهر لك جميع الأزياء والأبطال، سوف ننبهك في حال وجود تخفيضات اسبوعية أو أبطال مجانيين, سوف نعرض لك معلومات اللاعبين والمباريات، نعرض لك أيضا الأبطال الضعيفين والقويين ضد البطل المختار. والمزيد مستقبلا! :)"
},
"start_already_user":{
"es":"Ya estabas en nuestra base de datos :)",
"en":"You already were in our data base :)",
"it":"Già eri nel nostro data base :)",
"de":"Du befindest dich bereits in unserer Datenbank :)",
"pt":"Você já está em nossa base de dados :)",
"fr":"Tu étais déjà dans notre base de données :)",
"fa":"شما الان عضو بات هستید :)",
"pl":"Już jesteś w naszej bazie danych :)",
"tr":"Zaten veritabanımızda varsın :)",
"ro":"Ai fost deja în baza noastră de date :)",
"ru":"Вы уже существуете в нашей базе данных :)",
"ar":"أنت بالفعل موجود في قاعدة البيانات :)"
},
"start_autodetect":{
"es":"Idioma autodetectado: Español\n\nPara cambiarlo utiliza /lang ^^",
"en":"Language autodetected: English\n\nTo change it use /lang ^^",
"it":"Lingua rilevata automaticamente: Italiano\n\nPer cambiare usa /lang ^^",
"de":"Sprache automatisch erkannt: Deutsch\n\nUm es zu ändern benutze /lang ^^",
"pt":"Linguagem detectada automaticamente: Português\n\nPara mudá-la use /lang ^^",
"fr":"Langue détectée: Français\n\nPour changer, tapez /lang ^^",
"fa":"زبان خودکار شناسایی شد: Persian\n\nبرای تغییر آن از دستور روبرو استفاده کنید /lang ^^",
"pl":"Język wykryty automatycznie: Polski\n\nAby go zmienić użyj /lang ^^",
"tr":"Otomatik algılanan dil: Türkçe\n\nDeğiştirmek için /lang kullanın ^^",
"ro":"Limbă detectată automat: Român\n\nPentru a o schimba, folosește /lang ^^",
"ru":"Язык автоматически определен как: Русский\n\nДля смены используй /lang",
"ar":"اللغة الافتراضية: الإنجليزية\nلتغيرها استخدم /lang ^^"
},
"stop":{
"es":"Esto ha hecho llorar a Amumu :'(\nGracias por haber usado el bot, espero volver a verte por aquí dentro de poco :)",
"en":"This made Amumu cry :'(\nThanks for using the bot, I hope to see you soon :)",
"it":"Questo ha fatto piangere Amumu :'(\nGrazie per aver utilizzato il bot, spero di rivederti presto :)",
"de":"Das brachte Amumu zum Weinen :'(\nDanke, dass du den Bot verwendet hast, hoffentlich sehen wir uns bald wieder :)",
"pt":"Isto fez o Amumu chorar :'(\nObrigado por usar o bot, espero te ver em breve :)",
"fr":"Amumu est triste :'(\nMerci d'avoir utilisé le bot, j'espère te revoir très vite !",
"fa":"اِمومو ناراحت شد :'(\nممنونم بابت استفاده از بات،امیدوارم بزودی برگردی :)",
"pl":"Amumu się popłakał :'(\nDziękuję za użycie bota, widzimy się niebawem :)",
"tr":"Amumu gibi ağlattın:'(\nBotu kullandığın için teşekkürler, Umarım yakında görüşürüz :)",
"ro":"Asta l-a făcut pe Amumu să plângă :'(\nîți mulțumim ca ai folosit bot-ul, sper să te revăd curând :)",
"ru":"Это заставляет Амуму плакать :'(\nСпасибо за использование нашего бота, Я надеюсь мы еще увидимся :)",
"ar":"هذا جعل Amumu يبكي :'(\nشكرا لإستعمالك البوت, نرجوا أن نراك قريبا :)"
},
"stop_already_unuser":"You are already unsubscribed :'(",
"not_user":"Sorry but there were a problem locating you in the DB, please use /start to register.",
"banned":"You are banned from this bot. If you think it is an error, contact me at @Edurolp.",
"cancel_1":{
"es":"Comando cancelado :)",
"en":"Command cancelled :)",
"it":"Comando cancellato :)",
"de":"Kommando abgebrochen :)",
"pt":"Comando cancelado :)",
"fr":"Commande annulée :)",
"fa":"دستور کنسل شد :)",
"pl":"Komenda anulowana :)",
"tr":"Yorum iptal edildi :)",
"ro":"Comandă anulată :)",
"ru":"Команда отменена :)",
"ar":"تم إلغاء الأمر :)"
},
"cancel_2":{
"es":"No hay ningún comando que cancelar :)",
"en":"There are no commands to cancel :)",
"it":"Non c'è nessun comando da cancellare :)",
"de":"Es gibt kein Kommandos, die abgebrochen werden können :)",
"pt":"Não há comando a ser cancelado :)",
"fr":"Il n'y a pas de commande à annuler :)",
"fa":"هیچ دستوری برای لغو وجود ندارد :)",
"pl":"Brak komend do anulowania :)",
"tr":"İptal edecek komut göremiyorum :)",
"ro":"Nu este nicio comandă ce poate fi anulată :)",
"ru":"Нет отменяемой команды :)",
"ar":"لا يوجد أمر ليتم إلغاؤه :)"
},
"help_1":{
"es":"El bot dispone de los siguientes comandos:",
"en":"The bot has the following commands:",
"it":"Il bot dispone dei seguenti comandi:",
"de":"Der Bot verfügt über folgende Kommandos:",
"pt":"O bot possui os seguintes comandos:",
"fr":"Le bot dispose des commandes suivantes:",
"fa":"دستورات قابل استفاده در این بات: ",
"pl":"Bot posiada następujące komendy:",
"tr":"Bot şu komutlara sahip:",
"ro":"Bot-ul are următoarele comenzi:",
"ru":"Бот имеет следущие команды:",
"ar":"البوت لديه الأوامر التالية:"
},
"roles_1":{
"es":"*Filtro de campeones.*",
"en":"*Champions filter.*",
"it":"*Filtro campioni.*",
"de":"*Championfilter*",
"pt":"*Filtro de Campeões.*",
"fr":"*Filtrer les champions.*",
"fa":"*فیلتر چمپیون ها*",
"pl":"*Filtr bohaterów.*",
"tr":"*Şampiyon ayırıcı.*",
"ro":"*Filtru pentru campioni*",
"ru":"*Фильтр чемпионов.*",
"ar":"*تصنيف الأبطال*"
},
"roles_2":{
"es":{
"assassins":"Filtra los campeones por su rol de: _Asesino_",
"fighters":"Filtra los campeones por su rol de: _Luchador_",
"mages":"Filtra los campeones por su rol de: _Mago_",
"supports":"Filtra los campeones por su rol de: _Apoyo_",
"tanks":"Filtra los campeones por su rol de: _Tanque_",
"adcs":"Filtra los campeones por su rol de: _Tirador_"
},
"en":{
"assassins":"Filter the champions by the role: _Assassin_",
"fighters":"Filter the champions by the role: _Fighter_",
"mages":"Filter the champions by the role: _Mage_",
"supports":"Filter the champions by the role: _Support_",
"tanks":"Filter the champions by the role: _Tank_",
"adcs":"Filter the champions by the role: _Marksman_"
},
"it":{
"assassins":"Filtra i campioni per il ruolo di: _Assassino_",
"fighters":"Filtra i campioni per il ruolo di: _Combattente_",
"mages":"Filtra i campioni per il ruolo di: _Mago_",
"supports":"Filtra i campioni per il ruolo di: _Supporto_",
"tanks":"Filtra i campioni per il ruolo di: _Tank_",
"adcs":"Filtra i campioni per il ruolo di: _Tiratore_"
},
"de":{
"assassins":"Filtert alle Champions nach der Rolle der: _Assassinen_",
"fighters":"Filtert alle Champions nach der Rolle der: _Kämpfer_",
"mages":"Filtert alle Champions nach der Rolle der: _Magier_",
"supports":"Filtert alle Champions nach der Rolle der: _Supporter_",
"tanks":"Filtert alle Champions nach der Rolle der: _Tanks_",
"adcs":"Filtert alle Champions nach der Rolle der: _Schützen_"
},
"pt":{
"assassins":"Filtra os campeões pelo papel: _Assassino_",
"fighters":"Filtra os campeões pelo papel: _Lutador_",
"mages":"Filtra os campeões pelo papel: _Mago_",
"supports":"Filtra os campeões pelo papel: _Suporte_",
"tanks":"Filtra os campeões pelo papel: _Tanque_",
"adcs":"Filtra os campeões pelo papel: _Atirador_"
},
"fr":{
"assassins":"Filtrer les champions par rôle: _Assassin_",
"fighters":"Filtrer les champions par rôle: _Combattant_",
"mages":"Filtrer les champions par rôle: _Mage_",
"supports":"Filtrer les champions par rôle: _Support_",
"tanks":"Filtrer les champions par rôle: _Tank_",
"adcs":"Filtrer les champions par rôle: _Tireur_"
},
"fa":{
"assassins":"فیلتر چمپیون ها بر اساس: _Assassin_",
"fighters":"فیلتر چمپیون ها بر اساس: _Fighter_",
"mages":"فیلتر چمپیون ها بر اساس: _Mage_",
"supports":"فیلتر چمپیون ها بر اساس: _Support_",
"tanks":"فیلتر چمپیون ها بر اساس: _Tank_",
"adcs":"فیلتر چمپیون ها بر اساس: _Marksman_"
},
"pl":{
"assassins":"Filtruj bohaterów według roli: _Zabójca_",
"fighters":"Filtruj bohaterów według roli: _Wojownik_",
"mages":"Filtruj bohaterów według roli: _Mag_",
"supports":"Filtruj bohaterów według roli: _Wsparcie_",
"tanks":"Filtruj bohaterów według roli: _Obrońca_",
"adcs":"Filtruj bohaterów według roli: _Strzelec_"
},
"tr":{
"assassins": "Şampiyonları şu role göre sırala: _Suikastçı_",
"fighters": "Şampiyonları şu role göre sırala: _Savaşçı_",
"mages": "Şampiyonları rolüne göre sırala: _Büyücü_",
"supports": "Şampiyonları şu role göre sırala: _Destek_",
"tanks": "Şampiyonları şu role göre sırala: _Tank_",
"adcs": "Şampiyonları şu role göre sırala: _Nişancı_"
},
"ro":{
"assassins": "Filtrează campionii după rol: _Assassin_",
"fighters": "Filtrează campionii după rol: _Fighter_",
"mages": "Filtrează campionii după rol: _Mage_",
"supports": "Filtrează campionii după rol: _Support_",
"tanks": "Filtrează campionul după rol: _Tank_",
"adcs": "Filtrează campionii după rol: _Marksman_"
},
"ru":{
"assassins":"Фильтровать чемпионов по роли: _Убийца_",
"fighters":"Фильтровать чемпионов по роли: _Воин_",
"mages":"Фильтровать чемпионов по роли: _Маг_",
"supports":"Фильтровать чемпионов по роли: _Поддержка_",
"tanks":"Фильтровать чемпионов по роли: _Танк_",
"adcs":"Фильтровать чемпионов по роли: _Стрелок_"
},
"ar":{
"assassins": "تصنيف الأبطال حسب التخصص: _Assassin_",
"fighters": "تصنيف الأبطال حسب التخصص: _Fighter_",
"mages": "تصنيف الأبطال حسب التخصص: _Mage_",
"supports": "تصنيف الأبطال حسب التخصص: _Support_",
"tanks": "تصنيف الأبطال حسب التخصص: _Tank_",
"adcs": "تصنيف الأبطال حسب التخصص: _Marksman_"
}
},
"help_2":{
"es":{
"notify":"Activa/Desactiva las notificaciones.",
"credits":"Créditos del bot.",
"help":"Proporciona información sobre los comandos.",
"keyboard":"Muestra el teclado (No disponible para grupos).",
"hideboard":"Oculta el teclado (No disponible para grupos).",
"lang":"Muestra un teclado para cambiar el idioma del bot.",
"me":"Obtén información de tu invocador.",
"set_name":"Establecer tu nombre de invocador.",
"set_region":"Establecer tu region.",
"contact":"Envía un mensaje al administrador del bot.",
"cancel":"Cancela el comando actual.",
"info":"Proporciona información sobre el bot.",
"champs":"Proporciona una lista con el nombre de todos los campeones.",
"roles":"Muestra información para filtrar los campeones según sus posiciones.",
"patch":"Proporciona información sobre el último parche.",
"sale":"Proporciona los campeones y skins que están en oferta esta semana.",
"rotation":"Proporciona los campeones que están en rotación esta semana.",
"rate":"Califica el bot :)",
"summoner":"Muestra información para buscar invocadores.",
"match":"Muestra información para buscar partidas.",
"inline":"Muestra ayuda para el uso inline del bot."
},
"en":{
"notify":"Enable/Disable the notifications.",
"credits":"Bot credits.",
"help":"Shows help about the commands.",
"keyboard":"Shows the keyboard (Not available for groups).",
"hideboard":"Hides the keyboard (Not available for groups).",
"lang":"Shows a keyboard to change the bot language.",
"me":"Get info of your summoner.",
"set_name":"Set your summoner name.",
"set_region":"Set your region.",
"contact":"Send a message to the bot administrator.",
"cancel":"Cancel the current command.",
"info":"Gives information about the bot.",
"champs":"Gives a list with the name of all the champions.",
"roles":"Shows info to filter the champions by them role.",
"patch":"Gives information about the last patch.",
"sale":"Gives the champions and skins on sale.",
"rotation":"Gives the champions on rotation this week.",
"rate":"Rate the bot :)",
"summoner":"Shows info to search for summoners.",
"match":"Shows info to search matches.",
"inline":"Shows help for the inline use of the bot."
},
"it":{
"notify":"Abilita/Disabilita le notifiche.",
"credits":"Crediti del bot.",
"help":"Fornisce informazioni sui comandi.",
"keyboard":"Mostra la tastiera (Non disponibile per gruppi).",
"hideboard":"Nasconde la tastiera ( Non disponibile per gruppi).",
"lang":"Mostra una tastiera per cambiare la lingua del bot.",
"contact":"Invia un messaggio all'amministratore del bot.",
"me":"Mostra informazioni sul tuo account.",
"set_name":"Imposta il tuo nome evocatore.",
"set_region":"Imposta la tua regione.",
"cancel":"Cancella il comando attuale.",
"info":"Fornisce informazioni riguardanti il bot.",
"champs":"Fornisce una lista con il nome di tutti i campioni.",
"roles":"Mostra informazioni per filtrare i campioni per ruolo",
"patch":"Fornisce informazione circa l'ultimo patch.",
"sale":"Fornisce i campioni ed aspetti in offerta di questa settimana.",
"rotation":"Fornisce campioni che sono nella rotazione settimanale",
"summoner":"Mostra informazione per la ricerca d'evocatori.",
"match":"Mostra informazione per la ricerca di partite.",
"rate":"Qualifica il bot :)",
"inline":"Mostra informazioni per l'uso inline del bot"
},
"de":{
"notify":"Aktiviert/Deaktiviert die Benachrichtigungen.",
"credits":"Danksagungen.",
"help":"Zeigt Hilfe für Kommandos.",
"keyboard":"Zeigt die Tastatur (Nicht in Gruppen verfügbar).",
"hideboard":"Verbirgt die Tastatur (Nicht in Gruppen verfügbar).",
"lang":"Zeigt eine Tastatur, um die Sprache des Bots umzustellen.",
"me":"Zeigt Informationen über dich an",
"set_name":"Setzt deinen Summoner Namen",
"set_region":"Setzt deine Region ",
"contact":"Sendet eine Nachricht zum Administrator des Bots.",
"cancel":"Bricht den derzeitigen Befehl ab.",
"info":"Zeigt Informationen über den Bot.",
"champs":"Zeigt eine Liste mit den Namen aller Champions an.",
"roles":"Gibt Informationen, um die Champions nach ihrer Rolle zu filtern.",
"patch":"Zeigt Informationen, über den letzten Patch an.",
"sale":"Zeigt verbilligte Champions und Skins an.",
"rotation":"Zeigt die Championrotation für diese Woche an.",
"rate":"Bewerte diesen Bot :)",
"summoner":"Zeigt Informationen, um nach Beschwörern zu suchen.",
"match":"Zeigt Informationen, um nach Spielen zu suchen.",
"inline":"Zeigt Hilfe für die Inline Benutzung des Bots an."
},
"pt":{
"notify":"Habilita ou desabilita as notificações.",
"credits":"Créditos do bot.",
"help":"Ajuda sobre comandos",
"keyboard":"Mostra o teclado (não disponível em grupos).",
"hideboard":"Esconde o teclado (não disponível em grupos).",
"lang":"Mostra o teclado de mudança de idioma.",
"me":"Mostra informação do seu invocador.",
"set_name":"Configura seu nome de invocador.",
"set_region":"Configura sua região.",
"contact":"Manda mensagem para o administrador do bot.",
"cancel":"Cancela o comando atual.",
"info":"Mostra informações sobre o bot.",
"champs":"Mostra lista com nome de todos os campeões.",
"roles":"Mostra informações para filtrar campeões por papéis.",
"patch":"Mostra informações da atualização mais recente.",
"sale":"Mostra os campeões e skins que estão em promoção nesta semana.",
"rotation":"Mostra a rotação de campeões desta semana.",
"rate":"Avalie o Bot :)",
"summoner":"Mostra informações para buscar por invocadores.",
"match":"Mostra informações para buscar partidas em andamento.",
"inline":"Mostra a ajuda para o uso inline do bot."
},
"fr":{
"notify":"Active/Désactive les notifications.",
"credits":"Crédits du bot",
"help":"Affiche l'aide sur les commandes.",
"keyboard":"Affiche le clavier (Pas disponible pour les groupes).",
"hideboard":"Cache le clavier (Pas disponible pour les groupes).",
"lang":"Affiche un clavier pour changer la langue du bot.",
"me":"Informations à propos de votre invocateur.",
"set_name":"Modifier le nom d'invocateur.",
"set_region":"Modifier la région.",
"contact":"Envoie un message à l'administrateur du bot.",
"cancel":"Annule la commande en cours.",
"info":"Fournit des informations sur le bot",
"champs":"Fournit une liste contenant le nom de tous les champions.",
"roles":"Affiche des infos pour filtrer les champions par leur rôle.",
"patch":"Fournit les informations concernant le dernier patch.",
"sale":"Indique les champions et skins en vente.",
"rotation":"Indique les champions en rotation cette semaine.",
"rate":"Noter le bot :)",
"summoner":"Affiche les infos pour rechercher un invocateur.",
"match":"Affiche les infos pour rechercher une partie.",
"inline":"Montre l'aide pour l'utilisation en ligne du bot."
},
"fa":{
"notify":"روشن و خاموش کردن دریافت پیام ها",
"credits":"سازندگان بات",
"help":"نمایش راهنما درباره دستورات",
"keyboard":"فعال کردن کیبورد (در گروه ها فعال نیست)",
"hideboard":"غیرفعال کردن کیبورد (در گروه ها فعال نیست)",
"lang":"نمایش یک کیبورد برای تغییر زبان",
"me":"ارسال اطلاعات شما",
"set_name":"ثبت نام شما در بازی",
"set_region":"ثبت منطقه شما",
"contact":"فرستادن یک پیام برای سازنده بات",
"cancel":"لغو دستور فعال",
"info":"دریافت اطلاعات بات",
"champs":"دریافت یک لیست از تمام چمپیون ها",
"roles":"نمایش لیست چمپیون ها بر اساس فیلتر",
"patch":"دریافت اطلاعات درباره آخرین پَچ بازی",
"sale":"دریافت اطلاعات جدیدترین تخفیف ها و فروش چمپیون ها",
"rotation":"دریافت اطلاعات چمپیون های رایگان در این هفته",
"rate":"امتیاز دادن به بات :)",
"summoner":"جستجو اطلاعات یک بازیکن",
"match":"جستجو اطلاعات بازی یی که بازیکن در حال بازی است",
"inline":"نمایش راهنما برای استفاده از بات inline."
},
"pl":{
"notify":"Aktywuj/Dezaktywuj notyfikacje.",
"credits":"Credits'y bota.",
"help":"Pokaż pomoc na temat komend.",
"keyboard":"Pokazuje klawiaturę (niedostępne dla grup).",
"hideboard":"Ukrywa klawiaturę (niedostępne dla grup).",
"lang":"Pokazuje klawiaturę do zmiany języka.",
"me":"Pokazuje informacje o sobie.",
"set_name":"Ustaw imię przywoływacza.",
"set_region":"Ustaw swój region.",
"contact":"Wysyła wiadomość do twórcy bota.",
"cancel":"Anuluj aktywną komendę.",
"info":"Pokazuje informacje o bocie",
"champs":"Pokazuje listę z imionami wszystkich bohaterów.",
"roles":"Pokazuje informację do filtrowania bohaterów według ról.",
"patch":"Pokazuje informację o najnowszym patch'u.",
"sale":"Pokazuje bohaterów i skiny na wyprzedaży.",
"rotation":"Pokazuje bohaterów w aktualnej rotacji",
"rate":"Oceń bota :)",
"summoner":"Pokazuje informacje do wyszukiwania przywoływaczy.",
"match":"Pokazuje informacje do wyszukiwania meczy.",
"inline":"Pokazuje pomoc o komendach inline dla bota."
},
"tr":{
"notify": "Bildirimleri etkinleştirin/devre dışı bırakın.",
"credits": "Bot hakkında.",
"help": "Komutlar hakkında yardım sağlar.",
"keyboard": "Klavyeyi gösterir (Gruplar için uygun değil)",
"hideboard": "Klavyeyi gizler (Gruplar için uygun değil)",
"lang": "Bot dilini değiştirmek için klavyeyi gösterir.",
"me": "Sihirdarın hakkında bilgi ver.",
"set_name": "Sihirdar adını ayarla.",
"set_region": "Bölgeni ayarla.",
"contact": "Botu geliştiren kişiye mesaj gönder.",
"cancel": "Şu anki komutu iptal et.",
"info": "Bot hakkında bilgi verir.",
"champs": "Bütün şampiyonların isminin olduğu listeyi verir.",
"roles": "Rolüne göre şampiyonları gösterir.",
"patch": "Son güncelleme hakkında bilgi verir.",
"sale": "Satıştaki şampiyon ve kostümler hakkında bilgi verir.",
"rotation": "Haftanin rotasyonundaki şampiyonlar hakkında bilgi verir.",
"rate": "Botu değerlendir :)",
"summoner": "Aranılan sihirdar hakkında bilgi verir.",
"match": "Aranılan maç hakkında bilgi verir.",
"inline": "Botun satır içi kullanımı için yardım gösterir."
},
"ro":{
"notify": "Activează/Dezactivează notificările.",
"credits": "Contribuitori bot.",
"help": "Arată ajutor despre comenzi.",
"keyboard": "îți arată tastatura (Nu este valabil pentru grupuri).",
"hideboard": "Ascunde tastatura (Nu este valabil pentru grupuri).",
"lang": "Îți arată o tastatură pentru a schimba limba bot-ului",
"me": "Primește informații despre invocator.",
"set_name": "Alege-ți numele invocatorului",
"set_region": "Alege-ți regiunea.",
"contact": "Trimite un mesaj către administratorul bot-ului.",
"cancel": "Anulează comanda curentă.",
"info": "Primește informații despre bot.",
"champs": "Îți dă o listă cu numele tuturor campionilor.",
"roles": "Îți arată informații despre filtrarea campionilor după rol.",
"patch": "Îți dă informații despre ultimul patch.",
"sale": "Îți dă campionii și skin-urile la reducere.",
"rotation": "Îți dă campionii din rotația acestei săptămâni.",
"rate": "Evaluează bot-ul :)",
"summoner": "Îți arată informații pentru a căuta invocatori",
"match": "Îți arată informații despre meciuri",
"inline": "Arată ajutor pentru folosirea bot-ului"
},
"ru":{
"notify":"Включить/Выключить уведомления.",
"credits":"Авторы бота.",
"help":"Отобразить помощь по всем командам.",
"keyboard":"Отобразить клавиатуру (Не доступно для групп).",
"hideboard":"Скрыть клавиатуру (Не доступно для групп).",
"lang":"Отобразить клавиатуру для смены языка боту.",
"me":"Получить информацию о твоём призывателе.",
"set_name":"Установить имя призывателя.",
"set_region":"Установить регион.",
"contact":"Послать соощбение администратору бота.",
"cancel":"Отменить текущую команду.",
"info":"Показывает информацию о боте.",
"champs":"Показывает список с именами всех чемпионов.",
"roles":"Показывает данные для фильтрации чемпионов по роли.",
"patch":"Выводит информацию о последнем патче.",
"sale":"Выводит чемпионов и скины которые в продаже.",
"rotation":"Выводит бесплатных чемпионов недели.",
"rate":"Оценить бота :)",
"summoner":"Показывает данные для поиска призывателей.",
"match":"Показать данные для поиска матча.",
"inline":"Показать помощь для использования инлайн возможности у бота."
},
"ar":{
"notify": "تمكين/تعطيل التنبيهات.",
"credits": "شكر وتقدير",
"help": "إظهار المساعدة بخصوص الأوامر.",
"keyboard": "أظهار لوحة المفاتيح (لا يعمل للمجموعات)",
"hideboard": "إخفاء لوحة المفاتيح (لا يعمل للمجموعات)",
"lang": "إظهار لوحة المفاتيح لتغيير لغة البوت.",
"me": "إحصل على معلومات عن شخصيتك.",
"set_name": "أدخل اسم شخصيتك.",
"set_region": "أدخل منطقتك",
"contact": "أرسل رسالة لمدير البوت",
"cancel": "إلغاء الأمر الحالي.",
"info": "عرض معلومات عن البوت.",
"champs": "إظهار قائمة بأسامي جميع الأبطال.",
"roles": "إظهار معلومات لتصنيف الأبطال بتخصصاتهم.",
"patch": "إظهار معلومات لآخر باتش.",
"sale": "إظهار الأبطال والـSkins المخفضين.",
"rotation": "إظهار الأبطال المجانيين لهذا الأسبوع.",
"rate": "قيم البوت :)",
"summoner": "إظهار معلومات للبحث عن اللاعبين.",
"match": "إظهار معلومات للبحث عن المباريات.",
"inline": "تظهر المساعدة لإستخدامالبوت في النسق"
}
},
"keyboard_1":{
"es":"Teclado activado.",
"en":"Keyboard enabled.",
"it":"Tastiera attivata.",
"de":"Tastatur aktiviert.",
"pt":"Teclado ativado.",
"fr":"Clavier activé.",
"fa":"کیبورد فعال شد",
"pl":"Klawiatura uaktywniona.",
"tr":"Klavye etkinleştirildi.",
"ro":"Tastatură pornită.",
"ru":"Клавиатура включена.",
"ar":"تم تمكين لوحة المفاتيح."
},
"keyboard_2":{
"es":"Teclado solo disponible para conversaciones privadas.",
"en":"The keyboard is only available for personal chats.",
"it":"La tastiera è disponibile soltanto per chat private.",
"de":"Die Tastatur ist nur für private Chats verfügbar.",
"pt":"O teclado só está disponível em conversas privadas.",
"fr":"Le clavier est uniquement disponible pour les conversations privées.",
"fa":"کیبورد فقط توی پیوی قابل استفاده است",
"pl":"Klawiatura jest dostępna tylko dla prywatnych rozmów.",
"tr":"Klavye sadece kişisel sohbetler için uygun.",
"ro":"Tastatura este valabilă doar pentru conversațiile personale.",
"ru":"Клавиатура доступна только для персональных чатов.",
"ar":"لوحة المفاتيح مفعلة فقط في المحادثات الشخصية."
},
"hideboard_1":{
"es":"Teclado desactivado.",
"en":"Keyboard disabled",
"it":"Tastiera disattivata.",
"de":"Tastatur deaktiviert.",
"pt":"Teclado desativado.",
"fr":"Clavier désactivé.",
"fa":"کیبورد غیرفعال شد",
"pl":"Klawiatura dezaktywowana.",
"tr":"Klavye devre dışı bırakıldı.",
"ro":"Tastatura dezactivată.",
"ru":"Клавиатура отключена.",
"ar":"تم تعطيل لوحة المفاتيح"
},
"hideboard_2":{
"es":"Teclado solo disponible para conversaciones privadas.",
"en":"The keyboard is only available for personal chats.",
"it":"La tastiera è disponibile soltanto per chat private.",
"de":"Die Tastatur ist nur für private Chats verfügbar.",
"pt":"O teclado só está disponível em conversas privadas.",
"fr":"Le clavier est uniquement disponible pour les conversations privées.",
"fa":"کیبورد فقط توی پیوی قابل استفاده است",
"pl":"Klawiatura jest dostępna tylko dla prywatnych rozmów.",
"tr":"Klavye sadece kişisel sohbet için uygun.",
"ro":"Tastatura este valabilă doar pentru conversațiile personale.",
"ru":"Клавиатура доступна только в персональных чатах.",
"ar":"لوحة المفاتيح مفعلة فقط في المحادثات الشخصية."
},
"contact_1":{
"es":"Escribe el mensaje que quieras enviarme.",
"en":"Write the message you want to send me.",
"it":"Scrivi il messaggio che vuoi inviarmi.",
"de":"Schreibe die Nachricht, die du mir schicken willst.",
"pt":"Escreva a mensagem que deseja me enviar.",
"fr":"Ecris le message que tu souhaites envoyer.",
"fa":"پیامی که میخوای واسم بفرستی رو تایپ کن",
"pl":"Napisz wiadomość którą chcesz mi wysłać.",
"tr":"Bana göndermek istediğin mesajı yaz.",
"ro":"Scrie mesajul pe care vrei să mi-l trimiți.",
"ru":"Написать сообщение, которое Вы хотите отправить мне.",
"ar":"أدخل الرسالة التي ترغب بإرسالها لي."
},
"contact_2":{
"es":"El mensaje ha sido enviado con éxito.",
"en":"The message has been sent correctly.",
"it":"Il messaggio è stato inviato correttamente.",
"de":"Die Nachricht wurde erfolgreich übermittelt.",
"pt":"A mensagem foi enviada com sucesso.",
"fr":"Le message a bien été envoyé.",
"fa":"پیام ارسال شد",
"pl":"Wiadomość została wysłana poprawnie.",
"tr":"Mesajın düzgünce gönderildi.",
"ro":"Mesajul a fost trimis corect.",
"ru":"Это сообщение отправлено верно.",
"ar":"تم إرسال الرسالة بنجاح."
},
"info":{
"es":"@{} es un bot de Telegram que dispone de todos los splasharts de los campeones junto con sus aspectos.\nTodas las imágenes pertenencen a 'Riot Games, Inc'.\nEl autor del bot y 'Riot Games, Inc' NO están relacionados.\nEl autor de este Bot es @Edurolp\nSi quieres apoyar el proyecto, puedes contribuir dejando una donación https://www.paypal.me/edurolp",
"en":"@{} is a Telegram bot that has every champion splashart and skin.\n\nAll the images belong to 'Riot Games, Inc'.\nThe author of the bot and 'Riot Games, Inc' are not related.\nThe author of the bot is @Edurolp\nIf you want to support the project, you can help me with a donation https://www.paypal.me/edurolp",
"it":"@{} è un bot Telegram che dispone di tutti gli splasharts dei campioni insieme ai suoi aspetti. \nTutte le immagini appartengono a 'Riot Games, Inc'.\nL'autore del bot e 'Riot Games, Inc' NON sono relazionati.\nL'autore di questo bot è @Edurolp\nSe vuoi sostenere il progetto, puoi contribuire lasciando una donazione https://www.paypal.me/edurolp",
"de":"@{} ist ein Bot auf Telegram, der über jedes Champion-Splashart und jeden Skin verfügt.\n\nAlle diese Bilder gehören 'Riot Games, Inc'.\nDer Autor des Bots und 'Riot Games Inc' gehören nicht zusammen.\nDer Autor des Bots ist @Edurolp\nWenn du das Projekt unterstützen möchtest, kannst du mir mittels einer Spende helfen https://www.paypal.me/edurolp",
"pt":"@{} é um bot do Telegram que tem todas as artes e skins dos campeões.\n\nTodas as imagens pertencem a 'Riot Games, Inc'.\nO autor do bot não tem relações com a 'Riot Games, Inc'.\nO autor do bot é @Edurolp\nSe quiser ajudar o projeto, pode contribuir com uma doação https://www.paypal.me/edurolp",
"fr":"@{} est un bot Telegram qui contient tous les splasharts et skins de champions.\n\nToutes les images appartiennent à 'Riot Games, Inc'.\nL'auteur du bot et 'Riot Games, Inc' ne sont pas liés.\nL'auteur du bot est @Edurolp\nSi tu veux supporter le projet, tu peux m'aider avec une donation https://www.paypal.me/edurolp",
"fa":"@{} is یک بات تلگرامی است که توش همه اسکین ها و چمپیون ها هست.\n\nتمام تصاویر مطعلق هست به 'Riot Games, Inc'.\nنویسنده این بات هیچ ارتباطی با 'Riot Games, Inc' ندارد.\nسازنده بات: @Edurolp\nاما اگر میخواهید از این پروژه حمایت کنید میتوانید از طریق لینک زیر این کار را انجام دهید https://www.paypal.me/edurolp",
"pl":"@{} jest botem do Telegram który posiada splashart każdego bohatera jak i skiny.\n\nWszystkie poniższe grafiki należą do 'Riot Games, Inc'.\nAutor bota i 'Riot Games, Inc' nie są ze sobą powiązani.\nAutorem bota jest @Edurolp\nJeśli chcesz wesprzeć projekt, możesz mnie wspomóc dotacją https://www.paypal.me/edurolp",
"tr":"@{} Bütün şampiyonların görsellerini ve kostümlerini içinde bulunduran bir Telegram botudur.\n\nBütün görseller 'Riot Games, Inc'e aittir.\nBotun paylaşımcısı ve 'Riot Games, Inc' ilişkili değiller.\nBotu geliştiren kişi @Edurolp\nProjeye destek olmak istiyorsan bana yardımda bulunabilirsin. https://www.paypal.me/edurolp",
"ro":"@{} este un bot Telegram ce are toate splashart-urile si skin-urile campionilor\n\nToate imaginile aparțin 'Riot Games, Inc'.\nAutorul bot-ului și 'Riot Games, Inc' nu sunt legate.\nAutorul bot-ului este @Edurolp\nDacă vrei să susții ptoiectul, mă poți ajuta cu o donație https://www.paypal.me/edurolp",
"ru":"@{} это Telegram бот, который имеет информацию о чемпионах, скинах и статистике.\n\nВсе изображения принадлежат 'Riot Games, Inc'.\nАвтор бота и 'Riot Games Inc' никак не связаны.\nАвтор бота @Edurolp\nЕсли Вы хотите поддержать проект, Вы можете оказать мне материальную поддержку https://www.paypal.me/edurolp",
"ar":"@{} هو بوت للتيليغرام, والذي يحتوي على جميع صور الأبطال والـSkins.\n\nكل الصور تنتمي لـ 'Riot Games, Inc'\nمؤلف البوت و 'Riot Games, Inc' ليسا مرتبطين\nمؤلف البوت هو @Edurolp\nإذا كنت تريد دعم هذا المشروع, يمكنك أن تساعدني بتبرعك من خلال باي بال\nhttps://www.paypal.me/edurolp"
},
"champs":{
"es":"Los campeones que hay hasta el momento son: ",
"en":"The champions are: ",
"it":"I campioni disponibili sono: ",
"de":"Die Champions sind: ",
"pt":"Os campeões são:",
"fr":"Les champions disponibles sont: ",
"fa":"چمپیون ها: ",
"pl":"Bohaterami są: ",
"tr":"Şampiyonlar:",
"ro":"Campionii sunt: ",
"ru":"Чемпионы: ",
"ar":"الأبطال هم: "
},
"sale":{
"es":"Las ofertas de esta semana son:",
"en":"The sale for this week are:",
"it":"Le offerte di questa settimana sono:",
"de":"Die Angebote für diese Woche sind:",
"pt":"As ofertas da semana são:",
"fr":"Les offres de la semaine sont:",
"fa":"تخفیف ها و فروش های هفته: ",
"pl":"Wyprzedażą tego tygodnia jest:",
"tr":"Bu haftanın satışları:",
"ro":"Reducerile pentru aceasta săptămână sunt:",
"ru":"В продаже на этой неделе:",
"ar":"التخفيضات لهذا الأسبوع هي:"
},
"rotation":{
"es":"La rotación de esta semana es:",
"en":"The rotation for this week is:",
"it":"La rotazione di questa settimana è:",
"de":"Die Championrotation für diese Woche ist:",
"pt":"A rotação desta semana é:",
"fr":"La rotation de cette semaine est:",
"fa":"چمپیون های رایگان این هفته: ",
"pl":"Rotacją na ten tydzień jest:",
"tr":"Haftanın Rotasyonu:",
"ro":"Rotația acestei săptămâni este:",
"ru":"Доступные герои на этой неделе:",
"ar":"الأبطال المجانيين لهذا الأسبوع هم:"
},
"assassins":{
"es":"Campeones filtrados por: Asesino\n",
"en":"Champions filtered by: Assassin\n",
"it":"Campioni filtrati per: Assassino\n",
"de":"Champions gefiltert nach: Assassinen\n",
"pt":"Campeões filtrados por: Assassino\n",
"fr":"Champions filtrés par: Assassin\n",
"fa":"چمپیون های فیلتر شده بر اساس: Assassin\n",
"pl":"Bohaterowie filtrowani według: Zabójca\n",
"tr":"Şampiyonlar şuna göre sıralandı: Suikastçı\n",
"ro":"Campionii au fost filtrați după: Assasin\n",
"ru":"Фильтрация чемпионов по: Убийца\n",
"ar":"تصنيف الأبطال حسب: Assassin\n"
},
"fighters":{
"es":"Campeones filtrados por: Luchador\n",
"en":"Champions filtered by: Fighter\n",
"it":"Campioni filtrati per: Combattente\n",
"de":"Champions gefiltert nach: Kämpfern\n",
"pt":"Campeões filtrados por: Lutadores\n",
"fr":"Champions filtrés par: Combattant\n",
"fa":"چمپیون های فیلتر شده بر اساس: Fighter\n",
"pl":"Bohaterowie filtrowani według: Wojownik\n",
"tr":"Şampiyonlar şuna göre sıralandı: Savaşçı\n",
"ro":"Campionii au fost filtrați dupa: Fighter\n",
"ru":"Фильтрация чемпионов по: Воин\n",
"ar":"تصنيف الأبطال حسب: Fighter\n"
},
"mages":{
"es":"Campeones filtrados por: Mago\n",
"en":"Champions filtered by: Mage\n",
"it":"Campioni filtrati per: Mago\n",
"de":"Champions gefiltert nach: Magiern\n",
"pt":"Campeões filtrados por: Mago\n",
"fr":"Champions filtrés par: Mage\n",
"fa":"چمپیون های فیلتر شده بر اساس: Mage\n",
"pl":"Bohaterowie filtrowani według: Mag\n",
"tr":"Şampiyonlar şuna göre sıralandı: Büyücü\n",
"ro":"Campionii filtrați după: Mage\n",
"ru":"Фильтрация чемпионов по: Маг\n",
"ar":"تصنيف الأبطال حسب: Mage\n"
},
"supports":{
"es":"Campeones filtrados por: Apoyo\n",
"en":"Champions filtered by: Support\n",
"it":"Campioni filtrati per: Supporto\n",
"de":"Champions gefiltert nach: Suppotern\n",
"pt":"Campeões filtrados por: Suporte\n",
"fr":"Champions filtrés par: Support\n",
"fa":"چمپیون های فیلتر شده بر اساس: Support\n",
"pl":"Bohaterowie filtrowani według: Wsparcie\n",
"tr":"Şampiyonlar şuna göre sıralandı: Destek\n",
"ro":"Campionii au fost filtrați după: Support\n",
"ru":"Фильтрация чемпионов по: Поддержка\n",
"ar":"تصنيف الأبطال حسب: Support\n"
},
"tanks":{
"es":"Campeones filtrados por: Tanque\n",
"en":"Champions filtered by: Tank\n",
"it":"Campioni filtrati per: Tank\n",
"de":"Champions gefiltert nach: Tanks\n",
"pt":"Campeões filtrados por: Tanque\n",
"fr":"Champions filtrés par: Tank\n",
"fa":"چمپیون های فیلتر شده بر اساس: Tank\n",
"pl":"Bohaterowie filtrowani według: Obrońca\n",
"tr":"Şampiyonlar şuna göre sıralandı: Tank\n",
"ro":"Campionii au fost filtrați după: Tank\n",
"ru":"Фильтрация чемпионов по: Танк\n",
"ar":"تصنيف الأبطال حسب: Tank\n"
},
"adcs":{
"es":"Campeones filtrados por: Tirador\n",
"en":"Champions filtered by: Marksman\n",
"it":"Campioni filtrati per: Tiratore\n",
"de":"Champions gefiltert nach: Schützen\n",
"pt":"Campeões filtrados por: Atirador\n",
"fr":"Champions filtrés par: Tireur\n",
"fa":"چمپیون های فیلتر شده بر اساس: Marksman\n",
"pl":"Bohaterowie filtrowani według: Strzelec\n",
"tr":"Şampiyonlar şuna göre sıralandı: Nişancı\n",
"ro":"Campionii au fost filtrați după: Marksman\n",
"ru":"Фильтрация чемпионов по: Стрелок\n",
"ar":"تصنيف الأبطال حسب: Marksman\n"
},
"rate":{
"es":"Hola, puedes ayudar al bot enormemente califcándolo con ⭐️⭐️⭐️⭐️⭐️ en el siguiente enlace:\n%s\n\nMuchas gracias! ^^",
"en":"Hi, you can help the bot a lot rating it with ⭐️⭐️⭐️⭐️⭐️ in the following link:\n%s\n\nThanks a lot! ^^",
"it":"Salve, puoi aiutare enormemente il bot votandolo con ⭐️⭐️⭐️⭐️⭐️ nel seguente link:\n%s\n\nGrazie mille! ^^",
"de":"Hallo, du kannst dem Bot eine große Hilfe sein, indem du ihn mit ⭐️⭐️⭐️⭐️⭐️ unter dem folgenden Link bewertest:\n%s\n\nVielen Dank! ^^",
"pt":"Olá, você pode ajudar o bot avaliando com ⭐️⭐️⭐️⭐️⭐️ no seguinte link\n%s\n\nMuito Obrigado! ^^ ",
"fr":"Salut, tu peux aider énormément le bot en le notant avec ⭐️⭐️⭐️⭐️⭐️ via le lien suivant:\n%s\n\nMerci beaucoup ! ^^",
"fa":"سلام, شما میتونید برای کمک به بات از طریق لینک پایین ⭐️⭐️⭐️⭐️⭐️ بدید:\n%s\n\nخیلی ممنونیم! ^^",
"pl":"Witaj, możesz wspomóc bota oceniając go ⭐️⭐️⭐️⭐️⭐️ pod następującym linkiem:\n%s\n\nBardzo dziękuję! ^^",
"tr":"Selam, bota yardım etmek için değerlendirebilirsin.⭐️⭐️⭐️⭐️⭐️ bu linki takip et:\n%s\n\nÇok teşekkürler! ^^",
"ro":"Bună, ai putea ajuta bot-ul foarte mult, prin a-l evalua cu ⭐️⭐️⭐️⭐️⭐️ în următorul link:\n%s\n\nÎți mulțumesc mult! ^^",
"ru":"Привет, Вы можете помочь боту, дав ему рейтинг ⭐️⭐️⭐️⭐️⭐️ по соотвествующей ссылке:\n%s\n\nБольшое спасибо ^^",
"ar":"مرحبا, يمكنك أن تساعد البوت كثيرا عبر تقييمه بـ⭐️⭐️⭐️⭐️⭐️ في الرابط التالي:\n%s\n\nشكرا جزيلا! ^^"
},
"summoner_1":{
"es":"El bot dispone de una serie de comandos para obtener información sobre invocadores de los distitos servidores. Los comandos son:",
"en":"The bot has some commands for obtaining information about summoners in the different servers. The commands are:",
"it":"Il bot dispone di una serie di comandi per ottenere informazione riguardo evocatori dei vari servers. I comandi sono:",
"de":"Der Bot verfügt über einige Befehle, um Informationen über Beschwörer auf verschiedenen Servern zu erhalten. Die Befehle lauten:",
"pt":"O bot dispõe de uma série de comandos para obter informação sobre invocadores de diversos servidores. Os comandos são:",
"fr":"Le bot dispose de plusieurs commandes pour obtenir des informations à propos des invocateurs sur les différents serveurs. Les commandes sont:",
"fa":"این بات تعدادی دستورات دارد برای جستجو اطلاعات درباره بازیکنان سرور های مختلف. دستورات این ها هستند: ",
"pl":"Bot posiada komendy do uzyskania informacji na temat przywoływaczy na różnych serwerach. Komendy te to: ",
"tr":"Bot farklı sunuculardaki sihirdarlar hakkında komutlara sahiptir. Komutlar şöyle: ",
"ro":"Bot-ul are niște comenzi pentru a obține informații despre invocatori din diferite servere. Comenzile sunt: ",
"ru":"Бот имеет команды для получения некоторой информации о призывателях на различных серверах. Это команды: ",
"ar":"البوت لديه بعض الأوامر للحصول على معلومات اللاعبين في مختلف السيرفرات. الأوامر هي: "
},
"summoner_2":{
"es":"Recuerda cambiar '`test`' por el nombre de invocador que estés buscando.",
"en":"Remember to change '`test`' for the name of the summoner you are searching.",
"it":"Ricorda di cambiare '`test`' con il nome dell'evocatore che stai cercando.",
"de":"Vergiss nicht, '`test`' durch den den Beschwörer, den du suchst, zu ersetzen.",
"pt":"Lembre de trocar '`test`' pelo nome do invocador que você está procurando.",
"fr":"Rappelle toi de remplacer '`test`' par le nom de l'invocateur que tu recherches.",
"fa":"فراموش نکنید که تغییر دهید '`test`' را به اسم کسی که میخواهید جستجو کنید.",
"pl":"Pamiętaj aby zmienić '`test`' na imię przywoływacza którego szukasz.",
"tr":"Aramak için '`test`' sihirdar adını değiştirmeyi unutma.",
"ro":"Ține minte să schimbi 'test' din numele invocatorului pe care îl cauți.",
"ru":"Не забудьте сменить '`test`' для призывателя, которого вы ищите.",
"ar":"تذكر أن تغير '`test`' إلى اسم اللاعب الذي تبحث عنه."
},
"summoner_3":{
"es":" test - Información del invocador '`test`' en ",
"en":" test - Information of the summoner '`test`' at ",
"it":" test - Informazioni dell'evocatore '`test`' in ",
"de":" test - Informationen über den Beschwörer '`test`' auf ",
"pt":" test - Informações do invocador '`test`' em ",
"fr":" test - Informations sur l'invocateur '`test`' à ",
"fa":" test - اطلاعات درباره بازیکن '`test`' در",
"pl":" test - Informacje przywoływacza '`test`' pod ",
"tr":" test - sihirdar hakkında bilgi '`test`' ",
"ro":" test - informație despre invocatorul `'test'` la",
"ru":" test - Информация о призывателе '`test`' на ",
"ar":" test - معلومات اللاعب '`test`' عند "
},
"match_1":{
"es":"El bot dispone de una serie de comandos para obtener información partidas en los distintos servidores. Los comandos son:",
"en":"The bot has some commands for obtaining information about matches in the different servers. The commands are:",
"it":"Il bot dispone di una serie di comandi per ottenere informazione riguardo partite dei vari servers. I comandi sono:",
"de":"Der Bot verfügt über einige Befehle, um Informationen über Spiele auf verschiedenen Servern zu erhalten. Die Befehle lauten:",
"pt":"O bot dispõe de uma série de comandos para obter informações das partidas nos diversos servidores. Os comandos são:",
"fr":"Le bot dispose de plusieurs commandes pour obtenir des informations sur les parties dans les differents serveurs. Les commandes sont:",
"fa":"این بات تعدادی دستورات دارد برای جستجو اطلاعات درباره بازی های سرور های مختلف. دستورات این ها هستند: ",
"pl":"Bot posiada komendy do uzyskania informacji na temat meczów na różnych serwerach. Komendy te to: ",
"tr":"Bot farklı sunuculardaki maçlar için komutlara sahiptir. Komutlar şöyle: ",
"ro":"Bot-ul are niște comenzi pentru a obținr informații despre meciuri din diferitr servere. Comenzile sunt: ",
"ru":"Бот имеет некоторые команды для информации о матчах на разных серверах. Это команды: ",
"ar":"البوت لديه بعض الأوامر للحصول على معلومات حول المباريات في خوادم مختلفة. الأوامر هي:"
},
"match_2":{
"es":"Recuerda cambiar '`test`' por el nombre de invocador que estés buscando.",
"en":"Remember to change '`test`' for the name of the summoner you are searching.",
"it":"Ricorda di cambiare '`test`' con il nome dell'evocatore che stai cercando.",
"de":"Vergiss nicht, '`test`' durch den den Beschwörer, den du suchst, zu ersetzen",
"pt":"Lembre de trocar '`test`' pelo nome do invocador que você está procurando.",
"fr":"Rappelle toi de remplacer '`test`' par le nom de l'invocateur que tu recherches.",
"fa":"فراموش نکنید که تغییر دهید '`test`' را به اسم کسی که میخواهید جستجو کنید.",
"pl":"Pamiętaj aby zmienić '`test`' na imię przywoływacza którego szukasz.",
"tr":"Aramak için '`test`' sihirdar adını değiştirmeyi unutma.",
"ro":"Ține minte să schimbi `'test'` din numele invocatorului pe care îl cauți.",
"ru":"Не забудьте сменить '`test`' для призывателя, которого вы ищите.",
"ar":"تذكر لتغير '`test`' لإسم اللاعب الذي تبحث عنه."
},
"match_3":{
"es":" test - Información sobre la partida actual del invocador '`test`' en ",
"en":" test - Information about the current match of the summoner '`test`' at ",
"it":" test - Informazioni sulla corrente partita dell'evocatore '`test`' in ",
"de":" test - Informationen über das aktuelle Spiel des Beschwörers '`test`' auf ",
"pt":" test - Informação sobre a partida atual do invocador '`test`' em ",
"fr":" test - Informations sur la partie en cours de l'invocateur '`test`' à ",
"fa":" test - اطلاعات درباره بازی یی که بازیکن در حال بازی است '`test`' در",
"pl":" test - Informacje na temat aktualnego meczu przywoływacza '`test`' pod ",
"tr":" test - Sihirdarın şuanki maçı hakkında bilgi '`test`' ",
"ro":" test - Informații despre meciul curent al invocatorului `'test'` ",
"ru":" test - Информация о текущем матче призывателя '`test`' на ",
"ar":" test - معلومات عن المباراة الحالية للاعب '`test`' عند "
},
"all": "Escribe el mensaje a difundir o usa /cancel para cancelar el comando.",
"msg":[
{
"success": "Escribe el ID al que enviar el mensaje."
},
{
"success": "Escribe el mensaje a enviar a %s",
"failure": "Error, el ID tiene que ser un entero."
},
{
"success": "Éxito enviando el mensaje a %s",
"failure": "Error enviando el mensaje a %s"
}
],
"ban":{
"success":"El usuario con ID %s ha sido baneado.",
"failure":[
"Error. Debes introducir el ID del usuario a banear.",
"Error. El usuario con ID %s ya se encuentra baneado.",
"Error. El usuario con ID %s no está en la base de datos."
]
},
"unban":{
"success":"El usuario con ID %s ha sido desbaneado.",
"failure":[
"Error. Debes introducir el ID del usuario a banear.",
"Error. El usuario con ID %s no está baneado.",
"Error. El usuario con ID %s no está en la base de datos."
]
},
"lang_new":{
"es": "Selecciona un idioma.",
"en": "Select a language.",
"it":"Seleziona una lingua.",
"de":"Wähle eine Sprache.",
"pt":"Selecione um idioma.",
"fr":"Sélectionne une langue.",
"fa":"زبان را انتخاب کنید",
"pl":"Wybierz język.",
"tr":"Dil seç.",
"ro":"Alege o limbă.",
"ru":"Выберите язык.",
"ar": "اختر لغة"
},
"lang_1":{
"es": "Selecciona un idioma o escribe /cancel para cancelar el comando.",
"en": "Select a language or type /cancel to cancel the command.",
"it":"Seleziona una lingua o scrivi /cancel per cancellare il comando.",
"de":"Wähle eine Sprache aus oder schreibe /cancel um den Vorgang abzubrechen.",
"pt":"Selecione um idioma ou digite /cancel para cancelar o comando.",
"fr":"Sélectionne une langue ou écris /cancel pour annuler la commande.",
"fa":"زبان را انتخاب کنید یا برای لغو از دستور روبرو استفاده کنید: /cancel",
"pl":"Wybierz język lub wpisz /cancel aby anulować komendę.",
"tr":"Dil seç yada /cancel yazarak komutu iptal et.",
"ro":"Alege o limbă sau scrie /cancel pentru a anula comanda.",
"ru":"Выберите язык или введите /cancel для отмены.",
"ar": "اختر لغة أو أكتب /cancel لإلغاء الأمر"
},
"lang_2":{
"es": "El idioma ha sido actualizado al Español.",
"en": "The language has been updated to English",
"it":"La lingua è stata cambiata in Italiano",
"de":"Die Sprache wurde auf Deutsch gewechselt",
"pt":"O Idioma foi alterado para Português",
"fr":"La langue a été modifée en Français.",
"fa":"زبان بات به فارسی تغییر کرد",
"pl":"Język został ustawiony na Polski",
"tr":"Türkçe diline güncellendi.",
"ro":"Limba a fost actualizată în Română",
"ru":"Язык был обновлен на Русский.",
"ar":"تم تحديث اللغة إلى العربية"
},
"lang_error":{
"es": "Lo siento pero el idioma _%s_ no está disponible aún. Porfavor selecciona un idioma del teclado.\n\nSi quieres colaborar para traducir el bot al _%s_ contáctame a @Edurolp",
"en": "I'm sorry but the language _%s_ is not supported yet. Please select a language from the keyboard.\n\nIf you want to colaborete for translating the bot to _%s_ contact me at @Edurolp",
"it":"Mi dispiace ma la lingua _%s_ non è ancora disponibile. Per piacere seleziona un idioma dalla tastiera.\n\nSe vuoi collaborare a tradurre il bot in _%s_ contattami a @Edurolp",
"de":"Tut mir leid, aber die Sprache _%s_ wird noch nicht unterstützt. Bitte wähle eine Sprache von der Tastatur.\n\nWenn du mithelfen willst, den Bot auf _%s_ zu übersetzen, kontaktiere mich unter meinem Benutzernamen @Edurolp",
"pt":"Desculpe, mas o idima _%s_ não está disponível ainda. Por favor selecione um idioma no teclado.\n\nSe quiser colaborar para traduzir o bot para _%s_ entre em contato com @Edurolp",
"fr":"Désolé mais la langue _%s_ n'est pas encore supportée. Choisis s'il te plait une langue à partir du clavier.\n\n Si tu veux collaborer à la traduction du bot en _%s_ contacte moi à @Edurolp",
"fa":"متاسفم زبان _%s_ پشتیبانی نمیشود. لطفا برای انتخاب زبان از کیبورد استفاده کنید.\n\nاما اگر میخواهید بات از زبان _%s_ پشتیبانی کند میتوانید برای کمک به ترجمه به من پیام بدهید @Edurolp",
"pl":"Przepraszam, ale język _%s_ nie jest wspierany. Proszę wybrać język z klawiatury.\n\nJeśli chcesz wspomóc tłumaczenie bota na _%s_ skontaktuj się ze mną pod @Edurolp",
"tr":"Üzgünüm ama _%s_ dili henüz desteklenmiyor. Lütfen klavyeden bir dil seç.\n\n_%s_ Dili hakkında iletişime geçmek istersen: @Edurolp kullanıcı adına mesaj atabilirsin.",
"ro":"Îmi pare rău dar limba _%s_ nu este suportată încă. Te rog să alegi o limba din tastatură.\n\nDacă vrei să colaborezi în a traduce bot-ul în _%s_ contactează-mă la @Edurolp",
"ru":"Ваш язык _%s_ не поддерживается на данный момент. Пожалуйста, выберите язык из клавиатуры.\n\nЕсли Вы хотите помочь с переводом бота на _%s_ свяжитесь с @Edurolp",
"ar":"انا اسف لاكن اللغة _s%_ غير مدعومة حتى الان . رجائا اختر لغة من الخيارات\n\nاذا كنت تريد ترجمة البوت الى اللغة _s%_ راسلني على @Edurolp"
},
"update_rotation_text_1":"Envía la nueva rotación o escribe /cancel para cancelar el comando.",
"update_rotation_text_2":"Rotación actualizada.",
"update_rotation_pic_1":"Envía la nueva imagen de la rotación o escribe /cancel para cancelar el comando.",
"update_rotation_pic_2":"Rotación actualizada.",
"update_sale_text_1":"Envía las nuevas ofertas o escribe /cancel para cancelar el comando.",
"update_sale_text_2":"Ofertas actualizadas.",
"update_sale_pic_1":"Envía la nueva imagen de las ofertas o escribe /cancel para cancelar el comando.",
"update_sale_pic_2":"Ofertas actualizadas.",
"update_champs_no_version":"Pásame la versión, ejemplo: *8.17.1*",
"update_champs_1":"Descargando archivo: {}",
"update_champs_2":"Descarga terminada, empieza la descompresión del archivo.",
"update_champs_3":"Descompresión terminada, empieza la generación de archivos.",
"update_champs_4":"Archivos generados, borrando restos y reiniciando bot.",
"about":{
"es":"Gracias a toda la comunidad de desarrolladores de bots para Telegram.\nEn especial a @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot y @Botaniobot por su gran ayuda ^^.\nGracias también a @eternnoir por la maravillosa [API](%s).\nMuchas gracias también a todas las personas que uséis el bot. Sabed que me hace muy feliz que este proyecto vaya creciendo :)\nGracias a los traductores: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"en":"Thanks to all the Telegram's bot developers community.\nIn special to @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot and @Botaniobot for their great help ^^.\nThanks too to @eternnoir for the wonderful [API](%s).\nThanks a lot to all the people that use the bot. I want you to know that I’m very happy because this project keeps growing :)\nThanks to the translators: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"it":"Grazie a tutta la comunità di sviluppatori dei bot per Telegram.\nIn speciale a @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot e @Botaniobot per il loro contributo ^^.\nGrazie anche a @eternnoir per la meravigliosa [API](%s).\nRingrazio anche a tutti coloro che usano questo bot. Sappiate che mi rende felice che questo progetto continui a crescere :)\nGrazie ai traduttori: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"de":"Danke an die Gemeinschaft der Bot-Entwickler auf Telegram\nBesonders an @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot und @Botaniobot für ihre große Hilfe ^^.\nVielen Dank auch an @eternnoir für die wundervolle [API](%s).\nDanke an alle, die den Bot verwenden. Ich möchte, dass ihr wisst, dass es mich wirklich glücklich stimmt, zu sehen, wie das Projekt wächst. :)\nDanke an die Übersetzer: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"pt":"Agradeço à toda comunidade de desenvolvedores de bots para Telegram.\nEm especial a @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot e @Botaniobot por sua grande ajuda ^^.\nAgradeço também a @eternnoir pela maravilhosa [API](%s).\nMuito obrigado a todas as pessoas que usam o bot. Saiba que estou muito feliz que este projeto continue crescendo :)\nObrigado aos tradutores: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"fr":"Merci à toute la communauté des développeurs de bot Telegram.\nSpécialement à @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot et @Botaniobot pour leur grande aide ^^.\nMerci aussi à @eternnoir pour la merveilleuse [API](%s).\nMerci beaucoup à toutes les personnes qui utilisent ce bot. Sachez que je suis très heureux de voir ce projet s'agrandir de jour en jour :)\nMerci aux traducteurs: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"fa":"با تشکر از تمام توسعه دهندگان ربات.\nتشکر ویژه از @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot و @Botaniobot برای کمک های بسیار ^^.\nهمچنین تشکر از @eternnoir برای کد رباتی از نوع [API](%s).\nممنونیم از تمام استفاده کنندگان بات. من می خواهم شما بدانید که من بسیار خوشحال هستم چرا که این پروژه در حال رشد است :)\nتشکر از ترجمه کنندگان: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"pl":"Dziękuję społeczności developerskiej bota Telegram.\nA szczególnie @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot oraz @Botaniobot za ich pomoc ^^.\nPodziękowania również dla @eternnoir za świetne [API](%s).\nWielkie dzięki wszystkim korzystającym z bota. Chcę abyście wiedzieli iż jestem bardzo szczęśliwy ponieważ ten projekt wciąż się rozrasta :)\nDziękuję tłumaczom: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"tr":"Telegram bot geliştirme topluluğuna teşekkürler.\nÖzellikle @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot ve @Botaniobot 'a ilgileri için^^.\nAyrıca @eternnoir'a [API](%s).\nBu botu kullanan herkese de teşekkürler. Bilmenizi isterim ki bu projenin büyüdüğünü gördüğüm için çok mutluyum :)\nÇevirmenlere de ayrıca teşekkürler: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"ro":"Le mulțumesc tuturor din comunitatea developerilor pentru boții din Telegram.\nÎn special lui @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot and @Botaniobot pentru ajutorul lor minunat ^^.\nÎi mulțumesc și lui @eternoir pentru minunatul [API] (%s).\nLe mulțumesc și persoanelor ce folosesc bot-ul. Vreau să știți ca sunt foarte fericit din cauza faptului că acest proiect continuă să crească :)\nLe mulțumesc translatorilor: @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"ru":"Спасибо всему сообществу разработчиков ботов Telegram.\nОсобенно @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot и @Botaniobot за помощь ^^.\n Спасибо так же @eternnoir за замечательное [API](%s).\nСпасибо всем людям, которые пользуются ботом. Хочу, чтоб вы знали, что я очень рад, потому что проект продолжает расти :)\nСпасибо переводчикам: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls",
"ar":"شكراً لكل أعضاء مجتمع مطوريين البوت للتلغرام.\nوبالأخص @PilaricaBot, @Gorhy, @pelijaro, @luksireiku, @skgsergio, @rockneurotiko, @Garfieldrockero, @Sanguchi, @PrincipeBot, @Steel0Eggs, @n8bot and @Botaniobot لمساعدتهم العظيمة ^^.\nوشكراٌ أيضاً لـ @eternnoir من أجل الـ [API](%s) الرائع.\nشكراً جزيلاٌ لكل مستخدمين هذا البوت. أريد اخباركم بأنني جداً سعيد لأن هذا المشروع بتحسن مستمر :)\nوالشكر لجميع المترجمين: @dogukanyildiz @massimogennaro @Andrea\\_Gravano @luca\\_ka @m4cca @Kootnik @Chrome\\_Sparks @Datana @Xeharat Kheops11 @Reza6612 @Arquimago @aRandomStranger @disinterpreter @imandaneshi @Akatsuki3910 @aipls"
},
"reload":"Restarting. Wait for `5` seconds.",
"notifications_1":{
"es":"Notificaciones desactivadas. Ahora _no_ recibirás mensajes difundidos ni avisos. Para activarlo de nuevo utiliza /notify",
"en":"Notifications disabled. Now you _won't_ receive broadcast messages nor warnings. To enable it again use /notify",
"it":"Notifiche disattivate. Ora _non_ riceverai più messaggi generali ne avvisi. Per attivarlo di nuovo usa /notify",
"de":"Benachrichtigungen deaktiviert. Du wirst nun _keine_ allgemeinen Nachrichten oder Warungen mehr erhalten. Um sie wieder zu aktivieren, verwende /notify",
"pt":"Notificações desativadas. Agora você _não_ receberá mensagens distribuidas nem avisos. Para ativar de novo use o comando /notify",
"fr":"Notifications désactivées. Maintenant tu _ne_ recevras _plus_ de messages diffusés ni avertissements. Pour les activer à nouveau, utilise /notify",
"fa":"دریافت پیام ها لغو شد. شما الان _دریافت نمیکنید_ پیام های ارسالی بات را. برای روشن کردن استفاده کنید از /notify",
"pl":"Notyfikacje dezaktywowane. _Nie będziesz_ teraz otrzymywał wiadomości broadcastowych ani ostrzeżeń. Aby ponownie je uaktywnić użyj /notify",
"tr":"Bildirimler devre dışı bırakıldı. Artık yayın mesajlarını ve uyarılarını almayacaksın. Etkinleştirmek için /notify komutunu kullan.",
"ro":"Notificările au fost dezactivate. Acum nu _vei_ mai primi mesaje live sau avertismente. Pentru a le activa din nou folosește /notify",
"ru":"Уведомления отключены. Если Вы _Не сможете_ получать широковещательные сообщения и предупреждения. Чтоб включить снова введите /notify",
"ar":"الإشعارات معطلة: الأن _لن_ تستلم الرسائل المذاعة ولا التحذيرات. لإعادة تفعيلها استخدم /notify"
},
"notifications_2":{
"es":"Notificaciones activadas. Ahora _si_ recibirás mensajes difundidos y avisos. Para desactivarlo utiliza /notify",
"en":"Notifications enabled. Now you _will_ receive broadcast messages and warnings. To disable it use /notify",
"it":"Notifiche attivate. Adesso _ti_ verranno inviati messaggi generali e avvisi. Per disattivarli usa /notify",
"de":"Benachrichtigungen aktiviert. Du _wirst_ nun allgemeine Nachrichten und Warnungen erhalten. Um sie zu deaktivieren, verwende /notify",
"pt":"Notificações ativadas. Agora você _receberá_ mensagens distribuidas e avisos. Para desativar utilize o comando /notify",
"fr":"Notifications activées. Maintenant tu _recevras_ des messages diffusés et des avertissements. Pour les désactiver, utilise /notify",
"fa":"دریافت پیام ها فعال شد. شما الان _دریافت میکنید_ پیام های ارسالی بات را. برای خاموش کردن استفاده کنید از /notify",
"pl":"Notyfikacje aktywowane. _Będziesz_ teraz otrzymywał wiadomości broadcastowe oraz ostrzeżenia. Aby dezaktywować użyj /notify",
"tr":"Bildirimler etkinleştirildi. Artık yayın mesajlarını ve uyarılarını alacaksın. İptal etmek için /notify komutunu kullan.",
"ro":"Notificări activate. Acum vei _primi_ notificări live si avertismente. Pentru a le dezactiva folosește /notify",
"ru":"Уведомления включены. Если Вы _хотите_ получать широковещательные сообщения и предупреждения. Для выключения используй /notify",
"ar":"الاإشعارات مفعلة: الأن _سوف_ تستلم الرسالات المذاعة و التحذيرات. لتعطيلها اتستخدم /notify"
},
"mute":[
"Elige MUTE para silenciar a los baneados o UNMUTE para hacerles sufrir. O /cancel para no hacer nada.",
"No hubo cambios. Ya estaban silenciados.",
"Mensajes silenciados correctamente.",
"No hubo cambios, ya estaban sin silenciar.",
"Mensajes desilenciados correctamente",
"Edu... o _MUTE_ o _UNMUTE_, pero no %s"
],
"champ_error":{
"es":"¡Lo siento pero aún no lo hemos incluido en el bot!",
"en":"I'm sorry but we haven't added it yet to the bot!",
"it":"Mi dispiace ma non l'abbiamo ancora aggiunto nel bot!",
"de":"Es tut mir leid, aber das haben wir leider noch nicht zum Bot hinzugefügt.",
"pt":"Desculpe, mas ainda não adicionamos ao bot!",
"fr":"Désolé mais nous ne l'avons pas encore ajouté au bot!",
"fa":"من متاسفم،اما هنوز اضافه نشده به بات",
"pl":"Przykro mi, ale nie dodaliśmy go jeszcze do bota!",
"tr":"Üzgünüz fakat bunu bota henüz eklemedik!",
"ro":"Îmi pare rău dar nu am adăugat-o încă la bot!",
"ru":"Мне жаль, но мы не можем добавить это в бота!",
"ar":"انا اسف لاكن اننا لم نضفه الى البوت بعد"
},
"extra_info":{
"es":"Para ver información detallada del campeón usa",
"en":"To see detailed info about the champion use",
"it":"Per vedere informazioni dettagliate del campione usa",
"de":"Um detailliertere Infos über den Champion zu erhalten, verwende",
"pt":"Para ver informações detalhadas do campeão use",
"fr":"Pour voir des informations détaillées sur les champions, utilise",
"fa":"برای دیدن اطلاعات دقیق در مورد استفاده از چمپیون",
"pl":"Aby uzyskać szczegółowe informacje na temat bohatera, użyj",
"tr":"Şampiyon hakkında detaylı bilgi için kullan",
"ro":"Pentru a vedea informații despre folosirea campionilor",
"ru":"Чтобы увидеть детали о персонаже используй",
"ar":"لترى معلومات مفصلة حول الشخصية استخدم"
},
"champ_info":{
"tags":{
"es":"Posiciones",
"en":"Roles",
"it":"Ruoli",
"de":"Rollen",
"pt":"Papéis",