stream-chat-react-native-core 5.32.0-beta.1 → 5.32.0-beta.3
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 +7 -1
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js +2 -0
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/commonjs/components/ChannelPreview/ChannelPreviewStatus.js +18 -3
- package/lib/commonjs/components/ChannelPreview/ChannelPreviewStatus.js.map +1 -1
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js +4 -17
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/commonjs/components/Chat/Chat.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js +9 -6
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageEditedTimestamp.js +4 -5
- package/lib/commonjs/components/Message/MessageSimple/MessageEditedTimestamp.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js +8 -8
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageTimestamp.js +21 -18
- package/lib/commonjs/components/Message/MessageSimple/MessageTimestamp.js.map +1 -1
- package/lib/commonjs/components/MessageList/InlineDateSeparator.js +14 -12
- package/lib/commonjs/components/MessageList/InlineDateSeparator.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +4 -28
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageSystem.js +14 -8
- package/lib/commonjs/components/MessageList/MessageSystem.js.map +1 -1
- package/lib/commonjs/components/MessageList/StickyHeader.js +36 -0
- package/lib/commonjs/components/MessageList/StickyHeader.js.map +1 -0
- package/lib/commonjs/components/index.js +11 -0
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/contexts/channelContext/ChannelContext.js.map +1 -1
- package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/commonjs/hooks/useStreami18n.js +1 -1
- package/lib/commonjs/i18n/en.json +88 -81
- package/lib/commonjs/i18n/es.json +88 -81
- package/lib/commonjs/i18n/fr.json +88 -81
- package/lib/commonjs/i18n/he.json +88 -81
- package/lib/commonjs/i18n/hi.json +88 -81
- package/lib/commonjs/i18n/it.json +88 -81
- package/lib/commonjs/i18n/ja.json +88 -81
- package/lib/commonjs/i18n/ko.json +88 -81
- package/lib/commonjs/i18n/nl.json +88 -81
- package/lib/commonjs/i18n/pt-br.json +90 -0
- package/lib/commonjs/i18n/ru.json +88 -81
- package/lib/commonjs/i18n/tr.json +88 -81
- package/lib/commonjs/index.js +2 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/{module/utils → commonjs/utils/i18n}/Streami18n.js +62 -69
- package/lib/commonjs/utils/i18n/Streami18n.js.map +1 -0
- package/lib/commonjs/utils/i18n/calendarFormats.js +104 -0
- package/lib/commonjs/utils/i18n/calendarFormats.js.map +1 -0
- package/lib/commonjs/utils/i18n/getDateString.js +47 -0
- package/lib/commonjs/utils/i18n/getDateString.js.map +1 -0
- package/lib/commonjs/utils/i18n/predefinedFormatters.js +40 -0
- package/lib/commonjs/utils/i18n/predefinedFormatters.js.map +1 -0
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +7 -1
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js +2 -0
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/module/components/ChannelPreview/ChannelPreviewStatus.js +18 -3
- package/lib/module/components/ChannelPreview/ChannelPreviewStatus.js.map +1 -1
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js +4 -17
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/module/components/Chat/Chat.js.map +1 -1
- package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js +9 -6
- package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageEditedTimestamp.js +4 -5
- package/lib/module/components/Message/MessageSimple/MessageEditedTimestamp.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageFooter.js +8 -8
- package/lib/module/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageTimestamp.js +21 -18
- package/lib/module/components/Message/MessageSimple/MessageTimestamp.js.map +1 -1
- package/lib/module/components/MessageList/InlineDateSeparator.js +14 -12
- package/lib/module/components/MessageList/InlineDateSeparator.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +4 -28
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/components/MessageList/MessageSystem.js +14 -8
- package/lib/module/components/MessageList/MessageSystem.js.map +1 -1
- package/lib/module/components/MessageList/StickyHeader.js +36 -0
- package/lib/module/components/MessageList/StickyHeader.js.map +1 -0
- package/lib/module/components/index.js +11 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/contexts/channelContext/ChannelContext.js.map +1 -1
- package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/module/hooks/useStreami18n.js +1 -1
- package/lib/module/i18n/en.json +88 -81
- package/lib/module/i18n/es.json +88 -81
- package/lib/module/i18n/fr.json +88 -81
- package/lib/module/i18n/he.json +88 -81
- package/lib/module/i18n/hi.json +88 -81
- package/lib/module/i18n/it.json +88 -81
- package/lib/module/i18n/ja.json +88 -81
- package/lib/module/i18n/ko.json +88 -81
- package/lib/module/i18n/nl.json +88 -81
- package/lib/module/i18n/pt-br.json +90 -0
- package/lib/module/i18n/ru.json +88 -81
- package/lib/module/i18n/tr.json +88 -81
- package/lib/module/index.js +2 -1
- package/lib/module/index.js.map +1 -1
- package/lib/{commonjs/utils → module/utils/i18n}/Streami18n.js +62 -69
- package/lib/module/utils/i18n/Streami18n.js.map +1 -0
- package/lib/module/utils/i18n/calendarFormats.js +104 -0
- package/lib/module/utils/i18n/calendarFormats.js.map +1 -0
- package/lib/module/utils/i18n/getDateString.js +47 -0
- package/lib/module/utils/i18n/getDateString.js.map +1 -0
- package/lib/module/utils/i18n/predefinedFormatters.js +40 -0
- package/lib/module/utils/i18n/predefinedFormatters.js.map +1 -0
- 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/Channel/hooks/useCreateMessagesContext.d.ts.map +1 -1
- package/lib/typescript/components/ChannelPreview/ChannelPreviewStatus.d.ts.map +1 -1
- package/lib/typescript/components/ChannelPreview/hooks/useLatestMessagePreview.d.ts +1 -1
- package/lib/typescript/components/ChannelPreview/hooks/useLatestMessagePreview.d.ts.map +1 -1
- package/lib/typescript/components/Chat/Chat.d.ts +1 -1
- package/lib/typescript/components/Chat/Chat.d.ts.map +1 -1
- package/lib/typescript/components/ImageGallery/components/ImageGalleryHeader.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageEditedTimestamp.d.ts +2 -2
- package/lib/typescript/components/Message/MessageSimple/MessageEditedTimestamp.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageFooter.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageTimestamp.d.ts +2 -13
- package/lib/typescript/components/Message/MessageSimple/MessageTimestamp.d.ts.map +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActionHandlers.d.ts +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActions.d.ts +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 +7 -1
- package/lib/typescript/components/MessageList/InlineDateSeparator.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageList.d.ts +1 -2
- package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageSystem.d.ts +3 -0
- package/lib/typescript/components/MessageList/MessageSystem.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/StickyHeader.d.ts +18 -0
- package/lib/typescript/components/MessageList/StickyHeader.d.ts.map +1 -0
- 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 +2 -3
- package/lib/typescript/contexts/channelContext/ChannelContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts +1 -1
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts +1 -1
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +6 -0
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts.map +1 -1
- package/lib/typescript/contexts/overlayContext/OverlayContext.d.ts +1 -1
- package/lib/typescript/contexts/overlayContext/OverlayContext.d.ts.map +1 -1
- package/lib/typescript/hooks/useStreami18n.d.ts +1 -1
- package/lib/typescript/hooks/useStreami18n.d.ts.map +1 -1
- package/lib/typescript/i18n/en.json +88 -81
- package/lib/typescript/i18n/es.json +88 -81
- package/lib/typescript/i18n/fr.json +88 -81
- package/lib/typescript/i18n/he.json +88 -81
- package/lib/typescript/i18n/hi.json +88 -81
- package/lib/typescript/i18n/it.json +88 -81
- package/lib/typescript/i18n/ja.json +88 -81
- package/lib/typescript/i18n/ko.json +88 -81
- package/lib/typescript/i18n/nl.json +88 -81
- package/lib/typescript/i18n/pt-br.json +90 -0
- package/lib/typescript/i18n/ru.json +88 -81
- package/lib/typescript/i18n/tr.json +88 -81
- package/lib/typescript/index.d.ts +3 -1
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/utils/{Streami18n.d.ts → i18n/Streami18n.d.ts} +16 -10
- package/lib/typescript/utils/i18n/Streami18n.d.ts.map +1 -0
- package/lib/typescript/utils/i18n/calendarFormats.d.ts +14 -0
- package/lib/typescript/utils/i18n/calendarFormats.d.ts.map +1 -0
- package/lib/typescript/utils/i18n/getDateString.d.ts +16 -0
- package/lib/typescript/utils/i18n/getDateString.d.ts.map +1 -0
- package/lib/typescript/utils/i18n/predefinedFormatters.d.ts +13 -0
- package/lib/typescript/utils/i18n/predefinedFormatters.d.ts.map +1 -0
- package/package.json +10 -10
- package/src/components/Attachment/__tests__/Giphy.test.js +1 -1
- package/src/components/Channel/Channel.tsx +6 -1
- package/src/components/Channel/hooks/useCreateMessagesContext.ts +2 -0
- package/src/components/ChannelPreview/ChannelPreviewStatus.tsx +16 -2
- package/src/components/ChannelPreview/hooks/useLatestMessagePreview.ts +7 -28
- package/src/components/Chat/Chat.tsx +1 -1
- package/src/components/Chat/__tests__/Chat.test.js +1 -1
- package/src/components/ImageGallery/components/ImageGalleryHeader.tsx +13 -3
- package/src/components/Message/MessageSimple/MessageEditedTimestamp.tsx +10 -5
- package/src/components/Message/MessageSimple/MessageFooter.tsx +10 -7
- package/src/components/Message/MessageSimple/MessageTimestamp.tsx +20 -29
- package/src/components/Message/MessageSimple/__tests__/MessageStatus.test.js +1 -1
- package/src/components/MessageList/DateHeader.tsx +1 -1
- package/src/components/MessageList/InlineDateSeparator.tsx +20 -15
- package/src/components/MessageList/MessageList.tsx +4 -31
- package/src/components/MessageList/MessageSystem.tsx +20 -8
- package/src/components/MessageList/StickyHeader.tsx +42 -0
- package/src/components/MessageList/__tests__/MessageSystem.test.js +8 -3
- package/src/components/MessageList/__tests__/ScrollToBottomButton.test.js +1 -1
- package/src/components/MessageList/__tests__/TypingIndicator.test.js +1 -1
- package/src/components/Thread/__tests__/Thread.test.js +1 -1
- package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +1 -1
- package/src/components/index.ts +1 -0
- package/src/contexts/channelContext/ChannelContext.tsx +2 -1
- package/src/contexts/messagesContext/MessagesContext.tsx +6 -0
- package/src/contexts/overlayContext/OverlayContext.tsx +1 -1
- package/src/hooks/useStreami18n.ts +1 -1
- package/src/i18n/en.json +8 -1
- package/src/i18n/es.json +73 -66
- package/src/i18n/fr.json +73 -66
- package/src/i18n/he.json +73 -66
- package/src/i18n/hi.json +73 -66
- package/src/i18n/it.json +73 -66
- package/src/i18n/ja.json +73 -66
- package/src/i18n/ko.json +75 -68
- package/src/i18n/nl.json +73 -66
- package/src/i18n/pt-br.json +90 -0
- package/src/i18n/ru.json +73 -66
- package/src/i18n/tr.json +73 -66
- package/src/index.ts +4 -1
- package/src/utils/__tests__/Streami18n.test.js +23 -1
- package/src/utils/{Streami18n.ts → i18n/Streami18n.ts} +60 -71
- package/src/utils/i18n/calendarFormats.ts +110 -0
- package/src/utils/i18n/getDateString.ts +76 -0
- package/src/utils/i18n/predefinedFormatters.ts +63 -0
- package/src/version.json +1 -1
- package/lib/commonjs/i18n/pt-BR.json +0 -83
- package/lib/commonjs/utils/Streami18n.js.map +0 -1
- package/lib/commonjs/utils/getDateString.js +0 -31
- package/lib/commonjs/utils/getDateString.js.map +0 -1
- package/lib/module/i18n/pt-BR.json +0 -83
- package/lib/module/utils/Streami18n.js.map +0 -1
- package/lib/module/utils/getDateString.js +0 -31
- package/lib/module/utils/getDateString.js.map +0 -1
- package/lib/typescript/i18n/pt-BR.json +0 -83
- package/lib/typescript/utils/Streami18n.d.ts.map +0 -1
- package/lib/typescript/utils/getDateString.d.ts +0 -30
- package/lib/typescript/utils/getDateString.d.ts.map +0 -1
- package/src/i18n/pt-BR.json +0 -83
- package/src/utils/getDateString.ts +0 -67
|
@@ -1,83 +1,90 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
2
|
+
"1 Reply": "1 Antwoord",
|
|
3
|
+
"1 Thread Reply": "1 thread antwoord",
|
|
4
|
+
"Allow access to your Gallery": "Geef toegang tot uw galerij",
|
|
5
|
+
"Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
|
|
6
|
+
"Also send to channel": "Stuur ook naar kanaal",
|
|
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
|
+
"Cancel": "Annuleer",
|
|
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
|
+
"Device camera is used to take photos or videos.": "De camera van het apparaat wordt gebruikt om foto's of video's te maken.",
|
|
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": "Bewerkt",
|
|
20
|
+
"Editing Message": "Bericht aanpassen",
|
|
21
|
+
"Emoji matching": "Emoji-overeenkomsten",
|
|
22
|
+
"Empty message...": "Leeg bericht...",
|
|
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...",
|
|
26
|
+
"Error while loading, please reload/refresh": "Probleem bij het laden, probeer opnieuw",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Bestand is te groot: {{ size }}, maximale uploadgrootte is {{ limit }}",
|
|
28
|
+
"File type not supported": "Bestandstype niet ondersteund",
|
|
29
|
+
"Flag": "Markeer",
|
|
30
|
+
"Flag Message": "Markeer bericht",
|
|
31
|
+
"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",
|
|
32
|
+
"Hold to start recording.": "Houd vast om opname te starten.",
|
|
33
|
+
"How about sending your first message to a friend?": "Wat dacht je ervan om je eerste bericht naar een vriend te sturen?",
|
|
34
|
+
"Instant Commands": "Directe Opdrachten",
|
|
35
|
+
"Let's start chatting!": "Laten we beginnen met chatten!",
|
|
36
|
+
"Links are disabled": "Het versturen van links staat uit",
|
|
37
|
+
"Loading channels...": "Kanalen aan het laden...",
|
|
38
|
+
"Loading messages...": "Berichten aan het laden...",
|
|
39
|
+
"Loading...": "Aan het laden...",
|
|
40
|
+
"Message Reactions": "Bericht Reacties",
|
|
41
|
+
"Message deleted": "Bericht verwijderd",
|
|
42
|
+
"Message flagged": "Bericht gemarkeerd",
|
|
43
|
+
"Mute User": "Gebruiker dempen",
|
|
44
|
+
"No chats here yet…": "Nog geen chats hier…",
|
|
45
|
+
"Not supported": "niet ondersteund",
|
|
46
|
+
"Nothing yet...": "Nog niets...",
|
|
47
|
+
"Ok": "Oké",
|
|
48
|
+
"Only visible to you": "Alleen zichtbaar voor jou",
|
|
49
|
+
"Open Settings": "Open instellingen",
|
|
50
|
+
"Photo": "Foto",
|
|
51
|
+
"Photos and Videos": "Foto's en video's",
|
|
52
|
+
"Pin to Conversation": "Vastmaken aan gesprek",
|
|
53
|
+
"Pinned by": "Vastgemaakt door",
|
|
54
|
+
"Please allow Audio permissions in settings.": "Gelieve audio toestemmingen toe te staan in de instellingen.",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "Schakel toegang tot uw foto's en video's in zodat u ze kunt delen.",
|
|
56
|
+
"Please select a channel first": "Selecteer eerst een kanaal",
|
|
57
|
+
"Reconnecting...": "Opnieuw Verbinding Maken...",
|
|
58
|
+
"Reply": "Antwoord",
|
|
59
|
+
"Reply to Message": "Beantwoord bericht",
|
|
60
|
+
"Resend": "Opnieuw versturen",
|
|
61
|
+
"Search GIFs": "Zoek GIF's",
|
|
62
|
+
"Select More Photos": "Selecteer Meer foto's",
|
|
63
|
+
"Send Anyway": "Toch verzenden",
|
|
64
|
+
"Send a message": "Stuur een bericht",
|
|
65
|
+
"Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
|
|
66
|
+
"Slow mode ON": "Langzame modus aan",
|
|
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",
|
|
70
|
+
"Unknown User": "Onbekende gebruiker",
|
|
71
|
+
"Unmute User": "Dempen van gebruiker opheffen",
|
|
72
|
+
"Unpin from Conversation": "Losmaken van gesprek",
|
|
73
|
+
"Unread Messages": "Ongelezen Berichten",
|
|
74
|
+
"Video": "Video",
|
|
75
|
+
"You": "U",
|
|
76
|
+
"You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
|
|
77
|
+
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Gisteren]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Morgen]\",\"nextWeek\":\"dddd [om] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
78
|
+
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
79
|
+
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
80
|
+
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
81
|
+
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
|
+
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
83
|
+
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
84
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
|
|
85
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
|
|
86
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
|
|
87
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
|
|
88
|
+
"{{ user }} is typing": "{{ user }} is aan het typen",
|
|
89
|
+
"🏙 Attachment...": "🏙 Bijlage..."
|
|
83
90
|
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
{
|
|
2
|
+
"1 Reply": "1 Resposta",
|
|
3
|
+
"1 Thread Reply": "1 Resposta de Thread",
|
|
4
|
+
"Allow access to your Gallery": "Permitir acesso à sua Galeria",
|
|
5
|
+
"Allow camera access in device settings": "Permitir acesso à câmera nas configurações do dispositivo",
|
|
6
|
+
"Also send to channel": "Também enviar para o canal",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "Tem certeza de que deseja excluir esta mensagem permanentemente?",
|
|
8
|
+
"Are you sure?": "Tem certeza?",
|
|
9
|
+
"Block User": "Bloquear Usuário",
|
|
10
|
+
"Cancel": "Cancelar",
|
|
11
|
+
"Cannot Flag Message": "Não é possível reportar a mensagem",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considere como seu comentário pode fazer os outros se sentirem e certifique-se de seguir nossas Diretrizes da Comunidade",
|
|
13
|
+
"Copy Message": "Copiar Mensagem",
|
|
14
|
+
"Delete": "Excluir",
|
|
15
|
+
"Delete Message": "Excluir Mensagem",
|
|
16
|
+
"Device camera is used to take photos or videos.": "A câmera do dispositivo é usada para tirar fotos ou vídeos.",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "Deseja enviar uma cópia desta mensagem para um moderador para investigação adicional?",
|
|
18
|
+
"Edit Message": "Editar Mensagem",
|
|
19
|
+
"Edited": "Editado",
|
|
20
|
+
"Editing Message": "Editando Mensagem",
|
|
21
|
+
"Emoji matching": "Correspondência de Emoji",
|
|
22
|
+
"Empty message...": "Mensagem vazia...",
|
|
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...",
|
|
26
|
+
"Error while loading, please reload/refresh": "Erro ao carregar, por favor recarregue/atualize",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "O arquivo é muito grande: {{ size }}, o tamanho máximo de upload é {{ limit }}",
|
|
28
|
+
"File type not supported": "Tipo de arquivo não suportado",
|
|
29
|
+
"Flag": "Reportar",
|
|
30
|
+
"Flag Message": "Reportar Mensagem",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "A ação para reportar a mensagem falhou devido a um problema de rede ou a mensagem já foi reportada.",
|
|
32
|
+
"Hold to start recording.": "Mantenha pressionado para começar a gravar.",
|
|
33
|
+
"How about sending your first message to a friend?": "Que tal enviar sua primeira mensagem para um amigo?",
|
|
34
|
+
"Instant Commands": "Comandos Instantâneos",
|
|
35
|
+
"Let's start chatting!": "Vamos começar a conversar!",
|
|
36
|
+
"Links are disabled": "Links estão desabilitados",
|
|
37
|
+
"Loading channels...": "Carregando canais...",
|
|
38
|
+
"Loading messages...": "Carregando mensagens...",
|
|
39
|
+
"Loading...": "Carregando...",
|
|
40
|
+
"Message Reactions": "Reações à Mensagem",
|
|
41
|
+
"Message deleted": "Mensagem excluída",
|
|
42
|
+
"Message flagged": "Mensagem sinalizada",
|
|
43
|
+
"Mute User": "Silenciar Usuário",
|
|
44
|
+
"No chats here yet…": "Ainda não há chats aqui...",
|
|
45
|
+
"Not supported": "Não suportado",
|
|
46
|
+
"Nothing yet...": "Nada ainda...",
|
|
47
|
+
"Ok": "Ok",
|
|
48
|
+
"Only visible to you": "Apenas visível para você",
|
|
49
|
+
"Open Settings": "Abrir Configurações",
|
|
50
|
+
"Photo": "Foto",
|
|
51
|
+
"Photos and Videos": "Fotos e Vídeos",
|
|
52
|
+
"Pin to Conversation": "Fixar na Conversa",
|
|
53
|
+
"Pinned by": "Fixado por",
|
|
54
|
+
"Please allow Audio permissions in settings.": "Por favor, permita as permissões de áudio nas configurações.",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "Por favor, habilite o acesso às suas fotos e vídeos para poder compartilhá-los.",
|
|
56
|
+
"Please select a channel first": "Por favor, selecione um canal primeiro",
|
|
57
|
+
"Reconnecting...": "Reconectando...",
|
|
58
|
+
"Reply": "Responder",
|
|
59
|
+
"Reply to Message": "Responder à Mensagem",
|
|
60
|
+
"Resend": "Reenviar",
|
|
61
|
+
"Search GIFs": "Pesquisar GIFs",
|
|
62
|
+
"Select More Photos": "Selecionar Mais Fotos",
|
|
63
|
+
"Send Anyway": "Enviar de qualquer maneira",
|
|
64
|
+
"Send a message": "Enviar uma mensagem",
|
|
65
|
+
"Sending links is not allowed in this conversation": "Não é permitido enviar links nesta conversa",
|
|
66
|
+
"Slow mode ON": "Modo Lento ATIVADO",
|
|
67
|
+
"The message has been reported to a moderator.": "A mensagem foi relatada a um moderador.",
|
|
68
|
+
"Thread Reply": "Respostas de Tópico",
|
|
69
|
+
"Unblock User": "Desbloquear Usuário",
|
|
70
|
+
"Unknown User": "Usuário Desconhecido",
|
|
71
|
+
"Unmute User": "Remover usuário do modo silencioso",
|
|
72
|
+
"Unpin from Conversation": "Desmarcar como fixado na conversa",
|
|
73
|
+
"Unread Messages": "Mensagens não lidas",
|
|
74
|
+
"Video": "Vídeo",
|
|
75
|
+
"You": "Você",
|
|
76
|
+
"You can't send messages in this channel": "Você não pode enviar mensagens neste canal",
|
|
77
|
+
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ontem]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Amanhã]\",\"nextWeek\":\"dddd [às] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
78
|
+
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
79
|
+
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
80
|
+
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
81
|
+
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
|
+
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
83
|
+
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
84
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e mais {{ nonSelfUserLength }} pessoa(s) estão digitando",
|
|
85
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} de {{ photoLength }}",
|
|
86
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Respostas",
|
|
87
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }} Respostas de Thread",
|
|
88
|
+
"{{ user }} is typing": "{{ user }} está digitando",
|
|
89
|
+
"🏙 Attachment...": "🏙 Anexo..."
|
|
90
|
+
}
|
|
@@ -1,83 +1,90 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
2
|
+
"1 Reply": "1 Ответ",
|
|
3
|
+
"1 Thread Reply": "1 тема Ответить",
|
|
4
|
+
"Allow access to your Gallery": "Разрешить доступ к вашей галерее",
|
|
5
|
+
"Allow camera access in device settings": "Разрешите доступ к камере в настройках устройства.",
|
|
6
|
+
"Also send to channel": "Также отправить на канал",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "Вы действительно хотите удалить это сообщение без возможности восстановления?",
|
|
8
|
+
"Are you sure?": "Вы уверены?",
|
|
9
|
+
"Block User": "Заблокировать пользователя",
|
|
10
|
+
"Cancel": "Отмена",
|
|
11
|
+
"Cannot Flag Message": "Невозможно пожаловаться на сообщение",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Обдумайте, как ваш комментарий может повлиять на других, и убедитесь, что вы следуете нашим правилам сообщества",
|
|
13
|
+
"Copy Message": "Копировать сообщение",
|
|
14
|
+
"Delete": "удалять",
|
|
15
|
+
"Delete Message": "Удалить сообщение",
|
|
16
|
+
"Device camera is used to take photos or videos.": "Камера устройства используется для съемки фотографий или видео.",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "Вы хотите отправить копию этого сообщения модератору для дальнейшего изучения?",
|
|
18
|
+
"Edit Message": "Редактировать сообщение",
|
|
19
|
+
"Edited": "Отредактировано",
|
|
20
|
+
"Editing Message": "Редактирование сообщения",
|
|
21
|
+
"Emoji matching": "Соответствие эмодзи",
|
|
22
|
+
"Empty message...": "Пустое сообщение...",
|
|
23
|
+
"Error loading": "Ошибка при загрузке",
|
|
24
|
+
"Error loading channel list...": "Ошибка загрузки списка каналов...",
|
|
25
|
+
"Error loading messages for this channel...": "Ошибка загрузки сообщений для этого канала...",
|
|
26
|
+
"Error while loading, please reload/refresh": "Ошибка загрузки, пожалуйста перезагрузите или обновите",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Файл слишком большой: {{ size }}, максимальный размер загрузки составляет {{ limit }}",
|
|
28
|
+
"File type not supported": "Тип файла не поддерживается",
|
|
29
|
+
"Flag": "Пометить",
|
|
30
|
+
"Flag Message": "Пометить сообщение",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "Не удалось отправить жалобу. Возможные причины: проблема с подключением к интернету или ваша жалоба уже была принята.",
|
|
32
|
+
"Hold to start recording.": "Удерживайте, чтобы начать запись.",
|
|
33
|
+
"How about sending your first message to a friend?": "Как насчет отправки первого сообщения другу?",
|
|
34
|
+
"Instant Commands": "Мгновенные Команды",
|
|
35
|
+
"Let's start chatting!": "Давайте начнем общаться!",
|
|
36
|
+
"Links are disabled": "Ссылки отключены",
|
|
37
|
+
"Loading channels...": "Загружаю каналы...",
|
|
38
|
+
"Loading messages...": "Загружаю сообщения...",
|
|
39
|
+
"Loading...": "Загружаю...",
|
|
40
|
+
"Message Reactions": "Сообщения Реакции",
|
|
41
|
+
"Message deleted": "Сообщение удалено",
|
|
42
|
+
"Message flagged": "Сообщение отмечено",
|
|
43
|
+
"Mute User": "Отключить пользователя",
|
|
44
|
+
"No chats here yet…": "Здесь пока нет чатов…",
|
|
45
|
+
"Not supported": "не поддерживается",
|
|
46
|
+
"Nothing yet...": "Пока ничего нет...",
|
|
47
|
+
"Ok": "Oк",
|
|
48
|
+
"Only visible to you": "Видно только вам",
|
|
49
|
+
"Open Settings": "Открыть настройки",
|
|
50
|
+
"Photo": "Фото",
|
|
51
|
+
"Photos and Videos": "Фото и видео",
|
|
52
|
+
"Pin to Conversation": "Закрепить к беседе",
|
|
53
|
+
"Pinned by": "Закреплено пользователем",
|
|
54
|
+
"Please allow Audio permissions in settings.": "Пожалуйста, разрешите разрешения на аудио в настройках.",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "Разрешите доступ к своим фотографиям и видео, чтобы вы могли ими поделиться.",
|
|
56
|
+
"Please select a channel first": "Пожалуйста, сначала выберите канал",
|
|
57
|
+
"Reconnecting...": "Переподключение...",
|
|
58
|
+
"Reply": "Ответить",
|
|
59
|
+
"Reply to Message": "Ответить на сообщение",
|
|
60
|
+
"Resend": "Отправить",
|
|
61
|
+
"Search GIFs": "Поиск GIF",
|
|
62
|
+
"Select More Photos": "Выбрать больше фотографий",
|
|
63
|
+
"Send Anyway": "Всё равно отправить",
|
|
64
|
+
"Send a message": "Отправить сообщение",
|
|
65
|
+
"Sending links is not allowed in this conversation": "Отправка ссылок недоступна в этом чате",
|
|
66
|
+
"Slow mode ON": "Медленный режим включен",
|
|
67
|
+
"The message has been reported to a moderator.": "Сообщение отправлено модератору.",
|
|
68
|
+
"Thread Reply": "Тема Ответить",
|
|
69
|
+
"Unblock User": "Разблокировать пользователя",
|
|
70
|
+
"Unknown User": "Неизвестный пользователь",
|
|
71
|
+
"Unmute User": "Включить микрофон",
|
|
72
|
+
"Unpin from Conversation": "Открепить от беседы",
|
|
73
|
+
"Unread Messages": "Непрочитанные Сообщения",
|
|
74
|
+
"Video": "видео",
|
|
75
|
+
"You": "Вы",
|
|
76
|
+
"You can't send messages in this channel": "Вы не можете отправлять сообщения в этот канал",
|
|
77
|
+
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Вчера]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Завтра]\",\"nextWeek\":\"dddd [в] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
78
|
+
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
79
|
+
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
80
|
+
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
81
|
+
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
|
+
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
83
|
+
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
84
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} и еще {{ nonSelfUserLength }} пишут",
|
|
85
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} из {{ photoLength }}",
|
|
86
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Ответов",
|
|
87
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Ответы в темах",
|
|
88
|
+
"{{ user }} is typing": "{{ user }} пишет",
|
|
89
|
+
"🏙 Attachment...": "🏙 Вложение..."
|
|
83
90
|
}
|