@cometchat/chat-uikit-react 5.0.0-beta2 → 5.0.0
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/README.md +2 -2
- package/dist/assets/Send.svg +3 -0
- package/dist/assets/loading.svg +5 -16
- package/dist/index.d.ts +1155 -950
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles/CometChatCallButtons.css +1 -1
- package/dist/styles/CometChatCallLogs.css +3 -3
- package/dist/styles/{components/AIConversationStarter.css → CometChatConversationStarter.css} +2 -2
- package/dist/styles/{components/AIConversationSummary.css → CometChatConversationSummary.css} +12 -12
- package/dist/styles/CometChatConversations.css +10 -10
- package/dist/styles/CometChatGroupMembers.css +5 -5
- package/dist/styles/CometChatIncomingCall.css +1 -1
- package/dist/styles/CometChatList.css +15 -22
- package/dist/styles/CometChatListItem.css +2 -2
- package/dist/styles/CometChatMessageComposer.css +44 -41
- package/dist/styles/CometChatMessageHeader.css +22 -5
- package/dist/styles/CometChatMessageInformation.css +3 -2
- package/dist/styles/CometChatMessageList.css +6 -5
- package/dist/styles/CometChatOutgoingCall.css +5 -0
- package/dist/styles/{AISmartReplies.css → CometChatSmartReplies.css} +72 -79
- package/dist/styles/PollsBubble.css +7 -1
- package/dist/styles/components/CometChatCallButtons.css +1 -1
- package/dist/styles/components/CometChatCallLogs.css +3 -3
- package/dist/styles/{AIConversationStarter.css → components/CometChatConversationStarter.css} +2 -2
- package/dist/styles/{AIConversationSummary.css → components/CometChatConversationSummary.css} +12 -12
- package/dist/styles/components/CometChatConversations.css +10 -10
- package/dist/styles/components/CometChatGroupMembers.css +5 -5
- package/dist/styles/components/CometChatIncomingCall.css +1 -1
- package/dist/styles/components/CometChatList.css +15 -22
- package/dist/styles/components/CometChatListItem.css +2 -2
- package/dist/styles/components/CometChatMessageComposer.css +44 -41
- package/dist/styles/components/CometChatMessageHeader.css +22 -5
- package/dist/styles/components/CometChatMessageInformation.css +3 -2
- package/dist/styles/components/CometChatMessageList.css +6 -5
- package/dist/styles/components/CometChatOutgoingCall.css +5 -0
- package/dist/styles/components/{AISmartReplies.css → CometChatSmartReplies.css} +72 -79
- package/dist/styles/components/PollsBubble.css +7 -1
- package/dist/styles/components/index.css +3 -3
- package/dist/styles/index.css +3 -3
- package/dist/types/CometChatCustomHooks.d.ts +1 -1
- package/dist/types/CometChatUIKit/CometChatUIKit.d.ts +0 -6
- package/dist/types/CometChatUIKit/UIKitSettings.d.ts +0 -22
- package/dist/types/Enums/Enums.d.ts +9 -0
- package/dist/types/components/BaseComponents/CometChatConversationStarter/CometChatConversationStarter.d.ts +6 -0
- package/dist/types/components/BaseComponents/CometChatConversationSummary/CometChatConversationSummary.d.ts +6 -0
- package/dist/types/components/BaseComponents/CometChatList/CometChatList.d.ts +12 -12
- package/dist/types/components/BaseComponents/CometChatListItem/CometChatListItem.d.ts +3 -1
- package/dist/types/components/BaseComponents/CometChatSmartReplies/CometChatSmartReplies.d.ts +7 -0
- package/dist/types/components/Calling/CallButtonConfiguration.d.ts +1 -1
- package/dist/types/components/Calling/CallingExtensionDecorator.d.ts +2 -2
- package/dist/types/components/Calling/CometChatCallButtons/CometChatCallButtons.d.ts +30 -12
- package/dist/types/components/Calling/CometChatCallButtons/useCallButtons.d.ts +1 -1
- package/dist/types/components/Calling/CometChatCallLogs/CometChatCallLogs.d.ts +50 -38
- package/dist/types/components/Calling/CometChatCallLogs/useCometChatCallLogs.d.ts +1 -1
- package/dist/types/components/Calling/CometChatIncomingCall/CometChatIncomingCall.d.ts +48 -26
- package/dist/types/components/Calling/CometChatIncomingCall/useCometChatIncomingCall.d.ts +1 -1
- package/dist/types/components/Calling/CometChatOutgoingCall/CometChatOutgoingCall.d.ts +31 -15
- package/dist/types/components/Calling/CometChatOutgoingCall/useCometChatOutgoingCall.d.ts +1 -1
- package/dist/types/components/Calling/OutgoingCallConfiguration.d.ts +7 -3
- package/dist/types/components/CometChatConversations/CometChatConversations.d.ts +88 -87
- package/dist/types/components/CometChatConversations/controller.d.ts +10 -8
- package/dist/types/components/CometChatConversations/useCometChatConversations.d.ts +2 -5
- package/dist/types/components/CometChatGroupMembers/CometChatGroupMembers.d.ts +94 -76
- package/dist/types/components/CometChatGroupMembers/useCometChatGroupMembers.d.ts +2 -2
- package/dist/types/components/CometChatGroups/CometChatGroups.d.ts +74 -62
- package/dist/types/components/CometChatGroups/useCometChatGroups.d.ts +1 -0
- package/dist/types/components/CometChatMessageComposer/CometChatMessageComposer.d.ts +107 -49
- package/dist/types/components/CometChatMessageComposer/useCometChatMessageComposer.d.ts +1 -1
- package/dist/types/components/CometChatMessageHeader/CometChatMessageHeader.d.ts +77 -16
- package/dist/types/components/CometChatMessageHeader/useCometChatMessageHeader.d.ts +1 -1
- package/dist/types/components/CometChatMessageInformation/CometChatMessageInformation.d.ts +5 -0
- package/dist/types/components/CometChatMessageList/CometChatMessageList.d.ts +133 -55
- package/dist/types/components/CometChatMessageList/CometChatMessageListController.d.ts +3 -1
- package/dist/types/components/CometChatMessageList/useCometChatMessageList.d.ts +1 -1
- package/dist/types/components/CometChatThreadedMessagePreview/CometChatThreadedMessagePreview.d.ts +34 -2
- package/dist/types/components/CometChatUsers/CometChatUsers.d.ts +88 -89
- package/dist/types/components/CometChatUsers/useCometChatUsers.d.ts +2 -1
- package/dist/types/components/Extensions/CollaborativeDocument/CollaborativeDocumentExtensionDecorator.d.ts +4 -3
- package/dist/types/components/Extensions/CollaborativeWhiteboard/CollaborativeWhiteboardExtensionDecorator.d.ts +4 -3
- package/dist/types/components/Extensions/MessageTranslation/MessageTranslationExtensionDecorator.d.ts +3 -1
- package/dist/types/components/Extensions/Polls/PollsBubble.d.ts +5 -0
- package/dist/types/components/Extensions/Polls/PollsExtensionDecorator.d.ts +4 -3
- package/dist/types/components/Extensions/Stickers/StickersExtensionDecorator.d.ts +2 -3
- package/dist/types/components/Reactions/CometChatReactionInfo/CometChatReactionInfo.d.ts +3 -2
- package/dist/types/components/Reactions/CometChatReactionList/CometChatReactionList.d.ts +3 -2
- package/dist/types/components/Reactions/CometChatReactions/CometChatReactions.d.ts +3 -2
- package/dist/types/index.d.ts +8 -7
- package/dist/types/resources/CometChatLocalize/cometchat-localize.d.ts +129 -115
- package/dist/types/utils/DataSource.d.ts +17 -18
- package/dist/types/utils/DataSourceDecorator.d.ts +17 -18
- package/dist/types/utils/GroupMemberUtils.d.ts +1 -1
- package/dist/types/utils/MessageUtils.d.ts +1 -1
- package/dist/types/utils/MessagesDataSource.d.ts +29 -16
- package/dist/types/utils/util.d.ts +5 -0
- package/package.json +1 -1
- package/dist/assets/ai-empty.svg +0 -22
- package/dist/assets/ai-error.svg +0 -3
- package/dist/assets/heart-reaction.png +0 -0
- package/dist/assets/send.svg +0 -12
- package/dist/styles/AICard.css +0 -30
- package/dist/styles/components/AICard.css +0 -30
- package/dist/types/components/AI/AIBaseConfiguration.d.ts +0 -51
- package/dist/types/components/AI/AIConversationStarter/AIConversationStarterConfiguration.d.ts +0 -20
- package/dist/types/components/AI/AIConversationStarter/AIConversationStarterDecorator.d.ts +0 -18
- package/dist/types/components/AI/AIConversationStarter/AIConversationStarterExtension.d.ts +0 -8
- package/dist/types/components/AI/AIConversationStarter/AIConversationStarterView.d.ts +0 -8
- package/dist/types/components/AI/AIConversationSummary/AIConversationSummaryConfiguration.d.ts +0 -31
- package/dist/types/components/AI/AIConversationSummary/AIConversationSummaryDecorator.d.ts +0 -22
- package/dist/types/components/AI/AIConversationSummary/AIConversationSummaryExtension.d.ts +0 -8
- package/dist/types/components/AI/AIConversationSummary/AIConversationSummaryView.d.ts +0 -9
- package/dist/types/components/AI/AIExtensionDataSource.d.ts +0 -6
- package/dist/types/components/AI/AISmartReplies/AISmartRepliesConfiguration.d.ts +0 -28
- package/dist/types/components/AI/AISmartReplies/AISmartRepliesDecorator.d.ts +0 -21
- package/dist/types/components/AI/AISmartReplies/AISmartRepliesExtension.d.ts +0 -8
- package/dist/types/components/AI/AISmartReplies/AISmartRepliesView.d.ts +0 -11
- package/dist/types/components/BaseComponents/CometChatLiveReaction/CometChatLiveReaction.d.ts +0 -5
- package/dist/types/components/BaseComponents/CometChatLiveReaction/useLiveReactionHook.d.ts +0 -19
- /package/dist/assets/{ai.svg → conversation_summary.svg} +0 -0
|
@@ -29,6 +29,9 @@ declare class CometChatLocalize {
|
|
|
29
29
|
TRANSLATE: string;
|
|
30
30
|
USERS: string;
|
|
31
31
|
CHATS: string;
|
|
32
|
+
LAST_SEEN: string;
|
|
33
|
+
AT: string;
|
|
34
|
+
WRONG_FILE_TYPE: string;
|
|
32
35
|
MESSAGE_COPIED: string;
|
|
33
36
|
MESSAGE_EDITED: string;
|
|
34
37
|
MESSAGE_DELETED_TEXT: string;
|
|
@@ -100,10 +103,6 @@ declare class CometChatLocalize {
|
|
|
100
103
|
MEET_WITH: string;
|
|
101
104
|
MEETING_SCHEDULER: string;
|
|
102
105
|
MISSED_VIDEO_CALL: string;
|
|
103
|
-
/**
|
|
104
|
-
* Returns the active language. Return fallback language if translation is not available for the active language
|
|
105
|
-
* @returns {String} active language
|
|
106
|
-
*/
|
|
107
106
|
CUSTOM_MESSAGE_POLL: string;
|
|
108
107
|
CUSTOM_MESSAGE_STICKER: string;
|
|
109
108
|
CUSTOM_MESSAGE_DOCUMENT: string;
|
|
@@ -227,7 +226,7 @@ declare class CometChatLocalize {
|
|
|
227
226
|
GENERATING_ICEBREAKERS: string;
|
|
228
227
|
EMOJI: string;
|
|
229
228
|
NO_REPLIES_FOUND: string;
|
|
230
|
-
|
|
229
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
231
230
|
NO_MESSAGES_FOUND: string;
|
|
232
231
|
THREAD: string;
|
|
233
232
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -427,9 +426,12 @@ declare class CometChatLocalize {
|
|
|
427
426
|
MESSAGE_DELETED_TEXT: string;
|
|
428
427
|
MESSAGE_TRANSLATED: string;
|
|
429
428
|
CHATS: string;
|
|
429
|
+
LAST_SEEN: string;
|
|
430
|
+
AT: string;
|
|
430
431
|
SEARCH_EMOJI: string;
|
|
431
432
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
432
433
|
GROUPS: string;
|
|
434
|
+
WRONG_FILE_TYPE: string;
|
|
433
435
|
SHARED: string;
|
|
434
436
|
SOUND_MANAGER: string;
|
|
435
437
|
THEME: string;
|
|
@@ -484,10 +486,7 @@ declare class CometChatLocalize {
|
|
|
484
486
|
MEETING_SCHEDULED: string;
|
|
485
487
|
SOMETHING_WRONG: string;
|
|
486
488
|
MEETING_SLOT_BOOK: string;
|
|
487
|
-
MEETING_BOOK_NEW_SLOT: string;
|
|
488
|
-
* Returns the active language. Return fallback language if translation is not available for the active language
|
|
489
|
-
* @returns {String} active language
|
|
490
|
-
*/
|
|
489
|
+
MEETING_BOOK_NEW_SLOT: string;
|
|
491
490
|
MEETING_NO_SLOTS_AVAILABLE: string;
|
|
492
491
|
MEETING_TRY_DIFFERENT_DATE: string;
|
|
493
492
|
NO_TIME_SLOTS_AVAILABLE: string;
|
|
@@ -530,6 +529,10 @@ declare class CometChatLocalize {
|
|
|
530
529
|
ADD_MEMBERS: string;
|
|
531
530
|
SEND_MESSAGE: string;
|
|
532
531
|
UNBLOCK_USER: string;
|
|
532
|
+
/**
|
|
533
|
+
* Returns rtl or ltr based on the active language
|
|
534
|
+
* @returns {String} the direction of the active langauge
|
|
535
|
+
*/
|
|
533
536
|
BLOCK_USER: string;
|
|
534
537
|
DELETE_AND_EXIT: string;
|
|
535
538
|
LEAVE_GROUP: string;
|
|
@@ -620,7 +623,7 @@ declare class CometChatLocalize {
|
|
|
620
623
|
GENERATING_ICEBREAKERS: string;
|
|
621
624
|
EMOJI: string;
|
|
622
625
|
NO_REPLIES_FOUND: string;
|
|
623
|
-
|
|
626
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
624
627
|
NO_MESSAGES_FOUND: string;
|
|
625
628
|
THREAD: string;
|
|
626
629
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -829,6 +832,7 @@ declare class CometChatLocalize {
|
|
|
829
832
|
CONVERSATIONS: string;
|
|
830
833
|
CONVERSATION_LIST: string;
|
|
831
834
|
MESSAGES: string;
|
|
835
|
+
WRONG_FILE_TYPE: string;
|
|
832
836
|
MESSAGE_HEADER: string;
|
|
833
837
|
MESSAGE_LIST: string;
|
|
834
838
|
MESSAGE_COMPOSER: string;
|
|
@@ -848,11 +852,6 @@ declare class CometChatLocalize {
|
|
|
848
852
|
SELECT__GROUP: string;
|
|
849
853
|
SELECT__USER: string;
|
|
850
854
|
GROUP_PASSWORD_BLANK: string;
|
|
851
|
-
/**
|
|
852
|
-
* Initializes localization with the specified language and custom resources.
|
|
853
|
-
* @param {string} [language=""] - The language code to set.
|
|
854
|
-
* @param {object} [resources={}] - Custom translations to override defaults.
|
|
855
|
-
*/
|
|
856
855
|
GROUP_NAME_BLANK: string;
|
|
857
856
|
GROUP_TYPE_BLANK: string;
|
|
858
857
|
DELETE_CONVERSATION: string;
|
|
@@ -910,14 +909,14 @@ declare class CometChatLocalize {
|
|
|
910
909
|
TYPING: string;
|
|
911
910
|
IS_TYPING: string;
|
|
912
911
|
CLOSE: string;
|
|
913
|
-
ENTER_GROUP_NAME: string;
|
|
914
|
-
ADD_MEMBERS: string;
|
|
915
|
-
SEND_MESSAGE: string;
|
|
916
|
-
UNBLOCK_USER: string; /**
|
|
912
|
+
ENTER_GROUP_NAME: string; /**
|
|
917
913
|
* Accepts the string to localize and return the localized string
|
|
918
914
|
* @param {String} str
|
|
919
915
|
* @returns {String} localized str
|
|
920
916
|
*/
|
|
917
|
+
ADD_MEMBERS: string;
|
|
918
|
+
SEND_MESSAGE: string;
|
|
919
|
+
UNBLOCK_USER: string;
|
|
921
920
|
BLOCK_USER: string;
|
|
922
921
|
DELETE_AND_EXIT: string;
|
|
923
922
|
LEAVE_GROUP: string;
|
|
@@ -1019,7 +1018,7 @@ declare class CometChatLocalize {
|
|
|
1019
1018
|
GENERATING_ICEBREAKERS: string;
|
|
1020
1019
|
EMOJI: string;
|
|
1021
1020
|
NO_REPLIES_FOUND: string;
|
|
1022
|
-
|
|
1021
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
1023
1022
|
NO_MESSAGES_FOUND: string;
|
|
1024
1023
|
THREAD: string;
|
|
1025
1024
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -1035,6 +1034,8 @@ declare class CometChatLocalize {
|
|
|
1035
1034
|
CHANGE_SCOPE: string;
|
|
1036
1035
|
STICKER: string;
|
|
1037
1036
|
LAST_ACTIVE_AT: string;
|
|
1037
|
+
LAST_SEEN: string;
|
|
1038
|
+
AT: string;
|
|
1038
1039
|
VOICE_CALL: string;
|
|
1039
1040
|
VIEW_DETAIL: string;
|
|
1040
1041
|
VOTES: string;
|
|
@@ -1217,9 +1218,12 @@ declare class CometChatLocalize {
|
|
|
1217
1218
|
MESSAGE_DELETED_TEXT: string;
|
|
1218
1219
|
MESSAGE_TRANSLATED: string;
|
|
1219
1220
|
TRANSLATE: string;
|
|
1221
|
+
LAST_SEEN: string;
|
|
1222
|
+
AT: string;
|
|
1220
1223
|
USERS: string;
|
|
1221
1224
|
CHATS: string;
|
|
1222
1225
|
SEARCH_EMOJI: string;
|
|
1226
|
+
WRONG_FILE_TYPE: string;
|
|
1223
1227
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
1224
1228
|
GROUPS: string;
|
|
1225
1229
|
SHARED: string;
|
|
@@ -1266,10 +1270,7 @@ declare class CometChatLocalize {
|
|
|
1266
1270
|
MORE: string;
|
|
1267
1271
|
COPY: string;
|
|
1268
1272
|
VOICE_RECORDING: string;
|
|
1269
|
-
MESSAGE_IMAGE: string;
|
|
1270
|
-
* Returns the language code
|
|
1271
|
-
* @returns {String} language code i.e. en
|
|
1272
|
-
*/
|
|
1273
|
+
MESSAGE_IMAGE: string;
|
|
1273
1274
|
MESSAGE_FILE: string;
|
|
1274
1275
|
MESSAGE_VIDEO: string;
|
|
1275
1276
|
MESSAGE_AUDIO: string;
|
|
@@ -1412,7 +1413,7 @@ declare class CometChatLocalize {
|
|
|
1412
1413
|
GENERATING_ICEBREAKERS: string;
|
|
1413
1414
|
EMOJI: string;
|
|
1414
1415
|
NO_REPLIES_FOUND: string;
|
|
1415
|
-
|
|
1416
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
1416
1417
|
NO_MESSAGES_FOUND: string;
|
|
1417
1418
|
THREAD: string;
|
|
1418
1419
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -1612,9 +1613,12 @@ declare class CometChatLocalize {
|
|
|
1612
1613
|
MESSAGE_TRANSLATED: string;
|
|
1613
1614
|
USERS: string;
|
|
1614
1615
|
CHATS: string;
|
|
1616
|
+
LAST_SEEN: string;
|
|
1617
|
+
AT: string;
|
|
1615
1618
|
SEARCH_EMOJI: string;
|
|
1616
1619
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
1617
1620
|
GROUPS: string;
|
|
1621
|
+
WRONG_FILE_TYPE: string; /**Properties and constants */
|
|
1618
1622
|
SHARED: string;
|
|
1619
1623
|
SOUND_MANAGER: string;
|
|
1620
1624
|
THEME: string;
|
|
@@ -1646,7 +1650,7 @@ declare class CometChatLocalize {
|
|
|
1646
1650
|
NO_CHATS_SELECTED: string;
|
|
1647
1651
|
NO_USERS_SELECTED: string;
|
|
1648
1652
|
NO_GROUPS_SELECTED: string;
|
|
1649
|
-
SELECT_DAY: string;
|
|
1653
|
+
SELECT_DAY: string;
|
|
1650
1654
|
SELECT_TIME: string;
|
|
1651
1655
|
NO_CALLS_SELECTED: string;
|
|
1652
1656
|
SELECT__GROUP: string;
|
|
@@ -1668,10 +1672,7 @@ declare class CometChatLocalize {
|
|
|
1668
1672
|
TIME_ZONE: string;
|
|
1669
1673
|
MEETING_SCHEDULED: string;
|
|
1670
1674
|
SOMETHING_WRONG: string;
|
|
1671
|
-
MEETING_SLOT_BOOK: string;
|
|
1672
|
-
* Returns the active language. Return fallback language if translation is not available for the active language
|
|
1673
|
-
* @returns {String} active language
|
|
1674
|
-
*/
|
|
1675
|
+
MEETING_SLOT_BOOK: string;
|
|
1675
1676
|
MEETING_BOOK_NEW_SLOT: string;
|
|
1676
1677
|
MEETING_NO_SLOTS_AVAILABLE: string;
|
|
1677
1678
|
MEETING_TRY_DIFFERENT_DATE: string;
|
|
@@ -1684,7 +1685,9 @@ declare class CometChatLocalize {
|
|
|
1684
1685
|
MISSED_VIDEO_CALL: string;
|
|
1685
1686
|
CUSTOM_MESSAGE_POLL: string;
|
|
1686
1687
|
CUSTOM_MESSAGE_STICKER: string;
|
|
1687
|
-
CUSTOM_MESSAGE_DOCUMENT: string;
|
|
1688
|
+
CUSTOM_MESSAGE_DOCUMENT: string; /**
|
|
1689
|
+
* Sets the default lannguage if no language is passed in init method
|
|
1690
|
+
*/
|
|
1688
1691
|
CUSTOM_MESSAGE_WHITEBOARD: string;
|
|
1689
1692
|
ONLINE: string;
|
|
1690
1693
|
ADMINISTRATOR: string;
|
|
@@ -1709,10 +1712,7 @@ declare class CometChatLocalize {
|
|
|
1709
1712
|
FRIDAY: string;
|
|
1710
1713
|
SATURDAY: string;
|
|
1711
1714
|
TYPING: string;
|
|
1712
|
-
IS_TYPING: string;
|
|
1713
|
-
* Returns true if the active language is rtl otherwise return false
|
|
1714
|
-
* @returns {Boolean} whether the language is rtl or not
|
|
1715
|
-
*/
|
|
1715
|
+
IS_TYPING: string;
|
|
1716
1716
|
CLOSE: string;
|
|
1717
1717
|
ENTER_GROUP_NAME: string;
|
|
1718
1718
|
ADD_MEMBERS: string;
|
|
@@ -1808,7 +1808,7 @@ declare class CometChatLocalize {
|
|
|
1808
1808
|
GENERATING_ICEBREAKERS: string;
|
|
1809
1809
|
EMOJI: string;
|
|
1810
1810
|
NO_REPLIES_FOUND: string;
|
|
1811
|
-
|
|
1811
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
1812
1812
|
NO_MESSAGES_FOUND: string;
|
|
1813
1813
|
THREAD: string;
|
|
1814
1814
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -2008,9 +2008,12 @@ declare class CometChatLocalize {
|
|
|
2008
2008
|
TRANSLATE: string;
|
|
2009
2009
|
USERS: string;
|
|
2010
2010
|
CHATS: string;
|
|
2011
|
+
LAST_SEEN: string;
|
|
2012
|
+
AT: string;
|
|
2011
2013
|
SEARCH_EMOJI: string;
|
|
2012
2014
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
2013
2015
|
GROUPS: string;
|
|
2016
|
+
WRONG_FILE_TYPE: string;
|
|
2014
2017
|
SHARED: string;
|
|
2015
2018
|
SOUND_MANAGER: string;
|
|
2016
2019
|
THEME: string;
|
|
@@ -2045,7 +2048,7 @@ declare class CometChatLocalize {
|
|
|
2045
2048
|
SELECT_DAY: string;
|
|
2046
2049
|
SELECT_TIME: string;
|
|
2047
2050
|
NO_CALLS_SELECTED: string;
|
|
2048
|
-
SELECT__GROUP: string;
|
|
2051
|
+
SELECT__GROUP: string;
|
|
2049
2052
|
SELECT__USER: string;
|
|
2050
2053
|
GROUP_PASSWORD_BLANK: string;
|
|
2051
2054
|
GROUP_NAME_BLANK: string;
|
|
@@ -2093,7 +2096,9 @@ declare class CometChatLocalize {
|
|
|
2093
2096
|
MEMBER: string;
|
|
2094
2097
|
EDITED: string;
|
|
2095
2098
|
TODAY: string;
|
|
2096
|
-
YESTERDAY: string;
|
|
2099
|
+
YESTERDAY: string; /**
|
|
2100
|
+
* Sets the default lannguage if no language is passed in init method
|
|
2101
|
+
*/
|
|
2097
2102
|
SUNDAY: string;
|
|
2098
2103
|
MONDAY: string;
|
|
2099
2104
|
TUESDAY: string;
|
|
@@ -2198,7 +2203,7 @@ declare class CometChatLocalize {
|
|
|
2198
2203
|
GENERATING_ICEBREAKERS: string;
|
|
2199
2204
|
EMOJI: string;
|
|
2200
2205
|
NO_REPLIES_FOUND: string;
|
|
2201
|
-
|
|
2206
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
2202
2207
|
NO_MESSAGES_FOUND: string;
|
|
2203
2208
|
THREAD: string;
|
|
2204
2209
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -2393,6 +2398,8 @@ declare class CometChatLocalize {
|
|
|
2393
2398
|
TRANSLATE: string;
|
|
2394
2399
|
USERS: string;
|
|
2395
2400
|
CHATS: string;
|
|
2401
|
+
LAST_SEEN: string;
|
|
2402
|
+
AT: string;
|
|
2396
2403
|
CONVERSATION_DELETED: string;
|
|
2397
2404
|
MESSAGE_COPIED: string;
|
|
2398
2405
|
MESSAGE_EDITED: string;
|
|
@@ -2401,11 +2408,13 @@ declare class CometChatLocalize {
|
|
|
2401
2408
|
SEARCH_EMOJI: string;
|
|
2402
2409
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
2403
2410
|
GROUPS: string;
|
|
2411
|
+
WRONG_FILE_TYPE: string;
|
|
2404
2412
|
SHARED: string;
|
|
2413
|
+
/**Properties and constants */
|
|
2405
2414
|
SOUND_MANAGER: string;
|
|
2406
2415
|
THEME: string;
|
|
2407
2416
|
DELETE_MSG_TEXT: string;
|
|
2408
|
-
LOCALIZE: string;
|
|
2417
|
+
LOCALIZE: string;
|
|
2409
2418
|
CONVERSATION_LIST_ITEM: string;
|
|
2410
2419
|
DATA_ITEM: string;
|
|
2411
2420
|
STATUS_INDICATOR: string;
|
|
@@ -2419,15 +2428,7 @@ declare class CometChatLocalize {
|
|
|
2419
2428
|
CONVERSATIONS: string;
|
|
2420
2429
|
CONVERSATION_LIST: string;
|
|
2421
2430
|
MESSAGES: string;
|
|
2422
|
-
MESSAGE_HEADER: string;
|
|
2423
|
-
* Needs to be called at the start of the application in order to set the language
|
|
2424
|
-
* @param {Object} - language & resources
|
|
2425
|
-
*/
|
|
2426
|
-
/**
|
|
2427
|
-
* Initializes localization with the specified language and custom resources.
|
|
2428
|
-
* @param {string} [language=""] - The language code to set.
|
|
2429
|
-
* @param {object} [resources={}] - Custom translations to override defaults.
|
|
2430
|
-
*/
|
|
2431
|
+
MESSAGE_HEADER: string;
|
|
2431
2432
|
MESSAGE_LIST: string;
|
|
2432
2433
|
MESSAGE_COMPOSER: string;
|
|
2433
2434
|
USERS_WITH_MESSAGES: string;
|
|
@@ -2438,28 +2439,31 @@ declare class CometChatLocalize {
|
|
|
2438
2439
|
PASSWORD: string;
|
|
2439
2440
|
CONTINUE: string;
|
|
2440
2441
|
NO_CHATS_SELECTED: string;
|
|
2441
|
-
NO_USERS_SELECTED: string;
|
|
2442
|
+
NO_USERS_SELECTED: string; /**Override resources */
|
|
2442
2443
|
NO_GROUPS_SELECTED: string;
|
|
2443
2444
|
SELECT_DAY: string;
|
|
2444
2445
|
SELECT_TIME: string;
|
|
2445
2446
|
NO_CALLS_SELECTED: string;
|
|
2446
|
-
SELECT__GROUP: string;
|
|
2447
|
+
SELECT__GROUP: string;
|
|
2447
2448
|
SELECT__USER: string;
|
|
2448
2449
|
GROUP_PASSWORD_BLANK: string;
|
|
2449
2450
|
GROUP_NAME_BLANK: string;
|
|
2450
2451
|
GROUP_TYPE_BLANK: string;
|
|
2451
|
-
DELETE_CONVERSATION: string;
|
|
2452
|
+
DELETE_CONVERSATION: string; /**
|
|
2453
|
+
* Returns the browser language
|
|
2454
|
+
* @returns {String} browser langauge i.e. en-US
|
|
2455
|
+
*/
|
|
2452
2456
|
ADD_TO_CHAT: string;
|
|
2453
2457
|
MORE: string;
|
|
2454
2458
|
COPY: string;
|
|
2455
2459
|
VOICE_RECORDING: string;
|
|
2456
|
-
MESSAGE_IMAGE: string;
|
|
2457
|
-
* Returns the browser language
|
|
2458
|
-
* @returns {String} browser langauge i.e. en-US
|
|
2459
|
-
*/
|
|
2460
|
+
MESSAGE_IMAGE: string;
|
|
2460
2461
|
MESSAGE_FILE: string;
|
|
2461
2462
|
MESSAGE_VIDEO: string;
|
|
2462
|
-
MESSAGE_AUDIO: string;
|
|
2463
|
+
MESSAGE_AUDIO: string; /**
|
|
2464
|
+
* Returns the language code
|
|
2465
|
+
* @returns {String} language code i.e. en
|
|
2466
|
+
*/
|
|
2463
2467
|
CUSTOM_MESSAGE: string;
|
|
2464
2468
|
SELECT_A_DATE: string;
|
|
2465
2469
|
TIME_ZONE: string;
|
|
@@ -2495,9 +2499,7 @@ declare class CometChatLocalize {
|
|
|
2495
2499
|
EDITED: string;
|
|
2496
2500
|
TODAY: string;
|
|
2497
2501
|
YESTERDAY: string;
|
|
2498
|
-
SUNDAY: string;
|
|
2499
|
-
* Sets the default lannguage if no language is passed in init method
|
|
2500
|
-
*/
|
|
2502
|
+
SUNDAY: string;
|
|
2501
2503
|
MONDAY: string;
|
|
2502
2504
|
TUESDAY: string;
|
|
2503
2505
|
WEDNESDAY: string;
|
|
@@ -2522,13 +2524,14 @@ declare class CometChatLocalize {
|
|
|
2522
2524
|
LOADING: string;
|
|
2523
2525
|
REPLY: string;
|
|
2524
2526
|
REPLIES: string;
|
|
2525
|
-
|
|
2526
|
-
SMART_REPLIES: string;
|
|
2527
|
-
CONVERSATION_STARTER: string;
|
|
2528
|
-
LAUNCH: string; /**
|
|
2527
|
+
/**
|
|
2529
2528
|
* Returns rtl or ltr based on the active language
|
|
2530
2529
|
* @returns {String} the direction of the active langauge
|
|
2531
2530
|
*/
|
|
2531
|
+
AI: string;
|
|
2532
|
+
SMART_REPLIES: string;
|
|
2533
|
+
CONVERSATION_STARTER: string;
|
|
2534
|
+
LAUNCH: string;
|
|
2532
2535
|
SHARED_COLLABORATIVE_DOCUMENT: string;
|
|
2533
2536
|
SHARED_COLLABORATIVE_WHITEBOARD: string;
|
|
2534
2537
|
CREATED_WHITEBOARD: string;
|
|
@@ -2604,7 +2607,7 @@ declare class CometChatLocalize {
|
|
|
2604
2607
|
GENERATING_ICEBREAKERS: string;
|
|
2605
2608
|
EMOJI: string;
|
|
2606
2609
|
NO_REPLIES_FOUND: string;
|
|
2607
|
-
|
|
2610
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
2608
2611
|
NO_MESSAGES_FOUND: string;
|
|
2609
2612
|
THREAD: string;
|
|
2610
2613
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -2804,11 +2807,14 @@ declare class CometChatLocalize {
|
|
|
2804
2807
|
MESSAGE_TRANSLATED: string;
|
|
2805
2808
|
USERS: string;
|
|
2806
2809
|
CHATS: string;
|
|
2810
|
+
LAST_SEEN: string;
|
|
2811
|
+
AT: string;
|
|
2807
2812
|
SEARCH_EMOJI: string;
|
|
2808
2813
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
2809
2814
|
GROUPS: string;
|
|
2810
2815
|
SHARED: string;
|
|
2811
2816
|
SOUND_MANAGER: string;
|
|
2817
|
+
WRONG_FILE_TYPE: string;
|
|
2812
2818
|
THEME: string;
|
|
2813
2819
|
DELETE_MSG_TEXT: string;
|
|
2814
2820
|
LOCALIZE: string;
|
|
@@ -2855,10 +2861,6 @@ declare class CometChatLocalize {
|
|
|
2855
2861
|
MESSAGE_FILE: string;
|
|
2856
2862
|
MESSAGE_VIDEO: string;
|
|
2857
2863
|
MESSAGE_AUDIO: string;
|
|
2858
|
-
/**
|
|
2859
|
-
* Returns the language code
|
|
2860
|
-
* @returns {String} language code i.e. en
|
|
2861
|
-
*/
|
|
2862
2864
|
CUSTOM_MESSAGE: string;
|
|
2863
2865
|
SELECT_A_DATE: string;
|
|
2864
2866
|
TIME_ZONE: string;
|
|
@@ -2998,7 +3000,7 @@ declare class CometChatLocalize {
|
|
|
2998
3000
|
GENERATING_ICEBREAKERS: string;
|
|
2999
3001
|
EMOJI: string;
|
|
3000
3002
|
NO_REPLIES_FOUND: string;
|
|
3001
|
-
|
|
3003
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
3002
3004
|
NO_MESSAGES_FOUND: string;
|
|
3003
3005
|
THREAD: string;
|
|
3004
3006
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -3193,6 +3195,8 @@ declare class CometChatLocalize {
|
|
|
3193
3195
|
TRANSLATE: string;
|
|
3194
3196
|
USERS: string;
|
|
3195
3197
|
CHATS: string;
|
|
3198
|
+
LAST_SEEN: string;
|
|
3199
|
+
AT: string;
|
|
3196
3200
|
MESSAGE_COPIED: string;
|
|
3197
3201
|
MESSAGE_EDITED: string;
|
|
3198
3202
|
MESSAGE_DELETED_TEXT: string;
|
|
@@ -3206,6 +3210,7 @@ declare class CometChatLocalize {
|
|
|
3206
3210
|
THEME: string;
|
|
3207
3211
|
DELETE_MSG_TEXT: string;
|
|
3208
3212
|
LOCALIZE: string;
|
|
3213
|
+
WRONG_FILE_TYPE: string;
|
|
3209
3214
|
CONVERSATION_LIST_ITEM: string;
|
|
3210
3215
|
DATA_ITEM: string;
|
|
3211
3216
|
STATUS_INDICATOR: string;
|
|
@@ -3235,7 +3240,7 @@ declare class CometChatLocalize {
|
|
|
3235
3240
|
SELECT_DAY: string;
|
|
3236
3241
|
SELECT_TIME: string;
|
|
3237
3242
|
NO_CALLS_SELECTED: string;
|
|
3238
|
-
SELECT__GROUP: string;
|
|
3243
|
+
SELECT__GROUP: string;
|
|
3239
3244
|
SELECT__USER: string;
|
|
3240
3245
|
GROUP_PASSWORD_BLANK: string;
|
|
3241
3246
|
GROUP_NAME_BLANK: string;
|
|
@@ -3388,7 +3393,7 @@ declare class CometChatLocalize {
|
|
|
3388
3393
|
GENERATING_ICEBREAKERS: string;
|
|
3389
3394
|
EMOJI: string;
|
|
3390
3395
|
NO_REPLIES_FOUND: string;
|
|
3391
|
-
|
|
3396
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
3392
3397
|
NO_MESSAGES_FOUND: string;
|
|
3393
3398
|
THREAD: string;
|
|
3394
3399
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -3588,10 +3593,13 @@ declare class CometChatLocalize {
|
|
|
3588
3593
|
MESSAGE_TRANSLATED: string;
|
|
3589
3594
|
USERS: string;
|
|
3590
3595
|
CHATS: string;
|
|
3596
|
+
LAST_SEEN: string;
|
|
3597
|
+
AT: string;
|
|
3591
3598
|
SEARCH_EMOJI: string;
|
|
3592
3599
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
3593
3600
|
GROUPS: string;
|
|
3594
3601
|
SHARED: string;
|
|
3602
|
+
WRONG_FILE_TYPE: string;
|
|
3595
3603
|
SOUND_MANAGER: string;
|
|
3596
3604
|
THEME: string;
|
|
3597
3605
|
DELETE_MSG_TEXT: string;
|
|
@@ -3626,10 +3634,20 @@ declare class CometChatLocalize {
|
|
|
3626
3634
|
SELECT_TIME: string;
|
|
3627
3635
|
NO_CALLS_SELECTED: string;
|
|
3628
3636
|
SELECT__GROUP: string;
|
|
3637
|
+
/**
|
|
3638
|
+
* Initializes localization with the specified language and custom resources.
|
|
3639
|
+
* @param {string} [language=""] - The language code to set.
|
|
3640
|
+
* @param {object} [resources={}] - Custom translations to override defaults.
|
|
3641
|
+
*/
|
|
3629
3642
|
SELECT__USER: string;
|
|
3630
3643
|
GROUP_PASSWORD_BLANK: string;
|
|
3631
3644
|
GROUP_NAME_BLANK: string;
|
|
3632
3645
|
GROUP_TYPE_BLANK: string;
|
|
3646
|
+
/**
|
|
3647
|
+
* Initializes localization with the specified language and custom resources.
|
|
3648
|
+
* @param {string} [language=""] - The language code to set.
|
|
3649
|
+
* @param {object} [resources={}] - Custom translations to override defaults.
|
|
3650
|
+
*/
|
|
3633
3651
|
DELETE_CONVERSATION: string;
|
|
3634
3652
|
ADD_TO_CHAT: string;
|
|
3635
3653
|
MORE: string;
|
|
@@ -3666,16 +3684,15 @@ declare class CometChatLocalize {
|
|
|
3666
3684
|
PARTICIPANT: string;
|
|
3667
3685
|
PUBLIC: string;
|
|
3668
3686
|
PRIVATE: string;
|
|
3669
|
-
/**
|
|
3670
|
-
* Returns the browser language
|
|
3671
|
-
* @returns {String} browser langauge i.e. en-US
|
|
3672
|
-
*/
|
|
3673
3687
|
PASSWORD_PROTECTED: string;
|
|
3674
3688
|
PRIVACY_AND_SECURITY: string;
|
|
3675
3689
|
PREFERENCES: string;
|
|
3676
3690
|
MEMBERS: string;
|
|
3677
3691
|
MEMBER: string;
|
|
3678
|
-
EDITED: string;
|
|
3692
|
+
EDITED: string; /**
|
|
3693
|
+
* Returns the language code
|
|
3694
|
+
* @returns {String} language code i.e. en
|
|
3695
|
+
*/
|
|
3679
3696
|
TODAY: string;
|
|
3680
3697
|
YESTERDAY: string;
|
|
3681
3698
|
SUNDAY: string;
|
|
@@ -3728,9 +3745,7 @@ declare class CometChatLocalize {
|
|
|
3728
3745
|
INCOMING_AUDIO_CALL: string;
|
|
3729
3746
|
INCOMING_VIDEO_CALL: string;
|
|
3730
3747
|
DECLINE: string;
|
|
3731
|
-
ACCEPT: string;
|
|
3732
|
-
* Sets the default lannguage if no language is passed in init method
|
|
3733
|
-
*/
|
|
3748
|
+
ACCEPT: string;
|
|
3734
3749
|
CALL_INITIATED: string;
|
|
3735
3750
|
OUTGOING_AUDIO_CALL: string;
|
|
3736
3751
|
OUTGOING_VIDEO_CALL: string;
|
|
@@ -3784,7 +3799,7 @@ declare class CometChatLocalize {
|
|
|
3784
3799
|
GENERATING_ICEBREAKERS: string;
|
|
3785
3800
|
EMOJI: string;
|
|
3786
3801
|
NO_REPLIES_FOUND: string;
|
|
3787
|
-
|
|
3802
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
3788
3803
|
NO_MESSAGES_FOUND: string;
|
|
3789
3804
|
THREAD: string;
|
|
3790
3805
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -3984,11 +3999,14 @@ declare class CometChatLocalize {
|
|
|
3984
3999
|
TRANSLATE: string;
|
|
3985
4000
|
USERS: string;
|
|
3986
4001
|
CHATS: string;
|
|
4002
|
+
LAST_SEEN: string;
|
|
4003
|
+
AT: string;
|
|
3987
4004
|
SEARCH_EMOJI: string;
|
|
3988
4005
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
3989
4006
|
GROUPS: string;
|
|
3990
4007
|
SHARED: string;
|
|
3991
4008
|
SOUND_MANAGER: string;
|
|
4009
|
+
WRONG_FILE_TYPE: string;
|
|
3992
4010
|
THEME: string;
|
|
3993
4011
|
DELETE_MSG_TEXT: string;
|
|
3994
4012
|
LOCALIZE: string;
|
|
@@ -4029,11 +4047,7 @@ declare class CometChatLocalize {
|
|
|
4029
4047
|
DELETE_CONVERSATION: string;
|
|
4030
4048
|
ADD_TO_CHAT: string;
|
|
4031
4049
|
MORE: string;
|
|
4032
|
-
COPY: string;
|
|
4033
|
-
* Initializes localization with the specified language and custom resources.
|
|
4034
|
-
* @param {string} [language=""] - The language code to set.
|
|
4035
|
-
* @param {object} [resources={}] - Custom translations to override defaults.
|
|
4036
|
-
*/
|
|
4050
|
+
COPY: string;
|
|
4037
4051
|
VOICE_RECORDING: string;
|
|
4038
4052
|
MESSAGE_IMAGE: string;
|
|
4039
4053
|
MESSAGE_FILE: string;
|
|
@@ -4045,7 +4059,7 @@ declare class CometChatLocalize {
|
|
|
4045
4059
|
MEETING_SCHEDULED: string;
|
|
4046
4060
|
SOMETHING_WRONG: string;
|
|
4047
4061
|
MEETING_SLOT_BOOK: string;
|
|
4048
|
-
MEETING_BOOK_NEW_SLOT: string;
|
|
4062
|
+
MEETING_BOOK_NEW_SLOT: string; /**Override resources */
|
|
4049
4063
|
MEETING_NO_SLOTS_AVAILABLE: string;
|
|
4050
4064
|
MEETING_TRY_DIFFERENT_DATE: string;
|
|
4051
4065
|
NO_TIME_SLOTS_AVAILABLE: string;
|
|
@@ -4096,10 +4110,6 @@ declare class CometChatLocalize {
|
|
|
4096
4110
|
SHARED_FILE: string;
|
|
4097
4111
|
VIDEO_CALL: string;
|
|
4098
4112
|
AUDIO_CALL: string;
|
|
4099
|
-
/**
|
|
4100
|
-
* Returns the active language. Return fallback language if translation is not available for the active language
|
|
4101
|
-
* @returns {String} active language
|
|
4102
|
-
*/
|
|
4103
4113
|
LOADING: string;
|
|
4104
4114
|
REPLY: string;
|
|
4105
4115
|
REPLIES: string;
|
|
@@ -4118,11 +4128,7 @@ declare class CometChatLocalize {
|
|
|
4118
4128
|
THIS_MESSAGE_DELETED: string;
|
|
4119
4129
|
MESSAGE_IS_DELETED: string;
|
|
4120
4130
|
VIEW_ON_YOUTUBE: string;
|
|
4121
|
-
SEARCH: string;
|
|
4122
|
-
* Accepts the string to localize and return the localized string
|
|
4123
|
-
* @param {String} str
|
|
4124
|
-
* @returns {String} localized str
|
|
4125
|
-
*/
|
|
4131
|
+
SEARCH: string;
|
|
4126
4132
|
ERROR: string;
|
|
4127
4133
|
ERROR_TEXT: string;
|
|
4128
4134
|
NO_GROUPS_FOUND: string;
|
|
@@ -4186,7 +4192,7 @@ declare class CometChatLocalize {
|
|
|
4186
4192
|
GENERATING_ICEBREAKERS: string;
|
|
4187
4193
|
EMOJI: string;
|
|
4188
4194
|
NO_REPLIES_FOUND: string;
|
|
4189
|
-
|
|
4195
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
4190
4196
|
NO_MESSAGES_FOUND: string;
|
|
4191
4197
|
THREAD: string;
|
|
4192
4198
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -4376,6 +4382,8 @@ declare class CometChatLocalize {
|
|
|
4376
4382
|
CALL_UNANSWERED: string;
|
|
4377
4383
|
INFO: string;
|
|
4378
4384
|
REACT: string;
|
|
4385
|
+
LAST_SEEN: string;
|
|
4386
|
+
AT: string;
|
|
4379
4387
|
EDIT: string;
|
|
4380
4388
|
MESSAGE_PRIVATELY: string;
|
|
4381
4389
|
TRANSLATE: string;
|
|
@@ -4397,6 +4405,7 @@ declare class CometChatLocalize {
|
|
|
4397
4405
|
CONVERSATION_LIST_ITEM: string;
|
|
4398
4406
|
DATA_ITEM: string;
|
|
4399
4407
|
STATUS_INDICATOR: string;
|
|
4408
|
+
WRONG_FILE_TYPE: string;
|
|
4400
4409
|
BADGE_COUNT: string;
|
|
4401
4410
|
MESSAGE_RECEIPT: string;
|
|
4402
4411
|
MESSAGE: string;
|
|
@@ -4407,7 +4416,11 @@ declare class CometChatLocalize {
|
|
|
4407
4416
|
CONVERSATIONS: string;
|
|
4408
4417
|
CONVERSATION_LIST: string;
|
|
4409
4418
|
MESSAGES: string;
|
|
4410
|
-
MESSAGE_HEADER: string;
|
|
4419
|
+
MESSAGE_HEADER: string; /**
|
|
4420
|
+
* Initializes localization with the specified language and custom resources.
|
|
4421
|
+
* @param {string} [language=""] - The language code to set.
|
|
4422
|
+
* @param {object} [resources={}] - Custom translations to override defaults.
|
|
4423
|
+
*/
|
|
4411
4424
|
MESSAGE_LIST: string;
|
|
4412
4425
|
MESSAGE_COMPOSER: string;
|
|
4413
4426
|
USERS_WITH_MESSAGES: string;
|
|
@@ -4456,10 +4469,7 @@ declare class CometChatLocalize {
|
|
|
4456
4469
|
CUSTOM_MESSAGE_POLL: string;
|
|
4457
4470
|
CUSTOM_MESSAGE_STICKER: string;
|
|
4458
4471
|
CUSTOM_MESSAGE_DOCUMENT: string;
|
|
4459
|
-
CUSTOM_MESSAGE_WHITEBOARD: string;
|
|
4460
|
-
* Set the active language
|
|
4461
|
-
* @param {String} language
|
|
4462
|
-
*/
|
|
4472
|
+
CUSTOM_MESSAGE_WHITEBOARD: string;
|
|
4463
4473
|
ONLINE: string;
|
|
4464
4474
|
ADMINISTRATOR: string;
|
|
4465
4475
|
ADMIN: string;
|
|
@@ -4490,7 +4500,10 @@ declare class CometChatLocalize {
|
|
|
4490
4500
|
SEND_MESSAGE: string;
|
|
4491
4501
|
UNBLOCK_USER: string;
|
|
4492
4502
|
BLOCK_USER: string;
|
|
4493
|
-
DELETE_AND_EXIT: string;
|
|
4503
|
+
DELETE_AND_EXIT: string; /**
|
|
4504
|
+
* Returns true if the active language is rtl otherwise return false
|
|
4505
|
+
* @returns {Boolean} whether the language is rtl or not
|
|
4506
|
+
*/
|
|
4494
4507
|
LEAVE_GROUP: string;
|
|
4495
4508
|
CREATE_GROUP: string;
|
|
4496
4509
|
SHARED_MEDIA: string;
|
|
@@ -4579,7 +4592,7 @@ declare class CometChatLocalize {
|
|
|
4579
4592
|
GENERATING_ICEBREAKERS: string;
|
|
4580
4593
|
EMOJI: string;
|
|
4581
4594
|
NO_REPLIES_FOUND: string;
|
|
4582
|
-
|
|
4595
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
4583
4596
|
NO_MESSAGES_FOUND: string;
|
|
4584
4597
|
THREAD: string;
|
|
4585
4598
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -4778,11 +4791,14 @@ declare class CometChatLocalize {
|
|
|
4778
4791
|
MESSAGE_PRIVATELY: string;
|
|
4779
4792
|
TRANSLATE: string;
|
|
4780
4793
|
USERS: string;
|
|
4794
|
+
LAST_SEEN: string;
|
|
4795
|
+
AT: string;
|
|
4781
4796
|
CHATS: string;
|
|
4782
4797
|
SEARCH_EMOJI: string;
|
|
4783
4798
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
4784
4799
|
GROUPS: string;
|
|
4785
4800
|
SHARED: string;
|
|
4801
|
+
WRONG_FILE_TYPE: string;
|
|
4786
4802
|
SOUND_MANAGER: string;
|
|
4787
4803
|
THEME: string;
|
|
4788
4804
|
DELETE_MSG_TEXT: string;
|
|
@@ -4834,7 +4850,10 @@ declare class CometChatLocalize {
|
|
|
4834
4850
|
SELECT_A_DATE: string;
|
|
4835
4851
|
TIME_ZONE: string;
|
|
4836
4852
|
MEETING_SCHEDULED: string;
|
|
4837
|
-
SOMETHING_WRONG: string;
|
|
4853
|
+
SOMETHING_WRONG: string; /**
|
|
4854
|
+
* Returns the active language. Return fallback language if translation is not available for the active language
|
|
4855
|
+
* @returns {String} active language
|
|
4856
|
+
*/
|
|
4838
4857
|
MEETING_SLOT_BOOK: string;
|
|
4839
4858
|
MEETING_BOOK_NEW_SLOT: string;
|
|
4840
4859
|
MEETING_NO_SLOTS_AVAILABLE: string;
|
|
@@ -4969,7 +4988,7 @@ declare class CometChatLocalize {
|
|
|
4969
4988
|
GENERATING_ICEBREAKERS: string;
|
|
4970
4989
|
EMOJI: string;
|
|
4971
4990
|
NO_REPLIES_FOUND: string;
|
|
4972
|
-
|
|
4991
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
4973
4992
|
NO_MESSAGES_FOUND: string;
|
|
4974
4993
|
THREAD: string;
|
|
4975
4994
|
COLLABORATIVE_DOCUMENT: string;
|
|
@@ -5169,11 +5188,14 @@ declare class CometChatLocalize {
|
|
|
5169
5188
|
MESSAGE_DELETED_TEXT: string;
|
|
5170
5189
|
MESSAGE_TRANSLATED: string;
|
|
5171
5190
|
CHATS: string;
|
|
5191
|
+
LAST_SEEN: string;
|
|
5192
|
+
AT: string;
|
|
5172
5193
|
SEARCH_EMOJI: string;
|
|
5173
5194
|
WOULD__YOU_LIKE_TO_DELETE_THIS_CONVERSATION: string;
|
|
5174
5195
|
GROUPS: string;
|
|
5175
5196
|
SHARED: string;
|
|
5176
5197
|
SOUND_MANAGER: string;
|
|
5198
|
+
WRONG_FILE_TYPE: string;
|
|
5177
5199
|
THEME: string;
|
|
5178
5200
|
DELETE_MSG_TEXT: string;
|
|
5179
5201
|
LOCALIZE: string;
|
|
@@ -5222,10 +5244,6 @@ declare class CometChatLocalize {
|
|
|
5222
5244
|
MESSAGE_AUDIO: string;
|
|
5223
5245
|
CUSTOM_MESSAGE: string;
|
|
5224
5246
|
SELECT_A_DATE: string;
|
|
5225
|
-
/**
|
|
5226
|
-
* Returns the language code
|
|
5227
|
-
* @returns {String} language code i.e. en
|
|
5228
|
-
*/
|
|
5229
5247
|
TIME_ZONE: string;
|
|
5230
5248
|
MEETING_SCHEDULED: string;
|
|
5231
5249
|
SOMETHING_WRONG: string;
|
|
@@ -5242,10 +5260,6 @@ declare class CometChatLocalize {
|
|
|
5242
5260
|
MISSED_VIDEO_CALL: string;
|
|
5243
5261
|
CUSTOM_MESSAGE_POLL: string;
|
|
5244
5262
|
CUSTOM_MESSAGE_STICKER: string;
|
|
5245
|
-
/**
|
|
5246
|
-
* Set the active language
|
|
5247
|
-
* @param {String} language
|
|
5248
|
-
*/
|
|
5249
5263
|
CUSTOM_MESSAGE_DOCUMENT: string;
|
|
5250
5264
|
CUSTOM_MESSAGE_WHITEBOARD: string;
|
|
5251
5265
|
ONLINE: string;
|
|
@@ -5367,7 +5381,7 @@ declare class CometChatLocalize {
|
|
|
5367
5381
|
GENERATING_ICEBREAKERS: string;
|
|
5368
5382
|
EMOJI: string;
|
|
5369
5383
|
NO_REPLIES_FOUND: string;
|
|
5370
|
-
|
|
5384
|
+
COMPOSER_PLACEHOLDER_TEXT: string;
|
|
5371
5385
|
NO_MESSAGES_FOUND: string;
|
|
5372
5386
|
THREAD: string;
|
|
5373
5387
|
COLLABORATIVE_DOCUMENT: string;
|