stream-chat-react-native-core 5.29.0 → 5.29.1-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/Message/MessageSimple/utils/renderText.js +11 -9
- package/lib/commonjs/components/Message/MessageSimple/utils/renderText.js.map +1 -1
- package/lib/commonjs/i18n/en.json +1 -1
- package/lib/commonjs/i18n/es.json +68 -68
- package/lib/commonjs/i18n/fr.json +68 -68
- package/lib/commonjs/i18n/he.json +68 -68
- package/lib/commonjs/i18n/hi.json +68 -68
- package/lib/commonjs/i18n/it.json +68 -68
- package/lib/commonjs/i18n/ja.json +68 -68
- package/lib/commonjs/i18n/ko.json +68 -68
- package/lib/commonjs/i18n/nl.json +68 -68
- package/lib/commonjs/i18n/pt-BR.json +68 -68
- package/lib/commonjs/i18n/ru.json +68 -68
- package/lib/commonjs/i18n/tr.json +68 -68
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Message/MessageSimple/utils/renderText.js +11 -9
- package/lib/module/components/Message/MessageSimple/utils/renderText.js.map +1 -1
- package/lib/module/i18n/en.json +1 -1
- package/lib/module/i18n/es.json +68 -68
- package/lib/module/i18n/fr.json +68 -68
- package/lib/module/i18n/he.json +68 -68
- package/lib/module/i18n/hi.json +68 -68
- package/lib/module/i18n/it.json +68 -68
- package/lib/module/i18n/ja.json +68 -68
- package/lib/module/i18n/ko.json +68 -68
- package/lib/module/i18n/nl.json +68 -68
- package/lib/module/i18n/pt-BR.json +68 -68
- package/lib/module/i18n/ru.json +68 -68
- package/lib/module/i18n/tr.json +68 -68
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Message/MessageSimple/utils/renderText.d.ts.map +1 -1
- package/lib/typescript/i18n/en.json +1 -1
- package/lib/typescript/i18n/es.json +68 -68
- package/lib/typescript/i18n/fr.json +68 -68
- package/lib/typescript/i18n/he.json +68 -68
- package/lib/typescript/i18n/hi.json +68 -68
- package/lib/typescript/i18n/it.json +68 -68
- package/lib/typescript/i18n/ja.json +68 -68
- package/lib/typescript/i18n/ko.json +68 -68
- package/lib/typescript/i18n/nl.json +68 -68
- package/lib/typescript/i18n/pt-BR.json +68 -68
- package/lib/typescript/i18n/ru.json +68 -68
- package/lib/typescript/i18n/tr.json +68 -68
- package/package.json +1 -1
- package/src/components/Message/MessageSimple/utils/renderText.tsx +10 -16
- package/src/i18n/en.json +1 -1
- package/src/i18n/es.json +68 -68
- package/src/i18n/fr.json +68 -68
- package/src/i18n/he.json +68 -68
- package/src/i18n/hi.json +68 -68
- package/src/i18n/it.json +68 -68
- package/src/i18n/ja.json +68 -68
- package/src/i18n/ko.json +68 -68
- package/src/i18n/nl.json +68 -68
- package/src/i18n/pt-BR.json +68 -68
- package/src/i18n/ru.json +68 -68
- package/src/i18n/tr.json +68 -68
- package/src/version.json +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-chat-react-native-core",
|
|
3
3
|
"description": "The official React Native and Expo components for Stream Chat, a service for building chat applications",
|
|
4
|
-
"version": "5.29.
|
|
4
|
+
"version": "5.29.1-beta.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"company": "Stream.io Inc",
|
|
7
7
|
"name": "Stream.io Inc"
|
|
@@ -211,25 +211,19 @@ export const renderText = <
|
|
|
211
211
|
);
|
|
212
212
|
};
|
|
213
213
|
|
|
214
|
+
function escapeRegExp(text: string) {
|
|
215
|
+
return text.replace(/[-[\]{}()*+?.,/\\^$|#]/g, '\\$&');
|
|
216
|
+
}
|
|
217
|
+
|
|
214
218
|
// take the @ mentions and turn them into markdown?
|
|
215
219
|
// translate links
|
|
216
220
|
const { mentioned_users } = message;
|
|
217
|
-
const
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
function (match) {
|
|
224
|
-
return '\\' + match;
|
|
225
|
-
},
|
|
226
|
-
)}`;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
return acc;
|
|
230
|
-
}, '')
|
|
231
|
-
: '';
|
|
232
|
-
|
|
221
|
+
const mentionedUsernames = (mentioned_users || [])
|
|
222
|
+
.map((user) => user.name || user.id)
|
|
223
|
+
.filter(Boolean)
|
|
224
|
+
.sort((a, b) => b.length - a.length)
|
|
225
|
+
.map(escapeRegExp);
|
|
226
|
+
const mentionedUsers = mentionedUsernames.map((username) => `@${username}`).join('|');
|
|
233
227
|
const regEx = new RegExp(`^\\B(${mentionedUsers})`, 'g');
|
|
234
228
|
const mentionsMatchFunction: MatchFunction = (source) => regEx.exec(source);
|
|
235
229
|
|
package/src/i18n/en.json
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"File type not supported": "File type not supported",
|
|
27
27
|
"Flag": "Flag",
|
|
28
28
|
"Flag Message": "Flag Message",
|
|
29
|
-
"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
|
|
29
|
+
"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",
|
|
30
30
|
"Hold to start recording.": "Hold to start recording.",
|
|
31
31
|
"How about sending your first message to a friend?": "How about sending your first message to a friend?",
|
|
32
32
|
"Instant Commands": "Instant Commands",
|
package/src/i18n/es.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
2
|
+
"1 Reply": "",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
6
|
"Also send to channel": "También enviar al canal",
|
|
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
|
-
"Editing Message": "
|
|
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
|
+
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "Coincidencia de emoji",
|
|
21
|
-
"Empty message...": "
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "
|
|
24
|
-
"Error loading messages for this channel...": "
|
|
25
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
-
"File type not supported": "
|
|
27
|
-
"Flag": "
|
|
28
|
-
"Flag Message": "
|
|
29
|
-
"Flag action failed either due to a network issue or the message is already flagged": "
|
|
30
|
-
"Hold to start recording.": "
|
|
31
|
-
"How about sending your first message to a friend?": "
|
|
21
|
+
"Empty message...": "",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "",
|
|
24
|
+
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "",
|
|
26
|
+
"File type not supported": "",
|
|
27
|
+
"Flag": "",
|
|
28
|
+
"Flag Message": "",
|
|
29
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
30
|
+
"Hold to start recording.": "",
|
|
31
|
+
"How about sending your first message to a friend?": "",
|
|
32
32
|
"Instant Commands": "Comandos instantáneos",
|
|
33
|
-
"Let's start chatting!": "
|
|
34
|
-
"Links are disabled": "
|
|
35
|
-
"Loading channels...": "
|
|
36
|
-
"Loading messages...": "
|
|
37
|
-
"Loading...": "
|
|
38
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
39
|
-
"Message Reactions": "
|
|
33
|
+
"Let's start chatting!": "",
|
|
34
|
+
"Links are disabled": "",
|
|
35
|
+
"Loading channels...": "",
|
|
36
|
+
"Loading messages...": "",
|
|
37
|
+
"Loading...": "",
|
|
38
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
+
"Message Reactions": "",
|
|
40
40
|
"Message deleted": "Mensaje eliminado",
|
|
41
|
-
"Message flagged": "
|
|
42
|
-
"Mute User": "
|
|
43
|
-
"Not supported": "
|
|
44
|
-
"Nothing yet...": "
|
|
45
|
-
"Ok": "
|
|
41
|
+
"Message flagged": "",
|
|
42
|
+
"Mute User": "",
|
|
43
|
+
"Not supported": "",
|
|
44
|
+
"Nothing yet...": "",
|
|
45
|
+
"Ok": "",
|
|
46
46
|
"Only visible to you": "Solo visible para ti",
|
|
47
|
-
"Open Settings": "
|
|
47
|
+
"Open Settings": "",
|
|
48
48
|
"Photo": "Foto",
|
|
49
|
-
"Photos and Videos": "
|
|
50
|
-
"Pin to Conversation": "
|
|
49
|
+
"Photos and Videos": "",
|
|
50
|
+
"Pin to Conversation": "",
|
|
51
51
|
"Pinned by": "Fijado por",
|
|
52
|
-
"Please allow Audio permissions in settings.": "
|
|
53
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
54
|
-
"Please select a channel first": "
|
|
52
|
+
"Please allow Audio permissions in settings.": "",
|
|
53
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
54
|
+
"Please select a channel first": "",
|
|
55
55
|
"Reconnecting...": "Reconectando...",
|
|
56
|
-
"Reply": "
|
|
57
|
-
"Reply to Message": "
|
|
58
|
-
"Resend": "
|
|
59
|
-
"Search GIFs": "
|
|
60
|
-
"Select More Photos": "
|
|
61
|
-
"Send Anyway": "
|
|
62
|
-
"Send a message": "
|
|
63
|
-
"Sending links is not allowed in this conversation": "
|
|
64
|
-
"Slow mode ON": "
|
|
65
|
-
"The message has been reported to a moderator.": "
|
|
66
|
-
"Thread Reply": "
|
|
67
|
-
"Unblock User": "
|
|
68
|
-
"Unknown User": "
|
|
69
|
-
"Unmute User": "
|
|
70
|
-
"Unpin from Conversation": "
|
|
71
|
-
"Unread Messages": "
|
|
56
|
+
"Reply": "",
|
|
57
|
+
"Reply to Message": "",
|
|
58
|
+
"Resend": "",
|
|
59
|
+
"Search GIFs": "",
|
|
60
|
+
"Select More Photos": "",
|
|
61
|
+
"Send Anyway": "",
|
|
62
|
+
"Send a message": "",
|
|
63
|
+
"Sending links is not allowed in this conversation": "",
|
|
64
|
+
"Slow mode ON": "",
|
|
65
|
+
"The message has been reported to a moderator.": "",
|
|
66
|
+
"Thread Reply": "",
|
|
67
|
+
"Unblock User": "",
|
|
68
|
+
"Unknown User": "",
|
|
69
|
+
"Unmute User": "",
|
|
70
|
+
"Unpin from Conversation": "",
|
|
71
|
+
"Unread Messages": "",
|
|
72
72
|
"Video": "Video",
|
|
73
73
|
"You": "Tú",
|
|
74
74
|
"You can't send messages in this channel": "No puedes enviar mensajes en este canal",
|
|
75
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
76
|
-
"{{ index }} of {{ photoLength }}": "
|
|
77
|
-
"{{ replyCount }} Replies": "
|
|
78
|
-
"{{ replyCount }} Thread Replies": "
|
|
79
|
-
"{{ user }} is typing": "
|
|
80
|
-
"🏙 Attachment...": "
|
|
75
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
76
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
77
|
+
"{{ replyCount }} Replies": "",
|
|
78
|
+
"{{ replyCount }} Thread Replies": "",
|
|
79
|
+
"{{ user }} is typing": "",
|
|
80
|
+
"🏙 Attachment...": ""
|
|
81
81
|
}
|
package/src/i18n/fr.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
2
|
+
"1 Reply": "",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
6
|
"Also send to channel": "Envoyer également à la chaîne",
|
|
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
|
-
"Editing Message": "
|
|
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
|
+
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "Correspondance Emoji",
|
|
21
|
-
"Empty message...": "
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "
|
|
24
|
-
"Error loading messages for this channel...": "
|
|
25
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
-
"File type not supported": "
|
|
27
|
-
"Flag": "
|
|
28
|
-
"Flag Message": "
|
|
29
|
-
"Flag action failed either due to a network issue or the message is already flagged": "
|
|
30
|
-
"Hold to start recording.": "
|
|
31
|
-
"How about sending your first message to a friend?": "
|
|
21
|
+
"Empty message...": "",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "",
|
|
24
|
+
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "",
|
|
26
|
+
"File type not supported": "",
|
|
27
|
+
"Flag": "",
|
|
28
|
+
"Flag Message": "",
|
|
29
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
30
|
+
"Hold to start recording.": "",
|
|
31
|
+
"How about sending your first message to a friend?": "",
|
|
32
32
|
"Instant Commands": "Commandes Instantanées",
|
|
33
|
-
"Let's start chatting!": "
|
|
34
|
-
"Links are disabled": "
|
|
35
|
-
"Loading channels...": "
|
|
36
|
-
"Loading messages...": "
|
|
37
|
-
"Loading...": "
|
|
38
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
39
|
-
"Message Reactions": "
|
|
33
|
+
"Let's start chatting!": "",
|
|
34
|
+
"Links are disabled": "",
|
|
35
|
+
"Loading channels...": "",
|
|
36
|
+
"Loading messages...": "",
|
|
37
|
+
"Loading...": "",
|
|
38
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
+
"Message Reactions": "",
|
|
40
40
|
"Message deleted": "Message supprimé",
|
|
41
|
-
"Message flagged": "
|
|
42
|
-
"Mute User": "
|
|
43
|
-
"Not supported": "
|
|
44
|
-
"Nothing yet...": "
|
|
45
|
-
"Ok": "
|
|
41
|
+
"Message flagged": "",
|
|
42
|
+
"Mute User": "",
|
|
43
|
+
"Not supported": "",
|
|
44
|
+
"Nothing yet...": "",
|
|
45
|
+
"Ok": "",
|
|
46
46
|
"Only visible to you": "Seulement visible par vous",
|
|
47
|
-
"Open Settings": "
|
|
47
|
+
"Open Settings": "",
|
|
48
48
|
"Photo": "Photo",
|
|
49
|
-
"Photos and Videos": "
|
|
50
|
-
"Pin to Conversation": "
|
|
49
|
+
"Photos and Videos": "",
|
|
50
|
+
"Pin to Conversation": "",
|
|
51
51
|
"Pinned by": "Épinglé par",
|
|
52
|
-
"Please allow Audio permissions in settings.": "
|
|
53
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
54
|
-
"Please select a channel first": "
|
|
52
|
+
"Please allow Audio permissions in settings.": "",
|
|
53
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
54
|
+
"Please select a channel first": "",
|
|
55
55
|
"Reconnecting...": "Se Reconnecter...",
|
|
56
|
-
"Reply": "
|
|
57
|
-
"Reply to Message": "
|
|
58
|
-
"Resend": "
|
|
59
|
-
"Search GIFs": "
|
|
60
|
-
"Select More Photos": "
|
|
61
|
-
"Send Anyway": "
|
|
62
|
-
"Send a message": "
|
|
63
|
-
"Sending links is not allowed in this conversation": "
|
|
64
|
-
"Slow mode ON": "
|
|
65
|
-
"The message has been reported to a moderator.": "
|
|
66
|
-
"Thread Reply": "
|
|
67
|
-
"Unblock User": "
|
|
68
|
-
"Unknown User": "
|
|
69
|
-
"Unmute User": "
|
|
70
|
-
"Unpin from Conversation": "
|
|
71
|
-
"Unread Messages": "
|
|
56
|
+
"Reply": "",
|
|
57
|
+
"Reply to Message": "",
|
|
58
|
+
"Resend": "",
|
|
59
|
+
"Search GIFs": "",
|
|
60
|
+
"Select More Photos": "",
|
|
61
|
+
"Send Anyway": "",
|
|
62
|
+
"Send a message": "",
|
|
63
|
+
"Sending links is not allowed in this conversation": "",
|
|
64
|
+
"Slow mode ON": "",
|
|
65
|
+
"The message has been reported to a moderator.": "",
|
|
66
|
+
"Thread Reply": "",
|
|
67
|
+
"Unblock User": "",
|
|
68
|
+
"Unknown User": "",
|
|
69
|
+
"Unmute User": "",
|
|
70
|
+
"Unpin from Conversation": "",
|
|
71
|
+
"Unread Messages": "",
|
|
72
72
|
"Video": "Vidéo",
|
|
73
73
|
"You": "Toi",
|
|
74
74
|
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
75
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
76
|
-
"{{ index }} of {{ photoLength }}": "
|
|
77
|
-
"{{ replyCount }} Replies": "
|
|
78
|
-
"{{ replyCount }} Thread Replies": "
|
|
79
|
-
"{{ user }} is typing": "
|
|
80
|
-
"🏙 Attachment...": "
|
|
75
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
76
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
77
|
+
"{{ replyCount }} Replies": "",
|
|
78
|
+
"{{ replyCount }} Thread Replies": "",
|
|
79
|
+
"{{ user }} is typing": "",
|
|
80
|
+
"🏙 Attachment...": ""
|
|
81
81
|
}
|
package/src/i18n/he.json
CHANGED
|
@@ -1,81 +1,81 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
2
|
+
"1 Reply": "",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
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
|
-
"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
|
-
"Editing Message": "
|
|
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
|
+
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "התאמת אמוג'י",
|
|
21
|
-
"Empty message...": "
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "
|
|
24
|
-
"Error loading messages for this channel...": "
|
|
25
|
-
"Error while loading, please reload/refresh": "
|
|
26
|
-
"File type not supported": "
|
|
27
|
-
"Flag": "
|
|
28
|
-
"Flag Message": "
|
|
29
|
-
"Flag action failed either due to a network issue or the message is already flagged": "
|
|
30
|
-
"Hold to start recording.": "
|
|
31
|
-
"How about sending your first message to a friend?": "
|
|
21
|
+
"Empty message...": "",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "",
|
|
24
|
+
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "",
|
|
26
|
+
"File type not supported": "",
|
|
27
|
+
"Flag": "",
|
|
28
|
+
"Flag Message": "",
|
|
29
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
30
|
+
"Hold to start recording.": "",
|
|
31
|
+
"How about sending your first message to a friend?": "",
|
|
32
32
|
"Instant Commands": "פעולות מיידיות",
|
|
33
|
-
"Let's start chatting!": "
|
|
34
|
-
"Links are disabled": "
|
|
35
|
-
"Loading channels...": "
|
|
36
|
-
"Loading messages...": "
|
|
37
|
-
"Loading...": "
|
|
38
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "
|
|
39
|
-
"Message Reactions": "
|
|
33
|
+
"Let's start chatting!": "",
|
|
34
|
+
"Links are disabled": "",
|
|
35
|
+
"Loading channels...": "",
|
|
36
|
+
"Loading messages...": "",
|
|
37
|
+
"Loading...": "",
|
|
38
|
+
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
+
"Message Reactions": "",
|
|
40
40
|
"Message deleted": "ההודעה נמחקה",
|
|
41
|
-
"Message flagged": "
|
|
42
|
-
"Mute User": "
|
|
43
|
-
"Not supported": "
|
|
44
|
-
"Nothing yet...": "
|
|
45
|
-
"Ok": "
|
|
41
|
+
"Message flagged": "",
|
|
42
|
+
"Mute User": "",
|
|
43
|
+
"Not supported": "",
|
|
44
|
+
"Nothing yet...": "",
|
|
45
|
+
"Ok": "",
|
|
46
46
|
"Only visible to you": "גלוי רק לך",
|
|
47
|
-
"Open Settings": "
|
|
47
|
+
"Open Settings": "",
|
|
48
48
|
"Photo": "תמונה",
|
|
49
|
-
"Photos and Videos": "
|
|
50
|
-
"Pin to Conversation": "
|
|
49
|
+
"Photos and Videos": "",
|
|
50
|
+
"Pin to Conversation": "",
|
|
51
51
|
"Pinned by": " - הוצמד לשיחה",
|
|
52
|
-
"Please allow Audio permissions in settings.": "
|
|
53
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
54
|
-
"Please select a channel first": "
|
|
52
|
+
"Please allow Audio permissions in settings.": "",
|
|
53
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
54
|
+
"Please select a channel first": "",
|
|
55
55
|
"Reconnecting...": "מתחבר מחדש...",
|
|
56
|
-
"Reply": "
|
|
57
|
-
"Reply to Message": "
|
|
58
|
-
"Resend": "
|
|
59
|
-
"Search GIFs": "
|
|
60
|
-
"Select More Photos": "
|
|
61
|
-
"Send Anyway": "
|
|
62
|
-
"Send a message": "
|
|
63
|
-
"Sending links is not allowed in this conversation": "
|
|
64
|
-
"Slow mode ON": "
|
|
65
|
-
"The message has been reported to a moderator.": "
|
|
66
|
-
"Thread Reply": "
|
|
67
|
-
"Unblock User": "
|
|
68
|
-
"Unknown User": "
|
|
69
|
-
"Unmute User": "
|
|
70
|
-
"Unpin from Conversation": "
|
|
71
|
-
"Unread Messages": "
|
|
56
|
+
"Reply": "",
|
|
57
|
+
"Reply to Message": "",
|
|
58
|
+
"Resend": "",
|
|
59
|
+
"Search GIFs": "",
|
|
60
|
+
"Select More Photos": "",
|
|
61
|
+
"Send Anyway": "",
|
|
62
|
+
"Send a message": "",
|
|
63
|
+
"Sending links is not allowed in this conversation": "",
|
|
64
|
+
"Slow mode ON": "",
|
|
65
|
+
"The message has been reported to a moderator.": "",
|
|
66
|
+
"Thread Reply": "",
|
|
67
|
+
"Unblock User": "",
|
|
68
|
+
"Unknown User": "",
|
|
69
|
+
"Unmute User": "",
|
|
70
|
+
"Unpin from Conversation": "",
|
|
71
|
+
"Unread Messages": "",
|
|
72
72
|
"Video": "וִידֵאוֹ",
|
|
73
73
|
"You": "את/ה",
|
|
74
74
|
"You can't send messages in this channel": "את/ב לא יכול/ה לשלוח הודעות בשיחה זו",
|
|
75
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
76
|
-
"{{ index }} of {{ photoLength }}": "
|
|
77
|
-
"{{ replyCount }} Replies": "
|
|
78
|
-
"{{ replyCount }} Thread Replies": "
|
|
79
|
-
"{{ user }} is typing": "
|
|
80
|
-
"🏙 Attachment...": "
|
|
75
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
76
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
77
|
+
"{{ replyCount }} Replies": "",
|
|
78
|
+
"{{ replyCount }} Thread Replies": "",
|
|
79
|
+
"{{ user }} is typing": "",
|
|
80
|
+
"🏙 Attachment...": ""
|
|
81
81
|
}
|