stream-chat-react-native-core 5.29.1-beta.4 → 5.30.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 +4 -2
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js +2 -2
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js +1 -1
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js +6 -14
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js +11 -0
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +12 -27
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageDeleted.js +10 -12
- package/lib/commonjs/components/Message/MessageSimple/MessageDeleted.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageEditedTimestamp.js +55 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageEditedTimestamp.js.map +1 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js +94 -58
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js +6 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageTimestamp.js +48 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageTimestamp.js.map +1 -0
- package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js +5 -1
- package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js.map +1 -1
- package/lib/commonjs/components/MessageInput/hooks/useAudioController.js +7 -10
- package/lib/commonjs/components/MessageInput/hooks/useAudioController.js.map +1 -1
- package/lib/commonjs/components/MessageList/InlineDateSeparator.js +6 -2
- package/lib/commonjs/components/MessageList/InlineDateSeparator.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +9 -6
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageSystem.js +30 -27
- package/lib/commonjs/components/MessageList/MessageSystem.js.map +1 -1
- package/lib/commonjs/components/MessageList/utils/getGroupStyles.js +3 -2
- package/lib/commonjs/components/MessageList/utils/getGroupStyles.js.map +1 -1
- package/lib/commonjs/components/index.js +11 -0
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/contexts/messageContext/MessageContext.js.map +1 -1
- package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js +3 -0
- package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/commonjs/i18n/en.json +1 -0
- package/lib/commonjs/i18n/es.json +14 -13
- package/lib/commonjs/i18n/fr.json +14 -13
- package/lib/commonjs/i18n/he.json +14 -13
- package/lib/commonjs/i18n/hi.json +14 -13
- package/lib/commonjs/i18n/it.json +14 -13
- package/lib/commonjs/i18n/ja.json +14 -13
- package/lib/commonjs/i18n/ko.json +14 -13
- package/lib/commonjs/i18n/nl.json +14 -13
- package/lib/commonjs/i18n/pt-BR.json +14 -13
- package/lib/commonjs/i18n/ru.json +14 -13
- package/lib/commonjs/i18n/tr.json +14 -13
- package/lib/commonjs/utils/getDateString.js +31 -0
- package/lib/commonjs/utils/getDateString.js.map +1 -0
- package/lib/commonjs/utils/utils.js +5 -1
- package/lib/commonjs/utils/utils.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +4 -2
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js +2 -2
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js +1 -1
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js +6 -14
- package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
- package/lib/module/components/Message/Message.js +11 -0
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageContent.js +12 -27
- package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageDeleted.js +10 -12
- package/lib/module/components/Message/MessageSimple/MessageDeleted.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageEditedTimestamp.js +55 -0
- package/lib/module/components/Message/MessageSimple/MessageEditedTimestamp.js.map +1 -0
- package/lib/module/components/Message/MessageSimple/MessageFooter.js +94 -58
- package/lib/module/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageSimple.js +6 -0
- package/lib/module/components/Message/MessageSimple/MessageSimple.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageTimestamp.js +48 -0
- package/lib/module/components/Message/MessageSimple/MessageTimestamp.js.map +1 -0
- package/lib/module/components/Message/hooks/useCreateMessageContext.js +5 -1
- package/lib/module/components/Message/hooks/useCreateMessageContext.js.map +1 -1
- package/lib/module/components/MessageInput/hooks/useAudioController.js +7 -10
- package/lib/module/components/MessageInput/hooks/useAudioController.js.map +1 -1
- package/lib/module/components/MessageList/InlineDateSeparator.js +6 -2
- package/lib/module/components/MessageList/InlineDateSeparator.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +9 -6
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/components/MessageList/MessageSystem.js +30 -27
- package/lib/module/components/MessageList/MessageSystem.js.map +1 -1
- package/lib/module/components/MessageList/utils/getGroupStyles.js +3 -2
- package/lib/module/components/MessageList/utils/getGroupStyles.js.map +1 -1
- package/lib/module/components/index.js +11 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/contexts/messageContext/MessageContext.js.map +1 -1
- package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/module/contexts/themeContext/utils/theme.js +3 -0
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/i18n/en.json +1 -0
- package/lib/module/i18n/es.json +14 -13
- package/lib/module/i18n/fr.json +14 -13
- package/lib/module/i18n/he.json +14 -13
- package/lib/module/i18n/hi.json +14 -13
- package/lib/module/i18n/it.json +14 -13
- package/lib/module/i18n/ja.json +14 -13
- package/lib/module/i18n/ko.json +14 -13
- package/lib/module/i18n/nl.json +14 -13
- package/lib/module/i18n/pt-BR.json +14 -13
- package/lib/module/i18n/ru.json +14 -13
- package/lib/module/i18n/tr.json +14 -13
- package/lib/module/utils/getDateString.js +31 -0
- package/lib/module/utils/getDateString.js.map +1 -0
- package/lib/module/utils/utils.js +5 -1
- package/lib/module/utils/utils.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateMessagesContext.d.ts +1 -1
- package/lib/typescript/components/ImageGallery/components/ImageGalleryHeader.d.ts.map +1 -1
- package/lib/typescript/components/Message/Message.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageDeleted.d.ts +8 -8
- package/lib/typescript/components/Message/MessageSimple/MessageDeleted.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageEditedTimestamp.d.ts +7 -0
- package/lib/typescript/components/Message/MessageSimple/MessageEditedTimestamp.d.ts.map +1 -0
- package/lib/typescript/components/Message/MessageSimple/MessageFooter.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageFooter.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageTimestamp.d.ts +22 -0
- package/lib/typescript/components/Message/MessageSimple/MessageTimestamp.d.ts.map +1 -0
- package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts +1 -1
- package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/hooks/useAudioController.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/DateHeader.d.ts +1 -1
- package/lib/typescript/components/MessageList/DateHeader.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/InlineDateSeparator.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageSystem.d.ts +0 -8
- package/lib/typescript/components/MessageList/MessageSystem.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/utils/getGroupStyles.d.ts.map +1 -1
- package/lib/typescript/components/index.d.ts +1 -0
- package/lib/typescript/components/index.d.ts.map +1 -1
- package/lib/typescript/contexts/channelContext/ChannelContext.d.ts +1 -1
- package/lib/typescript/contexts/channelContext/ChannelContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts +5 -1
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +6 -5
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts.map +1 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +3 -0
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
- package/lib/typescript/i18n/en.json +1 -0
- package/lib/typescript/i18n/es.json +14 -13
- package/lib/typescript/i18n/fr.json +14 -13
- package/lib/typescript/i18n/he.json +14 -13
- package/lib/typescript/i18n/hi.json +14 -13
- package/lib/typescript/i18n/it.json +14 -13
- package/lib/typescript/i18n/ja.json +14 -13
- package/lib/typescript/i18n/ko.json +14 -13
- package/lib/typescript/i18n/nl.json +14 -13
- package/lib/typescript/i18n/pt-BR.json +14 -13
- package/lib/typescript/i18n/ru.json +14 -13
- package/lib/typescript/i18n/tr.json +14 -13
- package/lib/typescript/utils/Streami18n.d.ts +6 -0
- package/lib/typescript/utils/Streami18n.d.ts.map +1 -1
- package/lib/typescript/utils/getDateString.d.ts +30 -0
- package/lib/typescript/utils/getDateString.d.ts.map +1 -0
- package/lib/typescript/utils/utils.d.ts +6 -0
- package/lib/typescript/utils/utils.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/Channel/Channel.tsx +4 -3
- package/src/components/Channel/hooks/useCreateMessagesContext.ts +2 -2
- package/src/components/ChannelPreview/hooks/useLatestMessagePreview.ts +1 -1
- package/src/components/ImageGallery/components/ImageGalleryHeader.tsx +3 -31
- package/src/components/Message/Message.tsx +7 -0
- package/src/components/Message/MessageSimple/MessageContent.tsx +13 -33
- package/src/components/Message/MessageSimple/MessageDeleted.tsx +13 -31
- package/src/components/Message/MessageSimple/MessageEditedTimestamp.tsx +56 -0
- package/src/components/Message/MessageSimple/MessageFooter.tsx +104 -63
- package/src/components/Message/MessageSimple/MessageSimple.tsx +14 -2
- package/src/components/Message/MessageSimple/MessageTimestamp.tsx +64 -0
- package/src/components/Message/hooks/useCreateMessageContext.ts +5 -0
- package/src/components/MessageInput/hooks/useAudioController.tsx +3 -5
- package/src/components/MessageList/DateHeader.tsx +1 -1
- package/src/components/MessageList/InlineDateSeparator.tsx +8 -8
- package/src/components/MessageList/MessageList.tsx +9 -9
- package/src/components/MessageList/MessageSystem.tsx +35 -43
- package/src/components/MessageList/utils/getGroupStyles.ts +7 -4
- package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +20 -12
- package/src/components/index.ts +1 -0
- package/src/contexts/channelContext/ChannelContext.tsx +1 -1
- package/src/contexts/messageContext/MessageContext.tsx +4 -0
- package/src/contexts/messagesContext/MessagesContext.tsx +6 -5
- package/src/contexts/themeContext/utils/theme.ts +6 -0
- package/src/i18n/en.json +1 -0
- package/src/i18n/es.json +14 -13
- package/src/i18n/fr.json +14 -13
- package/src/i18n/he.json +14 -13
- package/src/i18n/hi.json +14 -13
- package/src/i18n/it.json +14 -13
- package/src/i18n/ja.json +14 -13
- package/src/i18n/ko.json +14 -13
- package/src/i18n/nl.json +14 -13
- package/src/i18n/pt-BR.json +14 -13
- package/src/i18n/ru.json +14 -13
- package/src/i18n/tr.json +14 -13
- package/src/utils/getDateString.ts +67 -0
- package/src/utils/utils.ts +11 -0
- package/src/version.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
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
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -16,14 +16,15 @@
|
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
18
|
"Edit Message": "",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
21
|
"Emoji matching": "",
|
|
21
22
|
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "שגיאה ארעה בעת הטעינה",
|
|
24
|
+
"Error loading channel list...": "שגיאה ארעה בטעינת השיחות...",
|
|
25
|
+
"Error loading messages for this channel...": "שגיאה ארעה בטעינת הודעות עבור שיחה זאת...",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
+
"File type not supported": "",
|
|
27
28
|
"Flag": "",
|
|
28
29
|
"Flag Message": "",
|
|
29
30
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -32,9 +33,9 @@
|
|
|
32
33
|
"Instant Commands": "",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
|
-
"Loading channels...": "",
|
|
36
|
-
"Loading messages...": "",
|
|
37
|
-
"Loading...": "",
|
|
36
|
+
"Loading channels...": "השיחות בטעינה...",
|
|
37
|
+
"Loading messages...": "ההודעות בטעינה..",
|
|
38
|
+
"Loading...": "טוען...",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
40
|
"Message Reactions": "",
|
|
40
41
|
"Message deleted": "ההודעה נמחקה",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"Not supported": "",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
47
|
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
+
"Reconnecting...": "מתחבר מחדש...",
|
|
57
58
|
"Reply": "",
|
|
58
59
|
"Reply to Message": "",
|
|
59
60
|
"Resend": "",
|
|
@@ -71,12 +72,12 @@
|
|
|
71
72
|
"Unpin from Conversation": "",
|
|
72
73
|
"Unread Messages": "הודעות שטרם נקרו",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "את/ה",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
80
81
|
"{{ user }} is typing": "",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
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
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -16,14 +16,15 @@
|
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
18
|
"Edit Message": "",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
21
|
"Emoji matching": "",
|
|
21
22
|
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "लोड होने मे त्रुटि",
|
|
24
|
+
"Error loading channel list...": "चैनल सूची लोड करने में त्रुटि...",
|
|
25
|
+
"Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
+
"File type not supported": "",
|
|
27
28
|
"Flag": "",
|
|
28
29
|
"Flag Message": "",
|
|
29
30
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -32,9 +33,9 @@
|
|
|
32
33
|
"Instant Commands": "",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
|
-
"Loading channels...": "",
|
|
36
|
-
"Loading messages...": "",
|
|
37
|
-
"Loading...": "",
|
|
36
|
+
"Loading channels...": "चैनल लोड हो रहे हैं...",
|
|
37
|
+
"Loading messages...": "मेसेजस लोड हो रहे हैं...",
|
|
38
|
+
"Loading...": "लोड हो रहा है...",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
40
|
"Message Reactions": "",
|
|
40
41
|
"Message deleted": "मैसेज हटा दिया गया",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"Not supported": "",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
47
|
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
+
"Reconnecting...": "पुनः कनेक्ट हो...",
|
|
57
58
|
"Reply": "",
|
|
58
59
|
"Reply to Message": "",
|
|
59
60
|
"Resend": "",
|
|
@@ -71,12 +72,12 @@
|
|
|
71
72
|
"Unpin from Conversation": "",
|
|
72
73
|
"Unread Messages": "अपठित संदेश",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "आप",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
80
81
|
"{{ user }} is typing": "",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
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": "Invia anche al canale",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -16,14 +16,15 @@
|
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
18
|
"Edit Message": "",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
21
|
"Emoji matching": "",
|
|
21
22
|
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "Errore di caricamento",
|
|
24
|
+
"Error loading channel list...": "Errore durante il caricamento della lista dei canali...",
|
|
25
|
+
"Error loading messages for this channel...": "Errore durante il caricamento dei messaggi per questo canale...",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
+
"File type not supported": "",
|
|
27
28
|
"Flag": "",
|
|
28
29
|
"Flag Message": "",
|
|
29
30
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -32,9 +33,9 @@
|
|
|
32
33
|
"Instant Commands": "",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
|
-
"Loading channels...": "",
|
|
36
|
-
"Loading messages...": "",
|
|
37
|
-
"Loading...": "",
|
|
36
|
+
"Loading channels...": "Caricamento canali in corso...",
|
|
37
|
+
"Loading messages...": "Caricamento messaggi...",
|
|
38
|
+
"Loading...": "Caricamento...",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
40
|
"Message Reactions": "",
|
|
40
41
|
"Message deleted": "Messaggio cancellato",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"Not supported": "",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
47
|
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
+
"Reconnecting...": "Ricollegarsi...",
|
|
57
58
|
"Reply": "",
|
|
58
59
|
"Reply to Message": "",
|
|
59
60
|
"Resend": "",
|
|
@@ -71,12 +72,12 @@
|
|
|
71
72
|
"Unpin from Conversation": "",
|
|
72
73
|
"Unread Messages": "Messaggi non letti",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "Tu",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
80
81
|
"{{ user }} is typing": "",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
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
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -16,14 +16,15 @@
|
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
18
|
"Edit Message": "",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
21
|
"Emoji matching": "",
|
|
21
22
|
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "読み込みエラー",
|
|
24
|
+
"Error loading channel list...": "チャネルリストの読み込み中にエラーが発生しました。。。",
|
|
25
|
+
"Error loading messages for this channel...": "このチャネルのメッセージの読み込み中にエラーが発生しました。。。",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
+
"File type not supported": "",
|
|
27
28
|
"Flag": "",
|
|
28
29
|
"Flag Message": "",
|
|
29
30
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -32,9 +33,9 @@
|
|
|
32
33
|
"Instant Commands": "",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
|
-
"Loading channels...": "",
|
|
36
|
-
"Loading messages...": "",
|
|
37
|
-
"Loading...": "",
|
|
36
|
+
"Loading channels...": "チャネルを読み込み中。。。",
|
|
37
|
+
"Loading messages...": "メッセージを読み込み中。。。",
|
|
38
|
+
"Loading...": "読み込み中。。。",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
40
|
"Message Reactions": "",
|
|
40
41
|
"Message deleted": "メッセージが削除されました",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"Not supported": "",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
47
|
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
+
"Reconnecting...": "再接続中。。。",
|
|
57
58
|
"Reply": "",
|
|
58
59
|
"Reply to Message": "",
|
|
59
60
|
"Resend": "",
|
|
@@ -71,12 +72,12 @@
|
|
|
71
72
|
"Unpin from Conversation": "",
|
|
72
73
|
"Unread Messages": "未読メッセージ",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "あなた",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
80
81
|
"{{ user }} is typing": "",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
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
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -16,14 +16,15 @@
|
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
18
|
"Edit Message": "",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
21
|
"Emoji matching": "",
|
|
21
22
|
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "로드 오류",
|
|
24
|
+
"Error loading channel list...": "채널리스트 을로드하는 동안 오류가 발생했습니다...",
|
|
25
|
+
"Error loading messages for this channel...": "이 채널의 메시지를로드하는 동안 오류가 발생했습니다...",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
+
"File type not supported": "",
|
|
27
28
|
"Flag": "",
|
|
28
29
|
"Flag Message": "",
|
|
29
30
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -32,9 +33,9 @@
|
|
|
32
33
|
"Instant Commands": "",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
|
-
"Loading channels...": "",
|
|
36
|
-
"Loading messages...": "",
|
|
37
|
-
"Loading...": "",
|
|
36
|
+
"Loading channels...": "채널을 로딩 중...",
|
|
37
|
+
"Loading messages...": "메시지를 로딩 중...",
|
|
38
|
+
"Loading...": "로딩 중...",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
40
|
"Message Reactions": "",
|
|
40
41
|
"Message deleted": "메시지가 삭제되었습니다.",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"Not supported": "",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
47
|
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
+
"Reconnecting...": "다시 연결 중...",
|
|
57
58
|
"Reply": "",
|
|
58
59
|
"Reply to Message": "",
|
|
59
60
|
"Resend": "",
|
|
@@ -71,12 +72,12 @@
|
|
|
71
72
|
"Unpin from Conversation": "",
|
|
72
73
|
"Unread Messages": "읽지 않은 메시지",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "당신",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
80
81
|
"{{ user }} is typing": "",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
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": "Stuur ook naar kanaal",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -16,14 +16,15 @@
|
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
18
|
"Edit Message": "",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
21
|
"Emoji matching": "",
|
|
21
22
|
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "Probleem bij het laden",
|
|
24
|
+
"Error loading channel list...": "Probleem bij het laden van de kanalen...",
|
|
25
|
+
"Error loading messages for this channel...": "Probleem bij het laden van de berichten in dit kanaal...",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
+
"File type not supported": "",
|
|
27
28
|
"Flag": "",
|
|
28
29
|
"Flag Message": "",
|
|
29
30
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -32,9 +33,9 @@
|
|
|
32
33
|
"Instant Commands": "",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
|
-
"Loading channels...": "",
|
|
36
|
-
"Loading messages...": "",
|
|
37
|
-
"Loading...": "",
|
|
36
|
+
"Loading channels...": "Kanalen aan het laden...",
|
|
37
|
+
"Loading messages...": "Berichten aan het laden...",
|
|
38
|
+
"Loading...": "Aan het laden...",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
40
|
"Message Reactions": "",
|
|
40
41
|
"Message deleted": "Bericht verwijderd",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"Not supported": "",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
47
|
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
+
"Reconnecting...": "Opnieuw Verbinding Maken...",
|
|
57
58
|
"Reply": "",
|
|
58
59
|
"Reply to Message": "",
|
|
59
60
|
"Resend": "",
|
|
@@ -71,12 +72,12 @@
|
|
|
71
72
|
"Unpin from Conversation": "",
|
|
72
73
|
"Unread Messages": "Ongelezen Berichten",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "U",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
80
81
|
"{{ user }} is typing": "",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
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": "Também enviar para o canal",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -16,14 +16,15 @@
|
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
18
|
"Edit Message": "",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
21
|
"Emoji matching": "",
|
|
21
22
|
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "Erro ao carregar",
|
|
24
|
+
"Error loading channel list...": "Erro ao carregar lista de canais...",
|
|
25
|
+
"Error loading messages for this channel...": "Erro ao carregar mensagens para este canal...",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
+
"File type not supported": "",
|
|
27
28
|
"Flag": "",
|
|
28
29
|
"Flag Message": "",
|
|
29
30
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -32,9 +33,9 @@
|
|
|
32
33
|
"Instant Commands": "",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
|
-
"Loading channels...": "",
|
|
36
|
-
"Loading messages...": "",
|
|
37
|
-
"Loading...": "",
|
|
36
|
+
"Loading channels...": "Carregando canais...",
|
|
37
|
+
"Loading messages...": "Carregando mensagens...",
|
|
38
|
+
"Loading...": "Carregando...",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
40
|
"Message Reactions": "",
|
|
40
41
|
"Message deleted": "Mensagem excluída",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"Not supported": "",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
47
|
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
+
"Reconnecting...": "Reconectando...",
|
|
57
58
|
"Reply": "",
|
|
58
59
|
"Reply to Message": "",
|
|
59
60
|
"Resend": "",
|
|
@@ -71,12 +72,12 @@
|
|
|
71
72
|
"Unpin from Conversation": "",
|
|
72
73
|
"Unread Messages": "Mensagens não lidas",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "Você",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
80
81
|
"{{ user }} is typing": "",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "",
|
|
3
|
-
"1 Thread Reply": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
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
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "",
|
|
@@ -16,14 +16,15 @@
|
|
|
16
16
|
"Device camera is used to take photos or videos.": "",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
18
|
"Edit Message": "",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
21
|
"Emoji matching": "",
|
|
21
22
|
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
23
|
+
"Error loading": "Ошибка при загрузке",
|
|
24
|
+
"Error loading channel list...": "Ошибка загрузки списка каналов...",
|
|
25
|
+
"Error loading messages for this channel...": "Ошибка загрузки сообщений для этого канала...",
|
|
25
26
|
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "
|
|
27
|
+
"File type not supported": "",
|
|
27
28
|
"Flag": "",
|
|
28
29
|
"Flag Message": "",
|
|
29
30
|
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
@@ -32,9 +33,9 @@
|
|
|
32
33
|
"Instant Commands": "",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
|
-
"Loading channels...": "",
|
|
36
|
-
"Loading messages...": "",
|
|
37
|
-
"Loading...": "",
|
|
36
|
+
"Loading channels...": "Загружаю каналы...",
|
|
37
|
+
"Loading messages...": "Загружаю сообщения...",
|
|
38
|
+
"Loading...": "Загружаю...",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
40
|
"Message Reactions": "",
|
|
40
41
|
"Message deleted": "Сообщение удалено",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
"Not supported": "",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
47
|
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
"Please allow Audio permissions in settings.": "",
|
|
54
55
|
"Please enable access to your photos and videos so you can share them.": "",
|
|
55
56
|
"Please select a channel first": "",
|
|
56
|
-
"Reconnecting...": "",
|
|
57
|
+
"Reconnecting...": "Переподключение...",
|
|
57
58
|
"Reply": "",
|
|
58
59
|
"Reply to Message": "",
|
|
59
60
|
"Resend": "",
|
|
@@ -71,12 +72,12 @@
|
|
|
71
72
|
"Unpin from Conversation": "",
|
|
72
73
|
"Unread Messages": "Непрочитанные Сообщения",
|
|
73
74
|
"Video": "",
|
|
74
|
-
"You": "",
|
|
75
|
+
"You": "Вы",
|
|
75
76
|
"You can't send messages in this channel": "",
|
|
76
77
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
80
81
|
"{{ user }} is typing": "",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|