stream-chat-react-native-core 9.4.0-beta.9 → 9.4.1-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/AttachmentMediaPicker/AttachmentPickerItem.js +2 -1
- package/lib/commonjs/components/AttachmentPicker/components/AttachmentMediaPicker/AttachmentPickerItem.js.map +1 -1
- package/lib/commonjs/components/AutoCompleteInput/AutoCompleteInput.js +7 -0
- package/lib/commonjs/components/AutoCompleteInput/AutoCompleteInput.js.map +1 -1
- package/lib/commonjs/components/AutoCompleteInput/AutoCompleteSuggestionHeader.js +2 -0
- package/lib/commonjs/components/AutoCompleteInput/AutoCompleteSuggestionHeader.js.map +1 -1
- package/lib/commonjs/components/AutoCompleteInput/AutoCompleteSuggestionItem.js +41 -55
- package/lib/commonjs/components/AutoCompleteInput/AutoCompleteSuggestionItem.js.map +1 -1
- package/lib/commonjs/components/AutoCompleteInput/AutoCompleteSuggestionList.js +27 -7
- package/lib/commonjs/components/AutoCompleteInput/AutoCompleteSuggestionList.js.map +1 -1
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/EnhancedMentionContent.js +55 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/EnhancedMentionContent.js.map +1 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/EnhancedMentionIcon.js +47 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/EnhancedMentionIcon.js.map +1 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/MentionBroadcastItem.js +39 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/MentionBroadcastItem.js.map +1 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/MentionItem.js +45 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/MentionItem.js.map +1 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/MentionRoleItem.js +33 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/MentionRoleItem.js.map +1 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/MentionUserGroupItem.js +26 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/MentionUserGroupItem.js.map +1 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/MentionUserItem.js +53 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/MentionUserItem.js.map +1 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/TokenizedSuggestionParts.js +38 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/TokenizedSuggestionParts.js.map +1 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/index.js +60 -0
- package/lib/commonjs/components/AutoCompleteInput/mentionItems/index.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/ChannelDetails.js +8 -3
- package/lib/commonjs/components/ChannelDetails/ChannelDetails.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/components/ChannelDetailsActionItem.js +2 -1
- package/lib/commonjs/components/ChannelDetails/components/ChannelDetailsActionItem.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/components/ChannelDetailsEditButton.js +57 -0
- package/lib/commonjs/components/ChannelDetails/components/ChannelDetailsEditButton.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/ChannelDetailsNavHeader.js +3 -32
- package/lib/commonjs/components/ChannelDetails/components/ChannelDetailsNavHeader.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/components/ChannelDetailsNavigationSection.js +64 -25
- package/lib/commonjs/components/ChannelDetails/components/ChannelDetailsNavigationSection.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/components/ChannelDetailsProfile.js +3 -2
- package/lib/commonjs/components/ChannelDetails/components/ChannelDetailsProfile.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/components/ChannelEditImageSheet.js +2 -2
- package/lib/commonjs/components/ChannelDetails/components/ChannelEditImageSheet.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/components/index.js +22 -0
- package/lib/commonjs/components/ChannelDetails/components/index.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/components/members/ChannelMemberItem.js +2 -1
- package/lib/commonjs/components/ChannelDetails/components/members/ChannelMemberItem.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/components/modal/Modal.js +22 -23
- package/lib/commonjs/components/ChannelDetails/components/modal/Modal.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/components/modal/ModalHeader.js +6 -4
- package/lib/commonjs/components/ChannelDetails/components/modal/ModalHeader.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/FileAttachmentItem.js +65 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/FileAttachmentItem.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/FileAttachmentList.js +174 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/FileAttachmentList.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/FileAttachmentListLoadingSkeleton.js +21 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/FileAttachmentListLoadingSkeleton.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/FileAttachmentListSectionHeader.js +45 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/FileAttachmentListSectionHeader.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/MediaItem.js +120 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/MediaItem.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/MediaList.js +206 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/MediaList.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/MediaListLoadingSkeleton.js +63 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/MediaListLoadingSkeleton.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/PinnedMessageItem.js +84 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/PinnedMessageItem.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/PinnedMessageList.js +177 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/PinnedMessageList.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/PinnedMessageListLoadingSkeleton.js +21 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/PinnedMessageListLoadingSkeleton.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/index.js +114 -0
- package/lib/commonjs/components/ChannelDetails/components/navigation-section/index.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/hooks/index.js +33 -0
- package/lib/commonjs/components/ChannelDetails/hooks/index.js.map +1 -1
- package/lib/commonjs/components/ChannelDetails/hooks/useChannelDetailsNavigationItems.js +55 -0
- package/lib/commonjs/components/ChannelDetails/hooks/useChannelDetailsNavigationItems.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/hooks/useFileAttachmentListSections.js +52 -0
- package/lib/commonjs/components/ChannelDetails/hooks/useFileAttachmentListSections.js.map +1 -0
- package/lib/commonjs/components/ChannelDetails/hooks/useMediaList.js +30 -0
- package/lib/commonjs/components/ChannelDetails/hooks/useMediaList.js.map +1 -0
- package/lib/commonjs/components/ChannelPreview/ChannelMessagePreviewDeliveryStatus.js +5 -3
- package/lib/commonjs/components/ChannelPreview/ChannelMessagePreviewDeliveryStatus.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/ImageGallery.js +21 -76
- package/lib/commonjs/components/ImageGallery/ImageGallery.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/components/AnimatedGalleryImage.js +6 -10
- package/lib/commonjs/components/ImageGallery/components/AnimatedGalleryImage.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/components/AnimatedGalleryVideo.js +16 -14
- package/lib/commonjs/components/ImageGallery/components/AnimatedGalleryVideo.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryA11yProbe.js +67 -0
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryA11yProbe.js.map +1 -0
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js +23 -15
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/hooks/useAnimatedGalleryStyle.js +4 -3
- package/lib/commonjs/components/ImageGallery/hooks/useAnimatedGalleryStyle.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/hooks/useCurrentImageHeight.js +53 -0
- package/lib/commonjs/components/ImageGallery/hooks/useCurrentImageHeight.js.map +1 -0
- package/lib/commonjs/components/ImageGallery/hooks/useImageGalleryGestures.js +25 -31
- package/lib/commonjs/components/ImageGallery/hooks/useImageGalleryGestures.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/components/Message/MessageItemView/MessageTextContainer.js +14 -0
- package/lib/commonjs/components/Message/MessageItemView/MessageTextContainer.js.map +1 -1
- package/lib/commonjs/components/Message/MessageItemView/utils/renderText.js +69 -11
- package/lib/commonjs/components/Message/MessageItemView/utils/renderText.js.map +1 -1
- package/lib/commonjs/components/Message/hooks/useMessageActions.js +20 -3
- package/lib/commonjs/components/Message/hooks/useMessageActions.js.map +1 -1
- package/lib/commonjs/components/MessageInput/MessageComposer.js +5 -12
- package/lib/commonjs/components/MessageInput/MessageComposer.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageFlashList.js +22 -3
- package/lib/commonjs/components/MessageList/MessageFlashList.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +23 -4
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/components/UIComponents/BottomSheetModal.js +4 -17
- package/lib/commonjs/components/UIComponents/BottomSheetModal.js.map +1 -1
- package/lib/commonjs/components/UIComponents/ClippingFadeBottom.js +56 -0
- package/lib/commonjs/components/UIComponents/ClippingFadeBottom.js.map +1 -0
- package/lib/commonjs/components/UIComponents/EmptyList.js +78 -0
- package/lib/commonjs/components/UIComponents/EmptyList.js.map +1 -0
- package/lib/commonjs/components/UIComponents/PortalWhileClosingView.js +0 -3
- package/lib/commonjs/components/UIComponents/PortalWhileClosingView.js.map +1 -1
- package/lib/commonjs/components/UIComponents/index.js +22 -0
- package/lib/commonjs/components/UIComponents/index.js.map +1 -1
- package/lib/commonjs/components/index.js +11 -0
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/components/ui/Avatar/AvatarGroup.js +3 -3
- package/lib/commonjs/components/ui/Avatar/constants.js +2 -2
- package/lib/commonjs/contexts/channelFileAttachmentListContext/ChannelFileAttachmentListContext.js +64 -0
- package/lib/commonjs/contexts/channelFileAttachmentListContext/ChannelFileAttachmentListContext.js.map +1 -0
- package/lib/commonjs/contexts/channelMediaListContext/ChannelMediaListContext.js +63 -0
- package/lib/commonjs/contexts/channelMediaListContext/ChannelMediaListContext.js.map +1 -0
- package/lib/commonjs/contexts/channelPinnedMessageListContext/ChannelPinnedMessageListContext.js +73 -0
- package/lib/commonjs/contexts/channelPinnedMessageListContext/ChannelPinnedMessageListContext.js.map +1 -0
- package/lib/commonjs/contexts/componentsContext/defaultComponents.js +9 -0
- package/lib/commonjs/contexts/componentsContext/defaultComponents.js.map +1 -1
- package/lib/commonjs/contexts/index.js +33 -0
- package/lib/commonjs/contexts/index.js.map +1 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js +65 -4
- package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/commonjs/hooks/actions/useChannelActionItems.js +54 -4
- package/lib/commonjs/hooks/actions/useChannelActionItems.js.map +1 -1
- package/lib/commonjs/hooks/actions/useChannelMemberActionItems.js +22 -3
- package/lib/commonjs/hooks/actions/useChannelMemberActionItems.js.map +1 -1
- package/lib/commonjs/i18n/ar.json +24 -1
- package/lib/commonjs/i18n/en.json +24 -1
- package/lib/commonjs/i18n/es.json +24 -1
- package/lib/commonjs/i18n/fr.json +24 -1
- package/lib/commonjs/i18n/he.json +24 -1
- package/lib/commonjs/i18n/hi.json +24 -1
- package/lib/commonjs/i18n/it.json +24 -1
- package/lib/commonjs/i18n/ja.json +24 -1
- package/lib/commonjs/i18n/ko.json +24 -1
- package/lib/commonjs/i18n/nl.json +24 -1
- package/lib/commonjs/i18n/pt-br.json +24 -1
- package/lib/commonjs/i18n/ru.json +24 -1
- package/lib/commonjs/i18n/tr.json +24 -1
- package/lib/commonjs/icons/folder.js +37 -0
- package/lib/commonjs/icons/folder.js.map +1 -0
- package/lib/commonjs/icons/index.js +12 -0
- package/lib/commonjs/icons/index.js.map +1 -1
- package/lib/commonjs/icons/megaphone.js +36 -0
- package/lib/commonjs/icons/megaphone.js.map +1 -0
- package/lib/commonjs/icons/shield.js +36 -0
- package/lib/commonjs/icons/shield.js.map +1 -0
- package/lib/commonjs/state-store/image-gallery-state-store.js +12 -3
- package/lib/commonjs/state-store/image-gallery-state-store.js.map +1 -1
- package/lib/commonjs/store/SqliteClient.js +1 -1
- package/lib/commonjs/store/mappers/mapDraftMessageToStorable.js +8 -0
- package/lib/commonjs/store/mappers/mapDraftMessageToStorable.js.map +1 -1
- package/lib/commonjs/store/mappers/mapStorableToDraftMessage.js +8 -0
- package/lib/commonjs/store/mappers/mapStorableToDraftMessage.js.map +1 -1
- package/lib/commonjs/store/schema.js +4 -0
- package/lib/commonjs/store/schema.js.map +1 -1
- package/lib/commonjs/theme/generated/dark/StreamTokens.android.js +10 -1
- package/lib/commonjs/theme/generated/dark/StreamTokens.android.js.map +1 -1
- package/lib/commonjs/theme/generated/dark/StreamTokens.ios.js +10 -1
- package/lib/commonjs/theme/generated/dark/StreamTokens.ios.js.map +1 -1
- package/lib/commonjs/theme/generated/dark/StreamTokens.web.js +10 -1
- package/lib/commonjs/theme/generated/dark/StreamTokens.web.js.map +1 -1
- package/lib/commonjs/theme/generated/light/StreamTokens.android.js +10 -1
- package/lib/commonjs/theme/generated/light/StreamTokens.android.js.map +1 -1
- package/lib/commonjs/theme/generated/light/StreamTokens.ios.js +10 -1
- package/lib/commonjs/theme/generated/light/StreamTokens.ios.js.map +1 -1
- package/lib/commonjs/theme/generated/light/StreamTokens.web.js +10 -1
- package/lib/commonjs/theme/generated/light/StreamTokens.web.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/AttachmentPicker/components/AttachmentMediaPicker/AttachmentPickerItem.js +2 -1
- package/lib/module/components/AttachmentPicker/components/AttachmentMediaPicker/AttachmentPickerItem.js.map +1 -1
- package/lib/module/components/AutoCompleteInput/AutoCompleteInput.js +7 -0
- package/lib/module/components/AutoCompleteInput/AutoCompleteInput.js.map +1 -1
- package/lib/module/components/AutoCompleteInput/AutoCompleteSuggestionHeader.js +2 -0
- package/lib/module/components/AutoCompleteInput/AutoCompleteSuggestionHeader.js.map +1 -1
- package/lib/module/components/AutoCompleteInput/AutoCompleteSuggestionItem.js +41 -55
- package/lib/module/components/AutoCompleteInput/AutoCompleteSuggestionItem.js.map +1 -1
- package/lib/module/components/AutoCompleteInput/AutoCompleteSuggestionList.js +27 -7
- package/lib/module/components/AutoCompleteInput/AutoCompleteSuggestionList.js.map +1 -1
- package/lib/module/components/AutoCompleteInput/mentionItems/EnhancedMentionContent.js +55 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/EnhancedMentionContent.js.map +1 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/EnhancedMentionIcon.js +47 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/EnhancedMentionIcon.js.map +1 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/MentionBroadcastItem.js +39 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/MentionBroadcastItem.js.map +1 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/MentionItem.js +45 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/MentionItem.js.map +1 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/MentionRoleItem.js +33 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/MentionRoleItem.js.map +1 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/MentionUserGroupItem.js +26 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/MentionUserGroupItem.js.map +1 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/MentionUserItem.js +53 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/MentionUserItem.js.map +1 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/TokenizedSuggestionParts.js +38 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/TokenizedSuggestionParts.js.map +1 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/index.js +60 -0
- package/lib/module/components/AutoCompleteInput/mentionItems/index.js.map +1 -0
- package/lib/module/components/ChannelDetails/ChannelDetails.js +8 -3
- package/lib/module/components/ChannelDetails/ChannelDetails.js.map +1 -1
- package/lib/module/components/ChannelDetails/components/ChannelDetailsActionItem.js +2 -1
- package/lib/module/components/ChannelDetails/components/ChannelDetailsActionItem.js.map +1 -1
- package/lib/module/components/ChannelDetails/components/ChannelDetailsEditButton.js +57 -0
- package/lib/module/components/ChannelDetails/components/ChannelDetailsEditButton.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/ChannelDetailsNavHeader.js +3 -32
- package/lib/module/components/ChannelDetails/components/ChannelDetailsNavHeader.js.map +1 -1
- package/lib/module/components/ChannelDetails/components/ChannelDetailsNavigationSection.js +64 -25
- package/lib/module/components/ChannelDetails/components/ChannelDetailsNavigationSection.js.map +1 -1
- package/lib/module/components/ChannelDetails/components/ChannelDetailsProfile.js +3 -2
- package/lib/module/components/ChannelDetails/components/ChannelDetailsProfile.js.map +1 -1
- package/lib/module/components/ChannelDetails/components/ChannelEditImageSheet.js +2 -2
- package/lib/module/components/ChannelDetails/components/ChannelEditImageSheet.js.map +1 -1
- package/lib/module/components/ChannelDetails/components/index.js +22 -0
- package/lib/module/components/ChannelDetails/components/index.js.map +1 -1
- package/lib/module/components/ChannelDetails/components/members/ChannelMemberItem.js +2 -1
- package/lib/module/components/ChannelDetails/components/members/ChannelMemberItem.js.map +1 -1
- package/lib/module/components/ChannelDetails/components/modal/Modal.js +22 -23
- package/lib/module/components/ChannelDetails/components/modal/Modal.js.map +1 -1
- package/lib/module/components/ChannelDetails/components/modal/ModalHeader.js +6 -4
- package/lib/module/components/ChannelDetails/components/modal/ModalHeader.js.map +1 -1
- package/lib/module/components/ChannelDetails/components/navigation-section/FileAttachmentItem.js +65 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/FileAttachmentItem.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/FileAttachmentList.js +174 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/FileAttachmentList.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/FileAttachmentListLoadingSkeleton.js +21 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/FileAttachmentListLoadingSkeleton.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/FileAttachmentListSectionHeader.js +45 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/FileAttachmentListSectionHeader.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/MediaItem.js +120 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/MediaItem.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/MediaList.js +206 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/MediaList.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/MediaListLoadingSkeleton.js +63 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/MediaListLoadingSkeleton.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/PinnedMessageItem.js +84 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/PinnedMessageItem.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/PinnedMessageList.js +177 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/PinnedMessageList.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/PinnedMessageListLoadingSkeleton.js +21 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/PinnedMessageListLoadingSkeleton.js.map +1 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/index.js +114 -0
- package/lib/module/components/ChannelDetails/components/navigation-section/index.js.map +1 -0
- package/lib/module/components/ChannelDetails/hooks/index.js +33 -0
- package/lib/module/components/ChannelDetails/hooks/index.js.map +1 -1
- package/lib/module/components/ChannelDetails/hooks/useChannelDetailsNavigationItems.js +55 -0
- package/lib/module/components/ChannelDetails/hooks/useChannelDetailsNavigationItems.js.map +1 -0
- package/lib/module/components/ChannelDetails/hooks/useFileAttachmentListSections.js +52 -0
- package/lib/module/components/ChannelDetails/hooks/useFileAttachmentListSections.js.map +1 -0
- package/lib/module/components/ChannelDetails/hooks/useMediaList.js +30 -0
- package/lib/module/components/ChannelDetails/hooks/useMediaList.js.map +1 -0
- package/lib/module/components/ChannelPreview/ChannelMessagePreviewDeliveryStatus.js +5 -3
- package/lib/module/components/ChannelPreview/ChannelMessagePreviewDeliveryStatus.js.map +1 -1
- package/lib/module/components/ImageGallery/ImageGallery.js +21 -76
- package/lib/module/components/ImageGallery/ImageGallery.js.map +1 -1
- package/lib/module/components/ImageGallery/components/AnimatedGalleryImage.js +6 -10
- package/lib/module/components/ImageGallery/components/AnimatedGalleryImage.js.map +1 -1
- package/lib/module/components/ImageGallery/components/AnimatedGalleryVideo.js +16 -14
- package/lib/module/components/ImageGallery/components/AnimatedGalleryVideo.js.map +1 -1
- package/lib/module/components/ImageGallery/components/ImageGalleryA11yProbe.js +67 -0
- package/lib/module/components/ImageGallery/components/ImageGalleryA11yProbe.js.map +1 -0
- package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js +23 -15
- package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
- package/lib/module/components/ImageGallery/hooks/useAnimatedGalleryStyle.js +4 -3
- package/lib/module/components/ImageGallery/hooks/useAnimatedGalleryStyle.js.map +1 -1
- package/lib/module/components/ImageGallery/hooks/useCurrentImageHeight.js +53 -0
- package/lib/module/components/ImageGallery/hooks/useCurrentImageHeight.js.map +1 -0
- package/lib/module/components/ImageGallery/hooks/useImageGalleryGestures.js +25 -31
- package/lib/module/components/ImageGallery/hooks/useImageGalleryGestures.js.map +1 -1
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/components/Message/MessageItemView/MessageTextContainer.js +14 -0
- package/lib/module/components/Message/MessageItemView/MessageTextContainer.js.map +1 -1
- package/lib/module/components/Message/MessageItemView/utils/renderText.js +69 -11
- package/lib/module/components/Message/MessageItemView/utils/renderText.js.map +1 -1
- package/lib/module/components/Message/hooks/useMessageActions.js +20 -3
- package/lib/module/components/Message/hooks/useMessageActions.js.map +1 -1
- package/lib/module/components/MessageInput/MessageComposer.js +5 -12
- package/lib/module/components/MessageInput/MessageComposer.js.map +1 -1
- package/lib/module/components/MessageList/MessageFlashList.js +22 -3
- package/lib/module/components/MessageList/MessageFlashList.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +23 -4
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/components/UIComponents/BottomSheetModal.js +4 -17
- package/lib/module/components/UIComponents/BottomSheetModal.js.map +1 -1
- package/lib/module/components/UIComponents/ClippingFadeBottom.js +56 -0
- package/lib/module/components/UIComponents/ClippingFadeBottom.js.map +1 -0
- package/lib/module/components/UIComponents/EmptyList.js +78 -0
- package/lib/module/components/UIComponents/EmptyList.js.map +1 -0
- package/lib/module/components/UIComponents/PortalWhileClosingView.js +0 -3
- package/lib/module/components/UIComponents/PortalWhileClosingView.js.map +1 -1
- package/lib/module/components/UIComponents/index.js +22 -0
- package/lib/module/components/UIComponents/index.js.map +1 -1
- package/lib/module/components/index.js +11 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/components/ui/Avatar/AvatarGroup.js +3 -3
- package/lib/module/components/ui/Avatar/constants.js +2 -2
- package/lib/module/contexts/channelFileAttachmentListContext/ChannelFileAttachmentListContext.js +64 -0
- package/lib/module/contexts/channelFileAttachmentListContext/ChannelFileAttachmentListContext.js.map +1 -0
- package/lib/module/contexts/channelMediaListContext/ChannelMediaListContext.js +63 -0
- package/lib/module/contexts/channelMediaListContext/ChannelMediaListContext.js.map +1 -0
- package/lib/module/contexts/channelPinnedMessageListContext/ChannelPinnedMessageListContext.js +73 -0
- package/lib/module/contexts/channelPinnedMessageListContext/ChannelPinnedMessageListContext.js.map +1 -0
- package/lib/module/contexts/componentsContext/defaultComponents.js +9 -0
- package/lib/module/contexts/componentsContext/defaultComponents.js.map +1 -1
- package/lib/module/contexts/index.js +33 -0
- package/lib/module/contexts/index.js.map +1 -1
- package/lib/module/contexts/themeContext/utils/theme.js +65 -4
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/hooks/actions/useChannelActionItems.js +54 -4
- package/lib/module/hooks/actions/useChannelActionItems.js.map +1 -1
- package/lib/module/hooks/actions/useChannelMemberActionItems.js +22 -3
- package/lib/module/hooks/actions/useChannelMemberActionItems.js.map +1 -1
- package/lib/module/i18n/ar.json +24 -1
- package/lib/module/i18n/en.json +24 -1
- package/lib/module/i18n/es.json +24 -1
- package/lib/module/i18n/fr.json +24 -1
- package/lib/module/i18n/he.json +24 -1
- package/lib/module/i18n/hi.json +24 -1
- package/lib/module/i18n/it.json +24 -1
- package/lib/module/i18n/ja.json +24 -1
- package/lib/module/i18n/ko.json +24 -1
- package/lib/module/i18n/nl.json +24 -1
- package/lib/module/i18n/pt-br.json +24 -1
- package/lib/module/i18n/ru.json +24 -1
- package/lib/module/i18n/tr.json +24 -1
- package/lib/module/icons/folder.js +37 -0
- package/lib/module/icons/folder.js.map +1 -0
- package/lib/module/icons/index.js +12 -0
- package/lib/module/icons/index.js.map +1 -1
- package/lib/module/icons/megaphone.js +36 -0
- package/lib/module/icons/megaphone.js.map +1 -0
- package/lib/module/icons/shield.js +36 -0
- package/lib/module/icons/shield.js.map +1 -0
- package/lib/module/state-store/image-gallery-state-store.js +12 -3
- package/lib/module/state-store/image-gallery-state-store.js.map +1 -1
- package/lib/module/store/SqliteClient.js +1 -1
- package/lib/module/store/mappers/mapDraftMessageToStorable.js +8 -0
- package/lib/module/store/mappers/mapDraftMessageToStorable.js.map +1 -1
- package/lib/module/store/mappers/mapStorableToDraftMessage.js +8 -0
- package/lib/module/store/mappers/mapStorableToDraftMessage.js.map +1 -1
- package/lib/module/store/schema.js +4 -0
- package/lib/module/store/schema.js.map +1 -1
- package/lib/module/theme/generated/dark/StreamTokens.android.js +10 -1
- package/lib/module/theme/generated/dark/StreamTokens.android.js.map +1 -1
- package/lib/module/theme/generated/dark/StreamTokens.ios.js +10 -1
- package/lib/module/theme/generated/dark/StreamTokens.ios.js.map +1 -1
- package/lib/module/theme/generated/dark/StreamTokens.web.js +10 -1
- package/lib/module/theme/generated/dark/StreamTokens.web.js.map +1 -1
- package/lib/module/theme/generated/light/StreamTokens.android.js +10 -1
- package/lib/module/theme/generated/light/StreamTokens.android.js.map +1 -1
- package/lib/module/theme/generated/light/StreamTokens.ios.js +10 -1
- package/lib/module/theme/generated/light/StreamTokens.ios.js.map +1 -1
- package/lib/module/theme/generated/light/StreamTokens.web.js +10 -1
- package/lib/module/theme/generated/light/StreamTokens.web.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/AutoCompleteInput/AutoCompleteInput.d.ts.map +1 -1
- package/lib/typescript/components/AutoCompleteInput/AutoCompleteSuggestionHeader.d.ts.map +1 -1
- package/lib/typescript/components/AutoCompleteInput/AutoCompleteSuggestionItem.d.ts +8 -2
- package/lib/typescript/components/AutoCompleteInput/AutoCompleteSuggestionItem.d.ts.map +1 -1
- package/lib/typescript/components/AutoCompleteInput/AutoCompleteSuggestionList.d.ts +1 -1
- package/lib/typescript/components/AutoCompleteInput/AutoCompleteSuggestionList.d.ts.map +1 -1
- package/lib/typescript/components/AutoCompleteInput/mentionItems/EnhancedMentionContent.d.ts +13 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/EnhancedMentionContent.d.ts.map +1 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/EnhancedMentionIcon.d.ts +26 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/EnhancedMentionIcon.d.ts.map +1 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/MentionBroadcastItem.d.ts +7 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/MentionBroadcastItem.d.ts.map +1 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/MentionItem.d.ts +17 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/MentionItem.d.ts.map +1 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/MentionRoleItem.d.ts +7 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/MentionRoleItem.d.ts.map +1 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/MentionUserGroupItem.d.ts +7 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/MentionUserGroupItem.d.ts.map +1 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/MentionUserItem.d.ts +7 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/MentionUserItem.d.ts.map +1 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/TokenizedSuggestionParts.d.ts +21 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/TokenizedSuggestionParts.d.ts.map +1 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/index.d.ts +17 -0
- package/lib/typescript/components/AutoCompleteInput/mentionItems/index.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/ChannelDetails.d.ts +11 -1
- package/lib/typescript/components/ChannelDetails/ChannelDetails.d.ts.map +1 -1
- package/lib/typescript/components/ChannelDetails/components/ChannelDetailsActionItem.d.ts.map +1 -1
- package/lib/typescript/components/ChannelDetails/components/ChannelDetailsEditButton.d.ts +6 -0
- package/lib/typescript/components/ChannelDetails/components/ChannelDetailsEditButton.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/ChannelDetailsNavHeader.d.ts +3 -1
- package/lib/typescript/components/ChannelDetails/components/ChannelDetailsNavHeader.d.ts.map +1 -1
- package/lib/typescript/components/ChannelDetails/components/ChannelDetailsNavigationSection.d.ts.map +1 -1
- package/lib/typescript/components/ChannelDetails/components/index.d.ts +3 -0
- package/lib/typescript/components/ChannelDetails/components/index.d.ts.map +1 -1
- package/lib/typescript/components/ChannelDetails/components/members/ChannelMemberItem.d.ts.map +1 -1
- package/lib/typescript/components/ChannelDetails/components/modal/Modal.d.ts +2 -1
- package/lib/typescript/components/ChannelDetails/components/modal/Modal.d.ts.map +1 -1
- package/lib/typescript/components/ChannelDetails/components/modal/ModalHeader.d.ts +3 -1
- package/lib/typescript/components/ChannelDetails/components/modal/ModalHeader.d.ts.map +1 -1
- package/lib/typescript/components/ChannelDetails/components/navigation-section/FileAttachmentItem.d.ts +31 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/FileAttachmentItem.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/FileAttachmentList.d.ts +17 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/FileAttachmentList.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/FileAttachmentListLoadingSkeleton.d.ts +9 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/FileAttachmentListLoadingSkeleton.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/FileAttachmentListSectionHeader.d.ts +13 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/FileAttachmentListSectionHeader.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/MediaItem.d.ts +35 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/MediaItem.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/MediaList.d.ts +17 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/MediaList.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/MediaListLoadingSkeleton.d.ts +11 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/MediaListLoadingSkeleton.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/PinnedMessageItem.d.ts +19 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/PinnedMessageItem.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/PinnedMessageList.d.ts +19 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/PinnedMessageList.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/PinnedMessageListLoadingSkeleton.d.ts +9 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/PinnedMessageListLoadingSkeleton.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/index.d.ts +11 -0
- package/lib/typescript/components/ChannelDetails/components/navigation-section/index.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/hooks/index.d.ts +3 -0
- package/lib/typescript/components/ChannelDetails/hooks/index.d.ts.map +1 -1
- package/lib/typescript/components/ChannelDetails/hooks/useChannelDetailsNavigationItems.d.ts +56 -0
- package/lib/typescript/components/ChannelDetails/hooks/useChannelDetailsNavigationItems.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/hooks/useFileAttachmentListSections.d.ts +28 -0
- package/lib/typescript/components/ChannelDetails/hooks/useFileAttachmentListSections.d.ts.map +1 -0
- package/lib/typescript/components/ChannelDetails/hooks/useMediaList.d.ts +20 -0
- package/lib/typescript/components/ChannelDetails/hooks/useMediaList.d.ts.map +1 -0
- package/lib/typescript/components/ImageGallery/ImageGallery.d.ts.map +1 -1
- package/lib/typescript/components/ImageGallery/components/AnimatedGalleryImage.d.ts.map +1 -1
- package/lib/typescript/components/ImageGallery/components/AnimatedGalleryVideo.d.ts +1 -4
- package/lib/typescript/components/ImageGallery/components/AnimatedGalleryVideo.d.ts.map +1 -1
- package/lib/typescript/components/ImageGallery/components/ImageGalleryA11yProbe.d.ts +20 -0
- package/lib/typescript/components/ImageGallery/components/ImageGalleryA11yProbe.d.ts.map +1 -0
- package/lib/typescript/components/ImageGallery/components/ImageGalleryHeader.d.ts.map +1 -1
- package/lib/typescript/components/ImageGallery/hooks/useAnimatedGalleryStyle.d.ts +2 -3
- package/lib/typescript/components/ImageGallery/hooks/useAnimatedGalleryStyle.d.ts.map +1 -1
- package/lib/typescript/components/ImageGallery/hooks/useCurrentImageHeight.d.ts +24 -0
- package/lib/typescript/components/ImageGallery/hooks/useCurrentImageHeight.d.ts.map +1 -0
- package/lib/typescript/components/ImageGallery/hooks/useImageGalleryGestures.d.ts +1 -1
- package/lib/typescript/components/ImageGallery/hooks/useImageGalleryGestures.d.ts.map +1 -1
- package/lib/typescript/components/Message/Message.d.ts +11 -1
- package/lib/typescript/components/Message/Message.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageItemView/MessageTextContainer.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageItemView/utils/renderText.d.ts.map +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActions.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/MessageComposer.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageFlashList.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
- package/lib/typescript/components/UIComponents/BottomSheetModal.d.ts.map +1 -1
- package/lib/typescript/components/UIComponents/ClippingFadeBottom.d.ts +18 -0
- package/lib/typescript/components/UIComponents/ClippingFadeBottom.d.ts.map +1 -0
- package/lib/typescript/components/UIComponents/EmptyList.d.ts +24 -0
- package/lib/typescript/components/UIComponents/EmptyList.d.ts.map +1 -0
- package/lib/typescript/components/UIComponents/index.d.ts +2 -0
- package/lib/typescript/components/UIComponents/index.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/channelFileAttachmentListContext/ChannelFileAttachmentListContext.d.ts +21 -0
- package/lib/typescript/contexts/channelFileAttachmentListContext/ChannelFileAttachmentListContext.d.ts.map +1 -0
- package/lib/typescript/contexts/channelMediaListContext/ChannelMediaListContext.d.ts +21 -0
- package/lib/typescript/contexts/channelMediaListContext/ChannelMediaListContext.d.ts.map +1 -0
- package/lib/typescript/contexts/channelPinnedMessageListContext/ChannelPinnedMessageListContext.d.ts +21 -0
- package/lib/typescript/contexts/channelPinnedMessageListContext/ChannelPinnedMessageListContext.d.ts.map +1 -0
- package/lib/typescript/contexts/componentsContext/defaultComponents.d.ts +19 -2
- package/lib/typescript/contexts/componentsContext/defaultComponents.d.ts.map +1 -1
- package/lib/typescript/contexts/index.d.ts +3 -0
- package/lib/typescript/contexts/index.d.ts.map +1 -1
- package/lib/typescript/contexts/themeContext/ThemeContext.d.ts +62 -1
- package/lib/typescript/contexts/themeContext/ThemeContext.d.ts.map +1 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +62 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
- package/lib/typescript/hooks/actions/useChannelActionItems.d.ts.map +1 -1
- package/lib/typescript/hooks/actions/useChannelMemberActionItems.d.ts.map +1 -1
- package/lib/typescript/i18n/ar.json +24 -1
- package/lib/typescript/i18n/en.json +24 -1
- package/lib/typescript/i18n/es.json +24 -1
- package/lib/typescript/i18n/fr.json +24 -1
- package/lib/typescript/i18n/he.json +24 -1
- package/lib/typescript/i18n/hi.json +24 -1
- package/lib/typescript/i18n/it.json +24 -1
- package/lib/typescript/i18n/ja.json +24 -1
- package/lib/typescript/i18n/ko.json +24 -1
- package/lib/typescript/i18n/nl.json +24 -1
- package/lib/typescript/i18n/pt-br.json +24 -1
- package/lib/typescript/i18n/ru.json +24 -1
- package/lib/typescript/i18n/tr.json +24 -1
- package/lib/typescript/icons/folder.d.ts +4 -0
- package/lib/typescript/icons/folder.d.ts.map +1 -0
- package/lib/typescript/icons/index.d.ts +1 -0
- package/lib/typescript/icons/index.d.ts.map +1 -1
- package/lib/typescript/icons/megaphone.d.ts +4 -0
- package/lib/typescript/icons/megaphone.d.ts.map +1 -0
- package/lib/typescript/icons/shield.d.ts +4 -0
- package/lib/typescript/icons/shield.d.ts.map +1 -0
- package/lib/typescript/state-store/image-gallery-state-store.d.ts +8 -0
- package/lib/typescript/state-store/image-gallery-state-store.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapDraftMessageToStorable.d.ts.map +1 -1
- package/lib/typescript/store/mappers/mapStorableToDraftMessage.d.ts.map +1 -1
- package/lib/typescript/store/schema.d.ts +4 -0
- package/lib/typescript/store/schema.d.ts.map +1 -1
- package/lib/typescript/theme/generated/StreamTokens.types.d.ts +9 -0
- package/lib/typescript/theme/generated/StreamTokens.types.d.ts.map +1 -1
- package/lib/typescript/theme/generated/dark/StreamTokens.android.d.ts.map +1 -1
- package/lib/typescript/theme/generated/dark/StreamTokens.ios.d.ts.map +1 -1
- package/lib/typescript/theme/generated/dark/StreamTokens.web.d.ts.map +1 -1
- package/lib/typescript/theme/generated/light/StreamTokens.android.d.ts.map +1 -1
- package/lib/typescript/theme/generated/light/StreamTokens.ios.d.ts.map +1 -1
- package/lib/typescript/theme/generated/light/StreamTokens.web.d.ts.map +1 -1
- package/lib/typescript/utils/i18n/Streami18n.d.ts +23 -0
- package/lib/typescript/utils/i18n/Streami18n.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/AttachmentPicker/components/AttachmentMediaPicker/AttachmentPickerItem.tsx +2 -1
- package/src/components/AutoCompleteInput/AutoCompleteInput.tsx +13 -0
- package/src/components/AutoCompleteInput/AutoCompleteSuggestionHeader.tsx +2 -1
- package/src/components/AutoCompleteInput/AutoCompleteSuggestionItem.tsx +35 -43
- package/src/components/AutoCompleteInput/AutoCompleteSuggestionList.tsx +28 -3
- package/src/components/AutoCompleteInput/mentionItems/EnhancedMentionContent.tsx +71 -0
- package/src/components/AutoCompleteInput/mentionItems/EnhancedMentionIcon.tsx +71 -0
- package/src/components/AutoCompleteInput/mentionItems/MentionBroadcastItem.tsx +36 -0
- package/src/components/AutoCompleteInput/mentionItems/MentionItem.tsx +59 -0
- package/src/components/AutoCompleteInput/mentionItems/MentionRoleItem.tsx +27 -0
- package/src/components/AutoCompleteInput/mentionItems/MentionUserGroupItem.tsx +23 -0
- package/src/components/AutoCompleteInput/mentionItems/MentionUserItem.tsx +55 -0
- package/src/components/AutoCompleteInput/mentionItems/TokenizedSuggestionParts.tsx +56 -0
- package/src/components/AutoCompleteInput/mentionItems/__tests__/MentionItems.test.tsx +129 -0
- package/src/components/AutoCompleteInput/mentionItems/__tests__/TokenizedSuggestionParts.test.tsx +63 -0
- package/src/components/AutoCompleteInput/mentionItems/index.ts +16 -0
- package/src/components/ChannelDetails/ChannelDetails.tsx +17 -2
- package/src/components/ChannelDetails/__tests__/ChannelDetails.test.tsx +29 -0
- package/src/components/ChannelDetails/__tests__/ChannelDetailsEditButton.test.tsx +127 -0
- package/src/components/ChannelDetails/__tests__/ChannelDetailsNavHeader.test.tsx +21 -56
- package/src/components/ChannelDetails/__tests__/ChannelDetailsNavigationSection.test.tsx +225 -6
- package/src/components/ChannelDetails/__tests__/useFileAttachmentListSections.test.tsx +159 -0
- package/src/components/ChannelDetails/__tests__/useMediaList.test.tsx +53 -0
- package/src/components/ChannelDetails/components/ChannelDetailsActionItem.tsx +6 -1
- package/src/components/ChannelDetails/components/ChannelDetailsEditButton.tsx +50 -0
- package/src/components/ChannelDetails/components/ChannelDetailsNavHeader.tsx +6 -33
- package/src/components/ChannelDetails/components/ChannelDetailsNavigationSection.tsx +80 -32
- package/src/components/ChannelDetails/components/ChannelDetailsProfile.tsx +2 -1
- package/src/components/ChannelDetails/components/ChannelEditImageSheet.tsx +2 -2
- package/src/components/ChannelDetails/components/__tests__/navigation-section/FileAttachmentItem.test.tsx +80 -0
- package/src/components/ChannelDetails/components/__tests__/navigation-section/FileAttachmentList.test.tsx +334 -0
- package/src/components/ChannelDetails/components/__tests__/navigation-section/FileAttachmentListSectionHeader.test.tsx +19 -0
- package/src/components/ChannelDetails/components/__tests__/navigation-section/MediaItem.test.tsx +97 -0
- package/src/components/ChannelDetails/components/__tests__/navigation-section/MediaList.test.tsx +351 -0
- package/src/components/ChannelDetails/components/__tests__/navigation-section/PinnedMessageItem.test.tsx +112 -0
- package/src/components/ChannelDetails/components/__tests__/navigation-section/PinnedMessageList.test.tsx +324 -0
- package/src/components/ChannelDetails/components/index.ts +3 -0
- package/src/components/ChannelDetails/components/members/ChannelMemberItem.tsx +6 -1
- package/src/components/ChannelDetails/components/modal/Modal.tsx +37 -24
- package/src/components/ChannelDetails/components/modal/ModalHeader.tsx +11 -4
- package/src/components/ChannelDetails/components/navigation-section/FileAttachmentItem.tsx +92 -0
- package/src/components/ChannelDetails/components/navigation-section/FileAttachmentList.tsx +204 -0
- package/src/components/ChannelDetails/components/navigation-section/FileAttachmentListLoadingSkeleton.tsx +23 -0
- package/src/components/ChannelDetails/components/navigation-section/FileAttachmentListSectionHeader.tsx +56 -0
- package/src/components/ChannelDetails/components/navigation-section/MediaItem.tsx +160 -0
- package/src/components/ChannelDetails/components/navigation-section/MediaList.tsx +244 -0
- package/src/components/ChannelDetails/components/navigation-section/MediaListLoadingSkeleton.tsx +66 -0
- package/src/components/ChannelDetails/components/navigation-section/PinnedMessageItem.tsx +94 -0
- package/src/components/ChannelDetails/components/navigation-section/PinnedMessageList.tsx +198 -0
- package/src/components/ChannelDetails/components/navigation-section/PinnedMessageListLoadingSkeleton.tsx +23 -0
- package/src/components/ChannelDetails/components/navigation-section/index.ts +10 -0
- package/src/components/ChannelDetails/hooks/index.ts +3 -0
- package/src/components/ChannelDetails/hooks/useChannelDetailsNavigationItems.ts +108 -0
- package/src/components/ChannelDetails/hooks/useFileAttachmentListSections.ts +79 -0
- package/src/components/ChannelDetails/hooks/useMediaList.ts +51 -0
- package/src/components/ChannelPreview/ChannelMessagePreviewDeliveryStatus.tsx +3 -2
- package/src/components/ImageGallery/ImageGallery.tsx +41 -120
- package/src/components/ImageGallery/__tests__/ImageGallery.test.tsx +4 -1
- package/src/components/ImageGallery/__tests__/ImageGalleryAdjustable.test.tsx +5 -4
- package/src/components/ImageGallery/components/AnimatedGalleryImage.tsx +9 -11
- package/src/components/ImageGallery/components/AnimatedGalleryVideo.tsx +28 -15
- package/src/components/ImageGallery/components/ImageGalleryA11yProbe.tsx +82 -0
- package/src/components/ImageGallery/components/ImageGalleryHeader.tsx +21 -18
- package/src/components/ImageGallery/hooks/useAnimatedGalleryStyle.tsx +5 -5
- package/src/components/ImageGallery/hooks/useCurrentImageHeight.ts +86 -0
- package/src/components/ImageGallery/hooks/useImageGalleryGestures.tsx +42 -51
- package/src/components/Message/Message.tsx +14 -2
- package/src/components/Message/MessageItemView/MessageTextContainer.tsx +25 -0
- package/src/components/Message/MessageItemView/utils/renderText.tsx +97 -18
- package/src/components/Message/hooks/useMessageActions.tsx +30 -6
- package/src/components/MessageInput/MessageComposer.tsx +7 -9
- package/src/components/MessageList/MessageFlashList.tsx +28 -0
- package/src/components/MessageList/MessageList.tsx +28 -0
- package/src/components/Thread/__tests__/__snapshots__/Thread.test.tsx.snap +24 -15
- package/src/components/UIComponents/BottomSheetModal.tsx +2 -17
- package/src/components/UIComponents/ClippingFadeBottom.tsx +47 -0
- package/src/components/UIComponents/EmptyList.tsx +80 -0
- package/src/components/UIComponents/PortalWhileClosingView.tsx +0 -4
- package/src/components/UIComponents/__tests__/EmptyList.test.tsx +90 -0
- package/src/components/UIComponents/index.ts +2 -0
- package/src/components/index.ts +1 -0
- package/src/components/ui/Avatar/AvatarGroup.tsx +3 -3
- package/src/components/ui/Avatar/constants.ts +2 -2
- package/src/contexts/channelFileAttachmentListContext/ChannelFileAttachmentListContext.tsx +67 -0
- package/src/contexts/channelMediaListContext/ChannelMediaListContext.tsx +68 -0
- package/src/contexts/channelPinnedMessageListContext/ChannelPinnedMessageListContext.tsx +72 -0
- package/src/contexts/componentsContext/defaultComponents.ts +21 -2
- package/src/contexts/index.ts +3 -0
- package/src/contexts/themeContext/utils/theme.ts +124 -2
- package/src/hooks/actions/__tests__/useChannelActionItems.test.tsx +4 -4
- package/src/hooks/actions/__tests__/useChannelMemberActionItems.test.tsx +3 -3
- package/src/hooks/actions/useChannelActionItems.tsx +56 -2
- package/src/hooks/actions/useChannelMemberActionItems.tsx +23 -1
- package/src/i18n/ar.json +24 -1
- package/src/i18n/en.json +24 -1
- package/src/i18n/es.json +24 -1
- package/src/i18n/fr.json +24 -1
- package/src/i18n/he.json +24 -1
- package/src/i18n/hi.json +24 -1
- package/src/i18n/it.json +24 -1
- package/src/i18n/ja.json +24 -1
- package/src/i18n/ko.json +24 -1
- package/src/i18n/nl.json +24 -1
- package/src/i18n/pt-br.json +24 -1
- package/src/i18n/ru.json +24 -1
- package/src/i18n/tr.json +24 -1
- package/src/icons/folder.tsx +28 -0
- package/src/icons/index.ts +1 -0
- package/src/icons/megaphone.tsx +21 -0
- package/src/icons/shield.tsx +21 -0
- package/src/state-store/__tests__/image-gallery-state-store.test.ts +81 -0
- package/src/state-store/image-gallery-state-store.ts +27 -1
- package/src/store/SqliteClient.ts +1 -1
- package/src/store/mappers/mapDraftMessageToStorable.ts +8 -0
- package/src/store/mappers/mapStorableToDraftMessage.ts +8 -0
- package/src/store/schema.ts +8 -0
- package/src/theme/generated/StreamTokens.types.ts +9 -0
- package/src/theme/generated/dark/StreamTokens.android.ts +10 -1
- package/src/theme/generated/dark/StreamTokens.ios.ts +10 -1
- package/src/theme/generated/dark/StreamTokens.web.ts +10 -1
- package/src/theme/generated/light/StreamTokens.android.ts +10 -1
- package/src/theme/generated/light/StreamTokens.ios.ts +10 -1
- package/src/theme/generated/light/StreamTokens.web.ts +10 -1
- package/src/version.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_useChannelActions","_useIsChannelMuted2","_useUserMuteActive","_contexts","_icons","_leave","_useChannelMembershipState","_useIsDirectChat","_useStateStore2","_jsxRuntime","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ChannelActionsIcon","Icon","rest","_useTheme","useTheme","semantics","theme","jsx","stroke","textSecondary","width","height","buildDefaultChannelActionItems","channelActionItemsParams","_channelActionItemsPa","actions","deleteChannel","leave","muteChannel","unmuteChannel","muteUser","unmuteUser","blockUser","unblockUser","pin","unpin","channelMuteActive","isBlocked","isDirectChat","isPinned","surface","userMuteActive","channel","ownUserId","getClient","userID","actionItems","action","props","Sound","Mute","undefined","fill","id","label","placement","type","push","Unpin","Pin","BlockUser","ArrowBoxLeft","data","created_by","args","title","message","Alert","alert","style","text","onPress","_ref","_asyncToGenerator2","apply","arguments","Delete","exports","getChannelActionItems","defaultItems","blockedUsersStateSelector","state","userIds","useChannelActionItems","getChannelActionItemsProp","_useTranslationContex","useTranslationContext","membership","useChannelMembershipState","channelActions","useChannelActions","useIsDirectChat","Boolean","pinned_at","isArchived","archived_at","_useIsChannelMuted","useIsChannelMuted","muted","otherUser","getOtherUserInDirectChannel","user","useUserMuteActive","_useStateStore","useStateStore","blockedUsers","blockedUserIds","includes","useMemo","context"],"sourceRoot":"../../../../src","sources":["hooks/actions/useChannelActionItems.tsx"],"mappings":"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","ignoreList":[]}
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_useChannelActions","_useIsChannelMuted2","_useUserMuteActive","_contexts","_icons","_leave","_useChannelMembershipState","_useIsDirectChat","_useStateStore2","_jsxRuntime","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ChannelActionsIcon","Icon","rest","_useTheme","useTheme","semantics","theme","jsx","stroke","textSecondary","width","height","buildDefaultChannelActionItems","channelActionItemsParams","_channelActionItemsPa","actions","deleteChannel","leave","muteChannel","unmuteChannel","muteUser","unmuteUser","blockUser","unblockUser","pin","unpin","channelMuteActive","isBlocked","isDirectChat","isPinned","surface","userMuteActive","channel","ownUserId","getClient","userID","actionItems","action","props","Sound","Mute","undefined","fill","id","label","placement","type","push","Unpin","Pin","blockUserWithConfirmation","args","otherUser","getOtherUserInDirectChannel","user","name","Alert","alert","style","text","onPress","_ref","_asyncToGenerator2","apply","arguments","BlockUser","leaveWithConfirmation","channelName","data","_ref2","ArrowBoxLeft","created_by","title","message","_ref3","Delete","exports","getChannelActionItems","defaultItems","blockedUsersStateSelector","state","userIds","useChannelActionItems","getChannelActionItemsProp","_useTranslationContex","useTranslationContext","membership","useChannelMembershipState","channelActions","useChannelActions","useIsDirectChat","Boolean","pinned_at","isArchived","archived_at","_useIsChannelMuted","useIsChannelMuted","muted","useUserMuteActive","_useStateStore","useStateStore","blockedUsers","blockedUserIds","includes","useMemo","context"],"sourceRoot":"../../../../src","sources":["hooks/actions/useChannelActionItems.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -60,7 +60,26 @@ var buildDefaultChannelMemberActionItems = channelMemberActionItemsParams => {
|
|
|
60
60
|
label: userMuteActive ? t('Unmute User') : t('Mute User'),
|
|
61
61
|
type: 'standard'
|
|
62
62
|
}, {
|
|
63
|
-
action: isBlocked ? unblockUser :
|
|
63
|
+
action: isBlocked ? unblockUser : (...args) => {
|
|
64
|
+
var name = member.user?.name || member.user?.id || '';
|
|
65
|
+
_reactNative.Alert.alert(t('Block {{ name }}', {
|
|
66
|
+
name
|
|
67
|
+
}), t("They won't be able to message or call you. You can unblock them later."), [{
|
|
68
|
+
style: 'cancel',
|
|
69
|
+
text: t('Cancel')
|
|
70
|
+
}, {
|
|
71
|
+
onPress: function () {
|
|
72
|
+
var _ref = (0, _asyncToGenerator2.default)(function* () {
|
|
73
|
+
yield blockUser(...args);
|
|
74
|
+
});
|
|
75
|
+
return function onPress() {
|
|
76
|
+
return _ref.apply(this, arguments);
|
|
77
|
+
};
|
|
78
|
+
}(),
|
|
79
|
+
style: 'destructive',
|
|
80
|
+
text: t('Block')
|
|
81
|
+
}]);
|
|
82
|
+
},
|
|
64
83
|
Icon: props => (0, _jsxRuntime.jsx)(ChannelMemberActionsIcon, {
|
|
65
84
|
Icon: _icons.BlockUser,
|
|
66
85
|
...props
|
|
@@ -81,11 +100,11 @@ var buildDefaultChannelMemberActionItems = channelMemberActionItemsParams => {
|
|
|
81
100
|
text: t('Cancel')
|
|
82
101
|
}, {
|
|
83
102
|
onPress: function () {
|
|
84
|
-
var
|
|
103
|
+
var _ref2 = (0, _asyncToGenerator2.default)(function* () {
|
|
85
104
|
yield removeMembers([memberId]);
|
|
86
105
|
});
|
|
87
106
|
return function onPress() {
|
|
88
|
-
return
|
|
107
|
+
return _ref2.apply(this, arguments);
|
|
89
108
|
};
|
|
90
109
|
}(),
|
|
91
110
|
style: 'destructive',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_useChannelActions","_useUserActions","_useUserMuteActive","_contexts","_icons","_useChannelOwnCapabilities","_useStateStore2","_jsxRuntime","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ChannelMemberActionsIcon","Icon","rest","_useTheme","useTheme","semantics","theme","jsx","stroke","textSecondary","width","height","buildDefaultChannelMemberActionItems","channelMemberActionItemsParams","removeMembers","channelActions","isBlocked","isCurrentUser","member","ownCapabilities","_channelMemberActionI","userActions","blockUser","muteUser","unblockUser","unmuteUser","userMuteActive","canRemoveMember","includes","actionItems","push","action","props","Sound","Mute","fill","undefined","id","label","type","
|
|
1
|
+
{"version":3,"names":["_react","_interopRequireWildcard","require","_reactNative","_useChannelActions","_useUserActions","_useUserMuteActive","_contexts","_icons","_useChannelOwnCapabilities","_useStateStore2","_jsxRuntime","_jsxFileName","e","t","WeakMap","r","n","__esModule","o","i","f","__proto__","default","has","get","set","_t","hasOwnProperty","call","Object","defineProperty","getOwnPropertyDescriptor","ChannelMemberActionsIcon","Icon","rest","_useTheme","useTheme","semantics","theme","jsx","stroke","textSecondary","width","height","buildDefaultChannelMemberActionItems","channelMemberActionItemsParams","removeMembers","channelActions","isBlocked","isCurrentUser","member","ownCapabilities","_channelMemberActionI","userActions","blockUser","muteUser","unblockUser","unmuteUser","userMuteActive","canRemoveMember","includes","actionItems","push","action","props","Sound","Mute","fill","undefined","id","label","type","args","name","user","Alert","alert","style","text","onPress","_ref","_asyncToGenerator2","apply","arguments","BlockUser","memberId","_ref2","UserDelete","exports","getChannelMemberActionItems","defaultItems","blockedUsersStateSelector","state","userIds","useChannelMemberActionItems","channel","getChannelMemberActionItemsProp","_useTranslationContex","useTranslationContext","useUserActions","useChannelActions","useChannelOwnCapabilities","useUserMuteActive","_useStateStore","useStateStore","getClient","blockedUsers","blockedUserIds","userID","useMemo","context"],"sourceRoot":"../../../../src","sources":["hooks/actions/useChannelMemberActionItems.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,uBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAKA,IAAAE,kBAAA,GAAAF,OAAA;AACA,IAAAG,eAAA,GAAAH,OAAA;AAEA,IAAAI,kBAAA,GAAAJ,OAAA;AACA,IAAAK,SAAA,GAAAL,OAAA;AAEA,IAAAM,MAAA,GAAAN,OAAA;AACA,IAAAO,0BAAA,GAAAP,OAAA;AACA,IAAAQ,eAAA,GAAAR,OAAA;AAAiD,IAAAS,WAAA,GAAAT,OAAA;AAAA,IAAAU,YAAA;AAAA,SAAAX,wBAAAY,CAAA,EAAAC,CAAA,6BAAAC,OAAA,MAAAC,CAAA,OAAAD,OAAA,IAAAE,CAAA,OAAAF,OAAA,YAAAd,uBAAA,YAAAA,CAAAY,CAAA,EAAAC,CAAA,SAAAA,CAAA,IAAAD,CAAA,IAAAA,CAAA,CAAAK,UAAA,SAAAL,CAAA,MAAAM,CAAA,EAAAC,CAAA,EAAAC,CAAA,KAAAC,SAAA,QAAAC,OAAA,EAAAV,CAAA,iBAAAA,CAAA,uBAAAA,CAAA,yBAAAA,CAAA,SAAAQ,CAAA,MAAAF,CAAA,GAAAL,CAAA,GAAAG,CAAA,GAAAD,CAAA,QAAAG,CAAA,CAAAK,GAAA,CAAAX,CAAA,UAAAM,CAAA,CAAAM,GAAA,CAAAZ,CAAA,GAAAM,CAAA,CAAAO,GAAA,CAAAb,CAAA,EAAAQ,CAAA,cAAAM,EAAA,IAAAd,CAAA,gBAAAc,EAAA,OAAAC,cAAA,CAAAC,IAAA,CAAAhB,CAAA,EAAAc,EAAA,OAAAP,CAAA,IAAAD,CAAA,GAAAW,MAAA,CAAAC,cAAA,KAAAD,MAAA,CAAAE,wBAAA,CAAAnB,CAAA,EAAAc,EAAA,OAAAP,CAAA,CAAAK,GAAA,IAAAL,CAAA,CAAAM,GAAA,IAAAP,CAAA,CAAAE,CAAA,EAAAM,EAAA,EAAAP,CAAA,IAAAC,CAAA,CAAAM,EAAA,IAAAd,CAAA,CAAAc,EAAA,WAAAN,CAAA,KAAAR,CAAA,EAAAC,CAAA;AAoBjD,IAAMmB,wBAAwB,GAAGA,CAAC;EAChCC,IAAI;EACJ,GAAGC;AACiD,CAAC,KAAK;EAC1D,IAAAC,SAAA,GAEI,IAAAC,kBAAQ,EAAC,CAAC;IADHC,SAAS,GAAAF,SAAA,CAAlBG,KAAK,CAAID,SAAS;EAGpB,OAAO,IAAA3B,WAAA,CAAA6B,GAAA,EAACN,IAAI;IAACO,MAAM,EAAEH,SAAS,CAACI,aAAc;IAACC,KAAK,EAAE,EAAG;IAACC,MAAM,EAAE,EAAG;IAAA,GAAKT;EAAI,CAAG,CAAC;AACnF,CAAC;AAEM,IAAMU,oCAA0E,GACrFC,8BAA8B,IAC3B;EACH,IACoBC,aAAa,GAQ7BD,8BAA8B,CARhCE,cAAc,CAAID,aAAa;IAC/BE,SAAS,GAOPH,8BAA8B,CAPhCG,SAAS;IACTC,aAAa,GAMXJ,8BAA8B,CANhCI,aAAa;IACbC,MAAM,GAKJL,8BAA8B,CALhCK,MAAM;IACNC,eAAe,GAIbN,8BAA8B,CAJhCM,eAAe;IACftC,CAAC,GAGCgC,8BAA8B,CAHhChC,CAAC;IAAAuC,qBAAA,GAGCP,8BAA8B,CAFhCQ,WAAW;IAAIC,SAAS,GAAAF,qBAAA,CAATE,SAAS;IAAEC,QAAQ,GAAAH,qBAAA,CAARG,QAAQ;IAAEC,WAAW,GAAAJ,qBAAA,CAAXI,WAAW;IAAEC,UAAU,GAAAL,qBAAA,CAAVK,UAAU;IAC3DC,cAAc,GACZb,8BAA8B,CADhCa,cAAc;EAGhB,IAAMC,eAAe,GAAGR,eAAe,EAAES,QAAQ,CAAC,wBAAwB,CAAC,IAAI,KAAK;EAEpF,IAAMC,WAAsC,GAAG,EAAE;EAIjD,IAAI,CAACZ,aAAa,EAAE;IAClBY,WAAW,CAACC,IAAI,CACd;MACEC,MAAM,EAAEL,cAAc,GAAGD,UAAU,GAAGF,QAAQ;MAC9CtB,IAAI,EAAG+B,KAAK,IACVN,cAAc,GACZ,IAAAhD,WAAA,CAAA6B,GAAA,EAACP,wBAAwB;QAACC,IAAI,EAAEgC,YAAM;QAAA,GAAKD;MAAK,CAAG,CAAC,GAEpD,IAAAtD,WAAA,CAAA6B,GAAA,EAACP,wBAAwB;QACvBC,IAAI,EAAEiC,WAAK;QAAA,GACPF,KAAK;QACTG,IAAI,EAAEH,KAAK,CAACG,IAAI,IAAIH,KAAK,CAACxB,MAAO;QACjCA,MAAM,EAAE4B;MAAU,CACnB,CACF;MACHC,EAAE,EAAE,UAAU;MACdC,KAAK,EAAEZ,cAAc,GAAG7C,CAAC,CAAC,aAAa,CAAC,GAAGA,CAAC,CAAC,WAAW,CAAC;MACzD0D,IAAI,EAAE;IACR,CAAC,EACD;MACER,MAAM,EAAEf,SAAS,GACbQ,WAAW,GACX,CAAC,GAAGgB,IAA0C,KAAK;QACjD,IAAMC,IAAI,GAAGvB,MAAM,CAACwB,IAAI,EAAED,IAAI,IAAIvB,MAAM,CAACwB,IAAI,EAAEL,EAAE,IAAI,EAAE;QAEvDM,kBAAK,CAACC,KAAK,CACT/D,CAAC,CAAC,kBAAkB,EAAE;UAAE4D;QAAK,CAAC,CAAC,EAC/B5D,CAAC,CAAC,wEAAwE,CAAC,EAC3E,CACE;UACEgE,KAAK,EAAE,QAAQ;UACfC,IAAI,EAAEjE,CAAC,CAAC,QAAQ;QAClB,CAAC,EACD;UACEkE,OAAO;YAAA,IAAAC,IAAA,OAAAC,kBAAA,CAAA3D,OAAA,EAAE,aAAY;cACnB,MAAMgC,SAAS,CAAC,GAAGkB,IAAI,CAAC;YAC1B,CAAC;YAAA,gBAFDO,OAAOA,CAAA;cAAA,OAAAC,IAAA,CAAAE,KAAA,OAAAC,SAAA;YAAA;UAAA,GAEN;UACDN,KAAK,EAAE,aAAa;UACpBC,IAAI,EAAEjE,CAAC,CAAC,OAAO;QACjB,CAAC,CAEL,CAAC;MACH,CAAC;MACLoB,IAAI,EAAG+B,KAAK,IAAK,IAAAtD,WAAA,CAAA6B,GAAA,EAACP,wBAAwB;QAACC,IAAI,EAAEmD,gBAAU;QAAA,GAAKpB;MAAK,CAAG,CAAC;MACzEK,EAAE,EAAE,OAAO;MACXC,KAAK,EAAEtB,SAAS,GAAGnC,CAAC,CAAC,cAAc,CAAC,GAAGA,CAAC,CAAC,YAAY,CAAC;MACtD0D,IAAI,EAAEvB,SAAS,GAAG,UAAU,GAAG;IACjC,CACF,CAAC;IAED,IAAIW,eAAe,EAAE;MACnBE,WAAW,CAACC,IAAI,CAAC;QACfC,MAAM,EAAEA,CAAA,KAAM;UACZ,IAAMsB,QAAQ,GAAGnC,MAAM,CAACwB,IAAI,EAAEL,EAAE;UAChC,IAAI,CAACgB,QAAQ,EAAE;YACb;UACF;UACAV,kBAAK,CAACC,KAAK,CACT/D,CAAC,CAAC,aAAa,CAAC,EAChBA,CAAC,CAAC,+DAA+D,CAAC,EAClE,CACE;YAAEgE,KAAK,EAAE,QAAQ;YAAEC,IAAI,EAAEjE,CAAC,CAAC,QAAQ;UAAE,CAAC,EACtC;YACEkE,OAAO;cAAA,IAAAO,KAAA,OAAAL,kBAAA,CAAA3D,OAAA,EAAE,aAAY;gBACnB,MAAMwB,aAAa,CAAC,CAACuC,QAAQ,CAAC,CAAC;cACjC,CAAC;cAAA,gBAFDN,OAAOA,CAAA;gBAAA,OAAAO,KAAA,CAAAJ,KAAA,OAAAC,SAAA;cAAA;YAAA,GAEN;YACDN,KAAK,EAAE,aAAa;YACpBC,IAAI,EAAEjE,CAAC,CAAC,QAAQ;UAClB,CAAC,CAEL,CAAC;QACH,CAAC;QACDoB,IAAI,EAAG+B,KAAK,IAAK,IAAAtD,WAAA,CAAA6B,GAAA,EAACP,wBAAwB;UAACC,IAAI,EAAEsD,iBAAW;UAAA,GAAKvB;QAAK,CAAG,CAAC;QAC1EK,EAAE,EAAE,cAAc;QAClBC,KAAK,EAAEzD,CAAC,CAAC,aAAa,CAAC;QACvB0D,IAAI,EAAE;MACR,CAAC,CAAC;IACJ;EACF;EAEA,OAAOV,WAAW;AACpB,CAAC;AAAC2B,OAAA,CAAA5C,oCAAA,GAAAA,oCAAA;AAOK,IAAM6C,2BAAwD,GAAGA,CAAC;EAAEC;AAAa,CAAC,KACvFA,YAAY;AAACF,OAAA,CAAAC,2BAAA,GAAAA,2BAAA;AAQf,IAAME,yBAAyB,GAAIC,KAAwB,KACxD;EAAEC,OAAO,EAAED,KAAK,CAACC;AAAQ,CAAC,CAAU;AAEhC,IAAMC,2BAA2B,GAAGA,CAAC;EAC1CC,OAAO;EACP7C,MAAM;EACNuC,2BAA2B,EAAEO,+BAA+B,GAAGP;AAC9B,CAAC,KAAK;EACvC,IAAAQ,qBAAA,GAAc,IAAAC,+BAAqB,EAAC,CAAC;IAA7BrF,CAAC,GAAAoF,qBAAA,CAADpF,CAAC;EACT,IAAMwC,WAAW,GAAG,IAAA8C,8BAAc,EAACjD,MAAM,CAACwB,IAAI,CAAC;EAC/C,IAAM3B,cAAc,GAAG,IAAAqD,oCAAiB,EAACL,OAAO,CAAC;EAEjD,IAAM5C,eAAe,GAAG,IAAAkD,oDAAyB,EAACN,OAAO,CAAC;EAE1D,IAAMrC,cAAc,GAAG,IAAA4C,oCAAiB,EAACpD,MAAM,CAACwB,IAAI,CAAC;EAErD,IAAA6B,cAAA,GAAoC,IAAAC,6BAAa,EAC/CT,OAAO,CAACU,SAAS,CAAC,CAAC,CAACC,YAAY,EAChCf,yBACF,CAAC;IAHgBgB,cAAc,GAAAJ,cAAA,CAAvBV,OAAO;EAKf,IAAM7C,SAAS,GAAG2D,cAAc,CAAC/C,QAAQ,CAACV,MAAM,CAACwB,IAAI,EAAEL,EAAE,IAAI,EAAE,CAAC;EAEhE,IAAMpB,aAAa,GAAGC,MAAM,CAACwB,IAAI,EAAEL,EAAE,KAAK0B,OAAO,CAACU,SAAS,CAAC,CAAC,CAACG,MAAM;EAEpE,IAAM/D,8BAA8B,GAAG,IAAAgE,cAAO,EAC5C,OAAO;IACLd,OAAO;IACPhD,cAAc;IACdC,SAAS;IACTC,aAAa;IACbC,MAAM;IACNC,eAAe;IACftC,CAAC;IACDwC,WAAW;IACXK;EACF,CAAC,CAAC,EACF,CACEqC,OAAO,EACPhD,cAAc,EACdC,SAAS,EACTC,aAAa,EACbC,MAAM,EACNC,eAAe,EACftC,CAAC,EACDwC,WAAW,EACXK,cAAc,CAElB,CAAC;EAED,IAAMgC,YAAY,GAAG,IAAAmB,cAAO,EAC1B,MAAMjE,oCAAoC,CAACC,8BAA8B,CAAC,EAC1E,CAACA,8BAA8B,CACjC,CAAC;EAED,OAAO,IAAAgE,cAAO,EACZ,MACEb,+BAA+B,CAAC;IAC9Bc,OAAO,EAAEjE,8BAA8B;IACvC6C;EACF,CAAC,CAAC,EACJ,CAAC7C,8BAA8B,EAAE6C,YAAY,EAAEM,+BAA+B,CAChF,CAAC;AACH,CAAC;AAACR,OAAA,CAAAM,2BAAA,GAAAA,2BAAA","ignoreList":[]}
|
package/lib/module/i18n/ar.json
CHANGED
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
163
163
|
"replied to": "رد على",
|
|
164
164
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[أمس]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[غدًا]\", \"nextWeek\":\"dddd [في] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
165
|
+
"timestamp/FileAttachmentListSection": "{{ timestamp | timestampFormatter(format: MMMM YYYY) }}",
|
|
165
166
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
166
167
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
167
168
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -388,6 +389,7 @@
|
|
|
388
389
|
"Failed to block user": "فشل حظر المستخدم",
|
|
389
390
|
"Failed to delete channel": "فشل حذف القناة",
|
|
390
391
|
"Failed to leave channel": "فشل مغادرة القناة",
|
|
392
|
+
"Failed to load pinned messages": "فشل تحميل الرسائل المثبتة",
|
|
391
393
|
"Failed to load users": "فشل تحميل المستخدمين",
|
|
392
394
|
"Failed to play the recording": "فشل تشغيل التسجيل",
|
|
393
395
|
"Failed to update channel archive status": "فشل تحديث حالة أرشفة القناة",
|
|
@@ -437,8 +439,29 @@
|
|
|
437
439
|
"a11y/Gallery Image": "صورة من المعرض",
|
|
438
440
|
"a11y/Gallery Video": "فيديو من المعرض",
|
|
439
441
|
"a11y/{{position}} of {{count}}": "{{position}} من {{count}}",
|
|
442
|
+
"No pinned messages": "لا توجد رسائل مثبتة",
|
|
443
|
+
"a11y/Search pinned messages": "البحث في الرسائل المثبتة",
|
|
444
|
+
"Long-press a message to pin it to the chat": "اضغط مطولاً على رسالة لتثبيتها في المحادثة",
|
|
445
|
+
"No photos or videos": "لا توجد صور أو مقاطع فيديو",
|
|
446
|
+
"Share a photo or video to see it here": "شارك صورة أو مقطع فيديو لرؤيته هنا",
|
|
447
|
+
"Failed to load media": "فشل تحميل الوسائط",
|
|
448
|
+
"No files": "لا توجد ملفات",
|
|
449
|
+
"Share a file to see it here": "شارك ملفًا لرؤيته هنا",
|
|
450
|
+
"Failed to load files": "فشل تحميل الملفات",
|
|
451
|
+
"Notify all {{ role }} members": "Notify all {{ role }} members",
|
|
452
|
+
"a11y/Command suggestions available": "Command suggestions available",
|
|
453
|
+
"a11y/Emoji suggestions available": "Emoji suggestions available",
|
|
454
|
+
"a11y/Mention suggestions available": "Mention suggestions available",
|
|
455
|
+
"mention/Channel Description": "Notify everyone in this channel",
|
|
456
|
+
"mention/Here Description": "Notify every online member in this channel",
|
|
440
457
|
"Pin Chat": "تثبيت الدردشة",
|
|
441
458
|
"Pin Group": "تثبيت المجموعة",
|
|
442
459
|
"Unpin Chat": "إلغاء تثبيت الدردشة",
|
|
443
|
-
"Unpin Group": "إلغاء تثبيت المجموعة"
|
|
460
|
+
"Unpin Group": "إلغاء تثبيت المجموعة",
|
|
461
|
+
"Block": "حظر",
|
|
462
|
+
"Block {{ name }}": "حظر {{ name }}",
|
|
463
|
+
"They won't be able to message or call you. You can unblock them later.": "لن يتمكن/تتمكن من مراسلتك أو الاتصال بك. يمكنك إلغاء الحظر لاحقًا.",
|
|
464
|
+
"Leave": "مغادرة",
|
|
465
|
+
"You'll stop receiving messages from {{ name }}. You can rejoin anytime.": "ستتوقف عن تلقي الرسائل من {{ name }}. يمكنك الانضمام مجددًا في أي وقت.",
|
|
466
|
+
"group": "المجموعة"
|
|
444
467
|
}
|
package/lib/module/i18n/en.json
CHANGED
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
"Loading threads...": "Loading threads...",
|
|
73
73
|
"Loading...": "Loading...",
|
|
74
74
|
"Location": "Location",
|
|
75
|
+
"Long-press a message to pin it to the chat": "Long-press a message to pin it to the chat",
|
|
75
76
|
"Mark as Unread": "Mark as Unread",
|
|
76
77
|
"Maximum number of files reached": "Maximum number of files reached",
|
|
77
78
|
"Message Reactions": "Message Reactions",
|
|
@@ -96,7 +97,10 @@
|
|
|
96
97
|
"Failed to remove members": "Failed to remove members",
|
|
97
98
|
"Muted": "Muted",
|
|
98
99
|
"No chats here yet…": "No chats here yet…",
|
|
100
|
+
"No files": "No files",
|
|
99
101
|
"No items exist": "No items exist",
|
|
102
|
+
"No photos or videos": "No photos or videos",
|
|
103
|
+
"No pinned messages": "No pinned messages",
|
|
100
104
|
"No threads here yet": "No threads here yet",
|
|
101
105
|
"No user found": "No user found",
|
|
102
106
|
"Not supported": "Not supported",
|
|
@@ -110,6 +114,7 @@
|
|
|
110
114
|
"Options": "Options",
|
|
111
115
|
"Photo": "Photo",
|
|
112
116
|
"Photos and Videos": "Photos and Videos",
|
|
117
|
+
"Share a photo or video to see it here": "Share a photo or video to see it here",
|
|
113
118
|
"Pin to Conversation": "Pin to Conversation",
|
|
114
119
|
"Pinned by": "Pinned by",
|
|
115
120
|
"Please allow Audio permissions in settings.": "Please allow Audio permissions in settings.",
|
|
@@ -170,6 +175,7 @@
|
|
|
170
175
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
171
176
|
"replied to": "replied to",
|
|
172
177
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Yesterday]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Tomorrow]\", \"nextWeek\":\"dddd [at] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
178
|
+
"timestamp/FileAttachmentListSection": "{{ timestamp | timestampFormatter(format: MMMM YYYY) }}",
|
|
173
179
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
174
180
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
175
181
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -236,6 +242,12 @@
|
|
|
236
242
|
"No conversations yet": "No conversations yet",
|
|
237
243
|
"Are you sure you want to delete this group? This can't be undone.": "Are you sure you want to delete this group? This can't be undone.",
|
|
238
244
|
"Are you sure you want to delete this chat? This can't be undone.": "Are you sure you want to delete this chat? This can't be undone.",
|
|
245
|
+
"Block": "Block",
|
|
246
|
+
"Block {{ name }}": "Block {{ name }}",
|
|
247
|
+
"They won't be able to message or call you. You can unblock them later.": "They won't be able to message or call you. You can unblock them later.",
|
|
248
|
+
"Leave": "Leave",
|
|
249
|
+
"You'll stop receiving messages from {{ name }}. You can rejoin anytime.": "You'll stop receiving messages from {{ name }}. You can rejoin anytime.",
|
|
250
|
+
"group": "this group",
|
|
239
251
|
"Delete chat": "Delete chat",
|
|
240
252
|
"Delete group": "Delete group",
|
|
241
253
|
"Archive Chat": "Archive Chat",
|
|
@@ -344,6 +356,7 @@
|
|
|
344
356
|
"a11y/Select image": "Select image",
|
|
345
357
|
"a11y/Select video": "Select video",
|
|
346
358
|
"a11y/Send voice recording": "Send voice recording",
|
|
359
|
+
"a11y/Search pinned messages": "Search pinned messages",
|
|
347
360
|
"a11y/Search users to add": "Search users to add",
|
|
348
361
|
"a11y/Select {{name}}": "Select {{name}}",
|
|
349
362
|
"a11y/{{name}} is already a member": "{{name}} is already a member",
|
|
@@ -355,6 +368,7 @@
|
|
|
355
368
|
"Contact Info": "Contact Info",
|
|
356
369
|
"Edit": "Edit",
|
|
357
370
|
"Files": "Files",
|
|
371
|
+
"Share a file to see it here": "Share a file to see it here",
|
|
358
372
|
"Group Info": "Group Info",
|
|
359
373
|
"timestamp/UserActivityStatus": "Last seen {{ timestamp | fromNowFormatter }}",
|
|
360
374
|
"Photos & Videos": "Photos & Videos",
|
|
@@ -405,7 +419,10 @@
|
|
|
405
419
|
"Failed to block user": "Failed to block user",
|
|
406
420
|
"Failed to delete channel": "Failed to delete channel",
|
|
407
421
|
"Failed to leave channel": "Failed to leave channel",
|
|
422
|
+
"Failed to load files": "Failed to load files",
|
|
423
|
+
"Failed to load media": "Failed to load media",
|
|
408
424
|
"Failed to load members": "Failed to load members",
|
|
425
|
+
"Failed to load pinned messages": "Failed to load pinned messages",
|
|
409
426
|
"Failed to load users": "Failed to load users",
|
|
410
427
|
"Failed to play the recording": "Failed to play the recording",
|
|
411
428
|
"Failed to update channel archive status": "Failed to update channel archive status",
|
|
@@ -440,5 +457,11 @@
|
|
|
440
457
|
"a11y/{{count}} unread messages": "{{count}} unread messages",
|
|
441
458
|
"a11y/Gallery Image": "Gallery image",
|
|
442
459
|
"a11y/Gallery Video": "Gallery video",
|
|
443
|
-
"a11y/{{position}} of {{count}}": "{{position}} of {{count}}"
|
|
460
|
+
"a11y/{{position}} of {{count}}": "{{position}} of {{count}}",
|
|
461
|
+
"Notify all {{ role }} members": "Notify all {{ role }} members",
|
|
462
|
+
"a11y/Command suggestions available": "Command suggestions available",
|
|
463
|
+
"a11y/Emoji suggestions available": "Emoji suggestions available",
|
|
464
|
+
"a11y/Mention suggestions available": "Mention suggestions available",
|
|
465
|
+
"mention/Channel Description": "Notify everyone in this channel",
|
|
466
|
+
"mention/Here Description": "Notify every online member in this channel"
|
|
444
467
|
}
|
package/lib/module/i18n/es.json
CHANGED
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
163
163
|
"replied to": "respondió a",
|
|
164
164
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ayer]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Mañana]\", \"nextWeek\":\"dddd [a las] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
165
|
+
"timestamp/FileAttachmentListSection": "{{ timestamp | timestampFormatter(format: MMMM YYYY) }}",
|
|
165
166
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
166
167
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
167
168
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -388,6 +389,7 @@
|
|
|
388
389
|
"Failed to block user": "No se pudo bloquear al usuario",
|
|
389
390
|
"Failed to delete channel": "Error al eliminar el canal",
|
|
390
391
|
"Failed to leave channel": "No se pudo salir del canal",
|
|
392
|
+
"Failed to load pinned messages": "No se pudieron cargar los mensajes fijados",
|
|
391
393
|
"Failed to load users": "No se pudieron cargar los usuarios",
|
|
392
394
|
"Failed to play the recording": "No se pudo reproducir la grabación",
|
|
393
395
|
"Failed to update channel archive status": "No se pudo actualizar el estado de archivo del canal",
|
|
@@ -437,8 +439,29 @@
|
|
|
437
439
|
"a11y/Gallery Image": "Imagen de la galería",
|
|
438
440
|
"a11y/Gallery Video": "Vídeo de la galería",
|
|
439
441
|
"a11y/{{position}} of {{count}}": "{{position}} de {{count}}",
|
|
442
|
+
"No pinned messages": "No hay mensajes fijados",
|
|
443
|
+
"a11y/Search pinned messages": "Buscar mensajes fijados",
|
|
444
|
+
"Long-press a message to pin it to the chat": "Mantén pulsado un mensaje para fijarlo en el chat",
|
|
445
|
+
"No photos or videos": "No hay fotos ni videos",
|
|
446
|
+
"Share a photo or video to see it here": "Comparte una foto o un video para verlo aquí",
|
|
447
|
+
"Failed to load media": "Error al cargar multimedia",
|
|
448
|
+
"No files": "No hay archivos",
|
|
449
|
+
"Share a file to see it here": "Comparte un archivo para verlo aquí",
|
|
450
|
+
"Failed to load files": "Error al cargar los archivos",
|
|
451
|
+
"Notify all {{ role }} members": "Notify all {{ role }} members",
|
|
452
|
+
"a11y/Command suggestions available": "Command suggestions available",
|
|
453
|
+
"a11y/Emoji suggestions available": "Emoji suggestions available",
|
|
454
|
+
"a11y/Mention suggestions available": "Mention suggestions available",
|
|
455
|
+
"mention/Channel Description": "Notify everyone in this channel",
|
|
456
|
+
"mention/Here Description": "Notify every online member in this channel",
|
|
440
457
|
"Pin Chat": "Fijar chat",
|
|
441
458
|
"Pin Group": "Fijar grupo",
|
|
442
459
|
"Unpin Chat": "Desfijar chat",
|
|
443
|
-
"Unpin Group": "Desfijar grupo"
|
|
460
|
+
"Unpin Group": "Desfijar grupo",
|
|
461
|
+
"Block": "Bloquear",
|
|
462
|
+
"Block {{ name }}": "Bloquear a {{ name }}",
|
|
463
|
+
"They won't be able to message or call you. You can unblock them later.": "No podrá enviarte mensajes ni llamarte. Puedes desbloquearlo más tarde.",
|
|
464
|
+
"Leave": "Salir",
|
|
465
|
+
"You'll stop receiving messages from {{ name }}. You can rejoin anytime.": "Dejarás de recibir mensajes de {{ name }}. Puedes volver a unirte cuando quieras.",
|
|
466
|
+
"group": "el grupo"
|
|
444
467
|
}
|
package/lib/module/i18n/fr.json
CHANGED
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
163
163
|
"replied to": "a répondu à",
|
|
164
164
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Hier]\", \"lastWeek\":\"dddd\", \"nextDay\":\"[Demain]\", \"nextWeek\":\"dddd [à] LT\", \"sameDay\":\"LT\", \"sameElse\":\"L\"}) }}",
|
|
165
|
+
"timestamp/FileAttachmentListSection": "{{ timestamp | timestampFormatter(format: MMMM YYYY) }}",
|
|
165
166
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
166
167
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
167
168
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -388,6 +389,7 @@
|
|
|
388
389
|
"Failed to block user": "Échec du blocage de l’utilisateur",
|
|
389
390
|
"Failed to delete channel": "Échec de la suppression du canal",
|
|
390
391
|
"Failed to leave channel": "Échec de la sortie du canal",
|
|
392
|
+
"Failed to load pinned messages": "Échec du chargement des messages épinglés",
|
|
391
393
|
"Failed to load users": "Échec du chargement des utilisateurs",
|
|
392
394
|
"Failed to play the recording": "Échec de la lecture de l’enregistrement",
|
|
393
395
|
"Failed to update channel archive status": "Échec de la mise à jour du statut d’archivage du canal",
|
|
@@ -437,8 +439,29 @@
|
|
|
437
439
|
"a11y/Gallery Image": "Image de la galerie",
|
|
438
440
|
"a11y/Gallery Video": "Vidéo de la galerie",
|
|
439
441
|
"a11y/{{position}} of {{count}}": "{{position}} sur {{count}}",
|
|
442
|
+
"No pinned messages": "Aucun message épinglé",
|
|
443
|
+
"a11y/Search pinned messages": "Rechercher des messages épinglés",
|
|
444
|
+
"Long-press a message to pin it to the chat": "Appuyez longuement sur un message pour l’épingler à la discussion",
|
|
445
|
+
"No photos or videos": "Aucune photo ni vidéo",
|
|
446
|
+
"Share a photo or video to see it here": "Partagez une photo ou une vidéo pour la voir ici",
|
|
447
|
+
"Failed to load media": "Échec du chargement des médias",
|
|
448
|
+
"No files": "Aucun fichier",
|
|
449
|
+
"Share a file to see it here": "Partagez un fichier pour le voir ici",
|
|
450
|
+
"Failed to load files": "Échec du chargement des fichiers",
|
|
451
|
+
"Notify all {{ role }} members": "Notify all {{ role }} members",
|
|
452
|
+
"a11y/Command suggestions available": "Command suggestions available",
|
|
453
|
+
"a11y/Emoji suggestions available": "Emoji suggestions available",
|
|
454
|
+
"a11y/Mention suggestions available": "Mention suggestions available",
|
|
455
|
+
"mention/Channel Description": "Notify everyone in this channel",
|
|
456
|
+
"mention/Here Description": "Notify every online member in this channel",
|
|
440
457
|
"Pin Chat": "Épingler la discussion",
|
|
441
458
|
"Pin Group": "Épingler le groupe",
|
|
442
459
|
"Unpin Chat": "Détacher la discussion",
|
|
443
|
-
"Unpin Group": "Détacher le groupe"
|
|
460
|
+
"Unpin Group": "Détacher le groupe",
|
|
461
|
+
"Block": "Bloquer",
|
|
462
|
+
"Block {{ name }}": "Bloquer {{ name }}",
|
|
463
|
+
"They won't be able to message or call you. You can unblock them later.": "Cette personne ne pourra plus vous envoyer de messages ni vous appeler. Vous pourrez la débloquer plus tard.",
|
|
464
|
+
"Leave": "Quitter",
|
|
465
|
+
"You'll stop receiving messages from {{ name }}. You can rejoin anytime.": "Vous ne recevrez plus de messages de {{ name }}. Vous pouvez rejoindre à tout moment.",
|
|
466
|
+
"group": "ce groupe"
|
|
444
467
|
}
|
package/lib/module/i18n/he.json
CHANGED
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
163
163
|
"replied to": "הגיב ל",
|
|
164
164
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[אתמול]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[מחר]\",\"nextWeek\":\"dddd [בשעה] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
165
|
+
"timestamp/FileAttachmentListSection": "{{ timestamp | timestampFormatter(format: MMMM YYYY) }}",
|
|
165
166
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
166
167
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
167
168
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -388,6 +389,7 @@
|
|
|
388
389
|
"Failed to block user": "חסימת המשתמש נכשלה",
|
|
389
390
|
"Failed to delete channel": "מחיקת השיחה נכשלה",
|
|
390
391
|
"Failed to leave channel": "עזיבת השיחה נכשלה",
|
|
392
|
+
"Failed to load pinned messages": "טעינת ההודעות המוצמדות נכשלה",
|
|
391
393
|
"Failed to load users": "טעינת המשתמשים נכשלה",
|
|
392
394
|
"Failed to play the recording": "הפעלת ההקלטה נכשלה",
|
|
393
395
|
"Failed to update channel archive status": "עדכון מצב הארכיון של השיחה נכשל",
|
|
@@ -437,8 +439,29 @@
|
|
|
437
439
|
"a11y/Gallery Image": "תמונה מהגלריה",
|
|
438
440
|
"a11y/Gallery Video": "סרטון מהגלריה",
|
|
439
441
|
"a11y/{{position}} of {{count}}": "{{position}} מתוך {{count}}",
|
|
442
|
+
"No pinned messages": "אין הודעות מוצמדות",
|
|
443
|
+
"a11y/Search pinned messages": "חיפוש הודעות מוצמדות",
|
|
444
|
+
"Long-press a message to pin it to the chat": "לחץ לחיצה ארוכה על הודעה כדי להצמיד אותה לצ'אט",
|
|
445
|
+
"No photos or videos": "אין תמונות או סרטונים",
|
|
446
|
+
"Share a photo or video to see it here": "שתפו תמונה או סרטון כדי לראות אותם כאן",
|
|
447
|
+
"Failed to load media": "טעינת המדיה נכשלה",
|
|
448
|
+
"No files": "אין קבצים",
|
|
449
|
+
"Share a file to see it here": "שתפו קובץ כדי לראות אותו כאן",
|
|
450
|
+
"Failed to load files": "טעינת הקבצים נכשלה",
|
|
451
|
+
"Notify all {{ role }} members": "Notify all {{ role }} members",
|
|
452
|
+
"a11y/Command suggestions available": "Command suggestions available",
|
|
453
|
+
"a11y/Emoji suggestions available": "Emoji suggestions available",
|
|
454
|
+
"a11y/Mention suggestions available": "Mention suggestions available",
|
|
455
|
+
"mention/Channel Description": "Notify everyone in this channel",
|
|
456
|
+
"mention/Here Description": "Notify every online member in this channel",
|
|
440
457
|
"Pin Chat": "הצמד/י צ'אט",
|
|
441
458
|
"Pin Group": "הצמד/י קבוצה",
|
|
442
459
|
"Unpin Chat": "בטל/י הצמדת צ'אט",
|
|
443
|
-
"Unpin Group": "בטל/י הצמדת קבוצה"
|
|
460
|
+
"Unpin Group": "בטל/י הצמדת קבוצה",
|
|
461
|
+
"Block": "חסום/חסמי",
|
|
462
|
+
"Block {{ name }}": "חסימת {{ name }}",
|
|
463
|
+
"They won't be able to message or call you. You can unblock them later.": "הוא/היא לא יוכל/תוכל לשלוח לך הודעות או להתקשר אליך. ניתן לבטל את החסימה מאוחר יותר.",
|
|
464
|
+
"Leave": "צא/י",
|
|
465
|
+
"You'll stop receiving messages from {{ name }}. You can rejoin anytime.": "תפסיק/תפסיקי לקבל הודעות מ-{{ name }}. ניתן להצטרף בחזרה בכל עת.",
|
|
466
|
+
"group": "הקבוצה"
|
|
444
467
|
}
|
package/lib/module/i18n/hi.json
CHANGED
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
163
163
|
"replied to": "को उत्तर दिया",
|
|
164
164
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[कल]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[कल]\",\"nextWeek\":\"dddd [को] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
165
|
+
"timestamp/FileAttachmentListSection": "{{ timestamp | timestampFormatter(format: MMMM YYYY) }}",
|
|
165
166
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
166
167
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
167
168
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -388,6 +389,7 @@
|
|
|
388
389
|
"Failed to block user": "उपयोगकर्ता को ब्लॉक करने में विफल",
|
|
389
390
|
"Failed to delete channel": "चैनल हटाने में विफल",
|
|
390
391
|
"Failed to leave channel": "चैनल छोड़ने में विफल",
|
|
392
|
+
"Failed to load pinned messages": "पिन किए गए संदेश लोड करने में विफल",
|
|
391
393
|
"Failed to load users": "उपयोगकर्ता लोड करने में विफल",
|
|
392
394
|
"Failed to play the recording": "रिकॉर्डिंग चलाने में विफल",
|
|
393
395
|
"Failed to update channel archive status": "चैनल आर्काइव स्थिति अपडेट करने में विफल",
|
|
@@ -437,8 +439,29 @@
|
|
|
437
439
|
"a11y/Gallery Image": "गैलरी छवि",
|
|
438
440
|
"a11y/Gallery Video": "गैलरी वीडियो",
|
|
439
441
|
"a11y/{{position}} of {{count}}": "{{count}} में से {{position}}",
|
|
442
|
+
"No pinned messages": "कोई पिन किया गया संदेश नहीं",
|
|
443
|
+
"a11y/Search pinned messages": "पिन किए गए संदेश खोजें",
|
|
444
|
+
"Long-press a message to pin it to the chat": "किसी संदेश को चैट में पिन करने के लिए उसे देर तक दबाएँ",
|
|
445
|
+
"No photos or videos": "कोई फ़ोटो या वीडियो नहीं",
|
|
446
|
+
"Share a photo or video to see it here": "इसे यहाँ देखने के लिए कोई फ़ोटो या वीडियो शेयर करें",
|
|
447
|
+
"Failed to load media": "मीडिया लोड करने में विफल",
|
|
448
|
+
"No files": "कोई फ़ाइल नहीं",
|
|
449
|
+
"Share a file to see it here": "इसे यहाँ देखने के लिए कोई फ़ाइल शेयर करें",
|
|
450
|
+
"Failed to load files": "फ़ाइलें लोड करने में विफल",
|
|
451
|
+
"Notify all {{ role }} members": "Notify all {{ role }} members",
|
|
452
|
+
"a11y/Command suggestions available": "Command suggestions available",
|
|
453
|
+
"a11y/Emoji suggestions available": "Emoji suggestions available",
|
|
454
|
+
"a11y/Mention suggestions available": "Mention suggestions available",
|
|
455
|
+
"mention/Channel Description": "Notify everyone in this channel",
|
|
456
|
+
"mention/Here Description": "Notify every online member in this channel",
|
|
440
457
|
"Pin Chat": "चैट पिन करें",
|
|
441
458
|
"Pin Group": "ग्रुप पिन करें",
|
|
442
459
|
"Unpin Chat": "चैट अनपिन करें",
|
|
443
|
-
"Unpin Group": "ग्रुप अनपिन करें"
|
|
460
|
+
"Unpin Group": "ग्रुप अनपिन करें",
|
|
461
|
+
"Block": "ब्लॉक करें",
|
|
462
|
+
"Block {{ name }}": "{{ name }} को ब्लॉक करें",
|
|
463
|
+
"They won't be able to message or call you. You can unblock them later.": "वे आपको संदेश या कॉल नहीं कर पाएंगे। आप उन्हें बाद में अनब्लॉक कर सकते हैं।",
|
|
464
|
+
"Leave": "छोड़ें",
|
|
465
|
+
"You'll stop receiving messages from {{ name }}. You can rejoin anytime.": "आपको {{ name }} से संदेश मिलना बंद हो जाएंगे। आप कभी भी दोबारा जुड़ सकते हैं।",
|
|
466
|
+
"group": "ग्रुप"
|
|
444
467
|
}
|
package/lib/module/i18n/it.json
CHANGED
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
163
163
|
"replied to": "ha risposto a",
|
|
164
164
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
165
|
+
"timestamp/FileAttachmentListSection": "{{ timestamp | timestampFormatter(format: MMMM YYYY) }}",
|
|
165
166
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
166
167
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
167
168
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -388,6 +389,7 @@
|
|
|
388
389
|
"Failed to block user": "Impossibile bloccare l'utente",
|
|
389
390
|
"Failed to delete channel": "Impossibile eliminare il canale",
|
|
390
391
|
"Failed to leave channel": "Impossibile lasciare il canale",
|
|
392
|
+
"Failed to load pinned messages": "Impossibile caricare i messaggi fissati",
|
|
391
393
|
"Failed to load users": "Impossibile caricare gli utenti",
|
|
392
394
|
"Failed to play the recording": "Impossibile riprodurre la registrazione",
|
|
393
395
|
"Failed to update channel archive status": "Impossibile aggiornare lo stato di archiviazione del canale",
|
|
@@ -437,8 +439,29 @@
|
|
|
437
439
|
"a11y/Gallery Image": "Immagine della galleria",
|
|
438
440
|
"a11y/Gallery Video": "Video della galleria",
|
|
439
441
|
"a11y/{{position}} of {{count}}": "{{position}} di {{count}}",
|
|
442
|
+
"No pinned messages": "Nessun messaggio in evidenza",
|
|
443
|
+
"a11y/Search pinned messages": "Cerca messaggi in evidenza",
|
|
444
|
+
"Long-press a message to pin it to the chat": "Tieni premuto un messaggio per fissarlo nella chat",
|
|
445
|
+
"No photos or videos": "Nessuna foto o video",
|
|
446
|
+
"Share a photo or video to see it here": "Condividi una foto o un video per vederlo qui",
|
|
447
|
+
"Failed to load media": "Caricamento dei file multimediali non riuscito",
|
|
448
|
+
"No files": "Nessun file",
|
|
449
|
+
"Share a file to see it here": "Condividi un file per vederlo qui",
|
|
450
|
+
"Failed to load files": "Caricamento dei file non riuscito",
|
|
451
|
+
"Notify all {{ role }} members": "Notify all {{ role }} members",
|
|
452
|
+
"a11y/Command suggestions available": "Command suggestions available",
|
|
453
|
+
"a11y/Emoji suggestions available": "Emoji suggestions available",
|
|
454
|
+
"a11y/Mention suggestions available": "Mention suggestions available",
|
|
455
|
+
"mention/Channel Description": "Notify everyone in this channel",
|
|
456
|
+
"mention/Here Description": "Notify every online member in this channel",
|
|
440
457
|
"Pin Chat": "Fissa chat",
|
|
441
458
|
"Pin Group": "Fissa gruppo",
|
|
442
459
|
"Unpin Chat": "Sfissa chat",
|
|
443
|
-
"Unpin Group": "Sfissa gruppo"
|
|
460
|
+
"Unpin Group": "Sfissa gruppo",
|
|
461
|
+
"Block": "Blocca",
|
|
462
|
+
"Block {{ name }}": "Blocca {{ name }}",
|
|
463
|
+
"They won't be able to message or call you. You can unblock them later.": "Non potrà inviarti messaggi né chiamarti. Potrai sbloccarlo in seguito.",
|
|
464
|
+
"Leave": "Esci",
|
|
465
|
+
"You'll stop receiving messages from {{ name }}. You can rejoin anytime.": "Non riceverai più messaggi da {{ name }}. Puoi rientrare in qualsiasi momento.",
|
|
466
|
+
"group": "il gruppo"
|
|
444
467
|
}
|
package/lib/module/i18n/ja.json
CHANGED
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
163
163
|
"replied to": "に返信しました",
|
|
164
164
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
165
|
+
"timestamp/FileAttachmentListSection": "{{ timestamp | timestampFormatter(format: MMMM YYYY) }}",
|
|
165
166
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
166
167
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
167
168
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -388,6 +389,7 @@
|
|
|
388
389
|
"Failed to block user": "ユーザーのブロックに失敗しました",
|
|
389
390
|
"Failed to delete channel": "チャンネルの削除に失敗しました",
|
|
390
391
|
"Failed to leave channel": "チャンネルの退出に失敗しました",
|
|
392
|
+
"Failed to load pinned messages": "ピン留めされたメッセージの読み込みに失敗しました",
|
|
391
393
|
"Failed to load users": "ユーザーの読み込みに失敗しました",
|
|
392
394
|
"Failed to play the recording": "録音の再生に失敗しました",
|
|
393
395
|
"Failed to update channel archive status": "チャンネルのアーカイブ状態の更新に失敗しました",
|
|
@@ -437,8 +439,29 @@
|
|
|
437
439
|
"a11y/Gallery Image": "ギャラリー画像",
|
|
438
440
|
"a11y/Gallery Video": "ギャラリービデオ",
|
|
439
441
|
"a11y/{{position}} of {{count}}": "{{count}} 中 {{position}}",
|
|
442
|
+
"No pinned messages": "ピン留めされたメッセージはありません",
|
|
443
|
+
"a11y/Search pinned messages": "ピン留めされたメッセージを検索",
|
|
444
|
+
"Long-press a message to pin it to the chat": "メッセージを長押ししてチャットにピン留めします",
|
|
445
|
+
"No photos or videos": "写真や動画はありません",
|
|
446
|
+
"Share a photo or video to see it here": "写真や動画を共有すると、ここに表示されます",
|
|
447
|
+
"Failed to load media": "メディアの読み込みに失敗しました",
|
|
448
|
+
"No files": "ファイルがありません",
|
|
449
|
+
"Share a file to see it here": "ファイルを共有すると、ここに表示されます",
|
|
450
|
+
"Failed to load files": "ファイルの読み込みに失敗しました",
|
|
451
|
+
"Notify all {{ role }} members": "Notify all {{ role }} members",
|
|
452
|
+
"a11y/Command suggestions available": "Command suggestions available",
|
|
453
|
+
"a11y/Emoji suggestions available": "Emoji suggestions available",
|
|
454
|
+
"a11y/Mention suggestions available": "Mention suggestions available",
|
|
455
|
+
"mention/Channel Description": "Notify everyone in this channel",
|
|
456
|
+
"mention/Here Description": "Notify every online member in this channel",
|
|
440
457
|
"Pin Chat": "チャットをピン留め",
|
|
441
458
|
"Pin Group": "グループをピン留め",
|
|
442
459
|
"Unpin Chat": "チャットのピン留めを解除",
|
|
443
|
-
"Unpin Group": "グループのピン留めを解除"
|
|
460
|
+
"Unpin Group": "グループのピン留めを解除",
|
|
461
|
+
"Block": "ブロック",
|
|
462
|
+
"Block {{ name }}": "{{ name }} をブロック",
|
|
463
|
+
"They won't be able to message or call you. You can unblock them later.": "メッセージや通話ができなくなります。あとでブロックを解除することもできます。",
|
|
464
|
+
"Leave": "退出",
|
|
465
|
+
"You'll stop receiving messages from {{ name }}. You can rejoin anytime.": "{{ name }} からのメッセージが届かなくなります。いつでも再参加できます。",
|
|
466
|
+
"group": "グループ"
|
|
444
467
|
}
|
package/lib/module/i18n/ko.json
CHANGED
|
@@ -162,6 +162,7 @@
|
|
|
162
162
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
163
163
|
"replied to": "에 답장했습니다",
|
|
164
164
|
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
165
|
+
"timestamp/FileAttachmentListSection": "{{ timestamp | timestampFormatter(format: MMMM YYYY) }}",
|
|
165
166
|
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
166
167
|
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
167
168
|
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -388,6 +389,7 @@
|
|
|
388
389
|
"Failed to block user": "사용자 차단에 실패했습니다",
|
|
389
390
|
"Failed to delete channel": "채널 삭제에 실패했습니다",
|
|
390
391
|
"Failed to leave channel": "채널 나가기에 실패했습니다",
|
|
392
|
+
"Failed to load pinned messages": "고정된 메시지를 불러오지 못했습니다",
|
|
391
393
|
"Failed to load users": "사용자 불러오기에 실패했습니다",
|
|
392
394
|
"Failed to play the recording": "녹음 재생에 실패했습니다",
|
|
393
395
|
"Failed to update channel archive status": "채널 보관 상태 업데이트에 실패했습니다",
|
|
@@ -437,8 +439,29 @@
|
|
|
437
439
|
"a11y/Gallery Image": "갤러리 이미지",
|
|
438
440
|
"a11y/Gallery Video": "갤러리 동영상",
|
|
439
441
|
"a11y/{{position}} of {{count}}": "{{count}}개 중 {{position}}번째",
|
|
442
|
+
"No pinned messages": "고정된 메시지가 없습니다",
|
|
443
|
+
"a11y/Search pinned messages": "고정된 메시지 검색",
|
|
444
|
+
"Long-press a message to pin it to the chat": "메시지를 길게 눌러 채팅에 고정하세요",
|
|
445
|
+
"No photos or videos": "사진 또는 동영상 없음",
|
|
446
|
+
"Share a photo or video to see it here": "사진이나 동영상을 공유하면 여기에 표시됩니다",
|
|
447
|
+
"Failed to load media": "미디어를 불러오지 못했습니다",
|
|
448
|
+
"No files": "파일 없음",
|
|
449
|
+
"Share a file to see it here": "파일을 공유하면 여기에 표시됩니다",
|
|
450
|
+
"Failed to load files": "파일을 불러오지 못했습니다",
|
|
451
|
+
"Notify all {{ role }} members": "Notify all {{ role }} members",
|
|
452
|
+
"a11y/Command suggestions available": "Command suggestions available",
|
|
453
|
+
"a11y/Emoji suggestions available": "Emoji suggestions available",
|
|
454
|
+
"a11y/Mention suggestions available": "Mention suggestions available",
|
|
455
|
+
"mention/Channel Description": "Notify everyone in this channel",
|
|
456
|
+
"mention/Here Description": "Notify every online member in this channel",
|
|
440
457
|
"Pin Chat": "채팅 고정",
|
|
441
458
|
"Pin Group": "그룹 고정",
|
|
442
459
|
"Unpin Chat": "채팅 고정 해제",
|
|
443
|
-
"Unpin Group": "그룹 고정 해제"
|
|
460
|
+
"Unpin Group": "그룹 고정 해제",
|
|
461
|
+
"Block": "차단",
|
|
462
|
+
"Block {{ name }}": "{{ name }} 차단",
|
|
463
|
+
"They won't be able to message or call you. You can unblock them later.": "메시지를 보내거나 전화를 걸 수 없게 됩니다. 나중에 차단을 해제할 수 있습니다.",
|
|
464
|
+
"Leave": "나가기",
|
|
465
|
+
"You'll stop receiving messages from {{ name }}. You can rejoin anytime.": "{{ name }}에서 더 이상 메시지를 받지 않게 됩니다. 언제든지 다시 참여할 수 있습니다.",
|
|
466
|
+
"group": "그룹"
|
|
444
467
|
}
|