-
Notifications
You must be signed in to change notification settings - Fork 1
/
langs.json
1458 lines (1458 loc) · 108 KB
/
langs.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
{
"global": {},
"en": {
"flame_sentences": [],
"unknown_string": "Missing string, contact @EricSolinasBot\n{0} {1}",
"unknown_language": "Missing language, contact @EricSolinasBot\n{0}",
"tg_error_X": "Telegram error.\n{0}",
"tg_flood_wait_X": "Flood wait of {0} seconds.",
"tg_flood_wait_X_scheduled": "Flood wait of {0} seconds. The action has been scheduled to execute at UTC {1}",
"error_try_again": "Error, try again later.",
"X_not_in_database": "{0} is not in my database, I need a message from that user/chat.",
"insufficient_rights": "You do not have the rights to do this.",
"unknown_user_chat": "I have never encountered that user/chat before or it does not exist.",
"no_username": "This user/chat does not have a username.",
"updating": "Updating...",
"update": "Update",
"turning_page": "Turning page...",
"until": "until",
"useless_button": "This button is useless.",
"syntax_error": "Syntax error, read the fucking manual to know how to properly use this command.",
"start_private": "Start me in private",
"private_start_message": "Hello! I am Sasha, an administration bot used to help admins in the management of their groups.\n\nAdd me to your group with the button below and promote me ad Administrator, otherwise I will be of little use.\n\nDo you need help with commands? Use /help (in private) to see what I can do.",
"group_start_message": "Hello everyone! I am Sasha, an administration bot used to help admins in the management of their groups.\n\nDo you need help with commands? Use /help (in private) to see what I can do.",
"about_message": "I want to thank everyone who helped me developing this bot during the years: le laide, Ganjalf, umbit, all the users who gave me feedback and helped me during the years.\nSasha has been online from 2016/02/15 since 2020/01/18 as a userbot, and since 2016/09/27 as a bot.\n\n@AISashaBot is written in Python3 using @Pyrogram and peewee, it runs on a Raspberry Pi 3 and it is developed by @EricSolinas.",
"add_me_to_group": "Click here to add me!",
"set_your_language": "Set your language",
"selected_language": "Selected language: {0}",
"language": "Language",
"string_X_set": "String set.",
"left_chat_X": "I left {0}.",
"sending_backup": "I am sending the backup to my masters.",
"automatic_backup": "I am preparing the automatic backup.",
"chat_link": "<a href=\"{0}\">{1}</a>",
"new_chat_link_created": "The new link has been created, it may take some minutes before it works.",
"new_chat_link_set": "The new link has been set.",
"chat_link_unset": "The link has been unset.",
"sent_to_pvt": "I have sent you the requested information in <a href=\"tg://user?id={0}\">private</a>.",
"select_target": "Select the target(s) of your action.",
"ok": "Ok",
"yes": "Yes",
"success": "Success",
"cancelled": "Cancelled",
"my_groups": "My groups",
"users_in_group": "Users in group",
"no": "No",
"no_chat_settings": "Chat not found.",
"weeks": "Weeks",
"days": "Days",
"hours": "Hours",
"minutes": "Minutes",
"seconds": "Seconds",
"increment": "++",
"decrement": "--",
"increment_X": "+{0}",
"decrement_X": "{0}-",
"settings": " Settings ",
"plugins": " Plugins ",
"welcome": " Welcome ",
"goodbye": " Goodbye ",
"rules": " Rules ",
"welcome_buttons": " Welcome Buttons ",
"set_variable_X": "Send the variable {0}.",
"get_variable_X": "I have sent variable {0}.",
"unset_variable_X": "Variable {0} has been unset.",
"invalid_variable_X": "{0} is not a valid variable.",
"no_variable_X": "{0} has not been set.",
"link_generated": "New link generated.",
"link": "Link",
"generate": " Generate ",
"set": " Set ",
"get": " Get ",
"unset": " Unset ",
"replace": " Replace ",
"cancel": " Cancel ",
"command_cooldown": "You need to wait a bit before using this command again.",
"text": "Text",
"media": "Media",
"regex": "RegEx",
"nickname": "Nickname",
"send_nickname": "Send a message with your nickname.",
"no_nickname_set": "No nickname set.",
"nickname_help": "You can have 1 to {0} nicknames at most, if more than 1 you need to separate them with '|'.\nNote that each nickname must be <b>3 or more</b> characters (shorter nicknames will not be considered) and <b>only alphanumeric and underscore are allowed</b> (anything else will be escaped).\ne.g. <i>name|surname|eman</i>",
"tag_message": "You have been mentioned!\nReceiver: {0}\nSender: {1}\nMessage: {2}\n#tag{3}",
"plugins_config_langs_reloaded": "Plugins, configuration file and languages' strings reloaded.",
"admins_updated": "The list of administrators has been updated.",
"members_updated": "The list of members has been updated.",
"cant_target_yourself": "You cannot target yourself.",
"cant_target_higher": "You cannot target a user with higher privileges.",
"telegram_administrators": "Telegram Administrators",
"group_moderators": "Group Moderators",
"creator": "Creator",
"member": "Member",
"restricted": "Restricted",
"left": "Left",
"kicked": "Banned",
"staff": "Staff",
"administrator": "Administrator",
"privileged_user": "Privileged User",
"junior_mod": "Junior Mod",
"senior_mod": "Senior Mod",
"owner": "Owner",
"network_mod": "Network Mod",
"network_owner": "Network Owner",
"master": "Master",
"bot": "Bot",
"user": "User",
"chat": "Chat",
"channel": "Channel",
"user_in_chat": "User in Chat",
"info_of_X_in_Y": "Info of {0} in {1}\n",
"info_of_X": "Info of {0}\n",
"info_id": "ID: ",
"info_first_name": "First Name: ",
"info_last_name": "Last Name: ",
"info_title": "Title: ",
"info_username": "Username: ",
"info_type": "Type: ",
"info_nickname": "Nickname: ",
"info_rank": "Rank: ",
"info_total_messages": "Total Messages: ",
"info_other": "Other Info: ",
"can_be_edited": "Can Be Edited?",
"can_change_info": "Change Group Info",
"can_manage_chat": "Access Event Log",
"can_delete_messages": "Delete Messages",
"can_invite_users": "Add Users",
"can_restrict_members": "Ban Users",
"can_manage_voice_chats": "Manage Group Calls",
"can_promote_members": "Add New Admins",
"can_pin_messages": "Pin Messages",
"is_admin_on_telegram": "Is Admin On Telegram?",
"is_anonymous": "Is Anonymous Admin On Telegram?",
"synchronization": "Synchronization",
"sync_bot2tg": "Bot>Telegram",
"sync_tg2bot": "Telegram>Bot",
"can_send_messages": "Send Messages",
"can_send_media_messages": "Send Media",
"can_send_other_messages": "Send Stickers and GIFs",
"can_add_web_page_previews": "Embed Links",
"reason_flood": "#flood",
"reason_globally_banned": "#gbanned",
"reason_everything": "#everything",
"reason_bot": "#bot",
"reason_forward_from_channel": "#forward_from_channel",
"reason_text_shitstorm": "#text_shitstorm",
"reason_rtl_character": "#rtl",
"reason_spam_long_text": "#spam_long_text",
"reason_arabic": "#arabic",
"reason_censored_text": "#censored_text",
"reason_link_spam": "#telegram_link",
"reason_public_chat_username": "#public_chat_username",
"reason_text": "#text",
"reason_media_shitstorm": "#media_shitstorm",
"reason_censored_media": "#censored_media",
"reason_night_mode": "#night_mode",
"reason_animation": "#animation",
"reason_audio": "#audio",
"reason_contact": "#contact",
"reason_documentu": "#document",
"reason_game": "#game",
"reason_location": "#location",
"reason_photo": "#photo",
"reason_poll": "#poll",
"reason_sticker": "#sticker",
"reason_venue": "#venue",
"reason_video": "#video",
"reason_video_note": "#video_note",
"reason_voice": "#voice",
"reason_add_user": "#add_user",
"reason_invitation_flood": "#invitation_flood",
"reason_join": "#join",
"reason_invited": "#invited",
"reason_flood_invited": "#flood_invited",
"reason_pre_action": "#pre_action",
"reason_arabic_name": "#arabic_name",
"reason_rtl_name": "#rtl_name",
"reason_command_flood": "#command_flood",
"reason_max_warns_reached": "#max_warns_reached",
"reason_private_flood": "#private_flood",
"error_marker": "You cannot put this marker in this command.",
"rules_updated": "Rules updated.",
"no_rules": "There are no rules.",
"welcome_updated": "Welcome updated.",
"no_welcome": "There is no welcome.",
"goodbye_updated": "Goodbye updated.",
"no_goodbye": "There is no goodbye.",
"rules_help": "Send a message with the rules, note that they should be <b>less than 2048 characters</b>, use HTML if you like!",
"welcome_help": "Send a message or media with the welcome, note that it should be <b>less than 2048 characters</b> or a media between these: <b>audio, document, gif, photo, sticker, video, video note, voice note</b> (captions are supported too!).\nUse HTML for the text if you like!\nYou can also use various markers that will be replaced with their corresponding values: <code>$user_id</code>, <code>$first_name</code>, <code>$last_name</code>, <code>$full_name</code>, <code>$reversed_full_name</code>, <code>$username</code>, <code>$mention</code>, <code>$chat_id</code>, <code>$chat_title</code>, <code>$chat_username</code>, <code>$link</code>, <code>$rules</code>\nYou can also use markers in this way $<b>reply</b>_user_id or $<b>forward</b>_user_id to respectively use <b>the message in reply</b> and <b>the user/chat that wrote the forwarded message</b>.\nFor a more detailed explanation on the use of markers see the FAQs.",
"welcome_buttons_help": "Send a message with the link_buttons that you want to be displayed under the welcome message.\nUse <code>|</code> to separate the text of the button from the link\nUse <code>&&</code> to concatenate buttons (<b>8 maximum in a row</b>).\nUse the Enter key to separate rows.\n\nExample (note that white spaces are not necessary)\n<code>text1 | link1 && text2 | link2\ntext3 | link3</code>\nThis will produce a welcome with three buttons, two in the first row and one in the second row.",
"goodbye_help": "Send a message or media with the goodbye, note that it should be <b>less than 512 characters</b> or a media between these: <b>audio, document, gif, photo, sticker, video, video note, voice note</b> (captions are supported too!).\nUse HTML for the text if you like!\nYou can also use various markers that will be replaced with their corresponding values: <code>$user_id</code>, <code>$first_name</code>, <code>$last_name</code>, <code>$full_name</code>, <code>$reversed_full_name</code>, <code>$username</code>, <code>$mention</code>, <code>$chat_id</code>, <code>$chat_title</code>, <code>$chat_username</code>, <code>$link</code>, <code>$rules</code>\nYou can also use markers in this way $<b>reply</b>_user_id or $<b>forward</b>_user_id to respectively use <b>the message in reply</b> and <b>the user/chat that wrote the forwarded message</b>.\nFor a more detailed explanation on the use of markers see the FAQs.",
"action_on_user": "{0} #user{1} {2}\n#executer{3} #chat{4}",
"you_have_been_invited": "You have been invited!",
"link_to_chat": "Link to Chat",
"link_to_message": "Link to Message",
"sender": "Sender",
"message": "Message",
"hashtags": "Hashtags",
"cant_contact": "I could not contact the following users",
"censorships": "Censorships",
"add_censorship": "Add Censorship",
"select_type_of_censorship": "Select the type of censorship you want to add.\nYou can send a text message, a media or a <a href=\"regexr.com\">regular expression</a>.",
"send_text_censorship": "Send me message with the text to censor.",
"send_media_censorship": "Send me the media to censor.",
"send_regex_censorship": "Send me RegEx you want to apply as censorship.",
"extras": "Extras",
"set_extra": "Set Extra",
"key_text_value_text": "Key Text - Value Text",
"key_text_value_media": "Key Text - Value Media",
"key_regex_value_text": "Key RegEx - Value Text",
"key_regex_value_media": "Key RegEx - Value Media",
"send_extra_key": "Send me the text/RegEx you want as trigger",
"send_extra_value": "Send the text/media you want me to reply with, remember that allowed medias are audios, documents, gifs, photos, stickers, videos, video notes, voice notes.",
"select_type_of_extra": "Select the types of key and value.\nYou can send a text message or a <a href=\"regexr.com\">regular expression</a> as key and a text message or media as value.",
"original_extra_deleted": "Someone deleted the original media and I cannot retrieve it anymore, this extra has been deleted.",
"messages": "Messages",
"inactives": "Inactives",
"inactives_confirmation": "This will affect {0} users that do not interact with the group since UTC {1}.\nAre you sure you want to proceed?\nAfter confirmation, the process cannot be interrupted.",
"yes_send_list": "Yes and send list",
"yes_send_list_pvt": "Yes and send list to private",
"no_send_list": "No but send list",
"no_send_list_pvt": "No but send list to private",
"no_chat_link": "No chat link",
"no_chat_rules": "No chat rules",
"log_channel_of_X": "This channel has been set as log channel of {0} {1}\n#setlog.",
"log_channel_set_X": "Logs will be sent to {0} {1}\n#setlog",
"log_channel_help": "1. Create a channel.\n2. <b>Promote me to administrator inside the channel.</b>\n3. Send <code>/setlog</code> in that channel.\n4. <b>Forward THAT message in the group</b> in order to set the log channel for the said group.",
"log_string": "Chat: {0}\nExecuter: {1}\nAction: {2}\nTarget: {3}\n",
"me_string": "You have sent {0}/{1} messages ({2:.2f}%).",
"add_user": "Add User",
"add_chat": "Add Chat",
"whitelisted_users": "Whitelisted Users",
"whitelisted_chats": "Whitelisted Chats",
"whitelistedgbanned_users": "Whitelisted Globally Banned Users",
"globally_banned_users": "Globally Banned Users",
"blocked_users": "Blocked Users",
"send_user_to_whitelist": "Send the ID or the @Username of the user you want to whitelist (this affects all checks).",
"send_gbanned_to_whitelist": "Send the ID or the @Username of the globally banned user you want to whitelist (this only affects globally banned users check).",
"send_chat_to_whitelist": "Send the ID or the @Username or the invite link ( t.me/joinchat/hash or the new t.me/+hash ) of the chat you want to whitelist (this affects forward and link checks).",
"send_user_to_gban": "Send the ID or the @Username of the user you want to globally ban.",
"send_user_to_block": "Send the ID or the @Username of the user you want to block.",
"whitelistedchat_no_correspondence": "Either {0} or {1}.",
"user_permissions": "These are the permissions of {0} in {1}.\n<b>N.B. These permissions only apply to the bot and nothing is modified in Telegram unless the appropriate sync button is used.</b>\n#permissions",
"user_restrictions": "These are the restrictions of {0} in {1}.\n#restrictions",
"(i)extras": "The key of this extra is {0}.",
"(i)censorships": "The censored thing is {0}.",
"info": "Info",
"maininfo": "Info",
"(i)info privileged_user": "User with the ability to use certain plugins as decided by the owner/senior mods. Mostly just a title.",
"(i)info junior_mod": "Moderator with the ability to directly manage the chat and punish users.",
"(i)info senior_mod": "Moderator with the ability to change group's settings, whitelist users and links, promote junior moderators, directly manage the chat and punish users.",
"(i)info blocked": "User blocked until (see adjacent button)",
"(i)info gbanned": "User globally banned until (see adjacent button)",
"(i)info whitelisted": "A whitelisted user is immune to all automatic checks of the bot.",
"(i)info global_ban_whitelisted": "A gban whitelisted user is a user who is immune to the check of gbanned users.",
"(i)info warns": "Warns received by the user in chat",
"(i)messages members_only": "Should display messages from current members only?",
"members_only": "Members Only",
"punish": "Punish",
"info_gbanned": "Globally Banned",
"info_blocked": "Blocked",
"info_warns": "Warns {0}/{1}",
"whitelisted": "Whitelisted",
"global_ban_whitelisted": "GBan Whitelisted",
"mysettings": "Your Personal Settings",
"(i)mysettings language": "Choose your language.",
"(i)mysettings wants_tag_alerts": "Do you want to be alerted when you are mentioned?",
"(i)mysettings nickname": "Set the name(s) people call you in order to be alerted when someone mentions you.",
"wants_tag_alerts": "Tag Alert",
"wants_tag_alert_off": "You will not be alerted when users will tag you.",
"wants_tag_alert_in_group": "You will be alerted when users will tag you in groups you are in.",
"wants_tag_alert_public": "You will be alerted when users will tag you even if you are not in the group.",
"slow_mode_value0": "Off",
"slow_mode_value1": "10 seconds",
"slow_mode_value2": "30 seconds",
"slow_mode_value3": "1 minute",
"slow_mode_value4": "5 minutes",
"slow_mode_value5": "15 minutes",
"slow_mode_value6": "1 hour",
"back_to_settings_menu": "Back to Settings Menu",
"mainsettings": "Main",
"telegramsettings": "Telegram",
"generalsettings": "General",
"floodsettings": "Flood",
"invitesettings": "Invite",
"greetingsettings": "Greetings",
"actionsettings": "Type of Action",
"messagesettings": "Type of Message",
"temporarypunishmentssettings": "Temporary Punishments",
"nightmodesettings": "Night Mode",
"slowmodesettings": "Slow Mode",
"whitelist": "Whitelist",
"gbanned": "Globally Banned",
"chats": "Chats",
"users": "Users",
"(i)settings are_locked": "Are settings locked by the owner?",
"(i)settings is_bot_on": "Is the bot enabled in the group?",
"(i)settings language": "Choose the language of the group.",
"(i)settings has_tag_alerts": "Should users be alerted when they are mentioned?",
"(i)settings allow_temporary_punishments": "Would you like to use temporary punishments for automatic actions?",
"(i)settings group_notices": "Do you want to put a notice in the group when automatic actions are performed and have a minimum punishment? (This does not affect the log channel)",
"(i)settings is_link_public": "Should users be able to retrieve the group's link with the appropriate command?",
"(i)settings has_pin_markers": "Should the bot send a marker everytime a message is pinned?",
"(i)settings link": "Use these four buttons to manage the group link.",
"(i)settings night_mode_punishment": "When enabled users can add one user at a time and gifs/photos/stickers/videos are blocked, if single punishments are higher those will be used.",
"(i)settings max_invites": "How many users/bots can be added by someone at the same time?",
"(i)settings add_punishment": "Punishment for users adding other users to the group.",
"(i)settings arabic_punishment": "Punishment for arabic characters.",
"(i)settings bot_punishment": "Punishment for bots in the chat.",
"(i)settings censorships_punishment": "Punishment for sending censored things.",
"(i)settings flood_punishment": "Punishment for flooding messages, see below for specific limits.",
"(i)settings forward_punishment": "Punishment for forwarding messages from channels (both public and private ones).",
"(i)settings globally_banned_punishment": "Punishment for globally banned users in the chat.",
"(i)settings join_punishment": "Punishment for users joining the chat using the link.",
"(i)settings link_spam_punishment": "Punishment for spamming telegram links.",
"(i)settings rtl_punishment": "Punishment for RTL characters.",
"(i)settings shitstorm_punishment": "Punishment for users/bots shitstorming the chat.",
"(i)settings text_spam_punishment": "Punishment for spammy texts.",
"(i)settings max_flood": "Maximum number of messages in the time window (seconds).",
"(i)settings max_flood_time": "Time window (seconds) in which messages are counted.",
"(i)settings anti_everything": "Punishment for anything that is sent to the chat.",
"(i)settings anti_animation": "Punishment for sending animations (GIFs).",
"(i)settings anti_audio": "Punishment for sending audios (songs and the like, not voice notes).",
"(i)settings anti_contact": "Punishment for sending contacts.",
"(i)settings anti_document": "Punishment for sending documents (files in general that are not other types of media).",
"(i)settings anti_game": "Punishment for sending/playing games.",
"(i)settings anti_location": "Punishment for sending locations.",
"(i)settings anti_photo": "Punishment for sending photos.",
"(i)settings allow_service_messages": "Should join/leave messages be deleted?",
"(i)settings anti_sticker": "Punishment for sending stickers.",
"(i)settings anti_text": "Punishment for writing text.",
"(i)settings anti_venue": "Punishment for sending venues (locations with title and address).",
"(i)settings anti_video": "Punishment for sending videos (not video notes).",
"(i)settings anti_video_note": "Punishment for sending video notes (not normal videos).",
"(i)settings anti_voice": "Punishment for sending voice notes (not normal audios).",
"(i)settings allow_media_group": "Should audios/documents/photos/videos sent in media groups (albums) be excluded when checking flood?",
"(i)settings max_warns": "Maximum number of warns that are given to the user before the punishment.",
"(i)settings max_warns_punishment": "Punishment applied when the maximum number of warns is reached.",
"(i)settings max_temp_restrict": "Duration of a temporary restrict.",
"(i)settings max_temp_ban": "Duration of a temporary ban.",
"(i)settings welcome": "Use the buttons below to manage the welcome (text or media with or without a caption), you can also set links in buttons.",
"(i)settings welcome_buttons": "Use the buttons below to manage the link buttons sent with the welcome message.",
"(i)settings welcome_members": "Members necessary to trigger a welcome message.",
"(i)settings goodbye": "Use the buttons below to manage the goodbye (text or media with or without a caption).",
"(i)settings rules": "Use the buttons below to manage the rules (only text).",
"(i)settings whitelist": "Use the buttons below to manage the three whitelists of the chat.",
"locked_settings": "Settings are locked, ask the owner to unlock them.",
"welcome_members": "Members ({0})",
"send_welcome_each_X": "Welcome message will be sent once every {0} members.",
"never_welcome": "Welcome message will not be sent anymore.",
"max_invites": "Invite ({0})",
"max_invites_X": "A user can add at most {0} members at once.",
"max_flood": "Messages ({0})",
"max_flood_time": "Window ({0}s)",
"max_flood_X": "A user can write at most {0} messages in a time window of {1} seconds.",
"max_warns": "Warns ({0})",
"max_warns_X": "The maximum number of warns is {0}.",
"max_warns_punishment": "Max Warns Punishment",
"allow_service_messages": "Allow Service Messages",
"allow_service_messages_on": "Service messages will not be deleted.",
"allow_service_messages_off": "Service messages will be deleted.",
"allow_media_group": "Allow Media Groups",
"allow_media_group_on": "Media groups will not be punished as flood.",
"allow_media_group_off": "Media groups will be punished as flood.",
"allow_temporary_punishments": "Temporary Punishments",
"allow_temporary_punishments_on": "Temporary Punishments will be shown.",
"allow_temporary_punishments_off": "Temporary Punishments will not be shown.",
"are_locked": "Settings",
"are_locked_on": "Settings locked, now you are the only one that can modify them.",
"are_locked_off": "Settings unlocked, now senior mods can modify them.",
"is_bot_on": "Bot enabled?",
"is_bot_enabled_on": "Bot enabled.",
"is_bot_enabled_off": "Bot disabled.",
"group_notices": "Group Notices",
"group_notices_on_for_X": "Automatic actions will be notified for {0} and higher punishments.",
"group_notices_off": "Automatic actions will not be notified.",
"select_time": "Select the appropriate timerange.",
"night_mode_punishment": "Night Mode",
"night_mode_punishment_on": "Night mode will be enabled from {0} to {1} and will punish users with {2}.",
"night_mode_punishment_off": "Night mode disabled.",
"slow_mode_value": "Slow Mode",
"slow_mode_value_on": "Slow mode will be enabled from {0} to {1} and will restrict users to one message each {2}.",
"slow_mode_value_off": "Slow mode disabled.",
"punishment_changed_X": "Punishment changed to {0}.",
"punishment_changed_X_because_Y_not_valid": "Punishment changed to {0} because {1} is not a valid option for this.",
"select_value": "Select value.",
"has_tag_alerts": "Tag Alert",
"has_tag_alerts_off": "Users will not be alerted when mentioned.",
"has_tag_alerts_in_group": "Only users in this group will be alerted when mentioned.",
"has_tag_alerts_public": "Users will be alerted when mentioned.",
"is_link_public": "Public Link",
"is_link_public_off": "Users will not be able to retrieve the link.",
"is_link_public_in_group": "Only users in this group will be able to retrieve the link with the appropriate command.",
"is_link_public_public": "Users will be able to retrieve the link with the appropriate command.",
"has_pin_markers": "Pin markers",
"has_pin_markers_on": "Pin markers enabled.",
"has_pin_markers_off": "Pin markers disabled.",
"add_punishment": "Adding Users/Bots",
"arabic_punishment": "Arabic",
"bot_punishment": "Bot",
"censorships_punishment": "Censorships",
"flood_punishment": "Flooding",
"forward_punishment": "Forwarding",
"globally_banned_punishment": "Globally Banned",
"join_punishment": "Joining",
"link_spam_punishment": "Link Spamming",
"rtl_punishment": "RTL",
"shitstorm_punishment": "Shitstorming",
"text_spam_punishment": "Text Spamming",
"anti_everything": "Everything",
"anti_animation": "Animation",
"anti_audio": "Audio",
"anti_contact": "Contact",
"anti_document": "Document",
"anti_game": "Game",
"anti_location": "Location",
"anti_photo": "Photo",
"anti_sticker": "Sticker",
"anti_text": "Text",
"anti_venue": "Venue",
"anti_video": "Video",
"anti_video_note": "Video Note",
"anti_voice": "Voice",
"max_temp_punishment_select_time": "Select the appropriate duration of the temporary punishment.",
"no_temp_punishment": "The temporary punishment will now be permanent.",
"max_temp_restrict": "Temporary Restrict",
"max_temp_ban": "Temporary Ban",
"command_flood": "You have been restricted for {0} seconds because you have used the same command more than {1} times in less than {2} seconds.",
"flood_inline_warn": "Do not flood the fucking keyboard!",
"wait_X_seconds_inline_flood": "You have to wait another {0}.",
"plugin_X_enabled": "{0} has been enabled.",
"plugin_X_disabled": "{0} has been disabled.",
"plugin_X_optional": "{0} has been set as optional.",
"plugin_X_mandatory": "{0} has been set as mandatory.",
"plugin_X_min_rank_Y": "{0} can now be used by {1}^.",
"(i)plugins actions_on_users": "Commands targeting users.",
"(i)plugins alternatives": "Alternatives to default commands.",
"(i)plugins bot_management": "Bot settings reserved to master.",
"(i)plugins chat_management": "Chat management and settings.",
"(i)plugins help": "Help.",
"(i)plugins info_data": "Get info on users/chats.",
"(i)plugins multiple_commands": "Commands targeting multiple users.",
"(i)plugins network_management": "Network management and settings.",
"(i)plugins plugins_management": "Additional plugins management.",
"(i)plugins user_management": "Your personal settings.",
"(i)plugins dogify": "Create awesome doge images.",
"(i)plugins extra_variables": "Set triggers inside the chat.",
"(i)plugins flame": "Flame users.",
"(i)plugins interact": "My interactions.",
"(i)plugins latex": "Write some latex.",
"(i)plugins likes": "Like/Dislike messages.",
"(i)plugins misc": "Miscellaneous.",
"(i)plugins pokedex": "Explore the world of Pokémon.",
"(i)plugins qrify": "Create/Decode Qr codes.",
"(i)plugins shout": "Shout something.",
"(i)plugins urban_dictionary": "Explore the Urban Dictionary.",
"(i)plugins webshot": "Take a screenshot of some website.",
"(i)plugins is_enabled": "Is plugin enabled?",
"(i)plugins is_enabled_on_chat": "Is plugin enabled on chat?",
"(i)plugins plugin_name": "Plugin name.",
"(i)plugins min_rank": "Minimum rank having access to the plugin.",
"(i)plugins is_optional": "Is plugin optional?",
"is_enabled": "Enabled?",
"is_enabled_on_chat": "Enabled?",
"plugin_name": "Plugin",
"min_rank": "Min. Rank",
"is_optional": "Optional?",
"actions_on_users": "Actions on Users",
"alternatives": "Alternatives",
"bot_management": "Bot Management",
"chat_management": "Chat Management",
"help": "Help",
"info_data": "Info",
"multiple_commands": "Multiple Commands",
"network_management": "Network Management",
"plugins_management": "Plugins Management",
"user_management": "User Management",
"dogify": "Dogify",
"extra_variables": "Extra Variables",
"flame": "Flame",
"interact": "Interact",
"latex": "Latex",
"likes": "Likes",
"misc": "Misc",
"pokedex": "Pokédex",
"qrify": "Qrify",
"shout": "Shout",
"urban_dictionary": "Urban Dictionary",
"webshot": "Webshot",
"mainhelp": "Help",
"original_censorship_deleted": "Someone deleted the original media and I cannot retrieve it anymore, this censorship has been deleted.",
"set_alternative": "Set Alternative",
"original_alternative_deleted": "Someone deleted the original media and I cannot retrieve it anymore, this alternative has been deleted.",
"send_original_command": "Send the command for which you want to set the alternative.",
"send_alternative_command_X": "Send the command that will be equal to {0}.",
"(i)alternatives": "The original command is {0}.",
"no_flame_sentences": "No flame sentences for this language.",
"few_flame_sentences_X": "There are less than {0} flame sentences for this language, you may encounter the same sentence many times.",
"begin_flame": "Let's do this!",
"stop_flame": "Ok I'll stop.",
"nothing": "Nothing",
"delete": "Delete",
"warn": "Warn",
"unwarn": "Unwarn",
"unwarnall": "Unwarnall",
"kick": "Kick",
"temprestrict": "Temporary Restrict",
"restrict": "Restrict",
"unrestrict": "Unrestrict",
"tempban": "Temporary Ban",
"ban": "Ban",
"unban": "Unban",
"gban": "Globally Ban",
"ungban": "Globally Unban",
"block": "Block",
"unblock": "Unblock",
"test": "Test",
"locked": "Locked",
"unlocked": "Unlocked",
"link_help": "Send invite link for the chat.",
"chatplugins": "Chat Plugins",
"botplugins": "Bot Plugins",
"back_to_help_menu": "Back to Help Menu",
"back_to_main_menu": "Back to Main Menu",
"about": "About",
"commands": "Commands",
"true": "True",
"false": "False",
"help_intro": "👤 = Also executable from private with this format: <code>/command -100123456789 other parameters</code> where -100123456789 is the ID of the chat.\n</br>📨 = Appending <code>pvt</code> to the command (e.g. <code>/settingspvt</code>) will send the result in private.\n</br>Dates and times are to be considered in <a href=\"https://en.wikipedia.org/wiki/Coordinated_Universal_Time\">UTC</a>.\n</br><u><b>If I do not reply to a command you probably do not have the permissions to use it or there is some error in the syntax.</b></u>\n\n</br></br>",
"help_actions_on_users_invite": "<code>/invite</code>: Invite <code>{user}</code> to the chat <i>(via reply, @username or user_id)</i>.",
"help_actions_on_users_warn": "<code>/unwarnall {user}</code>: Warn <code>{user}</code> <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards. 👤",
"help_actions_on_users_unwarn": "<code>/unwarnall {user}</code>: Unwarn <code>{user}</code> <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards. 👤",
"help_actions_on_users_unwarnall": "<code>/unwarnall {user}</code>: Remove all warns of <code>{user}</code> <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards. 👤",
"help_actions_on_users_kick": "<code>/kick {user}</code>: Kick <code>{user}</code> from the chat <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards. 👤",
"help_actions_on_users_temprestrict": "<code>/temprestrict {user}</code>: Temporary restrict <code>{user}</code> for the duration specified in the chat settings <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards. 👤",
"help_actions_on_users_restrict": "<code>/restrict {user}</code>: Restrict <code>{user}</code> <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards. 👤",
"help_actions_on_users_unrestrict": "<code>/unrestrict {user}</code>: Unrestrict <code>{user}</code> <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards. 👤",
"help_actions_on_users_tempban": "<code>/tempban {user}</code>: Temporary ban <code>{user}</code> from the chat for the duration specified in the chat settings <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards. 👤",
"help_actions_on_users_ban": "<code>/ban {user}</code>: Ban <code>{user}</code> from the chat <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards. 👤",
"help_actions_on_users_unban": "<code>/unban {user}</code>: Unban <code>{user}</code> <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards. 👤",
"help_actions_on_users_kickinactives": "<code>/kickinactives {date}</code>: Kick users that have been inactive since UTC <code>{date}</code> which must be specified in the YYYY-MM-DD format. 👤",
"help_actions_on_users_baninactives": "<code>/baninactives {date}</code>: Ban users that have been inactive since UTC <code>{date}</code> which must be specified in the YYYY-MM-DD format. 👤",
"help_actions_on_users_gban": "<code>/gban {user}</code>: Globally ban <code>{user}</code> for 1 day, but you can also specify the duration in seconds (e.g. <code>/gban {user} {seconds}</code>). You can also specify the reasons afterwards.",
"help_actions_on_users_ungban": "<code>/ungban {user}</code>: Globally unban <code>{user}</code> <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards.",
"help_actions_on_users_block": "<code>/block {user}</code>: Block <code>{user}</code> in private for 1 day, but you can also specify the duration in seconds (e.g. <code>/block {user} {seconds}</code>). You can also specify the reasons afterwards.",
"help_actions_on_users_unblock": "<code>/unblock {user}</code>: Unblock <code>{user}</code> <i>(via reply, @username or user_id)</i>. You can also specify the reasons afterwards.",
"help_alternatives_alternatives": "<code>/alternatives</code>: Manage your alternative commands. 👤📨",
"help_alternatives_cancel": "<code>/cancel</code>: Cancel ongoing operation.",
"help_bot_management_ping": "<code>/ping</code>: Ping me.",
"help_bot_management_getip": "<code>/getip</code>: Get IP of my server. 📨",
"help_bot_management_exec": "<code>/exec</code>: Execute Python3 code. 📨",
"help_bot_management_eval": "<code>/eval</code>: Evaluate Python3 expression. 📨",
"help_bot_management_vardump": "<code>/vardump</code>: Print current message, if in reply to a message that one will be printed. 📨",
"help_bot_management_todo": "<code>/todo {text}</code>: Send {text} to the log chat, if in reply to a message it will be forwarded.",
"help_bot_management_reloadlangs": "<code>/reloadlangs</code>: Reload strings.",
"help_bot_management_reboot": "<code>/reboot</code>: Reboot me.",
"help_bot_management_getstring": "<code>/getstring {language_code} {string_id}</code>: Get <code>{string_id}</code> for the specified <code>{language_code}</code>.",
"help_bot_management_setstring": "<code>/setstring {language_code} {string_id} {string}</code>: Set <code>{string}</code> for <code>{string_id}</code> for the specified <code>{language_code}</code>.",
"help_bot_management_reload": "<code>/reload</code>: Reload plugins.",
"help_bot_management_uptime": "<code>/uptime</code>: Amount of time the bot is online.",
"help_bot_management_botplugins": "<code>/botplugins</code>: Manage plugins by enabling/disabling them and marking them as optional or not.",
"help_bot_management_gbanned": "<code>/gbanned</code>: List of globally banned users. 📨",
"help_bot_management_blocked": "<code>/blocked</code>: List of blocked users. 📨",
"help_bot_management_cancel": "<code>/cancel</code>: Cancel ongoing operation.",
"help_chat_management_staff": "<code>/staff</code>: See the staff of the group.",
"help_chat_management_admins": "<code>/admins</code>: Call the admins if there's a problem, you can also add some text (e.g. <code>/admins there is a problem</code>).",
"help_chat_management_link": "<code>/link</code>: Get the link of the chat if available. 👤",
"help_chat_management_kickme": "<code>/kickme</code>: Kick yourself out of the group.",
"help_chat_management_del": "<code>/del {reply_msg}</code>: Delete <code>{reply_msg}</code>.",
"help_chat_management_welcome": "<code>/welcome</code>: Send the welcome of the chat.",
"help_chat_management_rules": "<code>/rules</code>: Send the rules of the chat.",
"help_chat_management_pin": "<code>/pin {reply_msg}</code>: Pin the message in reply.",
"help_chat_management_silentpin": "<code>/silentpin {reply_msg}</code>: Silently pin the message in reply.",
"help_chat_management_syncadmins": "<code>/syncadmins</code>: Sync admins and ranks according to Telegram's permissions, senior mods are those who can promote other members and junior mods those who can restrict other members, every other admin is a privileged user. 👤",
"help_chat_management_settings": "<code>/settings</code>: Manage the settings of the chat. 👤📨",
"help_chat_management_censorships": "<code>/censorships</code>: Manage the censorships of the chat. 👤📨",
"help_chat_management_whitelistedchats": "<code>/whitelistedchats</code>: Manage the whitelisted chats (their links and usernames will be allowed) of the current chat. 👤📨",
"help_chat_management_whitelistedgbanned": "<code>/whitelistedgbanned</code>: Manage the globally banned users who are whitelisted on the chat (will not be punished for being globally banned). 👤📨",
"help_chat_management_whitelisted": "<code>/whitelisted</code>: Manage the whitelisted users (users who will not be considered for automatic punishments) of the chat. 👤📨",
"help_chat_management_logs": "<code>/logs</code>: Read chat's logs of today. 👤📨",
"help_chat_management_sendlogs": "<code>/sendlogs</code>: Create a file with chat's logs. You can also specify the UTC date in the format YYYY-MM-DD (e.g. <code>/sendlogs 2001-09-11</code>) or the UTC interval separated by ':' (e.g. <code>/sendlogs 2001-09-10:2001-09-12</code>). 👤📨",
"help_chat_management_leave": "<code>/leave</code>: Leave the chat without deleting its data, use this if you want to temporarily remove the bot. 👤",
"help_chat_management_newlink": "<code>/newlink</code>: Create a new link for the chat.",
"help_chat_management_setlog": "<code>/setlog</code>: Follow the instructions to set a log channel.",
"help_chat_management_cancel": "<code>/cancel</code>: Cancel ongoing operation.",
"help_dogify_INTRO": "http://dogr.io/",
"help_dogify_doge": "<code>/dogify your words/separated in/this way</code>: Create a doge image with the specified text.",
"help_extra_variables_extras": "<code>/extras</code>: Manage the extras of the chat. 👤📨",
"help_extra_variables_cancel": "<code>/cancel</code>: Cancel ongoing operation.",
"help_flame_flame": "<code>/flame {user}</code>: Flame <code>{user}</code> 10 times, you can also specify the limit afterwards (e.g. <code>/flame {user} {limit}</code>). 👤",
"help_flame_stopflame": "<code>/stopflame {user}</code>: Stop flaming <code>{user}</code>. 👤",
"help_help_help": "<code>/help</code>: Get the help. You can also specify the plugin of which you want the help (e.g. <code>/help user_management</code>).",
"help_help_helpall": "<code>/helpall</code>: Get an HTML file with the help.",
"help_help_start": "<code>/start</code>: Start the bot.",
"help_help_about": "<code>/about</code>: About me.",
"help_info_data_info": "<code>/info {user}</code>: Get <code>{user}</code> info <i>(via reply, @username or user_id)</i>, if the command is executed from a chat you will get the user info on that chat. 👤📨",
"help_info_data_id": "<code>/id {user}</code>: Get <code>{user}</code> id <i>(via reply or @username)</i>. 📨",
"help_info_data_username": "<code>/username {user}</code>: Get <code>{user}</code> username <i>(via reply or user_id)</i>. 📨",
"help_info_data_me": "<code>/me</code>: Get the number of messages you have sent inside the chat. 📨",
"help_info_data_groups": "<code>/groups</code>: Get a list of public groups.",
"help_info_data_ismember": "<code>/ismember {user}</code>: Tell if <code>{user}</code> is member of the chat or not <i>(via reply, @username or user_id)</i>. 👤📨",
"help_info_data_messages": "<code>/messages</code>: Obtain the list of members with their counters. 👤📨",
"help_interact_echo": "<code>/echo {text}</code>: Send <code>{text}</code> to the chat. Prepending <code>html</code> or <code>markdown</code> to the command will use the appropriate parse mode (e.g. <code>/markdownecho *hello world!*</code> will send '<b>hello world!</b>').",
"help_interact_edit": "<code>/edit {reply_msg} {text}</code>: Edit <code>{reply_msg}</code> with <code>{text}</code> (<code>{reply_msg}</code> <b>must be sent by me</b>). Prepending <code>html</code> or <code>markdown</code> to the command will use the appropriate parse mode (e.g. <code>/markdownedit *hello world!*</code> will edit the message in reply with '<b>hello world!</b>').",
"help_interact_test": "<code>/test {user_chat}</code>: Test if I can reach <code>{user_chat}</code> <i>(via reply, @username or id)</i>. No response means that I can.",
"help_interact_chat_action": "<code>/action</code>: Send the specified action to the chat. Possible actions are: <code>/typing</code>, <code>/upload_photo</code>, <code>/record_video</code>, <code>/upload_video</code>, <code>/record_audio</code>, <code>/upload_audio</code>, <code>/upload_document</code>, <code>/find_location</code>, <code>/record_video_note</code>, <code>/upload_video_note</code>, <code>/choose_contact</code>, <code>/playing</code>, <code>/cancel</code>",
"help_latex_INTRO": "http://latex.codecogs.com/",
"help_latex_latex": "<code>/latex {latex_text}</code>: Send <code>{latex_text}</code> as a picture formatted with latex.",
"help_misc_convertseconds": "<code>/convertseconds {seconds}</code>: Convert <code>{seconds}</code> to a more understandable duration (e.g. <code>/convertseconds 2419200</code> results in '4 Weeks').",
"help_misc_convertduration": "<code>/convertduration {weeks} {days} {hours} {minutes} {seconds}</code>: Convert <code>{weeks} {days} {hours} {minutes} {seconds}</code> to seconds (e.g. <code>/convertduration 4 0 0 0 0</code> results in '2419200 Seconds').",
"help_multiple_commands_multipleinvite": "<code>/multipleinvite {user_1} ... {user_n}</code>: Invite <code>{users}</code> to the chat <i>(via reply, @username or user_id)</i>.",
"help_multiple_commands_multiplewarn": "<code>/multipleunwarnall {user_1} ... {user_n}</code>: Warn <code>{users}</code> <i>(via reply, @username or user_id)</i>. 👤",
"help_multiple_commands_multipleunwarn": "<code>/multipleunwarnall {user_1} ... {user_n}</code>: Unwarn <code>{users}</code> <i>(via reply, @username or user_id)</i>. 👤",
"help_multiple_commands_multipleunwarnall": "<code>/multipleunwarnall {user_1} ... {user_n}</code>: Remove all warns of <code>{users}</code> <i>(via reply, @username or user_id)</i>. 👤",
"help_multiple_commands_multiplekick": "<code>/multiplekick {user_1} ... {user_n}</code>: Kick <code>{users}</code> from the chat <i>(via reply, @username or user_id)</i>. 👤",
"help_multiple_commands_multipletemprestrict": "<code>/multipletemprestrict {user_1} ... {user_n}</code>: Temporary restrict <code>{users}</code> for the duration specified in the chat settings <i>(via reply, @username or user_id)</i>. 👤",
"help_multiple_commands_multiplerestrict": "<code>/multiplerestrict {user_1} ... {user_n}</code>: Restrict <code>{users}</code> <i>(via reply, @username or user_id)</i>. 👤",
"help_multiple_commands_multipleunrestrict": "<code>/multipleunrestrict {user_1} ... {user_n}</code>: Unrestrict <code>{users}</code> <i>(via reply, @username or user_id)</i>. 👤",
"help_multiple_commands_multipletempban": "<code>/multipletempban {user_1} ... {user_n}</code>: Temporary ban <code>{users}</code> from the chat for the duration specified in the chat settings <i>(via reply, @username or user_id)</i>. 👤",
"help_multiple_commands_multipleban": "<code>/multipleban {user_1} ... {user_n}</code>: Ban <code>{users}</code> from the chat <i>(via reply, @username or user_id)</i>. 👤",
"help_multiple_commands_multipleunban": "<code>/multipleunban {user_1} ... {user_n}</code>: Unban <code>{users}</code> <i>(via reply, @username or user_id)</i>. 👤",
"help_multiple_commands_multiplegban": "<code>/multiplegban {seconds} {user_1} ... {user_n}</code>: Globally ban <code>{users}</code> for <code>{seconds}</code>.",
"help_multiple_commands_multipleungban": "<code>/multipleungban {user_1} ... {user_n}</code>: Globally unban <code>{users}</code> <i>(via reply, @username or user_id)</i>.",
"help_multiple_commands_multipleblock": "<code>/multipleblock {seconds} {user_1} ... {user_n}</code>: Block <code>{users}</code> in private for <code>{seconds}</code>.",
"help_multiple_commands_multipleunblock": "<code>/multipleunblock {user_1} ... {user_n}</code>: Unblock <code>{users}</code> <i>(via reply, @username or user_id)</i>.",
"help_plugins_management_plugins": "<code>/plugins</code>: Manage the plugins of the chat. 👤📨",
"help_qrify_INTRO": "http://goqr.me/",
"help_qrify_qrencode": "<code>/qrencode {text}</code>: Encode <code>{text}</code> inside a QR code.",
"help_qrify_qrdecode": "<code>/qrdecode {reply_msg}</code>: Decode the QR code inside the <code>{reply_msg}</code> media.",
"help_shout_shout": "<code>/shout {text}</code>: Shout <code>{text}</code>.",
"help_urban_dictionary_INTRO": "https://www.urbandictionary.com/",
"help_urban_dictionary_ud": "<code>/ud {query}</code>: Search <code>{query}</code> inside the Urban Dictionary and return the results.",
"help_user_management_mysettings": "<code>/mysettings</code>: Manage your settings.",
"help_user_management_cancel": "<code>/cancel</code>: Cancel ongoing operation.",
"help_webshot_INTRO": "https://webshot.deam.io/",
"help_webshot_webshot": "<code>/webshot {url}</code>: Take a screenshot of <code>{url}</code>.",
"invite_all": "Invite Everyone",
"warn_all": "Warn Everyone",
"unwarn_all": "Unwarn Everyone",
"unwarnall_all": "Unwarnall Everyone",
"kick_all": "Kick Everyone",
"temprestrict_all": "Temporary Restrict Everyone",
"restrict_all": "Restrict Everyone",
"unrestrict_all": "Unrestrict Everyone",
"tempban_all": "Temporary Ban Everyone",
"ban_all": "Ban Everyone",
"unban_all": "Unban Everyone",
"gban_all": "Globally Ban Everyone",
"ungban_all": "Globally Unban Everyone",
"block_all": "Block Everyone",
"unblock_all": "Unblock Everyone",
"test_all": "Test Everyone",
"public_groups": "Public Groups",
"public_groups_notice": "Click on the name of the chat you want to join! If the link does not work it is not my fault.",
"cant_delete_message": "I cannot delete the message, this can happen for one (or more) of the following reasons:\n- It is too old (48h).\n- I do not have the permission to delete messages.\n- It has already been deleted.",
"logs": "Logs",
"logs_of_X": "Logs of {0}",
"processing_multiple_command": "I am processing the command...",
"estimated_completion_time_X": "Estimated completion time: UTC {0}"
},
"it": {
"flame_sentences": [
"Davvero ritardato del cazzo stai zitto.",
"Mi sembri peggio dei cristiani porcoddio.",
"Dei calci in bocca meriti altrochè.",
"Scusa eh ma quanto ti senti frocio da 1 a 10? no perchè a me il 10 sembra fisso.",
"Fai un favore al gruppo, ucciditi da solo.",
"Sei sicuro di non avere qualche cromosoma in più?",
"Dio se sei messo male amico.",
"Sei inutile come un gay ad un addio al nubilato.",
"Ma quanto sei imbarazzante per il genere umano?",
"L'uomo è un animale intelligente, tu sei l'eccezione che conferma la regola.",
"Sei sicuro di non avere un taglio sulla testa?? Perché potrebbe spiegare il resto, testa di cazzo.",
"Ti direi che sei brutto come la morte, ma alla fine morire è meglio che stare ancora a sentirti.",
"Hai avuto un incidente o ci sei nato così?",
"Scommetto che tua madre avrebbe preferito ingoiare.",
"Sei come Forrest Gump senza la parte del correre... In pratica un ritardato.",
"Ogni volta che scrivi non so se rotolarmi dal ridere o se mettermi le mani in faccia per la disperazione.",
"Ma zitto che mi pari un incrocio uscito male tra Luca Giurato e l'italiano.",
"Per favore calate il banhammer sulla sua testa.",
"Parla parla scemo del cazzo.",
"La parte migliore di te è quella che vuole suicidarsi.",
"Vai a farti una vita reale sennò giuro che ti squarto.",
"Dimmi un po', per caso hai i genitori parenti?",
"SEI SICURO DI VOLERTI METTERE CONTRO UNA BOTTESSA?",
"CON CHE CORAGGIO PARLI ANCORA BRUTTA FOGNA?"
],
"default_alternatives": {
"/ban": [
"/banna",
"kaboom",
"sasha banna",
"banna",
"sasha decompila",
"decompila",
"sasha esplodi"
],
"/dellist": [
"/listacensure",
"sasha lista censure",
"lista censure"
],
"/echo": [
"sasha ripeti"
],
"/get": [
"sasha lista"
],
"/getadmins": [
"sasha lista admin",
"lista admin"
],
"/getlist": [
"sasha lista"
],
"/getrank": [
"rango"
],
"/help": [
"sasha aiuto"
],
"/helpall": [
"sasha aiuto tutto"
],
"/info": [
"sasha info",
"info"
],
"/kick": [
"sasha uccidi",
"uccidi",
"sasha spara"
],
"/kickme": [
"sasha uccidimi",
"sasha esplodimi",
"sasha sparami",
"sasha decompilami",
"sasha bannami"
],
"/link": [
"sasha link"
],
"/markdownecho": [
"sasha markdown ripeti"
],
"/modlist": [
"sasha lista mod",
"lista mod"
],
"/newlink": [
"sasha crea link"
],
"/plugins": [
"sasha lista plugins",
"lista plugins"
],
"/qr": [
"sasha qr"
],
"/rules": [
"sasha regole"
],
"/setlink": [
"sasha imposta link"
],
"/shout": [
"sasha grida",
"grida",
"sasha urla",
"urla"
],
"/startflame": [
"sasha flamma",
"flamma"
],
"/stopflame": [
"sasha stop flame",
"stop flame"
],
"/tex": [
"sasha equazione",
"equazione"
],
"/unban": [
"sasha sbanna",
"sbanna",
"sasha ricompila",
"ricompila"
],
"/unsetlink": [
"sasha elimina link"
],
"/unwarnall": [
"sasha azzera avvertimenti",
"azzera avvertimenti"
],
"/warn": [
"sasha avverti"
],
"/webshot": [
"sasha webshotta",
"webshotta"
]
},
"unknown_string": "Stringa mancante, contatta @EricSolinasBot\n{0} {1}",
"unknown_language": "Lingua mancante, contatta @EricSolinasBot\n{0}",
"tg_error_X": "Errore Telegram.\n{0}",
"tg_flood_wait_X": "Flood wait di {0} secondi.",
"tg_flood_wait_X_scheduled": "Flood wait di {0} secondi. Verrà effettuato un nuovo tentativo UTC {1}",
"error_try_again": "Errore, riprovare più tardi.",
"X_not_in_database": "{0} non è nel mio database, Mi serve un messaggio da quell'utente/chat.",
"insufficient_rights": "Non hai i permessi per farlo.",
"unknown_user_chat": "Non ho mai incontrato quest'utente/chat o non esiste.",
"no_username": "Quest'utente/chat non ha un username.",
"updating": "Aggiorno...",
"update": "Aggiorna",
"turning_page": "Girando pagina...",
"until": "fino a",
"useless_button": "Questo bottone è inutile.",
"syntax_error": "Errore di sintassi, leggi il fottuto help su come utilizzare questo comando.",
"start_private": "Avviami in privato",
"private_start_message": "Ciao! Sono Sasha, un admin bot che aiuta gli amministratori nella gestione dei loro gruppi.\n\nAggiungimi al tuo gruppo usando il bottone qui sotto e promuovimi ad amministratore, altrimenti non potrò fare ciò per cui sono stata programmata.\n\nHai bisogno di aiuto con i comandi? Utilizza il comando /help (in privato) per scoprire ciò di cui sono capace.",
"group_start_message": "Ciao a tutti! Sono Sasha, un admin bot che aiuta gli amministratori nella gestione dei loro gruppi.\n\nHai bisogno di aiuto con i comandi? Utilizza il comando /help (in privato) per scoprire ciò di cui sono capace.",
"about_message": "Voglio ringraziare tutti quelli che mi hanno aiutato nello sviluppo di questo bot: le laide, Ganjalf, umbit, tutti gli utenti che mi hanno dato un feedback nel corso degli anni.\nSasha è stata online come userbot dal 2016/02/15 al 2020/01/18, e come bot dal 2016/09/27.\n\n@AISashaBot utilizza @Pyrogram e peewee, è scritta in Python3, gira su un Raspberry Pi 3 ed è sviluppata da @EricSolinas.",
"add_me_to_group": "Clicca qui per aggiungermi!",
"set_your_language": "Imposta la tua lingua",
"selected_language": "Lingua selezionata: {0}",
"language": "Lingua",
"string_X_set": "Stringa impostata.",
"left_chat_X": "Ho lasciato {0}.",
"sending_backup": "Sto inviando il backup ai miei masters.",
"automatic_backup": "Sto preparando il backup automatico.",
"chat_link": "<a href=\"{0}\">{1}</a>",
"new_chat_link_created": "Il nuovo link è stato creato, potrebbe volerci qualche minuto affinchè risulti attivo.",
"new_chat_link_set": "Il nuovo link è stato impostato.",
"chat_link_unset": "Il link è stato rimosso.",
"sent_to_pvt": "Ti ho mandato le informazioni richieste in <a href=\"tg://user?id={0}\">privato</a>.",
"select_target": "Seleziona i bersagli della tua azione.",
"ok": "Ok",
"yes": "Sì",
"success": "Confermato",
"cancelled": "Annullato",
"my_groups": "I miei gruppi",
"users_in_group": "Utenti nel gruppo",
"no": "No",
"no_chat_settings": "Chat non trovata.",
"weeks": "Settimane",
"days": "Giorni",
"hours": "Ore",
"minutes": "Minuti",
"seconds": "Secondi",
"increment": "++",
"decrement": "--",
"increment_X": "+{0}",
"decrement_X": "{0}-",
"settings": " Impostazioni ",
"plugins": " Plugins ",
"welcome": " Benvenuto ",
"goodbye": " Arrivederci ",
"rules": " Regole ",
"welcome_buttons": " Bottoni Benvenuto ",
"set_variable_X": "Invia la variabile {0}.",
"get_variable_X": "Ho inviato la variabile {0}.",
"unset_variable_X": "La variabile {0} è stata rimossa.",
"invalid_variable_X": "{0} non è una variabile valida.",
"no_variable_X": "{0} non è stato impostato.",
"link_generated": "Nuovo link generato.",
"link": "Link",
"generate": " Genera ",
"set": " Imposta ",
"get": " Ottieni ",
"unset": " Rimuovi ",
"replace": " Sostituisci ",
"cancel": " Annulla ",
"command_cooldown": "Devi aspettare un altro po' prima di utilizzare di nuovo questo comando.",
"text": "Testo",
"media": "Media",
"regex": "RegEx",
"nickname": "Nickname",
"send_nickname": "Invia un messaggio col tuo nickname.",
"no_nickname_set": "Nessun nickname impostato.",
"nickname_help": "Puoi avere tra 1 e {0} nicknames al massimo, se ne vuoi più di 1 devi separarli con '|'.\nOgni nickname deve essere di <b>3 o più</b> caratteri (nickname più corti non verranno considerati) e <b>sono ammessi solo caratteri alfanumerici e il trattino basso</b>.\ne.g. <i>nome|cognome|emon</i>",
"tag_message": "Sei stato taggato!\nDestinatario: {0}\nMittente: {1}\nMessaggio: {2}\n#tag{3}",
"plugins_config_langs_reloaded": "Plugins, file di configurazione e lingue ricaricati.",
"admins_updated": "La lista degli amministratori è stata aggiornata.",
"members_updated": "La lista dei membri è stata aggiornata.",
"cant_target_yourself": "Non puoi bersagliarti da solo.",
"cant_target_higher": "Non puoi bersagliare un utente con privilegi più alti.",
"telegram_administrators": "Amministratori di Telegram",
"group_moderators": "Moderatori del gruppo",
"creator": "Creatore",
"member": "Membro",
"restricted": "Limitato",
"left": "Uscito",
"kicked": "Bannato",
"staff": "Staff",
"administrator": "Amministratore",
"privileged_user": "Utente Privilegiato",
"junior_mod": "Moderatore Junior",
"senior_mod": "Moderatore Senior",
"owner": "Proprietario",
"network_mod": "Moderatore del Network",
"network_owner": "Proprietario del Network",
"master": "Master",
"bot": "Bot",
"user": "Utente",
"chat": "Chat",
"channel": "Canale",
"user_in_chat": "Utente in Chat",
"info_of_X_in_Y": "Info di {0} in {1}\n",
"info_of_X": "Info di {0}\n",
"info_id": "ID: ",
"info_first_name": "Nome: ",
"info_last_name": "Cognome: ",
"info_title": "Titolo: ",
"info_username": "Username: ",
"info_type": "Tipo: ",
"info_nickname": "Nickname: ",
"info_rank": "Rango: ",
"info_total_messages": "Messaggi totali: ",
"info_other": "Altre Informazioni: ",
"can_be_edited": "Può Essere Modificato?",
"can_change_info": "Cambiare Le Info Del Gruppo",
"can_manage_chat": "Accedere Al Log Eventi",
"can_delete_messages": "Eliminare Messaggi",
"can_invite_users": "Invitare Utenti Tramite Link",
"can_restrict_members": "Bloccare Utenti",
"can_promote_members": "Aggiungere Amministratori",
"can_pin_messages": "Fissare Messaggi",
"can_manage_voice_chats": "Gestire Chiamate di Gruppo",
"is_admin_on_telegram": "È Amministratore Su Telegram?",
"is_anonymous": "È Amministratore Anonimo Su Telegram?",
"synchronization": "Sincronizzazione",
"sync_bot2tg": "Bot>Telegram",
"sync_tg2bot": "Telegram>Bot",
"can_send_messages": "Inviare Messaggi",
"can_send_media_messages": "Inviare Media",
"can_send_other_messages": "Inviare Stickers e GIFs",
"can_add_web_page_previews": "Inviare Link Con Anteprima",
"reason_flood": "#flood",
"reason_globally_banned": "#gbanned",
"reason_everything": "#everything",
"reason_bot": "#bot",
"reason_forward_from_channel": "#forward_from_channel",
"reason_text_shitstorm": "#text_shitstorm",
"reason_rtl_character": "#rtl",
"reason_spam_long_text": "#spam_long_text",
"reason_arabic": "#arabic",
"reason_censored_text": "#censored_text",
"reason_link_spam": "#telegram_link",
"reason_public_chat_username": "#public_chat_username",
"reason_text": "#text",
"reason_media_shitstorm": "#media_shitstorm",
"reason_censored_media": "#censored_media",
"reason_night_mode": "#night_mode",
"reason_animation": "#animation",
"reason_audio": "#audio",
"reason_contact": "#contact",
"reason_documentu": "#document",
"reason_game": "#game",
"reason_location": "#location",
"reason_photo": "#photo",
"reason_poll": "#poll",
"reason_sticker": "#sticker",
"reason_venue": "#venue",
"reason_video": "#video",
"reason_video_note": "#video_note",
"reason_voice": "#voice",
"reason_add_user": "#add_user",
"reason_invitation_flood": "#invitation_flood",
"reason_join": "#join",
"reason_invited": "#invited",
"reason_flood_invited": "#flood_invited",
"reason_pre_action": "#pre_action",
"reason_arabic_name": "#arabic_name",
"reason_rtl_name": "#rtl_name",
"reason_command_flood": "#command_flood",
"reason_max_warns_reached": "#max_warns_reached",
"reason_private_flood": "#private_flood",
"error_marker": "Non puoi utilizzare quel marcatore in questo comando.",
"rules_updated": "Regole aggiornate.",
"no_rules": "Non ci sono regole impostate.",
"welcome_updated": "Benvenuto aggiornato.",
"no_welcome": "Non c'è un benvenuto impostato.",
"goodbye_updated": "Arrivederci aggiornato.",
"no_goodbye": "Non c'è un arrivederci impostato.",
"rules_help": "Invia un messaggio con le regole, dovrebbero essere <b>meno di 2048 caratteri</b>, è possibile utilizzare l'HTML!",
"welcome_help": "Invia un messaggio o un media con il benvenuto, dovrebbe essere <b>meno di 2048 caratteri</b> o un media tra i seguenti: <b>audio, documento, gif, foto, sticker, video, nota video, nota vocale</b> (le didascalie sono supportate!).\nPuoi usare l'HTML se ti va!\nPuoi anche utilizzare svariati marcatori che verranno sostituiti con i valori corrispondenti: <code>$user_id</code>, <code>$first_name</code>, <code>$last_name</code>, <code>$full_name</code>, <code>$reversed_full_name</code>, <code>$username</code>, <code>$mention</code>, <code>$chat_id</code>, <code>$chat_title</code>, <code>$chat_username</code>, <code>$link</code>, <code>$rules</code>\nPuoi anche utilizzarli come segue $<b>reply</b>_user_id o $<b>forward</b>_user_id per utilizzare rispettivamente <b>il messaggio in risposta</b> e <b>l'utente/chat che ha scritto il messaggio inoltrato</b>.",
"welcome_buttons_help": "Send a message with the link_buttons that you want to be displayed under the welcome message.\nUse <code>|</code> to separate the text of the button from the link\nUse <code>&&</code> to concatenate buttons (<b>8 maximum in a row</b>).\nUse the Enter key to separate rows.\n\nExample (note that white spaces are not necessary)\n<code>text1 | link1 && text2 | link2\ntext3 | link3</code>\nThis will produce a welcome with three buttons, two in the first row and one in the second row.",
"goodbye_help": "Invia un messaggio o un media con l'arrivederci, dovrebbe essere <b>meno di 512 caratteri</b> o un media tra i seguenti: <b>audio, documento, gif, foto, sticker, video, nota video, nota vocale</b> (le didascalie sono supportate!).\nPuoi usare l'HTML se ti va!\nPuoi anche utilizzare svariati marcatori che verranno sostituiti con i valori corrispondenti: <code>$user_id</code>, <code>$first_name</code>, <code>$last_name</code>, <code>$full_name</code>, <code>$reversed_full_name</code>, <code>$username</code>, <code>$mention</code>, <code>$chat_id</code>, <code>$chat_title</code>, <code>$chat_username</code>, <code>$link</code>, <code>$rules</code>\nPuoi anche utilizzarli come segue $<b>reply</b>_user_id o $<b>forward</b>_user_id per utilizzare rispettivamente <b>il messaggio in risposta</b> e <b>l'utente/chat che ha scritto il messaggio inoltrato</b>.",
"action_on_user": "{0} #user{1} {2}\n#executer{3} #chat{4}",
"you_have_been_invited": "Sei stato invitato!",
"link_to_chat": "Link alla Chat",
"link_to_message": "Link al Messaggio",
"sender": "Mittente",
"message": "Messaggio",
"hashtags": "Hashtags",
"cant_contact": "Non ho potuto contattare i seguenti utenti",
"censorships": "Censure",
"add_censorship": "Aggiungi Censura",