stream-chat-react-native-core 5.23.2-beta.1 โ†’ 5.23.2-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/lib/commonjs/components/Channel/Channel.js +33 -32
  2. package/lib/commonjs/components/Channel/Channel.js.map +1 -1
  3. package/lib/commonjs/components/MessageInput/MessageInput.js +28 -26
  4. package/lib/commonjs/components/MessageInput/MessageInput.js.map +1 -1
  5. package/lib/commonjs/components/MessageList/MessageList.js +41 -43
  6. package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
  7. package/lib/commonjs/components/MessageList/hooks/useMessageList.js +1 -2
  8. package/lib/commonjs/components/MessageList/hooks/useMessageList.js.map +1 -1
  9. package/lib/commonjs/i18n/fr.json +21 -21
  10. package/lib/commonjs/i18n/hi.json +21 -21
  11. package/lib/commonjs/i18n/it.json +21 -21
  12. package/lib/commonjs/i18n/nl.json +21 -21
  13. package/lib/commonjs/i18n/ru.json +21 -21
  14. package/lib/commonjs/i18n/tr.json +21 -21
  15. package/lib/commonjs/version.json +1 -1
  16. package/lib/module/components/Channel/Channel.js +33 -32
  17. package/lib/module/components/Channel/Channel.js.map +1 -1
  18. package/lib/module/components/MessageInput/MessageInput.js +28 -26
  19. package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
  20. package/lib/module/components/MessageList/MessageList.js +41 -43
  21. package/lib/module/components/MessageList/MessageList.js.map +1 -1
  22. package/lib/module/components/MessageList/hooks/useMessageList.js +1 -2
  23. package/lib/module/components/MessageList/hooks/useMessageList.js.map +1 -1
  24. package/lib/module/i18n/fr.json +21 -21
  25. package/lib/module/i18n/hi.json +21 -21
  26. package/lib/module/i18n/it.json +21 -21
  27. package/lib/module/i18n/nl.json +21 -21
  28. package/lib/module/i18n/ru.json +21 -21
  29. package/lib/module/i18n/tr.json +21 -21
  30. package/lib/module/version.json +1 -1
  31. package/lib/typescript/components/MessageInput/MessageInput.d.ts +1 -3
  32. package/lib/typescript/components/MessageList/MessageList.d.ts +1 -5
  33. package/lib/typescript/i18n/fr.json +21 -21
  34. package/lib/typescript/i18n/hi.json +21 -21
  35. package/lib/typescript/i18n/it.json +21 -21
  36. package/lib/typescript/i18n/nl.json +21 -21
  37. package/lib/typescript/i18n/ru.json +21 -21
  38. package/lib/typescript/i18n/tr.json +21 -21
  39. package/package.json +1 -1
  40. package/src/components/Channel/Channel.tsx +22 -17
  41. package/src/components/MessageInput/MessageInput.tsx +12 -5
  42. package/src/components/MessageList/MessageList.tsx +12 -15
  43. package/src/components/MessageList/hooks/useMessageList.ts +2 -2
  44. package/src/i18n/fr.json +21 -21
  45. package/src/i18n/hi.json +21 -21
  46. package/src/i18n/it.json +21 -21
  47. package/src/i18n/nl.json +21 -21
  48. package/src/i18n/ru.json +21 -21
  49. package/src/i18n/tr.json +21 -21
  50. package/src/version.json +1 -1
@@ -777,15 +777,18 @@ const ChannelWithContext = <
777
777
  useEffect(() => {
778
778
  const handleEvent: EventHandler<StreamChatGenerics> = (event) => {
779
779
  if (shouldSyncChannel) {
780
- if (thread) {
781
- const updatedThreadMessages =
782
- (thread.id && channel && channel.state.threads[thread.id]) || threadMessages;
783
- setThreadMessages(updatedThreadMessages);
784
- }
780
+ const isTypingEvent = event.type === 'typing.start' || event.type === 'typing.stop';
781
+ if (!isTypingEvent) {
782
+ if (thread?.id) {
783
+ const updatedThreadMessages =
784
+ (thread.id && channel && channel.state.threads[thread.id]) || threadMessages;
785
+ setThreadMessages(updatedThreadMessages);
786
+ }
785
787
 
786
- if (channel && thread && event.message?.id === thread.id) {
787
- const updatedThread = channel.state.formatMessage(event.message);
788
- setThread(updatedThread);
788
+ if (channel && thread?.id && event.message?.id === thread.id) {
789
+ const updatedThread = channel.state.formatMessage(event.message);
790
+ setThread(updatedThread);
791
+ }
789
792
  }
790
793
 
791
794
  // only update channel state if the events are not the previously subscribed useEffect's subscription events
@@ -1097,11 +1100,11 @@ const ChannelWithContext = <
1097
1100
  channelQueryCallRef.current(async () => {
1098
1101
  if (!channel?.initialized || !channel.state.isUpToDate) {
1099
1102
  await channel?.watch();
1103
+ channel?.state.setIsUpToDate(true);
1104
+ setHasNoMoreRecentMessagesToLoad(true);
1100
1105
  } else {
1101
- await loadLatestMessagesRef.current(true);
1106
+ await channel.state.loadMessageIntoState('latest');
1102
1107
  }
1103
- channel?.state.setIsUpToDate(true);
1104
- setHasNoMoreRecentMessagesToLoad(true);
1105
1108
  });
1106
1109
 
1107
1110
  const reloadThread = async () => {
@@ -1999,11 +2002,14 @@ const ChannelWithContext = <
1999
2002
  /**
2000
2003
  * THREAD METHODS
2001
2004
  */
2002
- const openThread: ThreadContextValue<StreamChatGenerics>['openThread'] = (message) => {
2003
- const newThreadMessages = message?.id ? channel?.state?.threads[message.id] || [] : [];
2004
- setThread(message);
2005
- setThreadMessages(newThreadMessages);
2006
- };
2005
+ const openThread: ThreadContextValue<StreamChatGenerics>['openThread'] = useCallback(
2006
+ (message) => {
2007
+ const newThreadMessages = message?.id ? channel?.state?.threads[message.id] || [] : [];
2008
+ setThread(message);
2009
+ setThreadMessages(newThreadMessages);
2010
+ },
2011
+ [setThread, setThreadMessages],
2012
+ );
2007
2013
 
2008
2014
  const closeThread: ThreadContextValue<StreamChatGenerics>['closeThread'] = useCallback(() => {
2009
2015
  setThread(null);
@@ -2365,7 +2371,6 @@ export const Channel = <
2365
2371
 
2366
2372
  return (
2367
2373
  <ChannelWithContext<StreamChatGenerics>
2368
- key={props.channel?.cid}
2369
2374
  {...{
2370
2375
  client,
2371
2376
  enableOfflineSupport,
@@ -81,7 +81,10 @@ const styles = StyleSheet.create({
81
81
  type MessageInputPropsWithContext<
82
82
  StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
83
83
  > = Pick<ChatContextValue<StreamChatGenerics>, 'isOnline'> &
84
- Pick<ChannelContextValue<StreamChatGenerics>, 'disabled' | 'members' | 'watchers'> &
84
+ Pick<
85
+ ChannelContextValue<StreamChatGenerics>,
86
+ 'disabled' | 'members' | 'threadList' | 'watchers'
87
+ > &
85
88
  Pick<
86
89
  MessageInputContextValue<StreamChatGenerics>,
87
90
  | 'additionalTextInputProps'
@@ -132,9 +135,7 @@ type MessageInputPropsWithContext<
132
135
  | 'triggerType'
133
136
  > &
134
137
  Pick<ThreadContextValue<StreamChatGenerics>, 'thread'> &
135
- Pick<TranslationContextValue, 't'> & {
136
- threadList?: boolean;
137
- };
138
+ Pick<TranslationContextValue, 't'>;
138
139
 
139
140
  const MessageInputWithContext = <
140
141
  StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
@@ -791,7 +792,12 @@ export const MessageInput = <
791
792
  const { isOnline } = useChatContext();
792
793
  const ownCapabilities = useOwnCapabilitiesContext();
793
794
 
794
- const { disabled = false, members, watchers } = useChannelContext<StreamChatGenerics>();
795
+ const {
796
+ disabled = false,
797
+ members,
798
+ threadList,
799
+ watchers,
800
+ } = useChannelContext<StreamChatGenerics>();
795
801
 
796
802
  const {
797
803
  additionalTextInputProps,
@@ -900,6 +906,7 @@ export const MessageInput = <
900
906
  suggestions,
901
907
  t,
902
908
  thread,
909
+ threadList,
903
910
  triggerType,
904
911
  uploadNewFile,
905
912
  uploadNewImage,
@@ -132,6 +132,7 @@ type MessageListPropsWithContext<
132
132
  | 'setTargetedMessage'
133
133
  | 'StickyHeader'
134
134
  | 'targetedMessage'
135
+ | 'threadList'
135
136
  > &
136
137
  Pick<ChatContextValue<StreamChatGenerics>, 'client'> &
137
138
  Pick<ImageGalleryContextValue<StreamChatGenerics>, 'setMessages'> &
@@ -215,10 +216,6 @@ type MessageListPropsWithContext<
215
216
  * ```
216
217
  */
217
218
  setFlatListRef?: (ref: FlatListType<MessageType<StreamChatGenerics>> | null) => void;
218
- /**
219
- * Boolean whether or not the Messages in the MessageList are part of a Thread
220
- **/
221
- threadList?: boolean;
222
219
  };
223
220
 
224
221
  /**
@@ -545,7 +542,11 @@ const MessageListWithContext = <
545
542
 
546
543
  useEffect(() => {
547
544
  if (!rawMessageList.length) return;
548
- const notLatestSet = !threadList && channel.state.messages !== channel.state.latestMessages;
545
+ if (threadList) {
546
+ setAutoscrollToRecent(true);
547
+ return;
548
+ }
549
+ const notLatestSet = channel.state.messages !== channel.state.latestMessages;
549
550
  if (notLatestSet) {
550
551
  latestNonCurrentMessageBeforeUpdateRef.current =
551
552
  channel.state.latestMessages[channel.state.latestMessages.length - 1];
@@ -729,10 +730,8 @@ const MessageListWithContext = <
729
730
  // If onEndReached is in progress, better to wait for it to finish for smooth UX
730
731
  if (onEndReachedInPromise.current) {
731
732
  await onEndReachedInPromise.current;
732
- onStartReachedInPromise.current = loadMoreRecent(limit).then(callback).catch(onError);
733
- } else {
734
- onStartReachedInPromise.current = loadMoreRecent(limit).then(callback).catch(onError);
735
733
  }
734
+ onStartReachedInPromise.current = loadMoreRecent(limit).then(callback).catch(onError);
736
735
  };
737
736
 
738
737
  /**
@@ -765,14 +764,10 @@ const MessageListWithContext = <
765
764
  // If onStartReached is in progress, better to wait for it to finish for smooth UX
766
765
  if (onStartReachedInPromise.current) {
767
766
  await onStartReachedInPromise.current;
768
- onEndReachedInPromise.current = (threadList ? loadMoreThread() : loadMore())
769
- .then(callback)
770
- .catch(onError);
771
- } else {
772
- onEndReachedInPromise.current = (threadList ? loadMoreThread() : loadMore())
773
- .then(callback)
774
- .catch(onError);
775
767
  }
768
+ onEndReachedInPromise.current = (threadList ? loadMoreThread() : loadMore())
769
+ .then(callback)
770
+ .catch(onError);
776
771
  };
777
772
 
778
773
  const onUserScrollEvent: NonNullable<ScrollViewProps['onScroll']> = (event) => {
@@ -1226,6 +1221,7 @@ export const MessageList = <
1226
1221
  setTargetedMessage,
1227
1222
  StickyHeader,
1228
1223
  targetedMessage,
1224
+ threadList,
1229
1225
  } = useChannelContext<StreamChatGenerics>();
1230
1226
  const { client } = useChatContext<StreamChatGenerics>();
1231
1227
  const { setMessages } = useImageGalleryContext<StreamChatGenerics>();
@@ -1294,6 +1290,7 @@ export const MessageList = <
1294
1290
  targetedMessage,
1295
1291
  tDateTimeParser,
1296
1292
  thread,
1293
+ threadList,
1297
1294
  TypingIndicator,
1298
1295
  TypingIndicatorContainer,
1299
1296
  }}
@@ -106,11 +106,11 @@ export const useMessageList = <
106
106
  const processedMessageList = [
107
107
  ...messagesWithStylesReadByAndDateSeparator,
108
108
  ].reverse() as MessageType<StreamChatGenerics>[];
109
- const rawMessageList = messageList;
109
+
110
110
  return {
111
111
  /** Messages enriched with dates/readby/groups and also reversed in order */
112
112
  processedMessageList,
113
113
  /** Raw messages from the channel state */
114
- rawMessageList,
114
+ rawMessageList: messageList,
115
115
  };
116
116
  };
package/src/i18n/fr.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 Rรฉponse",
3
3
  "1 Thread Reply": "Rรฉponse ร  1 fil",
4
- "Allow access to your Gallery": "",
5
- "Allow camera access in device settings": "",
6
- "Also send to channel": "",
4
+ "Allow access to your Gallery": "Autoriser l'accรจs ร  votre galerie",
5
+ "Allow camera access in device settings": "Autoriser l'accรจs ร  la camรฉra dans les paramรจtres de l'appareil",
6
+ "Also send to channel": "Envoyer รฉgalement ร  la chaรฎne",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Block User": "",
9
9
  "Cancel": "",
@@ -11,7 +11,7 @@
11
11
  "Copy Message": "",
12
12
  "Delete": "",
13
13
  "Delete Message": "",
14
- "Device camera is used to take photos or videos.": "",
14
+ "Device camera is used to take photos or videos.": "L'appareil photo de l'appareil est utilisรฉ pour prendre des photos ou des vidรฉos.",
15
15
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
16
  "Edit Message": "",
17
17
  "Editing Message": "",
@@ -21,7 +21,7 @@
21
21
  "Error loading channel list...": "",
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
- "File type not supported": "Le type de fichier n'est pas pris en charge",
24
+ "File type not supported": "",
25
25
  "Flag": "",
26
26
  "Flag Message": "",
27
27
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -29,47 +29,47 @@
29
29
  "Instant Commands": "Commandes Instantanรฉes",
30
30
  "Let's start chatting!": "",
31
31
  "Links are disabled": "Links are disabled",
32
- "Loading channels...": "",
33
- "Loading messages...": "",
34
- "Loading...": "",
32
+ "Loading channels...": "Chargement des canaux...",
33
+ "Loading messages...": "Chargement des messages...",
34
+ "Loading...": "Chargement...",
35
35
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Taille maximale de tรฉlรฉchargement de fichier atteinte. Veuillez tรฉlรฉcharger un fichier infรฉrieur ร  {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} Mo.",
36
36
  "Message Reactions": "",
37
37
  "Message deleted": "",
38
38
  "Message flagged": "",
39
39
  "Mute User": "",
40
- "Not supported": "",
40
+ "Not supported": "Non pris en charge",
41
41
  "Nothing yet...": "",
42
42
  "Ok": "",
43
43
  "Only visible to you": "",
44
- "Open Settings": "",
44
+ "Open Settings": "Ouvrir les paramรจtres",
45
45
  "Photo": "",
46
- "Photos and Videos": "",
46
+ "Photos and Videos": "Photos et vidรฉos",
47
47
  "Pin to Conversation": "",
48
- "Pinned by": "ร‰pinglรฉ par",
49
- "Please enable access to your photos and videos so you can share them.": "",
50
- "Please select a channel first": "Veuillez d'abord selectionnez un canal",
48
+ "Pinned by": "",
49
+ "Please enable access to your photos and videos so you can share them.": "Veuillez autoriser l'accรจs ร  vos photos et vidรฉos afin de pouvoir les partager.",
50
+ "Please select a channel first": "",
51
51
  "Reconnecting...": "",
52
52
  "Reply": "",
53
53
  "Reply to Message": "",
54
54
  "Resend": "",
55
55
  "Search GIFs": "",
56
- "Select More Photos": "",
56
+ "Select More Photos": "Sรฉlectionner plus de photos",
57
57
  "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
59
59
  "Slow mode ON": "",
60
60
  "The message has been reported to a moderator.": "",
61
61
  "Thread Reply": "",
62
62
  "Unblock User": "",
63
- "Unknown User": "",
63
+ "Unknown User": "Utilisateur inconnu",
64
64
  "Unmute User": "",
65
65
  "Unpin from Conversation": "",
66
- "Unread Messages": "",
66
+ "Unread Messages": "Messages non lus",
67
67
  "Video": "",
68
68
  "You": "",
69
- "You can't send messages in this channel": "You can't send messages in this channel",
69
+ "You can't send messages in this channel": "",
70
70
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
71
- "{{ index }} of {{ photoLength }}": "",
72
- "{{ replyCount }} Replies": "",
71
+ "{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
72
+ "{{ replyCount }} Replies": "{{ replyCount }} Rรฉponses",
73
73
  "{{ replyCount }} Thread Replies": "{{replyCount}} Rรฉponses ร  la discussion",
74
74
  "{{ user }} is typing": "",
75
75
  "๐Ÿ™ Attachment...": ""
package/src/i18n/hi.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 เคฐเคฟเคชเฅเคฒเคพเคˆ",
3
3
  "1 Thread Reply": "1 เคงเคพเค—เคพ เค‰เคคเฅเคคเคฐ",
4
- "Allow access to your Gallery": "",
5
- "Allow camera access in device settings": "",
6
- "Also send to channel": "",
4
+ "Allow access to your Gallery": "เค…เคชเคจเฅ€ เค—เฅˆเคฒเคฐเฅ€ เคคเค• เคชเคนเฅเคเคšเคจเฅ‡ เค•เฅ€ เค…เคจเฅเคฎเคคเคฟ เคฆเฅ‡เค‚",
5
+ "Allow camera access in device settings": "เคกเคฟเคตเคพเค‡เคธ เคธเฅ‡เคŸเคฟเค‚เค—เฅเคธ เคฎเฅ‡เค‚ เค•เฅˆเคฎเคฐเคพ เคเค•เฅเคธเฅ‡เคธ เค•เฅ€ เค…เคจเฅเคฎเคคเคฟ เคฆเฅ‡เค‚",
6
+ "Also send to channel": "เคšเฅˆเคจเคฒ เค•เฅ‹ เคญเฅ€ เคญเฅ‡เคœเฅ‡เค‚",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Block User": "",
9
9
  "Cancel": "",
@@ -11,7 +11,7 @@
11
11
  "Copy Message": "",
12
12
  "Delete": "",
13
13
  "Delete Message": "",
14
- "Device camera is used to take photos or videos.": "",
14
+ "Device camera is used to take photos or videos.": "เคกเคฟเคตเคพเค‡เคธ เค•เฅˆเคฎเคฐเฅ‡ เค•เคพ เค‰เคชเคฏเฅ‹เค— เคซเคผเฅ‹เคŸเฅ‹ เคฏเคพ เคตเฅ€เคกเคฟเคฏเฅ‹ เคฒเฅ‡เคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เค•เคฟเคฏเคพ เคœเคพเคคเคพ เคนเฅˆเฅค",
15
15
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
16
  "Edit Message": "",
17
17
  "Editing Message": "",
@@ -21,7 +21,7 @@
21
21
  "Error loading channel list...": "",
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
- "File type not supported": "เคซเคผเคพเค‡เคฒ เคชเฅเคฐเค•เคพเคฐ เคธเคฎเคฐเฅเคฅเคฟเคค เคจเคนเฅ€เค‚ เคนเฅˆ",
24
+ "File type not supported": "",
25
25
  "Flag": "",
26
26
  "Flag Message": "",
27
27
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -29,47 +29,47 @@
29
29
  "Instant Commands": "เคคเฅเคตเคฐเคฟเคค เค•เคฎเคพเค‚เคก",
30
30
  "Let's start chatting!": "",
31
31
  "Links are disabled": "เคฒเคฟเค‚เค• เค…เค•เฅเคทเคฎ เคนเฅˆเค‚",
32
- "Loading channels...": "",
33
- "Loading messages...": "",
34
- "Loading...": "",
32
+ "Loading channels...": "เคšเฅˆเคจเคฒ เคฒเฅ‹เคก เคนเฅ‹ เคฐเคนเฅ‡ เคนเฅˆเค‚...",
33
+ "Loading messages...": "เคฎเฅ‡เคธเฅ‡เคœเคธ เคฒเฅ‹เคก เคนเฅ‹ เคฐเคนเฅ‡ เคนเฅˆเค‚...",
34
+ "Loading...": "เคฒเฅ‹เคก เคนเฅ‹ เคฐเคนเคพ เคนเฅˆ...",
35
35
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "เค…เคงเคฟเค•เคคเคฎ เคซเคผเคพเค‡เคฒ เค†เค•เคพเคฐ เค…เคชเคฒเฅ‹เคก เคธเฅ€เคฎเคพ เคชเฅ‚เคฐเฅ€ เคนเฅ‹ เค—เคˆเฅค เค•เฅƒเคชเคฏเคพ {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} เคเคฎเคฌเฅ€ เคธเฅ‡ เคจเฅ€เคšเฅ‡ เค•เฅ€ เคซเคผเคพเค‡เคฒ เค…เคชเคฒเฅ‹เคก เค•เคฐเฅ‡เค‚เฅค",
36
36
  "Message Reactions": "",
37
37
  "Message deleted": "",
38
38
  "Message flagged": "",
39
39
  "Mute User": "",
40
- "Not supported": "",
40
+ "Not supported": "เคธเคฎเคฐเฅเคฅเคฟเคค เคจเคนเฅ€เค‚",
41
41
  "Nothing yet...": "",
42
42
  "Ok": "",
43
43
  "Only visible to you": "",
44
- "Open Settings": "",
44
+ "Open Settings": "เคธเฅ‡เคŸเคฟเค‚เค—เฅเคธ เค–เฅ‹เคฒเฅ‡เค‚",
45
45
  "Photo": "",
46
- "Photos and Videos": "",
46
+ "Photos and Videos": "เคคเคธเฅเคตเฅ€เคฐเฅ‡เค‚ เค”เคฐ เคตเฅ€เคกเคฟเคฏเฅ‹เค‚",
47
47
  "Pin to Conversation": "",
48
- "Pinned by": "เคฆเฅเคตเคพเคฐเคพ เคชเคฟเคจ เค•เคฟเคฏเคพ เค—เคฏเคพ",
49
- "Please enable access to your photos and videos so you can share them.": "",
50
- "Please select a channel first": "เค•เฅƒเคชเคฏเคพ เคชเคนเคฒเฅ‡ เคเค• เคšเฅˆเคจเคฒ เคšเฅเคจเฅ‡เค‚",
48
+ "Pinned by": "",
49
+ "Please enable access to your photos and videos so you can share them.": "เค•เฅƒเคชเคฏเคพ เค…เคชเคจเฅ€ เคซเคผเฅ‹เคŸเฅ‹ เค”เคฐ เคตเฅ€เคกเคฟเคฏเฅ‹ เคคเค• เคชเคนเฅเค‚เคš เคธเค•เฅเคทเคฎ เค•เคฐเฅ‡เค‚ เคคเคพเค•เคฟ เค†เคช เค‰เคจเฅเคนเฅ‡เค‚ เคธเคพเคเคพ เค•เคฐ เคธเค•เฅ‡เค‚เฅค",
50
+ "Please select a channel first": "",
51
51
  "Reconnecting...": "",
52
52
  "Reply": "",
53
53
  "Reply to Message": "",
54
54
  "Resend": "",
55
55
  "Search GIFs": "",
56
- "Select More Photos": "",
56
+ "Select More Photos": "เค…เคงเคฟเค• เคซเคผเฅ‹เคŸเฅ‹ เคšเฅเคจเฅ‡เค‚",
57
57
  "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "เค‡เคธ เคฌเคพเคคเคšเฅ€เคค เคฎเฅ‡เค‚ เคฒเคฟเค‚เค• เคญเฅ‡เคœเคจเฅ‡ เค•เฅ€ เค…เคจเฅเคฎเคคเคฟ เคจเคนเฅ€เค‚ เคนเฅˆ",
59
59
  "Slow mode ON": "",
60
60
  "The message has been reported to a moderator.": "",
61
61
  "Thread Reply": "",
62
62
  "Unblock User": "",
63
- "Unknown User": "",
63
+ "Unknown User": "เค…เคœเฅเคžเคพเคค เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ",
64
64
  "Unmute User": "",
65
65
  "Unpin from Conversation": "",
66
- "Unread Messages": "",
66
+ "Unread Messages": "เค…เคชเค เคฟเคค เคธเค‚เคฆเฅ‡เคถ",
67
67
  "Video": "",
68
68
  "You": "",
69
- "You can't send messages in this channel": "เค†เคช เค‡เคธ เคšเฅˆเคจเคฒ เคฎเฅ‡เค‚ เคธเค‚เคฆเฅ‡เคถ เคจเคนเฅ€เค‚ เคญเฅ‡เคœ เคธเค•เคคเฅ‡",
69
+ "You can't send messages in this channel": "",
70
70
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
71
- "{{ index }} of {{ photoLength }}": "",
72
- "{{ replyCount }} Replies": "",
71
+ "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
72
+ "{{ replyCount }} Replies": "{{ replyCount }} เคฐเคฟเคชเฅเคฒเคพเคˆ",
73
73
  "{{ replyCount }} Thread Replies": "{{ replyCount }}} เคฅเฅเคฐเฅ‡เคก เค‰เคคเฅเคคเคฐ",
74
74
  "{{ user }} is typing": "",
75
75
  "๐Ÿ™ Attachment...": ""
package/src/i18n/it.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 Risposta",
3
3
  "1 Thread Reply": "1 Risposta alla Discussione",
4
- "Allow access to your Gallery": "",
5
- "Allow camera access in device settings": "",
6
- "Also send to channel": "",
4
+ "Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
5
+ "Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
6
+ "Also send to channel": "Invia anche al canale",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Block User": "",
9
9
  "Cancel": "",
@@ -11,7 +11,7 @@
11
11
  "Copy Message": "",
12
12
  "Delete": "",
13
13
  "Delete Message": "",
14
- "Device camera is used to take photos or videos.": "",
14
+ "Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
15
15
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
16
  "Edit Message": "",
17
17
  "Editing Message": "",
@@ -21,7 +21,7 @@
21
21
  "Error loading channel list...": "",
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
- "File type not supported": "Tipo di file non supportato",
24
+ "File type not supported": "",
25
25
  "Flag": "",
26
26
  "Flag Message": "",
27
27
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -29,47 +29,47 @@
29
29
  "Instant Commands": "Comandi Istantanei",
30
30
  "Let's start chatting!": "",
31
31
  "Links are disabled": "I link sono disabilitati",
32
- "Loading channels...": "",
33
- "Loading messages...": "",
34
- "Loading...": "",
32
+ "Loading channels...": "Caricamento canali in corso...",
33
+ "Loading messages...": "Caricamento messaggi...",
34
+ "Loading...": "Caricamento...",
35
35
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "รˆ stato raggiunto il limite massimo di caricamento delle dimensioni del file. Carica un file inferiore a {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
36
36
  "Message Reactions": "",
37
37
  "Message deleted": "",
38
38
  "Message flagged": "",
39
39
  "Mute User": "",
40
- "Not supported": "",
40
+ "Not supported": "non supportato",
41
41
  "Nothing yet...": "",
42
42
  "Ok": "",
43
43
  "Only visible to you": "",
44
- "Open Settings": "",
44
+ "Open Settings": "Apri Impostazioni",
45
45
  "Photo": "",
46
- "Photos and Videos": "",
46
+ "Photos and Videos": "Foto e Video",
47
47
  "Pin to Conversation": "",
48
- "Pinned by": "Fissato da",
49
- "Please enable access to your photos and videos so you can share them.": "",
50
- "Please select a channel first": "Seleziona un canale",
48
+ "Pinned by": "",
49
+ "Please enable access to your photos and videos so you can share them.": "Abilita l'accesso alle tue foto e ai tuoi video in modo da poterli condividere.",
50
+ "Please select a channel first": "",
51
51
  "Reconnecting...": "",
52
52
  "Reply": "",
53
53
  "Reply to Message": "",
54
54
  "Resend": "",
55
55
  "Search GIFs": "",
56
- "Select More Photos": "",
56
+ "Select More Photos": "Seleziona Altre foto",
57
57
  "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "L'invio di link non รจ consentito in questa conversazione",
59
59
  "Slow mode ON": "",
60
60
  "The message has been reported to a moderator.": "",
61
61
  "Thread Reply": "",
62
62
  "Unblock User": "",
63
- "Unknown User": "",
63
+ "Unknown User": "Utente sconosciuto",
64
64
  "Unmute User": "",
65
65
  "Unpin from Conversation": "",
66
- "Unread Messages": "",
66
+ "Unread Messages": "Messaggi non letti",
67
67
  "Video": "",
68
68
  "You": "",
69
- "You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
69
+ "You can't send messages in this channel": "",
70
70
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
71
- "{{ index }} of {{ photoLength }}": "",
72
- "{{ replyCount }} Replies": "",
71
+ "{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
72
+ "{{ replyCount }} Replies": "{{ replyCount }} Risposte",
73
73
  "{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
74
74
  "{{ user }} is typing": "",
75
75
  "๐Ÿ™ Attachment...": ""
package/src/i18n/nl.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 Antwoord",
3
3
  "1 Thread Reply": "1 thread antwoord",
4
- "Allow access to your Gallery": "",
5
- "Allow camera access in device settings": "",
6
- "Also send to channel": "",
4
+ "Allow access to your Gallery": "Geef toegang tot uw galerij",
5
+ "Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
6
+ "Also send to channel": "Stuur ook naar kanaal",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Block User": "",
9
9
  "Cancel": "",
@@ -11,7 +11,7 @@
11
11
  "Copy Message": "",
12
12
  "Delete": "",
13
13
  "Delete Message": "",
14
- "Device camera is used to take photos or videos.": "",
14
+ "Device camera is used to take photos or videos.": "De camera van het apparaat wordt gebruikt om foto's of video's te maken.",
15
15
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
16
  "Edit Message": "",
17
17
  "Editing Message": "",
@@ -21,7 +21,7 @@
21
21
  "Error loading channel list...": "",
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
- "File type not supported": "Bestandstype niet ondersteund",
24
+ "File type not supported": "",
25
25
  "Flag": "",
26
26
  "Flag Message": "",
27
27
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -29,47 +29,47 @@
29
29
  "Instant Commands": "Directe Opdrachten",
30
30
  "Let's start chatting!": "",
31
31
  "Links are disabled": "Het versturen van links staat uit",
32
- "Loading channels...": "",
33
- "Loading messages...": "",
34
- "Loading...": "",
32
+ "Loading channels...": "Kanalen aan het laden...",
33
+ "Loading messages...": "Berichten aan het laden...",
34
+ "Loading...": "Aan het laden...",
35
35
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Maximale uploadlimiet voor bestandsgrootte bereikt. Upload een bestand van minder dan {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
36
36
  "Message Reactions": "",
37
37
  "Message deleted": "",
38
38
  "Message flagged": "",
39
39
  "Mute User": "",
40
- "Not supported": "",
40
+ "Not supported": "niet ondersteund",
41
41
  "Nothing yet...": "",
42
42
  "Ok": "",
43
43
  "Only visible to you": "",
44
- "Open Settings": "",
44
+ "Open Settings": "Open instellingen",
45
45
  "Photo": "",
46
- "Photos and Videos": "",
46
+ "Photos and Videos": "Foto's en video's",
47
47
  "Pin to Conversation": "",
48
- "Pinned by": "Vastgemaakt door",
49
- "Please enable access to your photos and videos so you can share them.": "",
50
- "Please select a channel first": "Selecteer eerst een kanaal",
48
+ "Pinned by": "",
49
+ "Please enable access to your photos and videos so you can share them.": "Schakel toegang tot uw foto's en video's in zodat u ze kunt delen.",
50
+ "Please select a channel first": "",
51
51
  "Reconnecting...": "",
52
52
  "Reply": "",
53
53
  "Reply to Message": "",
54
54
  "Resend": "",
55
55
  "Search GIFs": "",
56
- "Select More Photos": "",
56
+ "Select More Photos": "Selecteer Meer foto's",
57
57
  "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
59
59
  "Slow mode ON": "",
60
60
  "The message has been reported to a moderator.": "",
61
61
  "Thread Reply": "",
62
62
  "Unblock User": "",
63
- "Unknown User": "",
63
+ "Unknown User": "Onbekende gebruiker",
64
64
  "Unmute User": "",
65
65
  "Unpin from Conversation": "",
66
- "Unread Messages": "",
66
+ "Unread Messages": "Ongelezen Berichten",
67
67
  "Video": "",
68
68
  "You": "",
69
- "You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
69
+ "You can't send messages in this channel": "",
70
70
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
71
- "{{ index }} of {{ photoLength }}": "",
72
- "{{ replyCount }} Replies": "",
71
+ "{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
72
+ "{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
73
73
  "{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
74
74
  "{{ user }} is typing": "",
75
75
  "๐Ÿ™ Attachment...": ""