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.
Files changed (386) hide show
  1. package/README.md +1 -1
  2. package/lib/commonjs/components/AttachmentPicker/components/AttachmentPickerContent.js +2 -2
  3. package/lib/commonjs/components/AttachmentPicker/components/AttachmentPickerContent.js.map +1 -1
  4. package/lib/commonjs/components/Channel/Channel.js +10 -1
  5. package/lib/commonjs/components/Channel/Channel.js.map +1 -1
  6. package/lib/commonjs/components/Channel/hooks/useMessageListPagination.js +26 -3
  7. package/lib/commonjs/components/Channel/hooks/useMessageListPagination.js.map +1 -1
  8. package/lib/commonjs/components/ChannelList/ChannelList.js +29 -4
  9. package/lib/commonjs/components/ChannelList/ChannelList.js.map +1 -1
  10. package/lib/commonjs/components/ChannelList/hooks/useChannelActions.js +314 -11
  11. package/lib/commonjs/components/ChannelList/hooks/useChannelActions.js.map +1 -1
  12. package/lib/commonjs/components/Message/hooks/useMessageActionHandlers.js +202 -15
  13. package/lib/commonjs/components/Message/hooks/useMessageActionHandlers.js.map +1 -1
  14. package/lib/commonjs/components/MessageInput/MessageComposer.js +1 -1
  15. package/lib/commonjs/components/MessageInput/MessageComposerLeadingView.js +1 -1
  16. package/lib/commonjs/components/MessageInput/MessageComposerLeadingView.js.map +1 -1
  17. package/lib/commonjs/components/MessageInput/MessageInputHeaderView.js +1 -1
  18. package/lib/commonjs/components/MessageInput/MessageInputHeaderView.js.map +1 -1
  19. package/lib/commonjs/components/MessageInput/MessageInputTrailingView.js +1 -1
  20. package/lib/commonjs/components/MessageInput/MessageInputTrailingView.js.map +1 -1
  21. package/lib/commonjs/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.js +7 -13
  22. package/lib/commonjs/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.js.map +1 -1
  23. package/lib/commonjs/components/MessageInput/components/AudioRecorder/AudioRecorder.js +27 -6
  24. package/lib/commonjs/components/MessageInput/components/AudioRecorder/AudioRecorder.js.map +1 -1
  25. package/lib/commonjs/components/MessageInput/components/AudioRecorder/AudioRecordingButton.js +29 -9
  26. package/lib/commonjs/components/MessageInput/components/AudioRecorder/AudioRecordingButton.js.map +1 -1
  27. package/lib/commonjs/components/MessageInput/components/OutputButtons/index.js +1 -1
  28. package/lib/commonjs/components/MessageList/MessageFlashList.js +5 -2
  29. package/lib/commonjs/components/MessageList/MessageFlashList.js.map +1 -1
  30. package/lib/commonjs/components/MessageList/MessageList.js +5 -2
  31. package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
  32. package/lib/commonjs/components/MessageMenu/hooks/useFetchReactions.js +23 -2
  33. package/lib/commonjs/components/MessageMenu/hooks/useFetchReactions.js.map +1 -1
  34. package/lib/commonjs/components/Notifications/Notification.js +230 -0
  35. package/lib/commonjs/components/Notifications/Notification.js.map +1 -0
  36. package/lib/commonjs/components/Notifications/NotificationList.js +120 -0
  37. package/lib/commonjs/components/Notifications/NotificationList.js.map +1 -0
  38. package/lib/commonjs/components/Notifications/NotificationTargetContext.js +45 -0
  39. package/lib/commonjs/components/Notifications/NotificationTargetContext.js.map +1 -0
  40. package/lib/commonjs/components/Notifications/hooks/index.js +59 -0
  41. package/lib/commonjs/components/Notifications/hooks/index.js.map +1 -0
  42. package/lib/commonjs/components/Notifications/hooks/useNotificationApi.js +133 -0
  43. package/lib/commonjs/components/Notifications/hooks/useNotificationApi.js.map +1 -0
  44. package/lib/commonjs/components/Notifications/hooks/useNotificationListController.js +133 -0
  45. package/lib/commonjs/components/Notifications/hooks/useNotificationListController.js.map +1 -0
  46. package/lib/commonjs/components/Notifications/hooks/useNotificationTarget.js +26 -0
  47. package/lib/commonjs/components/Notifications/hooks/useNotificationTarget.js.map +1 -0
  48. package/lib/commonjs/components/Notifications/hooks/useNotifications.js +26 -0
  49. package/lib/commonjs/components/Notifications/hooks/useNotifications.js.map +1 -0
  50. package/lib/commonjs/components/Notifications/hooks/useSystemNotifications.js +22 -0
  51. package/lib/commonjs/components/Notifications/hooks/useSystemNotifications.js.map +1 -0
  52. package/lib/commonjs/components/Notifications/index.js +59 -0
  53. package/lib/commonjs/components/Notifications/index.js.map +1 -0
  54. package/lib/commonjs/components/Notifications/notificationTarget.js +220 -0
  55. package/lib/commonjs/components/Notifications/notificationTarget.js.map +1 -0
  56. package/lib/commonjs/components/Notifications/notificationTranslations.js +137 -0
  57. package/lib/commonjs/components/Notifications/notificationTranslations.js.map +1 -0
  58. package/lib/commonjs/components/Poll/components/PollOption.js +14 -9
  59. package/lib/commonjs/components/Poll/components/PollOption.js.map +1 -1
  60. package/lib/commonjs/components/Poll/hooks/usePollState.js +35 -3
  61. package/lib/commonjs/components/Poll/hooks/usePollState.js.map +1 -1
  62. package/lib/commonjs/components/Thread/Thread.js +19 -11
  63. package/lib/commonjs/components/Thread/Thread.js.map +1 -1
  64. package/lib/commonjs/components/ThreadList/ThreadList.js +30 -9
  65. package/lib/commonjs/components/ThreadList/ThreadList.js.map +1 -1
  66. package/lib/commonjs/components/index.js +11 -0
  67. package/lib/commonjs/components/index.js.map +1 -1
  68. package/lib/commonjs/contexts/componentsContext/defaultComponents.js +4 -0
  69. package/lib/commonjs/contexts/componentsContext/defaultComponents.js.map +1 -1
  70. package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +37 -0
  71. package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
  72. package/lib/commonjs/contexts/themeContext/utils/theme.js +13 -0
  73. package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
  74. package/lib/commonjs/hooks/index.js +11 -0
  75. package/lib/commonjs/hooks/index.js.map +1 -1
  76. package/lib/commonjs/hooks/useAudioPlayer.js +34 -1
  77. package/lib/commonjs/hooks/useAudioPlayer.js.map +1 -1
  78. package/lib/commonjs/hooks/useInAppNotificationsState.js.map +1 -1
  79. package/lib/commonjs/hooks/useLazyRef.js +13 -0
  80. package/lib/commonjs/hooks/useLazyRef.js.map +1 -0
  81. package/lib/commonjs/i18n/en.json +60 -1
  82. package/lib/commonjs/i18n/es.json +62 -3
  83. package/lib/commonjs/i18n/fr.json +60 -1
  84. package/lib/commonjs/i18n/he.json +60 -1
  85. package/lib/commonjs/i18n/hi.json +60 -1
  86. package/lib/commonjs/i18n/it.json +60 -1
  87. package/lib/commonjs/i18n/ja.json +60 -1
  88. package/lib/commonjs/i18n/ko.json +60 -1
  89. package/lib/commonjs/i18n/nl.json +60 -1
  90. package/lib/commonjs/i18n/pt-br.json +60 -1
  91. package/lib/commonjs/i18n/ru.json +60 -1
  92. package/lib/commonjs/i18n/tr.json +60 -1
  93. package/lib/commonjs/state-store/audio-player-pool.js +1 -0
  94. package/lib/commonjs/state-store/audio-player-pool.js.map +1 -1
  95. package/lib/commonjs/state-store/audio-player.js +92 -13
  96. package/lib/commonjs/state-store/audio-player.js.map +1 -1
  97. package/lib/commonjs/theme/generated/dark/StreamTokens.android.js +16 -16
  98. package/lib/commonjs/theme/generated/dark/StreamTokens.android.js.map +1 -1
  99. package/lib/commonjs/theme/generated/dark/StreamTokens.ios.js +8 -8
  100. package/lib/commonjs/theme/generated/dark/StreamTokens.ios.js.map +1 -1
  101. package/lib/commonjs/theme/generated/dark/StreamTokens.web.js +8 -8
  102. package/lib/commonjs/theme/generated/dark/StreamTokens.web.js.map +1 -1
  103. package/lib/commonjs/theme/generated/light/StreamTokens.android.js +16 -16
  104. package/lib/commonjs/theme/generated/light/StreamTokens.android.js.map +1 -1
  105. package/lib/commonjs/theme/generated/light/StreamTokens.ios.js +8 -8
  106. package/lib/commonjs/theme/generated/light/StreamTokens.ios.js.map +1 -1
  107. package/lib/commonjs/theme/generated/light/StreamTokens.web.js +8 -8
  108. package/lib/commonjs/theme/generated/light/StreamTokens.web.js.map +1 -1
  109. package/lib/commonjs/utils/animations/createBoundedZoomTransition.js +151 -0
  110. package/lib/commonjs/utils/animations/createBoundedZoomTransition.js.map +1 -0
  111. package/lib/commonjs/utils/{transitions.js → animations/transitions.js} +6 -0
  112. package/lib/commonjs/utils/animations/transitions.js.map +1 -0
  113. package/lib/commonjs/version.json +1 -1
  114. package/lib/module/components/AttachmentPicker/components/AttachmentPickerContent.js +2 -2
  115. package/lib/module/components/AttachmentPicker/components/AttachmentPickerContent.js.map +1 -1
  116. package/lib/module/components/Channel/Channel.js +10 -1
  117. package/lib/module/components/Channel/Channel.js.map +1 -1
  118. package/lib/module/components/Channel/hooks/useMessageListPagination.js +26 -3
  119. package/lib/module/components/Channel/hooks/useMessageListPagination.js.map +1 -1
  120. package/lib/module/components/ChannelList/ChannelList.js +29 -4
  121. package/lib/module/components/ChannelList/ChannelList.js.map +1 -1
  122. package/lib/module/components/ChannelList/hooks/useChannelActions.js +314 -11
  123. package/lib/module/components/ChannelList/hooks/useChannelActions.js.map +1 -1
  124. package/lib/module/components/Message/hooks/useMessageActionHandlers.js +202 -15
  125. package/lib/module/components/Message/hooks/useMessageActionHandlers.js.map +1 -1
  126. package/lib/module/components/MessageInput/MessageComposer.js +1 -1
  127. package/lib/module/components/MessageInput/MessageComposerLeadingView.js +1 -1
  128. package/lib/module/components/MessageInput/MessageComposerLeadingView.js.map +1 -1
  129. package/lib/module/components/MessageInput/MessageInputHeaderView.js +1 -1
  130. package/lib/module/components/MessageInput/MessageInputHeaderView.js.map +1 -1
  131. package/lib/module/components/MessageInput/MessageInputTrailingView.js +1 -1
  132. package/lib/module/components/MessageInput/MessageInputTrailingView.js.map +1 -1
  133. package/lib/module/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.js +7 -13
  134. package/lib/module/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.js.map +1 -1
  135. package/lib/module/components/MessageInput/components/AudioRecorder/AudioRecorder.js +27 -6
  136. package/lib/module/components/MessageInput/components/AudioRecorder/AudioRecorder.js.map +1 -1
  137. package/lib/module/components/MessageInput/components/AudioRecorder/AudioRecordingButton.js +29 -9
  138. package/lib/module/components/MessageInput/components/AudioRecorder/AudioRecordingButton.js.map +1 -1
  139. package/lib/module/components/MessageInput/components/OutputButtons/index.js +1 -1
  140. package/lib/module/components/MessageList/MessageFlashList.js +5 -2
  141. package/lib/module/components/MessageList/MessageFlashList.js.map +1 -1
  142. package/lib/module/components/MessageList/MessageList.js +5 -2
  143. package/lib/module/components/MessageList/MessageList.js.map +1 -1
  144. package/lib/module/components/MessageMenu/hooks/useFetchReactions.js +23 -2
  145. package/lib/module/components/MessageMenu/hooks/useFetchReactions.js.map +1 -1
  146. package/lib/module/components/Notifications/Notification.js +230 -0
  147. package/lib/module/components/Notifications/Notification.js.map +1 -0
  148. package/lib/module/components/Notifications/NotificationList.js +120 -0
  149. package/lib/module/components/Notifications/NotificationList.js.map +1 -0
  150. package/lib/module/components/Notifications/NotificationTargetContext.js +45 -0
  151. package/lib/module/components/Notifications/NotificationTargetContext.js.map +1 -0
  152. package/lib/module/components/Notifications/hooks/index.js +59 -0
  153. package/lib/module/components/Notifications/hooks/index.js.map +1 -0
  154. package/lib/module/components/Notifications/hooks/useNotificationApi.js +133 -0
  155. package/lib/module/components/Notifications/hooks/useNotificationApi.js.map +1 -0
  156. package/lib/module/components/Notifications/hooks/useNotificationListController.js +133 -0
  157. package/lib/module/components/Notifications/hooks/useNotificationListController.js.map +1 -0
  158. package/lib/module/components/Notifications/hooks/useNotificationTarget.js +26 -0
  159. package/lib/module/components/Notifications/hooks/useNotificationTarget.js.map +1 -0
  160. package/lib/module/components/Notifications/hooks/useNotifications.js +26 -0
  161. package/lib/module/components/Notifications/hooks/useNotifications.js.map +1 -0
  162. package/lib/module/components/Notifications/hooks/useSystemNotifications.js +22 -0
  163. package/lib/module/components/Notifications/hooks/useSystemNotifications.js.map +1 -0
  164. package/lib/module/components/Notifications/index.js +59 -0
  165. package/lib/module/components/Notifications/index.js.map +1 -0
  166. package/lib/module/components/Notifications/notificationTarget.js +220 -0
  167. package/lib/module/components/Notifications/notificationTarget.js.map +1 -0
  168. package/lib/module/components/Notifications/notificationTranslations.js +137 -0
  169. package/lib/module/components/Notifications/notificationTranslations.js.map +1 -0
  170. package/lib/module/components/Poll/components/PollOption.js +14 -9
  171. package/lib/module/components/Poll/components/PollOption.js.map +1 -1
  172. package/lib/module/components/Poll/hooks/usePollState.js +35 -3
  173. package/lib/module/components/Poll/hooks/usePollState.js.map +1 -1
  174. package/lib/module/components/Thread/Thread.js +19 -11
  175. package/lib/module/components/Thread/Thread.js.map +1 -1
  176. package/lib/module/components/ThreadList/ThreadList.js +30 -9
  177. package/lib/module/components/ThreadList/ThreadList.js.map +1 -1
  178. package/lib/module/components/index.js +11 -0
  179. package/lib/module/components/index.js.map +1 -1
  180. package/lib/module/contexts/componentsContext/defaultComponents.js +4 -0
  181. package/lib/module/contexts/componentsContext/defaultComponents.js.map +1 -1
  182. package/lib/module/contexts/messageInputContext/MessageInputContext.js +37 -0
  183. package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
  184. package/lib/module/contexts/themeContext/utils/theme.js +13 -0
  185. package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
  186. package/lib/module/hooks/index.js +11 -0
  187. package/lib/module/hooks/index.js.map +1 -1
  188. package/lib/module/hooks/useAudioPlayer.js +34 -1
  189. package/lib/module/hooks/useAudioPlayer.js.map +1 -1
  190. package/lib/module/hooks/useInAppNotificationsState.js.map +1 -1
  191. package/lib/module/hooks/useLazyRef.js +13 -0
  192. package/lib/module/hooks/useLazyRef.js.map +1 -0
  193. package/lib/module/i18n/en.json +60 -1
  194. package/lib/module/i18n/es.json +62 -3
  195. package/lib/module/i18n/fr.json +60 -1
  196. package/lib/module/i18n/he.json +60 -1
  197. package/lib/module/i18n/hi.json +60 -1
  198. package/lib/module/i18n/it.json +60 -1
  199. package/lib/module/i18n/ja.json +60 -1
  200. package/lib/module/i18n/ko.json +60 -1
  201. package/lib/module/i18n/nl.json +60 -1
  202. package/lib/module/i18n/pt-br.json +60 -1
  203. package/lib/module/i18n/ru.json +60 -1
  204. package/lib/module/i18n/tr.json +60 -1
  205. package/lib/module/state-store/audio-player-pool.js +1 -0
  206. package/lib/module/state-store/audio-player-pool.js.map +1 -1
  207. package/lib/module/state-store/audio-player.js +92 -13
  208. package/lib/module/state-store/audio-player.js.map +1 -1
  209. package/lib/module/theme/generated/dark/StreamTokens.android.js +16 -16
  210. package/lib/module/theme/generated/dark/StreamTokens.android.js.map +1 -1
  211. package/lib/module/theme/generated/dark/StreamTokens.ios.js +8 -8
  212. package/lib/module/theme/generated/dark/StreamTokens.ios.js.map +1 -1
  213. package/lib/module/theme/generated/dark/StreamTokens.web.js +8 -8
  214. package/lib/module/theme/generated/dark/StreamTokens.web.js.map +1 -1
  215. package/lib/module/theme/generated/light/StreamTokens.android.js +16 -16
  216. package/lib/module/theme/generated/light/StreamTokens.android.js.map +1 -1
  217. package/lib/module/theme/generated/light/StreamTokens.ios.js +8 -8
  218. package/lib/module/theme/generated/light/StreamTokens.ios.js.map +1 -1
  219. package/lib/module/theme/generated/light/StreamTokens.web.js +8 -8
  220. package/lib/module/theme/generated/light/StreamTokens.web.js.map +1 -1
  221. package/lib/module/utils/animations/createBoundedZoomTransition.js +151 -0
  222. package/lib/module/utils/animations/createBoundedZoomTransition.js.map +1 -0
  223. package/lib/module/utils/{transitions.js → animations/transitions.js} +6 -0
  224. package/lib/module/utils/animations/transitions.js.map +1 -0
  225. package/lib/module/version.json +1 -1
  226. package/lib/typescript/components/AttachmentPicker/components/AttachmentPickerContent.d.ts.map +1 -1
  227. package/lib/typescript/components/Channel/Channel.d.ts +1 -0
  228. package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
  229. package/lib/typescript/components/Channel/hooks/useMessageListPagination.d.ts.map +1 -1
  230. package/lib/typescript/components/ChannelList/ChannelList.d.ts +1 -0
  231. package/lib/typescript/components/ChannelList/ChannelList.d.ts.map +1 -1
  232. package/lib/typescript/components/ChannelList/hooks/useChannelActions.d.ts.map +1 -1
  233. package/lib/typescript/components/Message/hooks/useMessageActionHandlers.d.ts.map +1 -1
  234. package/lib/typescript/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.d.ts.map +1 -1
  235. package/lib/typescript/components/MessageInput/components/AudioRecorder/AudioRecorder.d.ts.map +1 -1
  236. package/lib/typescript/components/MessageInput/components/AudioRecorder/AudioRecordingButton.d.ts.map +1 -1
  237. package/lib/typescript/components/MessageList/MessageFlashList.d.ts.map +1 -1
  238. package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
  239. package/lib/typescript/components/MessageMenu/hooks/useFetchReactions.d.ts.map +1 -1
  240. package/lib/typescript/components/Notifications/Notification.d.ts +31 -0
  241. package/lib/typescript/components/Notifications/Notification.d.ts.map +1 -0
  242. package/lib/typescript/components/Notifications/NotificationList.d.ts +28 -0
  243. package/lib/typescript/components/Notifications/NotificationList.d.ts.map +1 -0
  244. package/lib/typescript/components/Notifications/NotificationTargetContext.d.ts +14 -0
  245. package/lib/typescript/components/Notifications/NotificationTargetContext.d.ts.map +1 -0
  246. package/lib/typescript/components/Notifications/hooks/index.d.ts +6 -0
  247. package/lib/typescript/components/Notifications/hooks/index.d.ts.map +1 -0
  248. package/lib/typescript/components/Notifications/hooks/useNotificationApi.d.ts +48 -0
  249. package/lib/typescript/components/Notifications/hooks/useNotificationApi.d.ts.map +1 -0
  250. package/lib/typescript/components/Notifications/hooks/useNotificationListController.d.ts +14 -0
  251. package/lib/typescript/components/Notifications/hooks/useNotificationListController.d.ts.map +1 -0
  252. package/lib/typescript/components/Notifications/hooks/useNotificationTarget.d.ts +3 -0
  253. package/lib/typescript/components/Notifications/hooks/useNotificationTarget.d.ts.map +1 -0
  254. package/lib/typescript/components/Notifications/hooks/useNotifications.d.ts +14 -0
  255. package/lib/typescript/components/Notifications/hooks/useNotifications.d.ts.map +1 -0
  256. package/lib/typescript/components/Notifications/hooks/useSystemNotifications.d.ts +9 -0
  257. package/lib/typescript/components/Notifications/hooks/useSystemNotifications.d.ts.map +1 -0
  258. package/lib/typescript/components/Notifications/index.d.ts +6 -0
  259. package/lib/typescript/components/Notifications/index.d.ts.map +1 -0
  260. package/lib/typescript/components/Notifications/notificationTarget.d.ts +55 -0
  261. package/lib/typescript/components/Notifications/notificationTarget.d.ts.map +1 -0
  262. package/lib/typescript/components/Notifications/notificationTranslations.d.ts +7 -0
  263. package/lib/typescript/components/Notifications/notificationTranslations.d.ts.map +1 -0
  264. package/lib/typescript/components/Poll/components/PollOption.d.ts.map +1 -1
  265. package/lib/typescript/components/Poll/hooks/usePollState.d.ts.map +1 -1
  266. package/lib/typescript/components/Thread/Thread.d.ts +1 -0
  267. package/lib/typescript/components/Thread/Thread.d.ts.map +1 -1
  268. package/lib/typescript/components/ThreadList/ThreadList.d.ts +3 -1
  269. package/lib/typescript/components/ThreadList/ThreadList.d.ts.map +1 -1
  270. package/lib/typescript/components/index.d.ts +1 -0
  271. package/lib/typescript/components/index.d.ts.map +1 -1
  272. package/lib/typescript/contexts/componentsContext/defaultComponents.d.ts +3 -0
  273. package/lib/typescript/contexts/componentsContext/defaultComponents.d.ts.map +1 -1
  274. package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts.map +1 -1
  275. package/lib/typescript/contexts/themeContext/ThemeContext.d.ts +13 -0
  276. package/lib/typescript/contexts/themeContext/ThemeContext.d.ts.map +1 -1
  277. package/lib/typescript/contexts/themeContext/utils/theme.d.ts +13 -0
  278. package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
  279. package/lib/typescript/hooks/index.d.ts +1 -0
  280. package/lib/typescript/hooks/index.d.ts.map +1 -1
  281. package/lib/typescript/hooks/useAudioPlayer.d.ts.map +1 -1
  282. package/lib/typescript/hooks/useInAppNotificationsState.d.ts +6 -0
  283. package/lib/typescript/hooks/useInAppNotificationsState.d.ts.map +1 -1
  284. package/lib/typescript/hooks/useLazyRef.d.ts +7 -0
  285. package/lib/typescript/hooks/useLazyRef.d.ts.map +1 -0
  286. package/lib/typescript/i18n/en.json +60 -1
  287. package/lib/typescript/i18n/es.json +62 -3
  288. package/lib/typescript/i18n/fr.json +60 -1
  289. package/lib/typescript/i18n/he.json +60 -1
  290. package/lib/typescript/i18n/hi.json +60 -1
  291. package/lib/typescript/i18n/it.json +60 -1
  292. package/lib/typescript/i18n/ja.json +60 -1
  293. package/lib/typescript/i18n/ko.json +60 -1
  294. package/lib/typescript/i18n/nl.json +60 -1
  295. package/lib/typescript/i18n/pt-br.json +60 -1
  296. package/lib/typescript/i18n/ru.json +60 -1
  297. package/lib/typescript/i18n/tr.json +60 -1
  298. package/lib/typescript/state-store/audio-player-pool.d.ts.map +1 -1
  299. package/lib/typescript/state-store/audio-player.d.ts +13 -0
  300. package/lib/typescript/state-store/audio-player.d.ts.map +1 -1
  301. package/lib/typescript/utils/animations/createBoundedZoomTransition.d.ts +21 -0
  302. package/lib/typescript/utils/animations/createBoundedZoomTransition.d.ts.map +1 -0
  303. package/lib/typescript/utils/animations/transitions.d.ts +21 -0
  304. package/lib/typescript/utils/animations/transitions.d.ts.map +1 -0
  305. package/lib/typescript/utils/i18n/Streami18n.d.ts +59 -0
  306. package/lib/typescript/utils/i18n/Streami18n.d.ts.map +1 -1
  307. package/package.json +2 -2
  308. package/src/components/AttachmentPicker/components/AttachmentPickerContent.tsx +3 -3
  309. package/src/components/AttachmentPicker/components/__tests__/AttachmentPickerContent.test.tsx +19 -18
  310. package/src/components/Channel/Channel.tsx +15 -1
  311. package/src/components/Channel/__tests__/useMessageListPagination.test.tsx +34 -2
  312. package/src/components/Channel/hooks/useMessageListPagination.tsx +19 -3
  313. package/src/components/ChannelList/ChannelList.tsx +27 -5
  314. package/src/components/ChannelList/hooks/__tests__/useChannelActions.test.tsx +123 -0
  315. package/src/components/ChannelList/hooks/useChannelActions.ts +181 -12
  316. package/src/components/Message/hooks/__tests__/useMessageActionHandlers.test.tsx +131 -0
  317. package/src/components/Message/hooks/useMessageActionHandlers.ts +133 -23
  318. package/src/components/MessageInput/MessageComposer.tsx +1 -1
  319. package/src/components/MessageInput/MessageComposerLeadingView.tsx +1 -1
  320. package/src/components/MessageInput/MessageInputHeaderView.tsx +1 -1
  321. package/src/components/MessageInput/MessageInputTrailingView.tsx +1 -1
  322. package/src/components/MessageInput/components/AttachmentPreview/AttachmentUploadPreviewList.tsx +1 -10
  323. package/src/components/MessageInput/components/AudioRecorder/AudioRecorder.tsx +10 -2
  324. package/src/components/MessageInput/components/AudioRecorder/AudioRecordingButton.tsx +27 -13
  325. package/src/components/MessageInput/components/OutputButtons/index.tsx +1 -1
  326. package/src/components/MessageList/MessageFlashList.tsx +3 -1
  327. package/src/components/MessageList/MessageList.tsx +3 -1
  328. package/src/components/MessageList/__tests__/MessageList.test.tsx +35 -0
  329. package/src/components/MessageList/__tests__/__snapshots__/ScrollToBottomButton.test.tsx.snap +1 -1
  330. package/src/components/MessageMenu/hooks/useFetchReactions.ts +17 -2
  331. package/src/components/Notifications/Notification.tsx +253 -0
  332. package/src/components/Notifications/NotificationList.tsx +160 -0
  333. package/src/components/Notifications/NotificationTargetContext.tsx +45 -0
  334. package/src/components/Notifications/__tests__/NotificationList.test.tsx +480 -0
  335. package/src/components/Notifications/__tests__/notificationTarget.test.ts +157 -0
  336. package/src/components/Notifications/hooks/__tests__/useNotificationApi.test.tsx +172 -0
  337. package/src/components/Notifications/hooks/__tests__/useNotificationTarget.test.tsx +85 -0
  338. package/src/components/Notifications/hooks/index.ts +5 -0
  339. package/src/components/Notifications/hooks/useNotificationApi.ts +248 -0
  340. package/src/components/Notifications/hooks/useNotificationListController.ts +160 -0
  341. package/src/components/Notifications/hooks/useNotificationTarget.ts +37 -0
  342. package/src/components/Notifications/hooks/useNotifications.ts +43 -0
  343. package/src/components/Notifications/hooks/useSystemNotifications.ts +33 -0
  344. package/src/components/Notifications/index.ts +5 -0
  345. package/src/components/Notifications/notificationTarget.ts +305 -0
  346. package/src/components/Notifications/notificationTranslations.ts +142 -0
  347. package/src/components/Poll/components/PollOption.tsx +10 -6
  348. package/src/components/Poll/hooks/usePollState.ts +26 -2
  349. package/src/components/Thread/Thread.tsx +24 -16
  350. package/src/components/ThreadList/ThreadList.tsx +33 -9
  351. package/src/components/index.ts +2 -0
  352. package/src/contexts/componentsContext/defaultComponents.ts +4 -0
  353. package/src/contexts/messageInputContext/MessageInputContext.tsx +36 -0
  354. package/src/contexts/themeContext/utils/theme.ts +26 -0
  355. package/src/hooks/index.ts +1 -0
  356. package/src/hooks/useAudioPlayer.ts +44 -3
  357. package/src/hooks/useInAppNotificationsState.ts +6 -0
  358. package/src/hooks/useLazyRef.ts +15 -0
  359. package/src/i18n/en.json +60 -1
  360. package/src/i18n/es.json +62 -3
  361. package/src/i18n/fr.json +60 -1
  362. package/src/i18n/he.json +60 -1
  363. package/src/i18n/hi.json +60 -1
  364. package/src/i18n/it.json +60 -1
  365. package/src/i18n/ja.json +60 -1
  366. package/src/i18n/ko.json +60 -1
  367. package/src/i18n/nl.json +60 -1
  368. package/src/i18n/pt-br.json +60 -1
  369. package/src/i18n/ru.json +60 -1
  370. package/src/i18n/tr.json +60 -1
  371. package/src/state-store/__tests__/audio-player.test.ts +45 -0
  372. package/src/state-store/audio-player-pool.ts +1 -0
  373. package/src/state-store/audio-player.ts +108 -16
  374. package/src/theme/generated/dark/StreamTokens.android.ts +16 -16
  375. package/src/theme/generated/dark/StreamTokens.ios.ts +8 -8
  376. package/src/theme/generated/dark/StreamTokens.web.ts +8 -8
  377. package/src/theme/generated/light/StreamTokens.android.ts +16 -16
  378. package/src/theme/generated/light/StreamTokens.ios.ts +8 -8
  379. package/src/theme/generated/light/StreamTokens.web.ts +8 -8
  380. package/src/utils/animations/createBoundedZoomTransition.ts +117 -0
  381. package/src/utils/{transitions.ts → animations/transitions.ts} +6 -0
  382. package/src/version.json +1 -1
  383. package/lib/commonjs/utils/transitions.js.map +0 -1
  384. package/lib/module/utils/transitions.js.map +0 -1
  385. package/lib/typescript/utils/transitions.d.ts +0 -9
  386. package/lib/typescript/utils/transitions.d.ts.map +0 -1
@@ -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
  }
@@ -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
  }
@@ -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
  }
@@ -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
  }
@@ -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
  }
@@ -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
  }