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
package/lib/module/i18n/es.json
CHANGED
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 respuesta",
|
|
3
3
|
"1 Thread Reply": "1 respuesta de hilo",
|
|
4
|
+
"Add a comment": "Agregar un comentario",
|
|
5
|
+
"Add an option": "Agregar una opción",
|
|
4
6
|
"Allow access to your Gallery": "Permitir acceso a tu galería",
|
|
5
7
|
"Allow camera access in device settings": "Permitir el acceso a la cámara en la configuración del dispositivo",
|
|
6
8
|
"Also send to channel": "También enviar al canal",
|
|
9
|
+
"Anonymous": "Anónimo",
|
|
10
|
+
"Anonymous poll": "Encuesta anónima",
|
|
7
11
|
"Are you sure you want to permanently delete this message?": "¿Estás seguro de que deseas eliminar permanentemente este mensaje?",
|
|
8
12
|
"Are you sure?": "¿Estás seguro?",
|
|
13
|
+
"Ask a question": "Hacer una pregunta",
|
|
9
14
|
"Ban User": "Bloquear Usuario",
|
|
10
15
|
"Block User": "Bloquear usuario",
|
|
11
16
|
"Cancel": "Cancelar",
|
|
12
17
|
"Cannot Flag Message": "No se puede reportar el mensaje",
|
|
13
18
|
"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",
|
|
14
19
|
"Copy Message": "Copiar mensaje",
|
|
20
|
+
"Create Poll": "Crear encuesta",
|
|
15
21
|
"Delete": "Eliminar",
|
|
16
22
|
"Delete Message": "Eliminar mensaje",
|
|
17
23
|
"Device camera is used to take photos or videos.": "La cámara del dispositivo se utiliza para tomar fotografías o vídeos.",
|
|
@@ -22,6 +28,7 @@
|
|
|
22
28
|
"Editing Message": "Editando mensaje",
|
|
23
29
|
"Emoji matching": "Coincidencia de emoji",
|
|
24
30
|
"Empty message...": "Mensaje vacío...",
|
|
31
|
+
"End Vote": "Finalizar votación",
|
|
25
32
|
"Error loading": "Error al cargar",
|
|
26
33
|
"Error loading channel list...": "Error al cargar la lista de canales...",
|
|
27
34
|
"Error loading messages for this channel...": "Error al cargar los mensajes de este canal...",
|
|
@@ -41,9 +48,11 @@
|
|
|
41
48
|
"Loading threads...": "Cargando hilos...",
|
|
42
49
|
"Loading...": "Cargando...",
|
|
43
50
|
"Maximum number of files reached": "Número máximo de archivos alcanzado",
|
|
51
|
+
"Maximum votes per person": "Máximo de votos por persona",
|
|
44
52
|
"Message Reactions": "Reacciones al mensaje",
|
|
45
53
|
"Message deleted": "Mensaje eliminado",
|
|
46
54
|
"Message flagged": "Mensaje reportado",
|
|
55
|
+
"Multiple answers": "Respuestas múltiples",
|
|
47
56
|
"Mute User": "Silenciar usuario",
|
|
48
57
|
"No chats here yet…": "No hay chats aquí todavía...",
|
|
49
58
|
"No threads here yet": "Aún no hay hilos aquí",
|
|
@@ -52,6 +61,8 @@
|
|
|
52
61
|
"Ok": "Aceptar",
|
|
53
62
|
"Only visible to you": "Solo visible para ti",
|
|
54
63
|
"Open Settings": "Configuración abierta",
|
|
64
|
+
"Option": "Opción",
|
|
65
|
+
"Options": "Opciones",
|
|
55
66
|
"Photo": "Foto",
|
|
56
67
|
"Photos and Videos": "Fotos y videos",
|
|
57
68
|
"Pin to Conversation": "Fijar a la conversación",
|
|
@@ -59,28 +70,51 @@
|
|
|
59
70
|
"Please allow Audio permissions in settings.": "Por favor, permita los permisos de audio en la configuración.",
|
|
60
71
|
"Please enable access to your photos and videos so you can share them.": "Por favor, habilita el acceso a tus fotos y videos para poder compartirlos.",
|
|
61
72
|
"Please select a channel first": "Por favor, selecciona primero un canal",
|
|
73
|
+
"Poll Comments": "Comentarios de la encuesta",
|
|
74
|
+
"Poll Options": "Opciones de la encuesta",
|
|
75
|
+
"Poll Results": "Resultados de la encuesta",
|
|
76
|
+
"Questions": "Preguntas",
|
|
62
77
|
"Reconnecting...": "Reconectando...",
|
|
63
78
|
"Reply": "Responder",
|
|
64
79
|
"Reply to Message": "Responder al mensaje",
|
|
65
80
|
"Resend": "Reenviar",
|
|
81
|
+
"SEND": "ENVIAR",
|
|
66
82
|
"Search GIFs": "Buscar GIFs",
|
|
83
|
+
"See all {{count}} options_many": "Ver las {{count}} opciones",
|
|
84
|
+
"See all {{count}} options_one": "Ver las {{count}} opciones",
|
|
85
|
+
"See all {{count}} options_other": "Ver las {{count}} opciones",
|
|
67
86
|
"Select More Photos": "Seleccionar más fotos",
|
|
87
|
+
"Select one": "Seleccionar una",
|
|
88
|
+
"Select one or more": "Seleccionar una o más",
|
|
89
|
+
"Select up to {{count}}_many": "Selecciona hasta {{count}}",
|
|
90
|
+
"Select up to {{count}}_one": "Selecciona hasta {{count}}",
|
|
91
|
+
"Select up to {{count}}_other": "Selecciona hasta {{count}}",
|
|
68
92
|
"Send Anyway": "Enviar de todos modos",
|
|
69
93
|
"Send a message": "Enviar un mensaje",
|
|
70
94
|
"Sending links is not allowed in this conversation": "No está permitido enviar enlaces en esta conversación",
|
|
95
|
+
"Show All": "Mostrar todo",
|
|
71
96
|
"Slow mode ON": "Modo lento ACTIVADO",
|
|
97
|
+
"Suggest an option": "Sugerir una opción",
|
|
72
98
|
"The message has been reported to a moderator.": "El mensaje ha sido reportado a un moderador.",
|
|
73
99
|
"The source message was deleted": "El mensaje original fue eliminado",
|
|
100
|
+
"This is already an option": "Esto ya es una opción",
|
|
74
101
|
"This reply was deleted": "Esta respuesta fue eliminada",
|
|
75
102
|
"Thread Reply": "Respuesta de hilo",
|
|
103
|
+
"Type a number from 2 to 10": "Escribe un número de 2 a 10",
|
|
76
104
|
"Unban User": "Desbloquear usuario",
|
|
77
105
|
"Unblock User": "Usuario desconocido",
|
|
78
106
|
"Unknown User": "Desbloquear Usuario",
|
|
79
107
|
"Unmute User": "Activar sonido del usuario",
|
|
80
108
|
"Unpin from Conversation": "Desmarcar de la conversación",
|
|
81
109
|
"Unread Messages": "Mensajes no leídos",
|
|
110
|
+
"Update your comment": "Actualizar tu comentario",
|
|
82
111
|
"Video": "Video",
|
|
112
|
+
"View Results": "Ver resultados",
|
|
113
|
+
"View {{count}} comments_many": "Ver {{count}} comentarios",
|
|
114
|
+
"View {{count}} comments_one": "Ver {{count}} comentario",
|
|
115
|
+
"View {{count}} comments_other": "Ver {{count}} comentarios",
|
|
83
116
|
"Voice message": "Mensaje de voz",
|
|
117
|
+
"Vote ended": "Votación finalizada",
|
|
84
118
|
"You": "Tú",
|
|
85
119
|
"You can't send messages in this channel": "No puedes enviar mensajes en este canal",
|
|
86
120
|
"replied to": "respondió 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\":\"[Ayer]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Mañana]\", \"nextWeek\":\"dddd [a las] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
93
128
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
94
129
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ayer]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Mañana]\", \"nextWeek\":\"dddd [a las] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
95
130
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} y {{ nonSelfUserLength }} más están escribiendo",
|
|
@@ -97,5 +132,8 @@
|
|
|
97
132
|
"{{ replyCount }} Replies": "{{ replyCount }} Respuestas",
|
|
98
133
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} respuestas de hilo",
|
|
99
134
|
"{{ user }} is typing": "{{ user }} está escribiendo",
|
|
135
|
+
"{{count}} votes_many": "{{count}} votos",
|
|
136
|
+
"{{count}} votes_one": "{{count}} voto",
|
|
137
|
+
"{{count}} votes_other": "{{count}} votos",
|
|
100
138
|
"🏙 Attachment...": "🏙 Adjunto..."
|
|
101
139
|
}
|
package/lib/module/i18n/fr.json
CHANGED
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Réponse",
|
|
3
3
|
"1 Thread Reply": "Réponse à 1 fil",
|
|
4
|
+
"Add a comment": "Ajouter un commentaire",
|
|
5
|
+
"Add an option": "Ajouter une option",
|
|
4
6
|
"Allow access to your Gallery": "Autoriser l'accès à votre galerie",
|
|
5
7
|
"Allow camera access in device settings": "Autoriser l'accès à la caméra dans les paramètres de l'appareil",
|
|
6
8
|
"Also send to channel": "Envoyer également à la chaîne",
|
|
9
|
+
"Anonymous": "Anonyme",
|
|
10
|
+
"Anonymous poll": "Sondage anonyme",
|
|
7
11
|
"Are you sure you want to permanently delete this message?": "Êtes-vous sûr de vouloir supprimer définitivement ce message?",
|
|
8
12
|
"Are you sure?": "Es-tu sûr ?",
|
|
13
|
+
"Ask a question": "Poser une question",
|
|
9
14
|
"Ban User": "Bannir Utilisateur",
|
|
10
15
|
"Block User": "Bloquer un utilisateur",
|
|
11
16
|
"Cancel": "Annuler",
|
|
12
17
|
"Cannot Flag Message": "Impossible de signaler le message",
|
|
13
18
|
"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",
|
|
14
19
|
"Copy Message": "Copier le message",
|
|
20
|
+
"Create Poll": "Créer un sondage",
|
|
15
21
|
"Delete": "Supprimer",
|
|
16
22
|
"Delete Message": "Supprimer un message",
|
|
17
23
|
"Device camera is used to take photos or videos.": "L'appareil photo de l'appareil est utilisé pour prendre des photos ou des vidéos.",
|
|
@@ -22,6 +28,7 @@
|
|
|
22
28
|
"Editing Message": "Édite un message",
|
|
23
29
|
"Emoji matching": "Correspondance Emoji",
|
|
24
30
|
"Empty message...": "Message vide...",
|
|
31
|
+
"End Vote": "Fin du vote",
|
|
25
32
|
"Error loading": "Erreur lors du chargement",
|
|
26
33
|
"Error loading channel list...": "Erreur lors du chargement de la liste de canaux...",
|
|
27
34
|
"Error loading messages for this channel...": "Erreur lors du chargement des messages de ce canal...",
|
|
@@ -41,9 +48,11 @@
|
|
|
41
48
|
"Loading threads...": "Chargement des fils...",
|
|
42
49
|
"Loading...": "Chargement...",
|
|
43
50
|
"Maximum number of files reached": "Nombre maximal de fichiers atteint",
|
|
51
|
+
"Maximum votes per person": "Maximum de votes par personne",
|
|
44
52
|
"Message Reactions": "Réactions aux messages",
|
|
45
53
|
"Message deleted": "Message supprimé",
|
|
46
54
|
"Message flagged": "Message signalé",
|
|
55
|
+
"Multiple answers": "Réponses multiples",
|
|
47
56
|
"Mute User": "Utilisateur muet",
|
|
48
57
|
"No chats here yet…": "Pas de discussions ici pour le moment…",
|
|
49
58
|
"No threads here yet": "Aucun fil ici pour le moment",
|
|
@@ -52,6 +61,8 @@
|
|
|
52
61
|
"Ok": "Ok",
|
|
53
62
|
"Only visible to you": "Seulement visible par vous",
|
|
54
63
|
"Open Settings": "Ouvrir les paramètres",
|
|
64
|
+
"Option": "Option",
|
|
65
|
+
"Options": "Options",
|
|
55
66
|
"Photo": "Photo",
|
|
56
67
|
"Photos and Videos": "Photos et vidéos",
|
|
57
68
|
"Pin to Conversation": "Épingler à la conversation",
|
|
@@ -59,28 +70,51 @@
|
|
|
59
70
|
"Please allow Audio permissions in settings.": "Veuillez autoriser les permissions audio dans les paramètres.",
|
|
60
71
|
"Please enable access to your photos and videos so you can share them.": "Veuillez autoriser l'accès à vos photos et vidéos afin de pouvoir les partager.",
|
|
61
72
|
"Please select a channel first": "Veuillez d'abord selectionnez un canal",
|
|
73
|
+
"Poll Comments": "Commentaires du sondage",
|
|
74
|
+
"Poll Options": "Options du sondage",
|
|
75
|
+
"Poll Results": "Résultats du sondage",
|
|
76
|
+
"Questions": "Questions",
|
|
62
77
|
"Reconnecting...": "Se Reconnecter...",
|
|
63
78
|
"Reply": "Répondre",
|
|
64
79
|
"Reply to Message": "Répondre au message",
|
|
65
80
|
"Resend": "Renvoyer",
|
|
81
|
+
"SEND": "ENVOYER",
|
|
66
82
|
"Search GIFs": "Rechercher des GIF",
|
|
83
|
+
"See all {{count}} options_many": "Voir les {{count}} options",
|
|
84
|
+
"See all {{count}} options_one": "Voir les {{count}} options",
|
|
85
|
+
"See all {{count}} options_other": "Voir les {{count}} options",
|
|
67
86
|
"Select More Photos": "Sélectionner plus de photos",
|
|
87
|
+
"Select one": "Sélectionner une",
|
|
88
|
+
"Select one or more": "Sélectionner une ou plusieurs",
|
|
89
|
+
"Select up to {{count}}_many": "Sélectionnez jusqu'à {{count}}",
|
|
90
|
+
"Select up to {{count}}_one": "Sélectionnez jusqu'à {{count}}",
|
|
91
|
+
"Select up to {{count}}_other": "Sélectionnez jusqu'à {{count}}",
|
|
68
92
|
"Send Anyway": "Envoyer quand même",
|
|
69
93
|
"Send a message": "Envoyer un message",
|
|
70
94
|
"Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
|
|
95
|
+
"Show All": "Afficher tout",
|
|
71
96
|
"Slow mode ON": "Mode lent activé",
|
|
97
|
+
"Suggest an option": "Suggérer une option",
|
|
72
98
|
"The message has been reported to a moderator.": "Le message a été signalé à un modérateur.",
|
|
73
99
|
"The source message was deleted": "Le message source a été supprimé",
|
|
100
|
+
"This is already an option": "C'est déjà une option",
|
|
74
101
|
"This reply was deleted": "Cette réponse a été supprimée",
|
|
75
102
|
"Thread Reply": "Réponse à la discussion",
|
|
103
|
+
"Type a number from 2 to 10": "Entrez un nombre de 2 à 10",
|
|
76
104
|
"Unban User": "Débannir Utilisateur",
|
|
77
105
|
"Unblock User": "Débloquer Utilisateur",
|
|
78
106
|
"Unknown User": "Utilisateur inconnu",
|
|
79
107
|
"Unmute User": "Activer le son de Utilisateur",
|
|
80
108
|
"Unpin from Conversation": "Décrocher de la conversation",
|
|
81
109
|
"Unread Messages": "Messages non lus",
|
|
110
|
+
"Update your comment": "Mettre à jour votre commentaire",
|
|
82
111
|
"Video": "Vidéo",
|
|
112
|
+
"View Results": "Voir les résultats",
|
|
113
|
+
"View {{count}} comments_many": "Voir {{count}} commentaires",
|
|
114
|
+
"View {{count}} comments_one": "Voir {{count}} commentaire",
|
|
115
|
+
"View {{count}} comments_other": "Voir {{count}} commentaires",
|
|
83
116
|
"Voice message": "Message vocal",
|
|
117
|
+
"Vote ended": "Vote terminé",
|
|
84
118
|
"You": "Toi",
|
|
85
119
|
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
86
120
|
"replied to": "a répondu à",
|
|
@@ -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\":\"[Hier]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Demain]\", \"nextWeek\":\"dddd [à] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
93
128
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
94
129
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Hier]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Demain]\", \"nextWeek\":\"dddd [à] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
95
130
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
|
|
@@ -97,5 +132,8 @@
|
|
|
97
132
|
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
|
98
133
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
|
|
99
134
|
"{{ user }} is typing": "{{ user }} est en train d'écrire",
|
|
135
|
+
"{{count}} votes_many": "{{count}} votes",
|
|
136
|
+
"{{count}} votes_one": "{{count}} vote",
|
|
137
|
+
"{{count}} votes_other": "{{count}} votes",
|
|
100
138
|
"🏙 Attachment...": "🏙 Pièce jointe..."
|
|
101
139
|
}
|
package/lib/module/i18n/he.json
CHANGED
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "תגובה אחת",
|
|
3
3
|
"1 Thread Reply": "תגובה אחת לשרשור",
|
|
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,51 @@
|
|
|
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": "חפש/י GIFs",
|
|
83
|
+
"See all {{count}} options_one": "הצג את כל {{count}} האפשרויות",
|
|
84
|
+
"See all {{count}} options_other": "הצג את כל {{count}} האפשרויות",
|
|
85
|
+
"See all {{count}} options_two": "הצג את כל {{count}} האפשרויות",
|
|
67
86
|
"Select More Photos": "בחר עוד תמונות",
|
|
87
|
+
"Select one": "בחר אחת",
|
|
88
|
+
"Select one or more": "בחר אחת או יותר",
|
|
89
|
+
"Select up to {{count}}_one": "בחר עד {{count}}",
|
|
90
|
+
"Select up to {{count}}_other": "בחר עד {{count}}",
|
|
91
|
+
"Select up to {{count}}_two": "בחר עד {{count}}",
|
|
68
92
|
"Send Anyway": "שלח בכל זאת",
|
|
69
93
|
"Send a message": "שלח/י הודעה",
|
|
70
94
|
"Sending links is not allowed in this conversation": "שליחת קישורים אינה מותרת בשיחה זו",
|
|
95
|
+
"Show All": "הצג הכל",
|
|
71
96
|
"Slow mode ON": "מצב איטי מופעל",
|
|
97
|
+
"Suggest an option": "הצע אפשרות",
|
|
72
98
|
"The message has been reported to a moderator.": "ההודעה דווחה למנהל",
|
|
73
99
|
"The source message was deleted": "ההודעה המקורית נמחקה",
|
|
100
|
+
"This is already an option": "זו כבר אפשרות קיימת",
|
|
74
101
|
"This reply was deleted": "התגובה הזו נמחקה",
|
|
75
102
|
"Thread Reply": "הגב/י בשרשור",
|
|
103
|
+
"Type a number from 2 to 10": "הקלד מספר בין 2 ל-10",
|
|
76
104
|
"Unban User": "לבטל חסימת משתמש",
|
|
77
105
|
"Unblock User": "בטל/י חסימת משתמש",
|
|
78
106
|
"Unknown User": "משתמש לא ידוע",
|
|
79
107
|
"Unmute User": "בטל/י השתקת משתמש",
|
|
80
108
|
"Unpin from Conversation": "בטל/י הצמדה לשיחה",
|
|
81
109
|
"Unread Messages": "הודעות שטרם נקרו",
|
|
110
|
+
"Update your comment": "עדכן את התגובה שלך",
|
|
82
111
|
"Video": "וִידֵאוֹ",
|
|
112
|
+
"View Results": "הצג תוצאות",
|
|
113
|
+
"View {{count}} comments_one": "הצג {{count}} תגובה",
|
|
114
|
+
"View {{count}} comments_other": "הצג {{count}} תגובות",
|
|
115
|
+
"View {{count}} comments_two": "הצג {{count}} תגובות",
|
|
83
116
|
"Voice message": "הודעת קול",
|
|
117
|
+
"Vote ended": "ההצבעה הסתיימה",
|
|
84
118
|
"You": "את/ה",
|
|
85
119
|
"You can't send messages in this channel": "את/ב לא יכול/ה לשלוח הודעות בשיחה זו",
|
|
86
120
|
"replied to": "הגיב ל",
|
|
@@ -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\":\"[אתמול]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[מחר]\",\"nextWeek\":\"dddd [בשעה] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
93
128
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
94
129
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[אתמול]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[מחר]\",\"nextWeek\":\"dddd [בשעה] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
95
130
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ו-{{ nonSelfUserLength }} משתמש/ים אחר/ים מקלידים",
|
|
@@ -97,5 +132,8 @@
|
|
|
97
132
|
"{{ replyCount }} Replies": "{{ replyCount }} תגובות",
|
|
98
133
|
"{{ replyCount }} Thread Replies": "{{ replyCount }} תגובות שרשור",
|
|
99
134
|
"{{ user }} is typing": "{{ user }} מקליד/ה",
|
|
135
|
+
"{{count}} votes_one": "{{count}} הצבעה",
|
|
136
|
+
"{{count}} votes_other": "{{count}} הצבעות",
|
|
137
|
+
"{{count}} votes_two": "{{count}} הצבעות",
|
|
100
138
|
"🏙 Attachment...": "🏙 קובץ מצורף..."
|
|
101
139
|
}
|
package/lib/module/i18n/hi.json
CHANGED
|
@@ -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": "ठीक",
|
|
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": "धागा जवाब",
|
|
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
|
}
|
package/lib/module/i18n/it.json
CHANGED
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Risposta",
|
|
3
3
|
"1 Thread Reply": "1 Risposta alla Discussione",
|
|
4
|
+
"Add a comment": "Aggiungi un commento",
|
|
5
|
+
"Add an option": "Aggiungi un'opzione",
|
|
4
6
|
"Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
|
|
5
7
|
"Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
|
|
6
8
|
"Also send to channel": "Invia anche al canale",
|
|
9
|
+
"Anonymous": "Anonimo",
|
|
10
|
+
"Anonymous poll": "Sondaggio anonimo",
|
|
7
11
|
"Are you sure you want to permanently delete this message?": "Sei sicuro di voler eliminare definitivamente questo messaggio?",
|
|
8
12
|
"Are you sure?": "Sei sicuro?",
|
|
13
|
+
"Ask a question": "Fai una domanda",
|
|
9
14
|
"Ban User": "Blocca Utente",
|
|
10
15
|
"Block User": "Blocca Utente",
|
|
11
16
|
"Cancel": "Annulla",
|
|
12
17
|
"Cannot Flag Message": "Impossibile Segnalare Messaggio",
|
|
13
18
|
"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",
|
|
14
19
|
"Copy Message": "Copia Messaggio",
|
|
20
|
+
"Create Poll": "Crea sondaggio",
|
|
15
21
|
"Delete": "Elimina",
|
|
16
22
|
"Delete Message": "Cancella il Messaggio",
|
|
17
23
|
"Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
|
|
@@ -22,6 +28,7 @@
|
|
|
22
28
|
"Editing Message": "Modificando il Messaggio",
|
|
23
29
|
"Emoji matching": "Abbinamento emoji",
|
|
24
30
|
"Empty message...": "Message vuoto...",
|
|
31
|
+
"End Vote": "Termina votazione",
|
|
25
32
|
"Error loading": "Errore di caricamento",
|
|
26
33
|
"Error loading channel list...": "Errore durante il caricamento della lista dei canali...",
|
|
27
34
|
"Error loading messages for this channel...": "Errore durante il caricamento dei messaggi per questo canale...",
|
|
@@ -41,9 +48,11 @@
|
|
|
41
48
|
"Loading threads...": "Caricamento dei thread...",
|
|
42
49
|
"Loading...": "Caricamento...",
|
|
43
50
|
"Maximum number of files reached": "Numero massimo di file raggiunto",
|
|
51
|
+
"Maximum votes per person": "Massimo voti per persona",
|
|
44
52
|
"Message Reactions": "Reazioni ai Messaggi",
|
|
45
53
|
"Message deleted": "Messaggio cancellato",
|
|
46
54
|
"Message flagged": "Messaggio contrassegnato",
|
|
55
|
+
"Multiple answers": "Risposte multiple",
|
|
47
56
|
"Mute User": "Utente Muto",
|
|
48
57
|
"No chats here yet…": "Non ci sono ancora chat qui...",
|
|
49
58
|
"No threads here yet": "Nessun thread qui ancora",
|
|
@@ -52,6 +61,8 @@
|
|
|
52
61
|
"Ok": "Ok",
|
|
53
62
|
"Only visible to you": "Visibile solo a te",
|
|
54
63
|
"Open Settings": "Apri Impostazioni",
|
|
64
|
+
"Option": "Opzione",
|
|
65
|
+
"Options": "Opzioni",
|
|
55
66
|
"Photo": "Foto",
|
|
56
67
|
"Photos and Videos": "Foto e Video",
|
|
57
68
|
"Pin to Conversation": "Metti in evidenza",
|
|
@@ -59,28 +70,51 @@
|
|
|
59
70
|
"Please allow Audio permissions in settings.": "Si prega di consentire le autorizzazioni audio nelle impostazioni.",
|
|
60
71
|
"Please enable access to your photos and videos so you can share them.": "Abilita l'accesso alle tue foto e ai tuoi video in modo da poterli condividere.",
|
|
61
72
|
"Please select a channel first": "Seleziona un canale",
|
|
73
|
+
"Poll Comments": "Commenti sul sondaggio",
|
|
74
|
+
"Poll Options": "Opzioni del sondaggio",
|
|
75
|
+
"Poll Results": "Risultati del sondaggio",
|
|
76
|
+
"Questions": "Domande",
|
|
62
77
|
"Reconnecting...": "Ricollegarsi...",
|
|
63
78
|
"Reply": "Rispondi",
|
|
64
79
|
"Reply to Message": "Rispondi al messaggio",
|
|
65
80
|
"Resend": "Invia di nuovo",
|
|
81
|
+
"SEND": "INVIA",
|
|
66
82
|
"Search GIFs": "Cerca GIF",
|
|
83
|
+
"See all {{count}} options_many": "Vedi tutte le {{count}} opzioni",
|
|
84
|
+
"See all {{count}} options_one": "Vedi tutte le {{count}} opzioni",
|
|
85
|
+
"See all {{count}} options_other": "Vedi tutte le {{count}} opzioni",
|
|
67
86
|
"Select More Photos": "Seleziona Altre foto",
|
|
87
|
+
"Select one": "Seleziona una",
|
|
88
|
+
"Select one or more": "Seleziona una o più",
|
|
89
|
+
"Select up to {{count}}_many": "Seleziona fino a {{count}}",
|
|
90
|
+
"Select up to {{count}}_one": "Seleziona fino a {{count}}",
|
|
91
|
+
"Select up to {{count}}_other": "Seleziona fino a {{count}}",
|
|
68
92
|
"Send Anyway": "Invia comunque",
|
|
69
93
|
"Send a message": "Mandare un messaggio",
|
|
70
94
|
"Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
|
|
95
|
+
"Show All": "Mostra tutto",
|
|
71
96
|
"Slow mode ON": "Slowmode attiva",
|
|
97
|
+
"Suggest an option": "Suggerisci un'opzione",
|
|
72
98
|
"The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
|
|
73
99
|
"The source message was deleted": "Il messaggio originale è stato eliminato",
|
|
100
|
+
"This is already an option": "Questa è già un'opzione",
|
|
74
101
|
"This reply was deleted": "Questa risposta è stata eliminata",
|
|
75
102
|
"Thread Reply": "Rispondi alla Discussione",
|
|
103
|
+
"Type a number from 2 to 10": "Digita un numero da 2 a 10",
|
|
76
104
|
"Unban User": "Sblocca Utente",
|
|
77
105
|
"Unblock User": "Sblocca utente",
|
|
78
106
|
"Unknown User": "Utente sconosciuto",
|
|
79
107
|
"Unmute User": "Riattiva utente",
|
|
80
108
|
"Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
|
|
81
109
|
"Unread Messages": "Messaggi non letti",
|
|
110
|
+
"Update your comment": "Aggiorna il tuo commento",
|
|
82
111
|
"Video": "Video",
|
|
112
|
+
"View Results": "Visualizza i risultati",
|
|
113
|
+
"View {{count}} comments_many": "Vedi {{count}} commenti",
|
|
114
|
+
"View {{count}} comments_one": "Vedi {{count}} commento",
|
|
115
|
+
"View {{count}} comments_other": "Vedi {{count}} commenti",
|
|
83
116
|
"Voice message": "Messaggio vocale",
|
|
117
|
+
"Vote ended": "Votazione terminata",
|
|
84
118
|
"You": "Tu",
|
|
85
119
|
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
86
120
|
"replied to": "ha risposto 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\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
93
128
|
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
94
129
|
"timestamp/ThreadListItem": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
95
130
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
@@ -97,5 +132,8 @@
|
|
|
97
132
|
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
98
133
|
"{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
|
|
99
134
|
"{{ user }} is typing": "{{ user }} sta scrivendo",
|
|
135
|
+
"{{count}} votes_many": "{{count}} voti",
|
|
136
|
+
"{{count}} votes_one": "{{count}} voto",
|
|
137
|
+
"{{count}} votes_other": "{{count}} voti",
|
|
100
138
|
"🏙 Attachment...": "🏙 Allegato..."
|
|
101
139
|
}
|