stream-chat-react-native-core 5.22.2-beta.8 → 5.23.0-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 +587 -384
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +170 -179
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/components/MessageList/hooks/useMessageList.js +6 -1
- package/lib/commonjs/components/MessageList/hooks/useMessageList.js.map +1 -1
- package/lib/commonjs/components/MessageList/hooks/useShouldScrollToRecentOnNewOwnMessage.js +36 -0
- package/lib/commonjs/components/MessageList/hooks/useShouldScrollToRecentOnNewOwnMessage.js.map +1 -0
- package/lib/commonjs/contexts/channelsStateContext/ChannelsStateContext.js +1 -1
- package/lib/commonjs/contexts/channelsStateContext/ChannelsStateContext.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +31 -15
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/commonjs/i18n/fr.json +15 -15
- package/lib/commonjs/i18n/hi.json +15 -15
- package/lib/commonjs/i18n/it.json +15 -15
- package/lib/commonjs/i18n/nl.json +15 -15
- package/lib/commonjs/i18n/ru.json +15 -15
- package/lib/commonjs/i18n/tr.json +15 -15
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +587 -384
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +170 -179
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/components/MessageList/hooks/useMessageList.js +6 -1
- package/lib/module/components/MessageList/hooks/useMessageList.js.map +1 -1
- package/lib/module/components/MessageList/hooks/useShouldScrollToRecentOnNewOwnMessage.js +36 -0
- package/lib/module/components/MessageList/hooks/useShouldScrollToRecentOnNewOwnMessage.js.map +1 -0
- package/lib/module/contexts/channelsStateContext/ChannelsStateContext.js +1 -1
- package/lib/module/contexts/channelsStateContext/ChannelsStateContext.js.map +1 -1
- package/lib/module/contexts/messageInputContext/MessageInputContext.js +31 -15
- package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/module/i18n/fr.json +15 -15
- package/lib/module/i18n/hi.json +15 -15
- package/lib/module/i18n/it.json +15 -15
- package/lib/module/i18n/nl.json +15 -15
- package/lib/module/i18n/ru.json +15 -15
- package/lib/module/i18n/tr.json +15 -15
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/MessageList/hooks/useMessageList.d.ts +6 -1
- package/lib/typescript/components/MessageList/hooks/useShouldScrollToRecentOnNewOwnMessage.d.ts +4 -0
- package/lib/typescript/i18n/fr.json +15 -15
- package/lib/typescript/i18n/hi.json +15 -15
- package/lib/typescript/i18n/it.json +15 -15
- package/lib/typescript/i18n/nl.json +15 -15
- package/lib/typescript/i18n/ru.json +15 -15
- package/lib/typescript/i18n/tr.json +15 -15
- package/package.json +1 -1
- package/src/components/Channel/Channel.tsx +237 -61
- package/src/components/MessageList/MessageList.tsx +190 -180
- package/src/components/MessageList/__tests__/useMessageList.test.tsx +5 -2
- package/src/components/MessageList/hooks/useMessageList.ts +8 -1
- package/src/components/MessageList/hooks/useShouldScrollToRecentOnNewOwnMessage.ts +44 -0
- package/src/contexts/__tests__/index.test.tsx +1 -1
- package/src/contexts/channelsStateContext/ChannelsStateContext.tsx +1 -1
- package/src/contexts/messageInputContext/MessageInputContext.tsx +7 -1
- package/src/i18n/fr.json +15 -15
- package/src/i18n/hi.json +15 -15
- package/src/i18n/it.json +15 -15
- package/src/i18n/nl.json +15 -15
- package/src/i18n/ru.json +15 -15
- package/src/i18n/tr.json +15 -15
- package/src/version.json +1 -1
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { useEffect, useRef } from 'react';
|
|
2
|
+
|
|
3
|
+
import type { FormatMessageResponse } from 'stream-chat';
|
|
4
|
+
|
|
5
|
+
import type { DefaultStreamChatGenerics } from '../../../types/types';
|
|
6
|
+
|
|
7
|
+
export function useShouldScrollToRecentOnNewOwnMessage<
|
|
8
|
+
StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics,
|
|
9
|
+
>(rawMessageList: FormatMessageResponse<StreamChatGenerics>[], currentUserId?: string) {
|
|
10
|
+
const lastFocusedOwnMessageId = useRef('');
|
|
11
|
+
const initialFocusRegistered = useRef(false);
|
|
12
|
+
const messagesRef = useRef(rawMessageList);
|
|
13
|
+
messagesRef.current = rawMessageList;
|
|
14
|
+
|
|
15
|
+
const isMyOwnNewMessageRef = useRef(() => {
|
|
16
|
+
if (messagesRef.current && messagesRef.current.length > 0) {
|
|
17
|
+
const lastMessage = messagesRef.current[messagesRef.current.length - 1];
|
|
18
|
+
|
|
19
|
+
if (
|
|
20
|
+
lastMessage &&
|
|
21
|
+
lastMessage.user?.id === currentUserId &&
|
|
22
|
+
lastFocusedOwnMessageId.current !== lastMessage.id
|
|
23
|
+
) {
|
|
24
|
+
lastFocusedOwnMessageId.current = lastMessage.id;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
return false;
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
useEffect(() => {
|
|
32
|
+
if (rawMessageList && rawMessageList.length) {
|
|
33
|
+
if (!initialFocusRegistered.current) {
|
|
34
|
+
initialFocusRegistered.current = true;
|
|
35
|
+
const lastMessage = rawMessageList[0];
|
|
36
|
+
if (lastMessage && lastMessage.user?.id === currentUserId) {
|
|
37
|
+
lastFocusedOwnMessageId.current = lastMessage.id;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}, [rawMessageList]);
|
|
42
|
+
|
|
43
|
+
return isMyOwnNewMessageRef;
|
|
44
|
+
}
|
|
@@ -40,7 +40,7 @@ describe('contexts hooks in a component throws an error with message when not wr
|
|
|
40
40
|
],
|
|
41
41
|
[
|
|
42
42
|
useChannelsStateContext,
|
|
43
|
-
`The
|
|
43
|
+
`The useChannelsStateContext hook was called outside the ChannelStateContext Provider. Make sure you have configured OverlayProvider component correctly - https://getstream.io/chat/docs/sdk/reactnative/basics/hello_stream_chat/#overlay-provider`,
|
|
44
44
|
],
|
|
45
45
|
[
|
|
46
46
|
useOwnCapabilitiesContext,
|
|
@@ -191,7 +191,7 @@ export const useChannelsStateContext = <
|
|
|
191
191
|
|
|
192
192
|
if (contextValue === DEFAULT_BASE_CONTEXT_VALUE && !isTestEnvironment()) {
|
|
193
193
|
throw new Error(
|
|
194
|
-
`The
|
|
194
|
+
`The useChannelsStateContext hook was called outside the ChannelStateContext Provider. Make sure you have configured OverlayProvider component correctly - https://getstream.io/chat/docs/sdk/reactnative/basics/hello_stream_chat/#overlay-provider`,
|
|
195
195
|
);
|
|
196
196
|
}
|
|
197
197
|
|
|
@@ -960,7 +960,13 @@ export const MessageInputProvider = <
|
|
|
960
960
|
file.name,
|
|
961
961
|
client.createAbortControllerForNextRequest(),
|
|
962
962
|
);
|
|
963
|
-
|
|
963
|
+
// Compress images selected through file picker when uploading them
|
|
964
|
+
if (file.mimeType?.includes('image')) {
|
|
965
|
+
const compressedUri = await compressedImageURI(file, value.compressImageQuality);
|
|
966
|
+
response = await channel.sendFile(compressedUri, file.name, file.mimeType);
|
|
967
|
+
} else {
|
|
968
|
+
response = await channel.sendFile(file.uri, file.name, file.mimeType);
|
|
969
|
+
}
|
|
964
970
|
uploadAbortControllerRef.current.delete(file.name);
|
|
965
971
|
}
|
|
966
972
|
const extraData: Partial<FileUpload> = { thumb_url: response.thumb_url, url: response.file };
|
package/src/i18n/fr.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"1 Thread Reply": "Réponse à 1 fil",
|
|
4
4
|
"Allow access to your Gallery": "Autoriser l'accès à votre galerie",
|
|
5
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": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Block User": "",
|
|
9
9
|
"Cancel": "",
|
|
@@ -15,7 +15,7 @@
|
|
|
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": "Édite un message",
|
|
18
|
-
"Emoji matching": "
|
|
18
|
+
"Emoji matching": "",
|
|
19
19
|
"Empty message...": "",
|
|
20
20
|
"Error loading": "",
|
|
21
21
|
"Error loading channel list...": "",
|
|
@@ -26,28 +26,28 @@
|
|
|
26
26
|
"Flag Message": "",
|
|
27
27
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
28
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "
|
|
29
|
+
"Instant Commands": "",
|
|
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...": "",
|
|
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.": "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
|
-
"Message Reactions": "",
|
|
36
|
+
"Message Reactions": "Réactions aux messages",
|
|
37
37
|
"Message deleted": "",
|
|
38
38
|
"Message flagged": "",
|
|
39
39
|
"Mute User": "",
|
|
40
40
|
"Not supported": "",
|
|
41
41
|
"Nothing yet...": "",
|
|
42
42
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "",
|
|
43
|
+
"Only visible to you": "Seulement visible par vous",
|
|
44
44
|
"Open Settings": "Ouvrir les paramètres",
|
|
45
|
-
"Photo": "",
|
|
45
|
+
"Photo": "Photo",
|
|
46
46
|
"Photos and Videos": "Photos et vidéos",
|
|
47
47
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "",
|
|
48
|
+
"Pinned by": "Épinglé par",
|
|
49
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": "",
|
|
50
|
+
"Please select a channel first": "Veuillez d'abord selectionnez un canal",
|
|
51
51
|
"Reconnecting...": "",
|
|
52
52
|
"Reply": "",
|
|
53
53
|
"Reply to Message": "",
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"Unmute User": "",
|
|
65
65
|
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "",
|
|
67
|
-
"Video": "",
|
|
67
|
+
"Video": "Vidéo",
|
|
68
68
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "
|
|
70
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
69
|
+
"You can't send messages in this channel": "",
|
|
70
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
71
|
"{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
|
|
72
72
|
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
|
73
73
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
|
|
74
|
-
"{{ user }} is typing": "
|
|
74
|
+
"{{ user }} is typing": "",
|
|
75
75
|
"🏙 Attachment...": ""
|
|
76
76
|
}
|
package/src/i18n/hi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"1 Thread Reply": "1 धागा उत्तर",
|
|
4
4
|
"Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
|
|
5
5
|
"Allow camera access in device settings": "डिवाइस सेटिंग्स में कैमरा एक्सेस की अनुमति दें",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Block User": "",
|
|
9
9
|
"Cancel": "",
|
|
@@ -15,7 +15,7 @@
|
|
|
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": "मैसेज बदला जा रहा है",
|
|
18
|
-
"Emoji matching": "
|
|
18
|
+
"Emoji matching": "",
|
|
19
19
|
"Empty message...": "",
|
|
20
20
|
"Error loading": "",
|
|
21
21
|
"Error loading channel list...": "",
|
|
@@ -26,28 +26,28 @@
|
|
|
26
26
|
"Flag Message": "",
|
|
27
27
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
28
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "
|
|
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
|
-
"Message Reactions": "",
|
|
36
|
+
"Message Reactions": "संदेश प्रतिक्रियाएँ",
|
|
37
37
|
"Message deleted": "",
|
|
38
38
|
"Message flagged": "",
|
|
39
39
|
"Mute User": "",
|
|
40
40
|
"Not supported": "",
|
|
41
41
|
"Nothing yet...": "",
|
|
42
42
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "",
|
|
43
|
+
"Only visible to you": "केवल आपको दिखाई दे रहा है",
|
|
44
44
|
"Open Settings": "सेटिंग्स खोलें",
|
|
45
|
-
"Photo": "",
|
|
45
|
+
"Photo": "तस्वीर",
|
|
46
46
|
"Photos and Videos": "तस्वीरें और वीडियों",
|
|
47
47
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "",
|
|
48
|
+
"Pinned by": "द्वारा पिन किया गया",
|
|
49
49
|
"Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
|
|
50
|
-
"Please select a channel first": "",
|
|
50
|
+
"Please select a channel first": "कृपया पहले एक चैनल चुनें",
|
|
51
51
|
"Reconnecting...": "",
|
|
52
52
|
"Reply": "",
|
|
53
53
|
"Reply to Message": "",
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"Unmute User": "",
|
|
65
65
|
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "",
|
|
67
|
-
"Video": "",
|
|
67
|
+
"Video": "वीडियो",
|
|
68
68
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "
|
|
70
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
69
|
+
"You can't send messages in this channel": "",
|
|
70
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
71
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
72
72
|
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
73
73
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
|
|
74
|
-
"{{ user }} is typing": "
|
|
74
|
+
"{{ user }} is typing": "",
|
|
75
75
|
"🏙 Attachment...": ""
|
|
76
76
|
}
|
package/src/i18n/it.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"1 Thread Reply": "1 Risposta alla Discussione",
|
|
4
4
|
"Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
|
|
5
5
|
"Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Block User": "",
|
|
9
9
|
"Cancel": "",
|
|
@@ -15,7 +15,7 @@
|
|
|
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": "Modificando il Messaggio",
|
|
18
|
-
"Emoji matching": "
|
|
18
|
+
"Emoji matching": "",
|
|
19
19
|
"Empty message...": "",
|
|
20
20
|
"Error loading": "",
|
|
21
21
|
"Error loading channel list...": "",
|
|
@@ -26,28 +26,28 @@
|
|
|
26
26
|
"Flag Message": "",
|
|
27
27
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
28
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "
|
|
29
|
+
"Instant Commands": "",
|
|
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...": "",
|
|
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.": "È 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
|
-
"Message Reactions": "",
|
|
36
|
+
"Message Reactions": "Reazioni ai Messaggi",
|
|
37
37
|
"Message deleted": "",
|
|
38
38
|
"Message flagged": "",
|
|
39
39
|
"Mute User": "",
|
|
40
40
|
"Not supported": "",
|
|
41
41
|
"Nothing yet...": "",
|
|
42
42
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "",
|
|
43
|
+
"Only visible to you": "Visibile solo a te",
|
|
44
44
|
"Open Settings": "Apri Impostazioni",
|
|
45
|
-
"Photo": "",
|
|
45
|
+
"Photo": "Foto",
|
|
46
46
|
"Photos and Videos": "Foto e Video",
|
|
47
47
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "",
|
|
48
|
+
"Pinned by": "Fissato da",
|
|
49
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": "",
|
|
50
|
+
"Please select a channel first": "Seleziona un canale",
|
|
51
51
|
"Reconnecting...": "",
|
|
52
52
|
"Reply": "",
|
|
53
53
|
"Reply to Message": "",
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"Unmute User": "",
|
|
65
65
|
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "",
|
|
67
|
-
"Video": "",
|
|
67
|
+
"Video": "Video",
|
|
68
68
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "
|
|
70
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
69
|
+
"You can't send messages in this channel": "",
|
|
70
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
71
|
"{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
|
|
72
72
|
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
73
73
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
|
|
74
|
-
"{{ user }} is typing": "
|
|
74
|
+
"{{ user }} is typing": "",
|
|
75
75
|
"🏙 Attachment...": ""
|
|
76
76
|
}
|
package/src/i18n/nl.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"1 Thread Reply": "1 thread antwoord",
|
|
4
4
|
"Allow access to your Gallery": "Geef toegang tot uw galerij",
|
|
5
5
|
"Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Block User": "",
|
|
9
9
|
"Cancel": "",
|
|
@@ -15,7 +15,7 @@
|
|
|
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": "Bericht aanpassen",
|
|
18
|
-
"Emoji matching": "
|
|
18
|
+
"Emoji matching": "",
|
|
19
19
|
"Empty message...": "",
|
|
20
20
|
"Error loading": "",
|
|
21
21
|
"Error loading channel list...": "",
|
|
@@ -26,28 +26,28 @@
|
|
|
26
26
|
"Flag Message": "",
|
|
27
27
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
28
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "
|
|
29
|
+
"Instant Commands": "",
|
|
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...": "",
|
|
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.": "Maximale uploadlimiet voor bestandsgrootte bereikt. Upload een bestand van minder dan {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
|
|
36
|
-
"Message Reactions": "",
|
|
36
|
+
"Message Reactions": "Bericht Reacties",
|
|
37
37
|
"Message deleted": "",
|
|
38
38
|
"Message flagged": "",
|
|
39
39
|
"Mute User": "",
|
|
40
40
|
"Not supported": "",
|
|
41
41
|
"Nothing yet...": "",
|
|
42
42
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "",
|
|
43
|
+
"Only visible to you": "Alleen zichtbaar voor jou",
|
|
44
44
|
"Open Settings": "Open instellingen",
|
|
45
|
-
"Photo": "",
|
|
45
|
+
"Photo": "Foto",
|
|
46
46
|
"Photos and Videos": "Foto's en video's",
|
|
47
47
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "",
|
|
48
|
+
"Pinned by": "Vastgemaakt door",
|
|
49
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": "",
|
|
50
|
+
"Please select a channel first": "Selecteer eerst een kanaal",
|
|
51
51
|
"Reconnecting...": "",
|
|
52
52
|
"Reply": "",
|
|
53
53
|
"Reply to Message": "",
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"Unmute User": "",
|
|
65
65
|
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "",
|
|
67
|
-
"Video": "",
|
|
67
|
+
"Video": "Video",
|
|
68
68
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "
|
|
70
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
69
|
+
"You can't send messages in this channel": "",
|
|
70
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
71
|
"{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
|
|
72
72
|
"{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
|
|
73
73
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
|
|
74
|
-
"{{ user }} is typing": "
|
|
74
|
+
"{{ user }} is typing": "",
|
|
75
75
|
"🏙 Attachment...": ""
|
|
76
76
|
}
|
package/src/i18n/ru.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"1 Thread Reply": "1 тема Ответить",
|
|
4
4
|
"Allow access to your Gallery": "Разрешить доступ к вашей галерее",
|
|
5
5
|
"Allow camera access in device settings": "Разрешите доступ к камере в настройках устройства.",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Block User": "",
|
|
9
9
|
"Cancel": "",
|
|
@@ -15,7 +15,7 @@
|
|
|
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": "Редактирование сообщения",
|
|
18
|
-
"Emoji matching": "
|
|
18
|
+
"Emoji matching": "",
|
|
19
19
|
"Empty message...": "",
|
|
20
20
|
"Error loading": "",
|
|
21
21
|
"Error loading channel list...": "",
|
|
@@ -26,28 +26,28 @@
|
|
|
26
26
|
"Flag Message": "",
|
|
27
27
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
28
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "
|
|
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
|
-
"Message Reactions": "",
|
|
36
|
+
"Message Reactions": "Сообщения Реакции",
|
|
37
37
|
"Message deleted": "",
|
|
38
38
|
"Message flagged": "",
|
|
39
39
|
"Mute User": "",
|
|
40
40
|
"Not supported": "",
|
|
41
41
|
"Nothing yet...": "",
|
|
42
42
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "",
|
|
43
|
+
"Only visible to you": "Видно только вам",
|
|
44
44
|
"Open Settings": "Открыть настройки",
|
|
45
|
-
"Photo": "",
|
|
45
|
+
"Photo": "Фото",
|
|
46
46
|
"Photos and Videos": "Фото и видео",
|
|
47
47
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "",
|
|
48
|
+
"Pinned by": "Закреплено пользователем",
|
|
49
49
|
"Please enable access to your photos and videos so you can share them.": "Разрешите доступ к своим фотографиям и видео, чтобы вы могли ими поделиться.",
|
|
50
|
-
"Please select a channel first": "",
|
|
50
|
+
"Please select a channel first": "Пожалуйста, сначала выберите канал",
|
|
51
51
|
"Reconnecting...": "",
|
|
52
52
|
"Reply": "",
|
|
53
53
|
"Reply to Message": "",
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"Unmute User": "",
|
|
65
65
|
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "",
|
|
67
|
-
"Video": "",
|
|
67
|
+
"Video": "видео",
|
|
68
68
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "
|
|
70
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
69
|
+
"You can't send messages in this channel": "",
|
|
70
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
71
|
"{{ index }} of {{ photoLength }}": "{{ index }} из {{ photoLength }}",
|
|
72
72
|
"{{ replyCount }} Replies": "{{ replyCount }} Ответов",
|
|
73
73
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Ответы в темах",
|
|
74
|
-
"{{ user }} is typing": "
|
|
74
|
+
"{{ user }} is typing": "",
|
|
75
75
|
"🏙 Attachment...": ""
|
|
76
76
|
}
|
package/src/i18n/tr.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"1 Thread Reply": "1 Konu Yanıtı",
|
|
4
4
|
"Allow access to your Gallery": "Galerinize erişime izin verin",
|
|
5
5
|
"Allow camera access in device settings": "Cihaz ayarlarında kamera erişimine izin ver",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Block User": "",
|
|
9
9
|
"Cancel": "",
|
|
@@ -15,7 +15,7 @@
|
|
|
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": "Mesaj Düzenleniyor",
|
|
18
|
-
"Emoji matching": "
|
|
18
|
+
"Emoji matching": "",
|
|
19
19
|
"Empty message...": "",
|
|
20
20
|
"Error loading": "",
|
|
21
21
|
"Error loading channel list...": "",
|
|
@@ -26,28 +26,28 @@
|
|
|
26
26
|
"Flag Message": "",
|
|
27
27
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
28
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "
|
|
29
|
+
"Instant Commands": "",
|
|
30
30
|
"Let's start chatting!": "",
|
|
31
31
|
"Links are disabled": "Bağlantılar devre dışı",
|
|
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.": "Maksimum dosya boyutu yükleme sınırına ulaşıldı. Lütfen {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB'ın altında bir dosya yükleyin.",
|
|
36
|
-
"Message Reactions": "",
|
|
36
|
+
"Message Reactions": "Mesaj Tepkileri",
|
|
37
37
|
"Message deleted": "",
|
|
38
38
|
"Message flagged": "",
|
|
39
39
|
"Mute User": "",
|
|
40
40
|
"Not supported": "",
|
|
41
41
|
"Nothing yet...": "",
|
|
42
42
|
"Ok": "",
|
|
43
|
-
"Only visible to you": "",
|
|
43
|
+
"Only visible to you": "Sadece siz görebilirsiniz",
|
|
44
44
|
"Open Settings": "Ayarları aç",
|
|
45
|
-
"Photo": "",
|
|
45
|
+
"Photo": "Fotoğraf",
|
|
46
46
|
"Photos and Videos": "Fotoğraflar ve Videolar",
|
|
47
47
|
"Pin to Conversation": "",
|
|
48
|
-
"Pinned by": "",
|
|
48
|
+
"Pinned by": "Tarafından sabitlendi",
|
|
49
49
|
"Please enable access to your photos and videos so you can share them.": "Paylaşım yapabilmek için lutfen fotoğraflarınıza ve videolarınıza erişimi etkinleştirin.",
|
|
50
|
-
"Please select a channel first": "",
|
|
50
|
+
"Please select a channel first": "Lütfen önce bir kanal seçiniz",
|
|
51
51
|
"Reconnecting...": "",
|
|
52
52
|
"Reply": "",
|
|
53
53
|
"Reply to Message": "",
|
|
@@ -64,13 +64,13 @@
|
|
|
64
64
|
"Unmute User": "",
|
|
65
65
|
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "",
|
|
67
|
-
"Video": "",
|
|
67
|
+
"Video": "Video",
|
|
68
68
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "
|
|
70
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
69
|
+
"You can't send messages in this channel": "",
|
|
70
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
71
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
72
72
|
"{{ replyCount }} Replies": "{{ replyCount }} Cevap",
|
|
73
73
|
"{{ replyCount }} Thread Replies": "{{responseCount}} Konu Cevapı",
|
|
74
|
-
"{{ user }} is typing": "
|
|
74
|
+
"{{ user }} is typing": "",
|
|
75
75
|
"🏙 Attachment...": ""
|
|
76
76
|
}
|
package/src/version.json
CHANGED