stream-chat-react-native-core 5.38.1 → 5.39.0-beta.1
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/lib/commonjs/components/Channel/Channel.js +58 -25
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreateThreadContext.js +33 -21
- package/lib/commonjs/components/Channel/hooks/useCreateThreadContext.js.map +1 -1
- package/lib/commonjs/components/Chat/Chat.js +7 -0
- package/lib/commonjs/components/Chat/Chat.js.map +1 -1
- package/lib/commonjs/components/Indicators/EmptyStateIndicator.js +14 -0
- package/lib/commonjs/components/Indicators/EmptyStateIndicator.js.map +1 -1
- package/lib/commonjs/components/Indicators/LoadingIndicator.js +4 -0
- package/lib/commonjs/components/Indicators/LoadingIndicator.js.map +1 -1
- package/lib/commonjs/components/Message/hooks/useProcessReactions.js +13 -7
- package/lib/commonjs/components/Message/hooks/useProcessReactions.js.map +1 -1
- package/lib/commonjs/components/MessageList/InlineLoadingMoreRecentThreadIndicator.js +52 -0
- package/lib/commonjs/components/MessageList/InlineLoadingMoreRecentThreadIndicator.js.map +1 -0
- package/lib/commonjs/components/MessageList/MessageList.js +14 -6
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/components/Thread/Thread.js +12 -5
- package/lib/commonjs/components/Thread/Thread.js.map +1 -1
- package/lib/commonjs/components/Thread/components/ThreadFooterComponent.js +41 -18
- package/lib/commonjs/components/Thread/components/ThreadFooterComponent.js.map +1 -1
- package/lib/commonjs/components/ThreadList/ThreadList.js +132 -0
- package/lib/commonjs/components/ThreadList/ThreadList.js.map +1 -0
- package/lib/commonjs/components/ThreadList/ThreadListItem.js +246 -0
- package/lib/commonjs/components/ThreadList/ThreadListItem.js.map +1 -0
- package/lib/commonjs/components/ThreadList/ThreadListUnreadBanner.js +66 -0
- package/lib/commonjs/components/ThreadList/ThreadListUnreadBanner.js.map +1 -0
- package/lib/commonjs/components/index.js +11 -11
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js +19 -0
- package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/commonjs/contexts/threadContext/ThreadContext.js.map +1 -1
- package/lib/commonjs/contexts/threadsContext/ThreadListItemContext.js +28 -0
- package/lib/commonjs/contexts/threadsContext/ThreadListItemContext.js.map +1 -0
- package/lib/commonjs/contexts/threadsContext/ThreadsContext.js +33 -0
- package/lib/commonjs/contexts/threadsContext/ThreadsContext.js.map +1 -0
- package/lib/commonjs/hooks/index.js +11 -0
- package/lib/commonjs/hooks/index.js.map +1 -1
- package/lib/commonjs/hooks/useStateStore.js +23 -0
- package/lib/commonjs/hooks/useStateStore.js.map +1 -0
- package/lib/commonjs/i18n/en.json +7 -0
- package/lib/commonjs/i18n/es.json +7 -0
- package/lib/commonjs/i18n/fr.json +7 -0
- package/lib/commonjs/i18n/he.json +7 -0
- package/lib/commonjs/i18n/hi.json +7 -0
- package/lib/commonjs/i18n/it.json +7 -0
- package/lib/commonjs/i18n/ja.json +7 -0
- package/lib/commonjs/i18n/ko.json +7 -0
- package/lib/commonjs/i18n/nl.json +7 -0
- package/lib/commonjs/i18n/pt-br.json +7 -0
- package/lib/commonjs/i18n/ru.json +7 -0
- package/lib/commonjs/i18n/tr.json +7 -0
- package/lib/commonjs/icons/MessageBubble.js +19 -0
- package/lib/commonjs/icons/MessageBubble.js.map +1 -0
- package/lib/commonjs/icons/MessageBubbleEmpty.js +19 -0
- package/lib/commonjs/icons/MessageBubbleEmpty.js.map +1 -0
- package/lib/commonjs/icons/Reload.js +19 -0
- package/lib/commonjs/icons/Reload.js.map +1 -0
- package/lib/commonjs/icons/index.js +33 -0
- package/lib/commonjs/icons/index.js.map +1 -1
- package/lib/commonjs/store/mappers/mapDateTimeToStorable.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +58 -25
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Channel/hooks/useCreateThreadContext.js +33 -21
- package/lib/module/components/Channel/hooks/useCreateThreadContext.js.map +1 -1
- package/lib/module/components/Chat/Chat.js +7 -0
- package/lib/module/components/Chat/Chat.js.map +1 -1
- package/lib/module/components/Indicators/EmptyStateIndicator.js +14 -0
- package/lib/module/components/Indicators/EmptyStateIndicator.js.map +1 -1
- package/lib/module/components/Indicators/LoadingIndicator.js +4 -0
- package/lib/module/components/Indicators/LoadingIndicator.js.map +1 -1
- package/lib/module/components/Message/hooks/useProcessReactions.js +13 -7
- package/lib/module/components/Message/hooks/useProcessReactions.js.map +1 -1
- package/lib/module/components/MessageList/InlineLoadingMoreRecentThreadIndicator.js +52 -0
- package/lib/module/components/MessageList/InlineLoadingMoreRecentThreadIndicator.js.map +1 -0
- package/lib/module/components/MessageList/MessageList.js +14 -6
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/components/Thread/Thread.js +12 -5
- package/lib/module/components/Thread/Thread.js.map +1 -1
- package/lib/module/components/Thread/components/ThreadFooterComponent.js +41 -18
- package/lib/module/components/Thread/components/ThreadFooterComponent.js.map +1 -1
- package/lib/module/components/ThreadList/ThreadList.js +132 -0
- package/lib/module/components/ThreadList/ThreadList.js.map +1 -0
- package/lib/module/components/ThreadList/ThreadListItem.js +246 -0
- package/lib/module/components/ThreadList/ThreadListItem.js.map +1 -0
- package/lib/module/components/ThreadList/ThreadListUnreadBanner.js +66 -0
- package/lib/module/components/ThreadList/ThreadListUnreadBanner.js.map +1 -0
- package/lib/module/components/index.js +11 -11
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/contexts/themeContext/utils/theme.js +19 -0
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/contexts/threadContext/ThreadContext.js.map +1 -1
- package/lib/module/contexts/threadsContext/ThreadListItemContext.js +28 -0
- package/lib/module/contexts/threadsContext/ThreadListItemContext.js.map +1 -0
- package/lib/module/contexts/threadsContext/ThreadsContext.js +33 -0
- package/lib/module/contexts/threadsContext/ThreadsContext.js.map +1 -0
- package/lib/module/hooks/index.js +11 -0
- package/lib/module/hooks/index.js.map +1 -1
- package/lib/module/hooks/useStateStore.js +23 -0
- package/lib/module/hooks/useStateStore.js.map +1 -0
- package/lib/module/i18n/en.json +7 -0
- package/lib/module/i18n/es.json +7 -0
- package/lib/module/i18n/fr.json +7 -0
- package/lib/module/i18n/he.json +7 -0
- package/lib/module/i18n/hi.json +7 -0
- package/lib/module/i18n/it.json +7 -0
- package/lib/module/i18n/ja.json +7 -0
- package/lib/module/i18n/ko.json +7 -0
- package/lib/module/i18n/nl.json +7 -0
- package/lib/module/i18n/pt-br.json +7 -0
- package/lib/module/i18n/ru.json +7 -0
- package/lib/module/i18n/tr.json +7 -0
- package/lib/module/icons/MessageBubble.js +19 -0
- package/lib/module/icons/MessageBubble.js.map +1 -0
- package/lib/module/icons/MessageBubbleEmpty.js +19 -0
- package/lib/module/icons/MessageBubbleEmpty.js.map +1 -0
- package/lib/module/icons/Reload.js +19 -0
- package/lib/module/icons/Reload.js.map +1 -0
- package/lib/module/icons/index.js +33 -0
- package/lib/module/icons/index.js.map +1 -1
- package/lib/module/store/mappers/mapDateTimeToStorable.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/AttachmentPicker/AttachmentPicker.d.ts +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts +3 -2
- package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateThreadContext.d.ts +34 -1
- package/lib/typescript/components/Channel/hooks/useCreateThreadContext.d.ts.map +1 -1
- package/lib/typescript/components/Chat/Chat.d.ts.map +1 -1
- package/lib/typescript/components/Indicators/EmptyStateIndicator.d.ts +1 -1
- package/lib/typescript/components/Indicators/EmptyStateIndicator.d.ts.map +1 -1
- package/lib/typescript/components/Indicators/LoadingIndicator.d.ts +1 -1
- package/lib/typescript/components/Indicators/LoadingIndicator.d.ts.map +1 -1
- package/lib/typescript/components/Message/hooks/useProcessReactions.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/InlineLoadingMoreRecentThreadIndicator.d.ts +8 -0
- package/lib/typescript/components/MessageList/InlineLoadingMoreRecentThreadIndicator.d.ts.map +1 -0
- package/lib/typescript/components/MessageList/MessageList.d.ts +1 -1
- package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
- package/lib/typescript/components/Thread/Thread.d.ts +1 -1
- package/lib/typescript/components/Thread/Thread.d.ts.map +1 -1
- package/lib/typescript/components/Thread/components/ThreadFooterComponent.d.ts +1 -0
- package/lib/typescript/components/Thread/components/ThreadFooterComponent.d.ts.map +1 -1
- package/lib/typescript/components/ThreadList/ThreadList.d.ts +11 -0
- package/lib/typescript/components/ThreadList/ThreadList.d.ts.map +1 -0
- package/lib/typescript/components/ThreadList/ThreadListItem.d.ts +16 -0
- package/lib/typescript/components/ThreadList/ThreadListItem.d.ts.map +1 -0
- package/lib/typescript/components/ThreadList/ThreadListUnreadBanner.d.ts +3 -0
- package/lib/typescript/components/ThreadList/ThreadListUnreadBanner.d.ts.map +1 -0
- package/lib/typescript/components/index.d.ts +1 -1
- package/lib/typescript/components/index.d.ts.map +1 -1
- package/lib/typescript/contexts/attachmentPickerContext/AttachmentPickerContext.d.ts +1 -1
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts +1 -1
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts +1 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +19 -0
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
- package/lib/typescript/contexts/threadContext/ThreadContext.d.ts +11 -2
- package/lib/typescript/contexts/threadContext/ThreadContext.d.ts.map +1 -1
- package/lib/typescript/contexts/threadsContext/ThreadListItemContext.d.ts +19 -0
- package/lib/typescript/contexts/threadsContext/ThreadListItemContext.d.ts.map +1 -0
- package/lib/typescript/contexts/threadsContext/ThreadsContext.d.ts +25 -0
- package/lib/typescript/contexts/threadsContext/ThreadsContext.d.ts.map +1 -0
- package/lib/typescript/hooks/index.d.ts +1 -0
- package/lib/typescript/hooks/index.d.ts.map +1 -1
- package/lib/typescript/hooks/useStateStore.d.ts +4 -0
- package/lib/typescript/hooks/useStateStore.d.ts.map +1 -0
- package/lib/typescript/i18n/en.json +7 -0
- package/lib/typescript/i18n/es.json +7 -0
- package/lib/typescript/i18n/fr.json +7 -0
- package/lib/typescript/i18n/he.json +7 -0
- package/lib/typescript/i18n/hi.json +7 -0
- package/lib/typescript/i18n/it.json +7 -0
- package/lib/typescript/i18n/ja.json +7 -0
- package/lib/typescript/i18n/ko.json +7 -0
- package/lib/typescript/i18n/nl.json +7 -0
- package/lib/typescript/i18n/pt-br.json +7 -0
- package/lib/typescript/i18n/ru.json +7 -0
- package/lib/typescript/i18n/tr.json +7 -0
- package/lib/typescript/icons/MessageBubble.d.ts +4 -0
- package/lib/typescript/icons/MessageBubble.d.ts.map +1 -0
- package/lib/typescript/icons/MessageBubbleEmpty.d.ts +4 -0
- package/lib/typescript/icons/MessageBubbleEmpty.d.ts.map +1 -0
- package/lib/typescript/icons/Reload.d.ts +4 -0
- package/lib/typescript/icons/Reload.d.ts.map +1 -0
- package/lib/typescript/icons/index.d.ts +3 -0
- package/lib/typescript/icons/index.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapDateTimeToStorable.d.ts +1 -1
- package/lib/typescript/store/mappers/mapDateTimeToStorable.d.ts.map +1 -1
- package/lib/typescript/utils/i18n/Streami18n.d.ts +7 -0
- package/lib/typescript/utils/i18n/Streami18n.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/Channel/Channel.tsx +54 -20
- package/src/components/Channel/hooks/useCreateThreadContext.ts +36 -31
- package/src/components/Chat/Chat.tsx +10 -0
- package/src/components/Indicators/EmptyStateIndicator.tsx +9 -2
- package/src/components/Indicators/LoadingIndicator.tsx +3 -1
- package/src/components/Message/hooks/useProcessReactions.ts +25 -4
- package/src/components/MessageList/InlineLoadingMoreRecentThreadIndicator.tsx +64 -0
- package/src/components/MessageList/MessageList.tsx +23 -9
- package/src/components/Thread/Thread.tsx +18 -9
- package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +6 -0
- package/src/components/Thread/components/ThreadFooterComponent.tsx +28 -2
- package/src/components/ThreadList/ThreadList.tsx +118 -0
- package/src/components/ThreadList/ThreadListItem.tsx +268 -0
- package/src/components/ThreadList/ThreadListUnreadBanner.tsx +52 -0
- package/src/components/index.ts +1 -1
- package/src/contexts/themeContext/utils/theme.ts +36 -0
- package/src/contexts/threadContext/ThreadContext.tsx +9 -2
- package/src/contexts/threadsContext/ThreadListItemContext.tsx +41 -0
- package/src/contexts/threadsContext/ThreadsContext.tsx +62 -0
- package/src/hooks/index.ts +1 -0
- package/src/hooks/useStateStore.ts +31 -0
- package/src/i18n/en.json +7 -0
- package/src/i18n/es.json +7 -0
- package/src/i18n/fr.json +7 -0
- package/src/i18n/he.json +7 -0
- package/src/i18n/hi.json +7 -0
- package/src/i18n/it.json +7 -0
- package/src/i18n/ja.json +7 -0
- package/src/i18n/ko.json +7 -0
- package/src/i18n/nl.json +7 -0
- package/src/i18n/pt-br.json +7 -0
- package/src/i18n/ru.json +7 -0
- package/src/i18n/tr.json +7 -0
- package/src/icons/MessageBubble.tsx +12 -0
- package/src/icons/MessageBubbleEmpty.tsx +12 -0
- package/src/icons/Reload.tsx +12 -0
- package/src/icons/index.ts +3 -0
- package/src/store/mappers/mapDateTimeToStorable.ts +1 -1
- package/src/version.json +1 -1
- package/lib/commonjs/components/MessageList/InlineLoadingMoreThreadIndicator.js +0 -52
- package/lib/commonjs/components/MessageList/InlineLoadingMoreThreadIndicator.js.map +0 -1
- package/lib/module/components/MessageList/InlineLoadingMoreThreadIndicator.js +0 -52
- package/lib/module/components/MessageList/InlineLoadingMoreThreadIndicator.js.map +0 -1
- package/lib/typescript/components/MessageList/InlineLoadingMoreThreadIndicator.d.ts +0 -8
- package/lib/typescript/components/MessageList/InlineLoadingMoreThreadIndicator.d.ts.map +0 -1
- package/src/components/MessageList/InlineLoadingMoreThreadIndicator.tsx +0 -64
package/src/i18n/fr.json
CHANGED
|
@@ -38,12 +38,14 @@
|
|
|
38
38
|
"Links are disabled": "Links are disabled",
|
|
39
39
|
"Loading channels...": "Chargement des canaux...",
|
|
40
40
|
"Loading messages...": "Chargement des messages...",
|
|
41
|
+
"Loading threads...": "Chargement des fils...",
|
|
41
42
|
"Loading...": "Chargement...",
|
|
42
43
|
"Message Reactions": "Réactions aux messages",
|
|
43
44
|
"Message deleted": "Message supprimé",
|
|
44
45
|
"Message flagged": "Message signalé",
|
|
45
46
|
"Mute User": "Utilisateur muet",
|
|
46
47
|
"No chats here yet…": "Pas de discussions ici pour le moment…",
|
|
48
|
+
"No threads here yet": "Aucun fil ici pour le moment",
|
|
47
49
|
"Not supported": "Non pris en charge",
|
|
48
50
|
"Nothing yet...": "Aucun message...",
|
|
49
51
|
"Ok": "Ok",
|
|
@@ -67,6 +69,8 @@
|
|
|
67
69
|
"Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
|
|
68
70
|
"Slow mode ON": "Mode lent activé",
|
|
69
71
|
"The message has been reported to a moderator.": "Le message a été signalé à un modérateur.",
|
|
72
|
+
"The source message was deleted": "Le message source a été supprimé",
|
|
73
|
+
"This reply was deleted": "Cette réponse a été supprimée",
|
|
70
74
|
"Thread Reply": "Réponse à la discussion",
|
|
71
75
|
"Unban User": "Débannir Utilisateur",
|
|
72
76
|
"Unblock User": "Débloquer Utilisateur",
|
|
@@ -75,8 +79,10 @@
|
|
|
75
79
|
"Unpin from Conversation": "Décrocher de la conversation",
|
|
76
80
|
"Unread Messages": "Messages non lus",
|
|
77
81
|
"Video": "Vidéo",
|
|
82
|
+
"Voice message": "Message vocal",
|
|
78
83
|
"You": "Toi",
|
|
79
84
|
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
85
|
+
"replied to": "a répondu à",
|
|
80
86
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Hier]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Demain]\", \"nextWeek\":\"dddd [à] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
81
87
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
88
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -84,6 +90,7 @@
|
|
|
84
90
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
85
91
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
86
92
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
93
|
+
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Hier]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Demain]\", \"nextWeek\":\"dddd [à] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
87
94
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
|
|
88
95
|
"{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
|
|
89
96
|
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
package/src/i18n/he.json
CHANGED
|
@@ -38,12 +38,14 @@
|
|
|
38
38
|
"Links are disabled": "הקישורים מבוטלים",
|
|
39
39
|
"Loading channels...": "השיחות בטעינה...",
|
|
40
40
|
"Loading messages...": "ההודעות בטעינה..",
|
|
41
|
+
"Loading threads...": "טוען שרשורים...",
|
|
41
42
|
"Loading...": "טוען...",
|
|
42
43
|
"Message Reactions": "תגובות להודעה",
|
|
43
44
|
"Message deleted": "ההודעה נמחקה",
|
|
44
45
|
"Message flagged": "ההודעה סומנה",
|
|
45
46
|
"Mute User": "השתק/י משתמש",
|
|
46
47
|
"No chats here yet…": "אין צ'אטים כאן עדיין...",
|
|
48
|
+
"No threads here yet": "אין שרשורים כאן עדיין",
|
|
47
49
|
"Not supported": "לא נתמך",
|
|
48
50
|
"Nothing yet...": "אינפורמציה תתקבל בהמשך...",
|
|
49
51
|
"Ok": "אוקיי",
|
|
@@ -67,6 +69,8 @@
|
|
|
67
69
|
"Sending links is not allowed in this conversation": "שליחת קישורים אינה מותרת בשיחה זו",
|
|
68
70
|
"Slow mode ON": "מצב איטי מופעל",
|
|
69
71
|
"The message has been reported to a moderator.": "ההודעה דווחה למנהל",
|
|
72
|
+
"The source message was deleted": "ההודעה המקורית נמחקה",
|
|
73
|
+
"This reply was deleted": "התגובה הזו נמחקה",
|
|
70
74
|
"Thread Reply": "הגב/י בשרשור",
|
|
71
75
|
"Unban User": "לבטל חסימת משתמש",
|
|
72
76
|
"Unblock User": "בטל/י חסימת משתמש",
|
|
@@ -75,8 +79,10 @@
|
|
|
75
79
|
"Unpin from Conversation": "בטל/י הצמדה לשיחה",
|
|
76
80
|
"Unread Messages": "הודעות שטרם נקרו",
|
|
77
81
|
"Video": "וִידֵאוֹ",
|
|
82
|
+
"Voice message": "הודעת קול",
|
|
78
83
|
"You": "את/ה",
|
|
79
84
|
"You can't send messages in this channel": "את/ב לא יכול/ה לשלוח הודעות בשיחה זו",
|
|
85
|
+
"replied to": "הגיב ל",
|
|
80
86
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[אתמול]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[מחר]\",\"nextWeek\":\"dddd [בשעה] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
81
87
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
88
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -84,6 +90,7 @@
|
|
|
84
90
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
85
91
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
86
92
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
93
|
+
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[אתמול]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[מחר]\",\"nextWeek\":\"dddd [בשעה] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
87
94
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ו-{{ nonSelfUserLength }} משתמש/ים אחר/ים מקלידים",
|
|
88
95
|
"{{ index }} of {{ photoLength }}": "{{ index }} מתוך {{ photoLength }}",
|
|
89
96
|
"{{ replyCount }} Replies": "{{ replyCount }} תגובות",
|
package/src/i18n/hi.json
CHANGED
|
@@ -38,12 +38,14 @@
|
|
|
38
38
|
"Links are disabled": "लिंक अक्षम हैं",
|
|
39
39
|
"Loading channels...": "चैनल लोड हो रहे हैं...",
|
|
40
40
|
"Loading messages...": "मेसेजस लोड हो रहे हैं...",
|
|
41
|
+
"Loading threads...": "थ्रेड्स लोड हो रहे हैं...",
|
|
41
42
|
"Loading...": "लोड हो रहा है...",
|
|
42
43
|
"Message Reactions": "संदेश प्रतिक्रियाएँ",
|
|
43
44
|
"Message deleted": "मैसेज हटा दिया गया",
|
|
44
45
|
"Message flagged": "संदेश को ध्वजांकित किया गया",
|
|
45
46
|
"Mute User": "उपयोगकर्ता को म्यूट करें",
|
|
46
47
|
"No chats here yet…": "अभी तक यहाँ कोई चैट नहीं है...",
|
|
48
|
+
"No threads here yet": "यहाँ अभी तक कोई थ्रेड्स नहीं हैं",
|
|
47
49
|
"Not supported": "समर्थित नहीं",
|
|
48
50
|
"Nothing yet...": "कोई मैसेज नहीं है...",
|
|
49
51
|
"Ok": "ठीक",
|
|
@@ -67,6 +69,8 @@
|
|
|
67
69
|
"Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
|
|
68
70
|
"Slow mode ON": "स्लो मोड चालू",
|
|
69
71
|
"The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
|
|
72
|
+
"The source message was deleted": "स्रोत संदेश हटा दिया गया है",
|
|
73
|
+
"This reply was deleted": "यह उत्तर हटा दिया गया है",
|
|
70
74
|
"Thread Reply": "धागा जवाब",
|
|
71
75
|
"Unban User": "उपयोगकर्ता को अनब्लॉक करें",
|
|
72
76
|
"Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
|
|
@@ -75,8 +79,10 @@
|
|
|
75
79
|
"Unpin from Conversation": "बातचीत से अनपिन करें",
|
|
76
80
|
"Unread Messages": "अपठित संदेश",
|
|
77
81
|
"Video": "वीडियो",
|
|
82
|
+
"Voice message": "वॉइस संदेश",
|
|
78
83
|
"You": "आप",
|
|
79
84
|
"You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
|
|
85
|
+
"replied to": "को उत्तर दिया",
|
|
80
86
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[कल]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[कल]\",\"nextWeek\":\"dddd [को] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
81
87
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
88
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -84,6 +90,7 @@
|
|
|
84
90
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
85
91
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
86
92
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
93
|
+
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[कल]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[कल]\",\"nextWeek\":\"dddd [को] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
87
94
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
88
95
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
89
96
|
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
package/src/i18n/it.json
CHANGED
|
@@ -38,12 +38,14 @@
|
|
|
38
38
|
"Links are disabled": "I link sono disabilitati",
|
|
39
39
|
"Loading channels...": "Caricamento canali in corso...",
|
|
40
40
|
"Loading messages...": "Caricamento messaggi...",
|
|
41
|
+
"Loading threads...": "Caricamento dei thread...",
|
|
41
42
|
"Loading...": "Caricamento...",
|
|
42
43
|
"Message Reactions": "Reazioni ai Messaggi",
|
|
43
44
|
"Message deleted": "Messaggio cancellato",
|
|
44
45
|
"Message flagged": "Messaggio contrassegnato",
|
|
45
46
|
"Mute User": "Utente Muto",
|
|
46
47
|
"No chats here yet…": "Non ci sono ancora chat qui...",
|
|
48
|
+
"No threads here yet": "Nessun thread qui ancora",
|
|
47
49
|
"Not supported": "non supportato",
|
|
48
50
|
"Nothing yet...": "Ancora niente...",
|
|
49
51
|
"Ok": "Ok",
|
|
@@ -67,6 +69,8 @@
|
|
|
67
69
|
"Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
|
|
68
70
|
"Slow mode ON": "Slowmode attiva",
|
|
69
71
|
"The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
|
|
72
|
+
"The source message was deleted": "Il messaggio originale è stato eliminato",
|
|
73
|
+
"This reply was deleted": "Questa risposta è stata eliminata",
|
|
70
74
|
"Thread Reply": "Rispondi alla Discussione",
|
|
71
75
|
"Unban User": "Sblocca Utente",
|
|
72
76
|
"Unblock User": "Sblocca utente",
|
|
@@ -75,8 +79,10 @@
|
|
|
75
79
|
"Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
|
|
76
80
|
"Unread Messages": "Messaggi non letti",
|
|
77
81
|
"Video": "Video",
|
|
82
|
+
"Voice message": "Messaggio vocale",
|
|
78
83
|
"You": "Tu",
|
|
79
84
|
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
85
|
+
"replied to": "ha risposto a",
|
|
80
86
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
81
87
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
88
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -84,6 +90,7 @@
|
|
|
84
90
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
85
91
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
86
92
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
93
|
+
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
87
94
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
88
95
|
"{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
|
|
89
96
|
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
package/src/i18n/ja.json
CHANGED
|
@@ -38,12 +38,14 @@
|
|
|
38
38
|
"Links are disabled": "リンク機能が無効になっています",
|
|
39
39
|
"Loading channels...": "チャネルを読み込み中。。。",
|
|
40
40
|
"Loading messages...": "メッセージを読み込み中。。。",
|
|
41
|
+
"Loading threads...": "スレッドを読み込み中...",
|
|
41
42
|
"Loading...": "読み込み中。。。",
|
|
42
43
|
"Message Reactions": "メッセージのリアクション",
|
|
43
44
|
"Message deleted": "メッセージが削除されました",
|
|
44
45
|
"Message flagged": "メッセージにフラグが付けられました",
|
|
45
46
|
"Mute User": "ユーザーをミュートする",
|
|
46
47
|
"No chats here yet…": "まだチャットはありません…",
|
|
48
|
+
"No threads here yet": "まだスレッドがありません",
|
|
47
49
|
"Not supported": "サポートしていません",
|
|
48
50
|
"Nothing yet...": "まだ何もありません...",
|
|
49
51
|
"Ok": "確認",
|
|
@@ -67,6 +69,8 @@
|
|
|
67
69
|
"Sending links is not allowed in this conversation": "この会話ではリンク機能を使用できません。",
|
|
68
70
|
"Slow mode ON": "スローモードオン",
|
|
69
71
|
"The message has been reported to a moderator.": "メッセージはモデレーターに報告されました。",
|
|
72
|
+
"The source message was deleted": "元のメッセージが削除されました",
|
|
73
|
+
"This reply was deleted": "この返信は削除されました",
|
|
70
74
|
"Thread Reply": "スレッドの返信",
|
|
71
75
|
"Unban User": "ユーザーの禁止を解除する",
|
|
72
76
|
"Unblock User": "ユーザーのブロックを解除する",
|
|
@@ -75,8 +79,10 @@
|
|
|
75
79
|
"Unpin from Conversation": "会話のピンを外す",
|
|
76
80
|
"Unread Messages": "未読メッセージ",
|
|
77
81
|
"Video": "ビデオ",
|
|
82
|
+
"Voice message": "ボイスメッセージ",
|
|
78
83
|
"You": "あなた",
|
|
79
84
|
"You can't send messages in this channel": "このチャンネルではメッセージを送信できません",
|
|
85
|
+
"replied to": "に返信しました",
|
|
80
86
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
81
87
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
88
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -84,6 +90,7 @@
|
|
|
84
90
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
85
91
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
86
92
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
93
|
+
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
87
94
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }}と{{ nonSelfUserLength }}人がタイピングしています",
|
|
88
95
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
89
96
|
"{{ replyCount }} Replies": "{{ replyCount }}件の返信",
|
package/src/i18n/ko.json
CHANGED
|
@@ -38,12 +38,14 @@
|
|
|
38
38
|
"Links are disabled": "링크 기능이 비활성화되었습니다",
|
|
39
39
|
"Loading channels...": "채널을 로딩 중...",
|
|
40
40
|
"Loading messages...": "메시지를 로딩 중...",
|
|
41
|
+
"Loading threads...": "스레드 로딩 중...",
|
|
41
42
|
"Loading...": "로딩 중...",
|
|
42
43
|
"Message Reactions": "메시지의 리액션",
|
|
43
44
|
"Message deleted": "메시지가 삭제되었습니다.",
|
|
44
45
|
"Message flagged": "메시지에 플래그가 지정되었습니다",
|
|
45
46
|
"Mute User": "사용자를 음소거",
|
|
46
47
|
"No chats here yet…": "아직 여기에 채팅이 없어요…",
|
|
48
|
+
"No threads here yet": "아직 스레드가 없습니다",
|
|
47
49
|
"Not supported": "지원하지 않습니다",
|
|
48
50
|
"Nothing yet...": "아직 아무것도...",
|
|
49
51
|
"Ok": "확인",
|
|
@@ -67,6 +69,8 @@
|
|
|
67
69
|
"Sending links is not allowed in this conversation": "이 대화에서는 링크 기능을 사용할 수 없습니다",
|
|
68
70
|
"Slow mode ON": "슬로모드 켜짐",
|
|
69
71
|
"The message has been reported to a moderator.": "메시지는 운영자에보고되었습니다.",
|
|
72
|
+
"The source message was deleted": "원본 메시지가 삭제되었습니다",
|
|
73
|
+
"This reply was deleted": "이 답글은 삭제되었습니다",
|
|
70
74
|
"Thread Reply": "스레드\u3000답장",
|
|
71
75
|
"Unban User": "사용자 차단 해제",
|
|
72
76
|
"Unblock User": "사용자 차단 해제",
|
|
@@ -75,8 +79,10 @@
|
|
|
75
79
|
"Unpin from Conversation": "대화의 핀을 분리합니다",
|
|
76
80
|
"Unread Messages": "읽지 않은 메시지",
|
|
77
81
|
"Video": "동영상",
|
|
82
|
+
"Voice message": "음성 메시지",
|
|
78
83
|
"You": "당신",
|
|
79
84
|
"You can't send messages in this channel": "이 채널에서는 메세지를 전송할 수 없습니다",
|
|
85
|
+
"replied to": "에 답장했습니다",
|
|
80
86
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
81
87
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
88
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -84,6 +90,7 @@
|
|
|
84
90
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
85
91
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
86
92
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
93
|
+
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
87
94
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} 외 {{ nonSelfUserLength }}명이 입력 중입니다",
|
|
88
95
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
89
96
|
"{{ replyCount }} Replies": "{{ replyCount }} 답글",
|
package/src/i18n/nl.json
CHANGED
|
@@ -38,12 +38,14 @@
|
|
|
38
38
|
"Links are disabled": "Het versturen van links staat uit",
|
|
39
39
|
"Loading channels...": "Kanalen aan het laden...",
|
|
40
40
|
"Loading messages...": "Berichten aan het laden...",
|
|
41
|
+
"Loading threads...": "Threads laden...",
|
|
41
42
|
"Loading...": "Aan het laden...",
|
|
42
43
|
"Message Reactions": "Bericht Reacties",
|
|
43
44
|
"Message deleted": "Bericht verwijderd",
|
|
44
45
|
"Message flagged": "Bericht gemarkeerd",
|
|
45
46
|
"Mute User": "Gebruiker dempen",
|
|
46
47
|
"No chats here yet…": "Nog geen chats hier…",
|
|
48
|
+
"No threads here yet": "Hier zijn nog geen threads",
|
|
47
49
|
"Not supported": "niet ondersteund",
|
|
48
50
|
"Nothing yet...": "Nog niets...",
|
|
49
51
|
"Ok": "Oké",
|
|
@@ -67,6 +69,8 @@
|
|
|
67
69
|
"Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
|
|
68
70
|
"Slow mode ON": "Langzame modus aan",
|
|
69
71
|
"The message has been reported to a moderator.": "Het bericht is gerapporteerd aan een moderator.",
|
|
72
|
+
"The source message was deleted": "Het oorspronkelijke bericht is verwijderd",
|
|
73
|
+
"This reply was deleted": "Deze reactie is verwijderd",
|
|
70
74
|
"Thread Reply": "Discussie beantwoorden",
|
|
71
75
|
"Unban User": "Gebruiker Deblokeren",
|
|
72
76
|
"Unblock User": "Deblokkeer gebruiker",
|
|
@@ -75,8 +79,10 @@
|
|
|
75
79
|
"Unpin from Conversation": "Losmaken van gesprek",
|
|
76
80
|
"Unread Messages": "Ongelezen Berichten",
|
|
77
81
|
"Video": "Video",
|
|
82
|
+
"Voice message": "Spraakbericht",
|
|
78
83
|
"You": "U",
|
|
79
84
|
"You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
|
|
85
|
+
"replied to": "reageerde op",
|
|
80
86
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Gisteren]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Morgen]\",\"nextWeek\":\"dddd [om] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
81
87
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
88
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -84,6 +90,7 @@
|
|
|
84
90
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
85
91
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
86
92
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
93
|
+
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Gisteren]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Morgen]\",\"nextWeek\":\"dddd [om] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
87
94
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
|
|
88
95
|
"{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
|
|
89
96
|
"{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
|
package/src/i18n/pt-br.json
CHANGED
|
@@ -38,12 +38,14 @@
|
|
|
38
38
|
"Links are disabled": "Links estão desabilitados",
|
|
39
39
|
"Loading channels...": "Carregando canais...",
|
|
40
40
|
"Loading messages...": "Carregando mensagens...",
|
|
41
|
+
"Loading threads...": "Carregando tópicos...",
|
|
41
42
|
"Loading...": "Carregando...",
|
|
42
43
|
"Message Reactions": "Reações à Mensagem",
|
|
43
44
|
"Message deleted": "Mensagem excluída",
|
|
44
45
|
"Message flagged": "Mensagem sinalizada",
|
|
45
46
|
"Mute User": "Silenciar Usuário",
|
|
46
47
|
"No chats here yet…": "Ainda não há chats aqui...",
|
|
48
|
+
"No threads here yet": "Ainda não há tópicos aqui",
|
|
47
49
|
"Not supported": "Não suportado",
|
|
48
50
|
"Nothing yet...": "Nada ainda...",
|
|
49
51
|
"Ok": "Ok",
|
|
@@ -67,6 +69,8 @@
|
|
|
67
69
|
"Sending links is not allowed in this conversation": "Não é permitido enviar links nesta conversa",
|
|
68
70
|
"Slow mode ON": "Modo Lento ATIVADO",
|
|
69
71
|
"The message has been reported to a moderator.": "A mensagem foi relatada a um moderador.",
|
|
72
|
+
"The source message was deleted": "A mensagem original foi excluída",
|
|
73
|
+
"This reply was deleted": "Esta resposta foi excluída",
|
|
70
74
|
"Thread Reply": "Respostas de Tópico",
|
|
71
75
|
"Unban User": "Desbanir Usuário",
|
|
72
76
|
"Unblock User": "Desbloquear Usuário",
|
|
@@ -75,8 +79,10 @@
|
|
|
75
79
|
"Unpin from Conversation": "Desmarcar como fixado na conversa",
|
|
76
80
|
"Unread Messages": "Mensagens não lidas",
|
|
77
81
|
"Video": "Vídeo",
|
|
82
|
+
"Voice message": "Mensagem de voz",
|
|
78
83
|
"You": "Você",
|
|
79
84
|
"You can't send messages in this channel": "Você não pode enviar mensagens neste canal",
|
|
85
|
+
"replied to": "respondeu a",
|
|
80
86
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ontem]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Amanhã]\",\"nextWeek\":\"dddd [às] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
81
87
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
88
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -84,6 +90,7 @@
|
|
|
84
90
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
85
91
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
86
92
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
93
|
+
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ontem]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Amanhã]\",\"nextWeek\":\"dddd [às] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
87
94
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e mais {{ nonSelfUserLength }} pessoa(s) estão digitando",
|
|
88
95
|
"{{ index }} of {{ photoLength }}": "{{ index }} de {{ photoLength }}",
|
|
89
96
|
"{{ replyCount }} Replies": "{{ replyCount }} Respostas",
|
package/src/i18n/ru.json
CHANGED
|
@@ -38,12 +38,14 @@
|
|
|
38
38
|
"Links are disabled": "Ссылки отключены",
|
|
39
39
|
"Loading channels...": "Загружаю каналы...",
|
|
40
40
|
"Loading messages...": "Загружаю сообщения...",
|
|
41
|
+
"Loading threads...": "Загрузка потоков...",
|
|
41
42
|
"Loading...": "Загружаю...",
|
|
42
43
|
"Message Reactions": "Сообщения Реакции",
|
|
43
44
|
"Message deleted": "Сообщение удалено",
|
|
44
45
|
"Message flagged": "Сообщение отмечено",
|
|
45
46
|
"Mute User": "Отключить пользователя",
|
|
46
47
|
"No chats here yet…": "Здесь пока нет чатов…",
|
|
48
|
+
"No threads here yet": "Здесь пока нет потоков",
|
|
47
49
|
"Not supported": "не поддерживается",
|
|
48
50
|
"Nothing yet...": "Пока ничего нет...",
|
|
49
51
|
"Ok": "Oк",
|
|
@@ -67,6 +69,8 @@
|
|
|
67
69
|
"Sending links is not allowed in this conversation": "Отправка ссылок недоступна в этом чате",
|
|
68
70
|
"Slow mode ON": "Медленный режим включен",
|
|
69
71
|
"The message has been reported to a moderator.": "Сообщение отправлено модератору.",
|
|
72
|
+
"The source message was deleted": "Исходное сообщение было удалено",
|
|
73
|
+
"This reply was deleted": "Этот ответ был удалён",
|
|
70
74
|
"Thread Reply": "Тема Ответить",
|
|
71
75
|
"Unban User": "Разблокировать Пользователя",
|
|
72
76
|
"Unblock User": "Разблокировать пользователя",
|
|
@@ -75,8 +79,10 @@
|
|
|
75
79
|
"Unpin from Conversation": "Открепить от беседы",
|
|
76
80
|
"Unread Messages": "Непрочитанные Сообщения",
|
|
77
81
|
"Video": "видео",
|
|
82
|
+
"Voice message": "Голосовое сообщение",
|
|
78
83
|
"You": "Вы",
|
|
79
84
|
"You can't send messages in this channel": "Вы не можете отправлять сообщения в этот канал",
|
|
85
|
+
"replied to": "ответил на",
|
|
80
86
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Вчера]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Завтра]\",\"nextWeek\":\"dddd [в] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
81
87
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
88
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -84,6 +90,7 @@
|
|
|
84
90
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
85
91
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
86
92
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
93
|
+
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Вчера]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Завтра]\",\"nextWeek\":\"dddd [в] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
87
94
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} и еще {{ nonSelfUserLength }} пишут",
|
|
88
95
|
"{{ index }} of {{ photoLength }}": "{{ index }} из {{ photoLength }}",
|
|
89
96
|
"{{ replyCount }} Replies": "{{ replyCount }} Ответов",
|
package/src/i18n/tr.json
CHANGED
|
@@ -38,12 +38,14 @@
|
|
|
38
38
|
"Links are disabled": "Bağlantılar devre dışı",
|
|
39
39
|
"Loading channels...": "Kanallar yükleniyor...",
|
|
40
40
|
"Loading messages...": "Mesajlar yükleniyor...",
|
|
41
|
+
"Loading threads...": "Akışlar yükleniyor...",
|
|
41
42
|
"Loading...": "Yükleniyor...",
|
|
42
43
|
"Message Reactions": "Mesaj Tepkileri",
|
|
43
44
|
"Message deleted": "Mesaj silindi",
|
|
44
45
|
"Message flagged": "Mesaj işaretlendi",
|
|
45
46
|
"Mute User": "Kullanıcıyı sessize al",
|
|
46
47
|
"No chats here yet…": "Henüz burada sohbet yok…",
|
|
48
|
+
"No threads here yet": "Burada henüz akış yok",
|
|
47
49
|
"Not supported": "Desteklenmiyor",
|
|
48
50
|
"Nothing yet...": "Henüz değil...",
|
|
49
51
|
"Ok": "Tamam",
|
|
@@ -67,6 +69,8 @@
|
|
|
67
69
|
"Sending links is not allowed in this conversation": "Bu konuşmada bağlantı göndermek desteklenmiyor",
|
|
68
70
|
"Slow mode ON": "Yavaş Mod Açık",
|
|
69
71
|
"The message has been reported to a moderator.": "Mesaj moderatöre bildirildi.",
|
|
72
|
+
"The source message was deleted": "Kaynak mesaj silindi",
|
|
73
|
+
"This reply was deleted": "Bu yanıt silindi",
|
|
70
74
|
"Thread Reply": "Konu Yanıtı",
|
|
71
75
|
"Unban User": "Kullanıcının Yasağını Kaldır",
|
|
72
76
|
"Unblock User": "Kullanıcının engelini kaldır",
|
|
@@ -75,8 +79,10 @@
|
|
|
75
79
|
"Unpin from Conversation": "Sabitlemeyi kaldır",
|
|
76
80
|
"Unread Messages": "Okunmamış Mesajlar",
|
|
77
81
|
"Video": "Video",
|
|
82
|
+
"Voice message": "Sesli mesaj",
|
|
78
83
|
"You": "Sen",
|
|
79
84
|
"You can't send messages in this channel": "Bu konuşmaya mesaj gönderemezsiniz",
|
|
85
|
+
"replied to": "yanıtladı",
|
|
80
86
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Dün]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Yarın]\",\"nextWeek\":\"dddd [saat] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
81
87
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
88
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -84,6 +90,7 @@
|
|
|
84
90
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
85
91
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
86
92
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
93
|
+
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Dün]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Yarın]\",\"nextWeek\":\"dddd [saat] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
87
94
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ve {{ nonSelfUserLength }} kişi daha yazıyor",
|
|
88
95
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
89
96
|
"{{ replyCount }} Replies": "{{ replyCount }} Cevap",
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
import { IconProps, RootPath, RootSvg } from './utils/base';
|
|
4
|
+
|
|
5
|
+
export const MessageBubble = (props: IconProps) => (
|
|
6
|
+
<RootSvg {...props}>
|
|
7
|
+
<RootPath
|
|
8
|
+
d='M2.66683 2.66665H13.3335V10.6666H3.44683L2.66683 11.4466V2.66665ZM2.66683 1.33331C1.9335 1.33331 1.34016 1.93331 1.34016 2.66665L1.3335 14.6666L4.00016 12H13.3335C14.0668 12 14.6668 11.4 14.6668 10.6666V2.66665C14.6668 1.93331 14.0668 1.33331 13.3335 1.33331H2.66683ZM4.00016 7.99998H12.0002V9.33331H4.00016V7.99998ZM4.00016 5.99998H12.0002V7.33331H4.00016V5.99998ZM4.00016 3.99998H12.0002V5.33331H4.00016V3.99998Z'
|
|
9
|
+
{...props}
|
|
10
|
+
/>
|
|
11
|
+
</RootSvg>
|
|
12
|
+
);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
import { IconProps, RootPath, RootSvg } from './utils/base';
|
|
4
|
+
|
|
5
|
+
export const MessageBubbleEmpty = (props: IconProps) => (
|
|
6
|
+
<RootSvg {...props}>
|
|
7
|
+
<RootPath
|
|
8
|
+
d='M4 4H20V16H5.17L4 17.17V4ZM4 2C2.9 2 2.01 2.9 2.01 4L2 22L6 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2H4ZM6 12H14V14H6V12ZM6 9H18V11H6V9ZM6 6H18V8H6V6Z'
|
|
9
|
+
{...props}
|
|
10
|
+
/>
|
|
11
|
+
</RootSvg>
|
|
12
|
+
);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
|
|
3
|
+
import { IconProps, RootPath, RootSvg } from './utils/base';
|
|
4
|
+
|
|
5
|
+
export const Reload = (props: IconProps) => (
|
|
6
|
+
<RootSvg {...props}>
|
|
7
|
+
<RootPath
|
|
8
|
+
d='M12 4V1L8 5L12 9V6C15.31 6 18 8.69 18 12C18 13.01 17.75 13.97 17.3 14.8L18.76 16.26C19.54 15.03 20 13.57 20 12C20 7.58 16.42 4 12 4ZM12 18C8.69 18 6 15.31 6 12C6 10.99 6.25 10.03 6.7 9.2L5.24 7.74C4.46 8.97 4 10.43 4 12C4 16.42 7.58 20 12 20V23L16 19L12 15V18Z'
|
|
9
|
+
{...props}
|
|
10
|
+
/>
|
|
11
|
+
</RootSvg>
|
|
12
|
+
);
|
package/src/icons/index.ts
CHANGED
package/src/version.json
CHANGED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
exports.InlineLoadingMoreThreadIndicatorWithContext = exports.InlineLoadingMoreThreadIndicator = void 0;
|
|
6
|
-
var _react = _interopRequireDefault(require("react"));
|
|
7
|
-
var _reactNative = require("react-native");
|
|
8
|
-
var _ThemeContext = require("../../contexts/themeContext/ThemeContext");
|
|
9
|
-
var _ThreadContext = require("../../contexts/threadContext/ThreadContext");
|
|
10
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
-
var _this = this,
|
|
12
|
-
_jsxFileName = "/home/runner/work/stream-chat-react-native/stream-chat-react-native/package/src/components/MessageList/InlineLoadingMoreThreadIndicator.tsx";
|
|
13
|
-
var styles = _reactNative.StyleSheet.create({
|
|
14
|
-
activityIndicatorContainer: {
|
|
15
|
-
padding: 10,
|
|
16
|
-
width: '100%'
|
|
17
|
-
}
|
|
18
|
-
});
|
|
19
|
-
var InlineLoadingMoreThreadIndicatorWithContext = function InlineLoadingMoreThreadIndicatorWithContext(_ref) {
|
|
20
|
-
var threadLoadingMore = _ref.threadLoadingMore;
|
|
21
|
-
var _useTheme = (0, _ThemeContext.useTheme)(),
|
|
22
|
-
theme = _useTheme.theme;
|
|
23
|
-
var accent_blue = theme.colors.accent_blue;
|
|
24
|
-
if (!threadLoadingMore) {
|
|
25
|
-
return null;
|
|
26
|
-
}
|
|
27
|
-
return (0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
28
|
-
style: styles.activityIndicatorContainer,
|
|
29
|
-
children: (0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {
|
|
30
|
-
color: accent_blue,
|
|
31
|
-
size: "small"
|
|
32
|
-
})
|
|
33
|
-
});
|
|
34
|
-
};
|
|
35
|
-
exports.InlineLoadingMoreThreadIndicatorWithContext = InlineLoadingMoreThreadIndicatorWithContext;
|
|
36
|
-
var areEqual = function areEqual(prevProps, nextProps) {
|
|
37
|
-
var prevThreadLoadingMore = prevProps.threadLoadingMore;
|
|
38
|
-
var nextThreadLoadingMore = nextProps.threadLoadingMore;
|
|
39
|
-
var threadLoadingMoreEqual = prevThreadLoadingMore === nextThreadLoadingMore;
|
|
40
|
-
if (!threadLoadingMoreEqual) return false;
|
|
41
|
-
return true;
|
|
42
|
-
};
|
|
43
|
-
var MemoizedInlineLoadingMoreThreadIndicator = _react["default"].memo(InlineLoadingMoreThreadIndicatorWithContext, areEqual);
|
|
44
|
-
var InlineLoadingMoreThreadIndicator = function InlineLoadingMoreThreadIndicator() {
|
|
45
|
-
var _useThreadContext = (0, _ThreadContext.useThreadContext)(),
|
|
46
|
-
threadLoadingMore = _useThreadContext.threadLoadingMore;
|
|
47
|
-
return (0, _jsxRuntime.jsx)(MemoizedInlineLoadingMoreThreadIndicator, {
|
|
48
|
-
threadLoadingMore: threadLoadingMore
|
|
49
|
-
});
|
|
50
|
-
};
|
|
51
|
-
exports.InlineLoadingMoreThreadIndicator = InlineLoadingMoreThreadIndicator;
|
|
52
|
-
//# sourceMappingURL=InlineLoadingMoreThreadIndicator.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_ThemeContext","_ThreadContext","_jsxRuntime","_this","_jsxFileName","styles","StyleSheet","create","activityIndicatorContainer","padding","width","InlineLoadingMoreThreadIndicatorWithContext","_ref","threadLoadingMore","_useTheme","useTheme","theme","accent_blue","colors","jsx","View","style","children","ActivityIndicator","color","size","exports","areEqual","prevProps","nextProps","prevThreadLoadingMore","nextThreadLoadingMore","threadLoadingMoreEqual","MemoizedInlineLoadingMoreThreadIndicator","React","memo","InlineLoadingMoreThreadIndicator","_useThreadContext","useThreadContext"],"sourceRoot":"../../../../src","sources":["components/MessageList/InlineLoadingMoreThreadIndicator.tsx"],"mappings":";;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAEA,IAAAE,aAAA,GAAAF,OAAA;AACA,IAAAG,cAAA,GAAAH,OAAA;AAA8E,IAAAI,WAAA,GAAAJ,OAAA;AAAA,IAAAK,KAAA;EAAAC,YAAA;AAI9E,IAAMC,MAAM,GAAGC,uBAAU,CAACC,MAAM,CAAC;EAC/BC,0BAA0B,EAAE;IAC1BC,OAAO,EAAE,EAAE;IACXC,KAAK,EAAE;EACT;AACF,CAAC,CAAC;AAMK,IAAMC,2CAA2C,GAAG,SAA9CA,2CAA2CA,CAAAC,IAAA,EAEA;EAAA,IADtDC,iBAAiB,GAAAD,IAAA,CAAjBC,iBAAiB;EAEjB,IAAAC,SAAA,GAAkB,IAAAC,sBAAQ,EAAC,CAAC;IAApBC,KAAK,GAAAF,SAAA,CAALE,KAAK;EAEb,IACYC,WAAW,GACnBD,KAAK,CADPE,MAAM,CAAID,WAAW;EAGvB,IAAI,CAACJ,iBAAiB,EAAE;IACtB,OAAO,IAAI;EACb;EAEA,OACE,IAAAX,WAAA,CAAAiB,GAAA,EAACpB,YAAA,CAAAqB,IAAI;IAACC,KAAK,EAAEhB,MAAM,CAACG,0BAA2B;IAAAc,QAAA,EAC7C,IAAApB,WAAA,CAAAiB,GAAA,EAACpB,YAAA,CAAAwB,iBAAiB;MAACC,KAAK,EAAEP,WAAY;MAACQ,IAAI,EAAC;IAAO,CAAE;EAAC,CAClD,CAAC;AAEX,CAAC;AAACC,OAAA,CAAAf,2CAAA,GAAAA,2CAAA;AAEF,IAAMgB,QAAQ,GAAG,SAAXA,QAAQA,CACZC,SAA2D,EAC3DC,SAA2D,EACxD;EACH,IAA2BC,qBAAqB,GAAKF,SAAS,CAAtDf,iBAAiB;EACzB,IAA2BkB,qBAAqB,GAAKF,SAAS,CAAtDhB,iBAAiB;EAEzB,IAAMmB,sBAAsB,GAAGF,qBAAqB,KAAKC,qBAAqB;EAC9E,IAAI,CAACC,sBAAsB,EAAE,OAAO,KAAK;EAEzC,OAAO,IAAI;AACb,CAAC;AAED,IAAMC,wCAAwC,GAAGC,iBAAK,CAACC,IAAI,CACzDxB,2CAA2C,EAC3CgB,QACF,CAAuD;AAEhD,IAAMS,gCAAgC,GAAG,SAAnCA,gCAAgCA,CAAA,EAEtC;EACL,IAAAC,iBAAA,GAA8B,IAAAC,+BAAgB,EAAqB,CAAC;IAA5DzB,iBAAiB,GAAAwB,iBAAA,CAAjBxB,iBAAiB;EAEzB,OAAO,IAAAX,WAAA,CAAAiB,GAAA,EAACc,wCAAwC;IAACpB,iBAAiB,EAAEA;EAAkB,CAAE,CAAC;AAC3F,CAAC;AAACa,OAAA,CAAAU,gCAAA,GAAAA,gCAAA","ignoreList":[]}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
2
|
-
Object.defineProperty(exports, "__esModule", {
|
|
3
|
-
value: true
|
|
4
|
-
});
|
|
5
|
-
exports.InlineLoadingMoreThreadIndicatorWithContext = exports.InlineLoadingMoreThreadIndicator = void 0;
|
|
6
|
-
var _react = _interopRequireDefault(require("react"));
|
|
7
|
-
var _reactNative = require("react-native");
|
|
8
|
-
var _ThemeContext = require("../../contexts/themeContext/ThemeContext");
|
|
9
|
-
var _ThreadContext = require("../../contexts/threadContext/ThreadContext");
|
|
10
|
-
var _jsxRuntime = require("react/jsx-runtime");
|
|
11
|
-
var _this = this,
|
|
12
|
-
_jsxFileName = "/home/runner/work/stream-chat-react-native/stream-chat-react-native/package/src/components/MessageList/InlineLoadingMoreThreadIndicator.tsx";
|
|
13
|
-
var styles = _reactNative.StyleSheet.create({
|
|
14
|
-
activityIndicatorContainer: {
|
|
15
|
-
padding: 10,
|
|
16
|
-
width: '100%'
|
|
17
|
-
}
|
|
18
|
-
});
|
|
19
|
-
var InlineLoadingMoreThreadIndicatorWithContext = function InlineLoadingMoreThreadIndicatorWithContext(_ref) {
|
|
20
|
-
var threadLoadingMore = _ref.threadLoadingMore;
|
|
21
|
-
var _useTheme = (0, _ThemeContext.useTheme)(),
|
|
22
|
-
theme = _useTheme.theme;
|
|
23
|
-
var accent_blue = theme.colors.accent_blue;
|
|
24
|
-
if (!threadLoadingMore) {
|
|
25
|
-
return null;
|
|
26
|
-
}
|
|
27
|
-
return (0, _jsxRuntime.jsx)(_reactNative.View, {
|
|
28
|
-
style: styles.activityIndicatorContainer,
|
|
29
|
-
children: (0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {
|
|
30
|
-
color: accent_blue,
|
|
31
|
-
size: "small"
|
|
32
|
-
})
|
|
33
|
-
});
|
|
34
|
-
};
|
|
35
|
-
exports.InlineLoadingMoreThreadIndicatorWithContext = InlineLoadingMoreThreadIndicatorWithContext;
|
|
36
|
-
var areEqual = function areEqual(prevProps, nextProps) {
|
|
37
|
-
var prevThreadLoadingMore = prevProps.threadLoadingMore;
|
|
38
|
-
var nextThreadLoadingMore = nextProps.threadLoadingMore;
|
|
39
|
-
var threadLoadingMoreEqual = prevThreadLoadingMore === nextThreadLoadingMore;
|
|
40
|
-
if (!threadLoadingMoreEqual) return false;
|
|
41
|
-
return true;
|
|
42
|
-
};
|
|
43
|
-
var MemoizedInlineLoadingMoreThreadIndicator = _react["default"].memo(InlineLoadingMoreThreadIndicatorWithContext, areEqual);
|
|
44
|
-
var InlineLoadingMoreThreadIndicator = function InlineLoadingMoreThreadIndicator() {
|
|
45
|
-
var _useThreadContext = (0, _ThreadContext.useThreadContext)(),
|
|
46
|
-
threadLoadingMore = _useThreadContext.threadLoadingMore;
|
|
47
|
-
return (0, _jsxRuntime.jsx)(MemoizedInlineLoadingMoreThreadIndicator, {
|
|
48
|
-
threadLoadingMore: threadLoadingMore
|
|
49
|
-
});
|
|
50
|
-
};
|
|
51
|
-
exports.InlineLoadingMoreThreadIndicator = InlineLoadingMoreThreadIndicator;
|
|
52
|
-
//# sourceMappingURL=InlineLoadingMoreThreadIndicator.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_ThemeContext","_ThreadContext","_jsxRuntime","_this","_jsxFileName","styles","StyleSheet","create","activityIndicatorContainer","padding","width","InlineLoadingMoreThreadIndicatorWithContext","_ref","threadLoadingMore","_useTheme","useTheme","theme","accent_blue","colors","jsx","View","style","children","ActivityIndicator","color","size","exports","areEqual","prevProps","nextProps","prevThreadLoadingMore","nextThreadLoadingMore","threadLoadingMoreEqual","MemoizedInlineLoadingMoreThreadIndicator","React","memo","InlineLoadingMoreThreadIndicator","_useThreadContext","useThreadContext"],"sourceRoot":"../../../../src","sources":["components/MessageList/InlineLoadingMoreThreadIndicator.tsx"],"mappings":";;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAEA,IAAAE,aAAA,GAAAF,OAAA;AACA,IAAAG,cAAA,GAAAH,OAAA;AAA8E,IAAAI,WAAA,GAAAJ,OAAA;AAAA,IAAAK,KAAA;EAAAC,YAAA;AAI9E,IAAMC,MAAM,GAAGC,uBAAU,CAACC,MAAM,CAAC;EAC/BC,0BAA0B,EAAE;IAC1BC,OAAO,EAAE,EAAE;IACXC,KAAK,EAAE;EACT;AACF,CAAC,CAAC;AAMK,IAAMC,2CAA2C,GAAG,SAA9CA,2CAA2CA,CAAAC,IAAA,EAEA;EAAA,IADtDC,iBAAiB,GAAAD,IAAA,CAAjBC,iBAAiB;EAEjB,IAAAC,SAAA,GAAkB,IAAAC,sBAAQ,EAAC,CAAC;IAApBC,KAAK,GAAAF,SAAA,CAALE,KAAK;EAEb,IACYC,WAAW,GACnBD,KAAK,CADPE,MAAM,CAAID,WAAW;EAGvB,IAAI,CAACJ,iBAAiB,EAAE;IACtB,OAAO,IAAI;EACb;EAEA,OACE,IAAAX,WAAA,CAAAiB,GAAA,EAACpB,YAAA,CAAAqB,IAAI;IAACC,KAAK,EAAEhB,MAAM,CAACG,0BAA2B;IAAAc,QAAA,EAC7C,IAAApB,WAAA,CAAAiB,GAAA,EAACpB,YAAA,CAAAwB,iBAAiB;MAACC,KAAK,EAAEP,WAAY;MAACQ,IAAI,EAAC;IAAO,CAAE;EAAC,CAClD,CAAC;AAEX,CAAC;AAACC,OAAA,CAAAf,2CAAA,GAAAA,2CAAA;AAEF,IAAMgB,QAAQ,GAAG,SAAXA,QAAQA,CACZC,SAA2D,EAC3DC,SAA2D,EACxD;EACH,IAA2BC,qBAAqB,GAAKF,SAAS,CAAtDf,iBAAiB;EACzB,IAA2BkB,qBAAqB,GAAKF,SAAS,CAAtDhB,iBAAiB;EAEzB,IAAMmB,sBAAsB,GAAGF,qBAAqB,KAAKC,qBAAqB;EAC9E,IAAI,CAACC,sBAAsB,EAAE,OAAO,KAAK;EAEzC,OAAO,IAAI;AACb,CAAC;AAED,IAAMC,wCAAwC,GAAGC,iBAAK,CAACC,IAAI,CACzDxB,2CAA2C,EAC3CgB,QACF,CAAuD;AAEhD,IAAMS,gCAAgC,GAAG,SAAnCA,gCAAgCA,CAAA,EAEtC;EACL,IAAAC,iBAAA,GAA8B,IAAAC,+BAAgB,EAAqB,CAAC;IAA5DzB,iBAAiB,GAAAwB,iBAAA,CAAjBxB,iBAAiB;EAEzB,OAAO,IAAAX,WAAA,CAAAiB,GAAA,EAACc,wCAAwC;IAACpB,iBAAiB,EAAEA;EAAkB,CAAE,CAAC;AAC3F,CAAC;AAACa,OAAA,CAAAU,gCAAA,GAAAA,gCAAA","ignoreList":[]}
|