stream-chat-react-native-core 5.29.1-beta.4 → 5.30.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/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/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 +2 -1
- package/lib/commonjs/i18n/es.json +39 -38
- package/lib/commonjs/i18n/fr.json +39 -38
- package/lib/commonjs/i18n/he.json +39 -38
- package/lib/commonjs/i18n/hi.json +39 -38
- package/lib/commonjs/i18n/it.json +39 -38
- package/lib/commonjs/i18n/ja.json +39 -38
- package/lib/commonjs/i18n/ko.json +39 -38
- package/lib/commonjs/i18n/nl.json +39 -38
- package/lib/commonjs/i18n/pt-BR.json +39 -38
- package/lib/commonjs/i18n/ru.json +39 -38
- package/lib/commonjs/i18n/tr.json +39 -38
- 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/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 +2 -1
- package/lib/module/i18n/es.json +39 -38
- package/lib/module/i18n/fr.json +39 -38
- package/lib/module/i18n/he.json +39 -38
- package/lib/module/i18n/hi.json +39 -38
- package/lib/module/i18n/it.json +39 -38
- package/lib/module/i18n/ja.json +39 -38
- package/lib/module/i18n/ko.json +39 -38
- package/lib/module/i18n/nl.json +39 -38
- package/lib/module/i18n/pt-BR.json +39 -38
- package/lib/module/i18n/ru.json +39 -38
- package/lib/module/i18n/tr.json +39 -38
- 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/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 +2 -1
- package/lib/typescript/i18n/es.json +39 -38
- package/lib/typescript/i18n/fr.json +39 -38
- package/lib/typescript/i18n/he.json +39 -38
- package/lib/typescript/i18n/hi.json +39 -38
- package/lib/typescript/i18n/it.json +39 -38
- package/lib/typescript/i18n/ja.json +39 -38
- package/lib/typescript/i18n/ko.json +39 -38
- package/lib/typescript/i18n/nl.json +39 -38
- package/lib/typescript/i18n/pt-BR.json +39 -38
- package/lib/typescript/i18n/ru.json +39 -38
- package/lib/typescript/i18n/tr.json +39 -38
- 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/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 +2 -1
- package/src/i18n/es.json +39 -38
- package/src/i18n/fr.json +39 -38
- package/src/i18n/he.json +39 -38
- package/src/i18n/hi.json +39 -38
- package/src/i18n/it.json +39 -38
- package/src/i18n/ja.json +39 -38
- package/src/i18n/ko.json +39 -38
- package/src/i18n/nl.json +39 -38
- package/src/i18n/pt-BR.json +39 -38
- package/src/i18n/ru.json +39 -38
- package/src/i18n/tr.json +39 -38
- package/src/utils/getDateString.ts +67 -0
- package/src/utils/utils.ts +11 -0
- package/src/version.json +1 -1
package/src/i18n/hi.json
CHANGED
|
@@ -1,82 +1,83 @@
|
|
|
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
6
|
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "क्या आप वाकई इस संदेश को स्थायी रूप से हटाना चाहते हैं?",
|
|
8
|
+
"Are you sure?": "क्या आप सुनिश्चित हैं?",
|
|
9
|
+
"Block User": "उपयोगकर्ता को रोक देना, ब्लॉक यूजर",
|
|
10
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": "",
|
|
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
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": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "क्या आप इस संदेश की एक प्रति आगे की जाँच के लिए किसी मॉडरेटर को भेजना चाहते हैं?",
|
|
18
|
+
"Edit Message": "मैसेज में बदलाव करे",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "इमोजी मिलान",
|
|
21
22
|
"Empty message...": "",
|
|
22
23
|
"Error loading": "",
|
|
23
24
|
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
|
|
25
26
|
"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": "",
|
|
27
|
+
"File type not supported": "",
|
|
28
|
+
"Flag": "झंडा",
|
|
29
|
+
"Flag Message": "झंडा संदेश",
|
|
30
|
+
"Flag action failed either due to a network issue or the message is already flagged": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
|
|
30
31
|
"Hold to start recording.": "",
|
|
31
32
|
"How about sending your first message to a friend?": "",
|
|
32
|
-
"Instant Commands": "",
|
|
33
|
+
"Instant Commands": "त्वरित कमांड",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
36
|
"Loading channels...": "",
|
|
36
37
|
"Loading messages...": "",
|
|
37
38
|
"Loading...": "",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
-
"Message Reactions": "",
|
|
40
|
+
"Message Reactions": "संदेश प्रतिक्रियाएँ",
|
|
40
41
|
"Message deleted": "मैसेज हटा दिया गया",
|
|
41
|
-
"Message flagged": "",
|
|
42
|
-
"Mute User": "",
|
|
42
|
+
"Message flagged": "संदेश को ध्वजांकित किया गया",
|
|
43
|
+
"Mute User": "उपयोगकर्ता को म्यूट करें",
|
|
43
44
|
"No chats here yet…": "",
|
|
44
|
-
"Not supported": "",
|
|
45
|
+
"Not supported": "समर्थित नहीं",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
|
-
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
47
|
+
"Ok": "ठीक",
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
51
|
-
"Pin to Conversation": "",
|
|
52
|
+
"Pin to Conversation": "बातचीत में पिन करें",
|
|
52
53
|
"Pinned by": "",
|
|
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
|
-
"Reply": "",
|
|
57
|
+
"Reconnecting...": "पुनः कनेक्ट हो...",
|
|
58
|
+
"Reply": "मैसेज को रिप्लाई करे",
|
|
58
59
|
"Reply to Message": "",
|
|
59
|
-
"Resend": "",
|
|
60
|
+
"Resend": "पुन: भेजें",
|
|
60
61
|
"Search GIFs": "",
|
|
61
62
|
"Select More Photos": "",
|
|
62
|
-
"Send Anyway": "",
|
|
63
|
+
"Send Anyway": "फिर भी भेजें",
|
|
63
64
|
"Send a message": "",
|
|
64
65
|
"Sending links is not allowed in this conversation": "",
|
|
65
66
|
"Slow mode ON": "",
|
|
66
|
-
"The message has been reported to a moderator.": "",
|
|
67
|
-
"Thread Reply": "",
|
|
68
|
-
"Unblock User": "",
|
|
67
|
+
"The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
|
|
68
|
+
"Thread Reply": "धागा जवाब",
|
|
69
|
+
"Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
|
|
69
70
|
"Unknown User": "",
|
|
70
|
-
"Unmute User": "",
|
|
71
|
-
"Unpin from Conversation": "",
|
|
71
|
+
"Unmute User": "उपयोगकर्ता को अनम्यूट करें",
|
|
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
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
-
"{{ user }} is typing": "",
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "{{ user }} टाइप कर रहा है",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
package/src/i18n/it.json
CHANGED
|
@@ -1,82 +1,83 @@
|
|
|
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
6
|
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "Sei sicuro di voler eliminare definitivamente questo messaggio?",
|
|
8
|
+
"Are you sure?": "Sei sicuro?",
|
|
9
|
+
"Block User": "Blocca Utente",
|
|
10
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": "",
|
|
11
|
+
"Cannot Flag Message": "Impossibile Segnalare Messaggio",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considera come il tuo commento potrebbe far sentire gli altri e assicurati di seguire le nostre Linee guida della community",
|
|
13
|
+
"Copy Message": "Copia Messaggio",
|
|
14
|
+
"Delete": "Elimina",
|
|
15
|
+
"Delete Message": "Cancella il Messaggio",
|
|
16
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": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "Vuoi inviare una copia di questo messaggio a un moderatore per ulteriori indagini?",
|
|
18
|
+
"Edit Message": "Modifica Messaggio",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "Abbinamento emoji",
|
|
21
22
|
"Empty message...": "",
|
|
22
23
|
"Error loading": "",
|
|
23
24
|
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
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
|
-
"Flag": "",
|
|
28
|
-
"Flag Message": "",
|
|
29
|
-
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
27
|
+
"File type not supported": "",
|
|
28
|
+
"Flag": "Contrassegna",
|
|
29
|
+
"Flag Message": "Contrassegna Messaggio",
|
|
30
|
+
"Flag action failed either due to a network issue or the message is already flagged": "L'azione di segnalazione non è riuscita a causa di un problema di rete o il messaggio è già segnalato.",
|
|
30
31
|
"Hold to start recording.": "",
|
|
31
32
|
"How about sending your first message to a friend?": "",
|
|
32
|
-
"Instant Commands": "",
|
|
33
|
+
"Instant Commands": "Comandi Istantanei",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
36
|
"Loading channels...": "",
|
|
36
37
|
"Loading messages...": "",
|
|
37
38
|
"Loading...": "",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
-
"Message Reactions": "",
|
|
40
|
+
"Message Reactions": "Reazioni ai Messaggi",
|
|
40
41
|
"Message deleted": "Messaggio cancellato",
|
|
41
|
-
"Message flagged": "",
|
|
42
|
-
"Mute User": "",
|
|
42
|
+
"Message flagged": "Messaggio contrassegnato",
|
|
43
|
+
"Mute User": "Utente Muto",
|
|
43
44
|
"No chats here yet…": "",
|
|
44
|
-
"Not supported": "",
|
|
45
|
+
"Not supported": "non supportato",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
|
-
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
47
|
+
"Ok": "Ok",
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
51
|
-
"Pin to Conversation": "",
|
|
52
|
+
"Pin to Conversation": "Metti in evidenza",
|
|
52
53
|
"Pinned by": "",
|
|
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
|
-
"Reply": "",
|
|
57
|
+
"Reconnecting...": "Ricollegarsi...",
|
|
58
|
+
"Reply": "Rispondi",
|
|
58
59
|
"Reply to Message": "",
|
|
59
|
-
"Resend": "",
|
|
60
|
+
"Resend": "Invia di nuovo",
|
|
60
61
|
"Search GIFs": "",
|
|
61
62
|
"Select More Photos": "",
|
|
62
|
-
"Send Anyway": "",
|
|
63
|
+
"Send Anyway": "Invia comunque",
|
|
63
64
|
"Send a message": "",
|
|
64
65
|
"Sending links is not allowed in this conversation": "",
|
|
65
66
|
"Slow mode ON": "",
|
|
66
|
-
"The message has been reported to a moderator.": "",
|
|
67
|
-
"Thread Reply": "",
|
|
68
|
-
"Unblock User": "",
|
|
67
|
+
"The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
|
|
68
|
+
"Thread Reply": "Rispondi alla Discussione",
|
|
69
|
+
"Unblock User": "Sblocca utente",
|
|
69
70
|
"Unknown User": "",
|
|
70
|
-
"Unmute User": "",
|
|
71
|
-
"Unpin from Conversation": "",
|
|
71
|
+
"Unmute User": "Riattiva utente",
|
|
72
|
+
"Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
|
|
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
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
-
"{{ user }} is typing": "",
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "{{ user }} sta scrivendo",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
package/src/i18n/ja.json
CHANGED
|
@@ -1,82 +1,83 @@
|
|
|
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
6
|
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "このメッセージを完全に削除してもよろしいですか?",
|
|
8
|
+
"Are you sure?": "本当によろしいですか?",
|
|
9
|
+
"Block User": "ユーザをブロックする",
|
|
10
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": "",
|
|
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
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": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "このメッセージのコピーをモデレーターに送信して、さらに調査しますか?",
|
|
18
|
+
"Edit Message": "メッセージを編集",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "絵文字マッチング",
|
|
21
22
|
"Empty message...": "",
|
|
22
23
|
"Error loading": "",
|
|
23
24
|
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error loading messages for this channel...": "このチャネルのメッセージの読み込み中にエラーが発生しました。。。",
|
|
25
26
|
"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": "",
|
|
27
|
+
"File type not supported": "",
|
|
28
|
+
"Flag": "フラグ",
|
|
29
|
+
"Flag Message": "メッセージをフラグする",
|
|
30
|
+
"Flag action failed either due to a network issue or the message is already flagged": "ネットワーク接続に問題があるか、すでにフラグが設定されているため、フラグが失敗しました。",
|
|
30
31
|
"Hold to start recording.": "",
|
|
31
32
|
"How about sending your first message to a friend?": "",
|
|
32
|
-
"Instant Commands": "",
|
|
33
|
+
"Instant Commands": "インスタントコマンド",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
36
|
"Loading channels...": "",
|
|
36
37
|
"Loading messages...": "",
|
|
37
38
|
"Loading...": "",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
-
"Message Reactions": "",
|
|
40
|
+
"Message Reactions": "メッセージのリアクション",
|
|
40
41
|
"Message deleted": "メッセージが削除されました",
|
|
41
|
-
"Message flagged": "",
|
|
42
|
-
"Mute User": "",
|
|
42
|
+
"Message flagged": "メッセージにフラグが付けられました",
|
|
43
|
+
"Mute User": "ユーザーをミュートする",
|
|
43
44
|
"No chats here yet…": "",
|
|
44
|
-
"Not supported": "",
|
|
45
|
+
"Not supported": "サポートしていません",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
|
-
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
47
|
+
"Ok": "確認",
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
51
|
-
"Pin to Conversation": "",
|
|
52
|
+
"Pin to Conversation": "会話にピンする",
|
|
52
53
|
"Pinned by": "",
|
|
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
|
-
"Reply": "",
|
|
57
|
+
"Reconnecting...": "再接続中。。。",
|
|
58
|
+
"Reply": "返事",
|
|
58
59
|
"Reply to Message": "",
|
|
59
|
-
"Resend": "",
|
|
60
|
+
"Resend": "再送",
|
|
60
61
|
"Search GIFs": "",
|
|
61
62
|
"Select More Photos": "",
|
|
62
|
-
"Send Anyway": "",
|
|
63
|
+
"Send Anyway": "とにかく送信",
|
|
63
64
|
"Send a message": "",
|
|
64
65
|
"Sending links is not allowed in this conversation": "",
|
|
65
66
|
"Slow mode ON": "",
|
|
66
|
-
"The message has been reported to a moderator.": "",
|
|
67
|
-
"Thread Reply": "",
|
|
68
|
-
"Unblock User": "",
|
|
67
|
+
"The message has been reported to a moderator.": "メッセージはモデレーターに報告されました。",
|
|
68
|
+
"Thread Reply": "スレッドの返信",
|
|
69
|
+
"Unblock User": "ユーザーのブロックを解除する",
|
|
69
70
|
"Unknown User": "",
|
|
70
|
-
"Unmute User": "",
|
|
71
|
-
"Unpin from Conversation": "",
|
|
71
|
+
"Unmute User": "ユーザーのミュートを解除する",
|
|
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
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }}と{{ nonSelfUserLength }}人がタイピングしています",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
-
"{{ user }} is typing": "",
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "{{ user }}はタイピング中",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
package/src/i18n/ko.json
CHANGED
|
@@ -1,82 +1,83 @@
|
|
|
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
6
|
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "이 메시지를 영구적으로 삭제하시겠습니까?",
|
|
8
|
+
"Are you sure?": "확실합니까?",
|
|
9
|
+
"Block User": "사용자 차단",
|
|
10
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": "",
|
|
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
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": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "이 메시지의 복사본을 운영자에게 보내 추가 조사를합니까?",
|
|
18
|
+
"Edit Message": "메시지 수정",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "이모티콘 매칭",
|
|
21
22
|
"Empty message...": "",
|
|
22
23
|
"Error loading": "",
|
|
23
24
|
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
25
|
+
"Error loading messages for this channel...": "이 채널의 메시지를로드하는 동안 오류가 발생했습니다...",
|
|
25
26
|
"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": "",
|
|
27
|
+
"File type not supported": "",
|
|
28
|
+
"Flag": "플래그",
|
|
29
|
+
"Flag Message": "메시지를 플래그하기",
|
|
30
|
+
"Flag action failed either due to a network issue or the message is already flagged": "네트워크 연결에 문제가 있거나 이미 플래그 되어서 플래그에 실패했습니다.",
|
|
30
31
|
"Hold to start recording.": "",
|
|
31
32
|
"How about sending your first message to a friend?": "",
|
|
32
|
-
"Instant Commands": "",
|
|
33
|
+
"Instant Commands": "인스턴트 명령",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
36
|
"Loading channels...": "",
|
|
36
37
|
"Loading messages...": "",
|
|
37
38
|
"Loading...": "",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
-
"Message Reactions": "",
|
|
40
|
+
"Message Reactions": "메시지의 리액션",
|
|
40
41
|
"Message deleted": "메시지가 삭제되었습니다.",
|
|
41
|
-
"Message flagged": "",
|
|
42
|
-
"Mute User": "",
|
|
42
|
+
"Message flagged": "메시지에 플래그가 지정되었습니다",
|
|
43
|
+
"Mute User": "사용자를 음소거",
|
|
43
44
|
"No chats here yet…": "",
|
|
44
|
-
"Not supported": "",
|
|
45
|
+
"Not supported": "지원하지 않습니다",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
|
-
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
47
|
+
"Ok": "확인",
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
51
|
-
"Pin to Conversation": "",
|
|
52
|
+
"Pin to Conversation": "대화에 고정합니다",
|
|
52
53
|
"Pinned by": "",
|
|
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
|
-
"Reply": "",
|
|
57
|
+
"Reconnecting...": "다시 연결 중...",
|
|
58
|
+
"Reply": "답장",
|
|
58
59
|
"Reply to Message": "",
|
|
59
|
-
"Resend": "",
|
|
60
|
+
"Resend": "재전송",
|
|
60
61
|
"Search GIFs": "",
|
|
61
62
|
"Select More Photos": "",
|
|
62
|
-
"Send Anyway": "",
|
|
63
|
+
"Send Anyway": "그래도 보내기",
|
|
63
64
|
"Send a message": "",
|
|
64
65
|
"Sending links is not allowed in this conversation": "",
|
|
65
66
|
"Slow mode ON": "",
|
|
66
|
-
"The message has been reported to a moderator.": "",
|
|
67
|
-
"Thread Reply": "",
|
|
68
|
-
"Unblock User": "",
|
|
67
|
+
"The message has been reported to a moderator.": "메시지는 운영자에보고되었습니다.",
|
|
68
|
+
"Thread Reply": "스레드 답장",
|
|
69
|
+
"Unblock User": "사용자 차단 해제",
|
|
69
70
|
"Unknown User": "",
|
|
70
|
-
"Unmute User": "",
|
|
71
|
-
"Unpin from Conversation": "",
|
|
71
|
+
"Unmute User": "사용자 음소거 해제",
|
|
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
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} 외 {{ nonSelfUserLength }}명이 입력 중입니다",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
-
"{{ user }} is typing": "",
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "{{ user }} 타이핑 중",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|
package/src/i18n/nl.json
CHANGED
|
@@ -1,82 +1,83 @@
|
|
|
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
6
|
"Also send to channel": "",
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
-
"Are you sure?": "",
|
|
9
|
-
"Block User": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "Weet u zeker dat u dit bericht definitief wilt verwijderen?",
|
|
8
|
+
"Are you sure?": "Weet je het zeker?",
|
|
9
|
+
"Block User": "Blokkeer Gebruiker",
|
|
10
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": "",
|
|
11
|
+
"Cannot Flag Message": "Kan bericht niet rapporteren",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Denk na over hoe jouw opmerking anderen zou kunnen laten voelen en zorg ervoor dat je onze Community-richtlijnen volgt",
|
|
13
|
+
"Copy Message": "Bericht kopiëren",
|
|
14
|
+
"Delete": "Verwijderen",
|
|
15
|
+
"Delete Message": "Verwijder bericht",
|
|
16
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": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "Wil je een kopie van dit bericht naar een moderator sturen voor verder onderzoek?",
|
|
18
|
+
"Edit Message": "Pas bericht aan",
|
|
19
|
+
"Edited": "",
|
|
19
20
|
"Editing Message": "",
|
|
20
|
-
"Emoji matching": "",
|
|
21
|
+
"Emoji matching": "Emoji-overeenkomsten",
|
|
21
22
|
"Empty message...": "",
|
|
22
23
|
"Error loading": "",
|
|
23
24
|
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
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
|
-
"Flag": "",
|
|
28
|
-
"Flag Message": "",
|
|
29
|
-
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
27
|
+
"File type not supported": "",
|
|
28
|
+
"Flag": "Markeer",
|
|
29
|
+
"Flag Message": "Markeer bericht",
|
|
30
|
+
"Flag action failed either due to a network issue or the message is already flagged": "Rapporteren mislukt door een netwerk fout of het berich is al gerapporteerd",
|
|
30
31
|
"Hold to start recording.": "",
|
|
31
32
|
"How about sending your first message to a friend?": "",
|
|
32
|
-
"Instant Commands": "",
|
|
33
|
+
"Instant Commands": "Directe Opdrachten",
|
|
33
34
|
"Let's start chatting!": "",
|
|
34
35
|
"Links are disabled": "",
|
|
35
36
|
"Loading channels...": "",
|
|
36
37
|
"Loading messages...": "",
|
|
37
38
|
"Loading...": "",
|
|
38
39
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
39
|
-
"Message Reactions": "",
|
|
40
|
+
"Message Reactions": "Bericht Reacties",
|
|
40
41
|
"Message deleted": "Bericht verwijderd",
|
|
41
|
-
"Message flagged": "",
|
|
42
|
-
"Mute User": "",
|
|
42
|
+
"Message flagged": "Bericht gemarkeerd",
|
|
43
|
+
"Mute User": "Gebruiker dempen",
|
|
43
44
|
"No chats here yet…": "",
|
|
44
|
-
"Not supported": "",
|
|
45
|
+
"Not supported": "niet ondersteund",
|
|
45
46
|
"Nothing yet...": "",
|
|
46
|
-
"Ok": "",
|
|
47
|
-
"Only visible to you": "
|
|
47
|
+
"Ok": "Oké",
|
|
48
|
+
"Only visible to you": "",
|
|
48
49
|
"Open Settings": "",
|
|
49
50
|
"Photo": "",
|
|
50
51
|
"Photos and Videos": "",
|
|
51
|
-
"Pin to Conversation": "",
|
|
52
|
+
"Pin to Conversation": "Vastmaken aan gesprek",
|
|
52
53
|
"Pinned by": "",
|
|
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
|
-
"Reply": "",
|
|
57
|
+
"Reconnecting...": "Opnieuw Verbinding Maken...",
|
|
58
|
+
"Reply": "Antwoord",
|
|
58
59
|
"Reply to Message": "",
|
|
59
|
-
"Resend": "",
|
|
60
|
+
"Resend": "Opnieuw versturen",
|
|
60
61
|
"Search GIFs": "",
|
|
61
62
|
"Select More Photos": "",
|
|
62
|
-
"Send Anyway": "",
|
|
63
|
+
"Send Anyway": "Toch verzenden",
|
|
63
64
|
"Send a message": "",
|
|
64
65
|
"Sending links is not allowed in this conversation": "",
|
|
65
66
|
"Slow mode ON": "",
|
|
66
|
-
"The message has been reported to a moderator.": "",
|
|
67
|
-
"Thread Reply": "",
|
|
68
|
-
"Unblock User": "",
|
|
67
|
+
"The message has been reported to a moderator.": "Het bericht is gerapporteerd aan een moderator.",
|
|
68
|
+
"Thread Reply": "Discussie beantwoorden",
|
|
69
|
+
"Unblock User": "Deblokkeer gebruiker",
|
|
69
70
|
"Unknown User": "",
|
|
70
|
-
"Unmute User": "",
|
|
71
|
-
"Unpin from Conversation": "",
|
|
71
|
+
"Unmute User": "Dempen van gebruiker opheffen",
|
|
72
|
+
"Unpin from Conversation": "Losmaken van gesprek",
|
|
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
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
|
|
77
78
|
"{{ index }} of {{ photoLength }}": "",
|
|
78
79
|
"{{ replyCount }} Replies": "",
|
|
79
|
-
"{{ replyCount }} Thread Replies": "
|
|
80
|
-
"{{ user }} is typing": "",
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "{{ user }} is aan het typen",
|
|
81
82
|
"🏙 Attachment...": ""
|
|
82
83
|
}
|