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.
- package/lib/commonjs/components/Channel/Channel.js +33 -32
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/MessageInput/MessageInput.js +28 -26
- package/lib/commonjs/components/MessageInput/MessageInput.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +41 -43
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/components/MessageList/hooks/useMessageList.js +1 -2
- package/lib/commonjs/components/MessageList/hooks/useMessageList.js.map +1 -1
- package/lib/commonjs/i18n/fr.json +21 -21
- package/lib/commonjs/i18n/hi.json +21 -21
- package/lib/commonjs/i18n/it.json +21 -21
- package/lib/commonjs/i18n/nl.json +21 -21
- package/lib/commonjs/i18n/ru.json +21 -21
- package/lib/commonjs/i18n/tr.json +21 -21
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +33 -32
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/MessageInput/MessageInput.js +28 -26
- package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +41 -43
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/components/MessageList/hooks/useMessageList.js +1 -2
- package/lib/module/components/MessageList/hooks/useMessageList.js.map +1 -1
- package/lib/module/i18n/fr.json +21 -21
- package/lib/module/i18n/hi.json +21 -21
- package/lib/module/i18n/it.json +21 -21
- package/lib/module/i18n/nl.json +21 -21
- package/lib/module/i18n/ru.json +21 -21
- package/lib/module/i18n/tr.json +21 -21
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/MessageInput/MessageInput.d.ts +1 -3
- package/lib/typescript/components/MessageList/MessageList.d.ts +1 -5
- package/lib/typescript/i18n/fr.json +21 -21
- package/lib/typescript/i18n/hi.json +21 -21
- package/lib/typescript/i18n/it.json +21 -21
- package/lib/typescript/i18n/nl.json +21 -21
- package/lib/typescript/i18n/ru.json +21 -21
- package/lib/typescript/i18n/tr.json +21 -21
- package/package.json +1 -1
- package/src/components/Channel/Channel.tsx +22 -17
- package/src/components/MessageInput/MessageInput.tsx +12 -5
- package/src/components/MessageList/MessageList.tsx +12 -15
- package/src/components/MessageList/hooks/useMessageList.ts +2 -2
- package/src/i18n/fr.json +21 -21
- package/src/i18n/hi.json +21 -21
- package/src/i18n/it.json +21 -21
- package/src/i18n/nl.json +21 -21
- package/src/i18n/ru.json +21 -21
- package/src/i18n/tr.json +21 -21
- 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
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
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
|
-
|
|
787
|
-
|
|
788
|
-
|
|
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
|
|
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'] = (
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
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<
|
|
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 {
|
|
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
|
-
|
|
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
|
-
|
|
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": "
|
|
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": "
|
|
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.": "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": "
|
|
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": "
|
|
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": "
|
|
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.": "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": "
|
|
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": "
|
|
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": "
|
|
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.": "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": "
|
|
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...": ""
|