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
package/lib/module/i18n/ko.json
CHANGED
|
@@ -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개의 스레드\u3000답글",
|
|
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": "확인",
|
|
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": "스레드\u3000답장",
|
|
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 }}\u3000스레드\u3000답글",
|
|
88
|
+
"{{ user }} is typing": "{{ user }} 타이핑 중",
|
|
89
|
+
"🏙 Attachment...": "🏙 부착..."
|
|
83
90
|
}
|
package/lib/module/i18n/nl.json
CHANGED
|
@@ -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
|
+
}
|