-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathla.json
More file actions
1027 lines (1027 loc) · 36.5 KB
/
la.json
File metadata and controls
1027 lines (1027 loc) · 36.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"commands": {
"admins": {
"description": "Nom du chat administrateurs",
"header": "Vocatis ab administratoribus {{peerName}} #id{{peerId}}"
},
"aicheck": {
"description": "Informationes praebet de statu neuronis"
},
"announce": {
"description": ""
},
"ban": {
"description": "A user movebo",
"onlyUsers": "Bannum alteri administratori ferre non potes!"
},
"check": {
"description": "Incipit reprehendo files"
},
"dban": {
"description": "Obstrue utentem et nuntium delere"
},
"delete": {
"description": ""
},
"dmute": {
"description": "Confundat user ac delere nuntium"
},
"dossier": {
"description": "Generare instrumentum lima pro usuario",
"noReason": "Non specificatur",
"wait": "Notitias incepi parare, hoc aliquandiu capere potest."
},
"dwarn": {
"description": "Monitum usoris et nuntium delere"
},
"fulluser": {
"description": "Adepto plenam informationem sobre utente"
},
"gas": {
"description": "Addit GAS cincinno utentis"
},
"general": {
"approve": "Probo",
"canceledRestriction": "Restrictio levata est!",
"canceledRestriction_few": "{{count}} restrictiones levavi!",
"canceledRestriction_many": "{{count}} restrictiones levavi!",
"canceledRestriction_zero": "Nullae restrictiones elevatae sunt!",
"cooldown": "A user sub immunitet KD!",
"disabled": "Praeceptum debilitatum est in occasus chat!",
"message": "nuntium",
"message_few": "epistulae",
"message_many": "epistulae",
"message_zero": "epistulae",
"mute": "mutus",
"mute_few": "mutus",
"mute_many": "mutus",
"mute_zero": "mutus",
"no": "non",
"notFoundUser": "Telegram usor inveniri non potuit, si certus es te recte ingressum esse, hunc usorem roga ut epistulas nuntiis privatis bot's.",
"notSuperGroup": "",
"onlyPM": "Hoc mandatum solum in nuntiis privatis operatur!",
"open": "Open",
"openWebApp": "Apertum in WebApp",
"reject": "Falsus",
"report": "famam",
"report_few": "famam",
"report_many": "famam",
"report_zero": "famam",
"restriction": "poena",
"restriction_few": "poenae",
"restriction_many": "poenae",
"restriction_zero": "poenae",
"second": "",
"second_few": "",
"second_many": "",
"second_zero": "",
"selectChannel": "Canalem eligere",
"selectChat": "Curabitur eligere",
"selectUser": "Lego a user",
"userNotFound": "Вы не указали пользователя, или я с ним не знаком!",
"warn": "monitum",
"warn_few": "monitum",
"warn_many": "monitum",
"warn_zero": "monitum",
"yes": "Ita"
},
"help": {
"commandList": "Index mandatorum:",
"description": "",
"docs": "Plura in documentis: https://docs.redguy.ru/igb/",
"duration": "<durationem>",
"durationHint": "Duratio indicatur in forma numeri + intervallum: 1m 2h 3d 4w 5M 6y",
"group": {
"admin": "",
"ai-moder": "",
"misc": "",
"owner": "Dominus",
"user": ""
},
"header": "",
"idUserReply": "<id/username/respondere>",
"reason": "<causa>",
"reply": "<responder>"
},
"id": {
"description": "Get id utentis, canalis, vel chat",
"send": "Usorem, canalem vel chat utens globulis infra mitte!"
},
"json": {
"description": ""
},
"mass": {
"description": ""
},
"modtop": {
"bans": "Top moderatores bans:",
"description": "Accipere summo moderatores",
"mutes": "Top per mutos moderatores:",
"total": "Top moderatoris:",
"warns": "Top moderatores per admonitiones:"
},
"modview": {
"description": ""
},
"msgtop": {
"all": "",
"day": "",
"description": "Получайте топ, отправляя сообщения в чат",
"header": "Top per numerum epistulae:",
"week": ""
},
"mute": {
"description": "Confundat user",
"onlyUsers": "Mutationem alteri administratori dare non potes!"
},
"note": {
"description": "Creare annotare de usuario",
"onlyUsers": "Nota de alio administratore relinquere non potes!"
},
"paysupport": {
"description": ""
},
"privacy": {
"description": ""
},
"raidmode": {
"description": "Admitte/disable dixisse modus",
"disabled": "Incursio modus debilitatus est!",
"enabled": "Incursio modus est enabled, omnes advenientis users erit statim excluduntur!"
},
"readonly": {
"description": "Admitte/inactivare legere solum modum",
"disabled": "Lege-solus modus debilitatus est!",
"enabled": "Lege-modo modo possit!"
},
"report": {
"accepted": "Querela probatus est!",
"alreadySent": "Iam relationem de hoc nuntio misisti!",
"deleted": "Nuntium deletum est propter magnum numerum relationum!",
"description": "Mitte querelam ad nuntium",
"got": "Accepit <a href=\"{{reportUrl}}\">querimonia</a> a <a href=\"tg://user?id={{fromId}}\">{{fromName}}</a> ad <a href=\"tg://user?id={{toId}}\">{{toName}}</a> #id{{toId}} nom du cha t<a href=\"{{messageUrl}}\">{{title}}</a>",
"rated": "Acta est fabula!",
"rejected": "Reclamatio repudiata est!",
"sent": "Reclamatum est!",
"sentForDelete": "Reclamatum est{{now}}/{{need}}"
},
"reptop": {
"description": "Get summo reporters",
"reports": "Top Reporters:",
"reputation": ""
},
"reset": {
"description": ""
},
"resttop": {
"description": "",
"header": ""
},
"settings": {
"anonymous": "",
"description": "Aperi occasus chat",
"notFound": "Curabitur non inventus est!",
"notSent": "",
"permission": "Non satis iura ad hoc mandatum exequendum, debes chat emendandi!",
"sent": "Uncinis privatis nuntiis missi sunt!"
},
"start": {
"activeRestrictions": "Habes restrictiones activae:",
"description": "Indicem violationum activarum in omnibus confabulationibus ostendit",
"footer": "Invenire potes de omnibus meis notis utens imperio /help",
"header": "Salve! Custos Imperialis sum, autor ad ordinem in chats servandum.",
"media": "",
"noActiveRestrictions": "Non habes restrictiones activae.",
"openUser": "User aperuit<a href=\"tg://user?id={{id}}\">{{name}}</a>",
"restriction": "• {{type}} \"{{reason}}\"ante{{end}}in chat\"{{title}}\""
},
"stats": {
"cache": {
"cas": "cache CAS",
"chats": "chat cache",
"members": "particeps cache",
"users": "cashe utilisateur"
},
"description": "Ut technica mutant",
"queue": {
"messages": "Mittens Nuntium Queue",
"updates": "Eventu Queue"
},
"uptime": "uptime"
},
"support": {
"description": "",
"header": "Informationes missi subsidii!"
},
"support_chat": {
"description": "",
"header": ""
},
"support_user": {
"description": "",
"header": ""
},
"sync": {
"complete": "Synchronisatio completa est!",
"description": "Synchronize chat moderatores"
},
"terms": {
"description": ""
},
"unban": {
"description": "Unblock utentis",
"notFoundRestrictions": "Usoris non impeditur!",
"ok": "A user unblocked!"
},
"unmute": {
"description": "Confusa del usuario",
"notFoundRestrictions": "A user non torquetur!",
"ok": "A user defatigatus est!"
},
"user": {
"activeban": "Bannum activum: ",
"activemute": "Active mutationem: ",
"attach": "",
"attachMedia": "",
"attaches": "",
"body": {
"aloneGlobalBan": "",
"bans": "Bannum activum:{{bans}} Summa bans: {{total_bans}}",
"join": "",
"mutes": "Active mutus: {{mutes}} Mutov totalis: {{total_mutes}}",
"status": "",
"warns": "Activa monita:{{warns}} Общие предупреждения:{{total_warns}}"
},
"cancel": "Cancel",
"cancelled": "Restrictio elevata est!",
"deleted": "Restrictio remota!",
"description": "Adepto user notitia",
"edit_reason": "Edit causa",
"header": {
"chat": "Informazioni sul canale{{title}}:",
"user": "User Notitia<a href=\"tg://user?id={{id}}\">{{name}}</a>:"
},
"messages": "Epistulae: {{messages}}",
"noRestrictions": "Non restrictiones",
"reputation": "Reputatio: ",
"restriction": "{{type}} №{{id}} ante {{until}}\nUsor: {{restricted}}\nCausa: {{reason}}\nEditiones: {{issue_date}}\nModerator: {{moder}}\n{{canceled}}",
"restrictionNotFound": "Restrictio non inventa!",
"showMedia": "",
"showMessage": "Videre nuntium",
"uncancel": "Restituere",
"uncanceled": "Restrictio restituta est!",
"updateReason": "Intra novam causam restrictionis, hodiernam: ",
"warns": "Monitum ",
"workers": ""
},
"userreport": {
"chatJoin": "",
"chatStatus": "",
"description": "",
"firstName": "",
"header": "",
"messages": "epistulae",
"reports": {
"count": "famam",
"element": "",
"rate": ""
},
"restrictions": {
"issued": {
"empty": "",
"list": ""
},
"received": {
"empty": "",
"list": ""
}
},
"sent": "Ego misit notitia in privatis epistulae!",
"username": ""
},
"warn": {
"cancel": "",
"description": "User admonitio ad normam",
"onlyUsers": "Monitum alteri administratori ferre non potes!"
}
},
"extends": "en",
"general": {
"Create": "Сreo",
"Delete": "Delere",
"Disable": "Unplug",
"Edit": "Edit",
"Enable": "Turn in",
"Forever": "Perpetuum",
"Never": "",
"Trigger": "Trigger",
"add": "Addere",
"all": "",
"automoderation": "Auto-modum",
"back": "Retrorsum",
"ban": "bannum",
"ban_few": "bannum",
"ban_many": "bans",
"ban_zero": "bans",
"bot": {
"description": "Imperial bot pro moderatione.\nProgressus et firmamentum: @sleeplesscode\nChannel: @imperium_guard",
"name": "Custodia Imperialis"
},
"canceled": "annuler",
"captcha": {
"agree": "Concordia",
"emoji": "Emoji-bullae",
"null": "Disabled"
},
"chatMemberStatus": {
"administrator": "administrator",
"creator": "curabitur dominus",
"kicked": "excluduntur in chat",
"left": "not in the chat",
"member": "они участвуют в чате",
"null": "unknown",
"restricted": "limited"
},
"close": "Close",
"command": "Team",
"commandRestriction": {
"administrator": "",
"creator": "",
"group": "",
"none": ""
},
"confirm": "✅ Consentire",
"delete": "Remove",
"disabled": "turned off",
"edit": "Edit",
"enabled": "enabled",
"errors": {
"chatNotFound": "Curabitur non inventus est!",
"cooldown": "",
"notAvaliable": "",
"notEnoughRights": "",
"notEnoughRightsToRestrict": "",
"pmlock": "",
"selfInteract": "",
"telegramRestrictedSending": ""
},
"fileStatus": {
"approved": "",
"automated": "",
"denied": "",
"processing": ""
},
"infinity": "forever",
"intervals": {
"M": "mensis",
"d": "days",
"h": "hora",
"m": "minuta",
"y": "annus"
},
"links": "",
"media": "",
"modRule": {
"ban": "Obstructionum",
"delete": "Delere nuntium",
"ignore": "Ignorare",
"kick": "Excludere",
"message": "",
"mute": "Muta",
"notify": "Certiorem",
"null": "non installatur",
"reputation": "",
"undefined": "",
"warn": "Delere per monitionem"
},
"nativeTask": {
"name": {
"clear_deleted": ""
},
"status": {
"0": "",
"1": "",
"2": "",
"3": "",
"4": ""
}
},
"notSet": "non installatur",
"notlinked": "non coniunctum",
"permissions": {
"delete_messages": "",
"manage_restrictions": "",
"remove_restrictions": "",
"reports": "",
"restrict_ban": "",
"restrict_mute": "",
"restrict_warn": "",
"settings": ""
},
"restricted": "Non satis sunt permissiones ad hoc mandatum faciendum!",
"restrictionType": {
"ban": "ban",
"mute": "mutus",
"note": "nota",
"warn": "monitum"
},
"restrictions": {
"adminCommand": "Administrativus quadrigis",
"aiReport": "",
"automod": "Automoderation",
"ban": "Moderator{{user}} interdictum a user {{restricted}} ratione \"{{reason}}\"",
"banChannel": "Moderator {{user}} canalem dominum interdictum {{restricted}} epistulas incerti auctoris causa mitte \"{{reason}}\"",
"chatAdminRequired": "",
"duration": "",
"kick": "Moderator {{user}} calce de usuario {{restricted}} ratione \"{{reason}}\"",
"mute": "Moderator {{user}} confusa del usuario {{restricted}} ratione \"{{reason}}\"",
"note": "Nota for {{restricted}} cum textu \"{{reason}}\" creata",
"participantId": "Bannum in gradu Telegram API ferre non potuit, informationes de scandalo servatae sunt in charta usoris.",
"reason": "",
"warn": "Moderator {{user}} denuntiationem in usuario {{restricted}} ratione \"{{reason}}\" ({{warns}}/{{max_warns}})",
"warnsLimit": "monitum terminum"
},
"save": "",
"selector": {
"admins": "Administratores",
"all": "Omnes participes",
"disabled": "Disabled",
"owner": "Dominus",
"undefined": "non installatur"
},
"set": "installed",
"settings": {
"audit": "Audit",
"automod": {
"bansSystems": {
"header": "",
"name": ""
},
"cas": {
"name": "Reactionem ad CAS-ban"
},
"contacts": {
"name": "Contactus moderatio"
},
"delStickers": {
"name": "Removere stickers"
},
"deleteCommands": {
"name": "Alia mandata delere"
},
"flood": {
"name": "Spam moderatione"
},
"games": {
"name": "Ludus moderatio"
},
"gas": {
"name": "Reactionem ad GAS-bannum"
},
"header": "Lorem chat moderatio occasus {{title}}",
"hideTriggerMessage": {
"name": ""
},
"location": {
"name": "Moderatio locorum"
},
"mediaCheck": {
"detection": "",
"duration": "",
"name": "",
"punishment": "",
"sent": ""
},
"mediaSpamCheck": {
"count": {
"name": ""
},
"duration": {
"name": ""
},
"header": "",
"interval": {
"name": ""
},
"name": "",
"punishment": {
"name": "poena"
}
},
"messageModeration": {
"header": "",
"name": ""
},
"muteOnPermission": {
"name": "Duratio restrictiones cum moderatione utens mandata"
},
"newbieRestrictions": {
"name": "Durationem inceptor restrictiones"
},
"raid": {
"header": "",
"interval": {
"name": ""
},
"name": "",
"threshold": {
"name": ""
}
},
"reactionsUntilBan": {
"name": "Reactiones ante banum"
},
"spamLike": {
"name": "Spam"
},
"stickers": {
"blood-blood": {
"name": "Sanguis et violentia"
},
"clear": {
"description": "",
"name": ""
},
"crash": {
"name": "Crash-stickers"
},
"epileptic": {
"name": "Epilepticos"
},
"null": {
"description": "",
"name": ""
},
"politics": {
"name": "Policy"
},
"politics-nazi": {
"name": "Nazismus"
},
"porn": {
"name": "Pornographia"
},
"unknown": {
"description": "",
"name": ""
}
},
"stories": {
"name": "Moderatio fabulis"
},
"textSpamCheck": {
"count": {
"name": ""
},
"duration": {
"name": ""
},
"header": "",
"interval": {
"name": ""
},
"name": "",
"punishment": {
"name": "poena"
}
},
"trigger": {
"name": "Triggers"
},
"triggers": {
"header": "",
"name": "Triggers"
}
},
"category": {
"automod": "Automoderation",
"customs": "Aliquam occasus",
"language": "Lingua",
"permissions": "",
"privates": "",
"reports": "Querimonia occasus",
"special": "Specialis",
"warns": "monitum"
},
"changingChat": "",
"changingPM": "",
"channels": {
"admins": "Administratores chat",
"admins_selected": "Vinculum admin chat ad chat {{title}}",
"logs": "Fama channel",
"logs_selected": "Channel binding nom du chat {{title}}",
"triggers": "Trigger channel",
"triggers_selected": "Channel binding triggers in chat {{title}}"
},
"customs": {
"acceptJoins": {
"name": ""
},
"admins": {
"name": "Сommand !admins"
},
"anonPerm": {
"menu": "",
"name": "Iura anonymous administratores"
},
"anon_perms": {
"restrict": "Issuance limitations"
},
"captcha": {
"agree": "Concordia",
"name": "Captcha"
},
"channelPost": {
"name": "Textus sub poste"
},
"channels": {
"menu": "",
"name": "Channel binding"
},
"command_restrictions": {
"name": ""
},
"commands": {
"name": "Consuetudo commands"
},
"commands_mode": {
"header": "",
"moderation": {
"name": "Reactionem command moderatio"
},
"name": "",
"others": {
"name": "Reactionem aliorum commands"
},
"user": {
"name": ""
}
},
"disableNotifications": {
"name": ""
},
"extendedModtop": {
"name": "Provectus modtop"
},
"greeting": {
"name": "Salvete"
},
"header": "Customization occasus in chat {{title}}",
"messagesAutoRemove": {
"name": ""
},
"modtop": {
"name": "Aditus ad modtop"
},
"nightMode": {
"header": "",
"name": ""
},
"nightModeDisableTime": {
"name": ""
},
"nightModeEnableTime": {
"name": ""
},
"notifications": {
"header": "",
"name": ""
},
"notificationsTopic": {
"name": ""
},
"reactions": {
"name": "Reactiones in responsione"
},
"reputation": {
"name": "Systema fama"
},
"statistics": {
"header": "",
"name": ""
},
"statisticsRange": {
"name": "",
"selected": ""
},
"tokens": {
"name": "Signa"
}
},
"headerChat": "Chat occasus {{title}}",
"headerPM": "",
"incorrect_interval": "Valor invalidus, intrant intervallum",
"incorrect_number": "Valor invalidus, intra numerum",
"inputChangingChat": "",
"inputChangingPM": "",
"language": {
"header": "Linguam eligere ut in chat adhiberi"
},
"permissions": {
"admins": {
"add": "",
"adding": "",
"edit": {
"change_group": "",
"changing_group": "",
"header": ""
},
"group": "",
"header": "",
"name": ""
},
"advancedModers": {
"name": ""
},
"description": "",
"fake_group": "",
"groups": {
"create": {
"button": "",
"header": "",
"priority": ""
},
"edit": {
"header": "",
"name": {
"button": "",
"header": ""
},
"permissions": {
"button": ""
},
"priority": {
"button": "",
"header": ""
}
},
"header": "",
"name": "",
"permissions": ""
},
"header": ""
},
"privates": {
"header": "",
"timezone": {
"name": ""
}
},
"reports": {
"deleteReports": {
"name": "Minimum numerus querelis per utentes deletis epistulae"
},
"deleteReportsCount": {
"name": "Minimum numerum tradit a user habet nuntium delere"
},
"deleteReportsRate": {
"name": "Minimum persona rating for delere nuntium"
},
"header": "Chat fama occasus {{title}}",
"reportsSystem": {
"name": "Reporting system"
}
},
"special": {
"clear_deleted": {
"button": "Patet delevit rationes",
"description": "Permittit tibi rationes delere e indice participantium et usorum obstructorum."
},
"header": "Additional chat optiones {{title}}\nChat statera:{{balance}}",
"index_old": {
"button": "Index vetus nuntia",
"description": "Custodi permittit ut omnes nuntios examinare antequam eas ad chat addendo.",
"started": "Munus discendi historiam chat incepit!"
},
"kick_inactive": {
"button": "Excludere iners users",
"description": "Omnes participes iners excludit a chat ad tempus electum",
"progress": "Deletum {{progress}} in {{users}}!",
"request": "Specificare minimam actionem intervallum, omnes utentes cum magno excludentur.",
"request_confirm": "Intervallum electus est {{interval}}, exclusa est {{users}} users!",
"success": "Deletionem perficitur, exclusa {{users}}!"
},
"not_enough_balance": "Non sufficit ⭐️ il tuo account chat!",
"price": "Pretium: ",
"start": "Incipias!",
"started": "Negotium queued, notitiam de principio et fine accipietis!",
"tasks": {
"button": ""
},
"topup": {
"button": "Summo sursum vestri statera",
"how_many": "Quot stellae vis ad stateram chat transferre?",
"pay": "Transferre",
"positive": "Intra numerum positivum!",
"successful": "Transferre feliciter perficitur!",
"title": "Transferre of chat stars {{title}}"
}
},
"timeZoneInfo": "Ad tempus temporis specificare, tempus debitum specificare in forma \"UTC+N \"vel\"GMT+N\". Forma IANA \"Europa/Moscuae\" etiam uti potes, in hoc casu autocinetum automatice rationem diei temporis salutaris habebit, nota quaeso quod civitatem quam vis publice ostendi non erit et sponte ad formam convertetur GMT+N.",
"warns": {
"cooldown": {
"name": "Cooldown varna ad unum hominem"
},
"header": "Occasus varna in chat {{title}}",
"maxWarns": {
"name": "Numerus varns antequam poena editur"
},
"warnLength": {
"name": "Durationem varna"
},
"warnsResult": {
"name": "poena"
},
"warnsResultLength": {
"name": "Duratio poenae ad maximum numerum varns"
}
}
},
"spam": "Spam",
"token": "Token",
"unknown": {
"channel": "Canale ignotum",
"user": "Ignota user"
},
"until": "ante"
},
"handlers": {
"adminsChange": "Mutatio administratorum detecta est, index administratorum renovatus est!",
"captcha": {
"again": "Iam expertus es!",
"agree": "Click a button inferius intrare curabitur in chat!",
"agreed": "✅ Consentire",
"correct": "Vernaux!",
"emoji": "Ad confirmandum te non esse bot, deprime: {{correct}}",
"wrongUser": "Non est tuum captcha!"
},
"chatJoin": {
"raid": "Inventa est expeditio! {{joins}} users initium {{interval}}. Incursio modus reducitur, utere /raidmode ut disable eam."
},
"file": {
"got": "Irritum contentus\" {{type}} in chat {{title}}}"
},
"hello": {
"full": "Gratias addendo mihi ut admin! Nunc paratus sum ad operandum!",
"restricted": "Gratias addit ad chat! Ut incipias, me administratoribus adde et iura mihi da epistulas delere et utentes restringere. Posteaquam paratus ero ire!"
},
"linksChecker": {
"reason": ""
},
"migrate": "Cohors migravit ad supergroup!",
"nativeBan": "Native bannum",
"nightMode": {
"disable": "",
"enable": ""
},
"reactions": {
"notify": "{{user}} pro mittendis mutationibus per mutos interdictum esse potes!",
"reason": "motus in muta"
},
"reputation": {
"down": "Fama reducta!",
"up": "Fama auctus!"
},
"stickerInfo": {
"pack": "",
"report": "",
"single": ""
},
"trigger": {
"got": "Triggering {{name}} in chat {{title}}: {{text}}"
}
},
"native": {
"clear_deleted": {
"clearing": "",
"collecting": "",
"finished": "Purgatio rationum deleta completa est!\nAdmin delevit:{{admins}}\nErrores deletionis ex Parte Telegram:{{errors}}",
"started": "Negotium purgatio rationum deleta incepit!"
}
},
"scenes": {
"addAttach": {
"enter": ""
},
"addCommand": {
"enterCommand": "Intrant mandatum:"
},
"addToken": {
"created": "Token {{name}} generatae!",
"enterName": "Intrant token signum:"
},
"addTrigger": {
"condition": {
"badwordsRU": "Lingua obscena(Russica)",
"command": "Command",
"contains": "Textum continet",
"match": "Prorsus compositus",
"regex": "Lusto expressio"
},
"enterAction": "Actionem felis eligere:",
"enterCommand": "Intra imperium quod felis erit:",
"enterConditionType": "Genus conditionis felis eligere:",
"enterContains": "Intrant textum ut nuntius ad expediendas contineat:",
"enterDuration": "Intrant durationem restrictionis:",
"enterMatch": "Intrant textum nuntii ad operandum cum:",
"enterMessage": "Intrant nuntium quem mittis:",
"enterName": "Intra nomen felis:",
"enterRegex": "Intra iusto expressio pro felis (experiri in regex101.com):",
"enterReputation": "Intra quantitatem famae addere:",
"enterReputationGetter": "Eligite susceptorem famae:",
"enterSource": "",
"enterTriggerAtEdit": "",
"reputation": {
"replier": "User qui responsum accepit",
"sender": "Nuntius mittentis"
},
"source": {
"bio_text": "",
"linked_channel_text": "",
"message_text": "",
"name_text": ""
}
},
"announce": {
"done": "",
"enter": "",
"sendMessage": ""
},
"command_restrictions": {
"add_permissions": "",
"add_reports_reputation": "Fama postulationem addere",
"add_reputation": "Curabitur addere postulationem famae",
"edit_permissions": "",
"edit_reports_reputation": "Mutare renuntiationes famae postulationem",
"edit_reputation": "Nom du chat",
"enter_command": "Intrant command",
"enter_new_reports_reputation": "Intra numerum requiritur fama tradit",
"enter_new_reputation": "Intra quantitatem famae requiritur",
"enter_permission": "",
"enter_reports_reputation": "Intra numerum requiritur fama tradit",
"enter_reputation": "Intrant quantitatem famae requisitae in chat",
"header": "Commands restrictiones in chat{{title}}",
"info": "Limitandi usum comands:",
"no_restrictions": "",
"notFound": "Restrictio non inventa!",
"remove_permissions": "",
"remove_reports_reputation": "Noli postulare famam renuntiationis",
"remove_reputation": "",
"reports_reputation": "",
"reputation": "",
"skip_reports_reputation": "",
"skip_reputation": ""
},
"commands": {
"enterText": "Intra responsum textum:",
"header": "Commands is chat {{title}}:",
"notFound": "Commands non inventum est!"
},
"editCommand": {
"editAliases": "Edit aliases",
"editText": "Edere textum",
"header": "Commands edere - {{id}}\nAlias:{{aliases}}\n\n{{text}}"
},
"editCommandAlias": {
"header": "Commands edere - {{id}}\nAddere alias, mitte ad chat."
},
"editReason": {
"cancel": ""
},
"editTrigger": {
"header": ""
},
"general": {
"placeholders": ""
},
"links_list": {
"back": "Retrorsum"
},
"mass": {