@cometchat/chat-uikit-react 5.0.2 → 5.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/index.d.ts +326 -265
  2. package/dist/index.js +2 -2
  3. package/dist/index.js.map +1 -1
  4. package/dist/styles/CometChatAudioBubble.css +1 -0
  5. package/dist/styles/CometChatOutgoingCall.css +1 -1
  6. package/dist/styles/CometChatUsers.css +1 -1
  7. package/dist/styles/components/CometChatAudioBubble.css +1 -0
  8. package/dist/styles/components/CometChatOutgoingCall.css +1 -1
  9. package/dist/styles/components/CometChatUsers.css +1 -1
  10. package/dist/types/CometChatUIKit/CometChatUIKitUtility.d.ts +1 -0
  11. package/dist/types/components/BaseComponents/CometChatAudioBubble/src/webaudio.d.ts +2 -2
  12. package/dist/types/components/BaseComponents/CometChatEmojiKeyboard/useCometChatEmojiKeyboard.d.ts +1 -0
  13. package/dist/types/components/BaseComponents/CometChatMessageBubble/CometChatMessageBubble.d.ts +1 -0
  14. package/dist/types/components/Calling/CometChatCallLogs/CometChatCallLogs.d.ts +1 -0
  15. package/dist/types/components/Calling/CometChatIncomingCall/CometChatIncomingCall.d.ts +1 -0
  16. package/dist/types/components/Calling/CometChatOutgoingCall/CometChatOutgoingCall.d.ts +1 -0
  17. package/dist/types/components/Calling/OutgoingCallConfiguration.d.ts +1 -0
  18. package/dist/types/components/CometChatConversations/controller.d.ts +1 -0
  19. package/dist/types/components/CometChatMessageList/CometChatMessageList.d.ts +1 -0
  20. package/dist/types/components/CometChatThreadedMessagePreview/CometChatThreadedMessagePreview.d.ts +1 -0
  21. package/dist/types/components/CometChatUserMemberWrapper/CometChatUserMemberWrapper.d.ts +1 -0
  22. package/dist/types/components/CometChatUsers/controller.d.ts +1 -0
  23. package/dist/types/components/Extensions/Stickers/StickersExtensionDecorator.d.ts +1 -0
  24. package/dist/types/components/Extensions/ThumbnailGeneration/ThumbnailGenerationExtensionDecorator.d.ts +1 -0
  25. package/dist/types/modals/CometChatActionsView.d.ts +1 -0
  26. package/dist/types/modals/CometChatMessageTemplate.d.ts +1 -0
  27. package/dist/types/resources/CometChatLocalize/cometchat-localize.d.ts +288 -228
  28. package/dist/types/utils/DataSource.d.ts +1 -0
  29. package/dist/types/utils/DataSourceDecorator.d.ts +1 -0
  30. package/dist/types/utils/MessagesDataSource.d.ts +3 -1
  31. package/package.json +1 -1
  32. package/dist/types/utils/CalendarObject.d.ts +0 -27
  33. package/dist/types/utils/Interface.d.ts +0 -37
@@ -14,28 +14,13 @@ declare class CometChatLocalize {
14
14
  }>;
15
15
  static translations: {
16
16
  ar: {
17
- INCOMING_CALL: string;
18
- OUTGOING_CALL: string;
19
- CALL_REJECTED: string;
20
- CALL_ANSWERED: string;
21
- CALL_CANCELLED: string;
22
- MISSED_CALL: string;
23
- CALL_UNANSWERED: string;
24
17
  INFO: string;
25
18
  REACT: string;
26
19
  EDIT: string;
27
- CONVERSATION_DELETED: string;
28
20
  MESSAGE_PRIVATELY: string;
29
21
  TRANSLATE: string;
30
22
  USERS: string;
31
23
  CHATS: string;
32
- LAST_SEEN: string;
33
- AT: string;
34
- WRONG_FILE_TYPE: string;
35
- MESSAGE_COPIED: string;
36
- MESSAGE_EDITED: string;
37
- MESSAGE_DELETED_TEXT: string;
38
- MESSAGE_TRANSLATED: string;
39
24
  SEARCH_EMOJI: string;
40
25
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
41
26
  GROUPS: string;
@@ -57,8 +42,10 @@ declare class CometChatLocalize {
57
42
  CONVERSATIONS: string;
58
43
  CONVERSATION_LIST: string;
59
44
  MESSAGES: string;
45
+ WRONG_FILE_TYPE: string;
60
46
  MESSAGE_HEADER: string;
61
47
  MESSAGE_LIST: string;
48
+ /**Properties and constants */
62
49
  MESSAGE_COMPOSER: string;
63
50
  USERS_WITH_MESSAGES: string;
64
51
  USER_LIST: string;
@@ -86,7 +73,7 @@ declare class CometChatLocalize {
86
73
  MESSAGE_IMAGE: string;
87
74
  MESSAGE_FILE: string;
88
75
  MESSAGE_VIDEO: string;
89
- MESSAGE_AUDIO: string;
76
+ MESSAGE_AUDIO: string; /**Override resources */
90
77
  CUSTOM_MESSAGE: string;
91
78
  SELECT_A_DATE: string;
92
79
  TIME_ZONE: string;
@@ -101,6 +88,7 @@ declare class CometChatLocalize {
101
88
  MORE_TIMES: string;
102
89
  MISSED_VOICE_CALL: string;
103
90
  MEET_WITH: string;
91
+ CONVERSATION_DELETED: string;
104
92
  MEETING_SCHEDULER: string;
105
93
  MISSED_VIDEO_CALL: string;
106
94
  CUSTOM_MESSAGE_POLL: string;
@@ -136,6 +124,11 @@ declare class CometChatLocalize {
136
124
  ADD_MEMBERS: string;
137
125
  SEND_MESSAGE: string;
138
126
  UNBLOCK_USER: string;
127
+ /**
128
+ * Accepts the string to localize and return the localized string
129
+ * @param {String} str
130
+ * @returns {String} localized str
131
+ */
139
132
  BLOCK_USER: string;
140
133
  DELETE_AND_EXIT: string;
141
134
  LEAVE_GROUP: string;
@@ -161,6 +154,10 @@ declare class CometChatLocalize {
161
154
  YOU_DELETED_THIS_MESSAGE: string;
162
155
  THIS_MESSAGE_DELETED: string;
163
156
  MESSAGE_IS_DELETED: string;
157
+ MESSAGE_COPIED: string;
158
+ MESSAGE_EDITED: string;
159
+ MESSAGE_DELETED_TEXT: string;
160
+ MESSAGE_TRANSLATED: string;
164
161
  VIEW_ON_YOUTUBE: string;
165
162
  SEARCH: string;
166
163
  ERROR: string;
@@ -173,6 +170,13 @@ declare class CometChatLocalize {
173
170
  INCOMING_VIDEO_CALL: string;
174
171
  DECLINE: string;
175
172
  ACCEPT: string;
173
+ INCOMING_CALL: string;
174
+ OUTGOING_CALL: string;
175
+ CALL_REJECTED: string;
176
+ CALL_ANSWERED: string;
177
+ CALL_CANCELLED: string;
178
+ MISSED_CALL: string;
179
+ CALL_UNANSWERED: string;
176
180
  CALL_INITIATED: string;
177
181
  OUTGOING_AUDIO_CALL: string;
178
182
  OUTGOING_VIDEO_CALL: string;
@@ -242,6 +246,8 @@ declare class CometChatLocalize {
242
246
  CHANGE_SCOPE: string;
243
247
  STICKER: string;
244
248
  LAST_ACTIVE_AT: string;
249
+ LAST_SEEN: string;
250
+ AT: string;
245
251
  VOICE_CALL: string;
246
252
  VIEW_DETAIL: string;
247
253
  VOTES: string;
@@ -296,10 +302,10 @@ declare class CometChatLocalize {
296
302
  ONGOING_CALL: string;
297
303
  YOU_ALREADY_ONGOING_CALL: string;
298
304
  RESIZE: string;
299
- SETTINGS: string;
300
- ACTIONS: string;
301
305
  READ_MORE: string;
302
306
  SHOW_LESS: string;
307
+ SETTINGS: string;
308
+ ACTIONS: string;
303
309
  VIEW_PROFILE: string;
304
310
  SEND_MESSAGE_IN_PRIVATE: string;
305
311
  DELETE: string;
@@ -396,7 +402,7 @@ declare class CometChatLocalize {
396
402
  NO_CONVERSATIONS: string;
397
403
  CONVERSATIONS_EMPTY_MESSAGE: string;
398
404
  NO_GROUP_MEMBER_AVAILABLE: string;
399
- OOPS: string;
405
+ "OOPS!": string;
400
406
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
401
407
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
402
408
  REACHED_MAX_LIMIT: string;
@@ -407,31 +413,16 @@ declare class CometChatLocalize {
407
413
  SAVE: string;
408
414
  };
409
415
  de: {
410
- INCOMING_CALL: string;
411
- OUTGOING_CALL: string;
412
- CALL_REJECTED: string;
413
- CALL_ANSWERED: string;
414
- CALL_CANCELLED: string;
415
- MISSED_CALL: string;
416
- CALL_UNANSWERED: string;
417
416
  INFO: string;
418
417
  REACT: string;
419
418
  EDIT: string;
420
419
  MESSAGE_PRIVATELY: string;
421
420
  TRANSLATE: string;
422
421
  USERS: string;
423
- CONVERSATION_DELETED: string;
424
- MESSAGE_COPIED: string;
425
- MESSAGE_EDITED: string;
426
- MESSAGE_DELETED_TEXT: string;
427
- MESSAGE_TRANSLATED: string;
428
422
  CHATS: string;
429
- LAST_SEEN: string;
430
- AT: string;
431
423
  SEARCH_EMOJI: string;
432
424
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
433
425
  GROUPS: string;
434
- WRONG_FILE_TYPE: string;
435
426
  SHARED: string;
436
427
  SOUND_MANAGER: string;
437
428
  THEME: string;
@@ -450,6 +441,7 @@ declare class CometChatLocalize {
450
441
  CONVERSATIONS: string;
451
442
  CONVERSATION_LIST: string;
452
443
  MESSAGES: string;
444
+ WRONG_FILE_TYPE: string;
453
445
  MESSAGE_HEADER: string;
454
446
  MESSAGE_LIST: string;
455
447
  MESSAGE_COMPOSER: string;
@@ -494,6 +486,7 @@ declare class CometChatLocalize {
494
486
  MORE_TIMES: string;
495
487
  MISSED_VOICE_CALL: string;
496
488
  MEET_WITH: string;
489
+ CONVERSATION_DELETED: string;
497
490
  MEETING_SCHEDULER: string;
498
491
  MISSED_VIDEO_CALL: string;
499
492
  CUSTOM_MESSAGE_POLL: string;
@@ -554,6 +547,10 @@ declare class CometChatLocalize {
554
547
  YOU_DELETED_THIS_MESSAGE: string;
555
548
  THIS_MESSAGE_DELETED: string;
556
549
  MESSAGE_IS_DELETED: string;
550
+ MESSAGE_COPIED: string;
551
+ MESSAGE_EDITED: string;
552
+ MESSAGE_DELETED_TEXT: string;
553
+ MESSAGE_TRANSLATED: string;
557
554
  VIEW_ON_YOUTUBE: string;
558
555
  SEARCH: string;
559
556
  ERROR: string;
@@ -566,6 +563,13 @@ declare class CometChatLocalize {
566
563
  INCOMING_VIDEO_CALL: string;
567
564
  DECLINE: string;
568
565
  ACCEPT: string;
566
+ INCOMING_CALL: string;
567
+ OUTGOING_CALL: string;
568
+ CALL_REJECTED: string;
569
+ CALL_ANSWERED: string;
570
+ CALL_CANCELLED: string;
571
+ MISSED_CALL: string;
572
+ CALL_UNANSWERED: string;
569
573
  CALL_INITIATED: string;
570
574
  OUTGOING_AUDIO_CALL: string;
571
575
  OUTGOING_VIDEO_CALL: string;
@@ -635,6 +639,8 @@ declare class CometChatLocalize {
635
639
  CHANGE_SCOPE: string;
636
640
  STICKER: string;
637
641
  LAST_ACTIVE_AT: string;
642
+ LAST_SEEN: string;
643
+ AT: string;
638
644
  VOICE_CALL: string;
639
645
  VIEW_DETAIL: string;
640
646
  VOTES: string;
@@ -789,7 +795,7 @@ declare class CometChatLocalize {
789
795
  NO_CONVERSATIONS: string;
790
796
  CONVERSATIONS_EMPTY_MESSAGE: string;
791
797
  NO_GROUP_MEMBER_AVAILABLE: string;
792
- OOPS: string;
798
+ "OOPS!": string;
793
799
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
794
800
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
795
801
  REACHED_MAX_LIMIT: string;
@@ -905,7 +911,11 @@ declare class CometChatLocalize {
905
911
  TYPING: string;
906
912
  IS_TYPING: string;
907
913
  CLOSE: string;
908
- ENTER_GROUP_NAME: string;
914
+ ENTER_GROUP_NAME: string; /**
915
+ * Accepts the string to localize and return the localized string
916
+ * @param {String} str
917
+ * @returns {String} localized str
918
+ */
909
919
  ADD_MEMBERS: string;
910
920
  SEND_MESSAGE: string;
911
921
  UNBLOCK_USER: string;
@@ -1193,29 +1203,14 @@ declare class CometChatLocalize {
1193
1203
  SAVE: string;
1194
1204
  };
1195
1205
  es: {
1196
- INCOMING_CALL: string;
1197
- OUTGOING_CALL: string;
1198
- CALL_REJECTED: string;
1199
- CALL_ANSWERED: string;
1200
- CALL_CANCELLED: string;
1201
- MISSED_CALL: string;
1202
- CALL_UNANSWERED: string;
1203
1206
  INFO: string;
1204
1207
  REACT: string;
1205
1208
  EDIT: string;
1206
1209
  MESSAGE_PRIVATELY: string;
1207
- CONVERSATION_DELETED: string;
1208
- MESSAGE_COPIED: string;
1209
- MESSAGE_EDITED: string;
1210
- MESSAGE_DELETED_TEXT: string;
1211
- MESSAGE_TRANSLATED: string;
1212
1210
  TRANSLATE: string;
1213
- LAST_SEEN: string;
1214
- AT: string;
1215
1211
  USERS: string;
1216
1212
  CHATS: string;
1217
1213
  SEARCH_EMOJI: string;
1218
- WRONG_FILE_TYPE: string;
1219
1214
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
1220
1215
  GROUPS: string;
1221
1216
  SHARED: string;
@@ -1230,12 +1225,18 @@ declare class CometChatLocalize {
1230
1225
  MESSAGE_RECEIPT: string;
1231
1226
  MESSAGE: string;
1232
1227
  RECEIPT_INFORMATION: string;
1228
+ /**
1229
+ * The `CometChatLocalize` class handles localization for the CometChat application.
1230
+ * It provides functionality to detect the user's browser language settings and
1231
+ * set the application's language accordingly.
1232
+ */
1233
1233
  NO_RECIPIENT: string;
1234
1234
  NO_RECIPIENTS: string;
1235
1235
  CONVERSATIONS_WITH_MESSAGES: string;
1236
1236
  CONVERSATIONS: string;
1237
1237
  CONVERSATION_LIST: string;
1238
- MESSAGES: string;
1238
+ MESSAGES: string; /**Properties and constants */
1239
+ WRONG_FILE_TYPE: string;
1239
1240
  MESSAGE_HEADER: string;
1240
1241
  MESSAGE_LIST: string;
1241
1242
  MESSAGE_COMPOSER: string;
@@ -1257,7 +1258,7 @@ declare class CometChatLocalize {
1257
1258
  GROUP_PASSWORD_BLANK: string;
1258
1259
  GROUP_NAME_BLANK: string;
1259
1260
  GROUP_TYPE_BLANK: string;
1260
- DELETE_CONVERSATION: string;
1261
+ DELETE_CONVERSATION: string; /**Add to the original array of translations if language code is not found */
1261
1262
  ADD_TO_CHAT: string;
1262
1263
  MORE: string;
1263
1264
  COPY: string;
@@ -1280,6 +1281,7 @@ declare class CometChatLocalize {
1280
1281
  MORE_TIMES: string;
1281
1282
  MISSED_VOICE_CALL: string;
1282
1283
  MEET_WITH: string;
1284
+ CONVERSATION_DELETED: string;
1283
1285
  MEETING_SCHEDULER: string;
1284
1286
  MISSED_VIDEO_CALL: string;
1285
1287
  CUSTOM_MESSAGE_POLL: string;
@@ -1292,7 +1294,10 @@ declare class CometChatLocalize {
1292
1294
  MODERATOR: string;
1293
1295
  PARTICIPANT: string;
1294
1296
  PUBLIC: string;
1295
- PRIVATE: string;
1297
+ PRIVATE: string; /**
1298
+ * Set the active language
1299
+ * @param {String} language
1300
+ */
1296
1301
  PASSWORD_PROTECTED: string;
1297
1302
  PRIVACY_AND_SECURITY: string;
1298
1303
  PREFERENCES: string;
@@ -1340,6 +1345,10 @@ declare class CometChatLocalize {
1340
1345
  YOU_DELETED_THIS_MESSAGE: string;
1341
1346
  THIS_MESSAGE_DELETED: string;
1342
1347
  MESSAGE_IS_DELETED: string;
1348
+ MESSAGE_COPIED: string;
1349
+ MESSAGE_EDITED: string;
1350
+ MESSAGE_DELETED_TEXT: string;
1351
+ MESSAGE_TRANSLATED: string;
1343
1352
  VIEW_ON_YOUTUBE: string;
1344
1353
  SEARCH: string;
1345
1354
  ERROR: string;
@@ -1352,6 +1361,13 @@ declare class CometChatLocalize {
1352
1361
  INCOMING_VIDEO_CALL: string;
1353
1362
  DECLINE: string;
1354
1363
  ACCEPT: string;
1364
+ INCOMING_CALL: string;
1365
+ OUTGOING_CALL: string;
1366
+ CALL_REJECTED: string;
1367
+ CALL_ANSWERED: string;
1368
+ CALL_CANCELLED: string;
1369
+ MISSED_CALL: string;
1370
+ CALL_UNANSWERED: string;
1355
1371
  CALL_INITIATED: string;
1356
1372
  OUTGOING_AUDIO_CALL: string;
1357
1373
  OUTGOING_VIDEO_CALL: string;
@@ -1421,6 +1437,8 @@ declare class CometChatLocalize {
1421
1437
  CHANGE_SCOPE: string;
1422
1438
  STICKER: string;
1423
1439
  LAST_ACTIVE_AT: string;
1440
+ LAST_SEEN: string;
1441
+ AT: string;
1424
1442
  VOICE_CALL: string;
1425
1443
  VIEW_DETAIL: string;
1426
1444
  VOTES: string;
@@ -1448,8 +1466,6 @@ declare class CometChatLocalize {
1448
1466
  OBJECTS: string;
1449
1467
  SYMBOLS: string;
1450
1468
  FLAGS: string;
1451
- READ_MORE: string;
1452
- SHOW_LESS: string;
1453
1469
  SENT: string;
1454
1470
  SEEN: string;
1455
1471
  DELIVERED: string;
@@ -1477,6 +1493,8 @@ declare class CometChatLocalize {
1477
1493
  ONGOING_CALL: string;
1478
1494
  YOU_ALREADY_ONGOING_CALL: string;
1479
1495
  RESIZE: string;
1496
+ READ_MORE: string;
1497
+ SHOW_LESS: string;
1480
1498
  SETTINGS: string;
1481
1499
  ACTIONS: string;
1482
1500
  VIEW_PROFILE: string;
@@ -1575,7 +1593,7 @@ declare class CometChatLocalize {
1575
1593
  NO_CONVERSATIONS: string;
1576
1594
  CONVERSATIONS_EMPTY_MESSAGE: string;
1577
1595
  NO_GROUP_MEMBER_AVAILABLE: string;
1578
- OOPS: string;
1596
+ "OOPS!": string;
1579
1597
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
1580
1598
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
1581
1599
  REACHED_MAX_LIMIT: string;
@@ -1586,31 +1604,16 @@ declare class CometChatLocalize {
1586
1604
  SAVE: string;
1587
1605
  };
1588
1606
  fr: {
1589
- INCOMING_CALL: string;
1590
- OUTGOING_CALL: string;
1591
- CALL_REJECTED: string;
1592
- CALL_ANSWERED: string;
1593
- CALL_CANCELLED: string;
1594
- MISSED_CALL: string;
1595
- CALL_UNANSWERED: string;
1596
1607
  INFO: string;
1597
1608
  REACT: string;
1598
1609
  EDIT: string;
1599
1610
  MESSAGE_PRIVATELY: string;
1600
1611
  TRANSLATE: string;
1601
- CONVERSATION_DELETED: string;
1602
- MESSAGE_COPIED: string;
1603
- MESSAGE_EDITED: string;
1604
- MESSAGE_DELETED_TEXT: string;
1605
- MESSAGE_TRANSLATED: string;
1606
1612
  USERS: string;
1607
1613
  CHATS: string;
1608
- LAST_SEEN: string;
1609
- AT: string;
1610
1614
  SEARCH_EMOJI: string;
1611
1615
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
1612
1616
  GROUPS: string;
1613
- WRONG_FILE_TYPE: string;
1614
1617
  SHARED: string;
1615
1618
  SOUND_MANAGER: string;
1616
1619
  THEME: string;
@@ -1629,6 +1632,7 @@ declare class CometChatLocalize {
1629
1632
  CONVERSATIONS: string;
1630
1633
  CONVERSATION_LIST: string;
1631
1634
  MESSAGES: string;
1635
+ WRONG_FILE_TYPE: string;
1632
1636
  MESSAGE_HEADER: string;
1633
1637
  MESSAGE_LIST: string;
1634
1638
  MESSAGE_COMPOSER: string;
@@ -1662,7 +1666,10 @@ declare class CometChatLocalize {
1662
1666
  CUSTOM_MESSAGE: string;
1663
1667
  SELECT_A_DATE: string;
1664
1668
  TIME_ZONE: string;
1665
- MEETING_SCHEDULED: string;
1669
+ MEETING_SCHEDULED: string; /**
1670
+ * Returns the browser language
1671
+ * @returns {String} browser langauge i.e. en-US
1672
+ */
1666
1673
  SOMETHING_WRONG: string;
1667
1674
  MEETING_SLOT_BOOK: string;
1668
1675
  MEETING_BOOK_NEW_SLOT: string;
@@ -1673,6 +1680,7 @@ declare class CometChatLocalize {
1673
1680
  MORE_TIMES: string;
1674
1681
  MISSED_VOICE_CALL: string;
1675
1682
  MEET_WITH: string;
1683
+ CONVERSATION_DELETED: string;
1676
1684
  MEETING_SCHEDULER: string;
1677
1685
  MISSED_VIDEO_CALL: string;
1678
1686
  CUSTOM_MESSAGE_POLL: string;
@@ -1733,6 +1741,10 @@ declare class CometChatLocalize {
1733
1741
  YOU_DELETED_THIS_MESSAGE: string;
1734
1742
  THIS_MESSAGE_DELETED: string;
1735
1743
  MESSAGE_IS_DELETED: string;
1744
+ MESSAGE_COPIED: string;
1745
+ MESSAGE_EDITED: string;
1746
+ MESSAGE_DELETED_TEXT: string;
1747
+ MESSAGE_TRANSLATED: string;
1736
1748
  VIEW_ON_YOUTUBE: string;
1737
1749
  SEARCH: string;
1738
1750
  ERROR: string;
@@ -1745,6 +1757,13 @@ declare class CometChatLocalize {
1745
1757
  INCOMING_VIDEO_CALL: string;
1746
1758
  DECLINE: string;
1747
1759
  ACCEPT: string;
1760
+ INCOMING_CALL: string;
1761
+ OUTGOING_CALL: string;
1762
+ CALL_REJECTED: string;
1763
+ CALL_ANSWERED: string;
1764
+ CALL_CANCELLED: string;
1765
+ MISSED_CALL: string;
1766
+ CALL_UNANSWERED: string;
1748
1767
  CALL_INITIATED: string;
1749
1768
  OUTGOING_AUDIO_CALL: string;
1750
1769
  OUTGOING_VIDEO_CALL: string;
@@ -1814,6 +1833,8 @@ declare class CometChatLocalize {
1814
1833
  CHANGE_SCOPE: string;
1815
1834
  STICKER: string;
1816
1835
  LAST_ACTIVE_AT: string;
1836
+ LAST_SEEN: string;
1837
+ AT: string;
1817
1838
  VOICE_CALL: string;
1818
1839
  VIEW_DETAIL: string;
1819
1840
  VOTES: string;
@@ -1868,10 +1889,10 @@ declare class CometChatLocalize {
1868
1889
  ONGOING_CALL: string;
1869
1890
  YOU_ALREADY_ONGOING_CALL: string;
1870
1891
  RESIZE: string;
1871
- SETTINGS: string;
1872
- ACTIONS: string;
1873
1892
  READ_MORE: string;
1874
1893
  SHOW_LESS: string;
1894
+ SETTINGS: string;
1895
+ ACTIONS: string;
1875
1896
  VIEW_PROFILE: string;
1876
1897
  SEND_MESSAGE_IN_PRIVATE: string;
1877
1898
  DELETE: string;
@@ -1968,7 +1989,7 @@ declare class CometChatLocalize {
1968
1989
  NO_CONVERSATIONS: string;
1969
1990
  CONVERSATIONS_EMPTY_MESSAGE: string;
1970
1991
  NO_GROUP_MEMBER_AVAILABLE: string;
1971
- OOPS: string;
1992
+ "OOPS!": string;
1972
1993
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
1973
1994
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
1974
1995
  REACHED_MAX_LIMIT: string;
@@ -1979,31 +2000,16 @@ declare class CometChatLocalize {
1979
2000
  SAVE: string;
1980
2001
  };
1981
2002
  hi: {
1982
- INCOMING_CALL: string;
1983
- OUTGOING_CALL: string;
1984
- CALL_REJECTED: string;
1985
- CALL_ANSWERED: string;
1986
- CALL_CANCELLED: string;
1987
- MISSED_CALL: string;
1988
- CALL_UNANSWERED: string;
1989
2003
  INFO: string;
1990
2004
  REACT: string;
1991
2005
  EDIT: string;
1992
- CONVERSATION_DELETED: string;
1993
- MESSAGE_COPIED: string;
1994
- MESSAGE_EDITED: string;
1995
- MESSAGE_DELETED_TEXT: string;
1996
- MESSAGE_TRANSLATED: string;
1997
2006
  MESSAGE_PRIVATELY: string;
1998
2007
  TRANSLATE: string;
1999
2008
  USERS: string;
2000
2009
  CHATS: string;
2001
- LAST_SEEN: string;
2002
- AT: string;
2003
2010
  SEARCH_EMOJI: string;
2004
2011
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
2005
2012
  GROUPS: string;
2006
- WRONG_FILE_TYPE: string;
2007
2013
  SHARED: string;
2008
2014
  SOUND_MANAGER: string;
2009
2015
  THEME: string;
@@ -2022,6 +2028,7 @@ declare class CometChatLocalize {
2022
2028
  CONVERSATIONS: string;
2023
2029
  CONVERSATION_LIST: string;
2024
2030
  MESSAGES: string;
2031
+ WRONG_FILE_TYPE: string;
2025
2032
  MESSAGE_HEADER: string;
2026
2033
  MESSAGE_LIST: string;
2027
2034
  MESSAGE_COMPOSER: string;
@@ -2066,6 +2073,7 @@ declare class CometChatLocalize {
2066
2073
  MORE_TIMES: string;
2067
2074
  MISSED_VOICE_CALL: string;
2068
2075
  MEET_WITH: string;
2076
+ CONVERSATION_DELETED: string;
2069
2077
  MEETING_SCHEDULER: string;
2070
2078
  MISSED_VIDEO_CALL: string;
2071
2079
  CUSTOM_MESSAGE_POLL: string;
@@ -2079,7 +2087,10 @@ declare class CometChatLocalize {
2079
2087
  PARTICIPANT: string;
2080
2088
  PUBLIC: string;
2081
2089
  PRIVATE: string;
2082
- PASSWORD_PROTECTED: string;
2090
+ PASSWORD_PROTECTED: string; /**
2091
+ * Returns the active language. Return fallback language if translation is not available for the active language
2092
+ * @returns {String} active language
2093
+ */
2083
2094
  PRIVACY_AND_SECURITY: string;
2084
2095
  PREFERENCES: string;
2085
2096
  MEMBERS: string;
@@ -2126,6 +2137,10 @@ declare class CometChatLocalize {
2126
2137
  YOU_DELETED_THIS_MESSAGE: string;
2127
2138
  THIS_MESSAGE_DELETED: string;
2128
2139
  MESSAGE_IS_DELETED: string;
2140
+ MESSAGE_COPIED: string;
2141
+ MESSAGE_EDITED: string;
2142
+ MESSAGE_DELETED_TEXT: string;
2143
+ MESSAGE_TRANSLATED: string;
2129
2144
  VIEW_ON_YOUTUBE: string;
2130
2145
  SEARCH: string;
2131
2146
  ERROR: string;
@@ -2138,6 +2153,13 @@ declare class CometChatLocalize {
2138
2153
  INCOMING_VIDEO_CALL: string;
2139
2154
  DECLINE: string;
2140
2155
  ACCEPT: string;
2156
+ INCOMING_CALL: string;
2157
+ OUTGOING_CALL: string;
2158
+ CALL_REJECTED: string;
2159
+ CALL_ANSWERED: string;
2160
+ CALL_CANCELLED: string;
2161
+ MISSED_CALL: string;
2162
+ CALL_UNANSWERED: string;
2141
2163
  CALL_INITIATED: string;
2142
2164
  OUTGOING_AUDIO_CALL: string;
2143
2165
  OUTGOING_VIDEO_CALL: string;
@@ -2207,6 +2229,8 @@ declare class CometChatLocalize {
2207
2229
  CHANGE_SCOPE: string;
2208
2230
  STICKER: string;
2209
2231
  LAST_ACTIVE_AT: string;
2232
+ LAST_SEEN: string;
2233
+ AT: string;
2210
2234
  VOICE_CALL: string;
2211
2235
  VIEW_DETAIL: string;
2212
2236
  VOTES: string;
@@ -2261,11 +2285,11 @@ declare class CometChatLocalize {
2261
2285
  ONGOING_CALL: string;
2262
2286
  YOU_ALREADY_ONGOING_CALL: string;
2263
2287
  RESIZE: string;
2288
+ READ_MORE: string;
2289
+ SHOW_LESS: string;
2264
2290
  SETTINGS: string;
2265
2291
  ACTIONS: string;
2266
2292
  VIEW_PROFILE: string;
2267
- READ_MORE: string;
2268
- SHOW_LESS: string;
2269
2293
  SEND_MESSAGE_IN_PRIVATE: string;
2270
2294
  DELETE: string;
2271
2295
  DELETE_CONFIRM: string;
@@ -2361,7 +2385,7 @@ declare class CometChatLocalize {
2361
2385
  NO_CONVERSATIONS: string;
2362
2386
  CONVERSATIONS_EMPTY_MESSAGE: string;
2363
2387
  NO_GROUP_MEMBER_AVAILABLE: string;
2364
- OOPS: string;
2388
+ "OOPS!": string;
2365
2389
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
2366
2390
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
2367
2391
  REACHED_MAX_LIMIT: string;
@@ -2372,13 +2396,6 @@ declare class CometChatLocalize {
2372
2396
  SAVE: string;
2373
2397
  };
2374
2398
  ms: {
2375
- INCOMING_CALL: string;
2376
- OUTGOING_CALL: string;
2377
- CALL_REJECTED: string;
2378
- CALL_ANSWERED: string;
2379
- CALL_CANCELLED: string;
2380
- MISSED_CALL: string;
2381
- CALL_UNANSWERED: string;
2382
2399
  INFO: string;
2383
2400
  REACT: string;
2384
2401
  EDIT: string;
@@ -2386,17 +2403,9 @@ declare class CometChatLocalize {
2386
2403
  TRANSLATE: string;
2387
2404
  USERS: string;
2388
2405
  CHATS: string;
2389
- LAST_SEEN: string;
2390
- AT: string;
2391
- CONVERSATION_DELETED: string;
2392
- MESSAGE_COPIED: string;
2393
- MESSAGE_EDITED: string;
2394
- MESSAGE_DELETED_TEXT: string;
2395
- MESSAGE_TRANSLATED: string;
2396
2406
  SEARCH_EMOJI: string;
2397
2407
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
2398
2408
  GROUPS: string;
2399
- WRONG_FILE_TYPE: string;
2400
2409
  SHARED: string;
2401
2410
  SOUND_MANAGER: string;
2402
2411
  THEME: string;
@@ -2415,6 +2424,7 @@ declare class CometChatLocalize {
2415
2424
  CONVERSATIONS: string;
2416
2425
  CONVERSATION_LIST: string;
2417
2426
  MESSAGES: string;
2427
+ WRONG_FILE_TYPE: string;
2418
2428
  MESSAGE_HEADER: string;
2419
2429
  MESSAGE_LIST: string;
2420
2430
  MESSAGE_COMPOSER: string;
@@ -2444,6 +2454,7 @@ declare class CometChatLocalize {
2444
2454
  MESSAGE_IMAGE: string;
2445
2455
  MESSAGE_FILE: string;
2446
2456
  MESSAGE_VIDEO: string;
2457
+ /**Add to the original array of translations if language code is not found */
2447
2458
  MESSAGE_AUDIO: string;
2448
2459
  CUSTOM_MESSAGE: string;
2449
2460
  SELECT_A_DATE: string;
@@ -2459,6 +2470,7 @@ declare class CometChatLocalize {
2459
2470
  MORE_TIMES: string;
2460
2471
  MISSED_VOICE_CALL: string;
2461
2472
  MEET_WITH: string;
2473
+ CONVERSATION_DELETED: string;
2462
2474
  MEETING_SCHEDULER: string;
2463
2475
  MISSED_VIDEO_CALL: string;
2464
2476
  CUSTOM_MESSAGE_POLL: string;
@@ -2466,7 +2478,10 @@ declare class CometChatLocalize {
2466
2478
  CUSTOM_MESSAGE_DOCUMENT: string;
2467
2479
  CUSTOM_MESSAGE_WHITEBOARD: string;
2468
2480
  ONLINE: string;
2469
- ADMINISTRATOR: string;
2481
+ ADMINISTRATOR: string; /**
2482
+ * Returns the active language. Return fallback language if translation is not available for the active language
2483
+ * @returns {String} active language
2484
+ */
2470
2485
  ADMIN: string;
2471
2486
  MODERATOR: string;
2472
2487
  PARTICIPANT: string;
@@ -2480,7 +2495,10 @@ declare class CometChatLocalize {
2480
2495
  EDITED: string;
2481
2496
  TODAY: string;
2482
2497
  YESTERDAY: string;
2483
- SUNDAY: string;
2498
+ SUNDAY: string; /**
2499
+ * Set the active language
2500
+ * @param {String} language
2501
+ */
2484
2502
  MONDAY: string;
2485
2503
  TUESDAY: string;
2486
2504
  WEDNESDAY: string;
@@ -2519,6 +2537,10 @@ declare class CometChatLocalize {
2519
2537
  YOU_DELETED_THIS_MESSAGE: string;
2520
2538
  THIS_MESSAGE_DELETED: string;
2521
2539
  MESSAGE_IS_DELETED: string;
2540
+ MESSAGE_COPIED: string;
2541
+ MESSAGE_EDITED: string;
2542
+ MESSAGE_DELETED_TEXT: string;
2543
+ MESSAGE_TRANSLATED: string;
2522
2544
  VIEW_ON_YOUTUBE: string;
2523
2545
  SEARCH: string;
2524
2546
  ERROR: string;
@@ -2531,6 +2553,13 @@ declare class CometChatLocalize {
2531
2553
  INCOMING_VIDEO_CALL: string;
2532
2554
  DECLINE: string;
2533
2555
  ACCEPT: string;
2556
+ INCOMING_CALL: string;
2557
+ OUTGOING_CALL: string;
2558
+ CALL_REJECTED: string;
2559
+ CALL_ANSWERED: string;
2560
+ CALL_CANCELLED: string;
2561
+ MISSED_CALL: string;
2562
+ CALL_UNANSWERED: string;
2534
2563
  CALL_INITIATED: string;
2535
2564
  OUTGOING_AUDIO_CALL: string;
2536
2565
  OUTGOING_VIDEO_CALL: string;
@@ -2600,6 +2629,8 @@ declare class CometChatLocalize {
2600
2629
  CHANGE_SCOPE: string;
2601
2630
  STICKER: string;
2602
2631
  LAST_ACTIVE_AT: string;
2632
+ LAST_SEEN: string;
2633
+ AT: string;
2603
2634
  VOICE_CALL: string;
2604
2635
  VIEW_DETAIL: string;
2605
2636
  VOTES: string;
@@ -2654,13 +2685,13 @@ declare class CometChatLocalize {
2654
2685
  ONGOING_CALL: string;
2655
2686
  YOU_ALREADY_ONGOING_CALL: string;
2656
2687
  RESIZE: string;
2688
+ READ_MORE: string;
2689
+ SHOW_LESS: string;
2657
2690
  SETTINGS: string;
2658
2691
  ACTIONS: string;
2659
2692
  VIEW_PROFILE: string;
2660
2693
  SEND_MESSAGE_IN_PRIVATE: string;
2661
2694
  DELETE: string;
2662
- READ_MORE: string;
2663
- SHOW_LESS: string;
2664
2695
  DELETE_CONFIRM: string;
2665
2696
  DELETE_CHAT: string;
2666
2697
  SURE_TO_DELETE_CHAT: string;
@@ -2754,7 +2785,7 @@ declare class CometChatLocalize {
2754
2785
  NO_CONVERSATIONS: string;
2755
2786
  CONVERSATIONS_EMPTY_MESSAGE: string;
2756
2787
  NO_GROUP_MEMBER_AVAILABLE: string;
2757
- OOPS: string;
2788
+ "OOPS!": string;
2758
2789
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
2759
2790
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
2760
2791
  REACHED_MAX_LIMIT: string;
@@ -2765,33 +2796,18 @@ declare class CometChatLocalize {
2765
2796
  SAVE: string;
2766
2797
  };
2767
2798
  pt: {
2768
- INCOMING_CALL: string;
2769
- OUTGOING_CALL: string;
2770
- CALL_REJECTED: string;
2771
- CALL_ANSWERED: string;
2772
- CALL_CANCELLED: string;
2773
- MISSED_CALL: string;
2774
- CALL_UNANSWERED: string;
2775
2799
  INFO: string;
2776
2800
  REACT: string;
2777
2801
  EDIT: string;
2778
2802
  MESSAGE_PRIVATELY: string;
2779
2803
  TRANSLATE: string;
2780
- CONVERSATION_DELETED: string;
2781
- MESSAGE_COPIED: string;
2782
- MESSAGE_EDITED: string;
2783
- MESSAGE_DELETED_TEXT: string;
2784
- MESSAGE_TRANSLATED: string;
2785
2804
  USERS: string;
2786
2805
  CHATS: string;
2787
- LAST_SEEN: string;
2788
- AT: string;
2789
2806
  SEARCH_EMOJI: string;
2790
2807
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
2791
2808
  GROUPS: string;
2792
2809
  SHARED: string;
2793
2810
  SOUND_MANAGER: string;
2794
- WRONG_FILE_TYPE: string;
2795
2811
  THEME: string;
2796
2812
  DELETE_MSG_TEXT: string;
2797
2813
  LOCALIZE: string;
@@ -2808,6 +2824,7 @@ declare class CometChatLocalize {
2808
2824
  CONVERSATIONS: string;
2809
2825
  CONVERSATION_LIST: string;
2810
2826
  MESSAGES: string;
2827
+ WRONG_FILE_TYPE: string;
2811
2828
  MESSAGE_HEADER: string;
2812
2829
  MESSAGE_LIST: string;
2813
2830
  MESSAGE_COMPOSER: string;
@@ -2852,6 +2869,7 @@ declare class CometChatLocalize {
2852
2869
  MORE_TIMES: string;
2853
2870
  MISSED_VOICE_CALL: string;
2854
2871
  MEET_WITH: string;
2872
+ CONVERSATION_DELETED: string;
2855
2873
  MEETING_SCHEDULER: string;
2856
2874
  MISSED_VIDEO_CALL: string;
2857
2875
  CUSTOM_MESSAGE_POLL: string;
@@ -2882,7 +2900,9 @@ declare class CometChatLocalize {
2882
2900
  SATURDAY: string;
2883
2901
  TYPING: string;
2884
2902
  IS_TYPING: string;
2885
- CLOSE: string;
2903
+ CLOSE: string; /**
2904
+ * Sets the default lannguage if no language is passed in init method
2905
+ */
2886
2906
  ENTER_GROUP_NAME: string;
2887
2907
  ADD_MEMBERS: string;
2888
2908
  SEND_MESSAGE: string;
@@ -2912,6 +2932,10 @@ declare class CometChatLocalize {
2912
2932
  YOU_DELETED_THIS_MESSAGE: string;
2913
2933
  THIS_MESSAGE_DELETED: string;
2914
2934
  MESSAGE_IS_DELETED: string;
2935
+ MESSAGE_COPIED: string;
2936
+ MESSAGE_EDITED: string;
2937
+ MESSAGE_DELETED_TEXT: string;
2938
+ MESSAGE_TRANSLATED: string;
2915
2939
  VIEW_ON_YOUTUBE: string;
2916
2940
  SEARCH: string;
2917
2941
  ERROR: string;
@@ -2924,6 +2948,13 @@ declare class CometChatLocalize {
2924
2948
  INCOMING_VIDEO_CALL: string;
2925
2949
  DECLINE: string;
2926
2950
  ACCEPT: string;
2951
+ INCOMING_CALL: string;
2952
+ OUTGOING_CALL: string;
2953
+ CALL_REJECTED: string;
2954
+ CALL_ANSWERED: string;
2955
+ CALL_CANCELLED: string;
2956
+ MISSED_CALL: string;
2957
+ CALL_UNANSWERED: string;
2927
2958
  CALL_INITIATED: string;
2928
2959
  OUTGOING_AUDIO_CALL: string;
2929
2960
  OUTGOING_VIDEO_CALL: string;
@@ -2993,6 +3024,8 @@ declare class CometChatLocalize {
2993
3024
  CHANGE_SCOPE: string;
2994
3025
  STICKER: string;
2995
3026
  LAST_ACTIVE_AT: string;
3027
+ LAST_SEEN: string;
3028
+ AT: string;
2996
3029
  VOICE_CALL: string;
2997
3030
  VIEW_DETAIL: string;
2998
3031
  VOTES: string;
@@ -3047,11 +3080,11 @@ declare class CometChatLocalize {
3047
3080
  ONGOING_CALL: string;
3048
3081
  YOU_ALREADY_ONGOING_CALL: string;
3049
3082
  RESIZE: string;
3083
+ READ_MORE: string;
3084
+ SHOW_LESS: string;
3050
3085
  SETTINGS: string;
3051
3086
  ACTIONS: string;
3052
3087
  VIEW_PROFILE: string;
3053
- READ_MORE: string;
3054
- SHOW_LESS: string;
3055
3088
  SEND_MESSAGE_IN_PRIVATE: string;
3056
3089
  DELETE: string;
3057
3090
  DELETE_CONFIRM: string;
@@ -3147,7 +3180,7 @@ declare class CometChatLocalize {
3147
3180
  NO_CONVERSATIONS: string;
3148
3181
  CONVERSATIONS_EMPTY_MESSAGE: string;
3149
3182
  NO_GROUP_MEMBER_AVAILABLE: string;
3150
- OOPS: string;
3183
+ "OOPS!": string;
3151
3184
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
3152
3185
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
3153
3186
  REACHED_MAX_LIMIT: string;
@@ -3158,13 +3191,6 @@ declare class CometChatLocalize {
3158
3191
  SAVE: string;
3159
3192
  };
3160
3193
  ru: {
3161
- INCOMING_CALL: string;
3162
- OUTGOING_CALL: string;
3163
- CALL_REJECTED: string;
3164
- CALL_ANSWERED: string;
3165
- CALL_CANCELLED: string;
3166
- MISSED_CALL: string;
3167
- CALL_UNANSWERED: string;
3168
3194
  INFO: string;
3169
3195
  REACT: string;
3170
3196
  EDIT: string;
@@ -3172,13 +3198,6 @@ declare class CometChatLocalize {
3172
3198
  TRANSLATE: string;
3173
3199
  USERS: string;
3174
3200
  CHATS: string;
3175
- LAST_SEEN: string;
3176
- AT: string;
3177
- MESSAGE_COPIED: string;
3178
- MESSAGE_EDITED: string;
3179
- MESSAGE_DELETED_TEXT: string;
3180
- MESSAGE_TRANSLATED: string;
3181
- CONVERSATION_DELETED: string;
3182
3201
  SEARCH_EMOJI: string;
3183
3202
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
3184
3203
  GROUPS: string;
@@ -3187,7 +3206,6 @@ declare class CometChatLocalize {
3187
3206
  THEME: string;
3188
3207
  DELETE_MSG_TEXT: string;
3189
3208
  LOCALIZE: string;
3190
- WRONG_FILE_TYPE: string;
3191
3209
  CONVERSATION_LIST_ITEM: string;
3192
3210
  DATA_ITEM: string;
3193
3211
  STATUS_INDICATOR: string;
@@ -3201,6 +3219,7 @@ declare class CometChatLocalize {
3201
3219
  CONVERSATIONS: string;
3202
3220
  CONVERSATION_LIST: string;
3203
3221
  MESSAGES: string;
3222
+ WRONG_FILE_TYPE: string;
3204
3223
  MESSAGE_HEADER: string;
3205
3224
  MESSAGE_LIST: string;
3206
3225
  MESSAGE_COMPOSER: string;
@@ -3225,7 +3244,7 @@ declare class CometChatLocalize {
3225
3244
  DELETE_CONVERSATION: string;
3226
3245
  ADD_TO_CHAT: string;
3227
3246
  MORE: string;
3228
- COPY: string;
3247
+ COPY: string; /**Override resources */
3229
3248
  VOICE_RECORDING: string;
3230
3249
  MESSAGE_IMAGE: string;
3231
3250
  MESSAGE_FILE: string;
@@ -3245,6 +3264,7 @@ declare class CometChatLocalize {
3245
3264
  MORE_TIMES: string;
3246
3265
  MISSED_VOICE_CALL: string;
3247
3266
  MEET_WITH: string;
3267
+ CONVERSATION_DELETED: string;
3248
3268
  MEETING_SCHEDULER: string;
3249
3269
  MISSED_VIDEO_CALL: string;
3250
3270
  CUSTOM_MESSAGE_POLL: string;
@@ -3305,6 +3325,10 @@ declare class CometChatLocalize {
3305
3325
  YOU_DELETED_THIS_MESSAGE: string;
3306
3326
  THIS_MESSAGE_DELETED: string;
3307
3327
  MESSAGE_IS_DELETED: string;
3328
+ MESSAGE_COPIED: string;
3329
+ MESSAGE_EDITED: string;
3330
+ MESSAGE_DELETED_TEXT: string;
3331
+ MESSAGE_TRANSLATED: string;
3308
3332
  VIEW_ON_YOUTUBE: string;
3309
3333
  SEARCH: string;
3310
3334
  ERROR: string;
@@ -3317,6 +3341,13 @@ declare class CometChatLocalize {
3317
3341
  INCOMING_VIDEO_CALL: string;
3318
3342
  DECLINE: string;
3319
3343
  ACCEPT: string;
3344
+ INCOMING_CALL: string;
3345
+ OUTGOING_CALL: string;
3346
+ CALL_REJECTED: string;
3347
+ CALL_ANSWERED: string;
3348
+ CALL_CANCELLED: string;
3349
+ MISSED_CALL: string;
3350
+ CALL_UNANSWERED: string;
3320
3351
  CALL_INITIATED: string;
3321
3352
  OUTGOING_AUDIO_CALL: string;
3322
3353
  OUTGOING_VIDEO_CALL: string;
@@ -3386,6 +3417,8 @@ declare class CometChatLocalize {
3386
3417
  CHANGE_SCOPE: string;
3387
3418
  STICKER: string;
3388
3419
  LAST_ACTIVE_AT: string;
3420
+ LAST_SEEN: string;
3421
+ AT: string;
3389
3422
  VOICE_CALL: string;
3390
3423
  VIEW_DETAIL: string;
3391
3424
  VOTES: string;
@@ -3540,7 +3573,7 @@ declare class CometChatLocalize {
3540
3573
  NO_CONVERSATIONS: string;
3541
3574
  CONVERSATIONS_EMPTY_MESSAGE: string;
3542
3575
  NO_GROUP_MEMBER_AVAILABLE: string;
3543
- OOPS: string;
3576
+ "OOPS!": string;
3544
3577
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
3545
3578
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
3546
3579
  REACHED_MAX_LIMIT: string;
@@ -3611,10 +3644,20 @@ declare class CometChatLocalize {
3611
3644
  SELECT_TIME: string;
3612
3645
  NO_CALLS_SELECTED: string;
3613
3646
  SELECT__GROUP: string;
3647
+ /**
3648
+ * Initializes localization with the specified language and custom resources.
3649
+ * @param {string} [language=""] - The language code to set.
3650
+ * @param {object} [resources={}] - Custom translations to override defaults.
3651
+ */
3614
3652
  SELECT__USER: string;
3615
3653
  GROUP_PASSWORD_BLANK: string;
3616
3654
  GROUP_NAME_BLANK: string;
3617
3655
  GROUP_TYPE_BLANK: string;
3656
+ /**
3657
+ * Initializes localization with the specified language and custom resources.
3658
+ * @param {string} [language=""] - The language code to set.
3659
+ * @param {object} [resources={}] - Custom translations to override defaults.
3660
+ */
3618
3661
  DELETE_CONVERSATION: string;
3619
3662
  ADD_TO_CHAT: string;
3620
3663
  MORE: string;
@@ -3656,7 +3699,10 @@ declare class CometChatLocalize {
3656
3699
  PREFERENCES: string;
3657
3700
  MEMBERS: string;
3658
3701
  MEMBER: string;
3659
- EDITED: string;
3702
+ EDITED: string; /**
3703
+ * Returns the language code
3704
+ * @returns {String} language code i.e. en
3705
+ */
3660
3706
  TODAY: string;
3661
3707
  YESTERDAY: string;
3662
3708
  SUNDAY: string;
@@ -3944,33 +3990,18 @@ declare class CometChatLocalize {
3944
3990
  SAVE: string;
3945
3991
  };
3946
3992
  "zh-tw": {
3947
- INCOMING_CALL: string;
3948
- OUTGOING_CALL: string;
3949
- CALL_REJECTED: string;
3950
- CALL_ANSWERED: string;
3951
- CALL_CANCELLED: string;
3952
- MISSED_CALL: string;
3953
- CALL_UNANSWERED: string;
3954
3993
  INFO: string;
3955
3994
  REACT: string;
3956
3995
  EDIT: string;
3957
3996
  MESSAGE_PRIVATELY: string;
3958
- CONVERSATION_DELETED: string;
3959
- MESSAGE_COPIED: string;
3960
- MESSAGE_EDITED: string;
3961
- MESSAGE_DELETED_TEXT: string;
3962
- MESSAGE_TRANSLATED: string;
3963
3997
  TRANSLATE: string;
3964
3998
  USERS: string;
3965
3999
  CHATS: string;
3966
- LAST_SEEN: string;
3967
- AT: string;
3968
4000
  SEARCH_EMOJI: string;
3969
4001
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
3970
4002
  GROUPS: string;
3971
4003
  SHARED: string;
3972
4004
  SOUND_MANAGER: string;
3973
- WRONG_FILE_TYPE: string;
3974
4005
  THEME: string;
3975
4006
  DELETE_MSG_TEXT: string;
3976
4007
  LOCALIZE: string;
@@ -3987,6 +4018,7 @@ declare class CometChatLocalize {
3987
4018
  CONVERSATIONS: string;
3988
4019
  CONVERSATION_LIST: string;
3989
4020
  MESSAGES: string;
4021
+ WRONG_FILE_TYPE: string;
3990
4022
  MESSAGE_HEADER: string;
3991
4023
  MESSAGE_LIST: string;
3992
4024
  MESSAGE_COMPOSER: string;
@@ -4031,6 +4063,7 @@ declare class CometChatLocalize {
4031
4063
  MORE_TIMES: string;
4032
4064
  MISSED_VOICE_CALL: string;
4033
4065
  MEET_WITH: string;
4066
+ CONVERSATION_DELETED: string;
4034
4067
  MEETING_SCHEDULER: string;
4035
4068
  MISSED_VIDEO_CALL: string;
4036
4069
  CUSTOM_MESSAGE_POLL: string;
@@ -4091,6 +4124,10 @@ declare class CometChatLocalize {
4091
4124
  YOU_DELETED_THIS_MESSAGE: string;
4092
4125
  THIS_MESSAGE_DELETED: string;
4093
4126
  MESSAGE_IS_DELETED: string;
4127
+ MESSAGE_COPIED: string;
4128
+ MESSAGE_EDITED: string;
4129
+ MESSAGE_DELETED_TEXT: string;
4130
+ MESSAGE_TRANSLATED: string;
4094
4131
  VIEW_ON_YOUTUBE: string;
4095
4132
  SEARCH: string;
4096
4133
  ERROR: string;
@@ -4103,6 +4140,13 @@ declare class CometChatLocalize {
4103
4140
  INCOMING_VIDEO_CALL: string;
4104
4141
  DECLINE: string;
4105
4142
  ACCEPT: string;
4143
+ INCOMING_CALL: string;
4144
+ OUTGOING_CALL: string;
4145
+ CALL_REJECTED: string;
4146
+ CALL_ANSWERED: string;
4147
+ CALL_CANCELLED: string;
4148
+ MISSED_CALL: string;
4149
+ CALL_UNANSWERED: string;
4106
4150
  CALL_INITIATED: string;
4107
4151
  OUTGOING_AUDIO_CALL: string;
4108
4152
  OUTGOING_VIDEO_CALL: string;
@@ -4172,6 +4216,8 @@ declare class CometChatLocalize {
4172
4216
  CHANGE_SCOPE: string;
4173
4217
  STICKER: string;
4174
4218
  LAST_ACTIVE_AT: string;
4219
+ LAST_SEEN: string;
4220
+ AT: string;
4175
4221
  VOICE_CALL: string;
4176
4222
  VIEW_DETAIL: string;
4177
4223
  VOTES: string;
@@ -4226,6 +4272,8 @@ declare class CometChatLocalize {
4226
4272
  ONGOING_CALL: string;
4227
4273
  YOU_ALREADY_ONGOING_CALL: string;
4228
4274
  RESIZE: string;
4275
+ READ_MORE: string;
4276
+ SHOW_LESS: string;
4229
4277
  SETTINGS: string;
4230
4278
  ACTIONS: string;
4231
4279
  VIEW_PROFILE: string;
@@ -4257,8 +4305,6 @@ declare class CometChatLocalize {
4257
4305
  LEAVE: string;
4258
4306
  CLICK_TO_START_CONVERSATION: string;
4259
4307
  CUSTOM_MESSAGE_LOCATION: string;
4260
- READ_MORE: string;
4261
- SHOW_LESS: string;
4262
4308
  SHARED_LOCATION: string;
4263
4309
  IN_A_THREAD: string;
4264
4310
  CALLS: string;
@@ -4326,7 +4372,7 @@ declare class CometChatLocalize {
4326
4372
  NO_CONVERSATIONS: string;
4327
4373
  CONVERSATIONS_EMPTY_MESSAGE: string;
4328
4374
  NO_GROUP_MEMBER_AVAILABLE: string;
4329
- OOPS: string;
4375
+ "OOPS!": string;
4330
4376
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
4331
4377
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
4332
4378
  REACHED_MAX_LIMIT: string;
@@ -4337,26 +4383,12 @@ declare class CometChatLocalize {
4337
4383
  SAVE: string;
4338
4384
  };
4339
4385
  sv: {
4340
- INCOMING_CALL: string;
4341
- OUTGOING_CALL: string;
4342
- CALL_REJECTED: string;
4343
- CALL_ANSWERED: string;
4344
- CALL_CANCELLED: string;
4345
- MISSED_CALL: string;
4346
- CALL_UNANSWERED: string;
4347
4386
  INFO: string;
4348
4387
  REACT: string;
4349
- LAST_SEEN: string;
4350
- AT: string;
4351
4388
  EDIT: string;
4352
4389
  MESSAGE_PRIVATELY: string;
4353
4390
  TRANSLATE: string;
4354
4391
  USERS: string;
4355
- CONVERSATION_DELETED: string;
4356
- MESSAGE_COPIED: string;
4357
- MESSAGE_EDITED: string;
4358
- MESSAGE_DELETED_TEXT: string;
4359
- MESSAGE_TRANSLATED: string;
4360
4392
  CHATS: string;
4361
4393
  SEARCH_EMOJI: string;
4362
4394
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
@@ -4369,7 +4401,6 @@ declare class CometChatLocalize {
4369
4401
  CONVERSATION_LIST_ITEM: string;
4370
4402
  DATA_ITEM: string;
4371
4403
  STATUS_INDICATOR: string;
4372
- WRONG_FILE_TYPE: string;
4373
4404
  BADGE_COUNT: string;
4374
4405
  MESSAGE_RECEIPT: string;
4375
4406
  MESSAGE: string;
@@ -4380,6 +4411,7 @@ declare class CometChatLocalize {
4380
4411
  CONVERSATIONS: string;
4381
4412
  CONVERSATION_LIST: string;
4382
4413
  MESSAGES: string;
4414
+ WRONG_FILE_TYPE: string;
4383
4415
  MESSAGE_HEADER: string;
4384
4416
  MESSAGE_LIST: string;
4385
4417
  MESSAGE_COMPOSER: string;
@@ -4420,10 +4452,14 @@ declare class CometChatLocalize {
4420
4452
  MEETING_NO_SLOTS_AVAILABLE: string;
4421
4453
  MEETING_TRY_DIFFERENT_DATE: string;
4422
4454
  NO_TIME_SLOTS_AVAILABLE: string;
4423
- SCHEDULE: string;
4455
+ SCHEDULE: string; /**
4456
+ * Returns the language code
4457
+ * @returns {String} language code i.e. en
4458
+ */
4424
4459
  MORE_TIMES: string;
4425
4460
  MISSED_VOICE_CALL: string;
4426
4461
  MEET_WITH: string;
4462
+ CONVERSATION_DELETED: string;
4427
4463
  MEETING_SCHEDULER: string;
4428
4464
  MISSED_VIDEO_CALL: string;
4429
4465
  CUSTOM_MESSAGE_POLL: string;
@@ -4484,6 +4520,10 @@ declare class CometChatLocalize {
4484
4520
  YOU_DELETED_THIS_MESSAGE: string;
4485
4521
  THIS_MESSAGE_DELETED: string;
4486
4522
  MESSAGE_IS_DELETED: string;
4523
+ MESSAGE_COPIED: string;
4524
+ MESSAGE_EDITED: string;
4525
+ MESSAGE_DELETED_TEXT: string;
4526
+ MESSAGE_TRANSLATED: string;
4487
4527
  VIEW_ON_YOUTUBE: string;
4488
4528
  SEARCH: string;
4489
4529
  ERROR: string;
@@ -4496,6 +4536,13 @@ declare class CometChatLocalize {
4496
4536
  INCOMING_VIDEO_CALL: string;
4497
4537
  DECLINE: string;
4498
4538
  ACCEPT: string;
4539
+ INCOMING_CALL: string;
4540
+ OUTGOING_CALL: string;
4541
+ CALL_REJECTED: string;
4542
+ CALL_ANSWERED: string;
4543
+ CALL_CANCELLED: string;
4544
+ MISSED_CALL: string;
4545
+ CALL_UNANSWERED: string;
4499
4546
  CALL_INITIATED: string;
4500
4547
  OUTGOING_AUDIO_CALL: string;
4501
4548
  OUTGOING_VIDEO_CALL: string;
@@ -4565,6 +4612,8 @@ declare class CometChatLocalize {
4565
4612
  CHANGE_SCOPE: string;
4566
4613
  STICKER: string;
4567
4614
  LAST_ACTIVE_AT: string;
4615
+ LAST_SEEN: string;
4616
+ AT: string;
4568
4617
  VOICE_CALL: string;
4569
4618
  VIEW_DETAIL: string;
4570
4619
  VOTES: string;
@@ -4619,10 +4668,10 @@ declare class CometChatLocalize {
4619
4668
  ONGOING_CALL: string;
4620
4669
  YOU_ALREADY_ONGOING_CALL: string;
4621
4670
  RESIZE: string;
4622
- SETTINGS: string;
4623
- ACTIONS: string;
4624
4671
  READ_MORE: string;
4625
4672
  SHOW_LESS: string;
4673
+ SETTINGS: string;
4674
+ ACTIONS: string;
4626
4675
  VIEW_PROFILE: string;
4627
4676
  SEND_MESSAGE_IN_PRIVATE: string;
4628
4677
  DELETE: string;
@@ -4719,7 +4768,7 @@ declare class CometChatLocalize {
4719
4768
  NO_CONVERSATIONS: string;
4720
4769
  CONVERSATIONS_EMPTY_MESSAGE: string;
4721
4770
  NO_GROUP_MEMBER_AVAILABLE: string;
4722
- OOPS: string;
4771
+ "OOPS!": string;
4723
4772
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
4724
4773
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
4725
4774
  REACHED_MAX_LIMIT: string;
@@ -4730,32 +4779,17 @@ declare class CometChatLocalize {
4730
4779
  SAVE: string;
4731
4780
  };
4732
4781
  lt: {
4733
- INCOMING_CALL: string;
4734
- OUTGOING_CALL: string;
4735
- CALL_REJECTED: string;
4736
- CALL_ANSWERED: string;
4737
- CALL_CANCELLED: string;
4738
- MISSED_CALL: string;
4739
- CALL_UNANSWERED: string;
4740
4782
  INFO: string;
4741
4783
  REACT: string;
4742
4784
  EDIT: string;
4743
- CONVERSATION_DELETED: string;
4744
- MESSAGE_COPIED: string;
4745
- MESSAGE_EDITED: string;
4746
- MESSAGE_DELETED_TEXT: string;
4747
- MESSAGE_TRANSLATED: string;
4748
4785
  MESSAGE_PRIVATELY: string;
4749
4786
  TRANSLATE: string;
4750
4787
  USERS: string;
4751
- LAST_SEEN: string;
4752
- AT: string;
4753
4788
  CHATS: string;
4754
4789
  SEARCH_EMOJI: string;
4755
4790
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
4756
4791
  GROUPS: string;
4757
4792
  SHARED: string;
4758
- WRONG_FILE_TYPE: string;
4759
4793
  SOUND_MANAGER: string;
4760
4794
  THEME: string;
4761
4795
  DELETE_MSG_TEXT: string;
@@ -4773,6 +4807,7 @@ declare class CometChatLocalize {
4773
4807
  CONVERSATIONS: string;
4774
4808
  CONVERSATION_LIST: string;
4775
4809
  MESSAGES: string;
4810
+ WRONG_FILE_TYPE: string;
4776
4811
  MESSAGE_HEADER: string;
4777
4812
  MESSAGE_LIST: string;
4778
4813
  MESSAGE_COMPOSER: string;
@@ -4817,6 +4852,7 @@ declare class CometChatLocalize {
4817
4852
  MORE_TIMES: string;
4818
4853
  MISSED_VOICE_CALL: string;
4819
4854
  MEET_WITH: string;
4855
+ CONVERSATION_DELETED: string;
4820
4856
  MEETING_SCHEDULER: string;
4821
4857
  MISSED_VIDEO_CALL: string;
4822
4858
  CUSTOM_MESSAGE_POLL: string;
@@ -4840,7 +4876,11 @@ declare class CometChatLocalize {
4840
4876
  YESTERDAY: string;
4841
4877
  SUNDAY: string;
4842
4878
  MONDAY: string;
4843
- TUESDAY: string;
4879
+ TUESDAY: string; /**
4880
+ * Accepts the string to localize and return the localized string
4881
+ * @param {String} str
4882
+ * @returns {String} localized str
4883
+ */
4844
4884
  WEDNESDAY: string;
4845
4885
  THURSDAY: string;
4846
4886
  FRIDAY: string;
@@ -4877,6 +4917,10 @@ declare class CometChatLocalize {
4877
4917
  YOU_DELETED_THIS_MESSAGE: string;
4878
4918
  THIS_MESSAGE_DELETED: string;
4879
4919
  MESSAGE_IS_DELETED: string;
4920
+ MESSAGE_COPIED: string;
4921
+ MESSAGE_EDITED: string;
4922
+ MESSAGE_DELETED_TEXT: string;
4923
+ MESSAGE_TRANSLATED: string;
4880
4924
  VIEW_ON_YOUTUBE: string;
4881
4925
  SEARCH: string;
4882
4926
  ERROR: string;
@@ -4889,6 +4933,13 @@ declare class CometChatLocalize {
4889
4933
  INCOMING_VIDEO_CALL: string;
4890
4934
  DECLINE: string;
4891
4935
  ACCEPT: string;
4936
+ INCOMING_CALL: string;
4937
+ OUTGOING_CALL: string;
4938
+ CALL_REJECTED: string;
4939
+ CALL_ANSWERED: string;
4940
+ CALL_CANCELLED: string;
4941
+ MISSED_CALL: string;
4942
+ CALL_UNANSWERED: string;
4892
4943
  CALL_INITIATED: string;
4893
4944
  OUTGOING_AUDIO_CALL: string;
4894
4945
  OUTGOING_VIDEO_CALL: string;
@@ -4958,6 +5009,8 @@ declare class CometChatLocalize {
4958
5009
  CHANGE_SCOPE: string;
4959
5010
  STICKER: string;
4960
5011
  LAST_ACTIVE_AT: string;
5012
+ LAST_SEEN: string;
5013
+ AT: string;
4961
5014
  VOICE_CALL: string;
4962
5015
  VIEW_DETAIL: string;
4963
5016
  VOTES: string;
@@ -4965,8 +5018,6 @@ declare class CometChatLocalize {
4965
5018
  NO_VOTE: string;
4966
5019
  REACTED: string;
4967
5020
  ADDED: string;
4968
- READ_MORE: string;
4969
- SHOW_LESS: string;
4970
5021
  SHOW_UNSAFE_CONTENT: string;
4971
5022
  REACT_TO_MESSAGE: string;
4972
5023
  UNBANNED: string;
@@ -5014,6 +5065,8 @@ declare class CometChatLocalize {
5014
5065
  ONGOING_CALL: string;
5015
5066
  YOU_ALREADY_ONGOING_CALL: string;
5016
5067
  RESIZE: string;
5068
+ READ_MORE: string;
5069
+ SHOW_LESS: string;
5017
5070
  SETTINGS: string;
5018
5071
  ACTIONS: string;
5019
5072
  VIEW_PROFILE: string;
@@ -5112,7 +5165,7 @@ declare class CometChatLocalize {
5112
5165
  NO_CONVERSATIONS: string;
5113
5166
  CONVERSATIONS_EMPTY_MESSAGE: string;
5114
5167
  NO_GROUP_MEMBER_AVAILABLE: string;
5115
- OOPS: string;
5168
+ "OOPS!": string;
5116
5169
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
5117
5170
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
5118
5171
  REACHED_MAX_LIMIT: string;
@@ -5123,33 +5176,18 @@ declare class CometChatLocalize {
5123
5176
  SAVE: string;
5124
5177
  };
5125
5178
  hu: {
5126
- INCOMING_CALL: string;
5127
- OUTGOING_CALL: string;
5128
- CALL_REJECTED: string;
5129
- CALL_ANSWERED: string;
5130
- CALL_CANCELLED: string;
5131
- MISSED_CALL: string;
5132
- CALL_UNANSWERED: string;
5133
5179
  INFO: string;
5134
5180
  REACT: string;
5135
5181
  EDIT: string;
5136
5182
  MESSAGE_PRIVATELY: string;
5137
5183
  TRANSLATE: string;
5138
5184
  USERS: string;
5139
- CONVERSATION_DELETED: string;
5140
- MESSAGE_COPIED: string;
5141
- MESSAGE_EDITED: string;
5142
- MESSAGE_DELETED_TEXT: string;
5143
- MESSAGE_TRANSLATED: string;
5144
5185
  CHATS: string;
5145
- LAST_SEEN: string;
5146
- AT: string;
5147
5186
  SEARCH_EMOJI: string;
5148
5187
  WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
5149
5188
  GROUPS: string;
5150
5189
  SHARED: string;
5151
5190
  SOUND_MANAGER: string;
5152
- WRONG_FILE_TYPE: string;
5153
5191
  THEME: string;
5154
5192
  DELETE_MSG_TEXT: string;
5155
5193
  LOCALIZE: string;
@@ -5166,6 +5204,7 @@ declare class CometChatLocalize {
5166
5204
  CONVERSATIONS: string;
5167
5205
  CONVERSATION_LIST: string;
5168
5206
  MESSAGES: string;
5207
+ WRONG_FILE_TYPE: string;
5169
5208
  MESSAGE_HEADER: string;
5170
5209
  MESSAGE_LIST: string;
5171
5210
  MESSAGE_COMPOSER: string;
@@ -5210,6 +5249,7 @@ declare class CometChatLocalize {
5210
5249
  MORE_TIMES: string;
5211
5250
  MISSED_VOICE_CALL: string;
5212
5251
  MEET_WITH: string;
5252
+ CONVERSATION_DELETED: string;
5213
5253
  MEETING_SCHEDULER: string;
5214
5254
  MISSED_VIDEO_CALL: string;
5215
5255
  CUSTOM_MESSAGE_POLL: string;
@@ -5228,14 +5268,21 @@ declare class CometChatLocalize {
5228
5268
  PREFERENCES: string;
5229
5269
  MEMBERS: string;
5230
5270
  MEMBER: string;
5231
- EDITED: string;
5271
+ EDITED: string; /**
5272
+ * Set the active language
5273
+ * @param {String} language
5274
+ */
5232
5275
  TODAY: string;
5233
5276
  YESTERDAY: string;
5234
5277
  SUNDAY: string;
5235
5278
  MONDAY: string;
5236
5279
  TUESDAY: string;
5237
5280
  WEDNESDAY: string;
5238
- THURSDAY: string;
5281
+ THURSDAY: string; /**
5282
+ * Accepts the string to localize and return the localized string
5283
+ * @param {String} str
5284
+ * @returns {String} localized str
5285
+ */
5239
5286
  FRIDAY: string;
5240
5287
  SATURDAY: string;
5241
5288
  TYPING: string;
@@ -5270,6 +5317,10 @@ declare class CometChatLocalize {
5270
5317
  YOU_DELETED_THIS_MESSAGE: string;
5271
5318
  THIS_MESSAGE_DELETED: string;
5272
5319
  MESSAGE_IS_DELETED: string;
5320
+ MESSAGE_COPIED: string;
5321
+ MESSAGE_EDITED: string;
5322
+ MESSAGE_DELETED_TEXT: string;
5323
+ MESSAGE_TRANSLATED: string;
5273
5324
  VIEW_ON_YOUTUBE: string;
5274
5325
  SEARCH: string;
5275
5326
  ERROR: string;
@@ -5282,6 +5333,13 @@ declare class CometChatLocalize {
5282
5333
  INCOMING_VIDEO_CALL: string;
5283
5334
  DECLINE: string;
5284
5335
  ACCEPT: string;
5336
+ INCOMING_CALL: string;
5337
+ OUTGOING_CALL: string;
5338
+ CALL_REJECTED: string;
5339
+ CALL_ANSWERED: string;
5340
+ CALL_CANCELLED: string;
5341
+ MISSED_CALL: string;
5342
+ CALL_UNANSWERED: string;
5285
5343
  CALL_INITIATED: string;
5286
5344
  OUTGOING_AUDIO_CALL: string;
5287
5345
  OUTGOING_VIDEO_CALL: string;
@@ -5351,6 +5409,8 @@ declare class CometChatLocalize {
5351
5409
  CHANGE_SCOPE: string;
5352
5410
  STICKER: string;
5353
5411
  LAST_ACTIVE_AT: string;
5412
+ LAST_SEEN: string;
5413
+ AT: string;
5354
5414
  VOICE_CALL: string;
5355
5415
  VIEW_DETAIL: string;
5356
5416
  VOTES: string;
@@ -5405,11 +5465,11 @@ declare class CometChatLocalize {
5405
5465
  ONGOING_CALL: string;
5406
5466
  YOU_ALREADY_ONGOING_CALL: string;
5407
5467
  RESIZE: string;
5468
+ READ_MORE: string;
5469
+ SHOW_LESS: string;
5408
5470
  SETTINGS: string;
5409
5471
  ACTIONS: string;
5410
5472
  VIEW_PROFILE: string;
5411
- READ_MORE: string;
5412
- SHOW_LESS: string;
5413
5473
  SEND_MESSAGE_IN_PRIVATE: string;
5414
5474
  DELETE: string;
5415
5475
  DELETE_CONFIRM: string;
@@ -5505,7 +5565,7 @@ declare class CometChatLocalize {
5505
5565
  NO_CONVERSATIONS: string;
5506
5566
  CONVERSATIONS_EMPTY_MESSAGE: string;
5507
5567
  NO_GROUP_MEMBER_AVAILABLE: string;
5508
- OOPS: string;
5568
+ "OOPS!": string;
5509
5569
  GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
5510
5570
  GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
5511
5571
  REACHED_MAX_LIMIT: string;