stream-chat-react-native-core 9.2.0-beta.2 → 9.2.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/lib/commonjs/components/AttachmentPicker/components/AttachmentPickerContent.js +2 -2
- package/lib/commonjs/components/AttachmentPicker/components/AttachmentPickerContent.js.map +1 -1
- package/lib/commonjs/components/Channel/Channel.js +10 -1
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useMessageListPagination.js +26 -3
- package/lib/commonjs/components/Channel/hooks/useMessageListPagination.js.map +1 -1
- package/lib/commonjs/components/ChannelList/ChannelList.js +29 -4
- package/lib/commonjs/components/ChannelList/ChannelList.js.map +1 -1
- package/lib/commonjs/components/ChannelList/hooks/useChannelActions.js +314 -11
- package/lib/commonjs/components/ChannelList/hooks/useChannelActions.js.map +1 -1
- package/lib/commonjs/components/Message/hooks/useMessageActionHandlers.js +202 -15
- package/lib/commonjs/components/Message/hooks/useMessageActionHandlers.js.map +1 -1
- package/lib/commonjs/components/MessageInput/MessageComposer.js +1 -1
- package/lib/commonjs/components/MessageInput/MessageComposerLeadingView.js +1 -1
- package/lib/commonjs/components/MessageInput/MessageComposerLeadingView.js.map +1 -1
- package/lib/commonjs/components/MessageInput/MessageInputHeaderView.js +1 -1
- package/lib/commonjs/components/MessageInput/MessageInputHeaderView.js.map +1 -1
- package/lib/commonjs/components/MessageInput/MessageInputTrailingView.js +1 -1
- package/lib/commonjs/components/MessageInput/MessageInputTrailingView.js.map +1 -1
- package/lib/commonjs/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.js +7 -13
- package/lib/commonjs/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.js.map +1 -1
- package/lib/commonjs/components/MessageInput/components/AudioRecorder/AudioRecorder.js +27 -6
- package/lib/commonjs/components/MessageInput/components/AudioRecorder/AudioRecorder.js.map +1 -1
- package/lib/commonjs/components/MessageInput/components/AudioRecorder/AudioRecordingButton.js +29 -9
- package/lib/commonjs/components/MessageInput/components/AudioRecorder/AudioRecordingButton.js.map +1 -1
- package/lib/commonjs/components/MessageInput/components/OutputButtons/index.js +1 -1
- package/lib/commonjs/components/MessageList/MessageFlashList.js +5 -2
- package/lib/commonjs/components/MessageList/MessageFlashList.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +5 -2
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/components/MessageMenu/hooks/useFetchReactions.js +23 -2
- package/lib/commonjs/components/MessageMenu/hooks/useFetchReactions.js.map +1 -1
- package/lib/commonjs/components/Notifications/Notification.js +230 -0
- package/lib/commonjs/components/Notifications/Notification.js.map +1 -0
- package/lib/commonjs/components/Notifications/NotificationList.js +120 -0
- package/lib/commonjs/components/Notifications/NotificationList.js.map +1 -0
- package/lib/commonjs/components/Notifications/NotificationTargetContext.js +45 -0
- package/lib/commonjs/components/Notifications/NotificationTargetContext.js.map +1 -0
- package/lib/commonjs/components/Notifications/hooks/index.js +59 -0
- package/lib/commonjs/components/Notifications/hooks/index.js.map +1 -0
- package/lib/commonjs/components/Notifications/hooks/useNotificationApi.js +133 -0
- package/lib/commonjs/components/Notifications/hooks/useNotificationApi.js.map +1 -0
- package/lib/commonjs/components/Notifications/hooks/useNotificationListController.js +133 -0
- package/lib/commonjs/components/Notifications/hooks/useNotificationListController.js.map +1 -0
- package/lib/commonjs/components/Notifications/hooks/useNotificationTarget.js +26 -0
- package/lib/commonjs/components/Notifications/hooks/useNotificationTarget.js.map +1 -0
- package/lib/commonjs/components/Notifications/hooks/useNotifications.js +26 -0
- package/lib/commonjs/components/Notifications/hooks/useNotifications.js.map +1 -0
- package/lib/commonjs/components/Notifications/hooks/useSystemNotifications.js +22 -0
- package/lib/commonjs/components/Notifications/hooks/useSystemNotifications.js.map +1 -0
- package/lib/commonjs/components/Notifications/index.js +59 -0
- package/lib/commonjs/components/Notifications/index.js.map +1 -0
- package/lib/commonjs/components/Notifications/notificationTarget.js +220 -0
- package/lib/commonjs/components/Notifications/notificationTarget.js.map +1 -0
- package/lib/commonjs/components/Notifications/notificationTranslations.js +137 -0
- package/lib/commonjs/components/Notifications/notificationTranslations.js.map +1 -0
- package/lib/commonjs/components/Poll/components/PollOption.js +14 -9
- package/lib/commonjs/components/Poll/components/PollOption.js.map +1 -1
- package/lib/commonjs/components/Poll/hooks/usePollState.js +35 -3
- package/lib/commonjs/components/Poll/hooks/usePollState.js.map +1 -1
- package/lib/commonjs/components/Thread/Thread.js +19 -11
- package/lib/commonjs/components/Thread/Thread.js.map +1 -1
- package/lib/commonjs/components/ThreadList/ThreadList.js +30 -9
- package/lib/commonjs/components/ThreadList/ThreadList.js.map +1 -1
- package/lib/commonjs/components/index.js +11 -0
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/contexts/componentsContext/defaultComponents.js +4 -0
- package/lib/commonjs/contexts/componentsContext/defaultComponents.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +37 -0
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/commonjs/contexts/themeContext/utils/theme.js +13 -0
- package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/commonjs/hooks/index.js +11 -0
- package/lib/commonjs/hooks/index.js.map +1 -1
- package/lib/commonjs/hooks/useAudioPlayer.js +34 -1
- package/lib/commonjs/hooks/useAudioPlayer.js.map +1 -1
- package/lib/commonjs/hooks/useInAppNotificationsState.js.map +1 -1
- package/lib/commonjs/hooks/useLazyRef.js +13 -0
- package/lib/commonjs/hooks/useLazyRef.js.map +1 -0
- package/lib/commonjs/i18n/en.json +60 -1
- package/lib/commonjs/i18n/es.json +62 -3
- package/lib/commonjs/i18n/fr.json +60 -1
- package/lib/commonjs/i18n/he.json +60 -1
- package/lib/commonjs/i18n/hi.json +60 -1
- package/lib/commonjs/i18n/it.json +60 -1
- package/lib/commonjs/i18n/ja.json +60 -1
- package/lib/commonjs/i18n/ko.json +60 -1
- package/lib/commonjs/i18n/nl.json +60 -1
- package/lib/commonjs/i18n/pt-br.json +60 -1
- package/lib/commonjs/i18n/ru.json +60 -1
- package/lib/commonjs/i18n/tr.json +60 -1
- package/lib/commonjs/state-store/audio-player-pool.js +1 -0
- package/lib/commonjs/state-store/audio-player-pool.js.map +1 -1
- package/lib/commonjs/state-store/audio-player.js +92 -13
- package/lib/commonjs/state-store/audio-player.js.map +1 -1
- package/lib/commonjs/theme/generated/dark/StreamTokens.android.js +16 -16
- package/lib/commonjs/theme/generated/dark/StreamTokens.android.js.map +1 -1
- package/lib/commonjs/theme/generated/dark/StreamTokens.ios.js +8 -8
- package/lib/commonjs/theme/generated/dark/StreamTokens.ios.js.map +1 -1
- package/lib/commonjs/theme/generated/dark/StreamTokens.web.js +8 -8
- package/lib/commonjs/theme/generated/dark/StreamTokens.web.js.map +1 -1
- package/lib/commonjs/theme/generated/light/StreamTokens.android.js +16 -16
- package/lib/commonjs/theme/generated/light/StreamTokens.android.js.map +1 -1
- package/lib/commonjs/theme/generated/light/StreamTokens.ios.js +8 -8
- package/lib/commonjs/theme/generated/light/StreamTokens.ios.js.map +1 -1
- package/lib/commonjs/theme/generated/light/StreamTokens.web.js +8 -8
- package/lib/commonjs/theme/generated/light/StreamTokens.web.js.map +1 -1
- package/lib/commonjs/utils/animations/createBoundedZoomTransition.js +151 -0
- package/lib/commonjs/utils/animations/createBoundedZoomTransition.js.map +1 -0
- package/lib/commonjs/utils/{transitions.js → animations/transitions.js} +6 -0
- package/lib/commonjs/utils/animations/transitions.js.map +1 -0
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/AttachmentPicker/components/AttachmentPickerContent.js +2 -2
- package/lib/module/components/AttachmentPicker/components/AttachmentPickerContent.js.map +1 -1
- package/lib/module/components/Channel/Channel.js +10 -1
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Channel/hooks/useMessageListPagination.js +26 -3
- package/lib/module/components/Channel/hooks/useMessageListPagination.js.map +1 -1
- package/lib/module/components/ChannelList/ChannelList.js +29 -4
- package/lib/module/components/ChannelList/ChannelList.js.map +1 -1
- package/lib/module/components/ChannelList/hooks/useChannelActions.js +314 -11
- package/lib/module/components/ChannelList/hooks/useChannelActions.js.map +1 -1
- package/lib/module/components/Message/hooks/useMessageActionHandlers.js +202 -15
- package/lib/module/components/Message/hooks/useMessageActionHandlers.js.map +1 -1
- package/lib/module/components/MessageInput/MessageComposer.js +1 -1
- package/lib/module/components/MessageInput/MessageComposerLeadingView.js +1 -1
- package/lib/module/components/MessageInput/MessageComposerLeadingView.js.map +1 -1
- package/lib/module/components/MessageInput/MessageInputHeaderView.js +1 -1
- package/lib/module/components/MessageInput/MessageInputHeaderView.js.map +1 -1
- package/lib/module/components/MessageInput/MessageInputTrailingView.js +1 -1
- package/lib/module/components/MessageInput/MessageInputTrailingView.js.map +1 -1
- package/lib/module/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.js +7 -13
- package/lib/module/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.js.map +1 -1
- package/lib/module/components/MessageInput/components/AudioRecorder/AudioRecorder.js +27 -6
- package/lib/module/components/MessageInput/components/AudioRecorder/AudioRecorder.js.map +1 -1
- package/lib/module/components/MessageInput/components/AudioRecorder/AudioRecordingButton.js +29 -9
- package/lib/module/components/MessageInput/components/AudioRecorder/AudioRecordingButton.js.map +1 -1
- package/lib/module/components/MessageInput/components/OutputButtons/index.js +1 -1
- package/lib/module/components/MessageList/MessageFlashList.js +5 -2
- package/lib/module/components/MessageList/MessageFlashList.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +5 -2
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/components/MessageMenu/hooks/useFetchReactions.js +23 -2
- package/lib/module/components/MessageMenu/hooks/useFetchReactions.js.map +1 -1
- package/lib/module/components/Notifications/Notification.js +230 -0
- package/lib/module/components/Notifications/Notification.js.map +1 -0
- package/lib/module/components/Notifications/NotificationList.js +120 -0
- package/lib/module/components/Notifications/NotificationList.js.map +1 -0
- package/lib/module/components/Notifications/NotificationTargetContext.js +45 -0
- package/lib/module/components/Notifications/NotificationTargetContext.js.map +1 -0
- package/lib/module/components/Notifications/hooks/index.js +59 -0
- package/lib/module/components/Notifications/hooks/index.js.map +1 -0
- package/lib/module/components/Notifications/hooks/useNotificationApi.js +133 -0
- package/lib/module/components/Notifications/hooks/useNotificationApi.js.map +1 -0
- package/lib/module/components/Notifications/hooks/useNotificationListController.js +133 -0
- package/lib/module/components/Notifications/hooks/useNotificationListController.js.map +1 -0
- package/lib/module/components/Notifications/hooks/useNotificationTarget.js +26 -0
- package/lib/module/components/Notifications/hooks/useNotificationTarget.js.map +1 -0
- package/lib/module/components/Notifications/hooks/useNotifications.js +26 -0
- package/lib/module/components/Notifications/hooks/useNotifications.js.map +1 -0
- package/lib/module/components/Notifications/hooks/useSystemNotifications.js +22 -0
- package/lib/module/components/Notifications/hooks/useSystemNotifications.js.map +1 -0
- package/lib/module/components/Notifications/index.js +59 -0
- package/lib/module/components/Notifications/index.js.map +1 -0
- package/lib/module/components/Notifications/notificationTarget.js +220 -0
- package/lib/module/components/Notifications/notificationTarget.js.map +1 -0
- package/lib/module/components/Notifications/notificationTranslations.js +137 -0
- package/lib/module/components/Notifications/notificationTranslations.js.map +1 -0
- package/lib/module/components/Poll/components/PollOption.js +14 -9
- package/lib/module/components/Poll/components/PollOption.js.map +1 -1
- package/lib/module/components/Poll/hooks/usePollState.js +35 -3
- package/lib/module/components/Poll/hooks/usePollState.js.map +1 -1
- package/lib/module/components/Thread/Thread.js +19 -11
- package/lib/module/components/Thread/Thread.js.map +1 -1
- package/lib/module/components/ThreadList/ThreadList.js +30 -9
- package/lib/module/components/ThreadList/ThreadList.js.map +1 -1
- package/lib/module/components/index.js +11 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/contexts/componentsContext/defaultComponents.js +4 -0
- package/lib/module/contexts/componentsContext/defaultComponents.js.map +1 -1
- package/lib/module/contexts/messageInputContext/MessageInputContext.js +37 -0
- package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/module/contexts/themeContext/utils/theme.js +13 -0
- package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
- package/lib/module/hooks/index.js +11 -0
- package/lib/module/hooks/index.js.map +1 -1
- package/lib/module/hooks/useAudioPlayer.js +34 -1
- package/lib/module/hooks/useAudioPlayer.js.map +1 -1
- package/lib/module/hooks/useInAppNotificationsState.js.map +1 -1
- package/lib/module/hooks/useLazyRef.js +13 -0
- package/lib/module/hooks/useLazyRef.js.map +1 -0
- package/lib/module/i18n/en.json +60 -1
- package/lib/module/i18n/es.json +62 -3
- package/lib/module/i18n/fr.json +60 -1
- package/lib/module/i18n/he.json +60 -1
- package/lib/module/i18n/hi.json +60 -1
- package/lib/module/i18n/it.json +60 -1
- package/lib/module/i18n/ja.json +60 -1
- package/lib/module/i18n/ko.json +60 -1
- package/lib/module/i18n/nl.json +60 -1
- package/lib/module/i18n/pt-br.json +60 -1
- package/lib/module/i18n/ru.json +60 -1
- package/lib/module/i18n/tr.json +60 -1
- package/lib/module/state-store/audio-player-pool.js +1 -0
- package/lib/module/state-store/audio-player-pool.js.map +1 -1
- package/lib/module/state-store/audio-player.js +92 -13
- package/lib/module/state-store/audio-player.js.map +1 -1
- package/lib/module/theme/generated/dark/StreamTokens.android.js +16 -16
- package/lib/module/theme/generated/dark/StreamTokens.android.js.map +1 -1
- package/lib/module/theme/generated/dark/StreamTokens.ios.js +8 -8
- package/lib/module/theme/generated/dark/StreamTokens.ios.js.map +1 -1
- package/lib/module/theme/generated/dark/StreamTokens.web.js +8 -8
- package/lib/module/theme/generated/dark/StreamTokens.web.js.map +1 -1
- package/lib/module/theme/generated/light/StreamTokens.android.js +16 -16
- package/lib/module/theme/generated/light/StreamTokens.android.js.map +1 -1
- package/lib/module/theme/generated/light/StreamTokens.ios.js +8 -8
- package/lib/module/theme/generated/light/StreamTokens.ios.js.map +1 -1
- package/lib/module/theme/generated/light/StreamTokens.web.js +8 -8
- package/lib/module/theme/generated/light/StreamTokens.web.js.map +1 -1
- package/lib/module/utils/animations/createBoundedZoomTransition.js +151 -0
- package/lib/module/utils/animations/createBoundedZoomTransition.js.map +1 -0
- package/lib/module/utils/{transitions.js → animations/transitions.js} +6 -0
- package/lib/module/utils/animations/transitions.js.map +1 -0
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/AttachmentPicker/components/AttachmentPickerContent.d.ts.map +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts +1 -0
- package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
- package/lib/typescript/components/Channel/hooks/useMessageListPagination.d.ts.map +1 -1
- package/lib/typescript/components/ChannelList/ChannelList.d.ts +1 -0
- package/lib/typescript/components/ChannelList/ChannelList.d.ts.map +1 -1
- package/lib/typescript/components/ChannelList/hooks/useChannelActions.d.ts.map +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActionHandlers.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/components/AudioRecorder/AudioRecorder.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/components/AudioRecorder/AudioRecordingButton.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/MessageMenu/hooks/useFetchReactions.d.ts.map +1 -1
- package/lib/typescript/components/Notifications/Notification.d.ts +31 -0
- package/lib/typescript/components/Notifications/Notification.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/NotificationList.d.ts +28 -0
- package/lib/typescript/components/Notifications/NotificationList.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/NotificationTargetContext.d.ts +14 -0
- package/lib/typescript/components/Notifications/NotificationTargetContext.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/hooks/index.d.ts +6 -0
- package/lib/typescript/components/Notifications/hooks/index.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/hooks/useNotificationApi.d.ts +48 -0
- package/lib/typescript/components/Notifications/hooks/useNotificationApi.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/hooks/useNotificationListController.d.ts +14 -0
- package/lib/typescript/components/Notifications/hooks/useNotificationListController.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/hooks/useNotificationTarget.d.ts +3 -0
- package/lib/typescript/components/Notifications/hooks/useNotificationTarget.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/hooks/useNotifications.d.ts +14 -0
- package/lib/typescript/components/Notifications/hooks/useNotifications.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/hooks/useSystemNotifications.d.ts +9 -0
- package/lib/typescript/components/Notifications/hooks/useSystemNotifications.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/index.d.ts +6 -0
- package/lib/typescript/components/Notifications/index.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/notificationTarget.d.ts +55 -0
- package/lib/typescript/components/Notifications/notificationTarget.d.ts.map +1 -0
- package/lib/typescript/components/Notifications/notificationTranslations.d.ts +7 -0
- package/lib/typescript/components/Notifications/notificationTranslations.d.ts.map +1 -0
- package/lib/typescript/components/Poll/components/PollOption.d.ts.map +1 -1
- package/lib/typescript/components/Poll/hooks/usePollState.d.ts.map +1 -1
- package/lib/typescript/components/Thread/Thread.d.ts +1 -0
- package/lib/typescript/components/Thread/Thread.d.ts.map +1 -1
- package/lib/typescript/components/ThreadList/ThreadList.d.ts +3 -1
- package/lib/typescript/components/ThreadList/ThreadList.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/componentsContext/defaultComponents.d.ts +3 -0
- package/lib/typescript/contexts/componentsContext/defaultComponents.d.ts.map +1 -1
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts.map +1 -1
- package/lib/typescript/contexts/themeContext/ThemeContext.d.ts +13 -0
- package/lib/typescript/contexts/themeContext/ThemeContext.d.ts.map +1 -1
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts +13 -0
- package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
- package/lib/typescript/hooks/index.d.ts +1 -0
- package/lib/typescript/hooks/index.d.ts.map +1 -1
- package/lib/typescript/hooks/useAudioPlayer.d.ts.map +1 -1
- package/lib/typescript/hooks/useInAppNotificationsState.d.ts +6 -0
- package/lib/typescript/hooks/useInAppNotificationsState.d.ts.map +1 -1
- package/lib/typescript/hooks/useLazyRef.d.ts +7 -0
- package/lib/typescript/hooks/useLazyRef.d.ts.map +1 -0
- package/lib/typescript/i18n/en.json +60 -1
- package/lib/typescript/i18n/es.json +62 -3
- package/lib/typescript/i18n/fr.json +60 -1
- package/lib/typescript/i18n/he.json +60 -1
- package/lib/typescript/i18n/hi.json +60 -1
- package/lib/typescript/i18n/it.json +60 -1
- package/lib/typescript/i18n/ja.json +60 -1
- package/lib/typescript/i18n/ko.json +60 -1
- package/lib/typescript/i18n/nl.json +60 -1
- package/lib/typescript/i18n/pt-br.json +60 -1
- package/lib/typescript/i18n/ru.json +60 -1
- package/lib/typescript/i18n/tr.json +60 -1
- package/lib/typescript/state-store/audio-player-pool.d.ts.map +1 -1
- package/lib/typescript/state-store/audio-player.d.ts +13 -0
- package/lib/typescript/state-store/audio-player.d.ts.map +1 -1
- package/lib/typescript/utils/animations/createBoundedZoomTransition.d.ts +21 -0
- package/lib/typescript/utils/animations/createBoundedZoomTransition.d.ts.map +1 -0
- package/lib/typescript/utils/animations/transitions.d.ts +21 -0
- package/lib/typescript/utils/animations/transitions.d.ts.map +1 -0
- package/lib/typescript/utils/i18n/Streami18n.d.ts +59 -0
- package/lib/typescript/utils/i18n/Streami18n.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/AttachmentPicker/components/AttachmentPickerContent.tsx +3 -3
- package/src/components/AttachmentPicker/components/__tests__/AttachmentPickerContent.test.tsx +19 -18
- package/src/components/Channel/Channel.tsx +15 -1
- package/src/components/Channel/__tests__/useMessageListPagination.test.tsx +34 -2
- package/src/components/Channel/hooks/useMessageListPagination.tsx +19 -3
- package/src/components/ChannelList/ChannelList.tsx +27 -5
- package/src/components/ChannelList/hooks/__tests__/useChannelActions.test.tsx +123 -0
- package/src/components/ChannelList/hooks/useChannelActions.ts +181 -12
- package/src/components/Message/hooks/__tests__/useMessageActionHandlers.test.tsx +131 -0
- package/src/components/Message/hooks/useMessageActionHandlers.ts +133 -23
- package/src/components/MessageInput/MessageComposer.tsx +1 -1
- package/src/components/MessageInput/MessageComposerLeadingView.tsx +1 -1
- package/src/components/MessageInput/MessageInputHeaderView.tsx +1 -1
- package/src/components/MessageInput/MessageInputTrailingView.tsx +1 -1
- package/src/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.tsx +1 -10
- package/src/components/MessageInput/components/AudioRecorder/AudioRecorder.tsx +10 -2
- package/src/components/MessageInput/components/AudioRecorder/AudioRecordingButton.tsx +27 -13
- package/src/components/MessageInput/components/OutputButtons/index.tsx +1 -1
- package/src/components/MessageList/MessageFlashList.tsx +3 -1
- package/src/components/MessageList/MessageList.tsx +3 -1
- package/src/components/MessageList/__tests__/MessageList.test.tsx +35 -0
- package/src/components/MessageList/__tests__/__snapshots__/ScrollToBottomButton.test.tsx.snap +1 -1
- package/src/components/MessageMenu/hooks/useFetchReactions.ts +17 -2
- package/src/components/Notifications/Notification.tsx +253 -0
- package/src/components/Notifications/NotificationList.tsx +160 -0
- package/src/components/Notifications/NotificationTargetContext.tsx +45 -0
- package/src/components/Notifications/__tests__/NotificationList.test.tsx +480 -0
- package/src/components/Notifications/__tests__/notificationTarget.test.ts +157 -0
- package/src/components/Notifications/hooks/__tests__/useNotificationApi.test.tsx +172 -0
- package/src/components/Notifications/hooks/__tests__/useNotificationTarget.test.tsx +85 -0
- package/src/components/Notifications/hooks/index.ts +5 -0
- package/src/components/Notifications/hooks/useNotificationApi.ts +248 -0
- package/src/components/Notifications/hooks/useNotificationListController.ts +160 -0
- package/src/components/Notifications/hooks/useNotificationTarget.ts +37 -0
- package/src/components/Notifications/hooks/useNotifications.ts +43 -0
- package/src/components/Notifications/hooks/useSystemNotifications.ts +33 -0
- package/src/components/Notifications/index.ts +5 -0
- package/src/components/Notifications/notificationTarget.ts +305 -0
- package/src/components/Notifications/notificationTranslations.ts +142 -0
- package/src/components/Poll/components/PollOption.tsx +10 -6
- package/src/components/Poll/hooks/usePollState.ts +26 -2
- package/src/components/Thread/Thread.tsx +24 -16
- package/src/components/ThreadList/ThreadList.tsx +33 -9
- package/src/components/index.ts +2 -0
- package/src/contexts/componentsContext/defaultComponents.ts +4 -0
- package/src/contexts/messageInputContext/MessageInputContext.tsx +36 -0
- package/src/contexts/themeContext/utils/theme.ts +26 -0
- package/src/hooks/index.ts +1 -0
- package/src/hooks/useAudioPlayer.ts +44 -3
- package/src/hooks/useInAppNotificationsState.ts +6 -0
- package/src/hooks/useLazyRef.ts +15 -0
- package/src/i18n/en.json +60 -1
- package/src/i18n/es.json +62 -3
- package/src/i18n/fr.json +60 -1
- package/src/i18n/he.json +60 -1
- package/src/i18n/hi.json +60 -1
- package/src/i18n/it.json +60 -1
- package/src/i18n/ja.json +60 -1
- package/src/i18n/ko.json +60 -1
- package/src/i18n/nl.json +60 -1
- package/src/i18n/pt-br.json +60 -1
- package/src/i18n/ru.json +60 -1
- package/src/i18n/tr.json +60 -1
- package/src/state-store/__tests__/audio-player.test.ts +45 -0
- package/src/state-store/audio-player-pool.ts +1 -0
- package/src/state-store/audio-player.ts +108 -16
- package/src/theme/generated/dark/StreamTokens.android.ts +16 -16
- package/src/theme/generated/dark/StreamTokens.ios.ts +8 -8
- package/src/theme/generated/dark/StreamTokens.web.ts +8 -8
- package/src/theme/generated/light/StreamTokens.android.ts +16 -16
- package/src/theme/generated/light/StreamTokens.ios.ts +8 -8
- package/src/theme/generated/light/StreamTokens.web.ts +8 -8
- package/src/utils/animations/createBoundedZoomTransition.ts +117 -0
- package/src/utils/{transitions.ts → animations/transitions.ts} +6 -0
- package/src/version.json +1 -1
- package/lib/commonjs/utils/transitions.js.map +0 -1
- package/lib/module/utils/transitions.js.map +0 -1
- package/lib/typescript/utils/transitions.d.ts +0 -9
- package/lib/typescript/utils/transitions.d.ts.map +0 -1
package/lib/module/i18n/en.json
CHANGED
|
@@ -38,10 +38,17 @@
|
|
|
38
38
|
"Empty message...": "Empty message...",
|
|
39
39
|
"Enter a new option": "Enter a new option",
|
|
40
40
|
"End Vote": "End Vote",
|
|
41
|
+
"Error adding flag": "Error adding flag",
|
|
42
|
+
"Error deleting message": "Error deleting message",
|
|
43
|
+
"Error fetching reactions": "Error fetching reactions",
|
|
41
44
|
"Error loading": "Error loading",
|
|
42
45
|
"Error loading channel list...": "Error loading channel list...",
|
|
43
46
|
"Error loading messages for this channel...": "Error loading messages for this channel...",
|
|
44
47
|
"Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.",
|
|
48
|
+
"Error muting a user ...": "Error muting a user ...",
|
|
49
|
+
"Error pinning message": "Error pinning message",
|
|
50
|
+
"Error removing message pin": "Error removing message pin",
|
|
51
|
+
"Error unmuting a user ...": "Error unmuting a user ...",
|
|
45
52
|
"Error while loading, please reload/refresh": "Error while loading, please reload/refresh",
|
|
46
53
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "File is too large: {{ size }}, maximum upload size is {{ limit }}",
|
|
47
54
|
"File too large": "File too large",
|
|
@@ -52,6 +59,7 @@
|
|
|
52
59
|
"Generating...": "Generating...",
|
|
53
60
|
"Giphy": "Giphy",
|
|
54
61
|
"Hide who voted": "Hide who voted",
|
|
62
|
+
"Hold to record. Release to save.": "Hold to record. Release to save.",
|
|
55
63
|
"Hold to start recording.": "Hold to start recording.",
|
|
56
64
|
"How about sending your first message to a friend?": "How about sending your first message to a friend?",
|
|
57
65
|
"Instant Commands": "Instant Commands",
|
|
@@ -68,7 +76,11 @@
|
|
|
68
76
|
"Maximum number of files reached": "Maximum number of files reached",
|
|
69
77
|
"Message Reactions": "Message Reactions",
|
|
70
78
|
"Message deleted": "Message deleted",
|
|
79
|
+
"Message has been successfully flagged": "Message has been successfully flagged",
|
|
71
80
|
"Message flagged": "Message flagged",
|
|
81
|
+
"Message marked as unread": "Message marked as unread",
|
|
82
|
+
"Message pinned": "Message pinned",
|
|
83
|
+
"Message unpinned": "Message unpinned",
|
|
72
84
|
"Multiple votes": "Multiple votes",
|
|
73
85
|
"Network error": "Network error",
|
|
74
86
|
"Select more than one option": "Select more than one option",
|
|
@@ -140,6 +152,7 @@
|
|
|
140
152
|
"View {{count}} comments_other": "View {{count}} comments",
|
|
141
153
|
"Voice message": "Voice message",
|
|
142
154
|
"Voice message ({{duration}})": "Voice message ({{duration}})",
|
|
155
|
+
"Voice message deleted": "Voice message deleted",
|
|
143
156
|
"Your comment": "Your comment",
|
|
144
157
|
"You": "You",
|
|
145
158
|
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
@@ -292,5 +305,51 @@
|
|
|
292
305
|
"a11y/Send voice recording": "Send voice recording",
|
|
293
306
|
"a11y/Share Button": "Share Button",
|
|
294
307
|
"a11y/Start voice recording": "Start voice recording",
|
|
295
|
-
"a11y/Stop voice recording": "Stop voice recording"
|
|
308
|
+
"a11y/Stop voice recording": "Stop voice recording",
|
|
309
|
+
"a11y/Notifications": "Notifications",
|
|
310
|
+
"a11y/Dismiss notification": "Dismiss notification",
|
|
311
|
+
"Attachment upload blocked due to {{reason}}": "Attachment upload blocked due to {{reason}}",
|
|
312
|
+
"Attachment upload failed due to {{reason}}": "Attachment upload failed due to {{reason}}",
|
|
313
|
+
"Command not available": "Command not available",
|
|
314
|
+
"Command not available while editing": "Command not available while editing",
|
|
315
|
+
"Command not available while replying": "Command not available while replying",
|
|
316
|
+
"Error reproducing the recording": "Error reproducing the recording",
|
|
317
|
+
"Error uploading attachment": "Error uploading attachment",
|
|
318
|
+
"Failed to create the poll": "Failed to create the poll",
|
|
319
|
+
"Failed to create the poll due to {{reason}}": "Failed to create the poll due to {{reason}}",
|
|
320
|
+
"Failed to end the poll": "Failed to end the poll",
|
|
321
|
+
"Failed to end the poll due to {{reason}}": "Failed to end the poll due to {{reason}}",
|
|
322
|
+
"Failed to jump to the first unread message": "Failed to jump to the first unread message",
|
|
323
|
+
"Failed to retrieve location": "Failed to retrieve location",
|
|
324
|
+
"Failed to share location": "Failed to share location",
|
|
325
|
+
"File is required for upload attachment": "File is required for upload attachment",
|
|
326
|
+
"Local upload attachment missing local id": "Local upload attachment missing local id",
|
|
327
|
+
"Poll ended": "Poll ended",
|
|
328
|
+
"Reached the vote limit. Remove an existing vote first.": "Reached the vote limit. Remove an existing vote first.",
|
|
329
|
+
"Thread has not been found": "Thread has not been found",
|
|
330
|
+
"Wait until all attachments have uploaded": "Wait until all attachments have uploaded",
|
|
331
|
+
"Cannot seek in the recording": "Cannot seek in the recording",
|
|
332
|
+
"Channel archived": "Channel archived",
|
|
333
|
+
"Channel muted": "Channel muted",
|
|
334
|
+
"Channel pinned": "Channel pinned",
|
|
335
|
+
"Channel unarchived": "Channel unarchived",
|
|
336
|
+
"Channel unmuted": "Channel unmuted",
|
|
337
|
+
"Channel unpinned": "Channel unpinned",
|
|
338
|
+
"Edit message request failed": "Edit message request failed",
|
|
339
|
+
"Failed to block user": "Failed to block user",
|
|
340
|
+
"Failed to leave channel": "Failed to leave channel",
|
|
341
|
+
"Failed to play the recording": "Failed to play the recording",
|
|
342
|
+
"Failed to update channel archive status": "Failed to update channel archive status",
|
|
343
|
+
"Failed to update channel mute status": "Failed to update channel mute status",
|
|
344
|
+
"Failed to update channel pinned status": "Failed to update channel pinned status",
|
|
345
|
+
"Left channel": "Left channel",
|
|
346
|
+
"Recording format is not supported and cannot be reproduced": "Recording format is not supported and cannot be reproduced",
|
|
347
|
+
"Send message request failed": "Send message request failed",
|
|
348
|
+
"User blocked": "User blocked",
|
|
349
|
+
"User unblocked": "User unblocked",
|
|
350
|
+
"{{ user }} has been muted": "{{ user }} has been muted",
|
|
351
|
+
"{{ user }} has been unmuted": "{{ user }} has been unmuted",
|
|
352
|
+
"size limit": "size limit",
|
|
353
|
+
"unknown error": "unknown error",
|
|
354
|
+
"unsupported file type": "unsupported file type"
|
|
296
355
|
}
|
package/lib/module/i18n/es.json
CHANGED
|
@@ -38,10 +38,17 @@
|
|
|
38
38
|
"Empty message...": "Mensaje vacío...",
|
|
39
39
|
"Enter a new option": "Introduce una nueva opción",
|
|
40
40
|
"End Vote": "Finalizar votación",
|
|
41
|
+
"Error adding flag": "Error al reportar el mensaje",
|
|
42
|
+
"Error deleting message": "Error al eliminar el mensaje",
|
|
43
|
+
"Error fetching reactions": "Error al obtener las reacciones",
|
|
41
44
|
"Error loading": "Error al cargar",
|
|
42
45
|
"Error loading channel list...": "Error al cargar la lista de canales...",
|
|
43
46
|
"Error loading messages for this channel...": "Error al cargar los mensajes de este canal...",
|
|
44
47
|
"Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "Error al marcar el mensaje como no leído. No se pueden marcar mensajes no leídos más antiguos que los 100 mensajes más recientes del canal.",
|
|
48
|
+
"Error muting a user ...": "Error al silenciar a un usuario ...",
|
|
49
|
+
"Error pinning message": "Error al fijar el mensaje",
|
|
50
|
+
"Error removing message pin": "Error al quitar la fijación del mensaje",
|
|
51
|
+
"Error unmuting a user ...": "Error al dejar de silenciar a un usuario ...",
|
|
45
52
|
"Error while loading, please reload/refresh": "Error al cargar, por favor recarga/actualiza",
|
|
46
53
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "El archivo es demasiado grande: {{ size }}, el tamaño máximo de carga es de {{ limit }}",
|
|
47
54
|
"File too large": "Archivo demasiado grande",
|
|
@@ -52,6 +59,7 @@
|
|
|
52
59
|
"Generating...": "Generando...",
|
|
53
60
|
"Giphy": "Giphy",
|
|
54
61
|
"Hide who voted": "Ocultar quién votó",
|
|
62
|
+
"Hold to record. Release to save.": "Mantén presionado para grabar. Suelta para guardar.",
|
|
55
63
|
"Hold to start recording.": "Mantén presionado para comenzar a grabar.",
|
|
56
64
|
"How about sending your first message to a friend?": "¿Qué tal enviar tu primer mensaje a un amigo?",
|
|
57
65
|
"Instant Commands": "Comandos instantáneos",
|
|
@@ -68,7 +76,11 @@
|
|
|
68
76
|
"Maximum number of files reached": "Número máximo de archivos alcanzado",
|
|
69
77
|
"Message Reactions": "Reacciones al mensaje",
|
|
70
78
|
"Message deleted": "Mensaje eliminado",
|
|
79
|
+
"Message has been successfully flagged": "El mensaje se ha reportado correctamente",
|
|
71
80
|
"Message flagged": "Mensaje reportado",
|
|
81
|
+
"Message marked as unread": "Mensaje marcado como no leído",
|
|
82
|
+
"Message pinned": "Mensaje fijado",
|
|
83
|
+
"Message unpinned": "Mensaje desfijado",
|
|
72
84
|
"Multiple votes": "Votos múltiples",
|
|
73
85
|
"Network error": "Error de red",
|
|
74
86
|
"Select more than one option": "Selecciona más de una opción",
|
|
@@ -127,8 +139,8 @@
|
|
|
127
139
|
"Thread Reply": "Respuesta de hilo",
|
|
128
140
|
"Type a number from 2 to 10": "Escribe un número de 2 a 10",
|
|
129
141
|
"Unban User": "Desbloquear usuario",
|
|
130
|
-
"Unblock User": "
|
|
131
|
-
"Unknown User": "
|
|
142
|
+
"Unblock User": "Desbloquear usuario",
|
|
143
|
+
"Unknown User": "Usuario desconocido",
|
|
132
144
|
"Unmute User": "Activar sonido del usuario",
|
|
133
145
|
"Unpin from Conversation": "Desmarcar de la conversación",
|
|
134
146
|
"Unread Messages": "Mensajes no leídos",
|
|
@@ -140,6 +152,7 @@
|
|
|
140
152
|
"View {{count}} comments_other": "Ver {{count}} comentarios",
|
|
141
153
|
"Voice message": "Mensaje de voz",
|
|
142
154
|
"Voice message ({{duration}})": "Mensaje de voz ({{duration}})",
|
|
155
|
+
"Voice message deleted": "Mensaje de voz eliminado",
|
|
143
156
|
"Your comment": "Tu comentario",
|
|
144
157
|
"You": "Tú",
|
|
145
158
|
"You can't send messages in this channel": "No puedes enviar mensajes en este canal",
|
|
@@ -292,5 +305,51 @@
|
|
|
292
305
|
"a11y/Send voice recording": "Send voice recording",
|
|
293
306
|
"a11y/Share Button": "Share Button",
|
|
294
307
|
"a11y/Start voice recording": "Start voice recording",
|
|
295
|
-
"a11y/Stop voice recording": "Stop voice recording"
|
|
308
|
+
"a11y/Stop voice recording": "Stop voice recording",
|
|
309
|
+
"a11y/Notifications": "Notificaciones",
|
|
310
|
+
"a11y/Dismiss notification": "Descartar notificación",
|
|
311
|
+
"Attachment upload blocked due to {{reason}}": "Carga de adjunto bloqueada por {{reason}}",
|
|
312
|
+
"Attachment upload failed due to {{reason}}": "Error al cargar el adjunto debido a {{reason}}",
|
|
313
|
+
"Command not available": "Comando no disponible",
|
|
314
|
+
"Command not available while editing": "Comando no disponible mientras editas",
|
|
315
|
+
"Command not available while replying": "Comando no disponible mientras respondes",
|
|
316
|
+
"Error reproducing the recording": "Error al reproducir la grabación",
|
|
317
|
+
"Error uploading attachment": "Error al cargar el adjunto",
|
|
318
|
+
"Failed to create the poll": "No se pudo crear la encuesta",
|
|
319
|
+
"Failed to create the poll due to {{reason}}": "No se pudo crear la encuesta debido a {{reason}}",
|
|
320
|
+
"Failed to end the poll": "No se pudo finalizar la encuesta",
|
|
321
|
+
"Failed to end the poll due to {{reason}}": "No se pudo finalizar la encuesta debido a {{reason}}",
|
|
322
|
+
"Failed to jump to the first unread message": "No se pudo ir al primer mensaje no leído",
|
|
323
|
+
"Failed to retrieve location": "No se pudo obtener la ubicación",
|
|
324
|
+
"Failed to share location": "No se pudo compartir la ubicación",
|
|
325
|
+
"File is required for upload attachment": "Se requiere un archivo para cargar un adjunto",
|
|
326
|
+
"Local upload attachment missing local id": "Falta el ID local del adjunto local de carga",
|
|
327
|
+
"Poll ended": "Encuesta finalizada",
|
|
328
|
+
"Reached the vote limit. Remove an existing vote first.": "Se alcanzó el límite de votos. Elimina un voto existente primero.",
|
|
329
|
+
"Thread has not been found": "No se encontró el hilo",
|
|
330
|
+
"Wait until all attachments have uploaded": "Espera hasta que se hayan cargado todos los adjuntos",
|
|
331
|
+
"Cannot seek in the recording": "No se puede cambiar la posición de la grabación",
|
|
332
|
+
"Channel archived": "Canal archivado",
|
|
333
|
+
"Channel muted": "Canal silenciado",
|
|
334
|
+
"Channel pinned": "Canal fijado",
|
|
335
|
+
"Channel unarchived": "Canal desarchivado",
|
|
336
|
+
"Channel unmuted": "Canal no silenciado",
|
|
337
|
+
"Channel unpinned": "Canal desfijado",
|
|
338
|
+
"Edit message request failed": "No se pudo editar el mensaje",
|
|
339
|
+
"Failed to block user": "No se pudo bloquear al usuario",
|
|
340
|
+
"Failed to leave channel": "No se pudo salir del canal",
|
|
341
|
+
"Failed to play the recording": "No se pudo reproducir la grabación",
|
|
342
|
+
"Failed to update channel archive status": "No se pudo actualizar el estado de archivo del canal",
|
|
343
|
+
"Failed to update channel mute status": "No se pudo actualizar el estado de silencio del canal",
|
|
344
|
+
"Failed to update channel pinned status": "No se pudo actualizar el estado de fijación del canal",
|
|
345
|
+
"Left channel": "Saliste del canal",
|
|
346
|
+
"Recording format is not supported and cannot be reproduced": "El formato de la grabación no es compatible y no se puede reproducir",
|
|
347
|
+
"Send message request failed": "No se pudo enviar el mensaje",
|
|
348
|
+
"User blocked": "Usuario bloqueado",
|
|
349
|
+
"User unblocked": "Usuario desbloqueado",
|
|
350
|
+
"{{ user }} has been muted": "{{ user }} ha sido silenciado",
|
|
351
|
+
"{{ user }} has been unmuted": "{{ user }} ya no está silenciado",
|
|
352
|
+
"size limit": "límite de tamaño",
|
|
353
|
+
"unknown error": "error desconocido",
|
|
354
|
+
"unsupported file type": "tipo de archivo no compatible"
|
|
296
355
|
}
|
package/lib/module/i18n/fr.json
CHANGED
|
@@ -38,10 +38,17 @@
|
|
|
38
38
|
"Empty message...": "Message vide...",
|
|
39
39
|
"Enter a new option": "Saisissez une nouvelle option",
|
|
40
40
|
"End Vote": "Fin du vote",
|
|
41
|
+
"Error adding flag": "Erreur lors du signalement du message",
|
|
42
|
+
"Error deleting message": "Erreur lors de la suppression du message",
|
|
43
|
+
"Error fetching reactions": "Erreur lors du chargement des réactions",
|
|
41
44
|
"Error loading": "Erreur lors du chargement",
|
|
42
45
|
"Error loading channel list...": "Erreur lors du chargement de la liste de canaux...",
|
|
43
46
|
"Error loading messages for this channel...": "Erreur lors du chargement des messages de ce canal...",
|
|
44
47
|
"Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "Erreur lors du marquage du message comme non lu. Impossible de marquer les messages non lus plus anciens que les 100 derniers messages du canal.",
|
|
48
|
+
"Error muting a user ...": "Erreur lors de la mise en sourdine d’un utilisateur ...",
|
|
49
|
+
"Error pinning message": "Erreur lors de l’épinglage du message",
|
|
50
|
+
"Error removing message pin": "Erreur lors du désépinglage du message",
|
|
51
|
+
"Error unmuting a user ...": "Erreur lors du retrait de la sourdine d’un utilisateur ...",
|
|
45
52
|
"Error while loading, please reload/refresh": "Erreur lors du chargement, veuillez recharger/rafraîchir",
|
|
46
53
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Le fichier est trop volumineux : {{ size }}, la taille de téléchargement maximale est de {{ limit }}",
|
|
47
54
|
"File too large": "Fichier trop volumineux",
|
|
@@ -52,6 +59,7 @@
|
|
|
52
59
|
"Generating...": "Génération...",
|
|
53
60
|
"Giphy": "Giphy",
|
|
54
61
|
"Hide who voted": "Masquer qui a voté",
|
|
62
|
+
"Hold to record. Release to save.": "Hold to record. Release to save.",
|
|
55
63
|
"Hold to start recording.": "Hold to start recording.",
|
|
56
64
|
"How about sending your first message to a friend?": "Et si vous envoyiez votre premier message à un ami ?",
|
|
57
65
|
"Instant Commands": "Commandes Instantanées",
|
|
@@ -68,7 +76,11 @@
|
|
|
68
76
|
"Maximum number of files reached": "Nombre maximal de fichiers atteint",
|
|
69
77
|
"Message Reactions": "Réactions aux messages",
|
|
70
78
|
"Message deleted": "Message supprimé",
|
|
79
|
+
"Message has been successfully flagged": "Le message a été signalé avec succès",
|
|
71
80
|
"Message flagged": "Message signalé",
|
|
81
|
+
"Message marked as unread": "Message marqué comme non lu",
|
|
82
|
+
"Message pinned": "Message épinglé",
|
|
83
|
+
"Message unpinned": "Message désépinglé",
|
|
72
84
|
"Multiple votes": "Votes multiples",
|
|
73
85
|
"Network error": "Erreur réseau",
|
|
74
86
|
"Select more than one option": "Sélectionnez plus d’une option",
|
|
@@ -140,6 +152,7 @@
|
|
|
140
152
|
"View {{count}} comments_other": "Voir {{count}} commentaires",
|
|
141
153
|
"Voice message": "Message vocal",
|
|
142
154
|
"Voice message ({{duration}})": "Message vocal ({{duration}})",
|
|
155
|
+
"Voice message deleted": "Message vocal supprimé",
|
|
143
156
|
"Your comment": "Votre commentaire",
|
|
144
157
|
"You": "Toi",
|
|
145
158
|
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
@@ -292,5 +305,51 @@
|
|
|
292
305
|
"a11y/Send voice recording": "Send voice recording",
|
|
293
306
|
"a11y/Share Button": "Share Button",
|
|
294
307
|
"a11y/Start voice recording": "Start voice recording",
|
|
295
|
-
"a11y/Stop voice recording": "Stop voice recording"
|
|
308
|
+
"a11y/Stop voice recording": "Stop voice recording",
|
|
309
|
+
"a11y/Notifications": "Notifications",
|
|
310
|
+
"a11y/Dismiss notification": "Fermer la notification",
|
|
311
|
+
"Attachment upload blocked due to {{reason}}": "Envoi de la pièce jointe bloqué en raison de {{reason}}",
|
|
312
|
+
"Attachment upload failed due to {{reason}}": "Échec de l'envoi de la pièce jointe en raison de {{reason}}",
|
|
313
|
+
"Command not available": "Commande non disponible",
|
|
314
|
+
"Command not available while editing": "Commande non disponible pendant la modification",
|
|
315
|
+
"Command not available while replying": "Commande non disponible pendant la réponse",
|
|
316
|
+
"Error reproducing the recording": "Erreur lors de la lecture de l'enregistrement",
|
|
317
|
+
"Error uploading attachment": "Erreur lors de l'envoi de la pièce jointe",
|
|
318
|
+
"Failed to create the poll": "Échec de la création du sondage",
|
|
319
|
+
"Failed to create the poll due to {{reason}}": "Échec de la création du sondage en raison de {{reason}}",
|
|
320
|
+
"Failed to end the poll": "Échec de la clôture du sondage",
|
|
321
|
+
"Failed to end the poll due to {{reason}}": "Échec de la clôture du sondage en raison de {{reason}}",
|
|
322
|
+
"Failed to jump to the first unread message": "Impossible d'accéder au premier message non lu",
|
|
323
|
+
"Failed to retrieve location": "Impossible de récupérer la position",
|
|
324
|
+
"Failed to share location": "Impossible de partager la position",
|
|
325
|
+
"File is required for upload attachment": "Un fichier est requis pour envoyer une pièce jointe",
|
|
326
|
+
"Local upload attachment missing local id": "L'identifiant local de la pièce jointe à envoyer est manquant",
|
|
327
|
+
"Poll ended": "Sondage terminé",
|
|
328
|
+
"Reached the vote limit. Remove an existing vote first.": "Limite de votes atteinte. Supprimez d'abord un vote existant.",
|
|
329
|
+
"Thread has not been found": "Le fil de discussion est introuvable",
|
|
330
|
+
"Wait until all attachments have uploaded": "Attendez que toutes les pièces jointes soient envoyées",
|
|
331
|
+
"Cannot seek in the recording": "Impossible de se déplacer dans l’enregistrement",
|
|
332
|
+
"Channel archived": "Canal archivé",
|
|
333
|
+
"Channel muted": "Canal mis en sourdine",
|
|
334
|
+
"Channel pinned": "Canal épinglé",
|
|
335
|
+
"Channel unarchived": "Canal désarchivé",
|
|
336
|
+
"Channel unmuted": "Canal retiré de la sourdine",
|
|
337
|
+
"Channel unpinned": "Canal désépinglé",
|
|
338
|
+
"Edit message request failed": "Échec de la modification du message",
|
|
339
|
+
"Failed to block user": "Échec du blocage de l’utilisateur",
|
|
340
|
+
"Failed to leave channel": "Échec de la sortie du canal",
|
|
341
|
+
"Failed to play the recording": "Échec de la lecture de l’enregistrement",
|
|
342
|
+
"Failed to update channel archive status": "Échec de la mise à jour du statut d’archivage du canal",
|
|
343
|
+
"Failed to update channel mute status": "Échec de la mise à jour du statut de mise en sourdine du canal",
|
|
344
|
+
"Failed to update channel pinned status": "Échec de la mise à jour du statut d’épinglage du canal",
|
|
345
|
+
"Left channel": "Canal quitté",
|
|
346
|
+
"Recording format is not supported and cannot be reproduced": "Le format de l’enregistrement n’est pas pris en charge et ne peut pas être lu",
|
|
347
|
+
"Send message request failed": "Échec de l’envoi du message",
|
|
348
|
+
"User blocked": "Utilisateur bloqué",
|
|
349
|
+
"User unblocked": "Utilisateur débloqué",
|
|
350
|
+
"{{ user }} has been muted": "{{ user }} a été mis en sourdine",
|
|
351
|
+
"{{ user }} has been unmuted": "{{ user }} n’est plus en sourdine",
|
|
352
|
+
"size limit": "limite de taille",
|
|
353
|
+
"unknown error": "erreur inconnue",
|
|
354
|
+
"unsupported file type": "type de fichier non pris en charge"
|
|
296
355
|
}
|
package/lib/module/i18n/he.json
CHANGED
|
@@ -38,10 +38,17 @@
|
|
|
38
38
|
"Empty message...": "הודעה ריקה...",
|
|
39
39
|
"Enter a new option": "הזן אפשרות חדשה",
|
|
40
40
|
"End Vote": "סיים הצבעה",
|
|
41
|
+
"Error adding flag": "שגיאה בדיווח על ההודעה",
|
|
42
|
+
"Error deleting message": "שגיאה במחיקת ההודעה",
|
|
43
|
+
"Error fetching reactions": "שגיאה בטעינת התגובות",
|
|
41
44
|
"Error loading": "שגיאה ארעה בעת הטעינה",
|
|
42
45
|
"Error loading channel list...": "שגיאה ארעה בטעינת השיחות...",
|
|
43
46
|
"Error loading messages for this channel...": "שגיאה ארעה בטעינת הודעות עבור שיחה זאת...",
|
|
44
47
|
"Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "שגיאה ארעה בסימון ההודעה כלא נקרא. אין אפשרות לסמן הודעות כלא נקראות שהן ישנות מה-100 ההודעות האחרונות בשיחה.",
|
|
48
|
+
"Error muting a user ...": "שגיאה בהשתקת משתמש ...",
|
|
49
|
+
"Error pinning message": "שגיאה בנעיצת ההודעה",
|
|
50
|
+
"Error removing message pin": "שגיאה בביטול נעיצת ההודעה",
|
|
51
|
+
"Error unmuting a user ...": "שגיאה בביטול השתקת משתמש ...",
|
|
45
52
|
"Error while loading, please reload/refresh": "שגיאה ארעה בזמן הטעינה, אנא טען מחדש/רענן",
|
|
46
53
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "הקובץ גדול מדי: {{ size }}, גודל העלאה מקסימלי הוא {{ limit }}",
|
|
47
54
|
"File too large": "הקובץ גדול מדי",
|
|
@@ -52,6 +59,7 @@
|
|
|
52
59
|
"Generating...": "מייצר...",
|
|
53
60
|
"Giphy": "Giphy",
|
|
54
61
|
"Hide who voted": "הסתר מי הצביע",
|
|
62
|
+
"Hold to record. Release to save.": "לחץ והחזק כדי להקליט. שחרר כדי לשמור.",
|
|
55
63
|
"Hold to start recording.": "לחץ והחזק כדי להתחיל להקליט.",
|
|
56
64
|
"How about sending your first message to a friend?": "מה דעתך לשלוח את ההודעה הראשונה שלך לחבר?",
|
|
57
65
|
"Instant Commands": "פעולות מיידיות",
|
|
@@ -68,7 +76,11 @@
|
|
|
68
76
|
"Maximum number of files reached": "הגעת למספר המרבי של קבצים",
|
|
69
77
|
"Message Reactions": "תגובות להודעה",
|
|
70
78
|
"Message deleted": "ההודעה נמחקה",
|
|
79
|
+
"Message has been successfully flagged": "ההודעה דווחה בהצלחה",
|
|
71
80
|
"Message flagged": "ההודעה סומנה",
|
|
81
|
+
"Message marked as unread": "ההודעה סומנה כלא נקראה",
|
|
82
|
+
"Message pinned": "ההודעה ננעצה",
|
|
83
|
+
"Message unpinned": "נעיצת ההודעה בוטלה",
|
|
72
84
|
"Multiple votes": "הצבעות מרובות",
|
|
73
85
|
"Network error": "שגיאת רשת",
|
|
74
86
|
"Select more than one option": "בחר/י יותר מאפשרות אחת",
|
|
@@ -140,6 +152,7 @@
|
|
|
140
152
|
"View {{count}} comments_other": "הצג {{count}} תגובות",
|
|
141
153
|
"Voice message": "הודעת קול",
|
|
142
154
|
"Voice message ({{duration}})": "הודעת קול ({{duration}})",
|
|
155
|
+
"Voice message deleted": "הודעת הקול נמחקה",
|
|
143
156
|
"Your comment": "התגובה שלך",
|
|
144
157
|
"You": "את/ה",
|
|
145
158
|
"You can't send messages in this channel": "את/ב לא יכול/ה לשלוח הודעות בשיחה זו",
|
|
@@ -292,5 +305,51 @@
|
|
|
292
305
|
"a11y/Send voice recording": "Send voice recording",
|
|
293
306
|
"a11y/Share Button": "Share Button",
|
|
294
307
|
"a11y/Start voice recording": "Start voice recording",
|
|
295
|
-
"a11y/Stop voice recording": "Stop voice recording"
|
|
308
|
+
"a11y/Stop voice recording": "Stop voice recording",
|
|
309
|
+
"a11y/Notifications": "התראות",
|
|
310
|
+
"a11y/Dismiss notification": "סגור התראה",
|
|
311
|
+
"Attachment upload blocked due to {{reason}}": "העלאת הקובץ המצורף נחסמה עקב {{reason}}",
|
|
312
|
+
"Attachment upload failed due to {{reason}}": "העלאת הקובץ המצורף נכשלה עקב {{reason}}",
|
|
313
|
+
"Command not available": "הפקודה אינה זמינה",
|
|
314
|
+
"Command not available while editing": "הפקודה אינה זמינה בזמן עריכה",
|
|
315
|
+
"Command not available while replying": "הפקודה אינה זמינה בזמן תגובה",
|
|
316
|
+
"Error reproducing the recording": "שגיאה בהפעלת ההקלטה",
|
|
317
|
+
"Error uploading attachment": "שגיאה בהעלאת הקובץ המצורף",
|
|
318
|
+
"Failed to create the poll": "יצירת הסקר נכשלה",
|
|
319
|
+
"Failed to create the poll due to {{reason}}": "יצירת הסקר נכשלה עקב {{reason}}",
|
|
320
|
+
"Failed to end the poll": "סיום הסקר נכשל",
|
|
321
|
+
"Failed to end the poll due to {{reason}}": "סיום הסקר נכשל עקב {{reason}}",
|
|
322
|
+
"Failed to jump to the first unread message": "המעבר להודעה הראשונה שלא נקראה נכשל",
|
|
323
|
+
"Failed to retrieve location": "אחזור המיקום נכשל",
|
|
324
|
+
"Failed to share location": "שיתוף המיקום נכשל",
|
|
325
|
+
"File is required for upload attachment": "נדרש קובץ להעלאת קובץ מצורף",
|
|
326
|
+
"Local upload attachment missing local id": "חסר מזהה מקומי לקובץ המצורף המקומי להעלאה",
|
|
327
|
+
"Poll ended": "הסקר הסתיים",
|
|
328
|
+
"Reached the vote limit. Remove an existing vote first.": "הגעת למגבלת ההצבעות. הסר קודם הצבעה קיימת.",
|
|
329
|
+
"Thread has not been found": "השרשור לא נמצא",
|
|
330
|
+
"Wait until all attachments have uploaded": "יש להמתין עד שכל הקבצים המצורפים יועלו",
|
|
331
|
+
"Cannot seek in the recording": "לא ניתן לעבור למיקום אחר בהקלטה",
|
|
332
|
+
"Channel archived": "השיחה הועברה לארכיון",
|
|
333
|
+
"Channel muted": "השיחה הושתקה",
|
|
334
|
+
"Channel pinned": "השיחה ננעצה",
|
|
335
|
+
"Channel unarchived": "השיחה הוצאה מהארכיון",
|
|
336
|
+
"Channel unmuted": "השתקת השיחה בוטלה",
|
|
337
|
+
"Channel unpinned": "נעיצת השיחה בוטלה",
|
|
338
|
+
"Edit message request failed": "עריכת ההודעה נכשלה",
|
|
339
|
+
"Failed to block user": "חסימת המשתמש נכשלה",
|
|
340
|
+
"Failed to leave channel": "עזיבת השיחה נכשלה",
|
|
341
|
+
"Failed to play the recording": "הפעלת ההקלטה נכשלה",
|
|
342
|
+
"Failed to update channel archive status": "עדכון מצב הארכיון של השיחה נכשל",
|
|
343
|
+
"Failed to update channel mute status": "עדכון מצב ההשתקה של השיחה נכשל",
|
|
344
|
+
"Failed to update channel pinned status": "עדכון מצב הנעיצה של השיחה נכשל",
|
|
345
|
+
"Left channel": "עזבת את השיחה",
|
|
346
|
+
"Recording format is not supported and cannot be reproduced": "פורמט ההקלטה אינו נתמך ולא ניתן להשמיע אותו",
|
|
347
|
+
"Send message request failed": "שליחת ההודעה נכשלה",
|
|
348
|
+
"User blocked": "המשתמש נחסם",
|
|
349
|
+
"User unblocked": "חסימת המשתמש בוטלה",
|
|
350
|
+
"{{ user }} has been muted": "{{ user }} הושתק/ה",
|
|
351
|
+
"{{ user }} has been unmuted": "{{ user }} כבר לא מושתק/ת",
|
|
352
|
+
"size limit": "מגבלת גודל",
|
|
353
|
+
"unknown error": "שגיאה לא ידועה",
|
|
354
|
+
"unsupported file type": "סוג קובץ לא נתמך"
|
|
296
355
|
}
|
package/lib/module/i18n/hi.json
CHANGED
|
@@ -38,10 +38,17 @@
|
|
|
38
38
|
"Empty message...": "खाली संदेश...",
|
|
39
39
|
"Enter a new option": "एक नया विकल्प दर्ज करें",
|
|
40
40
|
"End Vote": "वोट समाप्त करें",
|
|
41
|
+
"Error adding flag": "संदेश को फ़्लैग करने में त्रुटि",
|
|
42
|
+
"Error deleting message": "संदेश हटाने में त्रुटि",
|
|
43
|
+
"Error fetching reactions": "प्रतिक्रियाएँ प्राप्त करने में त्रुटि",
|
|
41
44
|
"Error loading": "लोड होने मे त्रुटि",
|
|
42
45
|
"Error loading channel list...": "चैनल सूची लोड करने में त्रुटि...",
|
|
43
46
|
"Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
|
|
44
47
|
"Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "संदेश को अनरीड चिह्नित करने में त्रुटि। चैनल के नवीनतम 100 संदेशों से पुराने संदेशों को अनरीड चिह्नित नहीं किया जा सकता।",
|
|
48
|
+
"Error muting a user ...": "उपयोगकर्ता को म्यूट करने में त्रुटि ...",
|
|
49
|
+
"Error pinning message": "संदेश पिन करने में त्रुटि",
|
|
50
|
+
"Error removing message pin": "संदेश पिन हटाने में त्रुटि",
|
|
51
|
+
"Error unmuting a user ...": "उपयोगकर्ता को अनम्यूट करने में त्रुटि ...",
|
|
45
52
|
"Error while loading, please reload/refresh": "एरर, रिफ्रेश करे",
|
|
46
53
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "फ़ाइल बहुत बड़ी है: {{ size }}, अधिकतम अपलोड साइज़ {{ limit }} है",
|
|
47
54
|
"File too large": "फ़ाइल बहुत बड़ी है",
|
|
@@ -52,6 +59,7 @@
|
|
|
52
59
|
"Generating...": "जनरेट कर रहा है...",
|
|
53
60
|
"Giphy": "Giphy",
|
|
54
61
|
"Hide who voted": "वोट करने वालों को छुपाएँ",
|
|
62
|
+
"Hold to record. Release to save.": "रिकॉर्ड करने के लिए दबाकर रखें। सेव करने के लिए छोड़ें।",
|
|
55
63
|
"Hold to start recording.": "रिकॉर्डिंग शुरू करने के लिए दबाएं।",
|
|
56
64
|
"How about sending your first message to a friend?": "किसी मित्र को अपना पहला संदेश भेजने के बारे में क्या ख़याल है?",
|
|
57
65
|
"Instant Commands": "त्वरित कमांड",
|
|
@@ -68,7 +76,11 @@
|
|
|
68
76
|
"Maximum number of files reached": "फ़ाइलों की अधिकतम संख्या पहुँच गई",
|
|
69
77
|
"Message Reactions": "संदेश प्रतिक्रियाएँ",
|
|
70
78
|
"Message deleted": "मैसेज हटा दिया गया",
|
|
79
|
+
"Message has been successfully flagged": "संदेश सफलतापूर्वक फ़्लैग किया गया",
|
|
71
80
|
"Message flagged": "संदेश को ध्वजांकित किया गया",
|
|
81
|
+
"Message marked as unread": "संदेश को अपठित के रूप में चिह्नित किया गया",
|
|
82
|
+
"Message pinned": "संदेश पिन किया गया",
|
|
83
|
+
"Message unpinned": "संदेश से पिन हटाया गया",
|
|
72
84
|
"Multiple votes": "एकाधिक वोट",
|
|
73
85
|
"Network error": "नेटवर्क त्रुटि",
|
|
74
86
|
"Select more than one option": "एक से अधिक विकल्प चुनें",
|
|
@@ -140,6 +152,7 @@
|
|
|
140
152
|
"View {{count}} comments_other": "{{count}} टिप्पणियाँ देखें",
|
|
141
153
|
"Voice message": "वॉइस संदेश",
|
|
142
154
|
"Voice message ({{duration}})": "वॉइस संदेश ({{duration}})",
|
|
155
|
+
"Voice message deleted": "वॉइस संदेश हटा दिया गया",
|
|
143
156
|
"Your comment": "आपकी टिप्पणी",
|
|
144
157
|
"You": "आप",
|
|
145
158
|
"You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
|
|
@@ -292,5 +305,51 @@
|
|
|
292
305
|
"a11y/Send voice recording": "Send voice recording",
|
|
293
306
|
"a11y/Share Button": "Share Button",
|
|
294
307
|
"a11y/Start voice recording": "Start voice recording",
|
|
295
|
-
"a11y/Stop voice recording": "Stop voice recording"
|
|
308
|
+
"a11y/Stop voice recording": "Stop voice recording",
|
|
309
|
+
"a11y/Notifications": "सूचनाएं",
|
|
310
|
+
"a11y/Dismiss notification": "सूचना हटाएं",
|
|
311
|
+
"Attachment upload blocked due to {{reason}}": "{{reason}} के कारण अटैचमेंट अपलोड अवरुद्ध है",
|
|
312
|
+
"Attachment upload failed due to {{reason}}": "{{reason}} के कारण अटैचमेंट अपलोड विफल रहा",
|
|
313
|
+
"Command not available": "कमांड उपलब्ध नहीं है",
|
|
314
|
+
"Command not available while editing": "संपादन करते समय कमांड उपलब्ध नहीं है",
|
|
315
|
+
"Command not available while replying": "जवाब देते समय कमांड उपलब्ध नहीं है",
|
|
316
|
+
"Error reproducing the recording": "रिकॉर्डिंग चलाने में त्रुटि",
|
|
317
|
+
"Error uploading attachment": "अटैचमेंट अपलोड करने में त्रुटि",
|
|
318
|
+
"Failed to create the poll": "पोल बनाने में विफल",
|
|
319
|
+
"Failed to create the poll due to {{reason}}": "{{reason}} के कारण पोल बनाने में विफल",
|
|
320
|
+
"Failed to end the poll": "पोल समाप्त करने में विफल",
|
|
321
|
+
"Failed to end the poll due to {{reason}}": "{{reason}} के कारण पोल समाप्त करने में विफल",
|
|
322
|
+
"Failed to jump to the first unread message": "पहले अपठित संदेश पर जाने में विफल",
|
|
323
|
+
"Failed to retrieve location": "स्थान प्राप्त करने में विफल",
|
|
324
|
+
"Failed to share location": "स्थान साझा करने में विफल",
|
|
325
|
+
"File is required for upload attachment": "अटैचमेंट अपलोड करने के लिए फ़ाइल आवश्यक है",
|
|
326
|
+
"Local upload attachment missing local id": "स्थानीय अपलोड अटैचमेंट में स्थानीय आईडी नहीं है",
|
|
327
|
+
"Poll ended": "पोल समाप्त हो गया",
|
|
328
|
+
"Reached the vote limit. Remove an existing vote first.": "वोट सीमा पूरी हो गई है। पहले मौजूदा वोट हटाएं।",
|
|
329
|
+
"Thread has not been found": "थ्रेड नहीं मिला",
|
|
330
|
+
"Wait until all attachments have uploaded": "सभी अटैचमेंट अपलोड होने तक प्रतीक्षा करें",
|
|
331
|
+
"Cannot seek in the recording": "रिकॉर्डिंग में सीक नहीं किया जा सकता",
|
|
332
|
+
"Channel archived": "चैनल आर्काइव किया गया",
|
|
333
|
+
"Channel muted": "चैनल म्यूट किया गया",
|
|
334
|
+
"Channel pinned": "चैनल पिन किया गया",
|
|
335
|
+
"Channel unarchived": "चैनल अनआर्काइव किया गया",
|
|
336
|
+
"Channel unmuted": "चैनल अनम्यूट किया गया",
|
|
337
|
+
"Channel unpinned": "चैनल से पिन हटाया गया",
|
|
338
|
+
"Edit message request failed": "संदेश संपादित करने का अनुरोध विफल रहा",
|
|
339
|
+
"Failed to block user": "उपयोगकर्ता को ब्लॉक करने में विफल",
|
|
340
|
+
"Failed to leave channel": "चैनल छोड़ने में विफल",
|
|
341
|
+
"Failed to play the recording": "रिकॉर्डिंग चलाने में विफल",
|
|
342
|
+
"Failed to update channel archive status": "चैनल आर्काइव स्थिति अपडेट करने में विफल",
|
|
343
|
+
"Failed to update channel mute status": "चैनल म्यूट स्थिति अपडेट करने में विफल",
|
|
344
|
+
"Failed to update channel pinned status": "चैनल पिन स्थिति अपडेट करने में विफल",
|
|
345
|
+
"Left channel": "चैनल छोड़ दिया",
|
|
346
|
+
"Recording format is not supported and cannot be reproduced": "रिकॉर्डिंग फ़ॉर्मेट समर्थित नहीं है और इसे चलाया नहीं जा सकता",
|
|
347
|
+
"Send message request failed": "संदेश भेजने का अनुरोध विफल रहा",
|
|
348
|
+
"User blocked": "उपयोगकर्ता ब्लॉक किया गया",
|
|
349
|
+
"User unblocked": "उपयोगकर्ता अनब्लॉक किया गया",
|
|
350
|
+
"{{ user }} has been muted": "{{ user }} को म्यूट किया गया",
|
|
351
|
+
"{{ user }} has been unmuted": "{{ user }} को अनम्यूट किया गया",
|
|
352
|
+
"size limit": "आकार सीमा",
|
|
353
|
+
"unknown error": "अज्ञात त्रुटि",
|
|
354
|
+
"unsupported file type": "असमर्थित फ़ाइल प्रकार"
|
|
296
355
|
}
|
package/lib/module/i18n/it.json
CHANGED
|
@@ -38,10 +38,17 @@
|
|
|
38
38
|
"Empty message...": "Message vuoto...",
|
|
39
39
|
"Enter a new option": "Inserisci una nuova opzione",
|
|
40
40
|
"End Vote": "Termina votazione",
|
|
41
|
+
"Error adding flag": "Errore durante la segnalazione del messaggio",
|
|
42
|
+
"Error deleting message": "Errore durante l'eliminazione del messaggio",
|
|
43
|
+
"Error fetching reactions": "Errore durante il recupero delle reazioni",
|
|
41
44
|
"Error loading": "Errore di caricamento",
|
|
42
45
|
"Error loading channel list...": "Errore durante il caricamento della lista dei canali...",
|
|
43
46
|
"Error loading messages for this channel...": "Errore durante il caricamento dei messaggi per questo canale...",
|
|
44
47
|
"Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "Errore durante il contrassegno del messaggio come non letto. Non è possibile contrassegnare i messaggi non letti più vecchi dei 100 messaggi più recenti del canale.",
|
|
48
|
+
"Error muting a user ...": "Errore durante il silenziamento di un utente ...",
|
|
49
|
+
"Error pinning message": "Errore durante il fissaggio del messaggio",
|
|
50
|
+
"Error removing message pin": "Errore durante la rimozione del pin dal messaggio",
|
|
51
|
+
"Error unmuting a user ...": "Errore durante la rimozione del silenziamento di un utente ...",
|
|
45
52
|
"Error while loading, please reload/refresh": "Errore durante il caricamento, per favore ricarica la pagina",
|
|
46
53
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Il file è troppo grande: {{ size }}, la dimensione massima di caricamento è {{ limit }}",
|
|
47
54
|
"File too large": "File troppo grande",
|
|
@@ -52,6 +59,7 @@
|
|
|
52
59
|
"Generating...": "Generando...",
|
|
53
60
|
"Giphy": "Giphy",
|
|
54
61
|
"Hide who voted": "Nascondi chi ha votato",
|
|
62
|
+
"Hold to record. Release to save.": "Tieni premuto per registrare. Rilascia per salvare.",
|
|
55
63
|
"Hold to start recording.": "Tieni premuto per avviare la registrazione.",
|
|
56
64
|
"How about sending your first message to a friend?": "Che ne dici di inviare il tuo primo messaggio ad un amico?",
|
|
57
65
|
"Instant Commands": "Comandi Istantanei",
|
|
@@ -68,7 +76,11 @@
|
|
|
68
76
|
"Maximum number of files reached": "Numero massimo di file raggiunto",
|
|
69
77
|
"Message Reactions": "Reazioni ai Messaggi",
|
|
70
78
|
"Message deleted": "Messaggio cancellato",
|
|
79
|
+
"Message has been successfully flagged": "Messaggio segnalato con successo",
|
|
71
80
|
"Message flagged": "Messaggio contrassegnato",
|
|
81
|
+
"Message marked as unread": "Messaggio contrassegnato come non letto",
|
|
82
|
+
"Message pinned": "Messaggio fissato",
|
|
83
|
+
"Message unpinned": "Messaggio non più fissato",
|
|
72
84
|
"Multiple votes": "Voti multipli",
|
|
73
85
|
"Network error": "Errore di rete",
|
|
74
86
|
"Select more than one option": "Seleziona più di un'opzione",
|
|
@@ -140,6 +152,7 @@
|
|
|
140
152
|
"View {{count}} comments_other": "Vedi {{count}} commenti",
|
|
141
153
|
"Voice message": "Messaggio vocale",
|
|
142
154
|
"Voice message ({{duration}})": "Messaggio vocale ({{duration}})",
|
|
155
|
+
"Voice message deleted": "Messaggio vocale eliminato",
|
|
143
156
|
"Your comment": "Il tuo commento",
|
|
144
157
|
"You": "Tu",
|
|
145
158
|
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
@@ -292,5 +305,51 @@
|
|
|
292
305
|
"a11y/Send voice recording": "Send voice recording",
|
|
293
306
|
"a11y/Share Button": "Share Button",
|
|
294
307
|
"a11y/Start voice recording": "Start voice recording",
|
|
295
|
-
"a11y/Stop voice recording": "Stop voice recording"
|
|
308
|
+
"a11y/Stop voice recording": "Stop voice recording",
|
|
309
|
+
"a11y/Notifications": "Notifiche",
|
|
310
|
+
"a11y/Dismiss notification": "Chiudi notifica",
|
|
311
|
+
"Attachment upload blocked due to {{reason}}": "Caricamento dell'allegato bloccato a causa di {{reason}}",
|
|
312
|
+
"Attachment upload failed due to {{reason}}": "Caricamento dell'allegato non riuscito a causa di {{reason}}",
|
|
313
|
+
"Command not available": "Comando non disponibile",
|
|
314
|
+
"Command not available while editing": "Comando non disponibile durante la modifica",
|
|
315
|
+
"Command not available while replying": "Comando non disponibile durante la risposta",
|
|
316
|
+
"Error reproducing the recording": "Errore durante la riproduzione della registrazione",
|
|
317
|
+
"Error uploading attachment": "Errore durante il caricamento dell'allegato",
|
|
318
|
+
"Failed to create the poll": "Impossibile creare il sondaggio",
|
|
319
|
+
"Failed to create the poll due to {{reason}}": "Impossibile creare il sondaggio a causa di {{reason}}",
|
|
320
|
+
"Failed to end the poll": "Impossibile terminare il sondaggio",
|
|
321
|
+
"Failed to end the poll due to {{reason}}": "Impossibile terminare il sondaggio a causa di {{reason}}",
|
|
322
|
+
"Failed to jump to the first unread message": "Impossibile passare al primo messaggio non letto",
|
|
323
|
+
"Failed to retrieve location": "Impossibile recuperare la posizione",
|
|
324
|
+
"Failed to share location": "Impossibile condividere la posizione",
|
|
325
|
+
"File is required for upload attachment": "È necessario un file per caricare un allegato",
|
|
326
|
+
"Local upload attachment missing local id": "ID locale mancante per l'allegato locale da caricare",
|
|
327
|
+
"Poll ended": "Sondaggio terminato",
|
|
328
|
+
"Reached the vote limit. Remove an existing vote first.": "Limite di voti raggiunto. Rimuovi prima un voto esistente.",
|
|
329
|
+
"Thread has not been found": "Thread non trovato",
|
|
330
|
+
"Wait until all attachments have uploaded": "Attendi il caricamento di tutti gli allegati",
|
|
331
|
+
"Cannot seek in the recording": "Impossibile spostarsi nella registrazione",
|
|
332
|
+
"Channel archived": "Canale archiviato",
|
|
333
|
+
"Channel muted": "Canale silenziato",
|
|
334
|
+
"Channel pinned": "Canale fissato",
|
|
335
|
+
"Channel unarchived": "Canale rimosso dall'archivio",
|
|
336
|
+
"Channel unmuted": "Canale non più silenziato",
|
|
337
|
+
"Channel unpinned": "Canale non più fissato",
|
|
338
|
+
"Edit message request failed": "Richiesta di modifica del messaggio non riuscita",
|
|
339
|
+
"Failed to block user": "Impossibile bloccare l'utente",
|
|
340
|
+
"Failed to leave channel": "Impossibile lasciare il canale",
|
|
341
|
+
"Failed to play the recording": "Impossibile riprodurre la registrazione",
|
|
342
|
+
"Failed to update channel archive status": "Impossibile aggiornare lo stato di archiviazione del canale",
|
|
343
|
+
"Failed to update channel mute status": "Impossibile aggiornare lo stato di silenziamento del canale",
|
|
344
|
+
"Failed to update channel pinned status": "Impossibile aggiornare lo stato di fissaggio del canale",
|
|
345
|
+
"Left channel": "Canale lasciato",
|
|
346
|
+
"Recording format is not supported and cannot be reproduced": "Il formato della registrazione non è supportato e non può essere riprodotto",
|
|
347
|
+
"Send message request failed": "Richiesta di invio del messaggio non riuscita",
|
|
348
|
+
"User blocked": "Utente bloccato",
|
|
349
|
+
"User unblocked": "Utente sbloccato",
|
|
350
|
+
"{{ user }} has been muted": "{{ user }} è stato silenziato",
|
|
351
|
+
"{{ user }} has been unmuted": "{{ user }} non è più silenziato",
|
|
352
|
+
"size limit": "limite di dimensione",
|
|
353
|
+
"unknown error": "errore sconosciuto",
|
|
354
|
+
"unsupported file type": "tipo di file non supportato"
|
|
296
355
|
}
|