-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugins.json
More file actions
1011 lines (1011 loc) · 36.4 KB
/
Copy pathplugins.json
File metadata and controls
1011 lines (1011 loc) · 36.4 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
[
{
"id": "after-hours",
"name": "After-Hours Auto-Reply",
"version": "0.1.2",
"type": "extension",
"status": "stable",
"description": "Auto-replies with a configurable away/closing message to messages received outside business hours.",
"author": "Yudhi Armyndharis <yudhi@rmyndharis.com>",
"license": "MIT",
"keywords": [
"after-hours",
"business-hours",
"away",
"auto-reply",
"whatsapp",
"openwa"
],
"minOpenWAVersion": "0.6.2",
"testedOpenWAVersion": "0.6.2",
"releasedAt": "2026-06-23",
"repoPath": "after-hours",
"repoUrl": "https://github.com/rmyndharis/OpenWA-plugins",
"homepage": "https://github.com/rmyndharis/OpenWA-plugins/tree/main/after-hours",
"download": "https://github.com/rmyndharis/OpenWA-plugins/releases/download/after-hours-v0.1.2/after-hours.zip",
"i18n": {
"es": {
"name": "Respuesta Automática Fuera de Horario",
"description": "Responde automáticamente con un mensaje de ausencia configurable a los mensajes recibidos fuera del horario comercial.",
"config": {
"schedule": {
"title": "Horario semanal (JSON)"
},
"timezone": {
"title": "Zona horaria IANA"
},
"awayMessage": {
"title": "Respuesta fuera de horario"
},
"cooldownSec": {
"title": "Tiempo de espera (segundos por chat)"
},
"respondInGroups": {
"title": "Responder también en grupos"
}
}
},
"fr": {
"name": "Réponse Automatique Hors Horaires",
"description": "Répond automatiquement avec un message d'absence configurable aux messages reçus en dehors des heures d'ouverture.",
"config": {
"schedule": {
"title": "Planning hebdomadaire (JSON)"
},
"timezone": {
"title": "Fuseau horaire IANA"
},
"awayMessage": {
"title": "Réponse hors horaires"
},
"cooldownSec": {
"title": "Délai d'attente (secondes par chat)"
},
"respondInGroups": {
"title": "Répondre aussi dans les groupes"
}
}
},
"it": {
"name": "Risposta Automatica Fuori Orario",
"description": "Risponde automaticamente con un messaggio di assenza configurabile ai messaggi ricevuti fuori dall'orario di lavoro.",
"config": {
"schedule": {
"title": "Orario settimanale (JSON)"
},
"timezone": {
"title": "Fuso orario IANA"
},
"awayMessage": {
"title": "Risposta fuori orario"
},
"cooldownSec": {
"title": "Intervallo (secondi per chat)"
},
"respondInGroups": {
"title": "Rispondi anche nei gruppi"
}
}
},
"ar": {
"name": "الرد التلقائي خارج ساعات العمل",
"description": "يرد تلقائيًا برسالة غياب قابلة للتهيئة على الرسائل الواردة خارج ساعات العمل.",
"config": {
"schedule": {
"title": "الجدول الأسبوعي (JSON)"
},
"timezone": {
"title": "المنطقة الزمنية (IANA)"
},
"awayMessage": {
"title": "رد خارج ساعات العمل"
},
"cooldownSec": {
"title": "فترة الانتظار (ثوانٍ لكل محادثة)"
},
"respondInGroups": {
"title": "الرد في المجموعات أيضًا"
}
}
},
"he": {
"name": "מענה אוטומטי מחוץ לשעות הפעילות",
"description": "שולח מענה אוטומטי עם הודעת היעדרות ניתנת להגדרה להודעות שהתקבלו מחוץ לשעות הפעילות.",
"config": {
"schedule": {
"title": "לוח זמנים שבועי (JSON)"
},
"timezone": {
"title": "אזור זמן IANA"
},
"awayMessage": {
"title": "מענה מחוץ לשעות הפעילות"
},
"cooldownSec": {
"title": "זמן המתנה (שניות לצ'אט)"
},
"respondInGroups": {
"title": "מענה גם בקבוצות"
}
}
},
"te": {
"name": "వ్యాపార గంటల తర్వాత ఆటో-రిప్లై",
"description": "వ్యాపార సమయం వెలుపల వచ్చే సందేశాలకు కాన్ఫిగర్ చేయదగిన గైర్హాజరు సందేశంతో స్వయంచాలకంగా జవాబిస్తుంది.",
"config": {
"schedule": {
"title": "వారపు షెడ్యూల్ (JSON)"
},
"timezone": {
"title": "IANA సమయమండలం"
},
"awayMessage": {
"title": "వ్యాపార సమయం తర్వాత జవాబు"
},
"cooldownSec": {
"title": "కూల్డౌన్ (ప్రతి చాట్కు సెకన్లు)"
},
"respondInGroups": {
"title": "గ్రూపుల్లోనూ స్పందించు"
}
}
},
"zh-CN": {
"name": "下班后自动回复",
"description": "对在非工作时间收到的消息,自动回复可配置的离开/关闭消息。",
"config": {
"schedule": {
"title": "每周排班 (JSON)"
},
"timezone": {
"title": "IANA 时区"
},
"awayMessage": {
"title": "下班后回复内容"
},
"cooldownSec": {
"title": "冷却时间(每个聊天秒数)"
},
"respondInGroups": {
"title": "也在群组中回复"
}
}
},
"zh-HK": {
"name": "下班後自動回覆",
"description": "對非工作時間收到的訊息,自動回覆可設定的離開/關閉訊息。",
"config": {
"schedule": {
"title": "每週排班 (JSON)"
},
"timezone": {
"title": "IANA 時區"
},
"awayMessage": {
"title": "下班後回覆內容"
},
"cooldownSec": {
"title": "冷卻時間(每個聊天秒數)"
},
"respondInGroups": {
"title": "亦在群組中回覆"
}
}
}
}
},
{
"id": "chat-flow",
"name": "Chat Flow",
"version": "1.0.3",
"type": "extension",
"status": "stable",
"description": "Interactive, stateful auto-reply: a trigger word starts a greeting + numbered menu, replies traverse a configurable menu tree, and per-chat state expires after 15 minutes.",
"author": "Yudhi Armyndharis <yudhi@rmyndharis.com>",
"license": "MIT",
"keywords": [
"menu",
"flow",
"interactive",
"auto-reply",
"chatbot",
"whatsapp",
"openwa"
],
"minOpenWAVersion": "0.7.0",
"testedOpenWAVersion": "0.7.0",
"releasedAt": "2026-06-23",
"repoPath": "chat-flow",
"repoUrl": "https://github.com/rmyndharis/OpenWA-plugins",
"homepage": "https://github.com/rmyndharis/OpenWA-plugins/tree/main/chat-flow",
"download": "https://github.com/rmyndharis/OpenWA-plugins/releases/download/chat-flow-v1.0.3/chat-flow.zip",
"i18n": {
"es": {
"name": "Flujo de Chat",
"description": "Auto-respuesta interactiva con estado: una palabra clave abre un saludo y un menú numerado; las respuestas recorren un árbol de menús configurable.",
"config": {
"trigger": {
"title": "Palabra clave"
},
"greeting": {
"title": "Saludo + menú"
},
"respondInGroups": {
"title": "Responder también en grupos"
},
"options": {
"title": "Opciones del menú"
}
}
},
"fr": {
"name": "Flux de Chat",
"description": "Réponse automatique interactive et avec état : un mot-clé ouvre un message d'accueil et un menu numéroté ; les réponses parcourent une arborescence de menus configurable.",
"config": {
"trigger": {
"title": "Mot-clé déclencheur"
},
"greeting": {
"title": "Message d'accueil + menu"
},
"respondInGroups": {
"title": "Répondre aussi dans les groupes"
},
"options": {
"title": "Options du menu"
}
}
},
"it": {
"name": "Flusso di Chat",
"description": "Risposta automatica interattiva e con stato: una parola chiave apre un saluto e un menu numerato; le risposte percorrono un albero di menu configurabile.",
"config": {
"trigger": {
"title": "Parola chiave"
},
"greeting": {
"title": "Saluto + menu"
},
"respondInGroups": {
"title": "Rispondi anche nei gruppi"
},
"options": {
"title": "Opzioni del menu"
}
}
},
"ar": {
"name": "تدفّق المحادثة",
"description": "رد تلقائي تفاعلي ذو حالة: كلمة مفتاحية تفتح تحية وقائمة مرقّمة؛ تتنقّل الردود عبر شجرة قوائم قابلة للتهيئة.",
"config": {
"trigger": {
"title": "الكلمة المفتاحية"
},
"greeting": {
"title": "التحية + القائمة"
},
"respondInGroups": {
"title": "الرد في المجموعات أيضًا"
},
"options": {
"title": "خيارات القائمة"
}
}
},
"he": {
"name": "זרימת צ'אט",
"description": "מענה אוטומטי אינטראקטיבי עם מצב: מילת מפתח פותחת ברכה ותפריט ממוספר; התשובות עוברות בעץ תפריטים הניתן להגדרה.",
"config": {
"trigger": {
"title": "מילת מפתח"
},
"greeting": {
"title": "ברכה + תפריט"
},
"respondInGroups": {
"title": "מענה גם בקבוצות"
},
"options": {
"title": "אפשרויות התפריט"
}
}
},
"te": {
"name": "చాట్ ఫ్లో",
"description": "ఇంటరాక్టివ్, స్థితి ఆధారిత ఆటో-రిప్లై: ఒక ట్రిగ్గర్ పదం స్వాగతం + నంబర్ మెనూను తెరుస్తుంది; జవాబులు కాన్ఫిగర్ చేయదగిన మెనూ ట్రీలో ప్రయాణిస్తాయి.",
"config": {
"trigger": {
"title": "ట్రిగ్గర్ పదం"
},
"greeting": {
"title": "స్వాగతం + మెనూ"
},
"respondInGroups": {
"title": "గ్రూపుల్లోనూ స్పందించు"
},
"options": {
"title": "మెనూ ఎంపికలు"
}
}
},
"zh-CN": {
"name": "聊天流程",
"description": "交互式有状态自动回复:触发词打开问候语和带编号的菜单;回复会沿可配置的菜单树前进。",
"config": {
"trigger": {
"title": "触发词"
},
"greeting": {
"title": "问候语 + 菜单"
},
"respondInGroups": {
"title": "也在群组中回复"
},
"options": {
"title": "菜单选项"
}
}
},
"zh-HK": {
"name": "聊天流程",
"description": "互動式有狀態自動回覆:觸發詞開啟問候語和編號選單;回覆會沿可設定的選單樹前進。",
"config": {
"trigger": {
"title": "觸發詞"
},
"greeting": {
"title": "問候語 + 選單"
},
"respondInGroups": {
"title": "亦在群組中回覆"
},
"options": {
"title": "選單選項"
}
}
}
}
},
{
"id": "faq-bot",
"name": "FAQ / Auto-Reply Bot",
"version": "0.1.4",
"type": "extension",
"status": "stable",
"description": "Auto-replies to inbound WhatsApp messages from configurable FAQ keyword/regex rules.",
"author": "Yudhi Armyndharis <yudhi@rmyndharis.com>",
"license": "MIT",
"keywords": [
"faq",
"auto-reply",
"chatbot",
"support",
"whatsapp",
"openwa"
],
"minOpenWAVersion": "0.6.1",
"testedOpenWAVersion": "0.6.1",
"releasedAt": "2026-06-24",
"repoPath": "faq-bot",
"repoUrl": "https://github.com/rmyndharis/OpenWA-plugins",
"homepage": "https://github.com/rmyndharis/OpenWA-plugins/tree/main/faq-bot",
"download": "https://github.com/rmyndharis/OpenWA-plugins/releases/download/faq-bot-v0.1.4/faq-bot.zip",
"i18n": {
"es": {
"name": "Bot de Preguntas Frecuentes / Respuesta Automática",
"description": "Responde automáticamente a los mensajes entrantes de WhatsApp mediante reglas configurables de palabras clave y expresiones regulares.",
"config": {
"rules": {
"title": "Reglas (JSON)"
},
"fallbackReply": {
"title": "Respuesta alternativa"
},
"fallbackCooldownSec": {
"title": "Tiempo de espera alternativo (segundos por chat)"
},
"respondInGroups": {
"title": "Responder también en grupos"
}
}
},
"fr": {
"name": "Bot FAQ / Réponse Automatique",
"description": "Répond automatiquement aux messages WhatsApp entrants via des règles configurables de mots-clés et expressions régulières.",
"config": {
"rules": {
"title": "Règles (JSON)"
},
"fallbackReply": {
"title": "Réponse de secours"
},
"fallbackCooldownSec": {
"title": "Délai de secours (secondes par chat)"
},
"respondInGroups": {
"title": "Répondre aussi dans les groupes"
}
}
},
"it": {
"name": "Bot FAQ / Risposta Automatica",
"description": "Risponde automaticamente ai messaggi WhatsApp in entrata tramite regole configurabili di parole chiave ed espressioni regolari.",
"config": {
"rules": {
"title": "Regole (JSON)"
},
"fallbackReply": {
"title": "Risposta di riserva"
},
"fallbackCooldownSec": {
"title": "Intervallo di riserva (secondi per chat)"
},
"respondInGroups": {
"title": "Rispondi anche nei gruppi"
}
}
},
"ar": {
"name": "بوت الأسئلة الشائعة / الرد التلقائي",
"description": "يرد تلقائيًا على رسائل WhatsApp الواردة وفق قواعد قابلة للتهيئة من كلمات مفتاحية وتعابير نمطية.",
"config": {
"rules": {
"title": "القواعد (JSON)"
},
"fallbackReply": {
"title": "الرد الاحتياطي"
},
"fallbackCooldownSec": {
"title": "فترة انتظار الرد الاحتياطي (ثوانٍ لكل محادثة)"
},
"respondInGroups": {
"title": "الرد في المجموعات أيضًا"
}
}
},
"he": {
"name": "בוט שאלות נפוצות / מענה אוטומטי",
"description": "מגיב אוטומטית להודעות WhatsApp נכנסות לפי כללי מילות מפתח וביטויים רגולריים ניתנים להגדרה.",
"config": {
"rules": {
"title": "כללים (JSON)"
},
"fallbackReply": {
"title": "מענה חלופי"
},
"fallbackCooldownSec": {
"title": "זמן המתנה חלופי (שניות לצ'אט)"
},
"respondInGroups": {
"title": "מענה גם בקבוצות"
}
}
},
"te": {
"name": "FAQ / ఆటో-రిప్లై బాట్",
"description": "కాన్ఫిగర్ చేయదగిన FAQ కీవర్డ్/రెగ్యులర్ ఎక్స్ప్రెషన్ నియమాల ద్వారా వచ్చే WhatsApp సందేశాలకు స్వయంచాలకంగా జవాబిస్తుంది.",
"config": {
"rules": {
"title": "నియమాలు (JSON)"
},
"fallbackReply": {
"title": "ఫాల్బ్యాక్ జవాబు"
},
"fallbackCooldownSec": {
"title": "ఫాల్బ్యాక్ కూల్డౌన్ (ప్రతి చాట్కు సెకన్లు)"
},
"respondInGroups": {
"title": "గ్రూపుల్లోనూ స్పందించు"
}
}
},
"zh-CN": {
"name": "FAQ / 自动回复机器人",
"description": "通过可配置的 FAQ 关键词/正则表达式规则,自动回复入站的 WhatsApp 消息。",
"config": {
"rules": {
"title": "规则 (JSON)"
},
"fallbackReply": {
"title": "兜底回复"
},
"fallbackCooldownSec": {
"title": "兜底冷却时间(每个聊天秒数)"
},
"respondInGroups": {
"title": "也在群组中回复"
}
}
},
"zh-HK": {
"name": "FAQ / 自動回覆機器人",
"description": "透過可設定的 FAQ 關鍵字/正規表示式規則,自動回覆入站的 WhatsApp 訊息。",
"config": {
"rules": {
"title": "規則 (JSON)"
},
"fallbackReply": {
"title": "後備回覆"
},
"fallbackCooldownSec": {
"title": "後備冷卻時間(每個聊天秒數)"
},
"respondInGroups": {
"title": "亦在群組中回覆"
}
}
}
}
},
{
"id": "group-translate",
"name": "Group Auto-Translation",
"version": "1.0.4",
"type": "extension",
"status": "stable",
"description": "Auto-translates group messages between participants' languages via a LibreTranslate backend. Configure in-chat with /tr commands. Admin-gated; disabled until enabled.",
"author": "Yudhi Armyndharis <yudhi@rmyndharis.com>",
"license": "MIT",
"keywords": [
"translation",
"libretranslate",
"i18n",
"groups",
"whatsapp",
"openwa"
],
"minOpenWAVersion": "0.7.0",
"testedOpenWAVersion": "0.7.0",
"releasedAt": "2026-06-25",
"repoPath": "group-translate",
"repoUrl": "https://github.com/rmyndharis/OpenWA-plugins",
"homepage": "https://github.com/rmyndharis/OpenWA-plugins/tree/main/group-translate",
"download": "https://github.com/rmyndharis/OpenWA-plugins/releases/download/group-translate-v1.0.4/group-translate.zip",
"i18n": {
"es": {
"name": "Traducción Automática de Grupos",
"description": "Traduce automáticamente los mensajes del grupo entre los idiomas de los participantes mediante un backend LibreTranslate. Configúralo en el chat con comandos /tr. Gestionado por administradores; desactivado hasta que se habilite.",
"config": {
"libretranslateUrl": {
"title": "URL de LibreTranslate"
},
"libretranslateApiKey": {
"title": "Clave API de LibreTranslate"
},
"timeoutMs": {
"title": "Tiempo de espera de traducción (ms)"
},
"commandPrefix": {
"title": "Prefijo de comando"
},
"minLength": {
"title": "Longitud mínima de mensaje a traducir"
},
"maxLength": {
"title": "Longitud máxima de mensaje a traducir"
},
"denyReply": {
"title": "Responder a comandos denegados"
}
}
},
"fr": {
"name": "Traduction Automatique de Groupe",
"description": "Traduit automatiquement les messages du groupe entre les langues des participants via un backend LibreTranslate. Configurez dans le chat avec des commandes /tr. Réservé aux administrateurs ; désactivé jusqu'à activation.",
"config": {
"libretranslateUrl": {
"title": "URL de LibreTranslate"
},
"libretranslateApiKey": {
"title": "Clé API de LibreTranslate"
},
"timeoutMs": {
"title": "Délai de traduction (ms)"
},
"commandPrefix": {
"title": "Préfixe de commande"
},
"minLength": {
"title": "Longueur minimale du message à traduire"
},
"maxLength": {
"title": "Longueur maximale du message à traduire"
},
"denyReply": {
"title": "Répondre aux commandes refusées"
}
}
},
"it": {
"name": "Traduzione Automatica di Gruppo",
"description": "Traduce automaticamente i messaggi di gruppo tra le lingue dei partecipanti tramite un backend LibreTranslate. Configura in chat con i comandi /tr. Gestito dagli amministratori; disabilitato fino all'attivazione.",
"config": {
"libretranslateUrl": {
"title": "URL di LibreTranslate"
},
"libretranslateApiKey": {
"title": "Chiave API di LibreTranslate"
},
"timeoutMs": {
"title": "Timeout di traduzione (ms)"
},
"commandPrefix": {
"title": "Prefisso comando"
},
"minLength": {
"title": "Lunghezza minima messaggio da tradurre"
},
"maxLength": {
"title": "Lunghezza massima messaggio da tradurre"
},
"denyReply": {
"title": "Rispondi ai comandi negati"
}
}
},
"ar": {
"name": "الترجمة التلقائية للمجموعات",
"description": "يترجم رسائل المجموعة تلقائيًا بين لغات المشاركين عبر خلفية LibreTranslate. اضبطه داخل المحادثة بأوامر /tr. مقيّد للمشرفين؛ معطّل حتى يُفعَّل.",
"config": {
"libretranslateUrl": {
"title": "رابط LibreTranslate"
},
"libretranslateApiKey": {
"title": "مفتاح API لـ LibreTranslate"
},
"timeoutMs": {
"title": "مهلة الترجمة (بالميلي ثانية)"
},
"commandPrefix": {
"title": "بادئة الأمر"
},
"minLength": {
"title": "الحد الأدنى لطول الرسالة المترجمة"
},
"maxLength": {
"title": "الحد الأقصى لطول الرسالة المترجمة"
},
"denyReply": {
"title": "الرد على الأوامر المرفوضة"
}
}
},
"he": {
"name": "תרגום אוטומטי לקבוצות",
"description": "מתרגם אוטומטית הודעות קבוצה בין שפות המשתתפים דרך backend של LibreTranslate. הגדר בצ'אט עם פקודות /tr. מוגן בניהול; מושבת עד להפעלה.",
"config": {
"libretranslateUrl": {
"title": "כתובת LibreTranslate"
},
"libretranslateApiKey": {
"title": "מפתח API של LibreTranslate"
},
"timeoutMs": {
"title": "פסק זמן לתרגום (ms)"
},
"commandPrefix": {
"title": "קידומת פקודה"
},
"minLength": {
"title": "אורך מינימלי להודעה לתרגום"
},
"maxLength": {
"title": "אורך מקסימלי להודעה לתרגום"
},
"denyReply": {
"title": "השב על פקודות שנדחו"
}
}
},
"te": {
"name": "గ్రూప్ ఆటో-అనువాదం",
"description": "LibreTranslate బ్యాకెండ్ ద్వారా గ్రూప్ సందేశాలను పాల్గొనేవారి భాషల మధ్య స్వయంచాలకంగా అనువదిస్తుంది. /tr కమాండ్లతో చాట్లో కాన్ఫిగర్ చేయండి. అడ్మిన్-గేటెడ్; ప్రారంభించే వరకు నిష్క్రియం.",
"config": {
"libretranslateUrl": {
"title": "LibreTranslate చిరునామా"
},
"libretranslateApiKey": {
"title": "LibreTranslate API కీ"
},
"timeoutMs": {
"title": "అనువాద టైమ్అవుట్ (ms)"
},
"commandPrefix": {
"title": "కమాండ్ ప్రిఫిక్స్"
},
"minLength": {
"title": "అనువదించే కనీస సందేశ పొడవు"
},
"maxLength": {
"title": "అనువదించే గరిష్ట సందేశ పొడవు"
},
"denyReply": {
"title": "తిరస్కరించిన కమాండ్లకు జవాబివ్వు"
}
}
},
"zh-CN": {
"name": "群组自动翻译",
"description": "通过 LibreTranslate 后端自动翻译群组成员之间的消息。使用 /tr 命令在聊天中配置。仅管理员可操作;启用前处于禁用状态。",
"config": {
"libretranslateUrl": {
"title": "LibreTranslate 地址"
},
"libretranslateApiKey": {
"title": "LibreTranslate API 密钥"
},
"timeoutMs": {
"title": "翻译超时 (ms)"
},
"commandPrefix": {
"title": "命令前缀"
},
"minLength": {
"title": "翻译的最小消息长度"
},
"maxLength": {
"title": "翻译的最大消息长度"
},
"denyReply": {
"title": "拒绝命令时回复"
}
}
},
"zh-HK": {
"name": "群組自動翻譯",
"description": "透過 LibreTranslate 後端自動翻譯群組成員之間的訊息。使用 /tr 指令在聊天中設定。僅管理員可操作;啟用前處於停用狀態。",
"config": {
"libretranslateUrl": {
"title": "LibreTranslate 網址"
},
"libretranslateApiKey": {
"title": "LibreTranslate API 金鑰"
},
"timeoutMs": {
"title": "翻譯逾時 (ms)"
},
"commandPrefix": {
"title": "指令前綴"
},
"minLength": {
"title": "翻譯的最小訊息長度"
},
"maxLength": {
"title": "翻譯的最大訊息長度"
},
"denyReply": {
"title": "拒絕指令時回覆"
}
}
}
}
},
{
"id": "gsheets-logger",
"name": "Google Sheets Logger",
"version": "0.2.2",
"type": "extension",
"status": "stable",
"description": "Logs WhatsApp message events to a Google Sheet via a service account.",
"author": "Yudhi Armyndharis <yudhi@rmyndharis.com>",
"license": "MIT",
"keywords": [
"google-sheets",
"logging",
"audit",
"crm",
"whatsapp",
"openwa"
],
"minOpenWAVersion": "0.6.1",
"testedOpenWAVersion": "0.6.1",
"releasedAt": "2026-06-23",
"repoPath": "gsheets-logger",
"repoUrl": "https://github.com/rmyndharis/OpenWA-plugins",
"homepage": "https://github.com/rmyndharis/OpenWA-plugins/tree/main/gsheets-logger",
"download": "https://github.com/rmyndharis/OpenWA-plugins/releases/download/gsheets-logger-v0.2.2/gsheets-logger.zip",
"i18n": {
"es": {
"name": "Registrador en Google Sheets",
"description": "Registra eventos de mensajes de WhatsApp en una hoja de Google Sheets mediante una cuenta de servicio.",
"config": {
"serviceAccountJson": {
"title": "JSON de cuenta de servicio"
},
"spreadsheetId": {
"title": "ID de hoja de cálculo"
},
"sheetTab": {
"title": "Nombre de la pestaña"
},
"flushIntervalSec": {
"title": "Intervalo de volcado (segundos)"
},
"flushBatchSize": {
"title": "Volcar cuando las filas en búfer lleguen a"
}
}
},
"fr": {
"name": "Journal Google Sheets",
"description": "Enregistre les événements de messages WhatsApp dans une feuille Google Sheets via un compte de service.",
"config": {
"serviceAccountJson": {
"title": "JSON du compte de service"
},
"spreadsheetId": {
"title": "ID de la feuille de calcul"
},
"sheetTab": {
"title": "Nom de l'onglet"
},
"flushIntervalSec": {
"title": "Intervalle de vidage (secondes)"
},
"flushBatchSize": {
"title": "Vider quand les lignes en mémoire tampon atteignent"
}
}
},
"it": {
"name": "Logger su Google Sheets",
"description": "Registra gli eventi dei messaggi WhatsApp in un foglio Google Sheets tramite un account di servizio.",
"config": {
"serviceAccountJson": {
"title": "JSON dell'account di servizio"
},
"spreadsheetId": {
"title": "ID del foglio di calcolo"
},
"sheetTab": {
"title": "Nome della scheda"
},
"flushIntervalSec": {
"title": "Intervallo di svuotamento (secondi)"
},
"flushBatchSize": {
"title": "Svuota quando le righe nel buffer raggiungono"
}
}
},
"ar": {
"name": "مسجّل Google Sheets",
"description": "يسجّل أحداث رسائل WhatsApp في جدول بيانات Google Sheets عبر حساب خدمة.",
"config": {
"serviceAccountJson": {
"title": "JSON حساب الخدمة"
},
"spreadsheetId": {
"title": "معرّف جدول البيانات"
},
"sheetTab": {
"title": "اسم علامة التبويب"
},
"flushIntervalSec": {
"title": "فترة المزامنة (بالثواني)"
},
"flushBatchSize": {
"title": "مزامنة عند بلوغ الصفوف المحفوظة"
}
}
},
"he": {
"name": "רשומן Google Sheets",
"description": "מתעד אירועי הודעות WhatsApp בגיליון Google Sheets דרך חשבון שירות.",
"config": {
"serviceAccountJson": {
"title": "JSON של חשבון השירות"
},
"spreadsheetId": {
"title": "מזהה הגיליון"
},
"sheetTab": {
"title": "שם הלשונית"
},
"flushIntervalSec": {
"title": "מרווח שטיפה (שניות)"
},
"flushBatchSize": {
"title": "שטוף כשהשורות במאגר מגיעות ל"
}
}
},
"te": {
"name": "Google Sheets లాగర్",
"description": "సర్వీస్ అకౌంట్ ద్వారా WhatsApp సందేశ ఈవెంట్లను Google Sheets లో నమోదు చేస్తుంది.",
"config": {
"serviceAccountJson": {
"title": "సర్వీస్ అకౌంట్ JSON"
},
"spreadsheetId": {
"title": "స్ప్రెడ్షీట్ ID"
},
"sheetTab": {
"title": "షీట్ ట్యాబ్ పేరు"
},
"flushIntervalSec": {
"title": "ఫ్లష్ విరామం (సెకన్లు)"
},
"flushBatchSize": {
"title": "బఫర్ చేసిన వరుసలు ఈ సంఖ్యకు చేరినప్పుడు ఫ్లష్ చేయి"
}
}
},
"zh-CN": {
"name": "Google Sheets 日志记录器",
"description": "通过服务账号将 WhatsApp 消息事件记录到 Google Sheets。",
"config": {
"serviceAccountJson": {
"title": "服务账号 JSON"
},
"spreadsheetId": {
"title": "电子表格 ID"
},
"sheetTab": {
"title": "工作表标签名称"
},
"flushIntervalSec": {
"title": "刷新间隔(秒)"
},
"flushBatchSize": {
"title": "缓冲行数达到时刷新"
}
}
},
"zh-HK": {
"name": "Google Sheets 日誌記錄器",
"description": "透過服務帳號將 WhatsApp 訊息事件記錄到 Google Sheets。",
"config": {
"serviceAccountJson": {
"title": "服務帳號 JSON"
},
"spreadsheetId": {
"title": "試算表 ID"
},
"sheetTab": {
"title": "工作表標籤名稱"
},
"flushIntervalSec": {
"title": "排清間隔(秒)"
},
"flushBatchSize": {
"title": "緩衝行數達到時排清"
}
}
}
}
},
{
"id": "voice-transcription",
"name": "Voice Note Transcription",
"version": "1.0.0",
"type": "extension",
"status": "beta",
"description": "Transcribes inbound WhatsApp voice notes to text via an OpenAI-compatible speech-to-text backend (self-hosted Speaches/faster-whisper or hosted Groq/OpenAI) and delivers a `message.transcription` event to your webhook — so bots and AI can read and reply to audio. Off the message-delivery path; disabled until enabled.",
"author": "Yudhi Armyndharis <yudhi@rmyndharis.com>",
"license": "MIT",
"keywords": [
"transcription",
"speech-to-text",
"stt",
"whisper",
"voice",
"audio",
"whatsapp",
"openwa"
],
"minOpenWAVersion": "0.7.0",
"testedOpenWAVersion": "0.7.3",
"releasedAt": "2026-06-25",
"repoPath": "voice-transcription",