stream-chat-react-native-core 5.30.0 → 5.31.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/Chat/hooks/useAppSettings.js +2 -4
- package/lib/commonjs/components/Chat/hooks/useAppSettings.js.map +1 -1
- package/lib/commonjs/components/MessageInput/FileUploadPreview.js +5 -6
- package/lib/commonjs/components/MessageInput/FileUploadPreview.js.map +1 -1
- package/lib/commonjs/components/MessageInput/MessageInput.js +4 -26
- package/lib/commonjs/components/MessageInput/MessageInput.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +2 -2
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +89 -76
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/utils/utils.js +66 -0
- package/lib/commonjs/contexts/messageInputContext/utils/utils.js.map +1 -0
- package/lib/commonjs/i18n/en.json +2 -2
- package/lib/commonjs/i18n/es.json +64 -64
- package/lib/commonjs/i18n/fr.json +64 -64
- package/lib/commonjs/i18n/he.json +64 -64
- package/lib/commonjs/i18n/hi.json +64 -64
- package/lib/commonjs/i18n/it.json +64 -64
- package/lib/commonjs/i18n/ja.json +64 -64
- package/lib/commonjs/i18n/ko.json +64 -64
- package/lib/commonjs/i18n/nl.json +64 -64
- package/lib/commonjs/i18n/pt-BR.json +64 -64
- package/lib/commonjs/i18n/ru.json +64 -64
- package/lib/commonjs/i18n/tr.json +64 -64
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Chat/hooks/useAppSettings.js +2 -4
- package/lib/module/components/Chat/hooks/useAppSettings.js.map +1 -1
- package/lib/module/components/MessageInput/FileUploadPreview.js +5 -6
- package/lib/module/components/MessageInput/FileUploadPreview.js.map +1 -1
- package/lib/module/components/MessageInput/MessageInput.js +4 -26
- package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +2 -2
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/contexts/messageInputContext/MessageInputContext.js +89 -76
- package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/module/contexts/messageInputContext/utils/utils.js +66 -0
- package/lib/module/contexts/messageInputContext/utils/utils.js.map +1 -0
- package/lib/module/i18n/en.json +2 -2
- package/lib/module/i18n/es.json +64 -64
- package/lib/module/i18n/fr.json +64 -64
- package/lib/module/i18n/he.json +64 -64
- package/lib/module/i18n/hi.json +64 -64
- package/lib/module/i18n/it.json +64 -64
- package/lib/module/i18n/ja.json +64 -64
- package/lib/module/i18n/ko.json +64 -64
- package/lib/module/i18n/nl.json +64 -64
- package/lib/module/i18n/pt-BR.json +64 -64
- package/lib/module/i18n/ru.json +64 -64
- package/lib/module/i18n/tr.json +64 -64
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Chat/hooks/useAppSettings.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/FileUploadPreview.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/MessageInput.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messageInputContext/utils/utils.d.ts +22 -0
- package/lib/typescript/contexts/messageInputContext/utils/utils.d.ts.map +1 -0
- package/lib/typescript/i18n/en.json +2 -2
- package/lib/typescript/i18n/es.json +64 -64
- package/lib/typescript/i18n/fr.json +64 -64
- package/lib/typescript/i18n/he.json +64 -64
- package/lib/typescript/i18n/hi.json +64 -64
- package/lib/typescript/i18n/it.json +64 -64
- package/lib/typescript/i18n/ja.json +64 -64
- package/lib/typescript/i18n/ko.json +64 -64
- package/lib/typescript/i18n/nl.json +64 -64
- package/lib/typescript/i18n/pt-BR.json +64 -64
- package/lib/typescript/i18n/ru.json +64 -64
- package/lib/typescript/i18n/tr.json +64 -64
- package/lib/typescript/utils/Streami18n.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/Chat/hooks/useAppSettings.ts +4 -6
- package/src/components/MessageInput/FileUploadPreview.tsx +2 -3
- package/src/components/MessageInput/MessageInput.tsx +4 -45
- package/src/components/MessageList/MessageList.tsx +5 -2
- package/src/contexts/messageInputContext/MessageInputContext.tsx +60 -55
- package/src/contexts/messageInputContext/__tests__/MessageInputContext.test.tsx +9 -0
- package/src/contexts/messageInputContext/__tests__/pickFile.test.tsx +8 -3
- package/src/contexts/messageInputContext/utils/utils.ts +86 -0
- package/src/i18n/en.json +2 -2
- package/src/i18n/es.json +64 -64
- package/src/i18n/fr.json +64 -64
- package/src/i18n/he.json +64 -64
- package/src/i18n/hi.json +64 -64
- package/src/i18n/it.json +64 -64
- package/src/i18n/ja.json +64 -64
- package/src/i18n/ko.json +64 -64
- package/src/i18n/nl.json +64 -64
- package/src/i18n/pt-BR.json +64 -64
- package/src/i18n/ru.json +64 -64
- package/src/i18n/tr.json +64 -64
- package/src/version.json +1 -1
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Réponse",
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Are you sure?": "
|
|
9
|
-
"Block User": "
|
|
10
|
-
"Cancel": "
|
|
11
|
-
"Cannot Flag Message": "
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
13
|
-
"Copy Message": "
|
|
14
|
-
"Delete": "
|
|
15
|
-
"Delete Message": "
|
|
16
|
-
"Device camera is used to take photos or videos.": "
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
18
|
-
"Edit Message": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
9
|
+
"Block User": "",
|
|
10
|
+
"Cancel": "",
|
|
11
|
+
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
+
"Copy Message": "",
|
|
14
|
+
"Delete": "",
|
|
15
|
+
"Delete Message": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
+
"Edit Message": "",
|
|
19
19
|
"Edited": "Édité",
|
|
20
|
-
"Editing Message": "
|
|
20
|
+
"Editing Message": "",
|
|
21
21
|
"Emoji matching": "Correspondance Emoji",
|
|
22
22
|
"Empty message...": "Message vide...",
|
|
23
|
-
"Error loading": "
|
|
24
|
-
"Error loading channel list...": "
|
|
25
|
-
"Error loading messages for this channel...": "
|
|
23
|
+
"Error loading": "",
|
|
24
|
+
"Error loading channel list...": "",
|
|
25
|
+
"Error loading messages for this channel...": "",
|
|
26
26
|
"Error while loading, please reload/refresh": "Erreur lors du chargement, veuillez recharger/rafraîchir",
|
|
27
|
-
"File
|
|
28
|
-
"
|
|
29
|
-
"Flag
|
|
30
|
-
"Flag
|
|
31
|
-
"
|
|
32
|
-
"
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
+
"File type not supported": "",
|
|
29
|
+
"Flag": "",
|
|
30
|
+
"Flag Message": "",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
+
"Hold to start recording.": "",
|
|
33
|
+
"How about sending your first message to a friend?": "",
|
|
33
34
|
"Instant Commands": "Commandes Instantanées",
|
|
34
|
-
"Let's start chatting!": "
|
|
35
|
-
"Links are disabled": "
|
|
35
|
+
"Let's start chatting!": "",
|
|
36
|
+
"Links are disabled": "",
|
|
36
37
|
"Loading channels...": "Chargement des canaux...",
|
|
37
38
|
"Loading messages...": "Chargement des messages...",
|
|
38
39
|
"Loading...": "Chargement...",
|
|
39
|
-
"
|
|
40
|
-
"Message Reactions": "Réactions aux messages",
|
|
40
|
+
"Message Reactions": "",
|
|
41
41
|
"Message deleted": "Message supprimé",
|
|
42
|
-
"Message flagged": "
|
|
43
|
-
"Mute User": "
|
|
44
|
-
"No chats here yet…": "
|
|
45
|
-
"Not supported": "
|
|
42
|
+
"Message flagged": "",
|
|
43
|
+
"Mute User": "",
|
|
44
|
+
"No chats here yet…": "",
|
|
45
|
+
"Not supported": "",
|
|
46
46
|
"Nothing yet...": "Aucun message...",
|
|
47
|
-
"Ok": "
|
|
47
|
+
"Ok": "",
|
|
48
48
|
"Only visible to you": "Seulement visible par vous",
|
|
49
|
-
"Open Settings": "
|
|
50
|
-
"Photo": "
|
|
51
|
-
"Photos and Videos": "
|
|
52
|
-
"Pin to Conversation": "
|
|
49
|
+
"Open Settings": "",
|
|
50
|
+
"Photo": "",
|
|
51
|
+
"Photos and Videos": "",
|
|
52
|
+
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "Épinglé par",
|
|
54
|
-
"Please allow Audio permissions in settings.": "
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
56
|
-
"Please select a channel first": "
|
|
54
|
+
"Please allow Audio permissions in settings.": "",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
+
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "Se Reconnecter...",
|
|
58
|
-
"Reply": "
|
|
59
|
-
"Reply to Message": "
|
|
60
|
-
"Resend": "
|
|
61
|
-
"Search GIFs": "
|
|
62
|
-
"Select More Photos": "
|
|
63
|
-
"Send Anyway": "
|
|
64
|
-
"Send a message": "
|
|
65
|
-
"Sending links is not allowed in this conversation": "
|
|
66
|
-
"Slow mode ON": "
|
|
67
|
-
"The message has been reported to a moderator.": "
|
|
68
|
-
"Thread Reply": "
|
|
69
|
-
"Unblock User": "
|
|
70
|
-
"Unknown User": "
|
|
71
|
-
"Unmute User": "
|
|
72
|
-
"Unpin from Conversation": "
|
|
73
|
-
"Unread Messages": "
|
|
74
|
-
"Video": "
|
|
58
|
+
"Reply": "",
|
|
59
|
+
"Reply to Message": "",
|
|
60
|
+
"Resend": "",
|
|
61
|
+
"Search GIFs": "",
|
|
62
|
+
"Select More Photos": "",
|
|
63
|
+
"Send Anyway": "",
|
|
64
|
+
"Send a message": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "",
|
|
66
|
+
"Slow mode ON": "",
|
|
67
|
+
"The message has been reported to a moderator.": "",
|
|
68
|
+
"Thread Reply": "",
|
|
69
|
+
"Unblock User": "",
|
|
70
|
+
"Unknown User": "",
|
|
71
|
+
"Unmute User": "",
|
|
72
|
+
"Unpin from Conversation": "",
|
|
73
|
+
"Unread Messages": "",
|
|
74
|
+
"Video": "",
|
|
75
75
|
"You": "Toi",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
77
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
|
80
|
-
"{{ replyCount }} Thread Replies": "
|
|
81
|
-
"{{ user }} is typing": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "",
|
|
82
82
|
"🏙 Attachment...": "🏙 Pièce jointe..."
|
|
83
83
|
}
|
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "תגובה אחת",
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Are you sure?": "
|
|
9
|
-
"Block User": "
|
|
10
|
-
"Cancel": "
|
|
11
|
-
"Cannot Flag Message": "
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
13
|
-
"Copy Message": "
|
|
14
|
-
"Delete": "
|
|
15
|
-
"Delete Message": "
|
|
16
|
-
"Device camera is used to take photos or videos.": "
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
18
|
-
"Edit Message": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
9
|
+
"Block User": "",
|
|
10
|
+
"Cancel": "",
|
|
11
|
+
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
+
"Copy Message": "",
|
|
14
|
+
"Delete": "",
|
|
15
|
+
"Delete Message": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
+
"Edit Message": "",
|
|
19
19
|
"Edited": "נערך",
|
|
20
|
-
"Editing Message": "
|
|
20
|
+
"Editing Message": "",
|
|
21
21
|
"Emoji matching": "התאמת אמוג'י",
|
|
22
22
|
"Empty message...": "הודעה ריקה...",
|
|
23
|
-
"Error loading": "
|
|
24
|
-
"Error loading channel list...": "
|
|
25
|
-
"Error loading messages for this channel...": "
|
|
23
|
+
"Error loading": "",
|
|
24
|
+
"Error loading channel list...": "",
|
|
25
|
+
"Error loading messages for this channel...": "",
|
|
26
26
|
"Error while loading, please reload/refresh": "שגיאה ארעה בזמן הטעינה, אנא טען מחדש/רענן",
|
|
27
|
-
"File
|
|
28
|
-
"
|
|
29
|
-
"Flag
|
|
30
|
-
"Flag
|
|
31
|
-
"
|
|
32
|
-
"
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
+
"File type not supported": "",
|
|
29
|
+
"Flag": "",
|
|
30
|
+
"Flag Message": "",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
+
"Hold to start recording.": "",
|
|
33
|
+
"How about sending your first message to a friend?": "",
|
|
33
34
|
"Instant Commands": "פעולות מיידיות",
|
|
34
|
-
"Let's start chatting!": "
|
|
35
|
-
"Links are disabled": "
|
|
35
|
+
"Let's start chatting!": "",
|
|
36
|
+
"Links are disabled": "",
|
|
36
37
|
"Loading channels...": "השיחות בטעינה...",
|
|
37
38
|
"Loading messages...": "ההודעות בטעינה..",
|
|
38
39
|
"Loading...": "טוען...",
|
|
39
|
-
"
|
|
40
|
-
"Message Reactions": "תגובות להודעה",
|
|
40
|
+
"Message Reactions": "",
|
|
41
41
|
"Message deleted": "ההודעה נמחקה",
|
|
42
|
-
"Message flagged": "
|
|
43
|
-
"Mute User": "
|
|
44
|
-
"No chats here yet…": "
|
|
45
|
-
"Not supported": "
|
|
42
|
+
"Message flagged": "",
|
|
43
|
+
"Mute User": "",
|
|
44
|
+
"No chats here yet…": "",
|
|
45
|
+
"Not supported": "",
|
|
46
46
|
"Nothing yet...": "אינפורמציה תתקבל בהמשך...",
|
|
47
|
-
"Ok": "
|
|
47
|
+
"Ok": "",
|
|
48
48
|
"Only visible to you": "גלוי רק לך",
|
|
49
|
-
"Open Settings": "
|
|
50
|
-
"Photo": "
|
|
51
|
-
"Photos and Videos": "
|
|
52
|
-
"Pin to Conversation": "
|
|
49
|
+
"Open Settings": "",
|
|
50
|
+
"Photo": "",
|
|
51
|
+
"Photos and Videos": "",
|
|
52
|
+
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": " - הוצמד לשיחה",
|
|
54
|
-
"Please allow Audio permissions in settings.": "
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
56
|
-
"Please select a channel first": "
|
|
54
|
+
"Please allow Audio permissions in settings.": "",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
+
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "מתחבר מחדש...",
|
|
58
|
-
"Reply": "
|
|
59
|
-
"Reply to Message": "
|
|
60
|
-
"Resend": "
|
|
61
|
-
"Search GIFs": "
|
|
62
|
-
"Select More Photos": "
|
|
63
|
-
"Send Anyway": "
|
|
64
|
-
"Send a message": "
|
|
65
|
-
"Sending links is not allowed in this conversation": "
|
|
66
|
-
"Slow mode ON": "
|
|
67
|
-
"The message has been reported to a moderator.": "
|
|
68
|
-
"Thread Reply": "
|
|
69
|
-
"Unblock User": "
|
|
70
|
-
"Unknown User": "
|
|
71
|
-
"Unmute User": "
|
|
72
|
-
"Unpin from Conversation": "
|
|
73
|
-
"Unread Messages": "
|
|
74
|
-
"Video": "
|
|
58
|
+
"Reply": "",
|
|
59
|
+
"Reply to Message": "",
|
|
60
|
+
"Resend": "",
|
|
61
|
+
"Search GIFs": "",
|
|
62
|
+
"Select More Photos": "",
|
|
63
|
+
"Send Anyway": "",
|
|
64
|
+
"Send a message": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "",
|
|
66
|
+
"Slow mode ON": "",
|
|
67
|
+
"The message has been reported to a moderator.": "",
|
|
68
|
+
"Thread Reply": "",
|
|
69
|
+
"Unblock User": "",
|
|
70
|
+
"Unknown User": "",
|
|
71
|
+
"Unmute User": "",
|
|
72
|
+
"Unpin from Conversation": "",
|
|
73
|
+
"Unread Messages": "",
|
|
74
|
+
"Video": "",
|
|
75
75
|
"You": "את/ה",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
77
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }} תגובות",
|
|
80
|
-
"{{ replyCount }} Thread Replies": "
|
|
81
|
-
"{{ user }} is typing": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "",
|
|
82
82
|
"🏙 Attachment...": "🏙 קובץ מצורף..."
|
|
83
83
|
}
|
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 रिप्लाई",
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Are you sure?": "
|
|
9
|
-
"Block User": "
|
|
10
|
-
"Cancel": "
|
|
11
|
-
"Cannot Flag Message": "
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
13
|
-
"Copy Message": "
|
|
14
|
-
"Delete": "
|
|
15
|
-
"Delete Message": "
|
|
16
|
-
"Device camera is used to take photos or videos.": "
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
18
|
-
"Edit Message": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
9
|
+
"Block User": "",
|
|
10
|
+
"Cancel": "",
|
|
11
|
+
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
+
"Copy Message": "",
|
|
14
|
+
"Delete": "",
|
|
15
|
+
"Delete Message": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
+
"Edit Message": "",
|
|
19
19
|
"Edited": "मैसेज बदला गया है",
|
|
20
|
-
"Editing Message": "
|
|
20
|
+
"Editing Message": "",
|
|
21
21
|
"Emoji matching": "इमोजी मिलान",
|
|
22
22
|
"Empty message...": "खाली संदेश...",
|
|
23
|
-
"Error loading": "
|
|
24
|
-
"Error loading channel list...": "
|
|
25
|
-
"Error loading messages for this channel...": "
|
|
23
|
+
"Error loading": "",
|
|
24
|
+
"Error loading channel list...": "",
|
|
25
|
+
"Error loading messages for this channel...": "",
|
|
26
26
|
"Error while loading, please reload/refresh": "एरर, रिफ्रेश करे",
|
|
27
|
-
"File
|
|
28
|
-
"
|
|
29
|
-
"Flag
|
|
30
|
-
"Flag
|
|
31
|
-
"
|
|
32
|
-
"
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
+
"File type not supported": "",
|
|
29
|
+
"Flag": "",
|
|
30
|
+
"Flag Message": "",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
+
"Hold to start recording.": "",
|
|
33
|
+
"How about sending your first message to a friend?": "",
|
|
33
34
|
"Instant Commands": "त्वरित कमांड",
|
|
34
|
-
"Let's start chatting!": "
|
|
35
|
-
"Links are disabled": "
|
|
35
|
+
"Let's start chatting!": "",
|
|
36
|
+
"Links are disabled": "",
|
|
36
37
|
"Loading channels...": "चैनल लोड हो रहे हैं...",
|
|
37
38
|
"Loading messages...": "मेसेजस लोड हो रहे हैं...",
|
|
38
39
|
"Loading...": "लोड हो रहा है...",
|
|
39
|
-
"
|
|
40
|
-
"Message Reactions": "संदेश प्रतिक्रियाएँ",
|
|
40
|
+
"Message Reactions": "",
|
|
41
41
|
"Message deleted": "मैसेज हटा दिया गया",
|
|
42
|
-
"Message flagged": "
|
|
43
|
-
"Mute User": "
|
|
44
|
-
"No chats here yet…": "
|
|
45
|
-
"Not supported": "
|
|
42
|
+
"Message flagged": "",
|
|
43
|
+
"Mute User": "",
|
|
44
|
+
"No chats here yet…": "",
|
|
45
|
+
"Not supported": "",
|
|
46
46
|
"Nothing yet...": "कोई मैसेज नहीं है...",
|
|
47
|
-
"Ok": "
|
|
47
|
+
"Ok": "",
|
|
48
48
|
"Only visible to you": "केवल आपको दिखाई दे रहा है",
|
|
49
|
-
"Open Settings": "
|
|
50
|
-
"Photo": "
|
|
51
|
-
"Photos and Videos": "
|
|
52
|
-
"Pin to Conversation": "
|
|
49
|
+
"Open Settings": "",
|
|
50
|
+
"Photo": "",
|
|
51
|
+
"Photos and Videos": "",
|
|
52
|
+
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "द्वारा पिन किया गया",
|
|
54
|
-
"Please allow Audio permissions in settings.": "
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
56
|
-
"Please select a channel first": "
|
|
54
|
+
"Please allow Audio permissions in settings.": "",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
+
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "पुनः कनेक्ट हो...",
|
|
58
|
-
"Reply": "
|
|
59
|
-
"Reply to Message": "
|
|
60
|
-
"Resend": "
|
|
61
|
-
"Search GIFs": "
|
|
62
|
-
"Select More Photos": "
|
|
63
|
-
"Send Anyway": "
|
|
64
|
-
"Send a message": "
|
|
65
|
-
"Sending links is not allowed in this conversation": "
|
|
66
|
-
"Slow mode ON": "
|
|
67
|
-
"The message has been reported to a moderator.": "
|
|
68
|
-
"Thread Reply": "
|
|
69
|
-
"Unblock User": "
|
|
70
|
-
"Unknown User": "
|
|
71
|
-
"Unmute User": "
|
|
72
|
-
"Unpin from Conversation": "
|
|
73
|
-
"Unread Messages": "
|
|
74
|
-
"Video": "
|
|
58
|
+
"Reply": "",
|
|
59
|
+
"Reply to Message": "",
|
|
60
|
+
"Resend": "",
|
|
61
|
+
"Search GIFs": "",
|
|
62
|
+
"Select More Photos": "",
|
|
63
|
+
"Send Anyway": "",
|
|
64
|
+
"Send a message": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "",
|
|
66
|
+
"Slow mode ON": "",
|
|
67
|
+
"The message has been reported to a moderator.": "",
|
|
68
|
+
"Thread Reply": "",
|
|
69
|
+
"Unblock User": "",
|
|
70
|
+
"Unknown User": "",
|
|
71
|
+
"Unmute User": "",
|
|
72
|
+
"Unpin from Conversation": "",
|
|
73
|
+
"Unread Messages": "",
|
|
74
|
+
"Video": "",
|
|
75
75
|
"You": "आप",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
77
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
80
|
-
"{{ replyCount }} Thread Replies": "
|
|
81
|
-
"{{ user }} is typing": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "",
|
|
82
82
|
"🏙 Attachment...": "🏙 अटैचमेंट..."
|
|
83
83
|
}
|
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Risposta",
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Are you sure?": "
|
|
9
|
-
"Block User": "
|
|
10
|
-
"Cancel": "
|
|
11
|
-
"Cannot Flag Message": "
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
13
|
-
"Copy Message": "
|
|
14
|
-
"Delete": "
|
|
15
|
-
"Delete Message": "
|
|
16
|
-
"Device camera is used to take photos or videos.": "
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
18
|
-
"Edit Message": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
9
|
+
"Block User": "",
|
|
10
|
+
"Cancel": "",
|
|
11
|
+
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
+
"Copy Message": "",
|
|
14
|
+
"Delete": "",
|
|
15
|
+
"Delete Message": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
+
"Edit Message": "",
|
|
19
19
|
"Edited": "Modificato",
|
|
20
|
-
"Editing Message": "
|
|
20
|
+
"Editing Message": "",
|
|
21
21
|
"Emoji matching": "Abbinamento emoji",
|
|
22
22
|
"Empty message...": "Message vuoto...",
|
|
23
|
-
"Error loading": "
|
|
24
|
-
"Error loading channel list...": "
|
|
25
|
-
"Error loading messages for this channel...": "
|
|
23
|
+
"Error loading": "",
|
|
24
|
+
"Error loading channel list...": "",
|
|
25
|
+
"Error loading messages for this channel...": "",
|
|
26
26
|
"Error while loading, please reload/refresh": "Errore durante il caricamento, per favore ricarica la pagina",
|
|
27
|
-
"File
|
|
28
|
-
"
|
|
29
|
-
"Flag
|
|
30
|
-
"Flag
|
|
31
|
-
"
|
|
32
|
-
"
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
+
"File type not supported": "",
|
|
29
|
+
"Flag": "",
|
|
30
|
+
"Flag Message": "",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
+
"Hold to start recording.": "",
|
|
33
|
+
"How about sending your first message to a friend?": "",
|
|
33
34
|
"Instant Commands": "Comandi Istantanei",
|
|
34
|
-
"Let's start chatting!": "
|
|
35
|
-
"Links are disabled": "
|
|
35
|
+
"Let's start chatting!": "",
|
|
36
|
+
"Links are disabled": "",
|
|
36
37
|
"Loading channels...": "Caricamento canali in corso...",
|
|
37
38
|
"Loading messages...": "Caricamento messaggi...",
|
|
38
39
|
"Loading...": "Caricamento...",
|
|
39
|
-
"
|
|
40
|
-
"Message Reactions": "Reazioni ai Messaggi",
|
|
40
|
+
"Message Reactions": "",
|
|
41
41
|
"Message deleted": "Messaggio cancellato",
|
|
42
|
-
"Message flagged": "
|
|
43
|
-
"Mute User": "
|
|
44
|
-
"No chats here yet…": "
|
|
45
|
-
"Not supported": "
|
|
42
|
+
"Message flagged": "",
|
|
43
|
+
"Mute User": "",
|
|
44
|
+
"No chats here yet…": "",
|
|
45
|
+
"Not supported": "",
|
|
46
46
|
"Nothing yet...": "Ancora niente...",
|
|
47
|
-
"Ok": "
|
|
47
|
+
"Ok": "",
|
|
48
48
|
"Only visible to you": "Visibile solo a te",
|
|
49
|
-
"Open Settings": "
|
|
50
|
-
"Photo": "
|
|
51
|
-
"Photos and Videos": "
|
|
52
|
-
"Pin to Conversation": "
|
|
49
|
+
"Open Settings": "",
|
|
50
|
+
"Photo": "",
|
|
51
|
+
"Photos and Videos": "",
|
|
52
|
+
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "Fissato da",
|
|
54
|
-
"Please allow Audio permissions in settings.": "
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
56
|
-
"Please select a channel first": "
|
|
54
|
+
"Please allow Audio permissions in settings.": "",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
+
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "Ricollegarsi...",
|
|
58
|
-
"Reply": "
|
|
59
|
-
"Reply to Message": "
|
|
60
|
-
"Resend": "
|
|
61
|
-
"Search GIFs": "
|
|
62
|
-
"Select More Photos": "
|
|
63
|
-
"Send Anyway": "
|
|
64
|
-
"Send a message": "
|
|
65
|
-
"Sending links is not allowed in this conversation": "
|
|
66
|
-
"Slow mode ON": "
|
|
67
|
-
"The message has been reported to a moderator.": "
|
|
68
|
-
"Thread Reply": "
|
|
69
|
-
"Unblock User": "
|
|
70
|
-
"Unknown User": "
|
|
71
|
-
"Unmute User": "
|
|
72
|
-
"Unpin from Conversation": "
|
|
73
|
-
"Unread Messages": "
|
|
74
|
-
"Video": "
|
|
58
|
+
"Reply": "",
|
|
59
|
+
"Reply to Message": "",
|
|
60
|
+
"Resend": "",
|
|
61
|
+
"Search GIFs": "",
|
|
62
|
+
"Select More Photos": "",
|
|
63
|
+
"Send Anyway": "",
|
|
64
|
+
"Send a message": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "",
|
|
66
|
+
"Slow mode ON": "",
|
|
67
|
+
"The message has been reported to a moderator.": "",
|
|
68
|
+
"Thread Reply": "",
|
|
69
|
+
"Unblock User": "",
|
|
70
|
+
"Unknown User": "",
|
|
71
|
+
"Unmute User": "",
|
|
72
|
+
"Unpin from Conversation": "",
|
|
73
|
+
"Unread Messages": "",
|
|
74
|
+
"Video": "",
|
|
75
75
|
"You": "Tu",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
77
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
80
|
-
"{{ replyCount }} Thread Replies": "
|
|
81
|
-
"{{ user }} is typing": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "",
|
|
82
82
|
"🏙 Attachment...": "🏙 Allegato..."
|
|
83
83
|
}
|