stream-chat-react-native-core 5.24.0-beta.2 โ 5.24.0-beta.4
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 +30 -22
- 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/ChannelList/hooks/usePaginatedChannels.js +52 -18
- package/lib/commonjs/components/ChannelList/hooks/usePaginatedChannels.js.map +1 -1
- package/lib/commonjs/components/ChannelPreview/ChannelPreview.js +4 -1
- package/lib/commonjs/components/ChannelPreview/ChannelPreview.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js +28 -6
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageBounce.js +84 -0
- package/lib/commonjs/components/Message/MessageSimple/MessageBounce.js.map +1 -0
- package/lib/commonjs/components/Message/hooks/useMessageActionHandlers.js.map +1 -1
- package/lib/commonjs/components/Message/hooks/useMessageActions.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/messageInputContext/MessageInputContext.js +51 -39
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/hooks/useMessageDetailsForState.js +4 -8
- package/lib/commonjs/contexts/messageInputContext/hooks/useMessageDetailsForState.js.map +1 -1
- package/lib/commonjs/contexts/messagesContext/MessagesContext.js +2 -2
- package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/commonjs/i18n/en.json +3 -0
- package/lib/commonjs/i18n/es.json +4 -1
- package/lib/commonjs/i18n/fr.json +28 -25
- package/lib/commonjs/i18n/he.json +4 -1
- package/lib/commonjs/i18n/hi.json +28 -25
- package/lib/commonjs/i18n/it.json +28 -25
- package/lib/commonjs/i18n/ja.json +4 -1
- package/lib/commonjs/i18n/ko.json +4 -1
- package/lib/commonjs/i18n/nl.json +28 -25
- package/lib/commonjs/i18n/ru.json +28 -25
- package/lib/commonjs/i18n/tr.json +28 -25
- package/lib/commonjs/utils/removeReservedFields.js +1 -1
- package/lib/commonjs/utils/removeReservedFields.js.map +1 -1
- package/lib/commonjs/utils/utils.js +5 -3
- package/lib/commonjs/utils/utils.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +30 -22
- 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/ChannelList/hooks/usePaginatedChannels.js +52 -18
- package/lib/module/components/ChannelList/hooks/usePaginatedChannels.js.map +1 -1
- package/lib/module/components/ChannelPreview/ChannelPreview.js +4 -1
- package/lib/module/components/ChannelPreview/ChannelPreview.js.map +1 -1
- package/lib/module/components/Message/Message.js +28 -6
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageBounce.js +84 -0
- package/lib/module/components/Message/MessageSimple/MessageBounce.js.map +1 -0
- package/lib/module/components/Message/hooks/useMessageActionHandlers.js.map +1 -1
- package/lib/module/components/Message/hooks/useMessageActions.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/messageInputContext/MessageInputContext.js +51 -39
- package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/module/contexts/messageInputContext/hooks/useMessageDetailsForState.js +4 -8
- package/lib/module/contexts/messageInputContext/hooks/useMessageDetailsForState.js.map +1 -1
- package/lib/module/contexts/messagesContext/MessagesContext.js +2 -2
- package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/module/i18n/en.json +3 -0
- package/lib/module/i18n/es.json +4 -1
- package/lib/module/i18n/fr.json +28 -25
- package/lib/module/i18n/he.json +4 -1
- package/lib/module/i18n/hi.json +28 -25
- package/lib/module/i18n/it.json +28 -25
- package/lib/module/i18n/ja.json +4 -1
- package/lib/module/i18n/ko.json +4 -1
- package/lib/module/i18n/nl.json +28 -25
- package/lib/module/i18n/ru.json +28 -25
- package/lib/module/i18n/tr.json +28 -25
- package/lib/module/utils/removeReservedFields.js +1 -1
- package/lib/module/utils/removeReservedFields.js.map +1 -1
- package/lib/module/utils/utils.js +5 -3
- 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/hooks/useCreateMessagesContext.d.ts +1 -1
- package/lib/typescript/components/ChannelPreview/ChannelPreview.d.ts +1 -1
- package/lib/typescript/components/Message/Message.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageBounce.d.ts +12 -0
- package/lib/typescript/components/MessageList/utils/getReadStates.d.ts +1 -0
- package/lib/typescript/components/index.d.ts +1 -0
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts +6 -2
- package/lib/typescript/contexts/messageInputContext/hooks/useMessageDetailsForState.d.ts +1 -2
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +7 -2
- package/lib/typescript/i18n/en.json +3 -0
- package/lib/typescript/i18n/es.json +4 -1
- package/lib/typescript/i18n/fr.json +28 -25
- package/lib/typescript/i18n/he.json +4 -1
- package/lib/typescript/i18n/hi.json +28 -25
- package/lib/typescript/i18n/it.json +28 -25
- package/lib/typescript/i18n/ja.json +4 -1
- package/lib/typescript/i18n/ko.json +4 -1
- package/lib/typescript/i18n/nl.json +28 -25
- package/lib/typescript/i18n/ru.json +28 -25
- package/lib/typescript/i18n/tr.json +28 -25
- package/lib/typescript/utils/Streami18n.d.ts +3 -0
- package/lib/typescript/utils/removeReservedFields.d.ts +2 -1
- package/lib/typescript/utils/utils.d.ts +11 -1
- package/package.json +2 -2
- package/src/components/Channel/Channel.tsx +26 -7
- package/src/components/Channel/hooks/useCreateMessagesContext.ts +2 -0
- package/src/components/ChannelList/hooks/usePaginatedChannels.ts +6 -3
- package/src/components/ChannelPreview/ChannelPreview.tsx +5 -5
- package/src/components/Message/Message.tsx +26 -2
- package/src/components/Message/MessageSimple/MessageBounce.tsx +119 -0
- package/src/components/Message/hooks/useMessageActionHandlers.ts +1 -2
- package/src/components/Message/hooks/useMessageActions.tsx +1 -1
- package/src/components/index.ts +1 -0
- package/src/contexts/messageInputContext/MessageInputContext.tsx +27 -8
- package/src/contexts/messageInputContext/__tests__/sendMessage.test.tsx +8 -8
- package/src/contexts/messageInputContext/__tests__/updateMessage.test.tsx +1 -1
- package/src/contexts/messageInputContext/__tests__/useMessageDetailsForState.test.tsx +6 -1
- package/src/contexts/messageInputContext/hooks/useMessageDetailsForState.ts +3 -9
- package/src/contexts/messagesContext/MessagesContext.tsx +7 -2
- package/src/i18n/en.json +3 -0
- package/src/i18n/es.json +4 -1
- package/src/i18n/fr.json +28 -25
- package/src/i18n/he.json +4 -1
- package/src/i18n/hi.json +28 -25
- package/src/i18n/it.json +28 -25
- package/src/i18n/ja.json +4 -1
- package/src/i18n/ko.json +4 -1
- package/src/i18n/nl.json +28 -25
- package/src/i18n/ru.json +28 -25
- package/src/i18n/tr.json +28 -25
- package/src/utils/removeReservedFields.ts +5 -2
- package/src/utils/utils.ts +16 -2
- package/src/version.json +1 -1
|
@@ -53,7 +53,7 @@ export declare type MessageActionHandlers = {
|
|
|
53
53
|
toggleMuteUser: () => Promise<void>;
|
|
54
54
|
toggleReaction: (reactionType: string) => Promise<void>;
|
|
55
55
|
};
|
|
56
|
-
export declare type MessagePropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<ChannelContextValue<StreamChatGenerics>, 'channel' | 'disabled' | 'enforceUniqueReaction' | 'members'> & Pick<KeyboardContextValue, 'dismissKeyboard'> & Partial<Omit<MessageContextValue<StreamChatGenerics>, 'groupStyles' | 'message'>> & Pick<MessageContextValue<StreamChatGenerics>, 'groupStyles' | 'message'> & Pick<MessagesContextValue<StreamChatGenerics>, 'sendReaction' | 'deleteMessage' | 'dismissKeyboardOnMessageTouch' | 'forceAlignMessages' | 'handleBlock' | 'handleCopy' | 'handleDelete' | 'handleEdit' | 'handleFlag' | 'handleMute' | 'handlePinMessage' | 'handleQuotedReply' | 'handleReaction' | 'handleRetry' | 'handleThreadReply' | 'isAttachmentEqual' | 'messageActions' | 'messageContentOrder' | 'MessageSimple' | 'onLongPressMessage' | 'onPressInMessage' | 'onPressMessage' | 'OverlayReactionList' | 'removeMessage' | 'deleteReaction' | 'retrySendMessage' | 'selectReaction' | 'setEditingState' | 'setQuotedMessageState' | 'supportedReactions' | 'updateMessage'> & Pick<MessageOverlayContextValue<StreamChatGenerics>, 'setData'> & Pick<OverlayContextValue, 'setOverlay'> & Pick<ThreadContextValue<StreamChatGenerics>, 'openThread'> & Pick<TranslationContextValue, 't'> & {
|
|
56
|
+
export declare type MessagePropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<ChannelContextValue<StreamChatGenerics>, 'channel' | 'disabled' | 'enforceUniqueReaction' | 'members'> & Pick<KeyboardContextValue, 'dismissKeyboard'> & Partial<Omit<MessageContextValue<StreamChatGenerics>, 'groupStyles' | 'message'>> & Pick<MessageContextValue<StreamChatGenerics>, 'groupStyles' | 'message'> & Pick<MessagesContextValue<StreamChatGenerics>, 'sendReaction' | 'deleteMessage' | 'dismissKeyboardOnMessageTouch' | 'forceAlignMessages' | 'handleBlock' | 'handleCopy' | 'handleDelete' | 'handleEdit' | 'handleFlag' | 'handleMute' | 'handlePinMessage' | 'handleQuotedReply' | 'handleReaction' | 'handleRetry' | 'handleThreadReply' | 'isAttachmentEqual' | 'messageActions' | 'messageContentOrder' | 'MessageBounce' | 'MessageSimple' | 'onLongPressMessage' | 'onPressInMessage' | 'onPressMessage' | 'OverlayReactionList' | 'removeMessage' | 'deleteReaction' | 'retrySendMessage' | 'selectReaction' | 'setEditingState' | 'setQuotedMessageState' | 'supportedReactions' | 'updateMessage'> & Pick<MessageOverlayContextValue<StreamChatGenerics>, 'setData'> & Pick<OverlayContextValue, 'setOverlay'> & Pick<ThreadContextValue<StreamChatGenerics>, 'openThread'> & Pick<TranslationContextValue, 't'> & {
|
|
57
57
|
chatContext: ChatContextValue<StreamChatGenerics>;
|
|
58
58
|
messagesContext: MessagesContextValue<StreamChatGenerics>;
|
|
59
59
|
/**
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { MessageContextValue } from '../../../contexts/messageContext/MessageContext';
|
|
3
|
+
import { MessagesContextValue } from '../../../contexts/messagesContext/MessagesContext';
|
|
4
|
+
import type { DefaultStreamChatGenerics } from '../../../types/types';
|
|
5
|
+
export declare type MessageBouncePropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessagesContextValue<StreamChatGenerics>, 'setEditingState' | 'removeMessage' | 'retrySendMessage'> & Pick<MessageContextValue<StreamChatGenerics>, 'message'> & {
|
|
6
|
+
setIsBounceDialogOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
7
|
+
};
|
|
8
|
+
export declare const MessageBounceWithContext: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(props: MessageBouncePropsWithContext<StreamChatGenerics>) => JSX.Element;
|
|
9
|
+
export declare type MessageBounceProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Partial<MessageBouncePropsWithContext<StreamChatGenerics>> & {
|
|
10
|
+
setIsBounceDialogOpen: React.Dispatch<React.SetStateAction<boolean>>;
|
|
11
|
+
};
|
|
12
|
+
export declare const MessageBounce: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(props: MessageBounceProps<StreamChatGenerics>) => JSX.Element;
|
|
@@ -6,6 +6,7 @@ export declare const getReadStates: <StreamChatGenerics extends DefaultStreamCha
|
|
|
6
6
|
last_read: Date;
|
|
7
7
|
unread_messages: number;
|
|
8
8
|
user: import("stream-chat").UserResponse<StreamChatGenerics>;
|
|
9
|
+
first_unread_message_id?: string | undefined;
|
|
9
10
|
last_read_message_id?: string | undefined;
|
|
10
11
|
};
|
|
11
12
|
} | undefined) => {
|
|
@@ -85,6 +85,7 @@ export * from './Message/hooks/useMessageActions';
|
|
|
85
85
|
export * from './Message/hooks/useMessageActionHandlers';
|
|
86
86
|
export * from './Message/Message';
|
|
87
87
|
export * from './Message/MessageSimple/MessageAvatar';
|
|
88
|
+
export * from './Message/MessageSimple/MessageBounce';
|
|
88
89
|
export * from './Message/MessageSimple/MessageContent';
|
|
89
90
|
export * from './Message/MessageSimple/MessageDeleted';
|
|
90
91
|
export * from './Message/MessageSimple/MessageError';
|
|
@@ -172,7 +172,6 @@ export declare type InputMessageInputContextValue<StreamChatGenerics extends Def
|
|
|
172
172
|
* **default** [CooldownTimer](https://github.com/GetStream/stream-chat-react-native/blob/main/package/src/components/MessageInput/CooldownTimer.tsx)
|
|
173
173
|
*/
|
|
174
174
|
CooldownTimer: React.ComponentType<CooldownTimerProps>;
|
|
175
|
-
editing: boolean | MessageType<StreamChatGenerics>;
|
|
176
175
|
editMessage: StreamChat<StreamChatGenerics>['updateMessage'];
|
|
177
176
|
/**
|
|
178
177
|
* Custom UI component for FileUploadPreview.
|
|
@@ -266,6 +265,11 @@ export declare type InputMessageInputContextValue<StreamChatGenerics extends Def
|
|
|
266
265
|
name?: string;
|
|
267
266
|
uri?: string;
|
|
268
267
|
}, channel: ChannelContextValue<StreamChatGenerics>['channel']) => Promise<SendFileAPIResponse>;
|
|
268
|
+
/**
|
|
269
|
+
* Variable that tracks the editing state.
|
|
270
|
+
* It is defined with message type if the editing state is true, else its undefined.
|
|
271
|
+
*/
|
|
272
|
+
editing?: MessageType<StreamChatGenerics>;
|
|
269
273
|
/** Initial value to set on input */
|
|
270
274
|
initialValue?: string;
|
|
271
275
|
/**
|
|
@@ -320,4 +324,4 @@ export declare const useMessageInputContext: <StreamChatGenerics extends Default
|
|
|
320
324
|
* typing is desired while using the HOC withMessageInputContext the Props for the
|
|
321
325
|
* wrapped component must be provided as the first generic.
|
|
322
326
|
*/
|
|
323
|
-
export declare const withMessageInputContext: <P extends UnknownType, StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(Component: React.ComponentType<P>) => React.FC<Omit<P, "numberOfLines" | "maxNumberOfFiles" | "compressImageQuality" | "setQuotedMessageState" | "AttachButton" | "clearEditingState" | "clearQuotedMessageState" | "CommandsButton" | "CooldownTimer" | "
|
|
327
|
+
export declare const withMessageInputContext: <P extends UnknownType, StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(Component: React.ComponentType<P>) => React.FC<Omit<P, "numberOfLines" | "maxNumberOfFiles" | "compressImageQuality" | "setQuotedMessageState" | "AttachButton" | "clearEditingState" | "clearQuotedMessageState" | "CommandsButton" | "CooldownTimer" | "editMessage" | "FileUploadPreview" | "hasCommands" | "hasFilePicker" | "hasImagePicker" | "ImageUploadPreview" | "InputEditingStateHeader" | "InputGiphySearch" | "InputReplyStateHeader" | "MoreOptionsButton" | "quotedMessage" | "SendButton" | "sendImageAsync" | "ShowThreadMessageInChannelButton" | "UploadProgressIndicator" | "additionalTextInputProps" | "autoCompleteSuggestionsLimit" | "autoCompleteTriggerSettings" | "doDocUploadRequest" | "doImageUploadRequest" | "editing" | "initialValue" | "Input" | "InputButtons" | "maxMessageLength" | "mentionAllAppUsersEnabled" | "mentionAllAppUsersQuery" | "onChangeText" | "SendMessageDisallowedIndicator" | "setInputRef" | keyof LocalMessageInputContext<StreamChatGenerics>>>;
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { DefaultStreamChatGenerics, FileUpload, ImageUpload } from '../../../types/types';
|
|
3
3
|
import type { MessageInputContextValue } from '../MessageInputContext';
|
|
4
|
-
export declare const
|
|
5
|
-
export declare const useMessageDetailsForState: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(message: boolean | import("../../..").MessageType<StreamChatGenerics>, initialValue?: string | undefined) => {
|
|
4
|
+
export declare const useMessageDetailsForState: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(message: import("../../..").MessageType<StreamChatGenerics> | undefined, initialValue?: string | undefined) => {
|
|
6
5
|
fileUploads: FileUpload[];
|
|
7
6
|
imageUploads: ImageUpload[];
|
|
8
7
|
mentionedUsers: string[];
|
|
@@ -16,6 +16,7 @@ import type { GiphyProps } from '../../components/Attachment/Giphy';
|
|
|
16
16
|
import type { VideoThumbnailProps } from '../../components/Attachment/VideoThumbnail';
|
|
17
17
|
import type { MessageProps, MessageTouchableHandlerPayload } from '../../components/Message/Message';
|
|
18
18
|
import type { MessageAvatarProps } from '../../components/Message/MessageSimple/MessageAvatar';
|
|
19
|
+
import type { MessageBounceProps } from '../../components/Message/MessageSimple/MessageBounce';
|
|
19
20
|
import type { MessageContentProps } from '../../components/Message/MessageSimple/MessageContent';
|
|
20
21
|
import type { MessageDeletedProps } from '../../components/Message/MessageSimple/MessageDeleted';
|
|
21
22
|
import type { MessageErrorProps } from '../../components/Message/MessageSimple/MessageError';
|
|
@@ -134,6 +135,10 @@ export declare type MessagesContextValue<StreamChatGenerics extends DefaultStrea
|
|
|
134
135
|
* Defaults to: [MessageAvatar](https://github.com/GetStream/stream-chat-react-native/blob/main/package/src/components/Message/MessageSimple/MessageAvatar.tsx)
|
|
135
136
|
**/
|
|
136
137
|
MessageAvatar: React.ComponentType<MessageAvatarProps<StreamChatGenerics>>;
|
|
138
|
+
/**
|
|
139
|
+
* UI Component for MessageBounce
|
|
140
|
+
*/
|
|
141
|
+
MessageBounce: React.ComponentType<MessageBounceProps<StreamChatGenerics>>;
|
|
137
142
|
/**
|
|
138
143
|
* UI component for MessageContent
|
|
139
144
|
* Defaults to: [MessageContent](https://github.com/GetStream/stream-chat-react-native/blob/main/package/src/components/Message/MessageSimple/MessageContent.tsx)
|
|
@@ -205,14 +210,14 @@ export declare type MessagesContextValue<StreamChatGenerics extends DefaultStrea
|
|
|
205
210
|
/**
|
|
206
211
|
* Override the api request for retry message functionality.
|
|
207
212
|
*/
|
|
208
|
-
retrySendMessage: (message:
|
|
213
|
+
retrySendMessage: (message: MessageType<StreamChatGenerics>) => Promise<void>;
|
|
209
214
|
/**
|
|
210
215
|
* UI component for ScrollToBottomButton
|
|
211
216
|
* Defaults to: [ScrollToBottomButton](https://getstream.io/chat/docs/sdk/reactnative/ui-components/scroll-to-bottom-button/)
|
|
212
217
|
*/
|
|
213
218
|
ScrollToBottomButton: React.ComponentType<ScrollToBottomButtonProps>;
|
|
214
219
|
sendReaction: (type: string, messageId: string) => Promise<void>;
|
|
215
|
-
setEditingState: (message
|
|
220
|
+
setEditingState: (message?: MessageType<StreamChatGenerics>) => void;
|
|
216
221
|
setQuotedMessageState: (message: MessageType<StreamChatGenerics> | boolean) => void;
|
|
217
222
|
supportedReactions: ReactionData[];
|
|
218
223
|
/**
|
|
@@ -5,9 +5,11 @@
|
|
|
5
5
|
"Allow camera access in device settings": "Allow camera access in device settings",
|
|
6
6
|
"Also send to channel": "Also send to channel",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "Are you sure you want to permanently delete this message?",
|
|
8
|
+
"Are you sure?": "Are you sure?",
|
|
8
9
|
"Block User": "Block User",
|
|
9
10
|
"Cancel": "Cancel",
|
|
10
11
|
"Cannot Flag Message": "Cannot Flag Message",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Consider how your comment might make others feel and be sure to follow our Community Guidelines",
|
|
11
13
|
"Copy Message": "Copy Message",
|
|
12
14
|
"Delete": "Delete",
|
|
13
15
|
"Delete Message": "Delete Message",
|
|
@@ -54,6 +56,7 @@
|
|
|
54
56
|
"Resend": "Resend",
|
|
55
57
|
"Search GIFs": "Search GIFs",
|
|
56
58
|
"Select More Photos": "Select More Photos",
|
|
59
|
+
"Send Anyway": "Send Anyway",
|
|
57
60
|
"Send a message": "Send a message",
|
|
58
61
|
"Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
|
|
59
62
|
"Slow mode ON": "Slow mode ON",
|
|
@@ -73,5 +73,8 @@
|
|
|
73
73
|
"How about sending your first message to a friend?": "ยฟQuรฉ tal enviar tu primer mensaje a un amigo?",
|
|
74
74
|
"Allow camera access in device settings": "Permitir el acceso a la cรกmara en la configuraciรณn del dispositivo",
|
|
75
75
|
"Device camera is used to take photos or videos.": "La cรกmara del dispositivo se utiliza para tomar fotografรญas o vรญdeos.",
|
|
76
|
-
"Open Settings": "Configuraciรณn abierta"
|
|
76
|
+
"Open Settings": "Configuraciรณn abierta",
|
|
77
|
+
"Send Anyway": "Enviar de todos modos",
|
|
78
|
+
"Are you sure?": "ยฟEstรกs seguro?",
|
|
79
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considera cรณmo tu comentario podrรญa hacer sentir a los demรกs y asegรบrate de seguir nuestras Normas de la Comunidad"
|
|
77
80
|
}
|
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "",
|
|
2
|
+
"1 Reply": "",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "Envoyer รฉgalement ร la chaรฎne",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "รtes-vous sรปr de vouloir supprimer dรฉfinitivement ce message?",
|
|
8
|
+
"Are you sure?": "Es-tu sรปr ?",
|
|
8
9
|
"Block User": "Bloquer un utilisateur",
|
|
9
10
|
"Cancel": "Annuler",
|
|
10
11
|
"Cannot Flag Message": "Impossible de signaler le message",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considรฉrez comment votre commentaire pourrait faire sentir les autres et assurez-vous de suivre nos directives communautaires",
|
|
11
13
|
"Copy Message": "Copier le message",
|
|
12
14
|
"Delete": "Supprimer",
|
|
13
15
|
"Delete Message": "Supprimer un message",
|
|
14
|
-
"Device camera is used to take photos or videos.": "
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
15
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "Voulez-vous envoyer une copie de ce message ร un modรฉrateur pour une enquรชte plus approfondie?",
|
|
16
18
|
"Edit Message": "รditer un message",
|
|
17
|
-
"Editing Message": "
|
|
18
|
-
"Emoji matching": "
|
|
19
|
+
"Editing Message": "",
|
|
20
|
+
"Emoji matching": "",
|
|
19
21
|
"Empty message...": "",
|
|
20
22
|
"Error loading": "",
|
|
21
23
|
"Error loading channel list...": "",
|
|
@@ -26,14 +28,14 @@
|
|
|
26
28
|
"Flag Message": "Signaler le message",
|
|
27
29
|
"Flag action failed either due to a network issue or the message is already flagged": "L'action de signalisation a รฉchouรฉ en raison d'un problรจme de rรฉseau ou le message est dรฉjร signalรฉ.",
|
|
28
30
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "
|
|
31
|
+
"Instant Commands": "",
|
|
30
32
|
"Let's start chatting!": "",
|
|
31
33
|
"Links are disabled": "Links are disabled",
|
|
32
|
-
"Loading channels...": "
|
|
33
|
-
"Loading messages...": "
|
|
34
|
-
"Loading...": "
|
|
34
|
+
"Loading channels...": "",
|
|
35
|
+
"Loading messages...": "",
|
|
36
|
+
"Loading...": "",
|
|
35
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Taille maximale de tรฉlรฉchargement de fichier atteinte. Veuillez tรฉlรฉcharger un fichier infรฉrieur ร {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} Mo.",
|
|
36
|
-
"Message Reactions": "
|
|
38
|
+
"Message Reactions": "",
|
|
37
39
|
"Message deleted": "",
|
|
38
40
|
"Message flagged": "Message signalรฉ",
|
|
39
41
|
"Mute User": "Utilisateur muet",
|
|
@@ -41,36 +43,37 @@
|
|
|
41
43
|
"Nothing yet...": "",
|
|
42
44
|
"Ok": "Ok",
|
|
43
45
|
"Only visible to you": "",
|
|
44
|
-
"Open Settings": "
|
|
45
|
-
"Photo": "
|
|
46
|
-
"Photos and Videos": "
|
|
46
|
+
"Open Settings": "",
|
|
47
|
+
"Photo": "",
|
|
48
|
+
"Photos and Videos": "",
|
|
47
49
|
"Pin to Conversation": "รpingler ร la conversation",
|
|
48
50
|
"Pinned by": "",
|
|
49
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
52
|
"Please select a channel first": "Veuillez d'abord selectionnez un canal",
|
|
51
53
|
"Reconnecting...": "",
|
|
52
54
|
"Reply": "Rรฉpondre",
|
|
53
55
|
"Reply to Message": "",
|
|
54
56
|
"Resend": "Renvoyer",
|
|
55
57
|
"Search GIFs": "",
|
|
56
|
-
"Select More Photos": "
|
|
58
|
+
"Select More Photos": "",
|
|
59
|
+
"Send Anyway": "Envoyer quand mรชme",
|
|
57
60
|
"Send a message": "",
|
|
58
61
|
"Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
|
|
59
62
|
"Slow mode ON": "",
|
|
60
63
|
"The message has been reported to a moderator.": "Le message a รฉtรฉ signalรฉ ร un modรฉrateur.",
|
|
61
64
|
"Thread Reply": "Rรฉponse ร la discussion",
|
|
62
65
|
"Unblock User": "Dรฉbloquer Utilisateur",
|
|
63
|
-
"Unknown User": "
|
|
66
|
+
"Unknown User": "",
|
|
64
67
|
"Unmute User": "Activer le son de Utilisateur",
|
|
65
68
|
"Unpin from Conversation": "Dรฉcrocher de la conversation",
|
|
66
|
-
"Unread Messages": "",
|
|
67
|
-
"Video": "
|
|
69
|
+
"Unread Messages": "Messages non lus",
|
|
70
|
+
"Video": "",
|
|
68
71
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "",
|
|
72
|
+
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
70
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
|
-
"{{ index }} of {{ photoLength }}": "
|
|
72
|
-
"{{ replyCount }} Replies": "
|
|
73
|
-
"{{ replyCount }} Thread Replies": "
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
+
"{{ replyCount }} Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "",
|
|
74
77
|
"{{ user }} is typing": "",
|
|
75
78
|
"๐ Attachment...": ""
|
|
76
79
|
}
|
|
@@ -73,5 +73,8 @@
|
|
|
73
73
|
"How about sending your first message to a friend?": "ืื ืืขืชื ืืฉืืื ืืช ืืืืืขื ืืจืืฉืื ื ืฉืื ืืืืจ?",
|
|
74
74
|
"Allow camera access in device settings": "ืืคืฉืจ ืืืฉื ืืืฆืืื ืืืืืจืืช ืืืืฉืืจ",
|
|
75
75
|
"Device camera is used to take photos or videos.": "ืืฆืืืช ืืืืฉืืจ ืืฉืืฉืช ืืฆืืืื ืชืืื ืืช ืื ืกืจืืื ืื.",
|
|
76
|
-
"Open Settings": "ืคืชื ืืช ืืืืืจืืช"
|
|
76
|
+
"Open Settings": "ืคืชื ืืช ืืืืืจืืช",
|
|
77
|
+
"Send Anyway": "ืฉืื ืืื ืืืช",
|
|
78
|
+
"Are you sure?": "ืืื ืืชื ืืืื?",
|
|
79
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "ืฉืงืื ืืื ืืชืืืื ืฉืื ืขืฉืืื ืืืฉืคืืข ืขื ืืืจืื ืืืืื ืฉืืชื ืขืืงื ืืืจ ืืื ืืืืช ืฉื ืืงืืืื ืฉืื ื"
|
|
77
80
|
}
|
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "",
|
|
2
|
+
"1 Reply": "",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "เคเฅเคจเคฒ เคเฅ เคญเฅ เคญเฅเคเฅเค",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "เคเฅเคฏเคพ เคเคช เคตเคพเคเค เคเคธ เคธเคเคฆเฅเคถ เคเฅ เคธเฅเคฅเคพเคฏเฅ เคฐเฅเคช เคธเฅ เคนเคเคพเคจเคพ เคเคพเคนเคคเฅ เคนเฅเค?",
|
|
8
|
+
"Are you sure?": "เคเฅเคฏเคพ เคเคช เคธเฅเคจเคฟเคถเฅเคเคฟเคค เคนเฅเค?",
|
|
8
9
|
"Block User": "เคเคชเคฏเฅเคเคเคฐเฅเคคเคพ เคเฅ เคฐเฅเค เคฆเฅเคจเคพ, เคฌเฅเคฒเฅเค เคฏเฅเคเคฐ",
|
|
9
10
|
"Cancel": "เคฐเคฆเฅเคฆ เคเคฐเฅเค",
|
|
10
11
|
"Cannot Flag Message": "เคฎเฅเคธเฅเค เคซเฅเคฒเฅเค เคจเคนเฅเค เคเคฟเคฏเคพ เคเคพ เคธเคเคคเคพ เคนเฅ",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "เคงเฅเคฏเคพเคจ เคฆเฅเค เคเคฟ เคเคชเคเคพ เคธเคเคฆเฅเคถ เคฆเฅเคธเคฐเฅเค เคเฅ เคเฅเคธเคพ เคฒเคเคพ เคธเคเคคเคพ เคนเฅ เคเคฐ เคธเฅเคจเคฟเคถเฅเคเคฟเคค เคนเฅเค เคเคฟ เคเคช เคนเคฎเคพเคฐเฅ เคธเคพเคฎเฅเคฆเคพเคฏเคฟเค เค
เคจเฅเคถเคพเคธเคจ เคเคพ เคชเคพเคฒเคจ เคเคฐ เคฐเคนเฅ เคนเฅเค",
|
|
11
13
|
"Copy Message": "เคธเคเคฆเฅเคถ เคเฅ เคชเฅเคฐเคคเคฟเคฒเคฟเคชเคฟ เคฌเคจเคพเคเค",
|
|
12
14
|
"Delete": "เคนเคเคพเคเค",
|
|
13
15
|
"Delete Message": "เคฎเฅเคธเฅเค เคเฅ เคกเคฟเคฒเฅเค เคเคฐเฅ",
|
|
14
|
-
"Device camera is used to take photos or videos.": "
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
15
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "เคเฅเคฏเคพ เคเคช เคเคธ เคธเคเคฆเฅเคถ เคเฅ เคเค เคชเฅเคฐเคคเคฟ เคเคเฅ เคเฅ เคเคพเคเค เคเฅ เคฒเคฟเค เคเคฟเคธเฅ เคฎเฅเคกเคฐเฅเคเคฐ เคเฅ เคญเฅเคเคจเคพ เคเคพเคนเคคเฅ เคนเฅเค?",
|
|
16
18
|
"Edit Message": "เคฎเฅเคธเฅเค เคฎเฅเค เคฌเคฆเคฒเคพเคต เคเคฐเฅ",
|
|
17
|
-
"Editing Message": "
|
|
18
|
-
"Emoji matching": "
|
|
19
|
+
"Editing Message": "",
|
|
20
|
+
"Emoji matching": "",
|
|
19
21
|
"Empty message...": "",
|
|
20
22
|
"Error loading": "",
|
|
21
23
|
"Error loading channel list...": "",
|
|
@@ -26,14 +28,14 @@
|
|
|
26
28
|
"Flag Message": "เคเคเคกเคพ เคธเคเคฆเฅเคถ",
|
|
27
29
|
"Flag action failed either due to a network issue or the message is already flagged": "เคซเคผเฅเคฒเฅเค เคเคพเคฐเฅเคฐเคตเคพเค เคฏเคพ เคคเฅ เคจเฅเคเคตเคฐเฅเค เคธเคฎเคธเฅเคฏเคพ เคเฅ เคเคพเคฐเคฃ เคตเคฟเคซเคฒ เคนเฅ เคเค เคฏเคพ เคธเคเคฆเฅเคถ เคชเคนเคฒเฅ เคธเฅ เคซเคผเฅเคฒเฅเค เคเคฟเคฏเคพ เคเคฏเคพ เคนเฅเฅค",
|
|
28
30
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "
|
|
31
|
+
"Instant Commands": "",
|
|
30
32
|
"Let's start chatting!": "",
|
|
31
33
|
"Links are disabled": "เคฒเคฟเคเค เค
เคเฅเคทเคฎ เคนเฅเค",
|
|
32
|
-
"Loading channels...": "
|
|
33
|
-
"Loading messages...": "
|
|
34
|
-
"Loading...": "
|
|
34
|
+
"Loading channels...": "",
|
|
35
|
+
"Loading messages...": "",
|
|
36
|
+
"Loading...": "",
|
|
35
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "เค
เคงเคฟเคเคคเคฎ เคซเคผเคพเคเคฒ เคเคเคพเคฐ เค
เคชเคฒเฅเคก เคธเฅเคฎเคพ เคชเฅเคฐเฅ เคนเฅ เคเคเฅค เคเฅเคชเคฏเคพ {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} เคเคฎเคฌเฅ เคธเฅ เคจเฅเคเฅ เคเฅ เคซเคผเคพเคเคฒ เค
เคชเคฒเฅเคก เคเคฐเฅเคเฅค",
|
|
36
|
-
"Message Reactions": "
|
|
38
|
+
"Message Reactions": "",
|
|
37
39
|
"Message deleted": "",
|
|
38
40
|
"Message flagged": "เคธเคเคฆเฅเคถ เคเฅ เคงเฅเคตเคเคพเคเคเคฟเคค เคเคฟเคฏเคพ เคเคฏเคพ",
|
|
39
41
|
"Mute User": "เคเคชเคฏเฅเคเคเคฐเฅเคคเคพ เคเฅ เคฎเฅเคฏเฅเค เคเคฐเฅเค",
|
|
@@ -41,36 +43,37 @@
|
|
|
41
43
|
"Nothing yet...": "",
|
|
42
44
|
"Ok": "เค เฅเค",
|
|
43
45
|
"Only visible to you": "",
|
|
44
|
-
"Open Settings": "
|
|
45
|
-
"Photo": "
|
|
46
|
-
"Photos and Videos": "
|
|
46
|
+
"Open Settings": "",
|
|
47
|
+
"Photo": "",
|
|
48
|
+
"Photos and Videos": "",
|
|
47
49
|
"Pin to Conversation": "เคฌเคพเคคเคเฅเคค เคฎเฅเค เคชเคฟเคจ เคเคฐเฅเค",
|
|
48
50
|
"Pinned by": "",
|
|
49
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
52
|
"Please select a channel first": "เคเฅเคชเคฏเคพ เคชเคนเคฒเฅ เคเค เคเฅเคจเคฒ เคเฅเคจเฅเค",
|
|
51
53
|
"Reconnecting...": "",
|
|
52
54
|
"Reply": "เคฎเฅเคธเฅเค เคเฅ เคฐเคฟเคชเฅเคฒเคพเค เคเคฐเฅ",
|
|
53
55
|
"Reply to Message": "",
|
|
54
56
|
"Resend": "เคชเฅเคจ: เคญเฅเคเฅเค",
|
|
55
57
|
"Search GIFs": "",
|
|
56
|
-
"Select More Photos": "
|
|
58
|
+
"Select More Photos": "",
|
|
59
|
+
"Send Anyway": "เคซเคฟเคฐ เคญเฅ เคญเฅเคเฅเค",
|
|
57
60
|
"Send a message": "",
|
|
58
61
|
"Sending links is not allowed in this conversation": "เคเคธ เคฌเคพเคคเคเฅเคค เคฎเฅเค เคฒเคฟเคเค เคญเฅเคเคจเฅ เคเฅ เค
เคจเฅเคฎเคคเคฟ เคจเคนเฅเค เคนเฅ",
|
|
59
62
|
"Slow mode ON": "",
|
|
60
63
|
"The message has been reported to a moderator.": "เคธเคเคฆเฅเคถ เคเค เคฎเฅเคกเคฐเฅเคเคฐ เคเฅ เคธเฅเคเคฟเคค เคเคฟเคฏเคพ เคเคฏเคพ เคนเฅเฅค",
|
|
61
64
|
"Thread Reply": "เคงเคพเคเคพ เคเคตเคพเคฌ",
|
|
62
65
|
"Unblock User": "เคเคชเคฏเฅเคเคเคฐเฅเคคเคพ เคเฅ เค
เคจเคฌเฅเคฒเฅเค เคเคฐเฅเค",
|
|
63
|
-
"Unknown User": "
|
|
66
|
+
"Unknown User": "",
|
|
64
67
|
"Unmute User": "เคเคชเคฏเฅเคเคเคฐเฅเคคเคพ เคเฅ เค
เคจเคฎเฅเคฏเฅเค เคเคฐเฅเค",
|
|
65
68
|
"Unpin from Conversation": "เคฌเคพเคคเคเฅเคค เคธเฅ เค
เคจเคชเคฟเคจ เคเคฐเฅเค",
|
|
66
|
-
"Unread Messages": "",
|
|
67
|
-
"Video": "
|
|
69
|
+
"Unread Messages": "เค
เคชเค เคฟเคค เคธเคเคฆเฅเคถ",
|
|
70
|
+
"Video": "",
|
|
68
71
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "",
|
|
72
|
+
"You can't send messages in this channel": "เคเคช เคเคธ เคเฅเคจเคฒ เคฎเฅเค เคธเคเคฆเฅเคถ เคจเคนเฅเค เคญเฅเค เคธเคเคคเฅ",
|
|
70
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
|
-
"{{ index }} of {{ photoLength }}": "
|
|
72
|
-
"{{ replyCount }} Replies": "
|
|
73
|
-
"{{ replyCount }} Thread Replies": "
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
+
"{{ replyCount }} Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "",
|
|
74
77
|
"{{ user }} is typing": "",
|
|
75
78
|
"๐ Attachment...": ""
|
|
76
79
|
}
|
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "",
|
|
2
|
+
"1 Reply": "",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "Invia anche al canale",
|
|
7
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?",
|
|
8
9
|
"Block User": "Blocca Utente",
|
|
9
10
|
"Cancel": "Annulla",
|
|
10
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",
|
|
11
13
|
"Copy Message": "Copia Messaggio",
|
|
12
14
|
"Delete": "Elimina",
|
|
13
15
|
"Delete Message": "Cancella il Messaggio",
|
|
14
|
-
"Device camera is used to take photos or videos.": "
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
15
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?",
|
|
16
18
|
"Edit Message": "Modifica Messaggio",
|
|
17
|
-
"Editing Message": "
|
|
18
|
-
"Emoji matching": "
|
|
19
|
+
"Editing Message": "",
|
|
20
|
+
"Emoji matching": "",
|
|
19
21
|
"Empty message...": "",
|
|
20
22
|
"Error loading": "",
|
|
21
23
|
"Error loading channel list...": "",
|
|
@@ -26,14 +28,14 @@
|
|
|
26
28
|
"Flag Message": "Contrassegna Messaggio",
|
|
27
29
|
"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.",
|
|
28
30
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "
|
|
31
|
+
"Instant Commands": "",
|
|
30
32
|
"Let's start chatting!": "",
|
|
31
33
|
"Links are disabled": "I link sono disabilitati",
|
|
32
|
-
"Loading channels...": "
|
|
33
|
-
"Loading messages...": "
|
|
34
|
-
"Loading...": "
|
|
34
|
+
"Loading channels...": "",
|
|
35
|
+
"Loading messages...": "",
|
|
36
|
+
"Loading...": "",
|
|
35
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "ร stato raggiunto il limite massimo di caricamento delle dimensioni del file. Carica un file inferiore a {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
|
|
36
|
-
"Message Reactions": "
|
|
38
|
+
"Message Reactions": "",
|
|
37
39
|
"Message deleted": "",
|
|
38
40
|
"Message flagged": "Messaggio contrassegnato",
|
|
39
41
|
"Mute User": "Utente Muto",
|
|
@@ -41,36 +43,37 @@
|
|
|
41
43
|
"Nothing yet...": "",
|
|
42
44
|
"Ok": "Ok",
|
|
43
45
|
"Only visible to you": "",
|
|
44
|
-
"Open Settings": "
|
|
45
|
-
"Photo": "
|
|
46
|
-
"Photos and Videos": "
|
|
46
|
+
"Open Settings": "",
|
|
47
|
+
"Photo": "",
|
|
48
|
+
"Photos and Videos": "",
|
|
47
49
|
"Pin to Conversation": "Metti in evidenza",
|
|
48
50
|
"Pinned by": "",
|
|
49
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
52
|
"Please select a channel first": "Seleziona un canale",
|
|
51
53
|
"Reconnecting...": "",
|
|
52
54
|
"Reply": "Rispondi",
|
|
53
55
|
"Reply to Message": "",
|
|
54
56
|
"Resend": "Invia di nuovo",
|
|
55
57
|
"Search GIFs": "",
|
|
56
|
-
"Select More Photos": "
|
|
58
|
+
"Select More Photos": "",
|
|
59
|
+
"Send Anyway": "Invia comunque",
|
|
57
60
|
"Send a message": "",
|
|
58
61
|
"Sending links is not allowed in this conversation": "L'invio di link non รจ consentito in questa conversazione",
|
|
59
62
|
"Slow mode ON": "",
|
|
60
63
|
"The message has been reported to a moderator.": "Il messaggio รจ stato segnalato a un moderatore.",
|
|
61
64
|
"Thread Reply": "Rispondi alla Discussione",
|
|
62
65
|
"Unblock User": "Sblocca utente",
|
|
63
|
-
"Unknown User": "
|
|
66
|
+
"Unknown User": "",
|
|
64
67
|
"Unmute User": "Riattiva utente",
|
|
65
68
|
"Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
|
|
66
|
-
"Unread Messages": "",
|
|
67
|
-
"Video": "
|
|
69
|
+
"Unread Messages": "Messaggi non letti",
|
|
70
|
+
"Video": "",
|
|
68
71
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "",
|
|
72
|
+
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
70
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
|
-
"{{ index }} of {{ photoLength }}": "
|
|
72
|
-
"{{ replyCount }} Replies": "
|
|
73
|
-
"{{ replyCount }} Thread Replies": "
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
+
"{{ replyCount }} Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "",
|
|
74
77
|
"{{ user }} is typing": "",
|
|
75
78
|
"๐ Attachment...": ""
|
|
76
79
|
}
|
|
@@ -76,5 +76,8 @@
|
|
|
76
76
|
"How about sending your first message to a friend?": "ๅใใฆใฎใกใใปใผใธใๅ้ใซ้ใฃใฆใฟใฆใฏใใใใงใใใใ?",
|
|
77
77
|
"Allow camera access in device settings": "ใใใคใน่จญๅฎใงใซใกใฉใธใฎใขใฏใปในใ่จฑๅฏใใ",
|
|
78
78
|
"Device camera is used to take photos or videos.": "ใใใคในใฎใซใกใฉใฏๅ็ใใใใชใฎๆฎๅฝฑใซไฝฟ็จใใใพใใ",
|
|
79
|
-
"Open Settings": "่จญๅฎใ้ใ"
|
|
79
|
+
"Open Settings": "่จญๅฎใ้ใ",
|
|
80
|
+
"Send Anyway": "ใจใซใใ้ไฟก",
|
|
81
|
+
"Are you sure?": "ๆฌๅฝใซใใใใใงใใ๏ผ",
|
|
82
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "ใใชใใฎใณใกใณใใไปใฎไบบใซใฉใฎใใใซๅฝฑ้ฟใใใ่ใใๅฟ
ใใณใใฅใใใฃใฌใคใใฉใคใณใซๅพใฃใฆใใ ใใ"
|
|
80
83
|
}
|
|
@@ -75,5 +75,8 @@
|
|
|
75
75
|
"How about sending your first message to a friend?": "์น๊ตฌ์๊ฒ ์ฒซ ๋ฒ์งธ ๋ฉ์์ง๋ฅผ ๋ณด๋ด๋ ๊ฒ์ ์ด๋ป์ต๋๊น?",
|
|
76
76
|
"Allow camera access in device settings": "๊ธฐ๊ธฐ ์ค์ ์์ ์นด๋ฉ๋ผ ์ก์ธ์ค๋ฅผ ํ์ฉํ์ธ์.",
|
|
77
77
|
"Device camera is used to take photos or videos.": "๊ธฐ๊ธฐ ์นด๋ฉ๋ผ๋ ์ฌ์ง์ด๋ ๋์์์ ์ดฌ์ํ๋ ๋ฐ ์ฌ์ฉ๋ฉ๋๋ค.",
|
|
78
|
-
"Open Settings": "์ค์ ์ด๊ธฐ"
|
|
78
|
+
"Open Settings": "์ค์ ์ด๊ธฐ",
|
|
79
|
+
"Send Anyway": "๊ทธ๋๋ ๋ณด๋ด๊ธฐ",
|
|
80
|
+
"Are you sure?": "ํ์คํฉ๋๊น?",
|
|
81
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "๋น์ ์ ๋๊ธ์ด ๋ค๋ฅธ ์ฌ๋๋ค์๊ฒ ์ด๋ค ์ํฅ์ ์ค์ง ๊ณ ๋ คํ๊ณ ๋ฐ๋์ ์ฐ๋ฆฌ์ ์ปค๋ฎค๋ํฐ ๊ฐ์ด๋๋ผ์ธ์ ๋ฐ๋ฅด์ญ์์ค"
|
|
79
82
|
}
|
|
@@ -1,21 +1,23 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "",
|
|
2
|
+
"1 Reply": "",
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "Stuur ook naar kanaal",
|
|
7
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?",
|
|
8
9
|
"Block User": "Blokkeer Gebruiker",
|
|
9
10
|
"Cancel": "Annuleer",
|
|
10
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",
|
|
11
13
|
"Copy Message": "Bericht kopiรซren",
|
|
12
14
|
"Delete": "Verwijderen",
|
|
13
15
|
"Delete Message": "Verwijder bericht",
|
|
14
|
-
"Device camera is used to take photos or videos.": "
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
15
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?",
|
|
16
18
|
"Edit Message": "Pas bericht aan",
|
|
17
|
-
"Editing Message": "
|
|
18
|
-
"Emoji matching": "
|
|
19
|
+
"Editing Message": "",
|
|
20
|
+
"Emoji matching": "",
|
|
19
21
|
"Empty message...": "",
|
|
20
22
|
"Error loading": "",
|
|
21
23
|
"Error loading channel list...": "",
|
|
@@ -26,14 +28,14 @@
|
|
|
26
28
|
"Flag Message": "Markeer bericht",
|
|
27
29
|
"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",
|
|
28
30
|
"How about sending your first message to a friend?": "",
|
|
29
|
-
"Instant Commands": "
|
|
31
|
+
"Instant Commands": "",
|
|
30
32
|
"Let's start chatting!": "",
|
|
31
33
|
"Links are disabled": "Het versturen van links staat uit",
|
|
32
|
-
"Loading channels...": "
|
|
33
|
-
"Loading messages...": "
|
|
34
|
-
"Loading...": "
|
|
34
|
+
"Loading channels...": "",
|
|
35
|
+
"Loading messages...": "",
|
|
36
|
+
"Loading...": "",
|
|
35
37
|
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Maximale uploadlimiet voor bestandsgrootte bereikt. Upload een bestand van minder dan {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
|
|
36
|
-
"Message Reactions": "
|
|
38
|
+
"Message Reactions": "",
|
|
37
39
|
"Message deleted": "",
|
|
38
40
|
"Message flagged": "Bericht gemarkeerd",
|
|
39
41
|
"Mute User": "Gebruiker dempen",
|
|
@@ -41,36 +43,37 @@
|
|
|
41
43
|
"Nothing yet...": "",
|
|
42
44
|
"Ok": "Okรฉ",
|
|
43
45
|
"Only visible to you": "",
|
|
44
|
-
"Open Settings": "
|
|
45
|
-
"Photo": "
|
|
46
|
-
"Photos and Videos": "
|
|
46
|
+
"Open Settings": "",
|
|
47
|
+
"Photo": "",
|
|
48
|
+
"Photos and Videos": "",
|
|
47
49
|
"Pin to Conversation": "Vastmaken aan gesprek",
|
|
48
50
|
"Pinned by": "",
|
|
49
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
52
|
"Please select a channel first": "Selecteer eerst een kanaal",
|
|
51
53
|
"Reconnecting...": "",
|
|
52
54
|
"Reply": "Antwoord",
|
|
53
55
|
"Reply to Message": "",
|
|
54
56
|
"Resend": "Opnieuw versturen",
|
|
55
57
|
"Search GIFs": "",
|
|
56
|
-
"Select More Photos": "
|
|
58
|
+
"Select More Photos": "",
|
|
59
|
+
"Send Anyway": "Toch verzenden",
|
|
57
60
|
"Send a message": "",
|
|
58
61
|
"Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
|
|
59
62
|
"Slow mode ON": "",
|
|
60
63
|
"The message has been reported to a moderator.": "Het bericht is gerapporteerd aan een moderator.",
|
|
61
64
|
"Thread Reply": "Discussie beantwoorden",
|
|
62
65
|
"Unblock User": "Deblokkeer gebruiker",
|
|
63
|
-
"Unknown User": "
|
|
66
|
+
"Unknown User": "",
|
|
64
67
|
"Unmute User": "Dempen van gebruiker opheffen",
|
|
65
68
|
"Unpin from Conversation": "Losmaken van gesprek",
|
|
66
|
-
"Unread Messages": "",
|
|
67
|
-
"Video": "
|
|
69
|
+
"Unread Messages": "Ongelezen Berichten",
|
|
70
|
+
"Video": "",
|
|
68
71
|
"You": "",
|
|
69
|
-
"You can't send messages in this channel": "",
|
|
72
|
+
"You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
|
|
70
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
71
|
-
"{{ index }} of {{ photoLength }}": "
|
|
72
|
-
"{{ replyCount }} Replies": "
|
|
73
|
-
"{{ replyCount }} Thread Replies": "
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
+
"{{ replyCount }} Replies": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "",
|
|
74
77
|
"{{ user }} is typing": "",
|
|
75
78
|
"๐ Attachment...": ""
|
|
76
79
|
}
|