stream-chat-react-native-core 5.39.6 → 5.40.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/AttachmentPicker/components/AttachmentPickerSelectionBar.js +27 -0
- package/lib/commonjs/components/AttachmentPicker/components/AttachmentPickerSelectionBar.js.map +1 -1
- package/lib/commonjs/components/Channel/Channel.js +17 -4
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreateInputMessageInputContext.js +7 -1
- package/lib/commonjs/components/Channel/hooks/useCreateInputMessageInputContext.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js +5 -1
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js +46 -3
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/commonjs/components/Chat/Chat.js +2 -0
- package/lib/commonjs/components/Chat/Chat.js.map +1 -1
- package/lib/commonjs/components/Chat/hooks/handleEventToSyncDB.js +10 -0
- package/lib/commonjs/components/Chat/hooks/handleEventToSyncDB.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js +13 -0
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +31 -15
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/commonjs/components/MessageInput/MessageInput.js +44 -1
- package/lib/commonjs/components/MessageInput/MessageInput.js.map +1 -1
- package/lib/commonjs/components/MessageInput/components/NativeAttachmentPicker.js +18 -1
- package/lib/commonjs/components/MessageInput/components/NativeAttachmentPicker.js.map +1 -1
- package/lib/commonjs/components/MessageOverlay/MessageOverlay.js +10 -0
- package/lib/commonjs/components/MessageOverlay/MessageOverlay.js.map +1 -1
- package/lib/commonjs/components/Poll/CreatePollContent.js +386 -0
- package/lib/commonjs/components/Poll/CreatePollContent.js.map +1 -0
- package/lib/commonjs/components/Poll/Poll.js +112 -0
- package/lib/commonjs/components/Poll/Poll.js.map +1 -0
- package/lib/commonjs/components/Poll/components/Button.js +513 -0
- package/lib/commonjs/components/Poll/components/Button.js.map +1 -0
- package/lib/commonjs/components/Poll/components/CreatePollIcon.js +23 -0
- package/lib/commonjs/components/Poll/components/CreatePollIcon.js.map +1 -0
- package/lib/commonjs/components/Poll/components/CreatePollOptions.js +281 -0
- package/lib/commonjs/components/Poll/components/CreatePollOptions.js.map +1 -0
- package/lib/commonjs/components/Poll/components/PollAnswersList.js +154 -0
- package/lib/commonjs/components/Poll/components/PollAnswersList.js.map +1 -0
- package/lib/commonjs/components/Poll/components/PollInputDialog.js +139 -0
- package/lib/commonjs/components/Poll/components/PollInputDialog.js.map +1 -0
- package/lib/commonjs/components/Poll/components/PollModalHeader.js +60 -0
- package/lib/commonjs/components/Poll/components/PollModalHeader.js.map +1 -0
- package/lib/commonjs/components/Poll/components/PollOption.js +209 -0
- package/lib/commonjs/components/Poll/components/PollOption.js.map +1 -0
- package/lib/commonjs/components/Poll/components/PollResults/PollOptionFullResults.js +123 -0
- package/lib/commonjs/components/Poll/components/PollResults/PollOptionFullResults.js.map +1 -0
- package/lib/commonjs/components/Poll/components/PollResults/PollResultItem.js +152 -0
- package/lib/commonjs/components/Poll/components/PollResults/PollResultItem.js.map +1 -0
- package/lib/commonjs/components/Poll/components/PollResults/PollResults.js +101 -0
- package/lib/commonjs/components/Poll/components/PollResults/PollResults.js.map +1 -0
- package/lib/commonjs/components/Poll/components/PollResults/index.js +37 -0
- package/lib/commonjs/components/Poll/components/PollResults/index.js.map +1 -0
- package/lib/commonjs/components/Poll/components/index.js +92 -0
- package/lib/commonjs/components/Poll/components/index.js.map +1 -0
- package/lib/commonjs/components/Poll/hooks/usePollAnswersPagination.js +129 -0
- package/lib/commonjs/components/Poll/hooks/usePollAnswersPagination.js.map +1 -0
- package/lib/commonjs/components/Poll/hooks/usePollOptionVotesPagination.js +140 -0
- package/lib/commonjs/components/Poll/hooks/usePollOptionVotesPagination.js.map +1 -0
- package/lib/commonjs/components/Poll/hooks/usePollState.js +103 -0
- package/lib/commonjs/components/Poll/hooks/usePollState.js.map +1 -0
- package/lib/commonjs/components/Poll/hooks/usePollStateStore.js +13 -0
- package/lib/commonjs/components/Poll/hooks/usePollStateStore.js.map +1 -0
- package/lib/commonjs/components/Poll/index.js +81 -0
- package/lib/commonjs/components/Poll/index.js.map +1 -0
- package/lib/commonjs/components/Reply/Reply.js +1 -1
- package/lib/commonjs/components/Reply/Reply.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/attachmentPickerContext/AttachmentPickerContext.js.map +1 -1
- package/lib/commonjs/contexts/index.js +11 -0
- package/lib/commonjs/contexts/index.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +26 -3
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/hooks/useCreateMessageInputContext.js +9 -1
- package/lib/commonjs/contexts/messageInputContext/hooks/useCreateMessageInputContext.js.map +1 -1
- package/lib/commonjs/contexts/messageOverlayContext/MessageOverlayContext.js.map +1 -1
- package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/commonjs/contexts/overlayContext/OverlayContext.js.map +1 -1
- package/lib/commonjs/contexts/overlayContext/OverlayProvider.js +4 -0
- package/lib/commonjs/contexts/overlayContext/OverlayProvider.js.map +1 -1
- package/lib/commonjs/contexts/ownCapabilitiesContext/OwnCapabilitiesContext.js +3 -0
- package/lib/commonjs/contexts/ownCapabilitiesContext/OwnCapabilitiesContext.js.map +1 -1
- package/lib/commonjs/contexts/pollContext/createPollContentContext.js +33 -0
- package/lib/commonjs/contexts/pollContext/createPollContentContext.js.map +1 -0
- package/lib/commonjs/contexts/pollContext/index.js +26 -0
- package/lib/commonjs/contexts/pollContext/index.js.map +1 -0
- package/lib/commonjs/contexts/pollContext/pollContext.js +33 -0
- package/lib/commonjs/contexts/pollContext/pollContext.js.map +1 -0
- package/lib/commonjs/contexts/themeContext/utils/theme.js +126 -0
- package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/commonjs/i18n/en.json +34 -0
- package/lib/commonjs/i18n/es.json +38 -0
- package/lib/commonjs/i18n/fr.json +38 -0
- package/lib/commonjs/i18n/he.json +38 -0
- package/lib/commonjs/i18n/hi.json +34 -0
- package/lib/commonjs/i18n/it.json +38 -0
- package/lib/commonjs/i18n/ja.json +34 -0
- package/lib/commonjs/i18n/ko.json +34 -0
- package/lib/commonjs/i18n/nl.json +34 -0
- package/lib/commonjs/i18n/pt-br.json +38 -0
- package/lib/commonjs/i18n/ru.json +42 -0
- package/lib/commonjs/i18n/tr.json +34 -0
- package/lib/commonjs/icons/Back.js +19 -0
- package/lib/commonjs/icons/Back.js.map +1 -0
- package/lib/commonjs/icons/DragHandle.js +21 -0
- package/lib/commonjs/icons/DragHandle.js.map +1 -0
- package/lib/commonjs/icons/PollThumbnail.js +19 -0
- package/lib/commonjs/icons/PollThumbnail.js.map +1 -0
- package/lib/commonjs/icons/SendPoll.js +19 -0
- package/lib/commonjs/icons/SendPoll.js.map +1 -0
- package/lib/commonjs/icons/index.js +44 -0
- package/lib/commonjs/icons/index.js.map +1 -1
- package/lib/commonjs/store/QuickSqliteClient.js +1 -1
- package/lib/commonjs/store/apis/index.js +11 -0
- package/lib/commonjs/store/apis/index.js.map +1 -1
- package/lib/commonjs/store/apis/updatePollMessage.js +50 -0
- package/lib/commonjs/store/apis/updatePollMessage.js.map +1 -0
- package/lib/commonjs/store/mappers/mapMessageToStorable.js +5 -1
- package/lib/commonjs/store/mappers/mapMessageToStorable.js.map +1 -1
- package/lib/commonjs/store/mappers/mapStorableToMessage.js +5 -1
- package/lib/commonjs/store/mappers/mapStorableToMessage.js.map +1 -1
- package/lib/commonjs/store/schema.js +2 -0
- package/lib/commonjs/store/schema.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/AttachmentPicker/components/AttachmentPickerSelectionBar.js +27 -0
- package/lib/module/components/AttachmentPicker/components/AttachmentPickerSelectionBar.js.map +1 -1
- package/lib/module/components/Channel/Channel.js +17 -4
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Channel/hooks/useCreateInputMessageInputContext.js +7 -1
- package/lib/module/components/Channel/hooks/useCreateInputMessageInputContext.js.map +1 -1
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js +5 -1
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js +46 -3
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/module/components/Chat/Chat.js +2 -0
- package/lib/module/components/Chat/Chat.js.map +1 -1
- package/lib/module/components/Chat/hooks/handleEventToSyncDB.js +10 -0
- package/lib/module/components/Chat/hooks/handleEventToSyncDB.js.map +1 -1
- package/lib/module/components/Message/Message.js +13 -0
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageContent.js +31 -15
- package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/module/components/MessageInput/MessageInput.js +44 -1
- package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
- package/lib/module/components/MessageInput/components/NativeAttachmentPicker.js +18 -1
- package/lib/module/components/MessageInput/components/NativeAttachmentPicker.js.map +1 -1
- package/lib/module/components/MessageOverlay/MessageOverlay.js +10 -0
- package/lib/module/components/MessageOverlay/MessageOverlay.js.map +1 -1
- package/lib/module/components/Poll/CreatePollContent.js +386 -0
- package/lib/module/components/Poll/CreatePollContent.js.map +1 -0
- package/lib/module/components/Poll/Poll.js +112 -0
- package/lib/module/components/Poll/Poll.js.map +1 -0
- package/lib/module/components/Poll/components/Button.js +513 -0
- package/lib/module/components/Poll/components/Button.js.map +1 -0
- package/lib/module/components/Poll/components/CreatePollIcon.js +23 -0
- package/lib/module/components/Poll/components/CreatePollIcon.js.map +1 -0
- package/lib/module/components/Poll/components/CreatePollOptions.js +281 -0
- package/lib/module/components/Poll/components/CreatePollOptions.js.map +1 -0
- package/lib/module/components/Poll/components/PollAnswersList.js +154 -0
- package/lib/module/components/Poll/components/PollAnswersList.js.map +1 -0
- package/lib/module/components/Poll/components/PollInputDialog.js +139 -0
- package/lib/module/components/Poll/components/PollInputDialog.js.map +1 -0
- package/lib/module/components/Poll/components/PollModalHeader.js +60 -0
- package/lib/module/components/Poll/components/PollModalHeader.js.map +1 -0
- package/lib/module/components/Poll/components/PollOption.js +209 -0
- package/lib/module/components/Poll/components/PollOption.js.map +1 -0
- package/lib/module/components/Poll/components/PollResults/PollOptionFullResults.js +123 -0
- package/lib/module/components/Poll/components/PollResults/PollOptionFullResults.js.map +1 -0
- package/lib/module/components/Poll/components/PollResults/PollResultItem.js +152 -0
- package/lib/module/components/Poll/components/PollResults/PollResultItem.js.map +1 -0
- package/lib/module/components/Poll/components/PollResults/PollResults.js +101 -0
- package/lib/module/components/Poll/components/PollResults/PollResults.js.map +1 -0
- package/lib/module/components/Poll/components/PollResults/index.js +37 -0
- package/lib/module/components/Poll/components/PollResults/index.js.map +1 -0
- package/lib/module/components/Poll/components/index.js +92 -0
- package/lib/module/components/Poll/components/index.js.map +1 -0
- package/lib/module/components/Poll/hooks/usePollAnswersPagination.js +129 -0
- package/lib/module/components/Poll/hooks/usePollAnswersPagination.js.map +1 -0
- package/lib/module/components/Poll/hooks/usePollOptionVotesPagination.js +140 -0
- package/lib/module/components/Poll/hooks/usePollOptionVotesPagination.js.map +1 -0
- package/lib/module/components/Poll/hooks/usePollState.js +103 -0
- package/lib/module/components/Poll/hooks/usePollState.js.map +1 -0
- package/lib/module/components/Poll/hooks/usePollStateStore.js +13 -0
- package/lib/module/components/Poll/hooks/usePollStateStore.js.map +1 -0
- package/lib/module/components/Poll/index.js +81 -0
- package/lib/module/components/Poll/index.js.map +1 -0
- package/lib/module/components/Reply/Reply.js +1 -1
- package/lib/module/components/Reply/Reply.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/attachmentPickerContext/AttachmentPickerContext.js.map +1 -1
- package/lib/module/contexts/index.js +11 -0
- package/lib/module/contexts/index.js.map +1 -1
- package/lib/module/contexts/messageInputContext/MessageInputContext.js +26 -3
- package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/module/contexts/messageInputContext/hooks/useCreateMessageInputContext.js +9 -1
- package/lib/module/contexts/messageInputContext/hooks/useCreateMessageInputContext.js.map +1 -1
- package/lib/module/contexts/messageOverlayContext/MessageOverlayContext.js.map +1 -1
- package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/module/contexts/overlayContext/OverlayContext.js.map +1 -1
- package/lib/module/contexts/overlayContext/OverlayProvider.js +4 -0
- package/lib/module/contexts/overlayContext/OverlayProvider.js.map +1 -1
- package/lib/module/contexts/ownCapabilitiesContext/OwnCapabilitiesContext.js +3 -0
- package/lib/module/contexts/ownCapabilitiesContext/OwnCapabilitiesContext.js.map +1 -1
- package/lib/module/contexts/pollContext/createPollContentContext.js +33 -0
- package/lib/module/contexts/pollContext/createPollContentContext.js.map +1 -0
- package/lib/module/contexts/pollContext/index.js +26 -0
- package/lib/module/contexts/pollContext/index.js.map +1 -0
- package/lib/module/contexts/pollContext/pollContext.js +33 -0
- package/lib/module/contexts/pollContext/pollContext.js.map +1 -0
- package/lib/module/contexts/themeContext/utils/theme.js +126 -0
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/i18n/en.json +34 -0
- package/lib/module/i18n/es.json +38 -0
- package/lib/module/i18n/fr.json +38 -0
- package/lib/module/i18n/he.json +38 -0
- package/lib/module/i18n/hi.json +34 -0
- package/lib/module/i18n/it.json +38 -0
- package/lib/module/i18n/ja.json +34 -0
- package/lib/module/i18n/ko.json +34 -0
- package/lib/module/i18n/nl.json +34 -0
- package/lib/module/i18n/pt-br.json +38 -0
- package/lib/module/i18n/ru.json +42 -0
- package/lib/module/i18n/tr.json +34 -0
- package/lib/module/icons/Back.js +19 -0
- package/lib/module/icons/Back.js.map +1 -0
- package/lib/module/icons/DragHandle.js +21 -0
- package/lib/module/icons/DragHandle.js.map +1 -0
- package/lib/module/icons/PollThumbnail.js +19 -0
- package/lib/module/icons/PollThumbnail.js.map +1 -0
- package/lib/module/icons/SendPoll.js +19 -0
- package/lib/module/icons/SendPoll.js.map +1 -0
- package/lib/module/icons/index.js +44 -0
- package/lib/module/icons/index.js.map +1 -1
- package/lib/module/store/QuickSqliteClient.js +1 -1
- package/lib/module/store/apis/index.js +11 -0
- package/lib/module/store/apis/index.js.map +1 -1
- package/lib/module/store/apis/updatePollMessage.js +50 -0
- package/lib/module/store/apis/updatePollMessage.js.map +1 -0
- package/lib/module/store/mappers/mapMessageToStorable.js +5 -1
- package/lib/module/store/mappers/mapMessageToStorable.js.map +1 -1
- package/lib/module/store/mappers/mapStorableToMessage.js +5 -1
- package/lib/module/store/mappers/mapStorableToMessage.js.map +1 -1
- package/lib/module/store/schema.js +2 -0
- package/lib/module/store/schema.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/AttachmentPicker/components/AttachmentPickerSelectionBar.d.ts.map +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts +2 -2
- package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateInputMessageInputContext.d.ts +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateInputMessageInputContext.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/hooks/useLatestMessagePreview.d.ts +5 -1
- package/lib/typescript/components/ChannelPreview/hooks/useLatestMessagePreview.d.ts.map +1 -1
- package/lib/typescript/components/Chat/Chat.d.ts.map +1 -1
- package/lib/typescript/components/Chat/hooks/handleEventToSyncDB.d.ts.map +1 -1
- package/lib/typescript/components/Message/Message.d.ts +1 -1
- package/lib/typescript/components/Message/Message.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/MessageInput.d.ts +1 -1
- package/lib/typescript/components/MessageInput/MessageInput.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/components/NativeAttachmentPicker.d.ts.map +1 -1
- package/lib/typescript/components/MessageOverlay/MessageOverlay.d.ts.map +1 -1
- package/lib/typescript/components/Poll/CreatePollContent.d.ts +6 -0
- package/lib/typescript/components/Poll/CreatePollContent.d.ts.map +1 -0
- package/lib/typescript/components/Poll/Poll.d.ts +13 -0
- package/lib/typescript/components/Poll/Poll.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/Button.d.ts +35 -0
- package/lib/typescript/components/Poll/components/Button.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/CreatePollIcon.d.ts +3 -0
- package/lib/typescript/components/Poll/components/CreatePollIcon.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/CreatePollOptions.d.ts +34 -0
- package/lib/typescript/components/Poll/components/CreatePollOptions.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/PollAnswersList.d.ts +15 -0
- package/lib/typescript/components/Poll/components/PollAnswersList.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/PollInputDialog.d.ts +10 -0
- package/lib/typescript/components/Poll/components/PollInputDialog.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/PollModalHeader.d.ts +7 -0
- package/lib/typescript/components/Poll/components/PollModalHeader.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/PollOption.d.ts +16 -0
- package/lib/typescript/components/Poll/components/PollOption.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/PollResults/PollOptionFullResults.d.ts +18 -0
- package/lib/typescript/components/Poll/components/PollResults/PollOptionFullResults.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/PollResults/PollResultItem.d.ts +9 -0
- package/lib/typescript/components/Poll/components/PollResults/PollResultItem.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/PollResults/PollResults.d.ts +10 -0
- package/lib/typescript/components/Poll/components/PollResults/PollResults.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/PollResults/index.d.ts +4 -0
- package/lib/typescript/components/Poll/components/PollResults/index.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/index.d.ts +9 -0
- package/lib/typescript/components/Poll/components/index.d.ts.map +1 -0
- package/lib/typescript/components/Poll/hooks/usePollAnswersPagination.d.ts +29 -0
- package/lib/typescript/components/Poll/hooks/usePollAnswersPagination.d.ts.map +1 -0
- package/lib/typescript/components/Poll/hooks/usePollOptionVotesPagination.d.ts +32 -0
- package/lib/typescript/components/Poll/hooks/usePollOptionVotesPagination.d.ts.map +1 -0
- package/lib/typescript/components/Poll/hooks/usePollState.d.ts +26 -0
- package/lib/typescript/components/Poll/hooks/usePollState.d.ts.map +1 -0
- package/lib/typescript/components/Poll/hooks/usePollStateStore.d.ts +3 -0
- package/lib/typescript/components/Poll/hooks/usePollStateStore.d.ts.map +1 -0
- package/lib/typescript/components/Poll/index.d.ts +8 -0
- package/lib/typescript/components/Poll/index.d.ts.map +1 -0
- package/lib/typescript/components/Reply/Reply.d.ts.map +1 -1
- package/lib/typescript/components/index.d.ts +1 -0
- package/lib/typescript/components/index.d.ts.map +1 -1
- package/lib/typescript/contexts/attachmentPickerContext/AttachmentPickerContext.d.ts +7 -1
- package/lib/typescript/contexts/attachmentPickerContext/AttachmentPickerContext.d.ts.map +1 -1
- package/lib/typescript/contexts/index.d.ts +1 -0
- package/lib/typescript/contexts/index.d.ts.map +1 -1
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts +11 -2
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messageInputContext/hooks/useCreateMessageInputContext.d.ts +1 -1
- package/lib/typescript/contexts/messageInputContext/hooks/useCreateMessageInputContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messageOverlayContext/MessageOverlayContext.d.ts +2 -1
- package/lib/typescript/contexts/messageOverlayContext/MessageOverlayContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +9 -1
- 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/contexts/overlayContext/OverlayProvider.d.ts.map +1 -1
- package/lib/typescript/contexts/ownCapabilitiesContext/OwnCapabilitiesContext.d.ts +3 -0
- package/lib/typescript/contexts/ownCapabilitiesContext/OwnCapabilitiesContext.d.ts.map +1 -1
- package/lib/typescript/contexts/pollContext/createPollContentContext.d.ts +20 -0
- package/lib/typescript/contexts/pollContext/createPollContentContext.d.ts.map +1 -0
- package/lib/typescript/contexts/pollContext/index.d.ts +3 -0
- package/lib/typescript/contexts/pollContext/index.d.ts.map +1 -0
- package/lib/typescript/contexts/pollContext/pollContext.d.ts +14 -0
- package/lib/typescript/contexts/pollContext/pollContext.d.ts.map +1 -0
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +126 -0
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
- package/lib/typescript/i18n/en.json +34 -0
- package/lib/typescript/i18n/es.json +38 -0
- package/lib/typescript/i18n/fr.json +38 -0
- package/lib/typescript/i18n/he.json +38 -0
- package/lib/typescript/i18n/hi.json +34 -0
- package/lib/typescript/i18n/it.json +38 -0
- package/lib/typescript/i18n/ja.json +34 -0
- package/lib/typescript/i18n/ko.json +34 -0
- package/lib/typescript/i18n/nl.json +34 -0
- package/lib/typescript/i18n/pt-br.json +38 -0
- package/lib/typescript/i18n/ru.json +42 -0
- package/lib/typescript/i18n/tr.json +34 -0
- package/lib/typescript/icons/Back.d.ts +4 -0
- package/lib/typescript/icons/Back.d.ts.map +1 -0
- package/lib/typescript/icons/DragHandle.d.ts +4 -0
- package/lib/typescript/icons/DragHandle.d.ts.map +1 -0
- package/lib/typescript/icons/PollThumbnail.d.ts +4 -0
- package/lib/typescript/icons/PollThumbnail.d.ts.map +1 -0
- package/lib/typescript/icons/SendPoll.d.ts +4 -0
- package/lib/typescript/icons/SendPoll.d.ts.map +1 -0
- package/lib/typescript/icons/index.d.ts +4 -0
- package/lib/typescript/icons/index.d.ts.map +1 -1
- package/lib/typescript/store/apis/index.d.ts +1 -0
- package/lib/typescript/store/apis/index.d.ts.map +1 -1
- package/lib/typescript/store/apis/updatePollMessage.d.ts +7 -0
- package/lib/typescript/store/apis/updatePollMessage.d.ts.map +1 -0
- package/lib/typescript/store/mappers/mapMessageToStorable.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapStorableToMessage.d.ts.map +1 -1
- package/lib/typescript/store/schema.d.ts +2 -0
- package/lib/typescript/store/schema.d.ts.map +1 -1
- package/lib/typescript/utils/i18n/Streami18n.d.ts +34 -0
- package/lib/typescript/utils/i18n/Streami18n.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/AttachmentPicker/components/AttachmentPickerSelectionBar.tsx +35 -2
- package/src/components/Channel/Channel.tsx +27 -4
- package/src/components/Channel/hooks/useCreateInputMessageInputContext.ts +16 -1
- package/src/components/Channel/hooks/useCreateMessagesContext.ts +5 -0
- package/src/components/ChannelPreview/hooks/useLatestMessagePreview.ts +63 -4
- package/src/components/Chat/Chat.tsx +2 -0
- package/src/components/Chat/hooks/handleEventToSyncDB.ts +19 -0
- package/src/components/Message/Message.tsx +15 -1
- package/src/components/Message/MessageSimple/MessageContent.tsx +16 -0
- package/src/components/MessageInput/MessageInput.tsx +58 -1
- package/src/components/MessageInput/__tests__/MessageInput.test.js +2 -0
- package/src/components/MessageInput/components/NativeAttachmentPicker.tsx +29 -2
- package/src/components/MessageOverlay/MessageOverlay.tsx +10 -0
- package/src/components/Poll/CreatePollContent.tsx +299 -0
- package/src/components/Poll/Poll.tsx +126 -0
- package/src/components/Poll/components/Button.tsx +465 -0
- package/src/components/Poll/components/CreatePollIcon.tsx +14 -0
- package/src/components/Poll/components/CreatePollOptions.tsx +351 -0
- package/src/components/Poll/components/PollAnswersList.tsx +134 -0
- package/src/components/Poll/components/PollInputDialog.tsx +117 -0
- package/src/components/Poll/components/PollModalHeader.tsx +42 -0
- package/src/components/Poll/components/PollOption.tsx +172 -0
- package/src/components/Poll/components/PollResults/PollOptionFullResults.tsx +108 -0
- package/src/components/Poll/components/PollResults/PollResultItem.tsx +115 -0
- package/src/components/Poll/components/PollResults/PollResults.tsx +79 -0
- package/src/components/Poll/components/PollResults/index.ts +3 -0
- package/src/components/Poll/components/index.ts +8 -0
- package/src/components/Poll/hooks/usePollAnswersPagination.ts +109 -0
- package/src/components/Poll/hooks/usePollOptionVotesPagination.ts +119 -0
- package/src/components/Poll/hooks/usePollState.ts +122 -0
- package/src/components/Poll/hooks/usePollStateStore.ts +13 -0
- package/src/components/Poll/index.ts +10 -0
- package/src/components/Reply/Reply.tsx +2 -0
- package/src/components/index.ts +1 -0
- package/src/contexts/attachmentPickerContext/AttachmentPickerContext.tsx +12 -1
- package/src/contexts/index.ts +1 -0
- package/src/contexts/messageInputContext/MessageInputContext.tsx +38 -10
- package/src/contexts/messageInputContext/__tests__/pickFile.test.tsx +4 -2
- package/src/contexts/messageInputContext/hooks/useCreateMessageInputContext.ts +9 -0
- package/src/contexts/messageOverlayContext/MessageOverlayContext.tsx +2 -1
- package/src/contexts/messagesContext/MessagesContext.tsx +15 -2
- package/src/contexts/overlayContext/OverlayContext.tsx +1 -0
- package/src/contexts/overlayContext/OverlayProvider.tsx +3 -0
- package/src/contexts/ownCapabilitiesContext/OwnCapabilitiesContext.tsx +3 -0
- package/src/contexts/pollContext/createPollContentContext.tsx +49 -0
- package/src/contexts/pollContext/index.ts +2 -0
- package/src/contexts/pollContext/pollContext.tsx +43 -0
- package/src/contexts/themeContext/utils/theme.ts +233 -0
- package/src/i18n/en.json +34 -0
- package/src/i18n/es.json +38 -0
- package/src/i18n/fr.json +38 -0
- package/src/i18n/he.json +38 -0
- package/src/i18n/hi.json +34 -0
- package/src/i18n/it.json +38 -0
- package/src/i18n/ja.json +34 -0
- package/src/i18n/ko.json +34 -0
- package/src/i18n/nl.json +34 -0
- package/src/i18n/pt-br.json +38 -0
- package/src/i18n/ru.json +42 -0
- package/src/i18n/tr.json +34 -0
- package/src/icons/Back.tsx +12 -0
- package/src/icons/DragHandle.tsx +9 -0
- package/src/icons/PollThumbnail.tsx +12 -0
- package/src/icons/SendPoll.tsx +12 -0
- package/src/icons/index.ts +4 -0
- package/src/store/QuickSqliteClient.ts +1 -1
- package/src/store/apis/index.ts +1 -0
- package/src/store/apis/updatePollMessage.ts +48 -0
- package/src/store/mappers/mapMessageToStorable.ts +4 -0
- package/src/store/mappers/mapStorableToMessage.ts +4 -0
- package/src/store/schema.ts +4 -0
- package/src/version.json +1 -1
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1件の返信",
|
|
3
3
|
"1 Thread Reply": "1件のスレッド返信",
|
|
4
|
+
"Add a comment": "コメントを追加",
|
|
5
|
+
"Add an option": "オプションを追加",
|
|
4
6
|
"Allow access to your Gallery": "ギャラリーへのアクセスを許可する",
|
|
5
7
|
"Allow camera access in device settings": "デバイス設定でカメラへのアクセスを許可する",
|
|
6
8
|
"Also send to channel": "チャンネルにも送信",
|
|
9
|
+
"Anonymous": "匿名",
|
|
10
|
+
"Anonymous poll": "匿名アンケート",
|
|
7
11
|
"Are you sure you want to permanently delete this message?": "このメッセージを完全に削除してもよろしいですか?",
|
|
8
12
|
"Are you sure?": "本当によろしいですか?",
|
|
13
|
+
"Ask a question": "質問をする",
|
|
9
14
|
"Ban User": "ユーザーを禁止する",
|
|
10
15
|
"Block User": "ユーザをブロックする",
|
|
11
16
|
"Cancel": "キャンセル",
|
|
12
17
|
"Cannot Flag Message": "メッセージをフラグできません",
|
|
13
18
|
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "あなたのコメントが他の人にどのように影響するか考え、必ずコミュニティガイドラインに従ってください",
|
|
14
19
|
"Copy Message": "メッセージのコピー",
|
|
20
|
+
"Create Poll": "アンケートを作成",
|
|
15
21
|
"Delete": "消去",
|
|
16
22
|
"Delete Message": "メッセージを削除",
|
|
17
23
|
"Device camera is used to take photos or videos.": "デバイスのカメラは写真やビデオの撮影に使用されます。",
|
|
@@ -22,6 +28,7 @@
|
|
|
22
28
|
"Editing Message": "メッセージを編集中",
|
|
23
29
|
"Emoji matching": "絵文字マッチング",
|
|
24
30
|
"Empty message...": "空のメッセージ...",
|
|
31
|
+
"End Vote": "投票を終了",
|
|
25
32
|
"Error loading": "読み込みエラー",
|
|
26
33
|
"Error loading channel list...": "チャネルリストの読み込み中にエラーが発生しました。。。",
|
|
27
34
|
"Error loading messages for this channel...": "このチャネルのメッセージの読み込み中にエラーが発生しました。。。",
|
|
@@ -41,9 +48,11 @@
|
|
|
41
48
|
"Loading threads...": "スレッドを読み込み中...",
|
|
42
49
|
"Loading...": "読み込み中。。。",
|
|
43
50
|
"Maximum number of files reached": "ファイルの最大数に達しました",
|
|
51
|
+
"Maximum votes per person": "1人あたりの最大投票数",
|
|
44
52
|
"Message Reactions": "メッセージのリアクション",
|
|
45
53
|
"Message deleted": "メッセージが削除されました",
|
|
46
54
|
"Message flagged": "メッセージにフラグが付けられました",
|
|
55
|
+
"Multiple answers": "複数回答",
|
|
47
56
|
"Mute User": "ユーザーをミュートする",
|
|
48
57
|
"No chats here yet…": "まだチャットはありません…",
|
|
49
58
|
"No threads here yet": "まだスレッドがありません",
|
|
@@ -52,6 +61,8 @@
|
|
|
52
61
|
"Ok": "確認",
|
|
53
62
|
"Only visible to you": "あなただけに見える",
|
|
54
63
|
"Open Settings": "設定を開く",
|
|
64
|
+
"Option": "オプション",
|
|
65
|
+
"Options": "オプション",
|
|
55
66
|
"Photo": "写真",
|
|
56
67
|
"Photos and Videos": "写真と動画",
|
|
57
68
|
"Pin to Conversation": "会話にピンする",
|
|
@@ -59,28 +70,48 @@
|
|
|
59
70
|
"Please allow Audio permissions in settings.": "設定でオーディオの権限を許可してください。",
|
|
60
71
|
"Please enable access to your photos and videos so you can share them.": "写真やビデオへのアクセスを有効にして、共有できるようにしてください。",
|
|
61
72
|
"Please select a channel first": "最初にチャンネルを選択してください",
|
|
73
|
+
"Poll Comments": "アンケートのコメント",
|
|
74
|
+
"Poll Options": "アンケートのオプション",
|
|
75
|
+
"Poll Results": "アンケートの結果",
|
|
76
|
+
"Questions": "質問",
|
|
62
77
|
"Reconnecting...": "再接続中。。。",
|
|
63
78
|
"Reply": "返事",
|
|
64
79
|
"Reply to Message": "メッセージに返信",
|
|
65
80
|
"Resend": "再送",
|
|
81
|
+
"SEND": "送信",
|
|
66
82
|
"Search GIFs": "GIFの探索",
|
|
83
|
+
"See all {{count}} options_one": "{{count}} 個のオプションをすべて表示",
|
|
84
|
+
"See all {{count}} options_other": "{{count}} 個のオプションをすべて表示",
|
|
67
85
|
"Select More Photos": "さらに写真を選択",
|
|
86
|
+
"Select one": "1つ選択",
|
|
87
|
+
"Select one or more": "1つ以上選択",
|
|
88
|
+
"Select up to {{count}}_one": "{{count}} まで選択",
|
|
89
|
+
"Select up to {{count}}_other": "{{count}} まで選択",
|
|
68
90
|
"Send Anyway": "とにかく送信",
|
|
69
91
|
"Send a message": "メッセージを送る",
|
|
70
92
|
"Sending links is not allowed in this conversation": "この会話ではリンク機能を使用できません。",
|
|
93
|
+
"Show All": "すべて表示",
|
|
71
94
|
"Slow mode ON": "スローモードオン",
|
|
95
|
+
"Suggest an option": "オプションを提案",
|
|
72
96
|
"The message has been reported to a moderator.": "メッセージはモデレーターに報告されました。",
|
|
73
97
|
"The source message was deleted": "元のメッセージが削除されました",
|
|
98
|
+
"This is already an option": "これはすでにオプションです",
|
|
74
99
|
"This reply was deleted": "この返信は削除されました",
|
|
75
100
|
"Thread Reply": "スレッドの返信",
|
|
101
|
+
"Type a number from 2 to 10": "2から10の数字を入力してください",
|
|
76
102
|
"Unban User": "ユーザーの禁止を解除する",
|
|
77
103
|
"Unblock User": "ユーザーのブロックを解除する",
|
|
78
104
|
"Unknown User": "不明なユーザー",
|
|
79
105
|
"Unmute User": "ユーザーのミュートを解除する",
|
|
80
106
|
"Unpin from Conversation": "会話のピンを外す",
|
|
81
107
|
"Unread Messages": "未読メッセージ",
|
|
108
|
+
"Update your comment": "コメントを更新",
|
|
82
109
|
"Video": "ビデオ",
|
|
110
|
+
"View Results": "結果を表示",
|
|
111
|
+
"View {{count}} comments_one": "{{count}} 件のコメントを表示",
|
|
112
|
+
"View {{count}} comments_other": "{{count}} 件のコメントを表示",
|
|
83
113
|
"Voice message": "ボイスメッセージ",
|
|
114
|
+
"Vote ended": "投票終了",
|
|
84
115
|
"You": "あなた",
|
|
85
116
|
"You can't send messages in this channel": "このチャンネルではメッセージを送信できません",
|
|
86
117
|
"replied to": "に返信しました",
|
|
@@ -90,6 +121,7 @@
|
|
|
90
121
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
91
122
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
92
123
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
124
|
+
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
93
125
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
94
126
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
95
127
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }}と{{ nonSelfUserLength }}人がタイピングしています",
|
|
@@ -97,5 +129,7 @@
|
|
|
97
129
|
"{{ replyCount }} Replies": "{{ replyCount }}件の返信",
|
|
98
130
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}件のスレッド返信",
|
|
99
131
|
"{{ user }} is typing": "{{ user }}はタイピング中",
|
|
132
|
+
"{{count}} votes_one": "{{count}} 票",
|
|
133
|
+
"{{count}} votes_other": "{{count}} 票",
|
|
100
134
|
"🏙 Attachment...": "🏙 アタッチメント..."
|
|
101
135
|
}
|
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "답장 1개",
|
|
3
3
|
"1 Thread Reply": "1개의 스레드\u3000답글",
|
|
4
|
+
"Add a comment": "댓글 추가",
|
|
5
|
+
"Add an option": "옵션 추가",
|
|
4
6
|
"Allow access to your Gallery": "갤러리에 대한 액세스를 허용",
|
|
5
7
|
"Allow camera access in device settings": "기기 설정에서 카메라 액세스를 허용하세요.",
|
|
6
8
|
"Also send to channel": "채널에도 전송",
|
|
9
|
+
"Anonymous": "익명",
|
|
10
|
+
"Anonymous poll": "익명 투표",
|
|
7
11
|
"Are you sure you want to permanently delete this message?": "이 메시지를 영구적으로 삭제하시겠습니까?",
|
|
8
12
|
"Are you sure?": "확실합니까?",
|
|
13
|
+
"Ask a question": "질문하기",
|
|
9
14
|
"Ban User": "사용자 차단",
|
|
10
15
|
"Block User": "사용자 차단",
|
|
11
16
|
"Cancel": "취소",
|
|
12
17
|
"Cannot Flag Message": "메세지를 플래그 할 수 없습니다",
|
|
13
18
|
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "당신의 댓글이 다른 사람들에게 어떤 영향을 줄지 고려하고 반드시 우리의 커뮤니티 가이드라인을 따르십시오",
|
|
14
19
|
"Copy Message": "메시지 복사",
|
|
20
|
+
"Create Poll": "투표 생성",
|
|
15
21
|
"Delete": "삭제",
|
|
16
22
|
"Delete Message": "메시지 삭제",
|
|
17
23
|
"Device camera is used to take photos or videos.": "기기 카메라는 사진이나 동영상을 촬영하는 데 사용됩니다.",
|
|
@@ -22,6 +28,7 @@
|
|
|
22
28
|
"Editing Message": "메시지 편집중",
|
|
23
29
|
"Emoji matching": "이모티콘 매칭",
|
|
24
30
|
"Empty message...": "빈 메시지...",
|
|
31
|
+
"End Vote": "투표 종료",
|
|
25
32
|
"Error loading": "로드 오류",
|
|
26
33
|
"Error loading channel list...": "채널리스트 을로드하는 동안 오류가 발생했습니다...",
|
|
27
34
|
"Error loading messages for this channel...": "이 채널의 메시지를로드하는 동안 오류가 발생했습니다...",
|
|
@@ -41,9 +48,11 @@
|
|
|
41
48
|
"Loading threads...": "스레드 로딩 중...",
|
|
42
49
|
"Loading...": "로딩 중...",
|
|
43
50
|
"Maximum number of files reached": "최대 파일 수에 도달했습니다",
|
|
51
|
+
"Maximum votes per person": "사람당 최대 투표 수",
|
|
44
52
|
"Message Reactions": "메시지의 리액션",
|
|
45
53
|
"Message deleted": "메시지가 삭제되었습니다.",
|
|
46
54
|
"Message flagged": "메시지에 플래그가 지정되었습니다",
|
|
55
|
+
"Multiple answers": "다중 답변",
|
|
47
56
|
"Mute User": "사용자를 음소거",
|
|
48
57
|
"No chats here yet…": "아직 여기에 채팅이 없어요…",
|
|
49
58
|
"No threads here yet": "아직 스레드가 없습니다",
|
|
@@ -52,6 +61,8 @@
|
|
|
52
61
|
"Ok": "확인",
|
|
53
62
|
"Only visible to you": "당신만 볼 수 있습니다",
|
|
54
63
|
"Open Settings": "설정 열기",
|
|
64
|
+
"Option": "옵션",
|
|
65
|
+
"Options": "옵션",
|
|
55
66
|
"Photo": "사진",
|
|
56
67
|
"Photos and Videos": "사진과 동영상",
|
|
57
68
|
"Pin to Conversation": "대화에 고정합니다",
|
|
@@ -59,28 +70,48 @@
|
|
|
59
70
|
"Please allow Audio permissions in settings.": "설정에서 오디오 권한을 허용해주세요.",
|
|
60
71
|
"Please enable access to your photos and videos so you can share them.": "사진 및 비디오에 대한 액세스를 사용하여 공유 할 수 있도록합니다.",
|
|
61
72
|
"Please select a channel first": "먼저 채널을 선택하십시오",
|
|
73
|
+
"Poll Comments": "투표 댓글",
|
|
74
|
+
"Poll Options": "투표 옵션",
|
|
75
|
+
"Poll Results": "투표 결과",
|
|
76
|
+
"Questions": "질문",
|
|
62
77
|
"Reconnecting...": "다시 연결 중...",
|
|
63
78
|
"Reply": "답장",
|
|
64
79
|
"Reply to Message": "메시지에 답장",
|
|
65
80
|
"Resend": "재전송",
|
|
81
|
+
"SEND": "보내기",
|
|
66
82
|
"Search GIFs": "GIF의 검색",
|
|
83
|
+
"See all {{count}} options_one": "모든 {{count}} 옵션 보기",
|
|
84
|
+
"See all {{count}} options_other": "모든 {{count}} 옵션 보기",
|
|
67
85
|
"Select More Photos": "추가 사진 선택",
|
|
86
|
+
"Select one": "하나 선택",
|
|
87
|
+
"Select one or more": "하나 이상 선택",
|
|
88
|
+
"Select up to {{count}}_one": "{{count}}까지 선택",
|
|
89
|
+
"Select up to {{count}}_other": "{{count}}까지 선택",
|
|
68
90
|
"Send Anyway": "그래도 보내기",
|
|
69
91
|
"Send a message": "메세지를 보내다",
|
|
70
92
|
"Sending links is not allowed in this conversation": "이 대화에서는 링크 기능을 사용할 수 없습니다",
|
|
93
|
+
"Show All": "모두 보기",
|
|
71
94
|
"Slow mode ON": "슬로모드 켜짐",
|
|
95
|
+
"Suggest an option": "옵션 제안",
|
|
72
96
|
"The message has been reported to a moderator.": "메시지는 운영자에보고되었습니다.",
|
|
73
97
|
"The source message was deleted": "원본 메시지가 삭제되었습니다",
|
|
98
|
+
"This is already an option": "이미 존재하는 옵션입니다",
|
|
74
99
|
"This reply was deleted": "이 답글은 삭제되었습니다",
|
|
75
100
|
"Thread Reply": "스레드\u3000답장",
|
|
101
|
+
"Type a number from 2 to 10": "2에서 10 사이의 숫자를 입력하세요",
|
|
76
102
|
"Unban User": "사용자 차단 해제",
|
|
77
103
|
"Unblock User": "사용자 차단 해제",
|
|
78
104
|
"Unknown User": "알 수없는 사용자",
|
|
79
105
|
"Unmute User": "사용자 음소거 해제",
|
|
80
106
|
"Unpin from Conversation": "대화의 핀을 분리합니다",
|
|
81
107
|
"Unread Messages": "읽지 않은 메시지",
|
|
108
|
+
"Update your comment": "댓글 수정",
|
|
82
109
|
"Video": "동영상",
|
|
110
|
+
"View Results": "결과 보기",
|
|
111
|
+
"View {{count}} comments_one": "{{count}}개의 댓글 보기",
|
|
112
|
+
"View {{count}} comments_other": "{{count}}개의 댓글 보기",
|
|
83
113
|
"Voice message": "음성 메시지",
|
|
114
|
+
"Vote ended": "투표 종료됨",
|
|
84
115
|
"You": "당신",
|
|
85
116
|
"You can't send messages in this channel": "이 채널에서는 메세지를 전송할 수 없습니다",
|
|
86
117
|
"replied to": "에 답장했습니다",
|
|
@@ -90,6 +121,7 @@
|
|
|
90
121
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
91
122
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
92
123
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
124
|
+
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
93
125
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
94
126
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
95
127
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} 외 {{ nonSelfUserLength }}명이 입력 중입니다",
|
|
@@ -97,5 +129,7 @@
|
|
|
97
129
|
"{{ replyCount }} Replies": "{{ replyCount }} 답글",
|
|
98
130
|
"{{ replyCount }} Thread Replies": "{{ replyCount }}\u3000스레드\u3000답글",
|
|
99
131
|
"{{ user }} is typing": "{{ user }} 타이핑 중",
|
|
132
|
+
"{{count}} votes_one": "{{count}} 표",
|
|
133
|
+
"{{count}} votes_other": "{{count}} 표",
|
|
100
134
|
"🏙 Attachment...": "🏙 부착..."
|
|
101
135
|
}
|
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Antwoord",
|
|
3
3
|
"1 Thread Reply": "1 thread antwoord",
|
|
4
|
+
"Add a comment": "Voeg een reactie toe",
|
|
5
|
+
"Add an option": "Voeg een optie toe",
|
|
4
6
|
"Allow access to your Gallery": "Geef toegang tot uw galerij",
|
|
5
7
|
"Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
|
|
6
8
|
"Also send to channel": "Stuur ook naar kanaal",
|
|
9
|
+
"Anonymous": "Anoniem",
|
|
10
|
+
"Anonymous poll": "Anonieme peiling",
|
|
7
11
|
"Are you sure you want to permanently delete this message?": "Weet u zeker dat u dit bericht definitief wilt verwijderen?",
|
|
8
12
|
"Are you sure?": "Weet je het zeker?",
|
|
13
|
+
"Ask a question": "Stel een vraag",
|
|
9
14
|
"Ban User": "Gebruiker Verbannen",
|
|
10
15
|
"Block User": "Blokkeer Gebruiker",
|
|
11
16
|
"Cancel": "Annuleer",
|
|
12
17
|
"Cannot Flag Message": "Kan bericht niet rapporteren",
|
|
13
18
|
"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",
|
|
14
19
|
"Copy Message": "Bericht kopiëren",
|
|
20
|
+
"Create Poll": "Peiling aanmaken",
|
|
15
21
|
"Delete": "Verwijderen",
|
|
16
22
|
"Delete Message": "Verwijder bericht",
|
|
17
23
|
"Device camera is used to take photos or videos.": "De camera van het apparaat wordt gebruikt om foto's of video's te maken.",
|
|
@@ -22,6 +28,7 @@
|
|
|
22
28
|
"Editing Message": "Bericht aanpassen",
|
|
23
29
|
"Emoji matching": "Emoji-overeenkomsten",
|
|
24
30
|
"Empty message...": "Leeg bericht...",
|
|
31
|
+
"End Vote": "Einde stemronde",
|
|
25
32
|
"Error loading": "Probleem bij het laden",
|
|
26
33
|
"Error loading channel list...": "Probleem bij het laden van de kanalen...",
|
|
27
34
|
"Error loading messages for this channel...": "Probleem bij het laden van de berichten in dit kanaal...",
|
|
@@ -41,9 +48,11 @@
|
|
|
41
48
|
"Loading threads...": "Threads laden...",
|
|
42
49
|
"Loading...": "Aan het laden...",
|
|
43
50
|
"Maximum number of files reached": "Maximaal aantal bestanden bereikt",
|
|
51
|
+
"Maximum votes per person": "Maximaal aantal stemmen per persoon",
|
|
44
52
|
"Message Reactions": "Bericht Reacties",
|
|
45
53
|
"Message deleted": "Bericht verwijderd",
|
|
46
54
|
"Message flagged": "Bericht gemarkeerd",
|
|
55
|
+
"Multiple answers": "Meerdere antwoorden",
|
|
47
56
|
"Mute User": "Gebruiker dempen",
|
|
48
57
|
"No chats here yet…": "Nog geen chats hier…",
|
|
49
58
|
"No threads here yet": "Hier zijn nog geen threads",
|
|
@@ -52,6 +61,8 @@
|
|
|
52
61
|
"Ok": "Oké",
|
|
53
62
|
"Only visible to you": "Alleen zichtbaar voor jou",
|
|
54
63
|
"Open Settings": "Open instellingen",
|
|
64
|
+
"Option": "Optie",
|
|
65
|
+
"Options": "Opties",
|
|
55
66
|
"Photo": "Foto",
|
|
56
67
|
"Photos and Videos": "Foto's en video's",
|
|
57
68
|
"Pin to Conversation": "Vastmaken aan gesprek",
|
|
@@ -59,28 +70,48 @@
|
|
|
59
70
|
"Please allow Audio permissions in settings.": "Gelieve audio toestemmingen toe te staan in de instellingen.",
|
|
60
71
|
"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.",
|
|
61
72
|
"Please select a channel first": "Selecteer eerst een kanaal",
|
|
73
|
+
"Poll Comments": "Peiling reacties",
|
|
74
|
+
"Poll Options": "Peiling opties",
|
|
75
|
+
"Poll Results": "Peiling resultaten",
|
|
76
|
+
"Questions": "Vragen",
|
|
62
77
|
"Reconnecting...": "Opnieuw Verbinding Maken...",
|
|
63
78
|
"Reply": "Antwoord",
|
|
64
79
|
"Reply to Message": "Beantwoord bericht",
|
|
65
80
|
"Resend": "Opnieuw versturen",
|
|
81
|
+
"SEND": "VERZENDEN",
|
|
66
82
|
"Search GIFs": "Zoek GIF's",
|
|
83
|
+
"See all {{count}} options_one": "Bekijk alle {{count}} opties",
|
|
84
|
+
"See all {{count}} options_other": "Bekijk alle {{count}} opties",
|
|
67
85
|
"Select More Photos": "Selecteer Meer foto's",
|
|
86
|
+
"Select one": "Kies één",
|
|
87
|
+
"Select one or more": "Kies één of meer",
|
|
88
|
+
"Select up to {{count}}_one": "Kies tot {{count}}",
|
|
89
|
+
"Select up to {{count}}_other": "Kies tot {{count}}",
|
|
68
90
|
"Send Anyway": "Toch verzenden",
|
|
69
91
|
"Send a message": "Stuur een bericht",
|
|
70
92
|
"Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
|
|
93
|
+
"Show All": "Alles weergeven",
|
|
71
94
|
"Slow mode ON": "Langzame modus aan",
|
|
95
|
+
"Suggest an option": "Stel een optie voor",
|
|
72
96
|
"The message has been reported to a moderator.": "Het bericht is gerapporteerd aan een moderator.",
|
|
73
97
|
"The source message was deleted": "Het oorspronkelijke bericht is verwijderd",
|
|
98
|
+
"This is already an option": "Dit is al een optie",
|
|
74
99
|
"This reply was deleted": "Deze reactie is verwijderd",
|
|
75
100
|
"Thread Reply": "Discussie beantwoorden",
|
|
101
|
+
"Type a number from 2 to 10": "Typ een getal van 2 tot 10",
|
|
76
102
|
"Unban User": "Gebruiker Deblokeren",
|
|
77
103
|
"Unblock User": "Deblokkeer gebruiker",
|
|
78
104
|
"Unknown User": "Onbekende gebruiker",
|
|
79
105
|
"Unmute User": "Dempen van gebruiker opheffen",
|
|
80
106
|
"Unpin from Conversation": "Losmaken van gesprek",
|
|
81
107
|
"Unread Messages": "Ongelezen Berichten",
|
|
108
|
+
"Update your comment": "Werk je reactie bij",
|
|
82
109
|
"Video": "Video",
|
|
110
|
+
"View Results": "Bekijk resultaten",
|
|
111
|
+
"View {{count}} comments_one": "Bekijk {{count}} reactie",
|
|
112
|
+
"View {{count}} comments_other": "Bekijk {{count}} reacties",
|
|
83
113
|
"Voice message": "Spraakbericht",
|
|
114
|
+
"Vote ended": "Stemmen beëindigd",
|
|
84
115
|
"You": "U",
|
|
85
116
|
"You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
|
|
86
117
|
"replied to": "reageerde op",
|
|
@@ -90,6 +121,7 @@
|
|
|
90
121
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
91
122
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
92
123
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
124
|
+
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Gisteren]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Morgen]\",\"nextWeek\":\"dddd [om] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
93
125
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
94
126
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Gisteren]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Morgen]\",\"nextWeek\":\"dddd [om] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
95
127
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
|
|
@@ -97,5 +129,7 @@
|
|
|
97
129
|
"{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
|
|
98
130
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
|
|
99
131
|
"{{ user }} is typing": "{{ user }} is aan het typen",
|
|
132
|
+
"{{count}} votes_one": "{{count}} stem",
|
|
133
|
+
"{{count}} votes_other": "{{count}} stemmen",
|
|
100
134
|
"🏙 Attachment...": "🏙 Bijlage..."
|
|
101
135
|
}
|
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Resposta",
|
|
3
3
|
"1 Thread Reply": "1 Resposta de Thread",
|
|
4
|
+
"Add a comment": "Adicionar um comentário",
|
|
5
|
+
"Add an option": "Adicionar uma opção",
|
|
4
6
|
"Allow access to your Gallery": "Permitir acesso à sua Galeria",
|
|
5
7
|
"Allow camera access in device settings": "Permitir acesso à câmera nas configurações do dispositivo",
|
|
6
8
|
"Also send to channel": "Também enviar para o canal",
|
|
9
|
+
"Anonymous": "Anônimo",
|
|
10
|
+
"Anonymous poll": "Enquete anônima",
|
|
7
11
|
"Are you sure you want to permanently delete this message?": "Tem certeza de que deseja excluir esta mensagem permanentemente?",
|
|
8
12
|
"Are you sure?": "Tem certeza?",
|
|
13
|
+
"Ask a question": "Fazer uma pergunta",
|
|
9
14
|
"Ban User": "Banir Usuário",
|
|
10
15
|
"Block User": "Bloquear Usuário",
|
|
11
16
|
"Cancel": "Cancelar",
|
|
12
17
|
"Cannot Flag Message": "Não é possível reportar a mensagem",
|
|
13
18
|
"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",
|
|
14
19
|
"Copy Message": "Copiar Mensagem",
|
|
20
|
+
"Create Poll": "Criar enquete",
|
|
15
21
|
"Delete": "Excluir",
|
|
16
22
|
"Delete Message": "Excluir Mensagem",
|
|
17
23
|
"Device camera is used to take photos or videos.": "A câmera do dispositivo é usada para tirar fotos ou vídeos.",
|
|
@@ -22,6 +28,7 @@
|
|
|
22
28
|
"Editing Message": "Editando Mensagem",
|
|
23
29
|
"Emoji matching": "Correspondência de Emoji",
|
|
24
30
|
"Empty message...": "Mensagem vazia...",
|
|
31
|
+
"End Vote": "Encerrar votação",
|
|
25
32
|
"Error loading": "Erro ao carregar",
|
|
26
33
|
"Error loading channel list...": "Erro ao carregar lista de canais...",
|
|
27
34
|
"Error loading messages for this channel...": "Erro ao carregar mensagens para este canal...",
|
|
@@ -41,9 +48,11 @@
|
|
|
41
48
|
"Loading threads...": "Carregando tópicos...",
|
|
42
49
|
"Loading...": "Carregando...",
|
|
43
50
|
"Maximum number of files reached": "Número máximo de arquivos atingido",
|
|
51
|
+
"Maximum votes per person": "Máximo de votos por pessoa",
|
|
44
52
|
"Message Reactions": "Reações à Mensagem",
|
|
45
53
|
"Message deleted": "Mensagem excluída",
|
|
46
54
|
"Message flagged": "Mensagem sinalizada",
|
|
55
|
+
"Multiple answers": "Múltiplas respostas",
|
|
47
56
|
"Mute User": "Silenciar Usuário",
|
|
48
57
|
"No chats here yet…": "Ainda não há chats aqui...",
|
|
49
58
|
"No threads here yet": "Ainda não há tópicos aqui",
|
|
@@ -52,6 +61,8 @@
|
|
|
52
61
|
"Ok": "Ok",
|
|
53
62
|
"Only visible to you": "Apenas visível para você",
|
|
54
63
|
"Open Settings": "Abrir Configurações",
|
|
64
|
+
"Option": "Opção",
|
|
65
|
+
"Options": "Opções",
|
|
55
66
|
"Photo": "Foto",
|
|
56
67
|
"Photos and Videos": "Fotos e Vídeos",
|
|
57
68
|
"Pin to Conversation": "Fixar na Conversa",
|
|
@@ -59,28 +70,51 @@
|
|
|
59
70
|
"Please allow Audio permissions in settings.": "Por favor, permita as permissões de áudio nas configurações.",
|
|
60
71
|
"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.",
|
|
61
72
|
"Please select a channel first": "Por favor, selecione um canal primeiro",
|
|
73
|
+
"Poll Comments": "Comentários da enquete",
|
|
74
|
+
"Poll Options": "Opções da enquete",
|
|
75
|
+
"Poll Results": "Resultados da enquete",
|
|
76
|
+
"Questions": "Perguntas",
|
|
62
77
|
"Reconnecting...": "Reconectando...",
|
|
63
78
|
"Reply": "Responder",
|
|
64
79
|
"Reply to Message": "Responder à Mensagem",
|
|
65
80
|
"Resend": "Reenviar",
|
|
81
|
+
"SEND": "ENVIAR",
|
|
66
82
|
"Search GIFs": "Pesquisar GIFs",
|
|
83
|
+
"See all {{count}} options_many": "Ver todas as {{count}} opções",
|
|
84
|
+
"See all {{count}} options_one": "Ver todas as {{count}} opções",
|
|
85
|
+
"See all {{count}} options_other": "Ver todas as {{count}} opções",
|
|
67
86
|
"Select More Photos": "Selecionar Mais Fotos",
|
|
87
|
+
"Select one": "Selecione uma",
|
|
88
|
+
"Select one or more": "Selecione uma ou mais",
|
|
89
|
+
"Select up to {{count}}_many": "Selecione até {{count}}",
|
|
90
|
+
"Select up to {{count}}_one": "Selecione até {{count}}",
|
|
91
|
+
"Select up to {{count}}_other": "Selecione até {{count}}",
|
|
68
92
|
"Send Anyway": "Enviar de qualquer maneira",
|
|
69
93
|
"Send a message": "Enviar uma mensagem",
|
|
70
94
|
"Sending links is not allowed in this conversation": "Não é permitido enviar links nesta conversa",
|
|
95
|
+
"Show All": "Mostrar tudo",
|
|
71
96
|
"Slow mode ON": "Modo Lento ATIVADO",
|
|
97
|
+
"Suggest an option": "Sugerir uma opção",
|
|
72
98
|
"The message has been reported to a moderator.": "A mensagem foi relatada a um moderador.",
|
|
73
99
|
"The source message was deleted": "A mensagem original foi excluída",
|
|
100
|
+
"This is already an option": "Isso já é uma opção",
|
|
74
101
|
"This reply was deleted": "Esta resposta foi excluída",
|
|
75
102
|
"Thread Reply": "Respostas de Tópico",
|
|
103
|
+
"Type a number from 2 to 10": "Digite um número de 2 a 10",
|
|
76
104
|
"Unban User": "Desbanir Usuário",
|
|
77
105
|
"Unblock User": "Desbloquear Usuário",
|
|
78
106
|
"Unknown User": "Usuário Desconhecido",
|
|
79
107
|
"Unmute User": "Remover usuário do modo silencioso",
|
|
80
108
|
"Unpin from Conversation": "Desmarcar como fixado na conversa",
|
|
81
109
|
"Unread Messages": "Mensagens não lidas",
|
|
110
|
+
"Update your comment": "Atualize seu comentário",
|
|
82
111
|
"Video": "Vídeo",
|
|
112
|
+
"View Results": "Ver resultados",
|
|
113
|
+
"View {{count}} comments_many": "Ver {{count}} comentários",
|
|
114
|
+
"View {{count}} comments_one": "Ver {{count}} comentário",
|
|
115
|
+
"View {{count}} comments_other": "Ver {{count}} comentários",
|
|
83
116
|
"Voice message": "Mensagem de voz",
|
|
117
|
+
"Vote ended": "Votação encerrada",
|
|
84
118
|
"You": "Você",
|
|
85
119
|
"You can't send messages in this channel": "Você não pode enviar mensagens neste canal",
|
|
86
120
|
"replied to": "respondeu a",
|
|
@@ -90,6 +124,7 @@
|
|
|
90
124
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
91
125
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
92
126
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
127
|
+
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ontem]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Amanhã]\",\"nextWeek\":\"dddd [às] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
93
128
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
94
129
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ontem]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Amanhã]\",\"nextWeek\":\"dddd [às] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
95
130
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e mais {{ nonSelfUserLength }} pessoa(s) estão digitando",
|
|
@@ -97,5 +132,8 @@
|
|
|
97
132
|
"{{ replyCount }} Replies": "{{ replyCount }} Respostas",
|
|
98
133
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} Respostas de Thread",
|
|
99
134
|
"{{ user }} is typing": "{{ user }} está digitando",
|
|
135
|
+
"{{count}} votes_many": "{{count}} votos",
|
|
136
|
+
"{{count}} votes_one": "{{count}} voto",
|
|
137
|
+
"{{count}} votes_other": "{{count}} votos",
|
|
100
138
|
"🏙 Attachment...": "🏙 Anexo..."
|
|
101
139
|
}
|
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Ответ",
|
|
3
3
|
"1 Thread Reply": "1 тема Ответить",
|
|
4
|
+
"Add a comment": "Добавить комментарий",
|
|
5
|
+
"Add an option": "Добавить вариант",
|
|
4
6
|
"Allow access to your Gallery": "Разрешить доступ к вашей галерее",
|
|
5
7
|
"Allow camera access in device settings": "Разрешите доступ к камере в настройках устройства.",
|
|
6
8
|
"Also send to channel": "Также отправить на канал",
|
|
9
|
+
"Anonymous": "Анонимный",
|
|
10
|
+
"Anonymous poll": "Анонимный опрос",
|
|
7
11
|
"Are you sure you want to permanently delete this message?": "Вы действительно хотите удалить это сообщение без возможности восстановления?",
|
|
8
12
|
"Are you sure?": "Вы уверены?",
|
|
13
|
+
"Ask a question": "Задайте вопрос",
|
|
9
14
|
"Ban User": "Заблокировать Пользователя",
|
|
10
15
|
"Block User": "Заблокировать пользователя",
|
|
11
16
|
"Cancel": "Отмена",
|
|
12
17
|
"Cannot Flag Message": "Невозможно пожаловаться на сообщение",
|
|
13
18
|
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Обдумайте, как ваш комментарий может повлиять на других, и убедитесь, что вы следуете нашим правилам сообщества",
|
|
14
19
|
"Copy Message": "Копировать сообщение",
|
|
20
|
+
"Create Poll": "Создать опрос",
|
|
15
21
|
"Delete": "удалять",
|
|
16
22
|
"Delete Message": "Удалить сообщение",
|
|
17
23
|
"Device camera is used to take photos or videos.": "Камера устройства используется для съемки фотографий или видео.",
|
|
@@ -22,6 +28,7 @@
|
|
|
22
28
|
"Editing Message": "Редактирование сообщения",
|
|
23
29
|
"Emoji matching": "Соответствие эмодзи",
|
|
24
30
|
"Empty message...": "Пустое сообщение...",
|
|
31
|
+
"End Vote": "Завершить голосование",
|
|
25
32
|
"Error loading": "Ошибка при загрузке",
|
|
26
33
|
"Error loading channel list...": "Ошибка загрузки списка каналов...",
|
|
27
34
|
"Error loading messages for this channel...": "Ошибка загрузки сообщений для этого канала...",
|
|
@@ -41,9 +48,11 @@
|
|
|
41
48
|
"Loading threads...": "Загрузка потоков...",
|
|
42
49
|
"Loading...": "Загружаю...",
|
|
43
50
|
"Maximum number of files reached": "Достигнуто максимальное количество файлов",
|
|
51
|
+
"Maximum votes per person": "Максимальное количество голосов на человека",
|
|
44
52
|
"Message Reactions": "Сообщения Реакции",
|
|
45
53
|
"Message deleted": "Сообщение удалено",
|
|
46
54
|
"Message flagged": "Сообщение отмечено",
|
|
55
|
+
"Multiple answers": "Несколько ответов",
|
|
47
56
|
"Mute User": "Отключить пользователя",
|
|
48
57
|
"No chats here yet…": "Здесь пока нет чатов…",
|
|
49
58
|
"No threads here yet": "Здесь пока нет потоков",
|
|
@@ -52,6 +61,8 @@
|
|
|
52
61
|
"Ok": "Oк",
|
|
53
62
|
"Only visible to you": "Видно только вам",
|
|
54
63
|
"Open Settings": "Открыть настройки",
|
|
64
|
+
"Option": "Вариант",
|
|
65
|
+
"Options": "Варианты",
|
|
55
66
|
"Photo": "Фото",
|
|
56
67
|
"Photos and Videos": "Фото и видео",
|
|
57
68
|
"Pin to Conversation": "Закрепить к беседе",
|
|
@@ -59,28 +70,54 @@
|
|
|
59
70
|
"Please allow Audio permissions in settings.": "Пожалуйста, разрешите разрешения на аудио в настройках.",
|
|
60
71
|
"Please enable access to your photos and videos so you can share them.": "Разрешите доступ к своим фотографиям и видео, чтобы вы могли ими поделиться.",
|
|
61
72
|
"Please select a channel first": "Пожалуйста, сначала выберите канал",
|
|
73
|
+
"Poll Comments": "Комментарии к опросу",
|
|
74
|
+
"Poll Options": "Варианты опроса",
|
|
75
|
+
"Poll Results": "Результаты опроса",
|
|
76
|
+
"Questions": "Вопросы",
|
|
62
77
|
"Reconnecting...": "Переподключение...",
|
|
63
78
|
"Reply": "Ответить",
|
|
64
79
|
"Reply to Message": "Ответить на сообщение",
|
|
65
80
|
"Resend": "Отправить",
|
|
81
|
+
"SEND": "ОТПРАВИТЬ",
|
|
66
82
|
"Search GIFs": "Поиск GIF",
|
|
83
|
+
"See all {{count}} options_few": "Посмотреть все {{count}} вариантов",
|
|
84
|
+
"See all {{count}} options_many": "Посмотреть все {{count}} вариантов",
|
|
85
|
+
"See all {{count}} options_one": "Посмотреть все {{count}} вариант",
|
|
86
|
+
"See all {{count}} options_other": "Посмотреть все {{count}} вариантов",
|
|
67
87
|
"Select More Photos": "Выбрать больше фотографий",
|
|
88
|
+
"Select one": "Выберите один",
|
|
89
|
+
"Select one or more": "Выберите один или несколько",
|
|
90
|
+
"Select up to {{count}}_few": "Выберите до {{count}}",
|
|
91
|
+
"Select up to {{count}}_many": "Выберите до {{count}}",
|
|
92
|
+
"Select up to {{count}}_one": "Выберите до {{count}}",
|
|
93
|
+
"Select up to {{count}}_other": "Выберите до {{count}}",
|
|
68
94
|
"Send Anyway": "Всё равно отправить",
|
|
69
95
|
"Send a message": "Отправить сообщение",
|
|
70
96
|
"Sending links is not allowed in this conversation": "Отправка ссылок недоступна в этом чате",
|
|
97
|
+
"Show All": "Показать все",
|
|
71
98
|
"Slow mode ON": "Медленный режим включен",
|
|
99
|
+
"Suggest an option": "Предложить вариант",
|
|
72
100
|
"The message has been reported to a moderator.": "Сообщение отправлено модератору.",
|
|
73
101
|
"The source message was deleted": "Исходное сообщение было удалено",
|
|
102
|
+
"This is already an option": "Это уже вариант",
|
|
74
103
|
"This reply was deleted": "Этот ответ был удалён",
|
|
75
104
|
"Thread Reply": "Тема Ответить",
|
|
105
|
+
"Type a number from 2 to 10": "Введите число от 2 до 10",
|
|
76
106
|
"Unban User": "Разблокировать Пользователя",
|
|
77
107
|
"Unblock User": "Разблокировать пользователя",
|
|
78
108
|
"Unknown User": "Неизвестный пользователь",
|
|
79
109
|
"Unmute User": "Включить микрофон",
|
|
80
110
|
"Unpin from Conversation": "Открепить от беседы",
|
|
81
111
|
"Unread Messages": "Непрочитанные Сообщения",
|
|
112
|
+
"Update your comment": "Обновить ваш комментарий",
|
|
82
113
|
"Video": "видео",
|
|
114
|
+
"View Results": "Посмотреть результаты",
|
|
115
|
+
"View {{count}} comments_few": "Посмотреть {{count}} комментария",
|
|
116
|
+
"View {{count}} comments_many": "Посмотреть {{count}} комментария",
|
|
117
|
+
"View {{count}} comments_one": "Посмотреть {{count}} комментарий",
|
|
118
|
+
"View {{count}} comments_other": "Посмотреть {{count}} комментария",
|
|
83
119
|
"Voice message": "Голосовое сообщение",
|
|
120
|
+
"Vote ended": "Голосование завершено",
|
|
84
121
|
"You": "Вы",
|
|
85
122
|
"You can't send messages in this channel": "Вы не можете отправлять сообщения в этот канал",
|
|
86
123
|
"replied to": "ответил на",
|
|
@@ -90,6 +127,7 @@
|
|
|
90
127
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
91
128
|
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
92
129
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
130
|
+
"timestamp/PollVote": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Вчера]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Завтра]\",\"nextWeek\":\"dddd [в] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
93
131
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
94
132
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Вчера]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Завтра]\",\"nextWeek\":\"dddd [в] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
95
133
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} и еще {{ nonSelfUserLength }} пишут",
|
|
@@ -97,5 +135,9 @@
|
|
|
97
135
|
"{{ replyCount }} Replies": "{{ replyCount }} Ответов",
|
|
98
136
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Ответы в темах",
|
|
99
137
|
"{{ user }} is typing": "{{ user }} пишет",
|
|
138
|
+
"{{count}} votes_few": "{{count}} голосов",
|
|
139
|
+
"{{count}} votes_many": "{{count}} голосов",
|
|
140
|
+
"{{count}} votes_one": "{{count}} голос",
|
|
141
|
+
"{{count}} votes_other": "{{count}} голосов",
|
|
100
142
|
"🏙 Attachment...": "🏙 Вложение..."
|
|
101
143
|
}
|