-
Notifications
You must be signed in to change notification settings - Fork 3
/
Strings.ts
1050 lines (1050 loc) ยท 97.7 KB
/
Strings.ts
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
export const Strings = {
"hyphen_reply": {
"he": "ืืืืื ืืชื ืืืื ืฉืืฉืชืืฉืช ืืืงืฃ?",
"en": "Are you sure you used a hyphen correctly?",
"la": "Certusne tu adhibuisse recte eo iungente te?",
"fr": "รtes-vous sรปr d'avoir correctement utilisรฉ un tiret?"
}, "command_spam_reply": {
"he": "ืืืื ืืื ืชืืจืืข ืขื ืืคืงืืืืช. ืืื, ืื ื ืื ืืงืฉืื ืื ืืืชืจ ืขื %s:%s.",
"en": "OK kid, calm down with the commands, will you? that's it, I'm not listening to you anymore until %s:%s.",
"la": "",
"fr": "OK gamin, calme-toi avec les ordres, รงa y est, je ne t'รฉcoute plus jusqu'ร %s:%s."
}, "filter_spam_reply": {
"he": "ืืื ืคืืืืจืื ืฉืืืืื ืคื? ืื ื ืืืื ืืืฉืื ืขื %s:%s",
"en": "How many filters are you guys sending here? I'm going to sleep until %s:%s",
"la": "",
"fr": "Combien de filtres vous envoyez ici les gars? Je vais dormir jusqu'ร %s:%s"
}, //filters
"add_filter": {
"he": /^ืืืกืฃ ืคืืืืจ/i, "en": /^Add filter/i, "la": "Crea invenientem", "fr": /^Ajoute le filtre/i
}, "add_filter_reply": {
"he": "ืืคืืืืจ %s ื ืืกืฃ ืืืฆืืื",
"en": "The filters %s has been successfully added",
"la": "Invenientem %s creatur feliciter",
"fr": "Le filtre %s ร รฉtรฉ ajoutรฉ avec succรจs"
}, "add_filter_already_exists_error": {
"he": "ืืคืืืืจ %s ืืืจ ืงืืื ืืืืืจ ืฉื ืงืืืฆื ืื \nืื ืืชื ืจืืฆื ืืขืจืื ืืืชื ืชืืชืื ืืช ืื: ืขืจืื ืคืืืืจ %s - %s",
"en": "The filters %s already exists in this group\n If u want to edit the filters please write this:\n Edit filters %s - %s",
"la": "Reprehendentem %s iam in systemae est\nScribe 'recense invenientem %s - %s' recensitum reprehendentem",
"fr": "Le filtre %s existe dรฉjร dans ce groupe\n si vous souhaitez modifier le filtre, รฉcrivez ceci:\n Modifie le filtre %s - %s"
}, "remove_filter": {
"he": /^ืืกืจ ืคืืืืจ/i, "en": /^Remove filter/i, "la": "Dele invenientem", "fr": /^Supprime le filtre/i
}, "remove_filter_reply": {
"he": "ืืคืืืืจ %s ืืืกืจ ืืืฆืืื",
"en": "The filters %s has been successfully removed",
"la": "Invenientem %s deletur feliciter",
"fr": "Le filtre %s a รฉtรฉ supprimรฉ avec succรจs"
}, "remove_filter_doesnt_exist_error": {
"he": "ืจืง ืืืืืื ืืืื ืืืืืง ืคืืืืจ ืฉืื ืงืืื",
"en": "Only the god of light and all that is good can can delete a filters which doesn't exist",
"la": "Deus Iupiter solum potest delere invenientem qui non exsistit",
"fr": "Seul le dieu de la lumiรจre et tout ce qui est bon peut supprimer un filtre qui n'existe pas"
}, "group_doesnt_have_filters_error": {
"he": "ืืื ืคืืืืจืื ืืงืืืฆื ืื",
"en": "This group doesn't have any filters",
"la": "Coetus hoc non habet invenientes",
"fr": "Ce groupe n'a aucun filtres"
}, "edit_filter": {
"he": /^ืขืจืื ืคืืืืจ/i, "en": /^Edit filter/i, "la": "Recense invenientem", "fr": /^Modifie le filtre/i
}, "edit_filter_reply": {
"he": "ืืคืืืืจ %s ื ืขืจื ืืืฆืืื",
"en": "The filters %s has been successfully edited",
"la": "Invenientem %s recensetur felicitur",
"fr": "Le filtre %s a รฉtรฉ modifiรฉ avec succรจs"
}, "edit_filter_not_existent_error": {
"he": "ืกืืืื ืืืืื ืืื ืื ืืคืฉืจ ืืขืจืื ืคืืืืจ ืฉืื ืงืืื",
"en": "Apologies good sir, but you tried to edit a filter which doesn't exist in this group",
"la": "Paenito, mihi amice, sed recensere invenientem non exsistentem impossibile est",
"fr": "Dรฉsolรฉ monsieur, mais vous avez essayรฉ de modifier un filtre qui n'existe pas dans ce groupe"
}, "filter_not_filter_material_error": {
"he": "ืืคืืืืจ ืฉื ืืกืืช ืืืืกืืฃ ืืื ื ืืงืกื, ืชืืื ื ืื ืกืจืืื",
"en": "The filter you tried to add isn't text, an image or a video",
"la": "",
"fr": "Le filtre que vous avez essayรฉ d'ajouter n'est pas un texte, une image ou une vidรฉo"
}, "show_filters": {
"he": /^ืืจืื ืคืืืืจืื/i,
"en": /^Show filters/i,
"la": /^Ostende invenientes/i,
"fr": /^Affiche les filtres/i
}, "filter_type_image": {
"he": "[ืชืืื ื]", "en": "[Image]", "la": "", "fr": "[Image]"
}, "filter_type_video": {
"he": "[ืืืืื]", "en": "[Video]", "la": "", "fr": "[Video]"
}, "filter_type_audio": {
"he": "[ืฉืืข]", "en": "[Audio]", "la": "", "fr": "[Audio]"
}, "filter_type_sticker": {
"he": "[ืกืืืงืจ]", "en": "[Sticker]", "la": "", "fr": "[Sticker]"
}, //tags
"tag_person": {
"he": /^ืชืืื /i, "en": /^Tag /i, "la": "Clama ad ", "fr": /^Tag /i
}, "tag_person_doesnt_exist_error": {
"he": "ืืชื ืืืื ืฉืฆืืงืช ืืฉื? ืืื ืืงืจื ืืืื ืฉื ืืกืืช ืืชืืื ืื ื ืืฆื ืคื",
"en": "The person you tried to tags doesn't exist",
"la": "Quem debeo clamare? Is/ea non exsistet",
"fr": "La personne que vous avez essayรฉ de taguer n'existe pas"
}, "add_tag": {
"he": /^ืืืกืฃ ืืืจ ืืชืืื/i,
"en": /^Add tag buddy/i,
"la": "Adde amicum",
"fr": /^Ajoute la personne au tag/i
}, "add_tag_reply": {
"he": "ืืกืคืจ ืืืืคืื ืฉื ืืืื %s ื ืืกืฃ ืืืฆืืื",
"en": "The phone number of the person %s has been successfully added",
"la": "Amicum %s additur feliciter",
"fr": "Le numรฉro de tรฉlรฉphone de la personne %s a รฉtรฉ ajoutรฉ avec succรจs"
}, "add_tag_already_exists_error": {
"he": "ืืืื %s ืืืจ ืงืืื ืืงืืืฆื ืื",
"en": "The person %s already exists in this group's database",
"la": "Amicum %s iam exsistet in sistema",
"fr": "La personne %s existe dรฉjร dans la base de donnรฉes de ce groupe"
}, "add_tag_doesnt_exist_error": {
"he": "ืืกืคืจ ืืืืคืื ืื ืงืืื ืืงืืืฆื ืื",
"en": "This phone number does not exist in this group",
"la": "Amicum non exsistet in coetu",
"fr": "Ce numรฉro de tรฉlรฉphone n'existe pas dans ce groupe"
}, "remove_tag": {
"he": /^ืืกืจ ืืืจ ืืชืืื/i,
"en": /^Remove tag buddy/i,
"la": "Dele amicum",
"fr": /^Supprime la personne du tag/i
}, "remove_tag_reply": {
"he": "ืืกืคืจ ืืืืคืื ืฉื ืืืื %s ืืืกืจ ืืืฆืืื",
"en": "The phone number of the person %s has been successfully removed",
"la": "Amicum %s delitur feliciter",
"fr": "Le numรฉro de tรฉlรฉphone de la personne %s a รฉtรฉ supprimรฉ avec succรจs"
}, "remove_tag_doesnt_exist_error": {
"he": "ืจืง ื ืคืืืืืื ืืืื ืืืืืง ืื ืฉืื ืื ืงืืืืื",
"en": "Only Napoleon can remove people who don't exist",
"la": "Napoleonus solum potest delere amici non exsistentes",
"fr": "Seul Napolรฉon peut supprimer des personnes qui n'existent pas"
}, "group_doesnt_have_tags_error": {
"he": "ืืื ืชืืืืื ืืงืืืฆื ืื",
"en": "This group doesn't have any tags",
"la": "Hoc coetus non habet amici",
"fr": "Ce groupe n'a aucun tags"
}, "tag_all": {
"he": /^ืชืืื ืืืื/i, "en": /^Tag everyone/i, "la": "Clama ad quoque", "fr": /^Tag tout le monde/i
}, "show_tags": {
"he": /^ืืจืื ืจืฉืืืช ืืืจืื ืืชืืื/i,
"en": /^Show tag buddies/i,
"la": "Ostende amici",
"fr": /^Affiche la liste des personnes taguรฉes/i
}, "check_tags": {
"he": /^ืืืืง ืืืื ืชืืืืื ื/i, "en": /^Check my tags/i, "la": "", "fr": /^Vรฉrifie oรน j'ai รฉtรฉ taguรฉ/i
}, "check_tags_reply": {
"he": "ืื ื ืชืืืื, ืืืื ื ืืืื",
"en": "You've been tagged here, Good Sir",
"la": "",
"fr": "Vous avez รฉtรฉ taguรฉ ici, monsieur"
}, "check_tags_no_messages_error": {
"he": "ืื ืชืืืืืช ืืื ืฉืื ื ืืืืจ ืืช ืขืฆืื",
"en": "You haven't been tagged for as long as I can remember myself",
"la": "",
"fr": "Vous n'avez pas รฉtรฉ taguรฉ depuis aussi longtemps que je me souvienne de moi"
}, "clear_tags": {
"he": /^ื ืงื ืชืืืืื/i, "en": /^Clear my tags/i, "la": "", "fr": /^Efface mes tags/i
}, "clear_tags_reply": {
"he": "ื ืืงืชื ืจืฉืืืช ืชืืืื",
"en": "Your tag list has been cleared",
"la": "",
"fr": "Votre liste de tags a รฉtรฉ effacรฉe"
}, "create_tag_list": {
"he": /^ืฆืืจ ืจืฉืืื ืืชืืื/i, "en": /^Create tag list/i, "la": "", "fr": /^Crรฉe une liste de tags/i
}, "create_tag_list_reply": {
"he": "ืืจืฉืืื ืืชืืื ื ืืฆืจื ืืืฆืืื ืืจืืื",
"en": "The tag list has been created",
"la": "",
"fr": "La liste de tags a รฉtรฉ crรฉรฉe"
}, "create_tag_list_empty_error": {
"he": "ืกืืืื ืืืืื, ืื ื ืื ืืืื ืืืฆืืจ ืจืฉืืืช ืชืืื ืจืืงื",
"en": "I simply cannot create an empty tag list",
"la": "",
"fr": "Je ne peux tout simplement pas crรฉer une liste de tags vide"
}, "next_tag_list": {
"he": /^ืืื ืืชืืจ/i, "en": /^Next in line/i, "la": "", "fr": /^Au suivant/i
}, "tag_list_next_reply": {
"he": "ืืืื ืืื ืืชืืจ (ืืืืืจ ืขืืฉืื!) ืืื %s ืืืืจืื %s (ืื ืชืืื ืืืื!) \nืืื ืืขืืืจ ืืืืฉ ืืื, ืืชืื 'ืืื ืืชืืจ'",
"en ": "The next person in the que (which means now!) is %s and after them it's %s (so be ready!) \n To go the next person, write 'Next in line'",
"la": "",
"fr": "La personne suivante dans la file d'attente (c'est-ร -dire maintenant!) est %s et aprรจs elle, c'est %s (soyez donc prรชt!) \n Pour passer ร la personne suivante, รฉcrivez 'Au suivant'"
}, "tag_list_last_reply": {
"he": "ืืืื ืืื ืืจืฉืืื ืืื ื ืืืืจืื: %s",
"en": "The next person in the list is the last one: %s",
"la": "",
"fr": "La personne suivante dans la liste est la derniรจre: %s"
}, "add_tagging_group": {
"he": /^ืืืกืฃ ืงืืืฆืช ืชืืื/i, "en": /^Add tagging group/i, "la": "", "fr": /^Ajoute un groupe de tags/i
}, "add_tagging_group_reply": {
"he": "ืงืืืฆืช ืืชืืื %s ื ืืกืคื ืืืฆืืื",
"en": "The tagging group %s has been added successfully",
"la": "",
"fr": "Le groupe de tags %s a รฉtรฉ ajoutรฉ avec succรจs"
}, "add_tagging_group_already_exists_error": {
"he": "ืงืืืฆืช ืืชืืื %s ืืืจ ืงืืืืช ืืงืืืฆื",
"en": "The tagging group %s already exists in the database",
"la": "",
"fr": "Le groupe de tags %s existe dรฉjร dans la base de donnรฉes"
}, "add_tagging_group_invalid_people_error": {
"he": "ืืืื ืื ืืฉืืืช ืฉื ืชืช ืื ืืื ืืคืืื ืืื ืืื ืืงืืืฆื... ืื ืืืืืง ืืชื ืจืืฆื ืฉืื ื ืืขืฉื?",
"en": "Out of all the names you've given me, not even one of them is in the group!",
"la": "",
"fr": "De tous les noms que vous m'avez donnรฉs, aucun d'entre eux n'est dans le groupe!"
}, "add_tagging_group_no_people_error": {
"he": "ืชืืืืง ืฉืืฉืชืืฉืช ืืคืืจืื ืื ืืื ืืืืกืคืช ืฉืืืช: ืืืกืฃ ืงืืืฆืช ืชืืื ืื ื ื - ืืฉื, ืืืกื, ืฉืืื",
"en": "Check you've used the correct format for adding names: \nAdd tagging group Banana - Moshe, Joseph, Shalom",
"la": "",
"fr": "Vรฉrifiez que vous avez utilisรฉ le bon format pour ajouter des noms: \nAjoute un groupe de tags Banane - Moshe, Joseph, Shalom"
}, "remove_tagging_group": {
"he": /^ืืกืจ ืงืืืฆืช ืชืืื/i,
"en": /^Remove tagging group/i,
"la": "",
"fr": /^Supprime le groupe de tags/i
}, "remove_tagging_group_reply": {
"he": "ืงืืืฆืช ืืชืืื %s ืืืกืจื ืืืฆืืื",
"en": "The tagging group %s has been removed successfully",
"la": "",
"fr": "Le groupe de tags %s a รฉtรฉ supprimรฉ avec succรจs"
}, "remove_tagging_group_does_not_exist_error": {
"he": "ืจืง ืกืืชื ืืฉื ืืืืื ืืืืืง ืงืืืฆืืช ืชืืื ืฉืื ืงืืืืืช",
"en": "Only grandma can remove non-existant groups",
"la": "",
"fr": "Seule grand-mรจre peut supprimer des groupes qui n'existent pas"
}, "tagging_group": {
"he": "ืงืืืฆืช ืชืืืืื: ", "en": "Tagging group: ", "la": "", "fr": "Groupe de tags: "
}, "add_person_to_tagging_group": {
"he": /^ืืืกืฃ ืืช (.+) ืืงืืืฆืช ืืชืืื (.+)/i,
"en": /^Add (.+) to tagging group (.+)/i,
"la": "",
"fr": /^Ajoute (.+) au groupe de tags (.+)/i
}, "remove_person_from_tagging_group": {
"he": /^ืืกืจ ืืช (.+) ืืงืืืฆืช ืืชืืื (.+)/i,
"en": /^Remove (.+) from tagging group (.+)/,
"la": "",
"fr": /^Supprime (.+) du groupe de tags (.+)/i
}, "add_person_to_tagging_group_reply": {
"he": "ืืืื %s ื ืืกืฃ ืืงืืืฆืช ืืชืืื %s",
"en": "The person %s has been successfully added to the tagging group %s",
"la": "",
"fr": "La personne %s a รฉtรฉ ajoutรฉe avec succรจs au groupe de tags %s"
}, "add_person_to_tagging_group_already_exists_error": {
"he": "ืืืื %s ืืืจ ื ืืฆื ืืงืืืฆืช ืืชืืื %s",
"en": "The person %s is already in the tagging group %s",
"la": "",
"fr": "La personne %s est dรฉjร dans le groupe de tags %s"
}, "tagging_group_group_doesnt_exist_error": {
"he": "ืงืืืฆืช ืืชืืื %s ืื ืงืืืืช ืืงืืืฆื ืื",
"en": "The tagging group %s does not exist in this group",
"la": "",
"fr": "Le groupe de tags %s n'existe pas dans ce groupe"
}, "person_doesnt_exist_in_this_group_error": {
"he": "ืืืื %s ืื ืงืืื ืืงืืืฆื ืื",
"en": "The person %s does not exist in this group",
"la": "",
"fr": "La personne %s n'existe pas dans ce groupe"
}, "remove_person_from_tagging_group_reply": {
"he": "ืืืื %s ืืืกืจ ืืงืืืฆืช ืืชืืื %s",
"en": "The person %s has been successfully removed from the tagging group %s",
"la": "",
"fr": "La personne %s a รฉtรฉ supprimรฉe avec succรจs du groupe de tags %s"
}, "remove_person_from_tagging_group_does_not_exist_error": {
"he": "ืืืื %s ืื ื ืืฆื ืืงืืืฆืช ืืชืืื %s",
"en": "The person %s is not in the tagging group %s",
"la": "",
"fr": "La personne %s n'est pas dans le groupe de tags %s"
}, "tagging_group_no_more_persons_error": {
"he": "ืื ืืื ืฉืื ืืงืืืฆืช ืืชืืื %s ื ืืืงื ืืืื ืืงืืืฆื ืืืกืจื",
"en": "All the people in the tagging group %s have been deleted so the tagging group has been removed",
"la": "",
"fr": "Toutes les personnes du groupe de tags %s ont รฉtรฉ supprimรฉes, le groupe de tags a donc รฉtรฉ supprimรฉ"
}, "tags_removed_problematic_tag_error": {
"he": "ืืชืืืืื ืืงืืืฆื ืื ื ืืฆืื ืืขืืืชืืื. ืืืชืื ืืื ืืื ืืืืช, ืื ืืืื ื ืืืงื. ืืื ืืื!",
"en": "The tags in this group has been found to be troublesome. In accordance, all the tags in this group have been deleted. Good day!",
"la": "",
"fr": "Les tags de ce groupe se sont avรฉrรฉs gรชnants. Conformรฉment, tout les tags de ce groupe ont รฉtรฉ supprimรฉs. Bonne journรฉe"
}, "personIn_removed_problematic_error": {
"he": "ืจืฉืืืช ืืื ืฉืื ืืงืืืฆื ืื ื ืืืงื. ืชืืฉืืื ืืช ืืืืืจืื ืืงืคืืืืืกืืื.",
"en": "The list of people in this group has been deleted. Blame the Capitalist pigs",
"la": "",
"fr": "La liste des personnes de ce groupe a รฉtรฉ supprimรฉe. Blรขmez les cochons capitalistes"
}, "filter_removed_problematic_tag_error": {
"he": "ืืชืืฆืื ืืื ืฉืืคืืืืจ ืืื ืืืืืจ ืืชืืื ืืขืืืชื, ืืื ืืืกืจ. ืืื ืืื!",
"en": "This filter was attached to a problematic tag and as such, was removed",
"la": "",
"fr": "Ce filtre รฉtait associรฉ ร un tag problรฉmatique et a donc รฉtรฉ supprimรฉ"
}, "someone_not_tagged_because_afk_reply": {
"he": "\n(ืืืชืื ืฉืืื ืืืฉืื ืื ืชืืื ืืืืืื ืฉืืื ืืืฆื ืฉืื ื)",
"en": "\n(It's possible someone didn't get tagged because he's in hibernation)",
"la": "",
"fr": "\n(Il est possible que quelqu'un n'ait pas รฉtรฉ taguรฉ parce qu'il est en hibernation)"
}, //birthdays
"birthday_wishes_reply": {
"he": "ืืื ืืื ื%s! ืืื/ืืื ืื/ืืช %s!",
"en": "Happy birthday to %s! He/she is %s years old!",
"la": "%s, felix sit natalis dies! Habes %s annos",
"fr": "Joyeux anniversaire ร %s! Il/elle a %s ans!"
}, "add_birthday": {
"he": /^ืืืกืฃ ืืื ืืืืืช/i,
"en": /^Add birthday/i,
"la": "Adde natalis dies",
"fr": /^Ajoute l'anniversaire/i
}, "add_birthday_reply": {
"he": "ืืื ืืืืืืช ืฉื ืืืืืจ %s ื ืืกืฃ ืืืฆืืื",
"en": "%s's birthday has been successfully added",
"la": "Natalis dies %s additur feliciter",
"fr": "L'anniversaire de %s a รฉtรฉ ajoutรฉ avec succรจs"
}, "add_birthday_already_exists_error": {
"he": "ืืื ืืืืืืช ืฉื ืืืืืจ %s ืืืจ ืงืืื",
"en": "%s's birthday already exists in this group",
"la": "Natalis dies %s iam exsistet in hoc coetu",
"fr": "L'anniversaire de %s existe dรฉjร dans ce groupe"
}, "date_existence_error": {
"he": "ืื ืืขืืืื ืื ืืฉืืืืืช ืืืื? ืืชื ืืืื ืฉืื ืชืืจืื ืืืืชื?",
"en": "Are you sure what you inputted is a date or something along those lines?",
"la": "Certusne tu hoc natalis dies esse?",
"fr": "รtes-vous sรปr que ce que vous avez entrรฉ est une date ou quelque chose du genre"
}, "february_date_error": {
"he": "ืืื, ืชืืืืจ ืฉืืื ืืคืืจืืืจ ืืขื 29 ืืืื. ืชืงื ืืช ืื ืื ื ืกื ืฉืื.",
"en": "My brother in Christ, remember that there are no more than 29 days in February. Fix that and try again.",
"la": "",
"fr": "Mon frรจre en Christ, souviens-toi qu'il n'y a pas plus de 29 jours en fรฉvrier. Corrigez cela et rรฉessayez."
}, "date_syntax_error": {
"he": "ืชืจืื ืืชื ืืืืจ ืืืฉืชืืฉ ืืฉืชื ื ืงืืืืช ืืฉืืชื ืืืชื ืชืืจืื ืืื ืื ืื ื ืฉืืฉืคืื",
"en": "Yeah that's not how you write a date... You should be using periods",
"la": "Rescribe dies cum periodes",
"fr": "Ouais, ce n'est pas comme รงa qu'on รฉcrit une date... Vous devriez utiliser des points"
}, "remove_birthday": {
"he": /^ืืกืจ ืืื ืืืืืช/i,
"en": /^Remove birthday/i,
"la": "Dele natalis dies",
"fr": /^Supprime l'anniversaire/i
}, "remove_birthday_reply": {
"he": "ืืื ืืืืืืช ืฉื ืืืืืจ %s ืืืกืจ ืืืฆืืื",
"en": "%s's birthday has been successfully removed",
"la": "%s natalis dies delitur feliciter",
"fr": "L'anniversaire de %s a รฉtรฉ supprimรฉ avec succรจs"
}, "remove_birthday_doesnt_exist_error": {
"he": "ืจืง ืืืงืืืจ ืืืคื ืฉืืืจืฅ ืืืื ืืืืืง ืืื ืืืืืช ืื ืงืืืืื",
"en": "Only Dr. Doofenshmirtz can remove birthday which don't exist",
"la": "Doctor Doofenshmirtz solum potest delere natalis dies non exsistentes",
"fr": "Seul le Dr Doofenshmirtz peut supprimer des anniversaires qui n'existent pas"
}, "show_birthdays": {
"he": /^ืืจืื ืืื ืืืืืช/i,
"en": /^Show birthdays"/i,
"la": "Ostende natalis dies",
"fr": /^Affiche les anniversaires/i
}, "group_doesnt_have_birthdays_error": {
"he": "ืืื ืืื ืฉืื ืงืืืฆื ืื ืืื ืืืืืช",
"en": "The people in this group don't have any birthdays",
"la": "Hoc coetus non habet natalis dies",
"fr": "Ce groupe n'a pas d'anniversaire enregistrรฉ"
}, "add_birthday_to_group": {
"he": /^ืืืกืฃ ืงืืืฆื ืืจืฉืืืช ืืชืคืืฆื ืฉื ืืื ืืืืืืช/i,
"en": /^Add group to the birthday distribution list/i,
"la": "",
"fr": /^Ajoute un groupe a la liste diffusion du message d'anniversaire/i
}, "birthday_added_to_group_reply": {
"he": "ืืงืืืฆื ื ืืกืคื ืืืฆืืื ืืจืฉืืืช ืืชืคืืฆื ืฉื ืืื ืืืืืช ืฉืื",
"en": "The group has been successfully added to this person's birthday message broadcast list",
"la": "",
"fr": "Le groupe a รฉtรฉ ajoutรฉ avec succรจs ร la liste de diffusion des messages d'anniversaire de cette personne"
}, "birthday_added_to_group_error": {
"he": "ืืงืืืฆื ืืืจ ืงืืืืช ืืจืฉืืืช ืืชืคืืฆื ืฉื ืืื ืืืืืืช ืฉืื",
"en": "This group is already in your birthday message's broadcast",
"la": "",
"fr": "Ce groupe est dรฉjร dans la liste de diffusion de votre message d'anniversaire"
}, "remove_birthday_from_group": {
"he": /^ืืกืจ ืงืืืฆื ืืจืฉืืืช ืืชืคืืฆื ืฉื ืืื ืืืืืืช/i,
"en": /^Remove group from the birthday distribution list/i,
"la": "",
"fr": /^Supprime le groupe de la liste de diffusion du message d'anniversaire/i
}, "birthday_removed_from_group_reply": {
"he": "ืืงืืืฆื ืืืกืจื ืืืฆืืื ืืจืฉืืืช ืืชืคืืฆื ืฉื ืืื ืืืืืช ืฉืื",
"en": "The group has been successfully removed from this person's birthday message broadcast list",
"la": "",
"fr": "Le groupe a รฉtรฉ supprimรฉ avec succรจs de la liste de diffusion des messages d'anniversaire de cette personne"
}, "birthday_removed_from_group_error": {
"he": "ืจืง ืืืงืืืจ ืืืคื ืฉืืืจืฅ ืืืื ืืืกืืจ ืงืืืฆืืช ืฉืื ืงืืืืืช ืืจืฉืืืช ืืชืคืืฆื ืฉืื",
"en": "Only Sam can remove groups which aren't in your birthday message's broadcast",
"la": "",
"fr": "Seul Sam peut supprimer les groupes qui ne figurent pas dans la liste de diffusion de votre message d'anniversaire"
}, "person_doesnt_have_birthday_error": {
"he": "ืืืืืจืฆ'ืืง ืืื ืืื ืืื ืืืืืช (ืืืืืจ)",
"en": "This dude here doesn't have a (defined) birthday",
"la": "",
"fr": "Cet homme n'a pas dรฉfini d'anniversaire"
}, //permissions & muting
"set_permissions": {
"he": /^ืงืืข ืืจืฉืื ื/i,
"en": /^Define permission for/i,
"la": "",
"fr": /^Dรฉfinis l'autorisation pour/i
}, "set_permissions_reply": {
"he": "ืืืจืฉืื ืฉืื ืชื ืืืฆืืื",
"en": "Permission changed successfully",
"la": "",
"fr": /^L'autorisation a รฉtรฉ modifiรฉe avec succรจs/i
}, "set_permissions_error": {
"he": "ืืื ืื ืืจืฉืื ืืืืื ืืกืคืืง ืืฉืืื ืื ืฉื ืืกืืช ืืขืฉืืช",
"en": "You don't have a high enough clearance level for what you were trying to do",
"la": "",
"fr": "Vous n'avez pas un niveau suffisamment รฉlevรฉ pour ce que vous essayez de faire"
}, "permission_option_does_not_exist_error": {
"he": "ืจืง ืืืืฉ ืืืืืื ืืฉื ืืืื ืืฉื ืืช ืืืคืฆืื ืื ืงืืืืช",
"en": "Only the man, the myth, the legend Moses can select a nonexistent option",
"la": "",
"fr": "Seul l'homme, le mythe, la lรฉgende Moรฏse peut sรฉlectionner une option inexistante"
}, "permission_level_does_not_exist_error": {
"he": "ืจืง ืกืืชื ืืฉื ืืืืื ืืืืืจ ืจืืช ืืจืฉืื ืฉืื ืงืืืืช. ืืืืง ืฉืืืจืช ืืื ืืืื: ืื ืื/ืจืืื/ืืืฉืชืง",
"en": "Only Grandma Moshe can choose a non-existent permission level. Check you've chosen one of these: Admin/Regular/Muted",
"la": "",
"fr": "Seul le grand Moรฏse peut choisir un niveau inexistant\n Vรฉrifiez que vous avez choisi l'un de ces รฉlรฉments: Admin/Ordinaire/En sourdine"
}, "filters_permission_type": {
"he": /^ืคืืืืจืื$/i, "en": /^filters$/i, "la": "", "fr": /^filtres$/i
}, "tags_permission_type": {
"he": /^ืชืืืืื$/i, "en": /^tags$/i, "la": "", "fr": /^tags$/i
}, "handleFilters_permission_type": {
"he": /^ืคืงืืืืช_ืคืืืืจืื$/i, "en": /^handle_Filters$/i, "la": "", "fr": /^gรฉrer_Filtres$/i
}, "handleTags_permission_type": {
"he": /^ืคืงืืืืช_ืชืืืืื$/i, "en": /^handle_Tags$/i, "la": "", "fr": /^gรฉrer_Tags$/i
}, "handleBirthdays_permission_type": {
"he": /^ืคืงืืืืช_ืืืืืืืืช$/i, "en": /^handle_Birthdays$/i, "la": "", "fr": /^gรฉrer_Anniversaires$/i
}, "HandleReminders_permission_type": {
"he": /^ืคืงืืืืช_ืชืืืืจืืช$/i, "en": /^handle_Reminders$/i, "la": "", "fr": /^gรฉrer_Rappels$/i
}, "handleShows_permission_type": {
"he": /^ืคืงืืืืช_ืืจืื$/i, "en": /^handle_Shows$/i, "la": "", "fr": /^gรฉrer_Affiches$/i
}, "handleOther_permission_type": {
"he": /^ืคืงืืืืช_ืฉืื ืืช$/i, "en": /^handle_Other$/i, "la": "", "fr": /^gรฉrer_Autre$/i
}, "filters_permission_type_replace": {
"he": "ืคืืืืจืื", "en": "filters", "la": "", "fr": "Filtres"
}, "tags_permission_type_replace": {
"he": "ืชืืืืื", "en": "tags", "la": "", "fr": "Tags"
}, "handleFilters_permission_type_replace": {
"he": "ืคืงืืืืช_ืคืืืืจืื", "en": "handle_Filters", "la": "", "fr": "Gรฉrer_Filtres"
}, "handleTags_permission_type_replace": {
"he": "ืคืงืืืืช_ืชืืืืื", "en": "handle_Tags", "la": "", "fr": "Gรฉrer_Tags"
}, "HandleReminders_permission_type_replace": {
"he": "ืคืงืืืืช_ืชืืืืจืืช", "en": "handle_Reminders", "la": "", "fr": "Gรฉrer_Rappels"
}, "handleBirthdays_permission_type_replace": {
"he": "ืคืงืืืืช_ืืืืืืืืช", "en": "handle_Birthdays", "la": "", "fr": "Gรฉrer_Anniversaires"
}, "handleShows_permission_type_replace": {
"he": "ืคืงืืืืช_ืืจืื", "en": "handle_Shows", "la": "", "fr": "Gรฉrer_affiche"
}, "handleOther_permission_type_replace": {
"he": "ืคืงืืืืช_ืฉืื ืืช", "en": "handle_Other", "la": "", "fr": "Gรฉrer_Autre"
}, "muted_permission_level": {
"he": /^ืืืฉืชืง$/, "en": /^muted$/i, "la": "", "fr": /^en_sourdine%/i
}, "regular_permission_level": {
"he": /^ืจืืื$/, "en": /^regular$/i, "la": "", "fr": /^ordinaire$/i
}, "admin_permission_level": {
"he": /^ืื ืื$/, "en": /^admin$/i, "la": "", "fr": /^admin$/i
}, "developer_permission_level": {
"he": /^ืืืื_ืืจื$/, "en": /^god$/i, "la": "", "fr": /^dieu$/i
}, "muted_permission_level_replace": {
"he": "ืืืฉืชืง", "en": "Muted", "la": "", "fr": "En sourdine"
}, "regular_permission_level_replace": {
"he": "ืจืืื", "en": "Regular", "la": "", "fr": "Ordinaire"
}, "admin_permission_level_replace": {
"he": "ืื ืื", "en": "Admin", "la": "", "fr": "Admin"
}, "developer_permission_level_replace": {
"he": "ืืืื_ืืจื", "en": "God", "la": "", "fr": "Dieu"
}, "show_group_function_permissions": {
"he": /^ืืจืื ืืจืฉืืืช ืคืื ืงืฆืืืช/i,
"en": /^Show function permissions/i,
"la": "",
"fr": /^Affiche les niveaux de fonction/i
}, "show_group_user_permissions": {
"he": /^ืืจืื ืืจืฉืืืช ืื ืฉืื/i,
"en": /^Show people permissions/i,
"la": "",
"fr": /^Affiche les niveaux des personnes/i
}, "mute_participant": {
"he": /^ืืฉืชืง/i, "en": /^Mute/i, "la": "", "fr": /^Met en sourdine/i
}, "mute_participant_reply": {
"he": "ืืืฉืชืืฉ %s ืื ืืืื ืืืฉืชืืฉ ืืคืงืืืืช ืืืชืจ",
"en": "User %s cannot use commands anymore",
"la": "",
"fr": "L'utilisateur %s ne peut plus utiliser les commandes"
}, "unmute_participant": {
"he": /^ืืกืจ ืืฉืชืงื/i, "en": /^Unmute person/i, "la": "", "fr": /^Rรฉactive la personne/i
}, "unmute_participant_reply": {
"he": "ืืืฉืชืืฉ %s ืืืื ืืืฉืชืืฉ ืืคืงืืืืช ืฉืื",
"en": "User %S can use commands again",
"la": "",
"fr": "L'utilisateur %S peut ร nouveau utiliser les commandes"
}, "participant_not_in_group_error": {
"he": "ืื ื ืืืื ืืืฉืชืืง ืจืง ืืืฉืื ืฉืืชื ืืงืืืฆื ืคืขื. ืกืืืื!",
"en": "I can only mute someone who has been in this group in the past. Sorry!",
"la": "",
"fr": "Je ne peux mettre en sourdine que quelqu'un qui a dรฉjร fait partie de ce groupe dans le passรฉ. Desolรฉ!"
}, "no_participant_chosen_error": {
"he": "ืื ื ืื ืืืื ืืืฉืชืืง ืืช ืืฃ ืืื, ืืชื ืืืื ืืืืืจ ืืืฉืื",
"en": "I can't mute nobody, you gotta choose someone",
"la": "",
"fr": "Je ne peux pas mettre personne en sourdine, tu dois choisir quelqu'un"
}, //immediate commands
"scan_link": {
"he": /^ืกืจืืง/i, "en": /^Scan/i, "la": /^Examina/i, "fr": /^Analyse/i
}, "link_validity_error": {
"he": "ืืืืื, ืื ืื ืงืืฉืืจ ืชืงืื",
"en": "bro, that ain't a valid link",
"la": "",
"fr": "frรจre, ce n'est pas un lien valide"
}, "scan_link_checking_reply": {
"he": "%s \n ืืืืง...", "en": "%s \n Checking...", "la": "%s \n Examino...", "fr": "%s \n J'examine..."
}, "scan_link_result_reply": {
"he": " ืืืืื ืืื ืืืงืชื ืืช ืืงืืฉืืจ ืืื ืฉืืืงืฉืช ืืืฆืืชื ืฉึพ%s ืื ืื ืืืจืืกืื ืืฆืื ืืืชื ืกืืื",
"en": "%s antivirus engines detected this link as malicious",
"la": "%s deprehendentes reperiebant hoc ligentem malum esse",
"fr": "รcoute frรจre j'ai examinรฉ le lien comme tu l'as demandรฉ et Les moteurs antivirus %s ont dรฉtectรฉ ce lien comme malveillant"
}, "scan_link_upload_error": {
"he": "ืฉืืืื ืืืขืืืช ืืงืืฉืืจ",
"en": "Error received while uploading the link",
"la": "Error #1 in ligente est",
"fr": "Erreur reรงue lors du tรฉlรฉchargement du lien"
}, "scan_link_checking_error": {
"he": "ืฉืืืื ืืืืืงืช ืืงืืฉืืจ",
"en": "Error received while checking the link",
"la": "Error #2 in ligente est",
"fr": "Erreur reรงue lors de la vรฉrification du lien"
}, "make_sticker": {
"he": /^ืืคืื ืืกืืืงืจ/i,
"en": /^Create sticker/i,
"la": "Fac hoc imaginem",
"fr": /^Crรฉe un autocollant/i
}, "crop_sticker": {
"he": /^ืืื ืืืชืื/i, "en": /^without cropping/i, "la": "", "fr": /^Sans coupures/i
}, "high_Quality": {
"he": /^ืืืืืช ืืืืื/i, "en": /^High Quality/i, "la": "", "fr": /^Haute qualitรฉ/i
}, "medium_Quality": {
"he": /^ืืืืืช ืืื ืื ืืช/i, "en": /^Medium Quality/i, "la": "", "fr": /^Qualitรฉ moyenne/i
}, "not_sticker_material_error": {
"he": "ืืืคืฉ ืื ืืคืฉืจ ืืืคืื ืืฉืื ืฉืืื ืื ืชืืื ื ืื ืกืจืืื ืื ืืืืขื (ืฉืืื ืื ืืืืืขื ืื ืืชื ืืฉืชืืฉ ืืคืงืืื) ืืกืืืงืจ",
"en": "Idiot, a sticker has to be an image or a video or a message (but not the message you're using the command in)",
"la": "",
"fr": "Idiot, un autocollant doit รชtre une image ou une vidรฉo ou un message (mais pas le message que vous utilisez dans la commande)"
}, "create_text_sticker": {
"he": /^ืฆืืจ ืกืืืงืจ ืืงืกื/i,
"en": /^Create text sticker/i,
"la": "",
"fr": /^Crรฉe un autocollant de texte/i
}, "text_sticker_error": {
"he": "ืืชืจืืฉื ืฉืืืื ืืืฆืืจืช ืืกืืืงืจ; ืืืืง ืฉืืืจืช ืฆืืข ืืื ืืืืช ืืืืื",
"en": "An error occurred while making your sticker; Check you've chosen a colour in English and at least one word",
"la": "",
"fr": "Une erreur s'est produite lors de la crรฉation de votre autocollant; Vรฉrifiez que vous avez choisi une couleur en anglais et au moins un mot"
}, "create_survey": {
"he": /^ืฆืืจ ืกืงืจ/i, "en": /^Create survey/i, "la": "Crea census", "fr": /^Crรฉe un sondage/i
}, "survey_title": {
"he": /ืืืชืจืช - (.)+/, "en": /Title - (.)+/, "la": /Nomen - (.)+/, "fr": /Titre - (.)+/
}, "survey_subtitle": {
"he": /ืืืชืจืช ืืฉื ื - (.)+/,
"en": /Subtitle - (.)+/,
"la": /Subnomen - (.)+/,
"fr": /Deuxiรจme titre - (.)+/
}, "third_survey_title": {
"he": /ืืืชืจืช ืฉืืืฉืืช - (.)+/,
"en": /Third title - (.)+/,
"la": /Nomen tertium - (.)+/,
"fr": /Troisiรจme titre - (.)+/
}, "survey_button_1": {
"he": /ืืคืชืืจ 1 - (.)+/, "en": /Button 1 - (.)+/, "la": /Buttonus 1 - (.)+/, "fr": /Bouton 1 - (.)+/
}, "survey_button_2": {
"he": /ืืคืชืืจ 2 - (.)+/, "en": /Button 2 - (.)+/, "la": /Buttonus 2 - (.)+/, "fr": /Bouton 2 - (.)+/
}, "survey_button_3": {
"he": /ืืคืชืืจ 3 - (.)+/, "en": /Button 3 - (.)+/, "la": /Buttonus 3 - (.)+/, "fr": /Bouton 3 - (.)+/
}, "survey_title_replace": {
"he": "ืืืชืจืช -", "en": "Title -", "la": "Nomen -", "fr": "Titre -"
}, "second_survey_title_replace": {
"he": "ืืืชืจืช ืืฉื ื -", "en": "Body -", "la": "Subnomen -", "fr": "Corps -"
}, "third_survey_title_replace": {
"he": "ืืืชืจืช ืฉืืืฉืืช -", "en": "Footer -", "la": "Nomen tertium -", "fr": "Bas de page -"
}, "survey_button_1_replace": {
"he": "ืืคืชืืจ 1 -", "en": "Button 1 -", "la": "Buttonus 1 -", "fr": "Bouton 1 -"
}, "survey_button_2_replace": {
"he": "ืืคืชืืจ 2 -", "en": "Button 2 -", "la": "Buttonus 2 -", "fr": "Bouton 2 -"
}, "survey_button_3_replace": {
"he": "ืืคืชืืจ 3 -", "en": "Button 3 -", "la": "Buttonus 3 -", "fr": "Bouton 3 -"
}, "survey_creation_error": {
"he": "ืื ื ืฆืจืื ืืืชืจืช, ืืืชืจืช ืืฉื ื ืืืคืืืช ืืคืชืืจ ืืื ืืฉืืื ืืืฆืืจ ืกืงืจ",
"en": "I need a title, a body and at least one button to make a survey",
"la": "Necessitudines sunt nomen atque subnomen atque buttonus namque census",
"fr": "J'ai besoin d'un titre, d'un corps et d'au moins un bouton pour faire un sondage"
}, "check_crypto": {
"he": /^ืืืืง ืงืจืืคืื/i, "en": /^Check Crypto/i, "la": "", "fr": /^Verifie la Crypto/i
}, "crypto_check_reply": {
"he": "ืื ื ืืฉืืืืืช ืฉืืืงืฉืช: \n %s",
"en": "Here's the junk you requsted: \n %s",
"la": "Hoc non est similacrum",
"fr": "Voici les trucs que vous avez demandรฉ"
}, "crypto_api_error": {
"he": "ื ืชืงืืชื ืืืขืื ืืืคืฉืื ืืืจื",
"en": "I've ran into a problem somewhere along the way",
"la": "",
"fr": "J'ai rencontrรฉ un problรจme quelque part en cours de route"
}, "crypto_limit_error": {
"he": "ืื ื ืืฆืืขืจ ืืื ืื ืงืืืฆื ืืืืื ืืืืืง ืืช ืฉืขืจื ืืืจืช ืืงืจืืคืื ืจืง ืคืขื ืืืช ืืืื",
"en": "Forgive me but each group can check the Crypto exchange rates only once per day",
"la": "",
"fr": "Pardonnez-moi mais chaque groupe ne peut vรฉrifier les taux de change Crypto qu'une seule fois par jour"
}, "search_in_urban": {
"he": /^ืืืืจืช ืืื ืืจื ื/i, "en": /^Internet definition/i, "la": "", "fr": /^Dรฉfinition Internet/i
}, "search_in_urban_reply": {
"he": "ืืืืจื", "en": "Definition", "la": "", "fr": "Dรฉfinition"
}, "urban_word_not_found_error": {
"he": "ืื ื ืืฆืืืช ืชืืฆืืืช ืืืืื ืฉืืืคืฉื",
"en": "No definitions were found for the searched word",
"la": "",
"fr": "Aucune dรฉfinition n'a รฉtรฉ trouvรฉe pour le mot recherchรฉ"
}, "urban_api_error": {
"he": "ืกืื ืื, ืื ืืชื ืืฉืชื ืืืขืื ืืืจืื ืืืืื ืืช ืืืืืจื",
"en": "Forgive me, but I crash into a problem on my way to fetch the definition",
"la": "",
"fr": "Pardonnez-moi, mais je me heurte ร un problรจme en allant chercher la dรฉfinition"
}, "translate_to": {
"he": /^ืชืจืื ื/i, "en": /^Translate To/i, "la": "", "fr": /^Traduis en/i
}, "translate_reply": {
"he": "*ืชืจืืื*: \n %s \n ืืฉืคื (ืงืื ืฉืคื): \n %s",
"en": "*Translation*: \n %s \n From language (language code): \n %s",
"la": "",
"fr": "*Traduction*: \n %s \n De la langue (code de langue): \n %s"
}, "translate_language_error": {
"he": "ืืืจืืจ, ืืฉืคื ืฉืืืจืช ืื ืงืืืืช",
"en": "Dude, the language you choose doesn't exist",
"la": "",
"fr": "Mec, la langue que tu as choisie n'existe pas"
}, "translate_language_api_error": {
"he": "ืื ื ืืชื ืืชืจืื ืืฉืคื ืฉืืืจืช, ืกืืืื!",
"en": "The language you chose couldn't be translated to, Sorry!",
"la": "",
"fr": "La langue que vous avez choisie n'a pas pu รชtre traduite, dรฉsolรฉ!"
}, "translate_language_limit_error": {
"he": "ืชื ืกื ืืืจ ืืืงืฉ ืชืจืืื, ืืืงืฉื ืืืชืจ ืืื ืชืจืืืืื ืืงืืืฆื ืื",
"en": "Try again tomorrow, you guys are translating too many words",
"la": "",
"fr": "Rรฉessayez demain, vous traduisez trop de mots"
}, "show_profile": {
"he": /^ืคืจืืคืื$/i, "en": /^Profile$/i, "la": "", "fr": /^Profil$/i
}, "tagged_messages_amount_reply": {
"he": "ืชืืืืืช: %s ืคืขืืื ืืื ืืืืืงื/ื ืืงืืื ืืืืจืื",
"en": "You've been tagged %s time since the last check/reset",
"la": "",
"fr": "Vous avez รฉtรฉ taguรฉ %s fois depuis la derniรจre vรฉrification/rรฉinitialisation"
}, "permission_level_reply": {
"he": "ืจืืช ืืืจืฉืื ืฉืื ืืงืืืฆื ืื: %s",
"en": "Your permission level in this group: %s",
"la": "",
"fr": "Votre niveau dans ce groupe: %s"
}, "profile_birthday_reply": {
"he": "ืื ืฉืืืช ืืืงืจื ืื ืืื ืืืืืชื ืืื: %s",
"en": "In case you forgot, your birthday is: %s",
"la": "",
"fr": "Au cas oรน vous l'auriez oubliรฉ, votre anniversaire estย : %s"
}, "profile_birthday_error": {
"he": "ืืืฉืื ืคื ืื ืืืืืจ ืืื ืืืืืช :(",
"en": "Someone here didn't set a birthday :(",
"la": "",
"fr": "Quelqu'un ici n'a pas fixรฉ d'anniversaire :("
}, "download_music": {
"he": /^ืืืจื ืืืืืงื/i, "en": /^Download music/i, "la": "", "fr": /^Tรฉlรฉcharge la musique/i
}, "download_music_downloading_reply": {
"he": "ืืืจืื...", "en": "Downloading...", "la": "", "fr": "Tรฉlรฉchargement..."
}, "download_music_unknown_error": {
"he": "ืื ืฉืืงืืฉืืจ ืฉืืืจืช ืื ืืืืชื ืื ืฉื ืชืงืืชื ืืฉืืืื - ื ืกื ืฉืื ืขืื ืืื ืืงืืช",
"en": "Either you haven't sent a real link or I encountered a problem - try again in a couple of minutes",
"la": "",
"fr": "Soit vous n'avez pas envoyรฉ de lien rรฉel, soit j'ai rencontrรฉ un problรจme - rรฉessayez dans quelques minutes"
}, "download_music_not_found_error": {
"he": "ืืื ืงืืฉืืจ ืืืืืืื ืืืืืขื ืืื ืฉืืื",
"en": "There's no link to youtube in that message you naughty boy",
"la": "",
"fr": "Il n'y a pas de lien vers youtube dans ce message, coquin"
}, "download_music_limit_error": {
"he": "ืืืจืืชื ืืืชืจ ืืื ืฉืืจืื ืืืื ืชื ืกื ืฉืื ืืืจ",
"en": "You've downloaded too many songs today - try again tomorrow",
"la": "",
"fr": "Vous avez tรฉlรฉchargรฉ trop de chansons aujourd'hui - rรฉessayez demain"
}, "fetch_stock": {
"he": /^ืืืืง ืื ืืื/i, "en": /^Check stock/i, "la": "", "fr": /^Vรฉrifie les actions/i
}, "fetch_stock_reply": {
"he": "ืื ื ืืืืืข ืฉืืืงืฉืช ืขื ืืื ืืื ืฉื %s:\n%s",
"en": "Here's the information you requested about %s's stock:\n%s",
"la": "",
"fr": "Voici les informations que vous avez demandรฉes sur les actions de %sย :\n%s"
}, "fetch_stock_api_error": {
"he": "ืืืจืื, ืงืื ืืื ืืื ืฉืืื ืื ืชืงืื",
"en": "Guys, your stock code is invalid",
"la": "",
"fr": "Les gars, votre code des actions est invalide"
}, "check_stock_limit_error": {
"he": "ืื ื ืืฆืืขืจ ืืื ืื ืงืืืฆื ืืืืื ืืืืืง ืื ืืืช ืจืง ืฉืืืฉ ืคืขืืื ืืืื",
"en": "Forgive me but each group can check the stocks only thrice per day",
"la": "",
"fr": "Pardonnez-moi mais chaque groupe ne peut vรฉrifier les actions que trois fois par jour"
}, "afk_me_pwease": {
"he": /^ืืคืขื ื ื ืื ืืืคืจืืข|!afk$/i,
"en": /^Activate do not disturb|!afk$/i,
"la": "",
"fr": /^Activer Ne pas dรฉranger|!afk$/i
}, "afk_reply": {
"he": "ืืืืืจ/ื @%s ื ืื ืก ืืืฆื ืฉืื ื (ืืืืข ืื ืื ื ืื ืืืคืจืืข) ืืื/ืืื ืื ืืืื ืืืื ืืืื ืืงืจืื",
"en": "@%s has entered deep sleep mode (also known as Do Not Disturb) and will not be available for the time being",
"la": "",
"fr": "@%s est entrรฉ en mode sommeil (รฉgalement connu sous le nom de Ne pas dรฉranger) et ne sera pas disponible pour le moment"
}, "afk_off_reply": {
"he": "ืืจืื ืฉืืื ืืชืจืืืช ืืืืจืฃ ืฉืื ืืจ ืืืืจ D:\nืชืืืื ืืืชื %s ืคืขืืื ืืืื ืฉืืฉื ืช",
"en": "Welcome back from hibernation Mr guy :D\nYou've been tagged %s times while you were sleeping",
"la": "",
"fr": "Bon retour d'hibernation jeune homme :D\nVous avez รฉtรฉ taguรฉ %s fois pendant que vous dormiez"
}, "afk_tagged_reply": {
"he": "%s ื ืืฆื ืืชืจืืืช ืืืจืฃ ืขืืืงื ืืืจ %s ืืงืืช* ืืืื ืืื ืื ืจืื ืื ืืจืื ืืช ืืืืืขื ืขืืฉืื. ืืฉืืงืื ืืืืื ืืืืืื ืืื ืืจืื ืื ืืคืจืืข ืืฉื ืชื (ืืืืืจ ืื ืืืชืืืืก).\n*ืึพ%s ืืฉืขื %s",
"en": "%s has been in deep hibernation for %s minutes* so they probably won't see the message now. When the respected master wakes up, he will see who disturbed his sleep (and choose whether to address it).\n*From %s at %s",
"la": "",
"fr": "%s est en hibernation profonde depuis %s minutes* donc il ne verra probablement pas le message maintenant. Lorsque le maรฎtre respectรฉ se rรฉveillera, il verra qui a perturbรฉ son sommeil (et choisira de s'y adresser).\n*De %s ร %s"
}, "change_link_type": {
"he": /^ืฉื ื ืกืื ืืื ืง/i, "en": /^Change link type/i, "la": "", "fr": /^Changer le lien/i
}, "change_link_type_reply": {
"he": "ืื ื ืืืื ืง ืฉืืืงืฉืช: \n%s",
"en": "Here is the link you requested: \n%s",
"la": "",
"fr": ""
}, "show_webpage": {
"he": /^ืฉืื ืงืืฉืืจ ืืืชืจ/i,
"en": /^Send website link/i,
"la": "Ostende situs texti",
"fr": /^Envoie le lien/i
}, "show_webpage_reply": {
"he": "ืงื ืืช ืืงืืฉืืจ ืืื: %s",
"en": "Here's the link you requested: %s",
"la": "Hic est ligens quod petitis: %s",
"fr": "Voici le lien que vous avez demandรฉ: %s"
}, "show_webpage_error": {
"he": "ืืงืืฉืืจ ืื ืขืื ืื... ืกืืืืืฉ",
"en": "Sorry bro, the link didn't work...",
"la": "Paenito frater, sed ligens non oportet...",
"fr": "Dรฉsolรฉ frรจre, le lien ne fonctionne pas..."
}, "stable_diffusion_create": {
"he": /^ืฆืืจ ืชืืื ื/i,
"en": /^Create image/i,
"la": "",
"fr": /null/
}, "stable_diffusion_create_waiting_reply": {
"he": "ืืืื ืืงืืืช ืืงืืืฅ...",
"en": "Waiting for the file...",
"la": "",
"fr": ""
}, "stable_diffusion_create_reply": {
"he": "ืืชืืื ื ื ืืฆืจื ืืืฆืืื",
"en": "The image was created successfully",
"la": "",
"fr": ""
}, "stable_diffusion_create_error": {
"he": "ืื ื ืืฆืืขืจ; ื ืืจืงื ืฉืืืื ืืืืื ืืฆืืจืช ืืชืืื ื. ืื ื ื ืกื ืฉื ืืช ืืืืืจ ืืืชืจ.",
"en": "I'm sorry; An error was thrown while creating the image. Please try again later.",
"la": "",
"fr": ""
}, "stable_diffusion_model": {
"he": /ืืืื (.+)/,
"en": /Model (.+)/,
"la": "",
"fr": ""
}, "stable_diffusion_model_error": {
"he": "ืื ื ืืฆืืขืจ ืืื ืืืืื ืฉืืืงืฉืช ืื ืงืืื",
"en": "I'm sorry but the model you requested doesn't exist",
"la": "",
"fr": ""
}, "stable_diffusion_sampling_method": {
"he": /ืฉืืืช ืืืืื (.+)/,
"en": /Sampling method (.+)/,
"la": "",
"fr": ""
}, "stable_diffusion_sampling_method_error": {
"he": "ืื ื ืืฆืืขืจ ืืื ืฉืืืช ืืืืืื ืฉืืืงืฉืช ืื ืงืืืืช",
"en": "I'm sorry but the sampling method you requested doesn't exist",
"la": "",
"fr": ""
}, "stable_diffusion_sampling_steps": {
"he": /ืฆืขืืื (.+)/,
"en": /Steps (.+)/,
"la": "",
"fr": ""
}, "stable_diffusion_sampling_steps_error": {
"he": "ืื ื ืืฆืืขืจ ืืื ืืกืคืจ ืืฆืขืืื ืฉืืืงืฉืช ืืื ื ืชืงืื",
"en": "I'm sorry but the number of steps you requested is invalid",
"la": "",
"fr": ""
}, "stable_diffusion_prompt": {
"he": /ืชืืืืจ (.+)/,
"en": /Prompt (.+)/,
"la": "",
"fr": ""
}, "stable_diffusion_prompt_error": {
"he": "ืื ื ืืฆืืขืจ ืืื ืชืืืืจ ืืชืืื ื ืืจืืฉ",
"en": "I'm sorry but the prompt is required",
"la": "",
"fr": ""
}, "stable_diffusion_prompt_length_error": {
"he": "ืื ื ืืฆืืขืจ ืืื ืชืืืืจ ืืชืืื ื ืืื ืขื 75 ืชืืืื",
"en": "I'm sorry but the prompt is limited to 75 characters",
"la": "",
"fr": ""
}, "stable_diffusion_negative_prompt": {
"he": /ืชืืืืจ ืฉืืืื (.+)/,
"en": /Negative prompt (.+)/,
"la": "",
"fr": ""
}, "stable_diffusion_negative_prompt_length_error": {
"he": "ืื ื ืืฆืืขืจ ืืื ืชืืืืจ ืืชืืื ื ืืฉืืืื ืืื ืขื 75 ืชืืืื",
"en": "I'm sorry but the negative prompt is limited to 75 characters",
"la": "",
"fr": ""
}, "stable_diffusion_unauthorized_group_error": {
"he": "ืืฆ'ื ืืื ืื ืืืืฉืจ ืืืฉืชืืฉ ืืคืื ืงืฆืืืช ืืฆืืจืช ืืชืืื ืืช",
"en": "This chat isn't allowed to use the image creation function",
"la": "",
"fr": ""
}, "stable_diffusion_unauthorized_group_error_resolve": {
"he": "ื'ืฆื ืื ืืืืฉืจ ืืืฉืชืืฉ ืืคืื ืงืฆืืืช ืืฆืืจืช ืชืืื ืืช ืืื ืืชื ืืื ืืืืืืจืื ืืื ืืชืืื ื ืชืืืืฆืจ ืื ืืคื ืฉืจืฆืืช",
"en": "This chat isn't allowed to use the image creation function but you're high ranking so the image will be created for you as you wish",
"la": "",
"fr": ""
}, "transcribe_audio": {
"he": /^ืชืืื ืืืืขื/i, "en": /^Transcribe message/i, "la": "", "fr": /^Transcrire le message/i
}, "transcribe_audio_reply": {
"he": "ืืชืืืื ื ืืฆืจ ืืืฆืืื:\n%s",
"en": "The transcript was created successfully:\n%s",
"la": "",
"fr": "La transcription a รฉtรฉ crรฉรฉe avec succรจs\n%s"
}, "transcribe_audio_no_audio_error": {
"he": "ืืชื ืืืื ืืืืื ืขื ืืืืขื ืงืืืืช ืขื ืื ืช ืืชืืื",
"en": "You must reply to a voice message in order to transcribe",
"la": "",
"fr": "Vous devez rรฉpondre ร un message vocal afin de transcrire"
}, "transcribe_audio_not_audio_error": {
"he": "ืืืืืขื ืฉื ืืืจื ืืื ื ืืืืขื ืงืืืืช",
"en": "The selected message is not a voice message",
"la": "",
"fr": "Le message sรฉlectionnรฉ n'est pas un message vocal"
}, "transcribe_audio_duration_error": {
"he": "ืืืืจื ืฉื ืืืืืขื ืืงืืืืช ืฆืจืื ืืืืืช ืคืืืช ืืขืฉืจ ืืงืืช",
"en": "The length of the voice message must be less than ten minutes",
"la": "",
"fr": "La durรฉe du message vocal doit รชtre infรฉrieure ร dix minutes"
}, "transcribe_audio_duration_dev_reply": {
"he": "ืืืืจื ืฉื ืืืืืขื ืืงืืืืช ืฆืจืื ืืืืืช ืคืืืช ืืขืฉืจ ืืงืืช ืื ืืชื ืืคืชื ืืืื ืืคื ืื ืืฉืืจืช ืืืื ืืืืืขื ืชืชืืืื",
"en": "The length of the voice message must be less than ten minutes but you're a bot developer and therefore the message will be transcribed",
"la": "",
"fr": "La durรฉe du message vocal doit รชtre infรฉrieure ร dix minutes mais vous รชtes un dรฉveloppeur de bot et donc le message sera retranscrit"
}, "transcribe_audio_limit_error": {
"he": "ืืืขืช ืืืืืืช ืืชืืืืืื ืืืืืืช ืฉืื",
"en": "You've reached your daily transcript limit",
"la": "",
"fr": "Vous avez atteint votre limite de transcription quotidienne"
},
//reminders
"add_reminder": {
"he": /^ืืืกืฃ ืชืืืืจืช/i, "en": /^Add reminder/i, "la": "", "fr": /^Ajoute un rappel/i
}, "reminder_reminding": {
"he": "ืชืืืืจืช!", "en": "Reminder!", "la": "", "fr": "Rappel!"
}, "add_reminder_reply": {
"he": "ืืชืืืืจืช ื ืืกืคื ืืืฆืืื ืืฉืขื %s",
"en": "The reminder has been successfully set to %s",
"la": "",
"fr": "Le rappel a รฉtรฉ dรฉfini avec succรจs ร %s"
}, "reminder_already_exists_error": {
"he": "ืืืจ ืงืืืืช ืชืืืืจืช ืืฉืขื ืืืืช",
"en": "There already exists a reminder at that time",
"la": "",
"fr": "Il existe dรฉjร un rappel ร ce moment-lร "
}, "reminder_invalid_error": {
"he": "ืืืืื ืืชื ืื ืืืื ืืืืืืจ ืืืื",
"en": "You can't remind yourself of nothing",
"la": "",
"fr": "Vous ne pouvez pas vous rappeler de rien"
}, "reminder_time_error": {
"he": "ืื ื ืืฆืืขืจ ืืื ืืืืื ืืื ืื ื ืื ืืืื ืื ืืฉ ืืืืื ืฉืขื ืืชื ืจืืฆื ืืช ืืชืืืืจืช ืฉืื; ืชืืืืง ืฉืืชืืช ื ืืื ืืช ืืฉืขื",
"en": "I'm sorry but at this day and age I'm still not able to guess at what time you want your reminder; Please check you've written it correctly",
"la": "",
"fr": "Je suis dรฉsolรฉ, mais ร ce jour, je ne suis toujours pas capable de deviner l'heure par moi-mรชme; Veuillez vรฉrifier que vous l'avez รฉcrite correctement"
}, "remove_reminder": {
"he": /^ืืกืจ ืชืืืืจืช/i, "en": /^Remove reminder/i, "la": "", "fr": /^Supprime le rappel/i
}, "remove_reminder_reply": {
"he": "ืืชืืืืจืช ืฉื ืงืืขื ืืฉืขื %s ืืืกืจื ืืืฆืืื",
"en": "The reminder set at %s has been removed",
"la": "",
"fr": "Le rappel dรฉfini ร %s a รฉtรฉ supprimรฉ"
}, "reminder_doesnt_exist_error": {
"he": "ืขืืืื ืืื ืื ืืช ืืืืืืช ืืืืืง ืชืืืืจืช ืฉืื ื ืงืืขื",
"en": "I'm still not able to delete reminders which weren't ever set",
"la": "",
"fr": "Je ne parviens toujours pas ร supprimer des rappels qui n'ont jamais รฉtรฉ dรฉfinis"
}, "show_reminders": {
"he": /^ืืจืื ืชืืืืจืืช/i, "en": /^Show reminders/i, "la": "", "fr": /^Affiche les rappels/i
}, "show_reminder_error": {
"he": "ืืื ืื ืชืืืืจืืช ืคืขืืืืช",
"en": "You don't have any active reminders",
"la": "",
"fr": "Vous n'avez aucun rappel actif"
}, "repeat_reminder": {
"he": /^ืืืืจืช/i, "en": /^Repeat/i, "la": "", "fr": /^Rรฉpรจte/i
}, "day_Sunday": {
"he": /ืืืื ืจืืฉืื/i, "en": /Sunday/i, "la": "", "fr": /Dimanche/i
}, "day_Monday": {
"he": /ืืืื ืฉื ื/i, "en": /Monday/i, "la": "", "fr": /Lundi/i
}, "day_Tuesday": {
"he": /ืืืื ืฉืืืฉื/i, "en": /Tuesday/i, "la": "", "fr": /Mardi/i
}, "day_Wednesday": {
"he": /ืืืื ืจืืืขื/i, "en": /Wednesday/i, "la": "", "fr": /Mercredi/i
}, "day_Thursday": {
"he": /ืืืื ืืืืฉื/i, "en": /^Thursday/i, "la": "", "fr": /Jeudi/i
}, "day_Friday": {
"he": /ืืืื ืฉืืฉื/i, "en": /^Friday/i, "la": "", "fr": /Vendredi/i
}, "day_Saturday": {
"he": /ืืืื ืฉืืช/i, "en": /^Saturday/i, "la": "", "fr": /^Samedi/i
}, "repeat_reminder_replace": {
"he": "(ืืืืจืช ืื %s ืืืื)", "en": "(repeats every %s days)", "la": "", "fr": "(se rรฉpรจte tous les %s jours)"
}, //Tic Tac Toe
"init_tic_tac_toe": {
"he": /^ืืชืื ืืืงืก ืขืืืื (\d),(\d)/i,
"en": /^Start tic tac toe (\d),(\d)/i,
"la": "",
"fr": /^Commence un jeu de morpion/i
}, "move_tic_tac_toe": {
"he": /^ืืืื (\d),(\d)/i, "en": /^Move (\d),(\d)/i, "la": "", "fr": /^Bouge (\d),(\d)/i
}, "move_tic_tac_toe_reply": {
"he": "ืื ื ืืืื ืื ืืืื:\n",
"en": "Here's the current board:\n",
"la": "",
"fr": "Voici le tableau actuelย :\n"
}, "win_tic_tac_toe_reply": {
"he": "ื ืืฆืืช ืืืืงืก ืขืืืื!", "en": "You won Tic Tac Toe!", "la": "", "fr": "Tu as gagnรฉ le jeu!"
}, "lose_tic_tac_toe_reply": {
"he": "ืืคืกืืช ืืืฉืืง.", "en": "You lost the game.", "la": "", "fr": "Tu as perdu le jeu."
}, "draw_tic_tac_toe_reply": {
"he": "ืืืฉืืง ืืืืข ืืืฆื ืฉื ืคื ืื ืืื ื ืืืื ืืืื ืขืื",
"en": "The game has reached a point of stalemate in which I cannot make any more moves",
"la": "",
"fr": "Le jeu a atteint un point d'impasse dans lequel je ne peux plus faire de mouvements"
}, "tic_tac_toe_time_out_error": {
"he": "ืื ืืชื ืจืืฆื ืื ืฆื ืืืื ืืืื ืฉืชืฉืืง ืืืจ ืืืชืจ, ืื ืืืืจ",
"en": "If you want to win you should consider playing faster, ye donkey",
"la": "",
"fr": "Si tu veux gagner, tu devrais envisager de jouer plus vite, tortue"
}, //wordle
"wordle_game": {
"he": /^ืื ืืืืฉ ืฉืื ืืื/i, "en": /^My guess is/i, "la": /null/, "fr": /null/
}, "wordle_game_reply": {
"he": "ืืืืื ืฉืืืจืช ืืื %s\nืื ืืงืื ืฉืื ืืื: %s",
"en": "The word you choose is %s\nYour grade is: %s",
"la": "",
"fr": ""
}, "wordle_game_word_non_existent_error": {
"he": "ืืืืื ืฉืืืจืช ืื ืงืืืืช ืืืืืจ ืฉืื ื",
"en": "The word you choose isn't exist on our database",
"la": "",
"fr": ""
}, "wordle_game_word_length_error": {
"he": "ืืืืื ืืืืืช ืืืืืช ืืืืจื ืฉื ืืืืืง ืืืฉ ืืืชืืืช",
"en": "The word length must be exactly five letters",
"la": "",
"fr": ""
}, //language and help
"change_language": {
"he": /^ืฉื ื ืฉืคื/i, "en": /^Change language to/i, "la": /^Muta lingua ad/i, "fr": /^Change la langue en/i
}, "language_change_reply": {
"he": "ืืฉืคื ืฉืื ืชื ืืืฆืืื",
"en": "Language successfully changed",
"la": "Lingua mutatur feliciter",
"fr": "Langue modifiรฉe avec succรจs"
}, "language_change_error": {
"he": "ืืืืื ื ืจืง ืขืืจืืช, ืื ืืืืช, ืืฆืจืคืชืืช ื ืชืืืืช ืขื ืืื ืืืื",
"en": "Only Hebrew, English, French and Latin are currently supported by the bot",
"la": "",
"fr": "Seuls l'hรฉbreu, l'anglais, le latin et le franรงais sont actuellement pris en charge par le bot"
}, "help_me_pwease": {
"he": /^ืขืืจื/i, "en": /^Help/i, "la": /^Auxilium/i, "fr": /^Aide/i
}, "help_general": {
"he": /^ืขืืจื$/i, "en": /^Help$/i, "la": /^Auxilium$/i, "fr": /^Aide$/i
}, "help_language": {
"he": /^ืขืืจื ืฉืคื$/i, "en": /^Help language$/i, "la": "", "fr": /^Aide langue$/i
}, "help_filters": {
"he": /^ืขืืจื ืคืืืืจืื$/i, "en": /^Help filters$/i, "la": "", "fr": /^Aide filtres$/i
}, "help_tags": {
"he": /^ืขืืจื ืชืืืืื$/i, "en": /^Help tags$/i, "la": "", "fr": /^Aide tags$/i
}, "help_birthdays": {
"he": /^ืขืืจื ืืื ืืืืืช$/i, "en": /^Help birthdays$/i, "la": "", "fr": /^Aide anniversaires$/i
}, "help_permissions": {
"he": /^ืขืืจื ืืจืฉืืืช$/i, "en": /^Help permissions$/i, "la": "", "fr": /^Aide niveaux$/i
}, "help_reminders": {
"he": /^ืขืืจื ืชืืืืจืืช$/i, "en": /^Help reminders$/i, "la": "", "fr": /^Aide rappels$/i
}, "help_stickers": {
"he": /^ืขืืจื ืกืืืงืจืื$/i, "en": /^Help sticker$/i, "la": "", "fr": /^Aide autocollant$/i
}, "help_internet": {
"he": /^ืขืืจื ืืื ืืจื ื$/i, "en": /^Help internet$/i, "la": "", "fr": /^Aide internet$/i
}, "help_others": {
"he": /^ืขืืจื ืฉืื ืืช$/i, "en": /^Help misc$/i, "la": "", "fr": /^Aide divers$/i
}, "help_admin": {
"he": /^ืขืืจื ืคืืชืื$/i, "en": /^Help admin$/i, "la": "", "fr": /^Aide administrateur$/i
}, "help_general_reply": {
"he": `_*ืจืฉืืืช ืืคืงืืืืช ืืขืืจื ืืืืืช ืืขืืจืืช*_\nืื ื ืคืฉืืื ืืฉืงื ืืขืืจื ืกืคืฆืืคืืช ืื ืืืข ืืคืงืืื ืืืฉืื, ืืืขืืจื ืืคืงืืืืช ืืืืืช:\n"ืขืืจื ืฉืคื", "ืขืืจื ืคืืืืจืื", "ืขืืจื ืชืืืืื", "ืขืืจื ืืื ืืืืืช", "ืขืืจื ืชืืืืจืืช", "ืขืืจื ืืจืฉืืืช", "ืขืืจื ืกืืืงืจืื", "ืขืืจื ืืื ืืจื ื", "ืขืืจื ืฉืื ืืช"\nืื ืื, ืืกืชื ืจืฆืืชื ืืจืืืช ืืช ืืืืืขื ืืื, ืชืจืืืฉื ืืืคืฉื ืืืืฉืืจ!\nืืคืืชื ืืืชืืืืง ืขื ืืื ืืจืืื ืืฆืงื ืืืืชื ืขืืืจื\nืงืืฉืืจ ืืืืืจ ืืงืื ืึพGithub, ืืกืงืจื ืื: https://github.com/ArielYat/Whatsapp-bot-Project`,
"en": `_*English Command List and General Help*_\nIf you desire help regarding a specific command, try one of the following:\n"Help language", "Help filters", "Help tags", "Help birthdays", "Help reminders", "Help permissions", "Help stickers", "Help internet", "Help others"\nIf not, and you just wanted to see this message, feel free to stick around! \nDeveloped and maintained by Ariel Yatskan and Ethan Amiran\nThe GitHub repository, for the curious: https://github.com/ArielYat/Whatsapp-bot-Project`,
"la": ``,
"fr": `_*Liste des commandes en franรงais et aide gรฉnรฉrale*_\nSi vous souhaitez obtenir de l'aide concernant une commande spรฉcifique, essayez l'une des options suivantes:\n"Aide langue", "Aide filtres", "Assiste tags", "Aide anniversaires", "Assiste rappels", "Assiste niveaux", "Assiste autocollant", "Assiste internet", "Aide autre"\nSi ce n'est pas le cas, et que vous vouliez simplement voir ce message, n'hรฉsitez pas ร rester! \nDรฉveloppรฉ et maintenu par Ariel Yatskan et Ethan Amiran\nLe rรฉfรฉrentiel GitHub, pour les curieux: https://github.com/ArielYat/Whatsapp-bot-Project`
}, "help_language_reply": {
"he": `*ืฉืคืช ืืืื:*\n- "ืฉื ื ืฉืคื ื[ืฉืคื]" - ืืฉื ื ืืช ืื ืืืื ืืงืื ืืืืื ืืคืงืืืืช\n - ืืืืืื: ืฉื ื ืฉืคื ืืื ืืืืช\n - ืืคืฉืจ ืืืฉืชืืฉ ืืคืงืืื ืืื ืืื ืฉืคื\n - ืฉืคืืช ืฉื ืชืืืืช ืืขืช: ืขืืจืืช, ืื ืืืืช, ืฆืจืคืชืืช`,
"en": `*Bot's Language:*\n- "Change language to [language]" - changes the language the bot receives and sends messages in\n - For example: Change language to Hebrew\n - This command can be used at all times in every language\n - Languages currently supported: Hebrew, English, French`,
"la": ``,
"fr": `*Langue du bot:*\n- "Change la langue en [langue]" - change la langue dans laquelle le bot reรงoit et envoie des messages\\n - Par exemple: Change la langue en hรฉbreu\n - Cette commande peut รชtre utilisรฉe ร tout moment dans toutes les langues\\n - Langues actuellement prises en charge: Hรฉbreu, Anglais et Franรงais`
}, "help_filters_reply": {
"he": `*ืคืืืืจืื:*\n_ืคืืืืจืื ืืืืืื ืืืืืช ืืงืกื, ืชืืื ื ืื ืกืจืืื_\n- "ืืืกืฃ ืคืืืืจ [ืคืืืืจ] - [ืชืืืืช ืืืื]" - ืืืกืืฃ ืคืืืืจ ืืงืืืฆื\n - ืืืืืื: ืืืกืฃ ืคืืืืจ ืืืื - ืื ื ื\n- "ืืกืจ ืคืืืืจ [ืคืืืืจ]" - ืืกืืจ ืืช ืืคืืืืจ ืืืฆืืืื ืืืงืืืฆื\n - ืืืืืื: ืืกืจ ืคืืืืจ ืืืื\n- "ืขืจืื ืคืืืืจ [ืคืืืืจ ืงืืื] - [ืชืฉืืื ืืืฉื]" - ืขืืจื ืคืืืืจ ืงืืื ืืงืืืฆื\n - ืืืืืื: ืขืจืื ืคืืืืจ ืืืื - ืืคืจืกืง\n- "ืืจืื ืคืืืืจืื" - ืืฆืื ืืช ืจืฉืืืช ืืคืืืืจืื ืืงืืืืื ืืขืช ืืงืืืฆื\n_ืืืค ืืืืื!_\n- ืืืืกืคืช ืคืืืืจ ืืคืฉืจ ืื ืืืฉืชืืฉ ื[ืฉื] ืืฉืืื ืืชืืื ืืืฉืื ืืฉืืคืืืืจ ื ืงืจื\n - ืืืืืื: "ืืืกืฃ ืคืืืืจ ืืืื - [ืืืกื]" ืืืจืื ืืืื ืืชืืื ืืช ืืืกื ืืฉื ืืืจ "ืืืื"`,
"en": `*Filters:*\n_Filters can be text, an image or a video_\n- "Add filter [filter] - [bot reply]" - adds a filter to the group\n - For example: Add filter food - banana\n- "Remove filter [filter]" - removes the specified filter from the group\n - For example: Remove filter food\n- "Edit filter [existing filter] - [new reply]" - edits the specified filter\n - For example: Edit filter food - peach\n- "Show filters" - displays the list of all filter and their replies in the group\n_Special tip!_\n- When adding a filter you can use [name] to tag someone when the filter is invoked\n - For example: "Add filter food - [Joseph]" will make the bot tag Joseph whenever "food" is said`,
"la": ``,
"fr": `*Filtres:*\n_Les filtres peuvent รชtre un texte, une image ou une vidรฉo_ \n- "Ajoute le filtre [filtre] - [rรฉponse du bot]" - ajoute un filtre au groupe\n - Par exemple: Ajoute le filtre Nourriture - banane\n- "Supprime le filtre [filtre]" - supprime le filtre spรฉcifiรฉ du groupe\n - Par exemple : Supprime le filtre Nourriture\n- "Modifie le filtre [filtre existant] - [nouvelle rรฉponse]" - modifie le filtre spรฉcifiรฉ\n - Par exemple: Modifie le filtre Nourriture - pรชche\n- "Affiche les filtres" - affiche la liste de tous les filtres et leurs rรฉponses dans le groupe\n_Conseil spรฉcial!_\n- Lors de l'ajout d'un filtre, vous pouvez utiliser [nom] pour marquer quelqu'un lorsque le filtre est appelรฉ\n - Par exemple: "Ajoute le filtre Nourriture - [Joseph]" fera que le bot marquera Joseph chaque fois que "nourriture" sera dit`