stream-chat-react-native-core 5.22.1 → 5.22.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 +160 -163
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreatePaginatedMessageListContext.js +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreatePaginatedMessageListContext.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/utils/generateMarkdownText.js +2 -2
- package/lib/commonjs/components/Message/MessageSimple/utils/generateMarkdownText.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/utils/parseLinks.js +2 -2
- package/lib/commonjs/components/Message/MessageSimple/utils/parseLinks.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/utils/parseLinks.test.js +9 -12
- package/lib/commonjs/components/Message/MessageSimple/utils/parseLinks.test.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +30 -25
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/i18n/en.json +1 -1
- package/lib/commonjs/i18n/fr.json +51 -51
- package/lib/commonjs/i18n/hi.json +51 -51
- package/lib/commonjs/i18n/it.json +51 -51
- package/lib/commonjs/i18n/nl.json +48 -48
- package/lib/commonjs/i18n/ru.json +48 -48
- package/lib/commonjs/i18n/tr.json +48 -48
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +160 -163
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Channel/hooks/useCreatePaginatedMessageListContext.js +1 -1
- package/lib/module/components/Channel/hooks/useCreatePaginatedMessageListContext.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/utils/generateMarkdownText.js +2 -2
- package/lib/module/components/Message/MessageSimple/utils/generateMarkdownText.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/utils/parseLinks.js +2 -2
- package/lib/module/components/Message/MessageSimple/utils/parseLinks.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/utils/parseLinks.test.js +9 -12
- package/lib/module/components/Message/MessageSimple/utils/parseLinks.test.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +30 -25
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/i18n/en.json +1 -1
- package/lib/module/i18n/fr.json +51 -51
- package/lib/module/i18n/hi.json +51 -51
- package/lib/module/i18n/it.json +51 -51
- package/lib/module/i18n/nl.json +48 -48
- package/lib/module/i18n/ru.json +48 -48
- package/lib/module/i18n/tr.json +48 -48
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Message/MessageSimple/utils/parseLinks.d.ts +1 -1
- package/lib/typescript/i18n/en.json +1 -1
- package/lib/typescript/i18n/fr.json +51 -51
- package/lib/typescript/i18n/hi.json +51 -51
- package/lib/typescript/i18n/it.json +51 -51
- package/lib/typescript/i18n/nl.json +48 -48
- package/lib/typescript/i18n/ru.json +48 -48
- package/lib/typescript/i18n/tr.json +48 -48
- package/package.json +1 -1
- package/src/components/Channel/Channel.tsx +75 -45
- package/src/components/Channel/hooks/useCreatePaginatedMessageListContext.ts +8 -1
- package/src/components/Message/MessageSimple/utils/generateMarkdownText.ts +2 -2
- package/src/components/Message/MessageSimple/utils/parseLinks.test.ts +6 -11
- package/src/components/Message/MessageSimple/utils/parseLinks.ts +2 -2
- package/src/components/MessageList/MessageList.tsx +28 -9
- package/src/i18n/en.json +1 -1
- package/src/i18n/fr.json +51 -51
- package/src/i18n/hi.json +51 -51
- package/src/i18n/it.json +51 -51
- package/src/i18n/nl.json +48 -48
- package/src/i18n/ru.json +48 -48
- package/src/i18n/tr.json +48 -48
- package/src/version.json +1 -1
|
@@ -16,10 +16,7 @@ describe('parseLinksFromText', () => {
|
|
|
16
16
|
],
|
|
17
17
|
['reactnative.dev', 'http://reactnative.dev'],
|
|
18
18
|
['hinge.health/schedule-with-a-coach', 'http://hinge.health/schedule-with-a-coach'],
|
|
19
|
-
[
|
|
20
|
-
'https://zh.wikipedia.org/wiki/挪威牛油危機',
|
|
21
|
-
'https://zh.wikipedia.org/wiki/%E6%8C%AA%E5%A8%81%E7%89%9B%E6%B2%B9%E5%8D%B1%E6%A9%9F',
|
|
22
|
-
],
|
|
19
|
+
['https://zh.wikipedia.org/wiki/挪威牛油危機', 'https://zh.wikipedia.org/wiki/挪威牛油危機'],
|
|
23
20
|
[
|
|
24
21
|
'https://getstream.io/chat/docs/react-native/?language=javascript',
|
|
25
22
|
'https://getstream.io/chat/docs/react-native/?language=javascript',
|
|
@@ -32,7 +29,7 @@ describe('parseLinksFromText', () => {
|
|
|
32
29
|
],
|
|
33
30
|
])('Returns the encoded value of %p as %p', (link, expected) => {
|
|
34
31
|
const result = parseLinksFromText(link);
|
|
35
|
-
expect(result[0]?.
|
|
32
|
+
expect(result[0]?.url).toBe(expected);
|
|
36
33
|
});
|
|
37
34
|
it('parses fqdn', () => {
|
|
38
35
|
const input = `We have put the apim bol,
|
|
@@ -43,9 +40,8 @@ describe('parseLinksFromText', () => {
|
|
|
43
40
|
const result = parseLinksFromText(input);
|
|
44
41
|
expect(result).toEqual([
|
|
45
42
|
{
|
|
46
|
-
encodedUrl:
|
|
47
|
-
'https://www.contrived-example.com:8080/sub/page.php?p1=1%F0%9F%87%B3%F0%9F%87%B4&p2=2#fragment-identifier',
|
|
48
43
|
raw: 'https://www.contrived-example.com:8080/sub/page.php?p1=1🇳🇴&p2=2#fragment-identifier',
|
|
44
|
+
url: 'https://www.contrived-example.com:8080/sub/page.php?p1=1🇳🇴&p2=2#fragment-identifier',
|
|
49
45
|
},
|
|
50
46
|
]);
|
|
51
47
|
});
|
|
@@ -56,15 +52,15 @@ describe('parseLinksFromText', () => {
|
|
|
56
52
|
['support_rn@getstream.io'],
|
|
57
53
|
])('Can parse the email address %p', (email) => {
|
|
58
54
|
const result = parseLinksFromText(email);
|
|
59
|
-
expect(result[0].
|
|
55
|
+
expect(result[0].url).toBe('mailto:' + email);
|
|
60
56
|
expect(result[0].raw).toBe(email);
|
|
61
57
|
});
|
|
62
58
|
it("doesn't double the mailto prefix", () => {
|
|
63
59
|
const input = 'mailto:support@getstream.io';
|
|
64
60
|
const result = parseLinksFromText(input);
|
|
65
61
|
expect(result[0]).toEqual({
|
|
66
|
-
encodedUrl: input,
|
|
67
62
|
raw: input,
|
|
63
|
+
url: input,
|
|
68
64
|
});
|
|
69
65
|
});
|
|
70
66
|
it('Does not falsely parse LINKs from text content', () => {
|
|
@@ -77,15 +73,14 @@ describe('parseLinksFromText', () => {
|
|
|
77
73
|
getstream.io
|
|
78
74
|
`;
|
|
79
75
|
const result = parseLinksFromText(input);
|
|
80
|
-
console.log({ result });
|
|
81
76
|
expect(result).toHaveLength(2);
|
|
82
77
|
});
|
|
83
78
|
it('Encodes incomplete emoji unicode', () => {
|
|
84
79
|
const input = 'https://getstream.io/�';
|
|
85
80
|
const result = parseLinksFromText(input);
|
|
86
81
|
expect(result[0]).toEqual({
|
|
87
|
-
encodedUrl: 'https://getstream.io/%EF%BF%BD',
|
|
88
82
|
raw: input,
|
|
83
|
+
url: 'https://getstream.io/�',
|
|
89
84
|
});
|
|
90
85
|
});
|
|
91
86
|
});
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { find } from 'linkifyjs';
|
|
2
2
|
|
|
3
3
|
interface LinkInfo {
|
|
4
|
-
encodedUrl: string;
|
|
5
4
|
raw: string;
|
|
5
|
+
url: string;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -27,8 +27,8 @@ export const parseLinksFromText = (input: string): LinkInfo[] => {
|
|
|
27
27
|
const emails = find(strippedInput, 'email');
|
|
28
28
|
|
|
29
29
|
const result: LinkInfo[] = [...links, ...emails].map(({ href, value }) => ({
|
|
30
|
-
encodedUrl: encodeURI(href),
|
|
31
30
|
raw: value,
|
|
31
|
+
url: href,
|
|
32
32
|
}));
|
|
33
33
|
|
|
34
34
|
return result;
|
|
@@ -524,7 +524,7 @@ const MessageListWithContext = <
|
|
|
524
524
|
|
|
525
525
|
messageListLengthBeforeUpdate.current = messageListLengthAfterUpdate;
|
|
526
526
|
topMessageBeforeUpdate.current = topMessageAfterUpdate;
|
|
527
|
-
}, [messageListLengthAfterUpdate, topMessageAfterUpdate?.id]);
|
|
527
|
+
}, [hasNoMoreRecentMessagesToLoad, messageListLengthAfterUpdate, topMessageAfterUpdate?.id]);
|
|
528
528
|
|
|
529
529
|
useEffect(() => {
|
|
530
530
|
setAutoscrollToTop(hasNoMoreRecentMessagesToLoad);
|
|
@@ -729,13 +729,13 @@ const MessageListWithContext = <
|
|
|
729
729
|
};
|
|
730
730
|
|
|
731
731
|
/**
|
|
732
|
-
*
|
|
733
|
-
* 1.
|
|
734
|
-
* 2.
|
|
735
|
-
*
|
|
736
|
-
*
|
|
732
|
+
* Method used only inside the List to do these things
|
|
733
|
+
* 1. Mark channel as read if scroll is at the bottom
|
|
734
|
+
* 2. Call maybeCallOnStartReached if scroll is at the top
|
|
735
|
+
* 3. Call maybeCallOnEndReached if scroll is at the bottom
|
|
736
|
+
* 4. Show scrollToBottom button if scroll is at the bottom and messages are not the latest
|
|
737
737
|
*/
|
|
738
|
-
const
|
|
738
|
+
const onScrollEvent: ScrollViewProps['onScroll'] = (event) => {
|
|
739
739
|
if (!channel || !channelResyncScrollSet.current) {
|
|
740
740
|
return;
|
|
741
741
|
}
|
|
@@ -757,6 +757,15 @@ const MessageListWithContext = <
|
|
|
757
757
|
|
|
758
758
|
// Show scrollToBottom button once scroll position goes beyond 150.
|
|
759
759
|
const isScrollAtBottom = offset <= 150;
|
|
760
|
+
|
|
761
|
+
/**
|
|
762
|
+
* Following if condition covers following cases:
|
|
763
|
+
* 1. If I scroll up -> show scrollToBottom button.
|
|
764
|
+
* 2. If I scroll to bottom of screen
|
|
765
|
+
* |-> hide scrollToBottom button.
|
|
766
|
+
* |-> if channel is unread, call markRead().
|
|
767
|
+
*/
|
|
768
|
+
|
|
760
769
|
const showScrollToBottomButton = !isScrollAtBottom || !hasNoMoreRecentMessagesToLoad;
|
|
761
770
|
|
|
762
771
|
const shouldMarkRead =
|
|
@@ -767,6 +776,10 @@ const MessageListWithContext = <
|
|
|
767
776
|
}
|
|
768
777
|
|
|
769
778
|
setScrollToBottomButtonVisible(showScrollToBottomButton);
|
|
779
|
+
};
|
|
780
|
+
|
|
781
|
+
const handleScroll: ScrollViewProps['onScroll'] = (event) => {
|
|
782
|
+
onScrollEvent(event);
|
|
770
783
|
|
|
771
784
|
if (onListScroll) {
|
|
772
785
|
onListScroll(event);
|
|
@@ -979,8 +992,14 @@ const MessageListWithContext = <
|
|
|
979
992
|
closePicker();
|
|
980
993
|
}
|
|
981
994
|
};
|
|
982
|
-
const onScrollBeginDrag = () =>
|
|
983
|
-
|
|
995
|
+
const onScrollBeginDrag: ScrollViewProps['onScrollBeginDrag'] = (event) => {
|
|
996
|
+
!hasMoved && selectedPicker && setHasMoved(true);
|
|
997
|
+
onScrollEvent(event);
|
|
998
|
+
};
|
|
999
|
+
const onScrollEndDrag: ScrollViewProps['onScrollEndDrag'] = (event) => {
|
|
1000
|
+
hasMoved && selectedPicker && setHasMoved(false);
|
|
1001
|
+
onScrollEvent(event);
|
|
1002
|
+
};
|
|
984
1003
|
|
|
985
1004
|
const refCallback = (ref: FlatListType<MessageType<StreamChatGenerics>>) => {
|
|
986
1005
|
flatListRef.current = ref;
|
package/src/i18n/en.json
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"File type not supported": "File type not supported",
|
|
25
25
|
"Flag": "Flag",
|
|
26
26
|
"Flag Message": "Flag Message",
|
|
27
|
-
"Flag action failed either due to a network issue or the message is already flagged": "Flag action failed either due to a network issue or the message is already flagged
|
|
27
|
+
"Flag action failed either due to a network issue or the message is already flagged": "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?": "How about sending your first message to a friend?",
|
|
29
29
|
"Instant Commands": "Instant Commands",
|
|
30
30
|
"Let's start chatting!": "Let's start chatting!",
|
package/src/i18n/fr.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Réponse",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
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
6
|
"Also send to channel": "Envoyer également à la chaîne",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Block User": "
|
|
9
|
-
"Cancel": "
|
|
10
|
-
"Cannot Flag Message": "
|
|
11
|
-
"Copy Message": "
|
|
12
|
-
"Delete": "
|
|
13
|
-
"Delete Message": "
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Block User": "",
|
|
9
|
+
"Cancel": "",
|
|
10
|
+
"Cannot Flag Message": "",
|
|
11
|
+
"Copy Message": "",
|
|
12
|
+
"Delete": "",
|
|
13
|
+
"Delete Message": "",
|
|
14
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
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
16
|
-
"Edit Message": "
|
|
17
|
-
"Editing Message": "
|
|
18
|
-
"Emoji matching": "
|
|
19
|
-
"Empty message...": "
|
|
20
|
-
"Error loading": "
|
|
21
|
-
"Error loading channel list...": "
|
|
22
|
-
"Error loading messages for this channel...": "
|
|
23
|
-
"Error while loading, please reload/refresh": "
|
|
24
|
-
"File type not supported": "
|
|
25
|
-
"Flag": "
|
|
26
|
-
"Flag Message": "
|
|
27
|
-
"Flag action failed either due to a network issue or the message is already flagged": "
|
|
28
|
-
"How about sending your first message to a friend?": "
|
|
29
|
-
"Instant Commands": "
|
|
30
|
-
"Let's start chatting!": "
|
|
31
|
-
"Links are disabled": "
|
|
15
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
|
+
"Edit Message": "",
|
|
17
|
+
"Editing Message": "",
|
|
18
|
+
"Emoji matching": "",
|
|
19
|
+
"Empty message...": "",
|
|
20
|
+
"Error loading": "",
|
|
21
|
+
"Error loading channel list...": "",
|
|
22
|
+
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error while loading, please reload/refresh": "",
|
|
24
|
+
"File type not supported": "",
|
|
25
|
+
"Flag": "",
|
|
26
|
+
"Flag Message": "",
|
|
27
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
|
+
"How about sending your first message to a friend?": "",
|
|
29
|
+
"Instant Commands": "",
|
|
30
|
+
"Let's start chatting!": "",
|
|
31
|
+
"Links are disabled": "",
|
|
32
32
|
"Loading channels...": "Chargement des canaux...",
|
|
33
33
|
"Loading messages...": "Chargement des messages...",
|
|
34
34
|
"Loading...": "Chargement...",
|
|
35
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
36
|
-
"Message Reactions": "
|
|
37
|
-
"Message deleted": "
|
|
38
|
-
"Message flagged": "
|
|
39
|
-
"Mute User": "
|
|
40
|
-
"Not supported": "
|
|
41
|
-
"Nothing yet...": "
|
|
42
|
-
"Ok": "
|
|
43
|
-
"Only visible to you": "
|
|
35
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
36
|
+
"Message Reactions": "",
|
|
37
|
+
"Message deleted": "",
|
|
38
|
+
"Message flagged": "",
|
|
39
|
+
"Mute User": "",
|
|
40
|
+
"Not supported": "",
|
|
41
|
+
"Nothing yet...": "",
|
|
42
|
+
"Ok": "",
|
|
43
|
+
"Only visible to you": "",
|
|
44
44
|
"Open Settings": "Ouvrir les paramètres",
|
|
45
45
|
"Photo": "Photo",
|
|
46
46
|
"Photos and Videos": "Photos et vidéos",
|
|
47
|
-
"Pin to Conversation": "
|
|
48
|
-
"Pinned by": "
|
|
47
|
+
"Pin to Conversation": "",
|
|
48
|
+
"Pinned by": "",
|
|
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
50
|
"Please select a channel first": "Veuillez d'abord selectionnez un canal",
|
|
51
|
-
"Reconnecting...": "
|
|
52
|
-
"Reply": "
|
|
51
|
+
"Reconnecting...": "",
|
|
52
|
+
"Reply": "",
|
|
53
53
|
"Reply to Message": "Répondre au message",
|
|
54
|
-
"Resend": "
|
|
55
|
-
"Search GIFs": "
|
|
54
|
+
"Resend": "",
|
|
55
|
+
"Search GIFs": "",
|
|
56
56
|
"Select More Photos": "Sélectionner plus de photos",
|
|
57
|
-
"Send a message": "
|
|
58
|
-
"Sending links is not allowed in this conversation": "
|
|
59
|
-
"Slow mode ON": "
|
|
60
|
-
"The message has been reported to a moderator.": "
|
|
61
|
-
"Thread Reply": "
|
|
62
|
-
"Unblock User": "
|
|
57
|
+
"Send a message": "",
|
|
58
|
+
"Sending links is not allowed in this conversation": "",
|
|
59
|
+
"Slow mode ON": "",
|
|
60
|
+
"The message has been reported to a moderator.": "",
|
|
61
|
+
"Thread Reply": "",
|
|
62
|
+
"Unblock User": "",
|
|
63
63
|
"Unknown User": "Utilisateur inconnu",
|
|
64
|
-
"Unmute User": "
|
|
65
|
-
"Unpin from Conversation": "
|
|
64
|
+
"Unmute User": "",
|
|
65
|
+
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "Messages non lus",
|
|
67
67
|
"Video": "Vidéo",
|
|
68
|
-
"You": "
|
|
68
|
+
"You": "",
|
|
69
69
|
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
70
70
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
|
|
71
71
|
"{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
|
|
72
72
|
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
|
73
|
-
"{{ replyCount }} Thread Replies": "
|
|
73
|
+
"{{ replyCount }} Thread Replies": "",
|
|
74
74
|
"{{ user }} is typing": "{{ user }} est en train d'écrire",
|
|
75
|
-
"🏙 Attachment...": "
|
|
75
|
+
"🏙 Attachment...": ""
|
|
76
76
|
}
|
package/src/i18n/hi.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 रिप्लाई",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
|
|
5
5
|
"Allow camera access in device settings": "डिवाइस सेटिंग्स में कैमरा एक्सेस की अनुमति दें",
|
|
6
6
|
"Also send to channel": "चैनल को भी भेजें",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Block User": "
|
|
9
|
-
"Cancel": "
|
|
10
|
-
"Cannot Flag Message": "
|
|
11
|
-
"Copy Message": "
|
|
12
|
-
"Delete": "
|
|
13
|
-
"Delete Message": "
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Block User": "",
|
|
9
|
+
"Cancel": "",
|
|
10
|
+
"Cannot Flag Message": "",
|
|
11
|
+
"Copy Message": "",
|
|
12
|
+
"Delete": "",
|
|
13
|
+
"Delete Message": "",
|
|
14
14
|
"Device camera is used to take photos or videos.": "डिवाइस कैमरे का उपयोग फ़ोटो या वीडियो लेने के लिए किया जाता है।",
|
|
15
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
16
|
-
"Edit Message": "
|
|
17
|
-
"Editing Message": "
|
|
18
|
-
"Emoji matching": "
|
|
19
|
-
"Empty message...": "
|
|
20
|
-
"Error loading": "
|
|
21
|
-
"Error loading channel list...": "
|
|
22
|
-
"Error loading messages for this channel...": "
|
|
23
|
-
"Error while loading, please reload/refresh": "
|
|
24
|
-
"File type not supported": "
|
|
25
|
-
"Flag": "
|
|
26
|
-
"Flag Message": "
|
|
27
|
-
"Flag action failed either due to a network issue or the message is already flagged": "
|
|
28
|
-
"How about sending your first message to a friend?": "
|
|
29
|
-
"Instant Commands": "
|
|
30
|
-
"Let's start chatting!": "
|
|
31
|
-
"Links are disabled": "
|
|
15
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
|
+
"Edit Message": "",
|
|
17
|
+
"Editing Message": "",
|
|
18
|
+
"Emoji matching": "",
|
|
19
|
+
"Empty message...": "",
|
|
20
|
+
"Error loading": "",
|
|
21
|
+
"Error loading channel list...": "",
|
|
22
|
+
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error while loading, please reload/refresh": "",
|
|
24
|
+
"File type not supported": "",
|
|
25
|
+
"Flag": "",
|
|
26
|
+
"Flag Message": "",
|
|
27
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
|
+
"How about sending your first message to a friend?": "",
|
|
29
|
+
"Instant Commands": "",
|
|
30
|
+
"Let's start chatting!": "",
|
|
31
|
+
"Links are disabled": "",
|
|
32
32
|
"Loading channels...": "चैनल लोड हो रहे हैं...",
|
|
33
33
|
"Loading messages...": "मेसेजस लोड हो रहे हैं...",
|
|
34
34
|
"Loading...": "लोड हो रहा है...",
|
|
35
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
36
|
-
"Message Reactions": "
|
|
37
|
-
"Message deleted": "
|
|
38
|
-
"Message flagged": "
|
|
39
|
-
"Mute User": "
|
|
40
|
-
"Not supported": "
|
|
41
|
-
"Nothing yet...": "
|
|
42
|
-
"Ok": "
|
|
43
|
-
"Only visible to you": "
|
|
35
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
36
|
+
"Message Reactions": "",
|
|
37
|
+
"Message deleted": "",
|
|
38
|
+
"Message flagged": "",
|
|
39
|
+
"Mute User": "",
|
|
40
|
+
"Not supported": "",
|
|
41
|
+
"Nothing yet...": "",
|
|
42
|
+
"Ok": "",
|
|
43
|
+
"Only visible to you": "",
|
|
44
44
|
"Open Settings": "सेटिंग्स खोलें",
|
|
45
45
|
"Photo": "तस्वीर",
|
|
46
46
|
"Photos and Videos": "तस्वीरें और वीडियों",
|
|
47
|
-
"Pin to Conversation": "
|
|
48
|
-
"Pinned by": "
|
|
47
|
+
"Pin to Conversation": "",
|
|
48
|
+
"Pinned by": "",
|
|
49
49
|
"Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
|
|
50
50
|
"Please select a channel first": "कृपया पहले एक चैनल चुनें",
|
|
51
|
-
"Reconnecting...": "
|
|
52
|
-
"Reply": "
|
|
51
|
+
"Reconnecting...": "",
|
|
52
|
+
"Reply": "",
|
|
53
53
|
"Reply to Message": "संदेश का जवाब दें",
|
|
54
|
-
"Resend": "
|
|
55
|
-
"Search GIFs": "
|
|
54
|
+
"Resend": "",
|
|
55
|
+
"Search GIFs": "",
|
|
56
56
|
"Select More Photos": "अधिक फ़ोटो चुनें",
|
|
57
|
-
"Send a message": "
|
|
58
|
-
"Sending links is not allowed in this conversation": "
|
|
59
|
-
"Slow mode ON": "
|
|
60
|
-
"The message has been reported to a moderator.": "
|
|
61
|
-
"Thread Reply": "
|
|
62
|
-
"Unblock User": "
|
|
57
|
+
"Send a message": "",
|
|
58
|
+
"Sending links is not allowed in this conversation": "",
|
|
59
|
+
"Slow mode ON": "",
|
|
60
|
+
"The message has been reported to a moderator.": "",
|
|
61
|
+
"Thread Reply": "",
|
|
62
|
+
"Unblock User": "",
|
|
63
63
|
"Unknown User": "अज्ञात उपयोगकर्ता",
|
|
64
|
-
"Unmute User": "
|
|
65
|
-
"Unpin from Conversation": "
|
|
64
|
+
"Unmute User": "",
|
|
65
|
+
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "अपठित संदेश",
|
|
67
67
|
"Video": "वीडियो",
|
|
68
|
-
"You": "
|
|
68
|
+
"You": "",
|
|
69
69
|
"You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
|
|
70
70
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
71
71
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
72
72
|
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
73
|
-
"{{ replyCount }} Thread Replies": "
|
|
73
|
+
"{{ replyCount }} Thread Replies": "",
|
|
74
74
|
"{{ user }} is typing": "{{ user }} टाइप कर रहा है",
|
|
75
|
-
"🏙 Attachment...": "
|
|
75
|
+
"🏙 Attachment...": ""
|
|
76
76
|
}
|
package/src/i18n/it.json
CHANGED
|
@@ -1,76 +1,76 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Risposta",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
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
6
|
"Also send to channel": "Invia anche al canale",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Block User": "
|
|
9
|
-
"Cancel": "
|
|
10
|
-
"Cannot Flag Message": "
|
|
11
|
-
"Copy Message": "
|
|
12
|
-
"Delete": "
|
|
13
|
-
"Delete Message": "
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Block User": "",
|
|
9
|
+
"Cancel": "",
|
|
10
|
+
"Cannot Flag Message": "",
|
|
11
|
+
"Copy Message": "",
|
|
12
|
+
"Delete": "",
|
|
13
|
+
"Delete Message": "",
|
|
14
14
|
"Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
|
|
15
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
16
|
-
"Edit Message": "
|
|
17
|
-
"Editing Message": "
|
|
18
|
-
"Emoji matching": "
|
|
19
|
-
"Empty message...": "
|
|
20
|
-
"Error loading": "
|
|
21
|
-
"Error loading channel list...": "
|
|
22
|
-
"Error loading messages for this channel...": "
|
|
23
|
-
"Error while loading, please reload/refresh": "
|
|
24
|
-
"File type not supported": "
|
|
25
|
-
"Flag": "
|
|
26
|
-
"Flag Message": "
|
|
27
|
-
"Flag action failed either due to a network issue or the message is already flagged": "
|
|
28
|
-
"How about sending your first message to a friend?": "
|
|
29
|
-
"Instant Commands": "
|
|
30
|
-
"Let's start chatting!": "
|
|
31
|
-
"Links are disabled": "
|
|
15
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
16
|
+
"Edit Message": "",
|
|
17
|
+
"Editing Message": "",
|
|
18
|
+
"Emoji matching": "",
|
|
19
|
+
"Empty message...": "",
|
|
20
|
+
"Error loading": "",
|
|
21
|
+
"Error loading channel list...": "",
|
|
22
|
+
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error while loading, please reload/refresh": "",
|
|
24
|
+
"File type not supported": "",
|
|
25
|
+
"Flag": "",
|
|
26
|
+
"Flag Message": "",
|
|
27
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
28
|
+
"How about sending your first message to a friend?": "",
|
|
29
|
+
"Instant Commands": "",
|
|
30
|
+
"Let's start chatting!": "",
|
|
31
|
+
"Links are disabled": "",
|
|
32
32
|
"Loading channels...": "Caricamento canali in corso...",
|
|
33
33
|
"Loading messages...": "Caricamento messaggi...",
|
|
34
34
|
"Loading...": "Caricamento...",
|
|
35
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
36
|
-
"Message Reactions": "
|
|
37
|
-
"Message deleted": "
|
|
38
|
-
"Message flagged": "
|
|
39
|
-
"Mute User": "
|
|
40
|
-
"Not supported": "
|
|
41
|
-
"Nothing yet...": "
|
|
42
|
-
"Ok": "
|
|
43
|
-
"Only visible to you": "
|
|
35
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
36
|
+
"Message Reactions": "",
|
|
37
|
+
"Message deleted": "",
|
|
38
|
+
"Message flagged": "",
|
|
39
|
+
"Mute User": "",
|
|
40
|
+
"Not supported": "",
|
|
41
|
+
"Nothing yet...": "",
|
|
42
|
+
"Ok": "",
|
|
43
|
+
"Only visible to you": "",
|
|
44
44
|
"Open Settings": "Apri Impostazioni",
|
|
45
45
|
"Photo": "Foto",
|
|
46
46
|
"Photos and Videos": "Foto e Video",
|
|
47
|
-
"Pin to Conversation": "
|
|
48
|
-
"Pinned by": "
|
|
47
|
+
"Pin to Conversation": "",
|
|
48
|
+
"Pinned by": "",
|
|
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
50
|
"Please select a channel first": "Seleziona un canale",
|
|
51
|
-
"Reconnecting...": "
|
|
52
|
-
"Reply": "
|
|
51
|
+
"Reconnecting...": "",
|
|
52
|
+
"Reply": "",
|
|
53
53
|
"Reply to Message": "Rispondi al messaggio",
|
|
54
|
-
"Resend": "
|
|
55
|
-
"Search GIFs": "
|
|
54
|
+
"Resend": "",
|
|
55
|
+
"Search GIFs": "",
|
|
56
56
|
"Select More Photos": "Seleziona Altre foto",
|
|
57
|
-
"Send a message": "
|
|
58
|
-
"Sending links is not allowed in this conversation": "
|
|
59
|
-
"Slow mode ON": "
|
|
60
|
-
"The message has been reported to a moderator.": "
|
|
61
|
-
"Thread Reply": "
|
|
62
|
-
"Unblock User": "
|
|
57
|
+
"Send a message": "",
|
|
58
|
+
"Sending links is not allowed in this conversation": "",
|
|
59
|
+
"Slow mode ON": "",
|
|
60
|
+
"The message has been reported to a moderator.": "",
|
|
61
|
+
"Thread Reply": "",
|
|
62
|
+
"Unblock User": "",
|
|
63
63
|
"Unknown User": "Utente sconosciuto",
|
|
64
|
-
"Unmute User": "
|
|
65
|
-
"Unpin from Conversation": "
|
|
64
|
+
"Unmute User": "",
|
|
65
|
+
"Unpin from Conversation": "",
|
|
66
66
|
"Unread Messages": "Messaggi non letti",
|
|
67
67
|
"Video": "Video",
|
|
68
|
-
"You": "
|
|
68
|
+
"You": "",
|
|
69
69
|
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
70
70
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
71
71
|
"{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
|
|
72
72
|
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
73
|
-
"{{ replyCount }} Thread Replies": "
|
|
73
|
+
"{{ replyCount }} Thread Replies": "",
|
|
74
74
|
"{{ user }} is typing": "{{ user }} sta scrivendo",
|
|
75
|
-
"🏙 Attachment...": "
|
|
75
|
+
"🏙 Attachment...": ""
|
|
76
76
|
}
|