stream-chat-react-native-core 9.2.0-beta.2 → 9.2.0-beta.3
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 +232 -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 +232 -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 +254 -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/ja.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": "2つ以上のオプションを選択",
|
|
@@ -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": "ローカルアップロード添付ファイルにローカル 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/ko.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": "로컬 업로드 첨부 파일에 로컬 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/nl.json
CHANGED
|
@@ -38,10 +38,17 @@
|
|
|
38
38
|
"Empty message...": "Leeg bericht...",
|
|
39
39
|
"Enter a new option": "Voer een nieuwe optie in",
|
|
40
40
|
"End Vote": "Einde stemronde",
|
|
41
|
+
"Error adding flag": "Fout bij het markeren van het bericht",
|
|
42
|
+
"Error deleting message": "Fout bij het verwijderen van het bericht",
|
|
43
|
+
"Error fetching reactions": "Fout bij het ophalen van reacties",
|
|
41
44
|
"Error loading": "Probleem bij het laden",
|
|
42
45
|
"Error loading channel list...": "Probleem bij het laden van de kanalen...",
|
|
43
46
|
"Error loading messages for this channel...": "Probleem bij het laden van de berichten in dit kanaal...",
|
|
44
47
|
"Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "Fout bij markeren als ongelezen. Kan ongelezen berichten ouder dan de nieuwste 100 kanaalberichten niet markeren.",
|
|
48
|
+
"Error muting a user ...": "Fout bij het dempen van een gebruiker ...",
|
|
49
|
+
"Error pinning message": "Fout bij het vastzetten van het bericht",
|
|
50
|
+
"Error removing message pin": "Fout bij het losmaken van het bericht",
|
|
51
|
+
"Error unmuting a user ...": "Fout bij het opheffen van dempen van een gebruiker ...",
|
|
45
52
|
"Error while loading, please reload/refresh": "Probleem bij het laden, probeer opnieuw",
|
|
46
53
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Bestand is te groot: {{ size }}, maximale uploadgrootte is {{ limit }}",
|
|
47
54
|
"File too large": "Bestand te groot",
|
|
@@ -52,6 +59,7 @@
|
|
|
52
59
|
"Generating...": "Aan het genereren...",
|
|
53
60
|
"Giphy": "Giphy",
|
|
54
61
|
"Hide who voted": "Verberg wie heeft gestemd",
|
|
62
|
+
"Hold to record. Release to save.": "Houd ingedrukt om op te nemen. Laat los om op te slaan.",
|
|
55
63
|
"Hold to start recording.": "Houd vast om opname te starten.",
|
|
56
64
|
"How about sending your first message to a friend?": "Wat dacht je ervan om je eerste bericht naar een vriend te sturen?",
|
|
57
65
|
"Instant Commands": "Directe Opdrachten",
|
|
@@ -68,7 +76,11 @@
|
|
|
68
76
|
"Maximum number of files reached": "Maximaal aantal bestanden bereikt",
|
|
69
77
|
"Message Reactions": "Bericht Reacties",
|
|
70
78
|
"Message deleted": "Bericht verwijderd",
|
|
79
|
+
"Message has been successfully flagged": "Bericht is succesvol gemarkeerd",
|
|
71
80
|
"Message flagged": "Bericht gemarkeerd",
|
|
81
|
+
"Message marked as unread": "Bericht gemarkeerd als ongelezen",
|
|
82
|
+
"Message pinned": "Bericht vastgezet",
|
|
83
|
+
"Message unpinned": "Bericht losgemaakt",
|
|
72
84
|
"Multiple votes": "Meerdere stemmen",
|
|
73
85
|
"Network error": "Netwerkfout",
|
|
74
86
|
"Select more than one option": "Selecteer meer dan één optie",
|
|
@@ -140,6 +152,7 @@
|
|
|
140
152
|
"View {{count}} comments_other": "Bekijk {{count}} reacties",
|
|
141
153
|
"Voice message": "Spraakbericht",
|
|
142
154
|
"Voice message ({{duration}})": "Spraakbericht ({{duration}})",
|
|
155
|
+
"Voice message deleted": "Spraakbericht verwijderd",
|
|
143
156
|
"Your comment": "Jouw reactie",
|
|
144
157
|
"You": "U",
|
|
145
158
|
"You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
|
|
@@ -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": "Meldingen",
|
|
310
|
+
"a11y/Dismiss notification": "Melding sluiten",
|
|
311
|
+
"Attachment upload blocked due to {{reason}}": "Uploaden van bijlage geblokkeerd vanwege {{reason}}",
|
|
312
|
+
"Attachment upload failed due to {{reason}}": "Uploaden van bijlage mislukt vanwege {{reason}}",
|
|
313
|
+
"Command not available": "Opdracht niet beschikbaar",
|
|
314
|
+
"Command not available while editing": "Opdracht niet beschikbaar tijdens bewerken",
|
|
315
|
+
"Command not available while replying": "Opdracht niet beschikbaar tijdens beantwoorden",
|
|
316
|
+
"Error reproducing the recording": "Fout bij afspelen van de opname",
|
|
317
|
+
"Error uploading attachment": "Fout bij uploaden van bijlage",
|
|
318
|
+
"Failed to create the poll": "Poll maken mislukt",
|
|
319
|
+
"Failed to create the poll due to {{reason}}": "Poll maken mislukt vanwege {{reason}}",
|
|
320
|
+
"Failed to end the poll": "Poll beëindigen mislukt",
|
|
321
|
+
"Failed to end the poll due to {{reason}}": "Poll beëindigen mislukt vanwege {{reason}}",
|
|
322
|
+
"Failed to jump to the first unread message": "Kon niet naar het eerste ongelezen bericht gaan",
|
|
323
|
+
"Failed to retrieve location": "Kon locatie niet ophalen",
|
|
324
|
+
"Failed to share location": "Kon locatie niet delen",
|
|
325
|
+
"File is required for upload attachment": "Er is een bestand vereist om een bijlage te uploaden",
|
|
326
|
+
"Local upload attachment missing local id": "Lokale uploadbijlage mist een lokale ID",
|
|
327
|
+
"Poll ended": "Poll beëindigd",
|
|
328
|
+
"Reached the vote limit. Remove an existing vote first.": "Stemlimiet bereikt. Verwijder eerst een bestaande stem.",
|
|
329
|
+
"Thread has not been found": "Thread is niet gevonden",
|
|
330
|
+
"Wait until all attachments have uploaded": "Wacht tot alle bijlagen zijn geüpload",
|
|
331
|
+
"Cannot seek in the recording": "Kan niet spoelen in de opname",
|
|
332
|
+
"Channel archived": "Kanaal gearchiveerd",
|
|
333
|
+
"Channel muted": "Kanaal gedempt",
|
|
334
|
+
"Channel pinned": "Kanaal vastgezet",
|
|
335
|
+
"Channel unarchived": "Kanaal uit archief gehaald",
|
|
336
|
+
"Channel unmuted": "Kanaal niet meer gedempt",
|
|
337
|
+
"Channel unpinned": "Kanaal losgemaakt",
|
|
338
|
+
"Edit message request failed": "Verzoek om bericht te bewerken mislukt",
|
|
339
|
+
"Failed to block user": "Gebruiker blokkeren mislukt",
|
|
340
|
+
"Failed to leave channel": "Kanaal verlaten mislukt",
|
|
341
|
+
"Failed to play the recording": "Opname afspelen mislukt",
|
|
342
|
+
"Failed to update channel archive status": "Bijwerken van kanaalarchiefstatus mislukt",
|
|
343
|
+
"Failed to update channel mute status": "Bijwerken van dempstatus van kanaal mislukt",
|
|
344
|
+
"Failed to update channel pinned status": "Bijwerken van vastzetstatus van kanaal mislukt",
|
|
345
|
+
"Left channel": "Kanaal verlaten",
|
|
346
|
+
"Recording format is not supported and cannot be reproduced": "Opnameformaat wordt niet ondersteund en kan niet worden afgespeeld",
|
|
347
|
+
"Send message request failed": "Verzoek om bericht te verzenden mislukt",
|
|
348
|
+
"User blocked": "Gebruiker geblokkeerd",
|
|
349
|
+
"User unblocked": "Gebruiker gedeblokkeerd",
|
|
350
|
+
"{{ user }} has been muted": "{{ user }} is gedempt",
|
|
351
|
+
"{{ user }} has been unmuted": "{{ user }} is niet meer gedempt",
|
|
352
|
+
"size limit": "groottelimiet",
|
|
353
|
+
"unknown error": "onbekende fout",
|
|
354
|
+
"unsupported file type": "niet-ondersteund bestandstype"
|
|
296
355
|
}
|
|
@@ -38,10 +38,17 @@
|
|
|
38
38
|
"Empty message...": "Mensagem vazia...",
|
|
39
39
|
"Enter a new option": "Digite uma nova opção",
|
|
40
40
|
"End Vote": "Encerrar votação",
|
|
41
|
+
"Error adding flag": "Erro ao sinalizar mensagem",
|
|
42
|
+
"Error deleting message": "Erro ao excluir mensagem",
|
|
43
|
+
"Error fetching reactions": "Erro ao buscar reações",
|
|
41
44
|
"Error loading": "Erro ao carregar",
|
|
42
45
|
"Error loading channel list...": "Erro ao carregar lista de canais...",
|
|
43
46
|
"Error loading messages for this channel...": "Erro ao carregar mensagens para este canal...",
|
|
44
47
|
"Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "Erro ao marcar mensagem como não lida. Não é possível marcar mensagens não lidas mais antigas que as 100 mensagens mais recentes do canal.",
|
|
48
|
+
"Error muting a user ...": "Erro ao silenciar um usuário ...",
|
|
49
|
+
"Error pinning message": "Erro ao fixar mensagem",
|
|
50
|
+
"Error removing message pin": "Erro ao remover fixação da mensagem",
|
|
51
|
+
"Error unmuting a user ...": "Erro ao remover silenciamento de um usuário ...",
|
|
45
52
|
"Error while loading, please reload/refresh": "Erro ao carregar, por favor recarregue/atualize",
|
|
46
53
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "O arquivo é muito grande: {{ size }}, o tamanho máximo de upload é {{ limit }}",
|
|
47
54
|
"File too large": "Arquivo muito grande",
|
|
@@ -52,6 +59,7 @@
|
|
|
52
59
|
"Generating...": "Gerando...",
|
|
53
60
|
"Giphy": "Giphy",
|
|
54
61
|
"Hide who voted": "Ocultar quem votou",
|
|
62
|
+
"Hold to record. Release to save.": "Mantenha pressionado para gravar. Solte para salvar.",
|
|
55
63
|
"Hold to start recording.": "Mantenha pressionado para começar a gravar.",
|
|
56
64
|
"How about sending your first message to a friend?": "Que tal enviar sua primeira mensagem para um amigo?",
|
|
57
65
|
"Instant Commands": "Comandos Instantâneos",
|
|
@@ -68,7 +76,11 @@
|
|
|
68
76
|
"Maximum number of files reached": "Número máximo de arquivos atingido",
|
|
69
77
|
"Message Reactions": "Reações à Mensagem",
|
|
70
78
|
"Message deleted": "Mensagem excluída",
|
|
79
|
+
"Message has been successfully flagged": "Mensagem sinalizada com sucesso",
|
|
71
80
|
"Message flagged": "Mensagem sinalizada",
|
|
81
|
+
"Message marked as unread": "Mensagem marcada como não lida",
|
|
82
|
+
"Message pinned": "Mensagem fixada",
|
|
83
|
+
"Message unpinned": "Mensagem desafixada",
|
|
72
84
|
"Multiple votes": "Votos múltiplos",
|
|
73
85
|
"Network error": "Erro de rede",
|
|
74
86
|
"Select more than one option": "Selecione mais de uma opção",
|
|
@@ -140,6 +152,7 @@
|
|
|
140
152
|
"View {{count}} comments_other": "Ver {{count}} comentários",
|
|
141
153
|
"Voice message": "Mensagem de voz",
|
|
142
154
|
"Voice message ({{duration}})": "Mensagem de voz ({{duration}})",
|
|
155
|
+
"Voice message deleted": "Mensagem de voz excluída",
|
|
143
156
|
"Your comment": "Seu comentário",
|
|
144
157
|
"You": "Você",
|
|
145
158
|
"You can't send messages in this channel": "Você não pode enviar mensagens neste 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": "Notificações",
|
|
310
|
+
"a11y/Dismiss notification": "Fechar notificação",
|
|
311
|
+
"Attachment upload blocked due to {{reason}}": "Upload do anexo bloqueado devido a {{reason}}",
|
|
312
|
+
"Attachment upload failed due to {{reason}}": "Falha no upload do anexo devido a {{reason}}",
|
|
313
|
+
"Command not available": "Comando indisponível",
|
|
314
|
+
"Command not available while editing": "Comando indisponível durante a edição",
|
|
315
|
+
"Command not available while replying": "Comando indisponível durante a resposta",
|
|
316
|
+
"Error reproducing the recording": "Erro ao reproduzir a gravação",
|
|
317
|
+
"Error uploading attachment": "Erro ao fazer upload do anexo",
|
|
318
|
+
"Failed to create the poll": "Falha ao criar a enquete",
|
|
319
|
+
"Failed to create the poll due to {{reason}}": "Falha ao criar a enquete devido a {{reason}}",
|
|
320
|
+
"Failed to end the poll": "Falha ao encerrar a enquete",
|
|
321
|
+
"Failed to end the poll due to {{reason}}": "Falha ao encerrar a enquete devido a {{reason}}",
|
|
322
|
+
"Failed to jump to the first unread message": "Falha ao ir para a primeira mensagem não lida",
|
|
323
|
+
"Failed to retrieve location": "Falha ao obter localização",
|
|
324
|
+
"Failed to share location": "Falha ao compartilhar localização",
|
|
325
|
+
"File is required for upload attachment": "É necessário um arquivo para fazer upload de um anexo",
|
|
326
|
+
"Local upload attachment missing local id": "ID local ausente no anexo local para upload",
|
|
327
|
+
"Poll ended": "Enquete encerrada",
|
|
328
|
+
"Reached the vote limit. Remove an existing vote first.": "Limite de votos atingido. Remova um voto existente primeiro.",
|
|
329
|
+
"Thread has not been found": "Thread não encontrada",
|
|
330
|
+
"Wait until all attachments have uploaded": "Aguarde até que todos os anexos tenham sido enviados",
|
|
331
|
+
"Cannot seek in the recording": "Não é possível navegar pela gravação",
|
|
332
|
+
"Channel archived": "Canal arquivado",
|
|
333
|
+
"Channel muted": "Canal silenciado",
|
|
334
|
+
"Channel pinned": "Canal fixado",
|
|
335
|
+
"Channel unarchived": "Canal desarquivado",
|
|
336
|
+
"Channel unmuted": "Canal com silenciamento removido",
|
|
337
|
+
"Channel unpinned": "Canal desafixado",
|
|
338
|
+
"Edit message request failed": "Falha na solicitação de edição da mensagem",
|
|
339
|
+
"Failed to block user": "Falha ao bloquear usuário",
|
|
340
|
+
"Failed to leave channel": "Falha ao sair do canal",
|
|
341
|
+
"Failed to play the recording": "Falha ao reproduzir a gravação",
|
|
342
|
+
"Failed to update channel archive status": "Falha ao atualizar o status de arquivamento do canal",
|
|
343
|
+
"Failed to update channel mute status": "Falha ao atualizar o status de silenciamento do canal",
|
|
344
|
+
"Failed to update channel pinned status": "Falha ao atualizar o status de fixação do canal",
|
|
345
|
+
"Left channel": "Você saiu do canal",
|
|
346
|
+
"Recording format is not supported and cannot be reproduced": "O formato da gravação não é compatível e não pode ser reproduzido",
|
|
347
|
+
"Send message request failed": "Falha na solicitação de envio da mensagem",
|
|
348
|
+
"User blocked": "Usuário bloqueado",
|
|
349
|
+
"User unblocked": "Usuário desbloqueado",
|
|
350
|
+
"{{ user }} has been muted": "{{ user }} foi silenciado",
|
|
351
|
+
"{{ user }} has been unmuted": "{{ user }} teve o silenciamento removido",
|
|
352
|
+
"size limit": "limite de tamanho",
|
|
353
|
+
"unknown error": "erro desconhecido",
|
|
354
|
+
"unsupported file type": "tipo de arquivo não compatível"
|
|
296
355
|
}
|
package/lib/module/i18n/ru.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": "У локального загружаемого вложения отсутствует локальный 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/tr.json
CHANGED
|
@@ -38,10 +38,17 @@
|
|
|
38
38
|
"Empty message...": "Boş mesaj...",
|
|
39
39
|
"Enter a new option": "Yeni bir seçenek girin",
|
|
40
40
|
"End Vote": "Oylamayı sonlandır",
|
|
41
|
+
"Error adding flag": "Mesaj raporlanırken hata oluştu",
|
|
42
|
+
"Error deleting message": "Mesaj silinirken hata oluştu",
|
|
43
|
+
"Error fetching reactions": "Tepkiler alınırken hata oluştu",
|
|
41
44
|
"Error loading": "Yükleme hatası",
|
|
42
45
|
"Error loading channel list...": "Kanal listesi yüklenirken hata oluştu...",
|
|
43
46
|
"Error loading messages for this channel...": "Bu kanal için mesajlar yüklenirken hata oluştu...",
|
|
44
47
|
"Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "Okunmamış olarak işaretlenen mesajda hata oluştu. En yeni 100 kanal mesajından daha eski okunmamış mesajları işaretleyemezsiniz.",
|
|
48
|
+
"Error muting a user ...": "Kullanıcı sessize alınırken hata oluştu ...",
|
|
49
|
+
"Error pinning message": "Mesaj sabitlenirken hata oluştu",
|
|
50
|
+
"Error removing message pin": "Mesaj sabitlemesi kaldırılırken hata oluştu",
|
|
51
|
+
"Error unmuting a user ...": "Kullanıcının sesi açılırken hata oluştu ...",
|
|
45
52
|
"Error while loading, please reload/refresh": "Yüklenirken hata oluştu, lütfen tekrar deneyiniz",
|
|
46
53
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Dosya çok büyük: {{ size }}, maksimum yükleme boyutu {{ limit }}",
|
|
47
54
|
"File too large": "Dosya çok büyük",
|
|
@@ -52,6 +59,7 @@
|
|
|
52
59
|
"Generating...": "Oluşturuluyor...",
|
|
53
60
|
"Giphy": "Giphy",
|
|
54
61
|
"Hide who voted": "Kimin oy verdiğini gizle",
|
|
62
|
+
"Hold to record. Release to save.": "Kayıt yapmak için basılı tutun. Kaydetmek için bırakın.",
|
|
55
63
|
"Hold to start recording.": "Kayıt yapmak için basılı tutun.",
|
|
56
64
|
"How about sending your first message to a friend?": "İlk mesajınızı bir arkadaşınıza göndermeye ne dersiniz?",
|
|
57
65
|
"Instant Commands": "Anlık Komutlar",
|
|
@@ -68,7 +76,11 @@
|
|
|
68
76
|
"Maximum number of files reached": "Maksimum dosya sayısına ulaşıldı",
|
|
69
77
|
"Message Reactions": "Mesaj Tepkileri",
|
|
70
78
|
"Message deleted": "Mesaj silindi",
|
|
79
|
+
"Message has been successfully flagged": "Mesaj başarıyla raporlandı",
|
|
71
80
|
"Message flagged": "Mesaj işaretlendi",
|
|
81
|
+
"Message marked as unread": "Mesaj okunmadı olarak işaretlendi",
|
|
82
|
+
"Message pinned": "Mesaj sabitlendi",
|
|
83
|
+
"Message unpinned": "Mesaj sabitlemesi kaldırıldı",
|
|
72
84
|
"Multiple votes": "Çoklu oy",
|
|
73
85
|
"Network error": "Ağ hatası",
|
|
74
86
|
"Select more than one option": "Birden fazla seçenek seçin",
|
|
@@ -140,6 +152,7 @@
|
|
|
140
152
|
"View {{count}} comments_other": "{{count}} yorumu görüntüle",
|
|
141
153
|
"Voice message": "Sesli mesaj",
|
|
142
154
|
"Voice message ({{duration}})": "Sesli mesaj ({{duration}})",
|
|
155
|
+
"Voice message deleted": "Sesli mesaj silindi",
|
|
143
156
|
"Your comment": "Yorumunuz",
|
|
144
157
|
"You": "Sen",
|
|
145
158
|
"You can't send messages in this channel": "Bu konuşmaya mesaj gönderemezsiniz",
|
|
@@ -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": "Bildirimler",
|
|
310
|
+
"a11y/Dismiss notification": "Bildirimi kapat",
|
|
311
|
+
"Attachment upload blocked due to {{reason}}": "Ek yükleme {{reason}} nedeniyle engellendi",
|
|
312
|
+
"Attachment upload failed due to {{reason}}": "Ek yükleme {{reason}} nedeniyle başarısız oldu",
|
|
313
|
+
"Command not available": "Komut kullanılamıyor",
|
|
314
|
+
"Command not available while editing": "Komut düzenleme sırasında kullanılamıyor",
|
|
315
|
+
"Command not available while replying": "Komut yanıt verirken kullanılamıyor",
|
|
316
|
+
"Error reproducing the recording": "Kaydı oynatırken hata oluştu",
|
|
317
|
+
"Error uploading attachment": "Eki yüklerken hata oluştu",
|
|
318
|
+
"Failed to create the poll": "Anket oluşturulamadı",
|
|
319
|
+
"Failed to create the poll due to {{reason}}": "Anket {{reason}} nedeniyle oluşturulamadı",
|
|
320
|
+
"Failed to end the poll": "Anket sonlandırılamadı",
|
|
321
|
+
"Failed to end the poll due to {{reason}}": "Anket {{reason}} nedeniyle sonlandırılamadı",
|
|
322
|
+
"Failed to jump to the first unread message": "İlk okunmamış mesaja gidilemedi",
|
|
323
|
+
"Failed to retrieve location": "Konum alınamadı",
|
|
324
|
+
"Failed to share location": "Konum paylaşılamadı",
|
|
325
|
+
"File is required for upload attachment": "Ek yüklemek için bir dosya gerekli",
|
|
326
|
+
"Local upload attachment missing local id": "Yerel yükleme ekinin yerel kimliği eksik",
|
|
327
|
+
"Poll ended": "Anket sona erdi",
|
|
328
|
+
"Reached the vote limit. Remove an existing vote first.": "Oy sınırına ulaşıldı. Önce mevcut bir oyu kaldırın.",
|
|
329
|
+
"Thread has not been found": "Konu bulunamadı",
|
|
330
|
+
"Wait until all attachments have uploaded": "Tüm ekler yüklenene kadar bekleyin",
|
|
331
|
+
"Cannot seek in the recording": "Kayıtta ileri/geri sarılamıyor",
|
|
332
|
+
"Channel archived": "Kanal arşivlendi",
|
|
333
|
+
"Channel muted": "Kanal sessize alındı",
|
|
334
|
+
"Channel pinned": "Kanal sabitlendi",
|
|
335
|
+
"Channel unarchived": "Kanal arşivden çıkarıldı",
|
|
336
|
+
"Channel unmuted": "Kanalın sesi açıldı",
|
|
337
|
+
"Channel unpinned": "Kanal sabitlemesi kaldırıldı",
|
|
338
|
+
"Edit message request failed": "Mesaj düzenleme isteği başarısız oldu",
|
|
339
|
+
"Failed to block user": "Kullanıcı engellenemedi",
|
|
340
|
+
"Failed to leave channel": "Kanaldan çıkılamadı",
|
|
341
|
+
"Failed to play the recording": "Kayıt oynatılamadı",
|
|
342
|
+
"Failed to update channel archive status": "Kanal arşiv durumu güncellenemedi",
|
|
343
|
+
"Failed to update channel mute status": "Kanal sessize alma durumu güncellenemedi",
|
|
344
|
+
"Failed to update channel pinned status": "Kanal sabitleme durumu güncellenemedi",
|
|
345
|
+
"Left channel": "Kanaldan çıkıldı",
|
|
346
|
+
"Recording format is not supported and cannot be reproduced": "Kayıt biçimi desteklenmiyor ve oynatılamıyor",
|
|
347
|
+
"Send message request failed": "Mesaj gönderme isteği başarısız oldu",
|
|
348
|
+
"User blocked": "Kullanıcı engellendi",
|
|
349
|
+
"User unblocked": "Kullanıcının engeli kaldırıldı",
|
|
350
|
+
"{{ user }} has been muted": "{{ user }} sessize alındı",
|
|
351
|
+
"{{ user }} has been unmuted": "{{ user }} kullanıcısının sesi açıldı",
|
|
352
|
+
"size limit": "boyut sınırı",
|
|
353
|
+
"unknown error": "bilinmeyen hata",
|
|
354
|
+
"unsupported file type": "desteklenmeyen dosya türü"
|
|
296
355
|
}
|
|
@@ -27,6 +27,7 @@ var AudioPlayerPool = exports.AudioPlayerPool = function () {
|
|
|
27
27
|
value: function getOrAddPlayer(params) {
|
|
28
28
|
var player = this.pool.get(params.id);
|
|
29
29
|
if (player) {
|
|
30
|
+
player.setOnError(params.onError);
|
|
30
31
|
return player;
|
|
31
32
|
}
|
|
32
33
|
var newPlayer = new _audioPlayer.AudioPlayer(params);
|