@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.
- package/dist/index.d.ts +326 -265
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles/CometChatAudioBubble.css +1 -0
- package/dist/styles/CometChatOutgoingCall.css +1 -1
- package/dist/styles/CometChatUsers.css +1 -1
- package/dist/styles/components/CometChatAudioBubble.css +1 -0
- package/dist/styles/components/CometChatOutgoingCall.css +1 -1
- package/dist/styles/components/CometChatUsers.css +1 -1
- package/dist/types/CometChatUIKit/CometChatUIKitUtility.d.ts +1 -0
- package/dist/types/components/BaseComponents/CometChatAudioBubble/src/webaudio.d.ts +2 -2
- package/dist/types/components/BaseComponents/CometChatEmojiKeyboard/useCometChatEmojiKeyboard.d.ts +1 -0
- package/dist/types/components/BaseComponents/CometChatMessageBubble/CometChatMessageBubble.d.ts +1 -0
- package/dist/types/components/Calling/CometChatCallLogs/CometChatCallLogs.d.ts +1 -0
- package/dist/types/components/Calling/CometChatIncomingCall/CometChatIncomingCall.d.ts +1 -0
- package/dist/types/components/Calling/CometChatOutgoingCall/CometChatOutgoingCall.d.ts +1 -0
- package/dist/types/components/Calling/OutgoingCallConfiguration.d.ts +1 -0
- package/dist/types/components/CometChatConversations/controller.d.ts +1 -0
- package/dist/types/components/CometChatMessageList/CometChatMessageList.d.ts +1 -0
- package/dist/types/components/CometChatThreadedMessagePreview/CometChatThreadedMessagePreview.d.ts +1 -0
- package/dist/types/components/CometChatUserMemberWrapper/CometChatUserMemberWrapper.d.ts +1 -0
- package/dist/types/components/CometChatUsers/controller.d.ts +1 -0
- package/dist/types/components/Extensions/Stickers/StickersExtensionDecorator.d.ts +1 -0
- package/dist/types/components/Extensions/ThumbnailGeneration/ThumbnailGenerationExtensionDecorator.d.ts +1 -0
- package/dist/types/modals/CometChatActionsView.d.ts +1 -0
- package/dist/types/modals/CometChatMessageTemplate.d.ts +1 -0
- package/dist/types/resources/CometChatLocalize/cometchat-localize.d.ts +288 -228
- package/dist/types/utils/DataSource.d.ts +1 -0
- package/dist/types/utils/DataSourceDecorator.d.ts +1 -0
- package/dist/types/utils/MessagesDataSource.d.ts +3 -1
- package/package.json +1 -1
- package/dist/types/utils/CalendarObject.d.ts +0 -27
- package/dist/types/utils/Interface.d.ts +0 -37
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import * as React from 'react';
|
|
|
2
2
|
import React__default, { JSX as JSX$1, ReactNode, FC } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
import * as _cometchat_chat_sdk_javascript from '@cometchat/chat-sdk-javascript';
|
|
5
|
+
import { CometChat as CometChat$1 } from '@cometchat/chat-sdk-javascript';
|
|
5
6
|
import { Subject } from 'rxjs';
|
|
6
7
|
|
|
7
8
|
/**
|
|
@@ -394,28 +395,13 @@ declare class CometChatLocalize {
|
|
|
394
395
|
}>;
|
|
395
396
|
static translations: {
|
|
396
397
|
ar: {
|
|
397
|
-
INCOMING_CALL: string;
|
|
398
|
-
OUTGOING_CALL: string;
|
|
399
|
-
CALL_REJECTED: string;
|
|
400
|
-
CALL_ANSWERED: string;
|
|
401
|
-
CALL_CANCELLED: string;
|
|
402
|
-
MISSED_CALL: string;
|
|
403
|
-
CALL_UNANSWERED: string;
|
|
404
398
|
INFO: string;
|
|
405
399
|
REACT: string;
|
|
406
400
|
EDIT: string;
|
|
407
|
-
CONVERSATION_DELETED: string;
|
|
408
401
|
MESSAGE_PRIVATELY: string;
|
|
409
402
|
TRANSLATE: string;
|
|
410
403
|
USERS: string;
|
|
411
404
|
CHATS: string;
|
|
412
|
-
LAST_SEEN: string;
|
|
413
|
-
AT: string;
|
|
414
|
-
WRONG_FILE_TYPE: string;
|
|
415
|
-
MESSAGE_COPIED: string;
|
|
416
|
-
MESSAGE_EDITED: string;
|
|
417
|
-
MESSAGE_DELETED_TEXT: string;
|
|
418
|
-
MESSAGE_TRANSLATED: string;
|
|
419
405
|
SEARCH_EMOJI: string;
|
|
420
406
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
421
407
|
GROUPS: string;
|
|
@@ -437,8 +423,10 @@ declare class CometChatLocalize {
|
|
|
437
423
|
CONVERSATIONS: string;
|
|
438
424
|
CONVERSATION_LIST: string;
|
|
439
425
|
MESSAGES: string;
|
|
426
|
+
WRONG_FILE_TYPE: string;
|
|
440
427
|
MESSAGE_HEADER: string;
|
|
441
428
|
MESSAGE_LIST: string;
|
|
429
|
+
/**Properties and constants */
|
|
442
430
|
MESSAGE_COMPOSER: string;
|
|
443
431
|
USERS_WITH_MESSAGES: string;
|
|
444
432
|
USER_LIST: string;
|
|
@@ -466,7 +454,7 @@ declare class CometChatLocalize {
|
|
|
466
454
|
MESSAGE_IMAGE: string;
|
|
467
455
|
MESSAGE_FILE: string;
|
|
468
456
|
MESSAGE_VIDEO: string;
|
|
469
|
-
MESSAGE_AUDIO: string;
|
|
457
|
+
MESSAGE_AUDIO: string; /**Override resources */
|
|
470
458
|
CUSTOM_MESSAGE: string;
|
|
471
459
|
SELECT_A_DATE: string;
|
|
472
460
|
TIME_ZONE: string;
|
|
@@ -481,6 +469,7 @@ declare class CometChatLocalize {
|
|
|
481
469
|
MORE_TIMES: string;
|
|
482
470
|
MISSED_VOICE_CALL: string;
|
|
483
471
|
MEET_WITH: string;
|
|
472
|
+
CONVERSATION_DELETED: string;
|
|
484
473
|
MEETING_SCHEDULER: string;
|
|
485
474
|
MISSED_VIDEO_CALL: string;
|
|
486
475
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -516,6 +505,11 @@ declare class CometChatLocalize {
|
|
|
516
505
|
ADD_MEMBERS: string;
|
|
517
506
|
SEND_MESSAGE: string;
|
|
518
507
|
UNBLOCK_USER: string;
|
|
508
|
+
/**
|
|
509
|
+
* Accepts the string to localize and return the localized string
|
|
510
|
+
* @param {String} str
|
|
511
|
+
* @returns {String} localized str
|
|
512
|
+
*/
|
|
519
513
|
BLOCK_USER: string;
|
|
520
514
|
DELETE_AND_EXIT: string;
|
|
521
515
|
LEAVE_GROUP: string;
|
|
@@ -541,6 +535,10 @@ declare class CometChatLocalize {
|
|
|
541
535
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
542
536
|
THIS_MESSAGE_DELETED: string;
|
|
543
537
|
MESSAGE_IS_DELETED: string;
|
|
538
|
+
MESSAGE_COPIED: string;
|
|
539
|
+
MESSAGE_EDITED: string;
|
|
540
|
+
MESSAGE_DELETED_TEXT: string;
|
|
541
|
+
MESSAGE_TRANSLATED: string;
|
|
544
542
|
VIEW_ON_YOUTUBE: string;
|
|
545
543
|
SEARCH: string;
|
|
546
544
|
ERROR: string;
|
|
@@ -553,6 +551,13 @@ declare class CometChatLocalize {
|
|
|
553
551
|
INCOMING_VIDEO_CALL: string;
|
|
554
552
|
DECLINE: string;
|
|
555
553
|
ACCEPT: string;
|
|
554
|
+
INCOMING_CALL: string;
|
|
555
|
+
OUTGOING_CALL: string;
|
|
556
|
+
CALL_REJECTED: string;
|
|
557
|
+
CALL_ANSWERED: string;
|
|
558
|
+
CALL_CANCELLED: string;
|
|
559
|
+
MISSED_CALL: string;
|
|
560
|
+
CALL_UNANSWERED: string;
|
|
556
561
|
CALL_INITIATED: string;
|
|
557
562
|
OUTGOING_AUDIO_CALL: string;
|
|
558
563
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -622,6 +627,8 @@ declare class CometChatLocalize {
|
|
|
622
627
|
CHANGE_SCOPE: string;
|
|
623
628
|
STICKER: string;
|
|
624
629
|
LAST_ACTIVE_AT: string;
|
|
630
|
+
LAST_SEEN: string;
|
|
631
|
+
AT: string;
|
|
625
632
|
VOICE_CALL: string;
|
|
626
633
|
VIEW_DETAIL: string;
|
|
627
634
|
VOTES: string;
|
|
@@ -676,10 +683,10 @@ declare class CometChatLocalize {
|
|
|
676
683
|
ONGOING_CALL: string;
|
|
677
684
|
YOU_ALREADY_ONGOING_CALL: string;
|
|
678
685
|
RESIZE: string;
|
|
679
|
-
SETTINGS: string;
|
|
680
|
-
ACTIONS: string;
|
|
681
686
|
READ_MORE: string;
|
|
682
687
|
SHOW_LESS: string;
|
|
688
|
+
SETTINGS: string;
|
|
689
|
+
ACTIONS: string;
|
|
683
690
|
VIEW_PROFILE: string;
|
|
684
691
|
SEND_MESSAGE_IN_PRIVATE: string;
|
|
685
692
|
DELETE: string;
|
|
@@ -776,7 +783,7 @@ declare class CometChatLocalize {
|
|
|
776
783
|
NO_CONVERSATIONS: string;
|
|
777
784
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
778
785
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
779
|
-
OOPS: string;
|
|
786
|
+
"OOPS!": string;
|
|
780
787
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
781
788
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
782
789
|
REACHED_MAX_LIMIT: string;
|
|
@@ -787,31 +794,16 @@ declare class CometChatLocalize {
|
|
|
787
794
|
SAVE: string;
|
|
788
795
|
};
|
|
789
796
|
de: {
|
|
790
|
-
INCOMING_CALL: string;
|
|
791
|
-
OUTGOING_CALL: string;
|
|
792
|
-
CALL_REJECTED: string;
|
|
793
|
-
CALL_ANSWERED: string;
|
|
794
|
-
CALL_CANCELLED: string;
|
|
795
|
-
MISSED_CALL: string;
|
|
796
|
-
CALL_UNANSWERED: string;
|
|
797
797
|
INFO: string;
|
|
798
798
|
REACT: string;
|
|
799
799
|
EDIT: string;
|
|
800
800
|
MESSAGE_PRIVATELY: string;
|
|
801
801
|
TRANSLATE: string;
|
|
802
802
|
USERS: string;
|
|
803
|
-
CONVERSATION_DELETED: string;
|
|
804
|
-
MESSAGE_COPIED: string;
|
|
805
|
-
MESSAGE_EDITED: string;
|
|
806
|
-
MESSAGE_DELETED_TEXT: string;
|
|
807
|
-
MESSAGE_TRANSLATED: string;
|
|
808
803
|
CHATS: string;
|
|
809
|
-
LAST_SEEN: string;
|
|
810
|
-
AT: string;
|
|
811
804
|
SEARCH_EMOJI: string;
|
|
812
805
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
813
806
|
GROUPS: string;
|
|
814
|
-
WRONG_FILE_TYPE: string;
|
|
815
807
|
SHARED: string;
|
|
816
808
|
SOUND_MANAGER: string;
|
|
817
809
|
THEME: string;
|
|
@@ -830,6 +822,7 @@ declare class CometChatLocalize {
|
|
|
830
822
|
CONVERSATIONS: string;
|
|
831
823
|
CONVERSATION_LIST: string;
|
|
832
824
|
MESSAGES: string;
|
|
825
|
+
WRONG_FILE_TYPE: string;
|
|
833
826
|
MESSAGE_HEADER: string;
|
|
834
827
|
MESSAGE_LIST: string;
|
|
835
828
|
MESSAGE_COMPOSER: string;
|
|
@@ -874,6 +867,7 @@ declare class CometChatLocalize {
|
|
|
874
867
|
MORE_TIMES: string;
|
|
875
868
|
MISSED_VOICE_CALL: string;
|
|
876
869
|
MEET_WITH: string;
|
|
870
|
+
CONVERSATION_DELETED: string;
|
|
877
871
|
MEETING_SCHEDULER: string;
|
|
878
872
|
MISSED_VIDEO_CALL: string;
|
|
879
873
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -934,6 +928,10 @@ declare class CometChatLocalize {
|
|
|
934
928
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
935
929
|
THIS_MESSAGE_DELETED: string;
|
|
936
930
|
MESSAGE_IS_DELETED: string;
|
|
931
|
+
MESSAGE_COPIED: string;
|
|
932
|
+
MESSAGE_EDITED: string;
|
|
933
|
+
MESSAGE_DELETED_TEXT: string;
|
|
934
|
+
MESSAGE_TRANSLATED: string;
|
|
937
935
|
VIEW_ON_YOUTUBE: string;
|
|
938
936
|
SEARCH: string;
|
|
939
937
|
ERROR: string;
|
|
@@ -946,6 +944,13 @@ declare class CometChatLocalize {
|
|
|
946
944
|
INCOMING_VIDEO_CALL: string;
|
|
947
945
|
DECLINE: string;
|
|
948
946
|
ACCEPT: string;
|
|
947
|
+
INCOMING_CALL: string;
|
|
948
|
+
OUTGOING_CALL: string;
|
|
949
|
+
CALL_REJECTED: string;
|
|
950
|
+
CALL_ANSWERED: string;
|
|
951
|
+
CALL_CANCELLED: string;
|
|
952
|
+
MISSED_CALL: string;
|
|
953
|
+
CALL_UNANSWERED: string;
|
|
949
954
|
CALL_INITIATED: string;
|
|
950
955
|
OUTGOING_AUDIO_CALL: string;
|
|
951
956
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -1015,6 +1020,8 @@ declare class CometChatLocalize {
|
|
|
1015
1020
|
CHANGE_SCOPE: string;
|
|
1016
1021
|
STICKER: string;
|
|
1017
1022
|
LAST_ACTIVE_AT: string;
|
|
1023
|
+
LAST_SEEN: string;
|
|
1024
|
+
AT: string;
|
|
1018
1025
|
VOICE_CALL: string;
|
|
1019
1026
|
VIEW_DETAIL: string;
|
|
1020
1027
|
VOTES: string;
|
|
@@ -1169,7 +1176,7 @@ declare class CometChatLocalize {
|
|
|
1169
1176
|
NO_CONVERSATIONS: string;
|
|
1170
1177
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
1171
1178
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
1172
|
-
OOPS: string;
|
|
1179
|
+
"OOPS!": string;
|
|
1173
1180
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
1174
1181
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
1175
1182
|
REACHED_MAX_LIMIT: string;
|
|
@@ -1285,7 +1292,11 @@ declare class CometChatLocalize {
|
|
|
1285
1292
|
TYPING: string;
|
|
1286
1293
|
IS_TYPING: string;
|
|
1287
1294
|
CLOSE: string;
|
|
1288
|
-
ENTER_GROUP_NAME: string;
|
|
1295
|
+
ENTER_GROUP_NAME: string; /**
|
|
1296
|
+
* Accepts the string to localize and return the localized string
|
|
1297
|
+
* @param {String} str
|
|
1298
|
+
* @returns {String} localized str
|
|
1299
|
+
*/
|
|
1289
1300
|
ADD_MEMBERS: string;
|
|
1290
1301
|
SEND_MESSAGE: string;
|
|
1291
1302
|
UNBLOCK_USER: string;
|
|
@@ -1573,29 +1584,14 @@ declare class CometChatLocalize {
|
|
|
1573
1584
|
SAVE: string;
|
|
1574
1585
|
};
|
|
1575
1586
|
es: {
|
|
1576
|
-
INCOMING_CALL: string;
|
|
1577
|
-
OUTGOING_CALL: string;
|
|
1578
|
-
CALL_REJECTED: string;
|
|
1579
|
-
CALL_ANSWERED: string;
|
|
1580
|
-
CALL_CANCELLED: string;
|
|
1581
|
-
MISSED_CALL: string;
|
|
1582
|
-
CALL_UNANSWERED: string;
|
|
1583
1587
|
INFO: string;
|
|
1584
1588
|
REACT: string;
|
|
1585
1589
|
EDIT: string;
|
|
1586
1590
|
MESSAGE_PRIVATELY: string;
|
|
1587
|
-
CONVERSATION_DELETED: string;
|
|
1588
|
-
MESSAGE_COPIED: string;
|
|
1589
|
-
MESSAGE_EDITED: string;
|
|
1590
|
-
MESSAGE_DELETED_TEXT: string;
|
|
1591
|
-
MESSAGE_TRANSLATED: string;
|
|
1592
1591
|
TRANSLATE: string;
|
|
1593
|
-
LAST_SEEN: string;
|
|
1594
|
-
AT: string;
|
|
1595
1592
|
USERS: string;
|
|
1596
1593
|
CHATS: string;
|
|
1597
1594
|
SEARCH_EMOJI: string;
|
|
1598
|
-
WRONG_FILE_TYPE: string;
|
|
1599
1595
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
1600
1596
|
GROUPS: string;
|
|
1601
1597
|
SHARED: string;
|
|
@@ -1610,12 +1606,18 @@ declare class CometChatLocalize {
|
|
|
1610
1606
|
MESSAGE_RECEIPT: string;
|
|
1611
1607
|
MESSAGE: string;
|
|
1612
1608
|
RECEIPT_INFORMATION: string;
|
|
1609
|
+
/**
|
|
1610
|
+
* The `CometChatLocalize` class handles localization for the CometChat application.
|
|
1611
|
+
* It provides functionality to detect the user's browser language settings and
|
|
1612
|
+
* set the application's language accordingly.
|
|
1613
|
+
*/
|
|
1613
1614
|
NO_RECIPIENT: string;
|
|
1614
1615
|
NO_RECIPIENTS: string;
|
|
1615
1616
|
CONVERSATIONS_WITH_MESSAGES: string;
|
|
1616
1617
|
CONVERSATIONS: string;
|
|
1617
1618
|
CONVERSATION_LIST: string;
|
|
1618
|
-
MESSAGES: string;
|
|
1619
|
+
MESSAGES: string; /**Properties and constants */
|
|
1620
|
+
WRONG_FILE_TYPE: string;
|
|
1619
1621
|
MESSAGE_HEADER: string;
|
|
1620
1622
|
MESSAGE_LIST: string;
|
|
1621
1623
|
MESSAGE_COMPOSER: string;
|
|
@@ -1637,7 +1639,7 @@ declare class CometChatLocalize {
|
|
|
1637
1639
|
GROUP_PASSWORD_BLANK: string;
|
|
1638
1640
|
GROUP_NAME_BLANK: string;
|
|
1639
1641
|
GROUP_TYPE_BLANK: string;
|
|
1640
|
-
DELETE_CONVERSATION: string;
|
|
1642
|
+
DELETE_CONVERSATION: string; /**Add to the original array of translations if language code is not found */
|
|
1641
1643
|
ADD_TO_CHAT: string;
|
|
1642
1644
|
MORE: string;
|
|
1643
1645
|
COPY: string;
|
|
@@ -1660,6 +1662,7 @@ declare class CometChatLocalize {
|
|
|
1660
1662
|
MORE_TIMES: string;
|
|
1661
1663
|
MISSED_VOICE_CALL: string;
|
|
1662
1664
|
MEET_WITH: string;
|
|
1665
|
+
CONVERSATION_DELETED: string;
|
|
1663
1666
|
MEETING_SCHEDULER: string;
|
|
1664
1667
|
MISSED_VIDEO_CALL: string;
|
|
1665
1668
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -1672,7 +1675,10 @@ declare class CometChatLocalize {
|
|
|
1672
1675
|
MODERATOR: string;
|
|
1673
1676
|
PARTICIPANT: string;
|
|
1674
1677
|
PUBLIC: string;
|
|
1675
|
-
PRIVATE: string;
|
|
1678
|
+
PRIVATE: string; /**
|
|
1679
|
+
* Set the active language
|
|
1680
|
+
* @param {String} language
|
|
1681
|
+
*/
|
|
1676
1682
|
PASSWORD_PROTECTED: string;
|
|
1677
1683
|
PRIVACY_AND_SECURITY: string;
|
|
1678
1684
|
PREFERENCES: string;
|
|
@@ -1720,6 +1726,10 @@ declare class CometChatLocalize {
|
|
|
1720
1726
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
1721
1727
|
THIS_MESSAGE_DELETED: string;
|
|
1722
1728
|
MESSAGE_IS_DELETED: string;
|
|
1729
|
+
MESSAGE_COPIED: string;
|
|
1730
|
+
MESSAGE_EDITED: string;
|
|
1731
|
+
MESSAGE_DELETED_TEXT: string;
|
|
1732
|
+
MESSAGE_TRANSLATED: string;
|
|
1723
1733
|
VIEW_ON_YOUTUBE: string;
|
|
1724
1734
|
SEARCH: string;
|
|
1725
1735
|
ERROR: string;
|
|
@@ -1732,6 +1742,13 @@ declare class CometChatLocalize {
|
|
|
1732
1742
|
INCOMING_VIDEO_CALL: string;
|
|
1733
1743
|
DECLINE: string;
|
|
1734
1744
|
ACCEPT: string;
|
|
1745
|
+
INCOMING_CALL: string;
|
|
1746
|
+
OUTGOING_CALL: string;
|
|
1747
|
+
CALL_REJECTED: string;
|
|
1748
|
+
CALL_ANSWERED: string;
|
|
1749
|
+
CALL_CANCELLED: string;
|
|
1750
|
+
MISSED_CALL: string;
|
|
1751
|
+
CALL_UNANSWERED: string;
|
|
1735
1752
|
CALL_INITIATED: string;
|
|
1736
1753
|
OUTGOING_AUDIO_CALL: string;
|
|
1737
1754
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -1801,6 +1818,8 @@ declare class CometChatLocalize {
|
|
|
1801
1818
|
CHANGE_SCOPE: string;
|
|
1802
1819
|
STICKER: string;
|
|
1803
1820
|
LAST_ACTIVE_AT: string;
|
|
1821
|
+
LAST_SEEN: string;
|
|
1822
|
+
AT: string;
|
|
1804
1823
|
VOICE_CALL: string;
|
|
1805
1824
|
VIEW_DETAIL: string;
|
|
1806
1825
|
VOTES: string;
|
|
@@ -1828,8 +1847,6 @@ declare class CometChatLocalize {
|
|
|
1828
1847
|
OBJECTS: string;
|
|
1829
1848
|
SYMBOLS: string;
|
|
1830
1849
|
FLAGS: string;
|
|
1831
|
-
READ_MORE: string;
|
|
1832
|
-
SHOW_LESS: string;
|
|
1833
1850
|
SENT: string;
|
|
1834
1851
|
SEEN: string;
|
|
1835
1852
|
DELIVERED: string;
|
|
@@ -1857,6 +1874,8 @@ declare class CometChatLocalize {
|
|
|
1857
1874
|
ONGOING_CALL: string;
|
|
1858
1875
|
YOU_ALREADY_ONGOING_CALL: string;
|
|
1859
1876
|
RESIZE: string;
|
|
1877
|
+
READ_MORE: string;
|
|
1878
|
+
SHOW_LESS: string;
|
|
1860
1879
|
SETTINGS: string;
|
|
1861
1880
|
ACTIONS: string;
|
|
1862
1881
|
VIEW_PROFILE: string;
|
|
@@ -1955,7 +1974,7 @@ declare class CometChatLocalize {
|
|
|
1955
1974
|
NO_CONVERSATIONS: string;
|
|
1956
1975
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
1957
1976
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
1958
|
-
OOPS: string;
|
|
1977
|
+
"OOPS!": string;
|
|
1959
1978
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
1960
1979
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
1961
1980
|
REACHED_MAX_LIMIT: string;
|
|
@@ -1966,31 +1985,16 @@ declare class CometChatLocalize {
|
|
|
1966
1985
|
SAVE: string;
|
|
1967
1986
|
};
|
|
1968
1987
|
fr: {
|
|
1969
|
-
INCOMING_CALL: string;
|
|
1970
|
-
OUTGOING_CALL: string;
|
|
1971
|
-
CALL_REJECTED: string;
|
|
1972
|
-
CALL_ANSWERED: string;
|
|
1973
|
-
CALL_CANCELLED: string;
|
|
1974
|
-
MISSED_CALL: string;
|
|
1975
|
-
CALL_UNANSWERED: string;
|
|
1976
1988
|
INFO: string;
|
|
1977
1989
|
REACT: string;
|
|
1978
1990
|
EDIT: string;
|
|
1979
1991
|
MESSAGE_PRIVATELY: string;
|
|
1980
1992
|
TRANSLATE: string;
|
|
1981
|
-
CONVERSATION_DELETED: string;
|
|
1982
|
-
MESSAGE_COPIED: string;
|
|
1983
|
-
MESSAGE_EDITED: string;
|
|
1984
|
-
MESSAGE_DELETED_TEXT: string;
|
|
1985
|
-
MESSAGE_TRANSLATED: string;
|
|
1986
1993
|
USERS: string;
|
|
1987
1994
|
CHATS: string;
|
|
1988
|
-
LAST_SEEN: string;
|
|
1989
|
-
AT: string;
|
|
1990
1995
|
SEARCH_EMOJI: string;
|
|
1991
1996
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
1992
1997
|
GROUPS: string;
|
|
1993
|
-
WRONG_FILE_TYPE: string;
|
|
1994
1998
|
SHARED: string;
|
|
1995
1999
|
SOUND_MANAGER: string;
|
|
1996
2000
|
THEME: string;
|
|
@@ -2009,6 +2013,7 @@ declare class CometChatLocalize {
|
|
|
2009
2013
|
CONVERSATIONS: string;
|
|
2010
2014
|
CONVERSATION_LIST: string;
|
|
2011
2015
|
MESSAGES: string;
|
|
2016
|
+
WRONG_FILE_TYPE: string;
|
|
2012
2017
|
MESSAGE_HEADER: string;
|
|
2013
2018
|
MESSAGE_LIST: string;
|
|
2014
2019
|
MESSAGE_COMPOSER: string;
|
|
@@ -2042,7 +2047,10 @@ declare class CometChatLocalize {
|
|
|
2042
2047
|
CUSTOM_MESSAGE: string;
|
|
2043
2048
|
SELECT_A_DATE: string;
|
|
2044
2049
|
TIME_ZONE: string;
|
|
2045
|
-
MEETING_SCHEDULED: string;
|
|
2050
|
+
MEETING_SCHEDULED: string; /**
|
|
2051
|
+
* Returns the browser language
|
|
2052
|
+
* @returns {String} browser langauge i.e. en-US
|
|
2053
|
+
*/
|
|
2046
2054
|
SOMETHING_WRONG: string;
|
|
2047
2055
|
MEETING_SLOT_BOOK: string;
|
|
2048
2056
|
MEETING_BOOK_NEW_SLOT: string;
|
|
@@ -2053,6 +2061,7 @@ declare class CometChatLocalize {
|
|
|
2053
2061
|
MORE_TIMES: string;
|
|
2054
2062
|
MISSED_VOICE_CALL: string;
|
|
2055
2063
|
MEET_WITH: string;
|
|
2064
|
+
CONVERSATION_DELETED: string;
|
|
2056
2065
|
MEETING_SCHEDULER: string;
|
|
2057
2066
|
MISSED_VIDEO_CALL: string;
|
|
2058
2067
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -2113,6 +2122,10 @@ declare class CometChatLocalize {
|
|
|
2113
2122
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
2114
2123
|
THIS_MESSAGE_DELETED: string;
|
|
2115
2124
|
MESSAGE_IS_DELETED: string;
|
|
2125
|
+
MESSAGE_COPIED: string;
|
|
2126
|
+
MESSAGE_EDITED: string;
|
|
2127
|
+
MESSAGE_DELETED_TEXT: string;
|
|
2128
|
+
MESSAGE_TRANSLATED: string;
|
|
2116
2129
|
VIEW_ON_YOUTUBE: string;
|
|
2117
2130
|
SEARCH: string;
|
|
2118
2131
|
ERROR: string;
|
|
@@ -2125,6 +2138,13 @@ declare class CometChatLocalize {
|
|
|
2125
2138
|
INCOMING_VIDEO_CALL: string;
|
|
2126
2139
|
DECLINE: string;
|
|
2127
2140
|
ACCEPT: string;
|
|
2141
|
+
INCOMING_CALL: string;
|
|
2142
|
+
OUTGOING_CALL: string;
|
|
2143
|
+
CALL_REJECTED: string;
|
|
2144
|
+
CALL_ANSWERED: string;
|
|
2145
|
+
CALL_CANCELLED: string;
|
|
2146
|
+
MISSED_CALL: string;
|
|
2147
|
+
CALL_UNANSWERED: string;
|
|
2128
2148
|
CALL_INITIATED: string;
|
|
2129
2149
|
OUTGOING_AUDIO_CALL: string;
|
|
2130
2150
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -2194,6 +2214,8 @@ declare class CometChatLocalize {
|
|
|
2194
2214
|
CHANGE_SCOPE: string;
|
|
2195
2215
|
STICKER: string;
|
|
2196
2216
|
LAST_ACTIVE_AT: string;
|
|
2217
|
+
LAST_SEEN: string;
|
|
2218
|
+
AT: string;
|
|
2197
2219
|
VOICE_CALL: string;
|
|
2198
2220
|
VIEW_DETAIL: string;
|
|
2199
2221
|
VOTES: string;
|
|
@@ -2248,10 +2270,10 @@ declare class CometChatLocalize {
|
|
|
2248
2270
|
ONGOING_CALL: string;
|
|
2249
2271
|
YOU_ALREADY_ONGOING_CALL: string;
|
|
2250
2272
|
RESIZE: string;
|
|
2251
|
-
SETTINGS: string;
|
|
2252
|
-
ACTIONS: string;
|
|
2253
2273
|
READ_MORE: string;
|
|
2254
2274
|
SHOW_LESS: string;
|
|
2275
|
+
SETTINGS: string;
|
|
2276
|
+
ACTIONS: string;
|
|
2255
2277
|
VIEW_PROFILE: string;
|
|
2256
2278
|
SEND_MESSAGE_IN_PRIVATE: string;
|
|
2257
2279
|
DELETE: string;
|
|
@@ -2348,7 +2370,7 @@ declare class CometChatLocalize {
|
|
|
2348
2370
|
NO_CONVERSATIONS: string;
|
|
2349
2371
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
2350
2372
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
2351
|
-
OOPS: string;
|
|
2373
|
+
"OOPS!": string;
|
|
2352
2374
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
2353
2375
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
2354
2376
|
REACHED_MAX_LIMIT: string;
|
|
@@ -2359,31 +2381,16 @@ declare class CometChatLocalize {
|
|
|
2359
2381
|
SAVE: string;
|
|
2360
2382
|
};
|
|
2361
2383
|
hi: {
|
|
2362
|
-
INCOMING_CALL: string;
|
|
2363
|
-
OUTGOING_CALL: string;
|
|
2364
|
-
CALL_REJECTED: string;
|
|
2365
|
-
CALL_ANSWERED: string;
|
|
2366
|
-
CALL_CANCELLED: string;
|
|
2367
|
-
MISSED_CALL: string;
|
|
2368
|
-
CALL_UNANSWERED: string;
|
|
2369
2384
|
INFO: string;
|
|
2370
2385
|
REACT: string;
|
|
2371
2386
|
EDIT: string;
|
|
2372
|
-
CONVERSATION_DELETED: string;
|
|
2373
|
-
MESSAGE_COPIED: string;
|
|
2374
|
-
MESSAGE_EDITED: string;
|
|
2375
|
-
MESSAGE_DELETED_TEXT: string;
|
|
2376
|
-
MESSAGE_TRANSLATED: string;
|
|
2377
2387
|
MESSAGE_PRIVATELY: string;
|
|
2378
2388
|
TRANSLATE: string;
|
|
2379
2389
|
USERS: string;
|
|
2380
2390
|
CHATS: string;
|
|
2381
|
-
LAST_SEEN: string;
|
|
2382
|
-
AT: string;
|
|
2383
2391
|
SEARCH_EMOJI: string;
|
|
2384
2392
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
2385
2393
|
GROUPS: string;
|
|
2386
|
-
WRONG_FILE_TYPE: string;
|
|
2387
2394
|
SHARED: string;
|
|
2388
2395
|
SOUND_MANAGER: string;
|
|
2389
2396
|
THEME: string;
|
|
@@ -2402,6 +2409,7 @@ declare class CometChatLocalize {
|
|
|
2402
2409
|
CONVERSATIONS: string;
|
|
2403
2410
|
CONVERSATION_LIST: string;
|
|
2404
2411
|
MESSAGES: string;
|
|
2412
|
+
WRONG_FILE_TYPE: string;
|
|
2405
2413
|
MESSAGE_HEADER: string;
|
|
2406
2414
|
MESSAGE_LIST: string;
|
|
2407
2415
|
MESSAGE_COMPOSER: string;
|
|
@@ -2446,6 +2454,7 @@ declare class CometChatLocalize {
|
|
|
2446
2454
|
MORE_TIMES: string;
|
|
2447
2455
|
MISSED_VOICE_CALL: string;
|
|
2448
2456
|
MEET_WITH: string;
|
|
2457
|
+
CONVERSATION_DELETED: string;
|
|
2449
2458
|
MEETING_SCHEDULER: string;
|
|
2450
2459
|
MISSED_VIDEO_CALL: string;
|
|
2451
2460
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -2459,7 +2468,10 @@ declare class CometChatLocalize {
|
|
|
2459
2468
|
PARTICIPANT: string;
|
|
2460
2469
|
PUBLIC: string;
|
|
2461
2470
|
PRIVATE: string;
|
|
2462
|
-
PASSWORD_PROTECTED: string;
|
|
2471
|
+
PASSWORD_PROTECTED: string; /**
|
|
2472
|
+
* Returns the active language. Return fallback language if translation is not available for the active language
|
|
2473
|
+
* @returns {String} active language
|
|
2474
|
+
*/
|
|
2463
2475
|
PRIVACY_AND_SECURITY: string;
|
|
2464
2476
|
PREFERENCES: string;
|
|
2465
2477
|
MEMBERS: string;
|
|
@@ -2506,6 +2518,10 @@ declare class CometChatLocalize {
|
|
|
2506
2518
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
2507
2519
|
THIS_MESSAGE_DELETED: string;
|
|
2508
2520
|
MESSAGE_IS_DELETED: string;
|
|
2521
|
+
MESSAGE_COPIED: string;
|
|
2522
|
+
MESSAGE_EDITED: string;
|
|
2523
|
+
MESSAGE_DELETED_TEXT: string;
|
|
2524
|
+
MESSAGE_TRANSLATED: string;
|
|
2509
2525
|
VIEW_ON_YOUTUBE: string;
|
|
2510
2526
|
SEARCH: string;
|
|
2511
2527
|
ERROR: string;
|
|
@@ -2518,6 +2534,13 @@ declare class CometChatLocalize {
|
|
|
2518
2534
|
INCOMING_VIDEO_CALL: string;
|
|
2519
2535
|
DECLINE: string;
|
|
2520
2536
|
ACCEPT: string;
|
|
2537
|
+
INCOMING_CALL: string;
|
|
2538
|
+
OUTGOING_CALL: string;
|
|
2539
|
+
CALL_REJECTED: string;
|
|
2540
|
+
CALL_ANSWERED: string;
|
|
2541
|
+
CALL_CANCELLED: string;
|
|
2542
|
+
MISSED_CALL: string;
|
|
2543
|
+
CALL_UNANSWERED: string;
|
|
2521
2544
|
CALL_INITIATED: string;
|
|
2522
2545
|
OUTGOING_AUDIO_CALL: string;
|
|
2523
2546
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -2587,6 +2610,8 @@ declare class CometChatLocalize {
|
|
|
2587
2610
|
CHANGE_SCOPE: string;
|
|
2588
2611
|
STICKER: string;
|
|
2589
2612
|
LAST_ACTIVE_AT: string;
|
|
2613
|
+
LAST_SEEN: string;
|
|
2614
|
+
AT: string;
|
|
2590
2615
|
VOICE_CALL: string;
|
|
2591
2616
|
VIEW_DETAIL: string;
|
|
2592
2617
|
VOTES: string;
|
|
@@ -2641,11 +2666,11 @@ declare class CometChatLocalize {
|
|
|
2641
2666
|
ONGOING_CALL: string;
|
|
2642
2667
|
YOU_ALREADY_ONGOING_CALL: string;
|
|
2643
2668
|
RESIZE: string;
|
|
2669
|
+
READ_MORE: string;
|
|
2670
|
+
SHOW_LESS: string;
|
|
2644
2671
|
SETTINGS: string;
|
|
2645
2672
|
ACTIONS: string;
|
|
2646
2673
|
VIEW_PROFILE: string;
|
|
2647
|
-
READ_MORE: string;
|
|
2648
|
-
SHOW_LESS: string;
|
|
2649
2674
|
SEND_MESSAGE_IN_PRIVATE: string;
|
|
2650
2675
|
DELETE: string;
|
|
2651
2676
|
DELETE_CONFIRM: string;
|
|
@@ -2741,7 +2766,7 @@ declare class CometChatLocalize {
|
|
|
2741
2766
|
NO_CONVERSATIONS: string;
|
|
2742
2767
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
2743
2768
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
2744
|
-
OOPS: string;
|
|
2769
|
+
"OOPS!": string;
|
|
2745
2770
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
2746
2771
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
2747
2772
|
REACHED_MAX_LIMIT: string;
|
|
@@ -2752,13 +2777,6 @@ declare class CometChatLocalize {
|
|
|
2752
2777
|
SAVE: string;
|
|
2753
2778
|
};
|
|
2754
2779
|
ms: {
|
|
2755
|
-
INCOMING_CALL: string;
|
|
2756
|
-
OUTGOING_CALL: string;
|
|
2757
|
-
CALL_REJECTED: string;
|
|
2758
|
-
CALL_ANSWERED: string;
|
|
2759
|
-
CALL_CANCELLED: string;
|
|
2760
|
-
MISSED_CALL: string;
|
|
2761
|
-
CALL_UNANSWERED: string;
|
|
2762
2780
|
INFO: string;
|
|
2763
2781
|
REACT: string;
|
|
2764
2782
|
EDIT: string;
|
|
@@ -2766,17 +2784,9 @@ declare class CometChatLocalize {
|
|
|
2766
2784
|
TRANSLATE: string;
|
|
2767
2785
|
USERS: string;
|
|
2768
2786
|
CHATS: string;
|
|
2769
|
-
LAST_SEEN: string;
|
|
2770
|
-
AT: string;
|
|
2771
|
-
CONVERSATION_DELETED: string;
|
|
2772
|
-
MESSAGE_COPIED: string;
|
|
2773
|
-
MESSAGE_EDITED: string;
|
|
2774
|
-
MESSAGE_DELETED_TEXT: string;
|
|
2775
|
-
MESSAGE_TRANSLATED: string;
|
|
2776
2787
|
SEARCH_EMOJI: string;
|
|
2777
2788
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
2778
2789
|
GROUPS: string;
|
|
2779
|
-
WRONG_FILE_TYPE: string;
|
|
2780
2790
|
SHARED: string;
|
|
2781
2791
|
SOUND_MANAGER: string;
|
|
2782
2792
|
THEME: string;
|
|
@@ -2795,6 +2805,7 @@ declare class CometChatLocalize {
|
|
|
2795
2805
|
CONVERSATIONS: string;
|
|
2796
2806
|
CONVERSATION_LIST: string;
|
|
2797
2807
|
MESSAGES: string;
|
|
2808
|
+
WRONG_FILE_TYPE: string;
|
|
2798
2809
|
MESSAGE_HEADER: string;
|
|
2799
2810
|
MESSAGE_LIST: string;
|
|
2800
2811
|
MESSAGE_COMPOSER: string;
|
|
@@ -2824,6 +2835,7 @@ declare class CometChatLocalize {
|
|
|
2824
2835
|
MESSAGE_IMAGE: string;
|
|
2825
2836
|
MESSAGE_FILE: string;
|
|
2826
2837
|
MESSAGE_VIDEO: string;
|
|
2838
|
+
/**Add to the original array of translations if language code is not found */
|
|
2827
2839
|
MESSAGE_AUDIO: string;
|
|
2828
2840
|
CUSTOM_MESSAGE: string;
|
|
2829
2841
|
SELECT_A_DATE: string;
|
|
@@ -2839,6 +2851,7 @@ declare class CometChatLocalize {
|
|
|
2839
2851
|
MORE_TIMES: string;
|
|
2840
2852
|
MISSED_VOICE_CALL: string;
|
|
2841
2853
|
MEET_WITH: string;
|
|
2854
|
+
CONVERSATION_DELETED: string;
|
|
2842
2855
|
MEETING_SCHEDULER: string;
|
|
2843
2856
|
MISSED_VIDEO_CALL: string;
|
|
2844
2857
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -2846,7 +2859,10 @@ declare class CometChatLocalize {
|
|
|
2846
2859
|
CUSTOM_MESSAGE_DOCUMENT: string;
|
|
2847
2860
|
CUSTOM_MESSAGE_WHITEBOARD: string;
|
|
2848
2861
|
ONLINE: string;
|
|
2849
|
-
ADMINISTRATOR: string;
|
|
2862
|
+
ADMINISTRATOR: string; /**
|
|
2863
|
+
* Returns the active language. Return fallback language if translation is not available for the active language
|
|
2864
|
+
* @returns {String} active language
|
|
2865
|
+
*/
|
|
2850
2866
|
ADMIN: string;
|
|
2851
2867
|
MODERATOR: string;
|
|
2852
2868
|
PARTICIPANT: string;
|
|
@@ -2860,7 +2876,10 @@ declare class CometChatLocalize {
|
|
|
2860
2876
|
EDITED: string;
|
|
2861
2877
|
TODAY: string;
|
|
2862
2878
|
YESTERDAY: string;
|
|
2863
|
-
SUNDAY: string;
|
|
2879
|
+
SUNDAY: string; /**
|
|
2880
|
+
* Set the active language
|
|
2881
|
+
* @param {String} language
|
|
2882
|
+
*/
|
|
2864
2883
|
MONDAY: string;
|
|
2865
2884
|
TUESDAY: string;
|
|
2866
2885
|
WEDNESDAY: string;
|
|
@@ -2899,6 +2918,10 @@ declare class CometChatLocalize {
|
|
|
2899
2918
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
2900
2919
|
THIS_MESSAGE_DELETED: string;
|
|
2901
2920
|
MESSAGE_IS_DELETED: string;
|
|
2921
|
+
MESSAGE_COPIED: string;
|
|
2922
|
+
MESSAGE_EDITED: string;
|
|
2923
|
+
MESSAGE_DELETED_TEXT: string;
|
|
2924
|
+
MESSAGE_TRANSLATED: string;
|
|
2902
2925
|
VIEW_ON_YOUTUBE: string;
|
|
2903
2926
|
SEARCH: string;
|
|
2904
2927
|
ERROR: string;
|
|
@@ -2911,6 +2934,13 @@ declare class CometChatLocalize {
|
|
|
2911
2934
|
INCOMING_VIDEO_CALL: string;
|
|
2912
2935
|
DECLINE: string;
|
|
2913
2936
|
ACCEPT: string;
|
|
2937
|
+
INCOMING_CALL: string;
|
|
2938
|
+
OUTGOING_CALL: string;
|
|
2939
|
+
CALL_REJECTED: string;
|
|
2940
|
+
CALL_ANSWERED: string;
|
|
2941
|
+
CALL_CANCELLED: string;
|
|
2942
|
+
MISSED_CALL: string;
|
|
2943
|
+
CALL_UNANSWERED: string;
|
|
2914
2944
|
CALL_INITIATED: string;
|
|
2915
2945
|
OUTGOING_AUDIO_CALL: string;
|
|
2916
2946
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -2980,6 +3010,8 @@ declare class CometChatLocalize {
|
|
|
2980
3010
|
CHANGE_SCOPE: string;
|
|
2981
3011
|
STICKER: string;
|
|
2982
3012
|
LAST_ACTIVE_AT: string;
|
|
3013
|
+
LAST_SEEN: string;
|
|
3014
|
+
AT: string;
|
|
2983
3015
|
VOICE_CALL: string;
|
|
2984
3016
|
VIEW_DETAIL: string;
|
|
2985
3017
|
VOTES: string;
|
|
@@ -3034,13 +3066,13 @@ declare class CometChatLocalize {
|
|
|
3034
3066
|
ONGOING_CALL: string;
|
|
3035
3067
|
YOU_ALREADY_ONGOING_CALL: string;
|
|
3036
3068
|
RESIZE: string;
|
|
3069
|
+
READ_MORE: string;
|
|
3070
|
+
SHOW_LESS: string;
|
|
3037
3071
|
SETTINGS: string;
|
|
3038
3072
|
ACTIONS: string;
|
|
3039
3073
|
VIEW_PROFILE: string;
|
|
3040
3074
|
SEND_MESSAGE_IN_PRIVATE: string;
|
|
3041
3075
|
DELETE: string;
|
|
3042
|
-
READ_MORE: string;
|
|
3043
|
-
SHOW_LESS: string;
|
|
3044
3076
|
DELETE_CONFIRM: string;
|
|
3045
3077
|
DELETE_CHAT: string;
|
|
3046
3078
|
SURE_TO_DELETE_CHAT: string;
|
|
@@ -3134,7 +3166,7 @@ declare class CometChatLocalize {
|
|
|
3134
3166
|
NO_CONVERSATIONS: string;
|
|
3135
3167
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
3136
3168
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
3137
|
-
OOPS: string;
|
|
3169
|
+
"OOPS!": string;
|
|
3138
3170
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
3139
3171
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
3140
3172
|
REACHED_MAX_LIMIT: string;
|
|
@@ -3145,33 +3177,18 @@ declare class CometChatLocalize {
|
|
|
3145
3177
|
SAVE: string;
|
|
3146
3178
|
};
|
|
3147
3179
|
pt: {
|
|
3148
|
-
INCOMING_CALL: string;
|
|
3149
|
-
OUTGOING_CALL: string;
|
|
3150
|
-
CALL_REJECTED: string;
|
|
3151
|
-
CALL_ANSWERED: string;
|
|
3152
|
-
CALL_CANCELLED: string;
|
|
3153
|
-
MISSED_CALL: string;
|
|
3154
|
-
CALL_UNANSWERED: string;
|
|
3155
3180
|
INFO: string;
|
|
3156
3181
|
REACT: string;
|
|
3157
3182
|
EDIT: string;
|
|
3158
3183
|
MESSAGE_PRIVATELY: string;
|
|
3159
3184
|
TRANSLATE: string;
|
|
3160
|
-
CONVERSATION_DELETED: string;
|
|
3161
|
-
MESSAGE_COPIED: string;
|
|
3162
|
-
MESSAGE_EDITED: string;
|
|
3163
|
-
MESSAGE_DELETED_TEXT: string;
|
|
3164
|
-
MESSAGE_TRANSLATED: string;
|
|
3165
3185
|
USERS: string;
|
|
3166
3186
|
CHATS: string;
|
|
3167
|
-
LAST_SEEN: string;
|
|
3168
|
-
AT: string;
|
|
3169
3187
|
SEARCH_EMOJI: string;
|
|
3170
3188
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
3171
3189
|
GROUPS: string;
|
|
3172
3190
|
SHARED: string;
|
|
3173
3191
|
SOUND_MANAGER: string;
|
|
3174
|
-
WRONG_FILE_TYPE: string;
|
|
3175
3192
|
THEME: string;
|
|
3176
3193
|
DELETE_MSG_TEXT: string;
|
|
3177
3194
|
LOCALIZE: string;
|
|
@@ -3188,6 +3205,7 @@ declare class CometChatLocalize {
|
|
|
3188
3205
|
CONVERSATIONS: string;
|
|
3189
3206
|
CONVERSATION_LIST: string;
|
|
3190
3207
|
MESSAGES: string;
|
|
3208
|
+
WRONG_FILE_TYPE: string;
|
|
3191
3209
|
MESSAGE_HEADER: string;
|
|
3192
3210
|
MESSAGE_LIST: string;
|
|
3193
3211
|
MESSAGE_COMPOSER: string;
|
|
@@ -3232,6 +3250,7 @@ declare class CometChatLocalize {
|
|
|
3232
3250
|
MORE_TIMES: string;
|
|
3233
3251
|
MISSED_VOICE_CALL: string;
|
|
3234
3252
|
MEET_WITH: string;
|
|
3253
|
+
CONVERSATION_DELETED: string;
|
|
3235
3254
|
MEETING_SCHEDULER: string;
|
|
3236
3255
|
MISSED_VIDEO_CALL: string;
|
|
3237
3256
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -3262,7 +3281,9 @@ declare class CometChatLocalize {
|
|
|
3262
3281
|
SATURDAY: string;
|
|
3263
3282
|
TYPING: string;
|
|
3264
3283
|
IS_TYPING: string;
|
|
3265
|
-
CLOSE: string;
|
|
3284
|
+
CLOSE: string; /**
|
|
3285
|
+
* Sets the default lannguage if no language is passed in init method
|
|
3286
|
+
*/
|
|
3266
3287
|
ENTER_GROUP_NAME: string;
|
|
3267
3288
|
ADD_MEMBERS: string;
|
|
3268
3289
|
SEND_MESSAGE: string;
|
|
@@ -3292,6 +3313,10 @@ declare class CometChatLocalize {
|
|
|
3292
3313
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
3293
3314
|
THIS_MESSAGE_DELETED: string;
|
|
3294
3315
|
MESSAGE_IS_DELETED: string;
|
|
3316
|
+
MESSAGE_COPIED: string;
|
|
3317
|
+
MESSAGE_EDITED: string;
|
|
3318
|
+
MESSAGE_DELETED_TEXT: string;
|
|
3319
|
+
MESSAGE_TRANSLATED: string;
|
|
3295
3320
|
VIEW_ON_YOUTUBE: string;
|
|
3296
3321
|
SEARCH: string;
|
|
3297
3322
|
ERROR: string;
|
|
@@ -3304,6 +3329,13 @@ declare class CometChatLocalize {
|
|
|
3304
3329
|
INCOMING_VIDEO_CALL: string;
|
|
3305
3330
|
DECLINE: string;
|
|
3306
3331
|
ACCEPT: string;
|
|
3332
|
+
INCOMING_CALL: string;
|
|
3333
|
+
OUTGOING_CALL: string;
|
|
3334
|
+
CALL_REJECTED: string;
|
|
3335
|
+
CALL_ANSWERED: string;
|
|
3336
|
+
CALL_CANCELLED: string;
|
|
3337
|
+
MISSED_CALL: string;
|
|
3338
|
+
CALL_UNANSWERED: string;
|
|
3307
3339
|
CALL_INITIATED: string;
|
|
3308
3340
|
OUTGOING_AUDIO_CALL: string;
|
|
3309
3341
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -3373,6 +3405,8 @@ declare class CometChatLocalize {
|
|
|
3373
3405
|
CHANGE_SCOPE: string;
|
|
3374
3406
|
STICKER: string;
|
|
3375
3407
|
LAST_ACTIVE_AT: string;
|
|
3408
|
+
LAST_SEEN: string;
|
|
3409
|
+
AT: string;
|
|
3376
3410
|
VOICE_CALL: string;
|
|
3377
3411
|
VIEW_DETAIL: string;
|
|
3378
3412
|
VOTES: string;
|
|
@@ -3427,11 +3461,11 @@ declare class CometChatLocalize {
|
|
|
3427
3461
|
ONGOING_CALL: string;
|
|
3428
3462
|
YOU_ALREADY_ONGOING_CALL: string;
|
|
3429
3463
|
RESIZE: string;
|
|
3464
|
+
READ_MORE: string;
|
|
3465
|
+
SHOW_LESS: string;
|
|
3430
3466
|
SETTINGS: string;
|
|
3431
3467
|
ACTIONS: string;
|
|
3432
3468
|
VIEW_PROFILE: string;
|
|
3433
|
-
READ_MORE: string;
|
|
3434
|
-
SHOW_LESS: string;
|
|
3435
3469
|
SEND_MESSAGE_IN_PRIVATE: string;
|
|
3436
3470
|
DELETE: string;
|
|
3437
3471
|
DELETE_CONFIRM: string;
|
|
@@ -3527,7 +3561,7 @@ declare class CometChatLocalize {
|
|
|
3527
3561
|
NO_CONVERSATIONS: string;
|
|
3528
3562
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
3529
3563
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
3530
|
-
OOPS: string;
|
|
3564
|
+
"OOPS!": string;
|
|
3531
3565
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
3532
3566
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
3533
3567
|
REACHED_MAX_LIMIT: string;
|
|
@@ -3538,13 +3572,6 @@ declare class CometChatLocalize {
|
|
|
3538
3572
|
SAVE: string;
|
|
3539
3573
|
};
|
|
3540
3574
|
ru: {
|
|
3541
|
-
INCOMING_CALL: string;
|
|
3542
|
-
OUTGOING_CALL: string;
|
|
3543
|
-
CALL_REJECTED: string;
|
|
3544
|
-
CALL_ANSWERED: string;
|
|
3545
|
-
CALL_CANCELLED: string;
|
|
3546
|
-
MISSED_CALL: string;
|
|
3547
|
-
CALL_UNANSWERED: string;
|
|
3548
3575
|
INFO: string;
|
|
3549
3576
|
REACT: string;
|
|
3550
3577
|
EDIT: string;
|
|
@@ -3552,13 +3579,6 @@ declare class CometChatLocalize {
|
|
|
3552
3579
|
TRANSLATE: string;
|
|
3553
3580
|
USERS: string;
|
|
3554
3581
|
CHATS: string;
|
|
3555
|
-
LAST_SEEN: string;
|
|
3556
|
-
AT: string;
|
|
3557
|
-
MESSAGE_COPIED: string;
|
|
3558
|
-
MESSAGE_EDITED: string;
|
|
3559
|
-
MESSAGE_DELETED_TEXT: string;
|
|
3560
|
-
MESSAGE_TRANSLATED: string;
|
|
3561
|
-
CONVERSATION_DELETED: string;
|
|
3562
3582
|
SEARCH_EMOJI: string;
|
|
3563
3583
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
3564
3584
|
GROUPS: string;
|
|
@@ -3567,7 +3587,6 @@ declare class CometChatLocalize {
|
|
|
3567
3587
|
THEME: string;
|
|
3568
3588
|
DELETE_MSG_TEXT: string;
|
|
3569
3589
|
LOCALIZE: string;
|
|
3570
|
-
WRONG_FILE_TYPE: string;
|
|
3571
3590
|
CONVERSATION_LIST_ITEM: string;
|
|
3572
3591
|
DATA_ITEM: string;
|
|
3573
3592
|
STATUS_INDICATOR: string;
|
|
@@ -3581,6 +3600,7 @@ declare class CometChatLocalize {
|
|
|
3581
3600
|
CONVERSATIONS: string;
|
|
3582
3601
|
CONVERSATION_LIST: string;
|
|
3583
3602
|
MESSAGES: string;
|
|
3603
|
+
WRONG_FILE_TYPE: string;
|
|
3584
3604
|
MESSAGE_HEADER: string;
|
|
3585
3605
|
MESSAGE_LIST: string;
|
|
3586
3606
|
MESSAGE_COMPOSER: string;
|
|
@@ -3605,7 +3625,7 @@ declare class CometChatLocalize {
|
|
|
3605
3625
|
DELETE_CONVERSATION: string;
|
|
3606
3626
|
ADD_TO_CHAT: string;
|
|
3607
3627
|
MORE: string;
|
|
3608
|
-
COPY: string;
|
|
3628
|
+
COPY: string; /**Override resources */
|
|
3609
3629
|
VOICE_RECORDING: string;
|
|
3610
3630
|
MESSAGE_IMAGE: string;
|
|
3611
3631
|
MESSAGE_FILE: string;
|
|
@@ -3625,6 +3645,7 @@ declare class CometChatLocalize {
|
|
|
3625
3645
|
MORE_TIMES: string;
|
|
3626
3646
|
MISSED_VOICE_CALL: string;
|
|
3627
3647
|
MEET_WITH: string;
|
|
3648
|
+
CONVERSATION_DELETED: string;
|
|
3628
3649
|
MEETING_SCHEDULER: string;
|
|
3629
3650
|
MISSED_VIDEO_CALL: string;
|
|
3630
3651
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -3685,6 +3706,10 @@ declare class CometChatLocalize {
|
|
|
3685
3706
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
3686
3707
|
THIS_MESSAGE_DELETED: string;
|
|
3687
3708
|
MESSAGE_IS_DELETED: string;
|
|
3709
|
+
MESSAGE_COPIED: string;
|
|
3710
|
+
MESSAGE_EDITED: string;
|
|
3711
|
+
MESSAGE_DELETED_TEXT: string;
|
|
3712
|
+
MESSAGE_TRANSLATED: string;
|
|
3688
3713
|
VIEW_ON_YOUTUBE: string;
|
|
3689
3714
|
SEARCH: string;
|
|
3690
3715
|
ERROR: string;
|
|
@@ -3697,6 +3722,13 @@ declare class CometChatLocalize {
|
|
|
3697
3722
|
INCOMING_VIDEO_CALL: string;
|
|
3698
3723
|
DECLINE: string;
|
|
3699
3724
|
ACCEPT: string;
|
|
3725
|
+
INCOMING_CALL: string;
|
|
3726
|
+
OUTGOING_CALL: string;
|
|
3727
|
+
CALL_REJECTED: string;
|
|
3728
|
+
CALL_ANSWERED: string;
|
|
3729
|
+
CALL_CANCELLED: string;
|
|
3730
|
+
MISSED_CALL: string;
|
|
3731
|
+
CALL_UNANSWERED: string;
|
|
3700
3732
|
CALL_INITIATED: string;
|
|
3701
3733
|
OUTGOING_AUDIO_CALL: string;
|
|
3702
3734
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -3766,6 +3798,8 @@ declare class CometChatLocalize {
|
|
|
3766
3798
|
CHANGE_SCOPE: string;
|
|
3767
3799
|
STICKER: string;
|
|
3768
3800
|
LAST_ACTIVE_AT: string;
|
|
3801
|
+
LAST_SEEN: string;
|
|
3802
|
+
AT: string;
|
|
3769
3803
|
VOICE_CALL: string;
|
|
3770
3804
|
VIEW_DETAIL: string;
|
|
3771
3805
|
VOTES: string;
|
|
@@ -3920,7 +3954,7 @@ declare class CometChatLocalize {
|
|
|
3920
3954
|
NO_CONVERSATIONS: string;
|
|
3921
3955
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
3922
3956
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
3923
|
-
OOPS: string;
|
|
3957
|
+
"OOPS!": string;
|
|
3924
3958
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
3925
3959
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
3926
3960
|
REACHED_MAX_LIMIT: string;
|
|
@@ -3991,10 +4025,20 @@ declare class CometChatLocalize {
|
|
|
3991
4025
|
SELECT_TIME: string;
|
|
3992
4026
|
NO_CALLS_SELECTED: string;
|
|
3993
4027
|
SELECT__GROUP: string;
|
|
4028
|
+
/**
|
|
4029
|
+
* Initializes localization with the specified language and custom resources.
|
|
4030
|
+
* @param {string} [language=""] - The language code to set.
|
|
4031
|
+
* @param {object} [resources={}] - Custom translations to override defaults.
|
|
4032
|
+
*/
|
|
3994
4033
|
SELECT__USER: string;
|
|
3995
4034
|
GROUP_PASSWORD_BLANK: string;
|
|
3996
4035
|
GROUP_NAME_BLANK: string;
|
|
3997
4036
|
GROUP_TYPE_BLANK: string;
|
|
4037
|
+
/**
|
|
4038
|
+
* Initializes localization with the specified language and custom resources.
|
|
4039
|
+
* @param {string} [language=""] - The language code to set.
|
|
4040
|
+
* @param {object} [resources={}] - Custom translations to override defaults.
|
|
4041
|
+
*/
|
|
3998
4042
|
DELETE_CONVERSATION: string;
|
|
3999
4043
|
ADD_TO_CHAT: string;
|
|
4000
4044
|
MORE: string;
|
|
@@ -4036,7 +4080,10 @@ declare class CometChatLocalize {
|
|
|
4036
4080
|
PREFERENCES: string;
|
|
4037
4081
|
MEMBERS: string;
|
|
4038
4082
|
MEMBER: string;
|
|
4039
|
-
EDITED: string;
|
|
4083
|
+
EDITED: string; /**
|
|
4084
|
+
* Returns the language code
|
|
4085
|
+
* @returns {String} language code i.e. en
|
|
4086
|
+
*/
|
|
4040
4087
|
TODAY: string;
|
|
4041
4088
|
YESTERDAY: string;
|
|
4042
4089
|
SUNDAY: string;
|
|
@@ -4324,33 +4371,18 @@ declare class CometChatLocalize {
|
|
|
4324
4371
|
SAVE: string;
|
|
4325
4372
|
};
|
|
4326
4373
|
"zh-tw": {
|
|
4327
|
-
INCOMING_CALL: string;
|
|
4328
|
-
OUTGOING_CALL: string;
|
|
4329
|
-
CALL_REJECTED: string;
|
|
4330
|
-
CALL_ANSWERED: string;
|
|
4331
|
-
CALL_CANCELLED: string;
|
|
4332
|
-
MISSED_CALL: string;
|
|
4333
|
-
CALL_UNANSWERED: string;
|
|
4334
4374
|
INFO: string;
|
|
4335
4375
|
REACT: string;
|
|
4336
4376
|
EDIT: string;
|
|
4337
4377
|
MESSAGE_PRIVATELY: string;
|
|
4338
|
-
CONVERSATION_DELETED: string;
|
|
4339
|
-
MESSAGE_COPIED: string;
|
|
4340
|
-
MESSAGE_EDITED: string;
|
|
4341
|
-
MESSAGE_DELETED_TEXT: string;
|
|
4342
|
-
MESSAGE_TRANSLATED: string;
|
|
4343
4378
|
TRANSLATE: string;
|
|
4344
4379
|
USERS: string;
|
|
4345
4380
|
CHATS: string;
|
|
4346
|
-
LAST_SEEN: string;
|
|
4347
|
-
AT: string;
|
|
4348
4381
|
SEARCH_EMOJI: string;
|
|
4349
4382
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
4350
4383
|
GROUPS: string;
|
|
4351
4384
|
SHARED: string;
|
|
4352
4385
|
SOUND_MANAGER: string;
|
|
4353
|
-
WRONG_FILE_TYPE: string;
|
|
4354
4386
|
THEME: string;
|
|
4355
4387
|
DELETE_MSG_TEXT: string;
|
|
4356
4388
|
LOCALIZE: string;
|
|
@@ -4367,6 +4399,7 @@ declare class CometChatLocalize {
|
|
|
4367
4399
|
CONVERSATIONS: string;
|
|
4368
4400
|
CONVERSATION_LIST: string;
|
|
4369
4401
|
MESSAGES: string;
|
|
4402
|
+
WRONG_FILE_TYPE: string;
|
|
4370
4403
|
MESSAGE_HEADER: string;
|
|
4371
4404
|
MESSAGE_LIST: string;
|
|
4372
4405
|
MESSAGE_COMPOSER: string;
|
|
@@ -4411,6 +4444,7 @@ declare class CometChatLocalize {
|
|
|
4411
4444
|
MORE_TIMES: string;
|
|
4412
4445
|
MISSED_VOICE_CALL: string;
|
|
4413
4446
|
MEET_WITH: string;
|
|
4447
|
+
CONVERSATION_DELETED: string;
|
|
4414
4448
|
MEETING_SCHEDULER: string;
|
|
4415
4449
|
MISSED_VIDEO_CALL: string;
|
|
4416
4450
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -4471,6 +4505,10 @@ declare class CometChatLocalize {
|
|
|
4471
4505
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
4472
4506
|
THIS_MESSAGE_DELETED: string;
|
|
4473
4507
|
MESSAGE_IS_DELETED: string;
|
|
4508
|
+
MESSAGE_COPIED: string;
|
|
4509
|
+
MESSAGE_EDITED: string;
|
|
4510
|
+
MESSAGE_DELETED_TEXT: string;
|
|
4511
|
+
MESSAGE_TRANSLATED: string;
|
|
4474
4512
|
VIEW_ON_YOUTUBE: string;
|
|
4475
4513
|
SEARCH: string;
|
|
4476
4514
|
ERROR: string;
|
|
@@ -4483,6 +4521,13 @@ declare class CometChatLocalize {
|
|
|
4483
4521
|
INCOMING_VIDEO_CALL: string;
|
|
4484
4522
|
DECLINE: string;
|
|
4485
4523
|
ACCEPT: string;
|
|
4524
|
+
INCOMING_CALL: string;
|
|
4525
|
+
OUTGOING_CALL: string;
|
|
4526
|
+
CALL_REJECTED: string;
|
|
4527
|
+
CALL_ANSWERED: string;
|
|
4528
|
+
CALL_CANCELLED: string;
|
|
4529
|
+
MISSED_CALL: string;
|
|
4530
|
+
CALL_UNANSWERED: string;
|
|
4486
4531
|
CALL_INITIATED: string;
|
|
4487
4532
|
OUTGOING_AUDIO_CALL: string;
|
|
4488
4533
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -4552,6 +4597,8 @@ declare class CometChatLocalize {
|
|
|
4552
4597
|
CHANGE_SCOPE: string;
|
|
4553
4598
|
STICKER: string;
|
|
4554
4599
|
LAST_ACTIVE_AT: string;
|
|
4600
|
+
LAST_SEEN: string;
|
|
4601
|
+
AT: string;
|
|
4555
4602
|
VOICE_CALL: string;
|
|
4556
4603
|
VIEW_DETAIL: string;
|
|
4557
4604
|
VOTES: string;
|
|
@@ -4606,6 +4653,8 @@ declare class CometChatLocalize {
|
|
|
4606
4653
|
ONGOING_CALL: string;
|
|
4607
4654
|
YOU_ALREADY_ONGOING_CALL: string;
|
|
4608
4655
|
RESIZE: string;
|
|
4656
|
+
READ_MORE: string;
|
|
4657
|
+
SHOW_LESS: string;
|
|
4609
4658
|
SETTINGS: string;
|
|
4610
4659
|
ACTIONS: string;
|
|
4611
4660
|
VIEW_PROFILE: string;
|
|
@@ -4637,8 +4686,6 @@ declare class CometChatLocalize {
|
|
|
4637
4686
|
LEAVE: string;
|
|
4638
4687
|
CLICK_TO_START_CONVERSATION: string;
|
|
4639
4688
|
CUSTOM_MESSAGE_LOCATION: string;
|
|
4640
|
-
READ_MORE: string;
|
|
4641
|
-
SHOW_LESS: string;
|
|
4642
4689
|
SHARED_LOCATION: string;
|
|
4643
4690
|
IN_A_THREAD: string;
|
|
4644
4691
|
CALLS: string;
|
|
@@ -4706,7 +4753,7 @@ declare class CometChatLocalize {
|
|
|
4706
4753
|
NO_CONVERSATIONS: string;
|
|
4707
4754
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
4708
4755
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
4709
|
-
OOPS: string;
|
|
4756
|
+
"OOPS!": string;
|
|
4710
4757
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
4711
4758
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
4712
4759
|
REACHED_MAX_LIMIT: string;
|
|
@@ -4717,26 +4764,12 @@ declare class CometChatLocalize {
|
|
|
4717
4764
|
SAVE: string;
|
|
4718
4765
|
};
|
|
4719
4766
|
sv: {
|
|
4720
|
-
INCOMING_CALL: string;
|
|
4721
|
-
OUTGOING_CALL: string;
|
|
4722
|
-
CALL_REJECTED: string;
|
|
4723
|
-
CALL_ANSWERED: string;
|
|
4724
|
-
CALL_CANCELLED: string;
|
|
4725
|
-
MISSED_CALL: string;
|
|
4726
|
-
CALL_UNANSWERED: string;
|
|
4727
4767
|
INFO: string;
|
|
4728
4768
|
REACT: string;
|
|
4729
|
-
LAST_SEEN: string;
|
|
4730
|
-
AT: string;
|
|
4731
4769
|
EDIT: string;
|
|
4732
4770
|
MESSAGE_PRIVATELY: string;
|
|
4733
4771
|
TRANSLATE: string;
|
|
4734
4772
|
USERS: string;
|
|
4735
|
-
CONVERSATION_DELETED: string;
|
|
4736
|
-
MESSAGE_COPIED: string;
|
|
4737
|
-
MESSAGE_EDITED: string;
|
|
4738
|
-
MESSAGE_DELETED_TEXT: string;
|
|
4739
|
-
MESSAGE_TRANSLATED: string;
|
|
4740
4773
|
CHATS: string;
|
|
4741
4774
|
SEARCH_EMOJI: string;
|
|
4742
4775
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
@@ -4749,7 +4782,6 @@ declare class CometChatLocalize {
|
|
|
4749
4782
|
CONVERSATION_LIST_ITEM: string;
|
|
4750
4783
|
DATA_ITEM: string;
|
|
4751
4784
|
STATUS_INDICATOR: string;
|
|
4752
|
-
WRONG_FILE_TYPE: string;
|
|
4753
4785
|
BADGE_COUNT: string;
|
|
4754
4786
|
MESSAGE_RECEIPT: string;
|
|
4755
4787
|
MESSAGE: string;
|
|
@@ -4760,6 +4792,7 @@ declare class CometChatLocalize {
|
|
|
4760
4792
|
CONVERSATIONS: string;
|
|
4761
4793
|
CONVERSATION_LIST: string;
|
|
4762
4794
|
MESSAGES: string;
|
|
4795
|
+
WRONG_FILE_TYPE: string;
|
|
4763
4796
|
MESSAGE_HEADER: string;
|
|
4764
4797
|
MESSAGE_LIST: string;
|
|
4765
4798
|
MESSAGE_COMPOSER: string;
|
|
@@ -4800,10 +4833,14 @@ declare class CometChatLocalize {
|
|
|
4800
4833
|
MEETING_NO_SLOTS_AVAILABLE: string;
|
|
4801
4834
|
MEETING_TRY_DIFFERENT_DATE: string;
|
|
4802
4835
|
NO_TIME_SLOTS_AVAILABLE: string;
|
|
4803
|
-
SCHEDULE: string;
|
|
4836
|
+
SCHEDULE: string; /**
|
|
4837
|
+
* Returns the language code
|
|
4838
|
+
* @returns {String} language code i.e. en
|
|
4839
|
+
*/
|
|
4804
4840
|
MORE_TIMES: string;
|
|
4805
4841
|
MISSED_VOICE_CALL: string;
|
|
4806
4842
|
MEET_WITH: string;
|
|
4843
|
+
CONVERSATION_DELETED: string;
|
|
4807
4844
|
MEETING_SCHEDULER: string;
|
|
4808
4845
|
MISSED_VIDEO_CALL: string;
|
|
4809
4846
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -4864,6 +4901,10 @@ declare class CometChatLocalize {
|
|
|
4864
4901
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
4865
4902
|
THIS_MESSAGE_DELETED: string;
|
|
4866
4903
|
MESSAGE_IS_DELETED: string;
|
|
4904
|
+
MESSAGE_COPIED: string;
|
|
4905
|
+
MESSAGE_EDITED: string;
|
|
4906
|
+
MESSAGE_DELETED_TEXT: string;
|
|
4907
|
+
MESSAGE_TRANSLATED: string;
|
|
4867
4908
|
VIEW_ON_YOUTUBE: string;
|
|
4868
4909
|
SEARCH: string;
|
|
4869
4910
|
ERROR: string;
|
|
@@ -4876,6 +4917,13 @@ declare class CometChatLocalize {
|
|
|
4876
4917
|
INCOMING_VIDEO_CALL: string;
|
|
4877
4918
|
DECLINE: string;
|
|
4878
4919
|
ACCEPT: string;
|
|
4920
|
+
INCOMING_CALL: string;
|
|
4921
|
+
OUTGOING_CALL: string;
|
|
4922
|
+
CALL_REJECTED: string;
|
|
4923
|
+
CALL_ANSWERED: string;
|
|
4924
|
+
CALL_CANCELLED: string;
|
|
4925
|
+
MISSED_CALL: string;
|
|
4926
|
+
CALL_UNANSWERED: string;
|
|
4879
4927
|
CALL_INITIATED: string;
|
|
4880
4928
|
OUTGOING_AUDIO_CALL: string;
|
|
4881
4929
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -4945,6 +4993,8 @@ declare class CometChatLocalize {
|
|
|
4945
4993
|
CHANGE_SCOPE: string;
|
|
4946
4994
|
STICKER: string;
|
|
4947
4995
|
LAST_ACTIVE_AT: string;
|
|
4996
|
+
LAST_SEEN: string;
|
|
4997
|
+
AT: string;
|
|
4948
4998
|
VOICE_CALL: string;
|
|
4949
4999
|
VIEW_DETAIL: string;
|
|
4950
5000
|
VOTES: string;
|
|
@@ -4999,10 +5049,10 @@ declare class CometChatLocalize {
|
|
|
4999
5049
|
ONGOING_CALL: string;
|
|
5000
5050
|
YOU_ALREADY_ONGOING_CALL: string;
|
|
5001
5051
|
RESIZE: string;
|
|
5002
|
-
SETTINGS: string;
|
|
5003
|
-
ACTIONS: string;
|
|
5004
5052
|
READ_MORE: string;
|
|
5005
5053
|
SHOW_LESS: string;
|
|
5054
|
+
SETTINGS: string;
|
|
5055
|
+
ACTIONS: string;
|
|
5006
5056
|
VIEW_PROFILE: string;
|
|
5007
5057
|
SEND_MESSAGE_IN_PRIVATE: string;
|
|
5008
5058
|
DELETE: string;
|
|
@@ -5099,7 +5149,7 @@ declare class CometChatLocalize {
|
|
|
5099
5149
|
NO_CONVERSATIONS: string;
|
|
5100
5150
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
5101
5151
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
5102
|
-
OOPS: string;
|
|
5152
|
+
"OOPS!": string;
|
|
5103
5153
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
5104
5154
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
5105
5155
|
REACHED_MAX_LIMIT: string;
|
|
@@ -5110,32 +5160,17 @@ declare class CometChatLocalize {
|
|
|
5110
5160
|
SAVE: string;
|
|
5111
5161
|
};
|
|
5112
5162
|
lt: {
|
|
5113
|
-
INCOMING_CALL: string;
|
|
5114
|
-
OUTGOING_CALL: string;
|
|
5115
|
-
CALL_REJECTED: string;
|
|
5116
|
-
CALL_ANSWERED: string;
|
|
5117
|
-
CALL_CANCELLED: string;
|
|
5118
|
-
MISSED_CALL: string;
|
|
5119
|
-
CALL_UNANSWERED: string;
|
|
5120
5163
|
INFO: string;
|
|
5121
5164
|
REACT: string;
|
|
5122
5165
|
EDIT: string;
|
|
5123
|
-
CONVERSATION_DELETED: string;
|
|
5124
|
-
MESSAGE_COPIED: string;
|
|
5125
|
-
MESSAGE_EDITED: string;
|
|
5126
|
-
MESSAGE_DELETED_TEXT: string;
|
|
5127
|
-
MESSAGE_TRANSLATED: string;
|
|
5128
5166
|
MESSAGE_PRIVATELY: string;
|
|
5129
5167
|
TRANSLATE: string;
|
|
5130
5168
|
USERS: string;
|
|
5131
|
-
LAST_SEEN: string;
|
|
5132
|
-
AT: string;
|
|
5133
5169
|
CHATS: string;
|
|
5134
5170
|
SEARCH_EMOJI: string;
|
|
5135
5171
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
5136
5172
|
GROUPS: string;
|
|
5137
5173
|
SHARED: string;
|
|
5138
|
-
WRONG_FILE_TYPE: string;
|
|
5139
5174
|
SOUND_MANAGER: string;
|
|
5140
5175
|
THEME: string;
|
|
5141
5176
|
DELETE_MSG_TEXT: string;
|
|
@@ -5153,6 +5188,7 @@ declare class CometChatLocalize {
|
|
|
5153
5188
|
CONVERSATIONS: string;
|
|
5154
5189
|
CONVERSATION_LIST: string;
|
|
5155
5190
|
MESSAGES: string;
|
|
5191
|
+
WRONG_FILE_TYPE: string;
|
|
5156
5192
|
MESSAGE_HEADER: string;
|
|
5157
5193
|
MESSAGE_LIST: string;
|
|
5158
5194
|
MESSAGE_COMPOSER: string;
|
|
@@ -5197,6 +5233,7 @@ declare class CometChatLocalize {
|
|
|
5197
5233
|
MORE_TIMES: string;
|
|
5198
5234
|
MISSED_VOICE_CALL: string;
|
|
5199
5235
|
MEET_WITH: string;
|
|
5236
|
+
CONVERSATION_DELETED: string;
|
|
5200
5237
|
MEETING_SCHEDULER: string;
|
|
5201
5238
|
MISSED_VIDEO_CALL: string;
|
|
5202
5239
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -5220,7 +5257,11 @@ declare class CometChatLocalize {
|
|
|
5220
5257
|
YESTERDAY: string;
|
|
5221
5258
|
SUNDAY: string;
|
|
5222
5259
|
MONDAY: string;
|
|
5223
|
-
TUESDAY: string;
|
|
5260
|
+
TUESDAY: string; /**
|
|
5261
|
+
* Accepts the string to localize and return the localized string
|
|
5262
|
+
* @param {String} str
|
|
5263
|
+
* @returns {String} localized str
|
|
5264
|
+
*/
|
|
5224
5265
|
WEDNESDAY: string;
|
|
5225
5266
|
THURSDAY: string;
|
|
5226
5267
|
FRIDAY: string;
|
|
@@ -5257,6 +5298,10 @@ declare class CometChatLocalize {
|
|
|
5257
5298
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
5258
5299
|
THIS_MESSAGE_DELETED: string;
|
|
5259
5300
|
MESSAGE_IS_DELETED: string;
|
|
5301
|
+
MESSAGE_COPIED: string;
|
|
5302
|
+
MESSAGE_EDITED: string;
|
|
5303
|
+
MESSAGE_DELETED_TEXT: string;
|
|
5304
|
+
MESSAGE_TRANSLATED: string;
|
|
5260
5305
|
VIEW_ON_YOUTUBE: string;
|
|
5261
5306
|
SEARCH: string;
|
|
5262
5307
|
ERROR: string;
|
|
@@ -5269,6 +5314,13 @@ declare class CometChatLocalize {
|
|
|
5269
5314
|
INCOMING_VIDEO_CALL: string;
|
|
5270
5315
|
DECLINE: string;
|
|
5271
5316
|
ACCEPT: string;
|
|
5317
|
+
INCOMING_CALL: string;
|
|
5318
|
+
OUTGOING_CALL: string;
|
|
5319
|
+
CALL_REJECTED: string;
|
|
5320
|
+
CALL_ANSWERED: string;
|
|
5321
|
+
CALL_CANCELLED: string;
|
|
5322
|
+
MISSED_CALL: string;
|
|
5323
|
+
CALL_UNANSWERED: string;
|
|
5272
5324
|
CALL_INITIATED: string;
|
|
5273
5325
|
OUTGOING_AUDIO_CALL: string;
|
|
5274
5326
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -5338,6 +5390,8 @@ declare class CometChatLocalize {
|
|
|
5338
5390
|
CHANGE_SCOPE: string;
|
|
5339
5391
|
STICKER: string;
|
|
5340
5392
|
LAST_ACTIVE_AT: string;
|
|
5393
|
+
LAST_SEEN: string;
|
|
5394
|
+
AT: string;
|
|
5341
5395
|
VOICE_CALL: string;
|
|
5342
5396
|
VIEW_DETAIL: string;
|
|
5343
5397
|
VOTES: string;
|
|
@@ -5345,8 +5399,6 @@ declare class CometChatLocalize {
|
|
|
5345
5399
|
NO_VOTE: string;
|
|
5346
5400
|
REACTED: string;
|
|
5347
5401
|
ADDED: string;
|
|
5348
|
-
READ_MORE: string;
|
|
5349
|
-
SHOW_LESS: string;
|
|
5350
5402
|
SHOW_UNSAFE_CONTENT: string;
|
|
5351
5403
|
REACT_TO_MESSAGE: string;
|
|
5352
5404
|
UNBANNED: string;
|
|
@@ -5394,6 +5446,8 @@ declare class CometChatLocalize {
|
|
|
5394
5446
|
ONGOING_CALL: string;
|
|
5395
5447
|
YOU_ALREADY_ONGOING_CALL: string;
|
|
5396
5448
|
RESIZE: string;
|
|
5449
|
+
READ_MORE: string;
|
|
5450
|
+
SHOW_LESS: string;
|
|
5397
5451
|
SETTINGS: string;
|
|
5398
5452
|
ACTIONS: string;
|
|
5399
5453
|
VIEW_PROFILE: string;
|
|
@@ -5492,7 +5546,7 @@ declare class CometChatLocalize {
|
|
|
5492
5546
|
NO_CONVERSATIONS: string;
|
|
5493
5547
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
5494
5548
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
5495
|
-
OOPS: string;
|
|
5549
|
+
"OOPS!": string;
|
|
5496
5550
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
5497
5551
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
5498
5552
|
REACHED_MAX_LIMIT: string;
|
|
@@ -5503,33 +5557,18 @@ declare class CometChatLocalize {
|
|
|
5503
5557
|
SAVE: string;
|
|
5504
5558
|
};
|
|
5505
5559
|
hu: {
|
|
5506
|
-
INCOMING_CALL: string;
|
|
5507
|
-
OUTGOING_CALL: string;
|
|
5508
|
-
CALL_REJECTED: string;
|
|
5509
|
-
CALL_ANSWERED: string;
|
|
5510
|
-
CALL_CANCELLED: string;
|
|
5511
|
-
MISSED_CALL: string;
|
|
5512
|
-
CALL_UNANSWERED: string;
|
|
5513
5560
|
INFO: string;
|
|
5514
5561
|
REACT: string;
|
|
5515
5562
|
EDIT: string;
|
|
5516
5563
|
MESSAGE_PRIVATELY: string;
|
|
5517
5564
|
TRANSLATE: string;
|
|
5518
5565
|
USERS: string;
|
|
5519
|
-
CONVERSATION_DELETED: string;
|
|
5520
|
-
MESSAGE_COPIED: string;
|
|
5521
|
-
MESSAGE_EDITED: string;
|
|
5522
|
-
MESSAGE_DELETED_TEXT: string;
|
|
5523
|
-
MESSAGE_TRANSLATED: string;
|
|
5524
5566
|
CHATS: string;
|
|
5525
|
-
LAST_SEEN: string;
|
|
5526
|
-
AT: string;
|
|
5527
5567
|
SEARCH_EMOJI: string;
|
|
5528
5568
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
5529
5569
|
GROUPS: string;
|
|
5530
5570
|
SHARED: string;
|
|
5531
5571
|
SOUND_MANAGER: string;
|
|
5532
|
-
WRONG_FILE_TYPE: string;
|
|
5533
5572
|
THEME: string;
|
|
5534
5573
|
DELETE_MSG_TEXT: string;
|
|
5535
5574
|
LOCALIZE: string;
|
|
@@ -5546,6 +5585,7 @@ declare class CometChatLocalize {
|
|
|
5546
5585
|
CONVERSATIONS: string;
|
|
5547
5586
|
CONVERSATION_LIST: string;
|
|
5548
5587
|
MESSAGES: string;
|
|
5588
|
+
WRONG_FILE_TYPE: string;
|
|
5549
5589
|
MESSAGE_HEADER: string;
|
|
5550
5590
|
MESSAGE_LIST: string;
|
|
5551
5591
|
MESSAGE_COMPOSER: string;
|
|
@@ -5590,6 +5630,7 @@ declare class CometChatLocalize {
|
|
|
5590
5630
|
MORE_TIMES: string;
|
|
5591
5631
|
MISSED_VOICE_CALL: string;
|
|
5592
5632
|
MEET_WITH: string;
|
|
5633
|
+
CONVERSATION_DELETED: string;
|
|
5593
5634
|
MEETING_SCHEDULER: string;
|
|
5594
5635
|
MISSED_VIDEO_CALL: string;
|
|
5595
5636
|
CUSTOM_MESSAGE_POLL: string;
|
|
@@ -5608,14 +5649,21 @@ declare class CometChatLocalize {
|
|
|
5608
5649
|
PREFERENCES: string;
|
|
5609
5650
|
MEMBERS: string;
|
|
5610
5651
|
MEMBER: string;
|
|
5611
|
-
EDITED: string;
|
|
5652
|
+
EDITED: string; /**
|
|
5653
|
+
* Set the active language
|
|
5654
|
+
* @param {String} language
|
|
5655
|
+
*/
|
|
5612
5656
|
TODAY: string;
|
|
5613
5657
|
YESTERDAY: string;
|
|
5614
5658
|
SUNDAY: string;
|
|
5615
5659
|
MONDAY: string;
|
|
5616
5660
|
TUESDAY: string;
|
|
5617
5661
|
WEDNESDAY: string;
|
|
5618
|
-
THURSDAY: string;
|
|
5662
|
+
THURSDAY: string; /**
|
|
5663
|
+
* Accepts the string to localize and return the localized string
|
|
5664
|
+
* @param {String} str
|
|
5665
|
+
* @returns {String} localized str
|
|
5666
|
+
*/
|
|
5619
5667
|
FRIDAY: string;
|
|
5620
5668
|
SATURDAY: string;
|
|
5621
5669
|
TYPING: string;
|
|
@@ -5650,6 +5698,10 @@ declare class CometChatLocalize {
|
|
|
5650
5698
|
YOU_DELETED_THIS_MESSAGE: string;
|
|
5651
5699
|
THIS_MESSAGE_DELETED: string;
|
|
5652
5700
|
MESSAGE_IS_DELETED: string;
|
|
5701
|
+
MESSAGE_COPIED: string;
|
|
5702
|
+
MESSAGE_EDITED: string;
|
|
5703
|
+
MESSAGE_DELETED_TEXT: string;
|
|
5704
|
+
MESSAGE_TRANSLATED: string;
|
|
5653
5705
|
VIEW_ON_YOUTUBE: string;
|
|
5654
5706
|
SEARCH: string;
|
|
5655
5707
|
ERROR: string;
|
|
@@ -5662,6 +5714,13 @@ declare class CometChatLocalize {
|
|
|
5662
5714
|
INCOMING_VIDEO_CALL: string;
|
|
5663
5715
|
DECLINE: string;
|
|
5664
5716
|
ACCEPT: string;
|
|
5717
|
+
INCOMING_CALL: string;
|
|
5718
|
+
OUTGOING_CALL: string;
|
|
5719
|
+
CALL_REJECTED: string;
|
|
5720
|
+
CALL_ANSWERED: string;
|
|
5721
|
+
CALL_CANCELLED: string;
|
|
5722
|
+
MISSED_CALL: string;
|
|
5723
|
+
CALL_UNANSWERED: string;
|
|
5665
5724
|
CALL_INITIATED: string;
|
|
5666
5725
|
OUTGOING_AUDIO_CALL: string;
|
|
5667
5726
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -5731,6 +5790,8 @@ declare class CometChatLocalize {
|
|
|
5731
5790
|
CHANGE_SCOPE: string;
|
|
5732
5791
|
STICKER: string;
|
|
5733
5792
|
LAST_ACTIVE_AT: string;
|
|
5793
|
+
LAST_SEEN: string;
|
|
5794
|
+
AT: string;
|
|
5734
5795
|
VOICE_CALL: string;
|
|
5735
5796
|
VIEW_DETAIL: string;
|
|
5736
5797
|
VOTES: string;
|
|
@@ -5785,11 +5846,11 @@ declare class CometChatLocalize {
|
|
|
5785
5846
|
ONGOING_CALL: string;
|
|
5786
5847
|
YOU_ALREADY_ONGOING_CALL: string;
|
|
5787
5848
|
RESIZE: string;
|
|
5849
|
+
READ_MORE: string;
|
|
5850
|
+
SHOW_LESS: string;
|
|
5788
5851
|
SETTINGS: string;
|
|
5789
5852
|
ACTIONS: string;
|
|
5790
5853
|
VIEW_PROFILE: string;
|
|
5791
|
-
READ_MORE: string;
|
|
5792
|
-
SHOW_LESS: string;
|
|
5793
5854
|
SEND_MESSAGE_IN_PRIVATE: string;
|
|
5794
5855
|
DELETE: string;
|
|
5795
5856
|
DELETE_CONFIRM: string;
|
|
@@ -5885,7 +5946,7 @@ declare class CometChatLocalize {
|
|
|
5885
5946
|
NO_CONVERSATIONS: string;
|
|
5886
5947
|
CONVERSATIONS_EMPTY_MESSAGE: string;
|
|
5887
5948
|
NO_GROUP_MEMBER_AVAILABLE: string;
|
|
5888
|
-
OOPS: string;
|
|
5949
|
+
"OOPS!": string;
|
|
5889
5950
|
GROUP_MSG_INFO_EMPTY_STATE_MESSAGE: string;
|
|
5890
5951
|
GROUP_MEMBER_EMPTY_STATE_MESSAGE: string;
|
|
5891
5952
|
REACHED_MAX_LIMIT: string;
|
|
@@ -6736,28 +6797,28 @@ declare class MessagesDataSource implements DataSource {
|
|
|
6736
6797
|
getSendMessagePrivatelyOption(): CometChatActionsIcon;
|
|
6737
6798
|
getCopyOption(): CometChatActionsIcon;
|
|
6738
6799
|
getMessageInfoOption(): CometChatActionsIcon;
|
|
6739
|
-
isSentByMe(loggedInUser: CometChat.User, message: CometChat.BaseMessage): boolean;
|
|
6740
|
-
getTextMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: additionalParamsOptions): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6741
|
-
getIsSentByMe(message: CometChat.BaseMessage): boolean;
|
|
6742
|
-
getImageMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6743
|
-
getVideoMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6744
|
-
getAudioMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6745
|
-
getFileMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6746
|
-
getReceiptClass(status?: number): "
|
|
6800
|
+
isSentByMe(loggedInUser: CometChat$1.User, message: CometChat$1.BaseMessage): boolean;
|
|
6801
|
+
getTextMessageOptions(loggedInUser: CometChat$1.User, messageObject: CometChat$1.BaseMessage, group?: CometChat$1.Group, additionalParams?: additionalParamsOptions): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6802
|
+
getIsSentByMe(message: CometChat$1.BaseMessage): boolean;
|
|
6803
|
+
getImageMessageOptions(loggedInUser: CometChat$1.User, messageObject: CometChat$1.BaseMessage, group?: CometChat$1.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6804
|
+
getVideoMessageOptions(loggedInUser: CometChat$1.User, messageObject: CometChat$1.BaseMessage, group?: CometChat$1.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6805
|
+
getAudioMessageOptions(loggedInUser: CometChat$1.User, messageObject: CometChat$1.BaseMessage, group?: CometChat$1.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6806
|
+
getFileMessageOptions(loggedInUser: CometChat$1.User, messageObject: CometChat$1.BaseMessage, group?: CometChat$1.Group, additionalParams?: Object | undefined): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6807
|
+
getReceiptClass(status?: number): "error" | "wait" | "read" | "delivered" | "sent" | undefined;
|
|
6747
6808
|
/**
|
|
6748
6809
|
* Function to get receipt for message bubble
|
|
6749
6810
|
* @param {CometChat.BaseMessage} item - The message bubble for which the receipt needs to be fetched
|
|
6750
6811
|
* @returns {JSX.Element | null} Returns JSX.Element for receipt of a message bubble or null
|
|
6751
6812
|
*/
|
|
6752
|
-
getBubbleStatusInfoReceipt: (item: CometChat.BaseMessage, hideReceipt?: boolean) => JSX.Element | null;
|
|
6813
|
+
getBubbleStatusInfoReceipt: (item: CometChat$1.BaseMessage, hideReceipt?: boolean) => JSX.Element | null;
|
|
6753
6814
|
/**
|
|
6754
6815
|
* Function to get status and date for message bubble
|
|
6755
6816
|
* @param {CometChat.BaseMessage} item - The message bubble for which the information needs to be fetched
|
|
6756
6817
|
* @returns {JSX.Element | null} Returns JSX.Element for status and date of a message bubble or null
|
|
6757
6818
|
*/
|
|
6758
|
-
getBubbleStatusInfoDate: (item: CometChat.BaseMessage, datePattern?: DatePatterns) => JSX.Element | null;
|
|
6759
|
-
getStatusInfoView: (_messageObject: CometChat.BaseMessage, _alignment: MessageBubbleAlignment, hideReceipt?: boolean, datePattern?: DatePatterns) => react_jsx_runtime.JSX.Element | null;
|
|
6760
|
-
getBottomView(_messageObject: CometChat.BaseMessage, _alignment: MessageBubbleAlignment): null;
|
|
6819
|
+
getBubbleStatusInfoDate: (item: CometChat$1.BaseMessage, datePattern?: DatePatterns) => JSX.Element | null;
|
|
6820
|
+
getStatusInfoView: (_messageObject: CometChat$1.BaseMessage, _alignment: MessageBubbleAlignment, hideReceipt?: boolean, datePattern?: DatePatterns) => react_jsx_runtime.JSX.Element | null;
|
|
6821
|
+
getBottomView(_messageObject: CometChat$1.BaseMessage, _alignment: MessageBubbleAlignment): null;
|
|
6761
6822
|
getTextMessageTemplate(additionalConfigurations?: additionalParams): CometChatMessageTemplate;
|
|
6762
6823
|
getAudioMessageTemplate(): CometChatMessageTemplate;
|
|
6763
6824
|
getVideoMessageTemplate(): CometChatMessageTemplate;
|
|
@@ -6768,25 +6829,25 @@ declare class MessagesDataSource implements DataSource {
|
|
|
6768
6829
|
getFileMessageTemplate(): CometChatMessageTemplate;
|
|
6769
6830
|
getAllMessageTemplates(additionalConfigurations?: additionalParams): Array<CometChatMessageTemplate>;
|
|
6770
6831
|
getMessageTemplate(messageType: string, messageCategory: string, additionalConfigurations?: additionalParams): CometChatMessageTemplate | null;
|
|
6771
|
-
getMessageOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: additionalParamsOptions): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6772
|
-
getCommonOptions(loggedInUser: CometChat.User, messageObject: CometChat.BaseMessage, group?: CometChat.Group, additionalParams?: additionalParamsOptions): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6832
|
+
getMessageOptions(loggedInUser: CometChat$1.User, messageObject: CometChat$1.BaseMessage, group?: CometChat$1.Group, additionalParams?: additionalParamsOptions): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6833
|
+
getCommonOptions(loggedInUser: CometChat$1.User, messageObject: CometChat$1.BaseMessage, group?: CometChat$1.Group, additionalParams?: additionalParamsOptions): Array<CometChatActionsIcon | CometChatActionsView>;
|
|
6773
6834
|
getAllMessageTypes(): Array<string>;
|
|
6774
6835
|
addList(): string;
|
|
6775
6836
|
getAllMessageCategories(additionalConfigurations?: {
|
|
6776
6837
|
hideGroupActionMessages?: boolean;
|
|
6777
6838
|
}): Array<string>;
|
|
6778
|
-
getStickerButton(id: ComposerId, user?: CometChat.User, group?: CometChat.Group): JSX.Element | undefined;
|
|
6839
|
+
getStickerButton(id: ComposerId, user?: CometChat$1.User, group?: CometChat$1.Group): JSX.Element | undefined;
|
|
6779
6840
|
getId(): string;
|
|
6780
|
-
getTextMessageContentView(message: CometChat.TextMessage, _alignment: MessageBubbleAlignment, additionalConfigurations?: additionalParams): JSX.Element | Element;
|
|
6781
|
-
getAudioMessageContentView(message: CometChat.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX.Element;
|
|
6782
|
-
getFileMessageContentView(message: CometChat.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX.Element;
|
|
6783
|
-
getImageMessageContentView(message: CometChat.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX.Element;
|
|
6784
|
-
getVideoMessageContentView(message: CometChat.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX.Element;
|
|
6841
|
+
getTextMessageContentView(message: CometChat$1.TextMessage, _alignment: MessageBubbleAlignment, additionalConfigurations?: additionalParams): JSX.Element | Element;
|
|
6842
|
+
getAudioMessageContentView(message: CometChat$1.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX.Element;
|
|
6843
|
+
getFileMessageContentView(message: CometChat$1.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX.Element;
|
|
6844
|
+
getImageMessageContentView(message: CometChat$1.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX.Element;
|
|
6845
|
+
getVideoMessageContentView(message: CometChat$1.MediaMessage, _alignment: MessageBubbleAlignment): Element | JSX.Element;
|
|
6785
6846
|
getActionMessage(message: any): string;
|
|
6786
|
-
getDeleteMessageBubble(message: CometChat.BaseMessage, text?: string, alignment?: MessageBubbleAlignment): react_jsx_runtime.JSX.Element;
|
|
6787
|
-
getGroupActionBubble(message: CometChat.BaseMessage): react_jsx_runtime.JSX.Element;
|
|
6788
|
-
getTextMessageBubble(messageText: string, message: CometChat.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: additionalParams): Element | JSX.Element;
|
|
6789
|
-
getAudioMessageBubble(audioUrl: string, message: CometChat.MediaMessage, title?: string, alignment?: MessageBubbleAlignment): Element | JSX.Element;
|
|
6847
|
+
getDeleteMessageBubble(message: CometChat$1.BaseMessage, text?: string, alignment?: MessageBubbleAlignment): react_jsx_runtime.JSX.Element;
|
|
6848
|
+
getGroupActionBubble(message: CometChat$1.BaseMessage): react_jsx_runtime.JSX.Element;
|
|
6849
|
+
getTextMessageBubble(messageText: string, message: CometChat$1.TextMessage, alignment: MessageBubbleAlignment, additionalConfigurations?: additionalParams): Element | JSX.Element;
|
|
6850
|
+
getAudioMessageBubble(audioUrl: string, message: CometChat$1.MediaMessage, title?: string, alignment?: MessageBubbleAlignment): Element | JSX.Element;
|
|
6790
6851
|
/**
|
|
6791
6852
|
* Function to check mimeType and return the iconUrl of that type
|
|
6792
6853
|
* @param mimeType
|
|
@@ -6799,16 +6860,16 @@ declare class MessagesDataSource implements DataSource {
|
|
|
6799
6860
|
* @returns
|
|
6800
6861
|
*/
|
|
6801
6862
|
getFileSize: (sizeInBytes: number) => string;
|
|
6802
|
-
getFileMessageBubble(fileUrl: string, message: CometChat.MediaMessage, title?: string, alignment?: MessageBubbleAlignment): Element | JSX.Element;
|
|
6803
|
-
getImageMessageBubble(imageUrl: string, placeholderImage: string, message: CometChat.MediaMessage, onClick?: Function): react_jsx_runtime.JSX.Element;
|
|
6804
|
-
getVideoMessageBubble(videoUrl: string, message: CometChat.MediaMessage, thumbnailUrl?: string, onClick?: Function): Element | JSX.Element;
|
|
6863
|
+
getFileMessageBubble(fileUrl: string, message: CometChat$1.MediaMessage, title?: string, alignment?: MessageBubbleAlignment): Element | JSX.Element;
|
|
6864
|
+
getImageMessageBubble(imageUrl: string, placeholderImage: string, message: CometChat$1.MediaMessage, onClick?: Function): react_jsx_runtime.JSX.Element;
|
|
6865
|
+
getVideoMessageBubble(videoUrl: string, message: CometChat$1.MediaMessage, thumbnailUrl?: string, onClick?: Function): Element | JSX.Element;
|
|
6805
6866
|
imageAttachmentOption(): CometChatMessageComposerAction;
|
|
6806
6867
|
videoAttachmentOption(): CometChatMessageComposerAction;
|
|
6807
6868
|
audioAttachmentOption(): CometChatMessageComposerAction;
|
|
6808
6869
|
fileAttachmentOption(): CometChatMessageComposerAction;
|
|
6809
6870
|
getAttachmentOptions(id: ComposerId, additionalConfigurations?: any): Array<CometChatMessageComposerAction>;
|
|
6810
|
-
getLastConversationMessage(conversation: CometChat.Conversation, loggedInUser: CometChat.User, additionalConfigurations: additionalParams): string;
|
|
6811
|
-
getAuxiliaryHeaderMenu(user?: CometChat.User, group?: CometChat.Group, additionalConfigurations?: any): Element[] | JSX.Element[];
|
|
6871
|
+
getLastConversationMessage(conversation: CometChat$1.Conversation, loggedInUser: CometChat$1.User, additionalConfigurations: additionalParams): string;
|
|
6872
|
+
getAuxiliaryHeaderMenu(user?: CometChat$1.User, group?: CometChat$1.Group, additionalConfigurations?: any): Element[] | JSX.Element[];
|
|
6812
6873
|
/**
|
|
6813
6874
|
* Adds styled @ for every mention in the text by matching uid
|
|
6814
6875
|
*
|
|
@@ -6816,7 +6877,7 @@ declare class MessagesDataSource implements DataSource {
|
|
|
6816
6877
|
* @param {string} subtitle
|
|
6817
6878
|
* @returns {void}
|
|
6818
6879
|
*/
|
|
6819
|
-
getMentionsFormattedText(message: CometChat.TextMessage, subtitle: string, mentionsFormatterParams: {
|
|
6880
|
+
getMentionsFormattedText(message: CometChat$1.TextMessage, subtitle: string, mentionsFormatterParams: {
|
|
6820
6881
|
mentionsTargetElement: MentionsTargetElement;
|
|
6821
6882
|
}): string;
|
|
6822
6883
|
getAllTextFormatters(formatterParams: additionalParams): CometChatTextFormatter[];
|
|
@@ -8391,7 +8452,7 @@ declare class StickersExtensionDecorator extends DataSourceDecorator {
|
|
|
8391
8452
|
* @param group - Optional group object.
|
|
8392
8453
|
* @returns An array of auxiliary options.
|
|
8393
8454
|
*/
|
|
8394
|
-
getStickerButton(id: ComposerId, user?: CometChat.User, group?: CometChat.Group): react_jsx_runtime.JSX.Element;
|
|
8455
|
+
getStickerButton(id: ComposerId, user?: CometChat$1.User, group?: CometChat$1.Group): react_jsx_runtime.JSX.Element;
|
|
8395
8456
|
/**
|
|
8396
8457
|
* Creates the sticker auxiliary button component.
|
|
8397
8458
|
* @param id - A map containing relevant IDs.
|
|
@@ -8400,7 +8461,7 @@ declare class StickersExtensionDecorator extends DataSourceDecorator {
|
|
|
8400
8461
|
* @param group - Optional group object.
|
|
8401
8462
|
* @returns The JSX element for the sticker auxiliary button.
|
|
8402
8463
|
*/
|
|
8403
|
-
getStickerAuxiliaryButton: (id: ComposerId, user?: CometChat.User, group?: CometChat.Group) => react_jsx_runtime.JSX.Element;
|
|
8464
|
+
getStickerAuxiliaryButton: (id: ComposerId, user?: CometChat$1.User, group?: CometChat$1.Group) => react_jsx_runtime.JSX.Element;
|
|
8404
8465
|
/**
|
|
8405
8466
|
* Sends a sticker message.
|
|
8406
8467
|
* @param event - The event object containing sticker details.
|
|
@@ -8410,14 +8471,14 @@ declare class StickersExtensionDecorator extends DataSourceDecorator {
|
|
|
8410
8471
|
* Sends a sticker message.
|
|
8411
8472
|
* @param event - The event object containing sticker details.
|
|
8412
8473
|
*/
|
|
8413
|
-
getSticker(message: CometChat.CustomMessage): any;
|
|
8474
|
+
getSticker(message: CometChat$1.CustomMessage): any;
|
|
8414
8475
|
/**
|
|
8415
8476
|
* Creates a JSX element for displaying the sticker message content.
|
|
8416
8477
|
* @param stickerMessage - The custom message containing sticker data.
|
|
8417
8478
|
* @param _theme - The theme object for styling.
|
|
8418
8479
|
* @returns The JSX element for the sticker message content.
|
|
8419
8480
|
*/
|
|
8420
|
-
getStickerMessageContentView(stickerMessage: CometChat.CustomMessage): react_jsx_runtime.JSX.Element;
|
|
8481
|
+
getStickerMessageContentView(stickerMessage: CometChat$1.CustomMessage): react_jsx_runtime.JSX.Element;
|
|
8421
8482
|
/**
|
|
8422
8483
|
* Creates a sticker message template.
|
|
8423
8484
|
* @param _theme - The theme object for styling.
|
|
@@ -8453,7 +8514,7 @@ declare class StickersExtensionDecorator extends DataSourceDecorator {
|
|
|
8453
8514
|
* @param additionalConfigurations - Additional configurations, if any.
|
|
8454
8515
|
* @returns A string representing the last message.
|
|
8455
8516
|
*/
|
|
8456
|
-
getLastConversationMessage(conversation: CometChat.Conversation, loggedInUser: CometChat.User, additionalConfigurations?: any): string;
|
|
8517
|
+
getLastConversationMessage(conversation: CometChat$1.Conversation, loggedInUser: CometChat$1.User, additionalConfigurations?: any): string;
|
|
8457
8518
|
}
|
|
8458
8519
|
|
|
8459
8520
|
/**
|
|
@@ -11342,7 +11403,7 @@ declare class CometChatUIKitUtility {
|
|
|
11342
11403
|
* @param messageObject - The message object containing extensions.
|
|
11343
11404
|
* @returns The sanitized message text if available, otherwise the original text.
|
|
11344
11405
|
*/
|
|
11345
|
-
static getExtensionData(messageObject: CometChat.BaseMessage): string;
|
|
11406
|
+
static getExtensionData(messageObject: CometChat$1.BaseMessage): string;
|
|
11346
11407
|
/**
|
|
11347
11408
|
* Checks for extension data in a message.
|
|
11348
11409
|
*
|
|
@@ -11350,7 +11411,7 @@ declare class CometChatUIKitUtility {
|
|
|
11350
11411
|
* @param extensionKey - The extension key to look for.
|
|
11351
11412
|
* @returns The extension data if found.
|
|
11352
11413
|
*/
|
|
11353
|
-
static checkMessageForExtensionsData: (message: CometChat.BaseMessage | null, extensionKey: string) => (object & MessageExtensionType) | undefined;
|
|
11414
|
+
static checkMessageForExtensionsData: (message: CometChat$1.BaseMessage | null, extensionKey: string) => (object & MessageExtensionType) | undefined;
|
|
11354
11415
|
/**
|
|
11355
11416
|
* Sanitizes an HTML string by escaping tags not matching the whitelist.
|
|
11356
11417
|
*
|