stream-chat-react 11.0.0-rc.3 → 11.0.0-rc.5
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/dist/browser.full-bundle.js +472 -415
- package/dist/browser.full-bundle.js.map +1 -1
- package/dist/browser.full-bundle.min.js +5 -5
- package/dist/browser.full-bundle.min.js.map +1 -1
- package/dist/components/Attachment/AttachmentActions.d.ts.map +1 -1
- package/dist/components/Attachment/AttachmentActions.js +3 -1
- package/dist/components/AutoCompleteTextarea/Item.js +1 -1
- package/dist/components/AutoCompleteTextarea/List.js +14 -14
- package/dist/components/Channel/Channel.d.ts +3 -0
- package/dist/components/Channel/Channel.d.ts.map +1 -1
- package/dist/components/Channel/Channel.js +26 -2
- package/dist/components/ChannelList/hooks/usePaginatedChannels.d.ts.map +1 -1
- package/dist/components/ChannelList/hooks/usePaginatedChannels.js +2 -2
- package/dist/components/Chat/Chat.d.ts.map +1 -1
- package/dist/components/Chat/Chat.js +3 -1
- package/dist/components/Chat/hooks/useChat.d.ts +2 -0
- package/dist/components/Chat/hooks/useChat.d.ts.map +1 -1
- package/dist/components/Chat/hooks/useChat.js +7 -4
- package/dist/components/Chat/hooks/useCreateChatContext.d.ts.map +1 -1
- package/dist/components/Chat/hooks/useCreateChatContext.js +5 -1
- package/dist/components/Emojis/EmojiPicker.d.ts +1 -2
- package/dist/components/Emojis/EmojiPicker.d.ts.map +1 -1
- package/dist/components/Emojis/EmojiPicker.js +7 -3
- package/dist/components/Emojis/index.cjs.js +25 -4
- package/dist/components/LoadMore/LoadMoreButton.d.ts.map +1 -1
- package/dist/components/LoadMore/LoadMoreButton.js +5 -2
- package/dist/components/Message/hooks/useDeleteHandler.d.ts.map +1 -1
- package/dist/components/Message/hooks/useDeleteHandler.js +5 -5
- package/dist/components/MessageInput/hooks/useCommandTrigger.d.ts.map +1 -1
- package/dist/components/MessageInput/hooks/useCommandTrigger.js +1 -3
- package/dist/components/MessageList/MessageList.d.ts.map +1 -1
- package/dist/components/MessageList/MessageList.js +2 -1
- package/dist/components/ReactFileUtilities/ImageDropzone.d.ts.map +1 -1
- package/dist/components/ReactFileUtilities/ImageDropzone.js +3 -1
- package/dist/context/ChannelActionContext.d.ts +2 -1
- package/dist/context/ChannelActionContext.d.ts.map +1 -1
- package/dist/context/ChannelStateContext.d.ts +1 -1
- package/dist/context/ChatContext.d.ts +29 -2
- package/dist/context/ChatContext.d.ts.map +1 -1
- package/dist/context/MessageListContext.d.ts +16 -0
- package/dist/context/MessageListContext.d.ts.map +1 -0
- package/dist/context/MessageListContext.js +17 -0
- package/dist/context/index.d.ts +1 -0
- package/dist/context/index.d.ts.map +1 -1
- package/dist/context/index.js +1 -0
- package/dist/css/index.css +1 -1
- package/dist/css/v2/emoji-mart.css +1 -1
- package/dist/css/v2/emoji-replacement.css +1 -1
- package/dist/css/v2/index.css +1 -1
- package/dist/css/v2/index.layout.css +1 -1
- package/dist/i18n/Streami18n.d.ts +3 -0
- package/dist/i18n/Streami18n.d.ts.map +1 -1
- package/dist/i18n/de.json +15 -2
- package/dist/i18n/en.json +3 -0
- package/dist/i18n/es.json +15 -2
- package/dist/i18n/fr.json +15 -2
- package/dist/i18n/hi.json +15 -2
- package/dist/i18n/it.json +15 -2
- package/dist/i18n/ja.json +15 -2
- package/dist/i18n/ko.json +15 -2
- package/dist/i18n/nl.json +15 -2
- package/dist/i18n/pt.json +15 -2
- package/dist/i18n/ru.json +15 -2
- package/dist/i18n/tr.json +15 -2
- package/dist/{icons-f45b355f.js → icons-427fd8d5.js} +63 -43
- package/dist/index.cjs.js +78 -42
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +12 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM,
|
|
1
|
+
var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, Picker) {
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
4
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
@@ -24,7 +24,6 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
24
24
|
var React__default = /*#__PURE__*/_interopDefaultLegacy(React$2);
|
|
25
25
|
var React__namespace = /*#__PURE__*/_interopNamespace(React$2);
|
|
26
26
|
var ReactDOM__namespace = /*#__PURE__*/_interopNamespace(ReactDOM);
|
|
27
|
-
var data__default = /*#__PURE__*/_interopDefaultLegacy(data);
|
|
28
27
|
var Picker__default = /*#__PURE__*/_interopDefaultLegacy(Picker);
|
|
29
28
|
|
|
30
29
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};/******************************************************************************
|
|
@@ -5558,365 +5557,6 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
5558
5557
|
|
|
5559
5558
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};function r$1(e){var t,f,n="";if("string"==typeof e||"number"==typeof e)n+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(f=r$1(e[t]))&&(n&&(n+=" "),n+=f);else for(t in e)e[t]&&(n&&(n+=" "),n+=t);return n}function clsx(){for(var e,t,f=0,n="";f<arguments.length;)(e=arguments[f++])&&(t=r$1(e))&&(n&&(n+=" "),n+=t);return n}
|
|
5560
5559
|
|
|
5561
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var UnMemoizedAttachmentActions = function (props) {
|
|
5562
|
-
var actionHandler = props.actionHandler, actions = props.actions, id = props.id, text = props.text;
|
|
5563
|
-
var handleActionClick = function (event, name, value) { return actionHandler === null || actionHandler === void 0 ? void 0 : actionHandler(name, value, event); };
|
|
5564
|
-
return (React__default["default"].createElement("div", { className: 'str-chat__message-attachment-actions' },
|
|
5565
|
-
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-actions-form' },
|
|
5566
|
-
React__default["default"].createElement("span", null, text),
|
|
5567
|
-
actions.map(function (action) { return (React__default["default"].createElement("button", { className: "str-chat__message-attachment-actions-button str-chat__message-attachment-actions-button--".concat(action.style), "data-testid": "".concat(action.name), "data-value": action.value, key: "".concat(id, "-").concat(action.value), onClick: function (event) { return handleActionClick(event, action.name, action.value); } }, action.text)); }))));
|
|
5568
|
-
};
|
|
5569
|
-
/**
|
|
5570
|
-
* A component for rendering the actions you can take on an attachment.
|
|
5571
|
-
*/
|
|
5572
|
-
var AttachmentActions = React__default["default"].memo(UnMemoizedAttachmentActions);
|
|
5573
|
-
|
|
5574
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var DownloadIcon$1 = function (_a) {
|
|
5575
|
-
var className = _a.className;
|
|
5576
|
-
return (React__default["default"].createElement("svg", { className: className, "data-testid": 'download', fill: 'none', height: '24', viewBox: '0 0 24 24', width: '24', xmlns: 'http://www.w3.org/2000/svg' },
|
|
5577
|
-
React__default["default"].createElement("path", { d: 'M19.35 10.04C18.67 6.59 15.64 4 12 4C9.11 4 6.6 5.64 5.35 8.04C2.34 8.36 0 10.91 0 14C0 17.31 2.69 20 6 20H19C21.76 20 24 17.76 24 15C24 12.36 21.95 10.22 19.35 10.04ZM19 18H6C3.79 18 2 16.21 2 14C2 11.95 3.53 10.24 5.56 10.03L6.63 9.92L7.13 8.97C8.08 7.14 9.94 6 12 6C14.62 6 16.88 7.86 17.39 10.43L17.69 11.93L19.22 12.04C20.78 12.14 22 13.45 22 15C22 16.65 20.65 18 19 18ZM13.45 10H10.55V13H8L12 17L16 13H13.45V10Z', fill: 'black' })));
|
|
5578
|
-
};
|
|
5579
|
-
var PlayTriangleIcon = function () { return (React__default["default"].createElement("svg", { fill: 'none', viewBox: '0 0 12 14', xmlns: 'http://www.w3.org/2000/svg' },
|
|
5580
|
-
React__default["default"].createElement("path", { d: 'M0.5 0V14L11.5 7L0.5 0Z', fill: '#080707' }))); };
|
|
5581
|
-
var PauseIcon = function () { return (React__default["default"].createElement("svg", { fill: 'none', viewBox: '0 0 12 14', xmlns: 'http://www.w3.org/2000/svg' },
|
|
5582
|
-
React__default["default"].createElement("path", { d: 'M0 14H4V0H0V14ZM8 0V14H12V0H8Z', fill: '#080707' }))); };
|
|
5583
|
-
|
|
5584
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};
|
|
5585
|
-
const BYTE_UNITS = [
|
|
5586
|
-
'B',
|
|
5587
|
-
'kB',
|
|
5588
|
-
'MB',
|
|
5589
|
-
'GB',
|
|
5590
|
-
'TB',
|
|
5591
|
-
'PB',
|
|
5592
|
-
'EB',
|
|
5593
|
-
'ZB',
|
|
5594
|
-
'YB'
|
|
5595
|
-
];
|
|
5596
|
-
|
|
5597
|
-
const BIBYTE_UNITS = [
|
|
5598
|
-
'B',
|
|
5599
|
-
'kiB',
|
|
5600
|
-
'MiB',
|
|
5601
|
-
'GiB',
|
|
5602
|
-
'TiB',
|
|
5603
|
-
'PiB',
|
|
5604
|
-
'EiB',
|
|
5605
|
-
'ZiB',
|
|
5606
|
-
'YiB'
|
|
5607
|
-
];
|
|
5608
|
-
|
|
5609
|
-
const BIT_UNITS = [
|
|
5610
|
-
'b',
|
|
5611
|
-
'kbit',
|
|
5612
|
-
'Mbit',
|
|
5613
|
-
'Gbit',
|
|
5614
|
-
'Tbit',
|
|
5615
|
-
'Pbit',
|
|
5616
|
-
'Ebit',
|
|
5617
|
-
'Zbit',
|
|
5618
|
-
'Ybit'
|
|
5619
|
-
];
|
|
5620
|
-
|
|
5621
|
-
const BIBIT_UNITS = [
|
|
5622
|
-
'b',
|
|
5623
|
-
'kibit',
|
|
5624
|
-
'Mibit',
|
|
5625
|
-
'Gibit',
|
|
5626
|
-
'Tibit',
|
|
5627
|
-
'Pibit',
|
|
5628
|
-
'Eibit',
|
|
5629
|
-
'Zibit',
|
|
5630
|
-
'Yibit'
|
|
5631
|
-
];
|
|
5632
|
-
|
|
5633
|
-
/*
|
|
5634
|
-
Formats the given number using `Number#toLocaleString`.
|
|
5635
|
-
- If locale is a string, the value is expected to be a locale-key (for example: `de`).
|
|
5636
|
-
- If locale is true, the system default locale is used for translation.
|
|
5637
|
-
- If no value for locale is specified, the number is returned unmodified.
|
|
5638
|
-
*/
|
|
5639
|
-
const toLocaleString = (number, locale, options) => {
|
|
5640
|
-
let result = number;
|
|
5641
|
-
if (typeof locale === 'string' || Array.isArray(locale)) {
|
|
5642
|
-
result = number.toLocaleString(locale, options);
|
|
5643
|
-
} else if (locale === true || options !== undefined) {
|
|
5644
|
-
result = number.toLocaleString(undefined, options);
|
|
5645
|
-
}
|
|
5646
|
-
|
|
5647
|
-
return result;
|
|
5648
|
-
};
|
|
5649
|
-
|
|
5650
|
-
var prettyBytes = (number, options) => {
|
|
5651
|
-
if (!Number.isFinite(number)) {
|
|
5652
|
-
throw new TypeError(`Expected a finite number, got ${typeof number}: ${number}`);
|
|
5653
|
-
}
|
|
5654
|
-
|
|
5655
|
-
options = Object.assign({bits: false, binary: false}, options);
|
|
5656
|
-
|
|
5657
|
-
const UNITS = options.bits ?
|
|
5658
|
-
(options.binary ? BIBIT_UNITS : BIT_UNITS) :
|
|
5659
|
-
(options.binary ? BIBYTE_UNITS : BYTE_UNITS);
|
|
5660
|
-
|
|
5661
|
-
if (options.signed && number === 0) {
|
|
5662
|
-
return ` 0 ${UNITS[0]}`;
|
|
5663
|
-
}
|
|
5664
|
-
|
|
5665
|
-
const isNegative = number < 0;
|
|
5666
|
-
const prefix = isNegative ? '-' : (options.signed ? '+' : '');
|
|
5667
|
-
|
|
5668
|
-
if (isNegative) {
|
|
5669
|
-
number = -number;
|
|
5670
|
-
}
|
|
5671
|
-
|
|
5672
|
-
let localeOptions;
|
|
5673
|
-
|
|
5674
|
-
if (options.minimumFractionDigits !== undefined) {
|
|
5675
|
-
localeOptions = {minimumFractionDigits: options.minimumFractionDigits};
|
|
5676
|
-
}
|
|
5677
|
-
|
|
5678
|
-
if (options.maximumFractionDigits !== undefined) {
|
|
5679
|
-
localeOptions = Object.assign({maximumFractionDigits: options.maximumFractionDigits}, localeOptions);
|
|
5680
|
-
}
|
|
5681
|
-
|
|
5682
|
-
if (number < 1) {
|
|
5683
|
-
const numberString = toLocaleString(number, options.locale, localeOptions);
|
|
5684
|
-
return prefix + numberString + ' ' + UNITS[0];
|
|
5685
|
-
}
|
|
5686
|
-
|
|
5687
|
-
const exponent = Math.min(Math.floor(options.binary ? Math.log(number) / Math.log(1024) : Math.log10(number) / 3), UNITS.length - 1);
|
|
5688
|
-
// eslint-disable-next-line unicorn/prefer-exponentiation-operator
|
|
5689
|
-
number /= Math.pow(options.binary ? 1024 : 1000, exponent);
|
|
5690
|
-
|
|
5691
|
-
if (!localeOptions) {
|
|
5692
|
-
number = number.toPrecision(3);
|
|
5693
|
-
}
|
|
5694
|
-
|
|
5695
|
-
const numberString = toLocaleString(Number(number), options.locale, localeOptions);
|
|
5696
|
-
|
|
5697
|
-
const unit = UNITS[exponent];
|
|
5698
|
-
|
|
5699
|
-
return prefix + numberString + ' ' + unit;
|
|
5700
|
-
};
|
|
5701
|
-
|
|
5702
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var FileSizeIndicator = function (_a) {
|
|
5703
|
-
var fileSize = _a.fileSize;
|
|
5704
|
-
if (!(fileSize && Number.isFinite(Number(fileSize))))
|
|
5705
|
-
return null;
|
|
5706
|
-
return (React__default["default"].createElement("span", { className: 'str-chat__message-attachment-file--item-size' }, prettyBytes(fileSize)));
|
|
5707
|
-
};
|
|
5708
|
-
|
|
5709
|
-
var dist$2 = {};
|
|
5710
|
-
|
|
5711
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};
|
|
5712
|
-
(function (exports) {
|
|
5713
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5714
|
-
exports.sanitizeUrl = exports.BLANK_URL = void 0;
|
|
5715
|
-
var invalidProtocolRegex = /^([^\w]*)(javascript|data|vbscript)/im;
|
|
5716
|
-
var htmlEntitiesRegex = /&#(\w+)(^\w|;)?/g;
|
|
5717
|
-
var htmlCtrlEntityRegex = /&(newline|tab);/gi;
|
|
5718
|
-
var ctrlCharactersRegex = /[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim;
|
|
5719
|
-
var urlSchemeRegex = /^.+(:|:)/gim;
|
|
5720
|
-
var relativeFirstCharacters = [".", "/"];
|
|
5721
|
-
exports.BLANK_URL = "about:blank";
|
|
5722
|
-
function isRelativeUrlWithoutProtocol(url) {
|
|
5723
|
-
return relativeFirstCharacters.indexOf(url[0]) > -1;
|
|
5724
|
-
}
|
|
5725
|
-
// adapted from https://stackoverflow.com/a/29824550/2601552
|
|
5726
|
-
function decodeHtmlCharacters(str) {
|
|
5727
|
-
var removedNullByte = str.replace(ctrlCharactersRegex, "");
|
|
5728
|
-
return removedNullByte.replace(htmlEntitiesRegex, function (match, dec) {
|
|
5729
|
-
return String.fromCharCode(dec);
|
|
5730
|
-
});
|
|
5731
|
-
}
|
|
5732
|
-
function sanitizeUrl(url) {
|
|
5733
|
-
if (!url) {
|
|
5734
|
-
return exports.BLANK_URL;
|
|
5735
|
-
}
|
|
5736
|
-
var sanitizedUrl = decodeHtmlCharacters(url)
|
|
5737
|
-
.replace(htmlCtrlEntityRegex, "")
|
|
5738
|
-
.replace(ctrlCharactersRegex, "")
|
|
5739
|
-
.trim();
|
|
5740
|
-
if (!sanitizedUrl) {
|
|
5741
|
-
return exports.BLANK_URL;
|
|
5742
|
-
}
|
|
5743
|
-
if (isRelativeUrlWithoutProtocol(sanitizedUrl)) {
|
|
5744
|
-
return sanitizedUrl;
|
|
5745
|
-
}
|
|
5746
|
-
var urlSchemeParseResults = sanitizedUrl.match(urlSchemeRegex);
|
|
5747
|
-
if (!urlSchemeParseResults) {
|
|
5748
|
-
return sanitizedUrl;
|
|
5749
|
-
}
|
|
5750
|
-
var urlScheme = urlSchemeParseResults[0];
|
|
5751
|
-
if (invalidProtocolRegex.test(urlScheme)) {
|
|
5752
|
-
return exports.BLANK_URL;
|
|
5753
|
-
}
|
|
5754
|
-
return sanitizedUrl;
|
|
5755
|
-
}
|
|
5756
|
-
exports.sanitizeUrl = sanitizeUrl;
|
|
5757
|
-
} (dist$2));
|
|
5758
|
-
|
|
5759
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var UnMemoizedSafeAnchor = function (props) {
|
|
5760
|
-
var children = props.children, className = props.className, download = props.download, href = props.href, rel = props.rel, target = props.target;
|
|
5761
|
-
if (!href)
|
|
5762
|
-
return null;
|
|
5763
|
-
var sanitized = dist$2.sanitizeUrl(href);
|
|
5764
|
-
return (React__default["default"].createElement("a", { "aria-label": 'Attachment', className: className, download: download, href: sanitized, rel: rel, target: target }, children));
|
|
5765
|
-
};
|
|
5766
|
-
var SafeAnchor = React__default["default"].memo(UnMemoizedSafeAnchor);
|
|
5767
|
-
|
|
5768
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};// export { default as SafeAnchor } from './SafeAnchor';
|
|
5769
|
-
|
|
5770
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var DownloadButton = function (_a) {
|
|
5771
|
-
var assetUrl = _a.assetUrl;
|
|
5772
|
-
return (React__default["default"].createElement(SafeAnchor, { className: 'str-chat__message-attachment-file--item-download', download: true, href: assetUrl, target: '_blank' },
|
|
5773
|
-
React__default["default"].createElement(DownloadIcon$1, { className: 'str-chat__message-attachment-download-icon' })));
|
|
5774
|
-
};
|
|
5775
|
-
|
|
5776
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var PROGRESS_UPDATE_INTERVAL = 100;
|
|
5777
|
-
var useAudioController = function () {
|
|
5778
|
-
var _a = React$2.useState(false), isPlaying = _a[0], setIsPlaying = _a[1];
|
|
5779
|
-
var _b = React$2.useState(0), progress = _b[0], setProgress = _b[1];
|
|
5780
|
-
var audioRef = React$2.useRef(null);
|
|
5781
|
-
var togglePlay = React$2.useCallback(function () {
|
|
5782
|
-
setIsPlaying(function (playing) { return !playing; });
|
|
5783
|
-
}, []);
|
|
5784
|
-
var seek = React$2.useCallback(function (_a) {
|
|
5785
|
-
var clientX = _a.clientX, currentTarget = _a.currentTarget;
|
|
5786
|
-
if (!audioRef.current)
|
|
5787
|
-
return;
|
|
5788
|
-
var _b = currentTarget.getBoundingClientRect(), width = _b.width, x = _b.x;
|
|
5789
|
-
var ratio = (clientX - x) / width;
|
|
5790
|
-
if (!isPlaying)
|
|
5791
|
-
setProgress(ratio * 100);
|
|
5792
|
-
audioRef.current.currentTime = ratio * audioRef.current.duration;
|
|
5793
|
-
}, [isPlaying]);
|
|
5794
|
-
React$2.useEffect(function () {
|
|
5795
|
-
if (!audioRef.current || !isPlaying)
|
|
5796
|
-
return;
|
|
5797
|
-
var interval = window.setInterval(function () {
|
|
5798
|
-
if (!audioRef.current)
|
|
5799
|
-
return;
|
|
5800
|
-
var _a = audioRef.current, currentTime = _a.currentTime, duration = _a.duration;
|
|
5801
|
-
setProgress((currentTime / duration) * 100);
|
|
5802
|
-
if (currentTime === duration)
|
|
5803
|
-
setIsPlaying(false);
|
|
5804
|
-
}, PROGRESS_UPDATE_INTERVAL);
|
|
5805
|
-
audioRef.current.play();
|
|
5806
|
-
return function () {
|
|
5807
|
-
var _a;
|
|
5808
|
-
(_a = audioRef.current) === null || _a === void 0 ? void 0 : _a.pause();
|
|
5809
|
-
window.clearInterval(interval);
|
|
5810
|
-
};
|
|
5811
|
-
}, [isPlaying]);
|
|
5812
|
-
return {
|
|
5813
|
-
audioRef: audioRef,
|
|
5814
|
-
isPlaying: isPlaying,
|
|
5815
|
-
progress: progress,
|
|
5816
|
-
seek: seek,
|
|
5817
|
-
togglePlay: togglePlay,
|
|
5818
|
-
};
|
|
5819
|
-
};
|
|
5820
|
-
|
|
5821
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var getDisplayName = function (Component) {
|
|
5822
|
-
return Component.displayName || Component.name || 'Component';
|
|
5823
|
-
};
|
|
5824
|
-
|
|
5825
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var ChatContext = React__default["default"].createContext(undefined);
|
|
5826
|
-
var ChatProvider = function (_a) {
|
|
5827
|
-
var children = _a.children, value = _a.value;
|
|
5828
|
-
return (React__default["default"].createElement(ChatContext.Provider, { value: value }, children));
|
|
5829
|
-
};
|
|
5830
|
-
var useChatContext = function (componentName) {
|
|
5831
|
-
var contextValue = React$2.useContext(ChatContext);
|
|
5832
|
-
if (!contextValue) {
|
|
5833
|
-
console.warn("The useChatContext hook was called outside of the ChatContext provider. Make sure this hook is called within a child of the Chat component. The errored call is located in the ".concat(componentName, " component."));
|
|
5834
|
-
return {};
|
|
5835
|
-
}
|
|
5836
|
-
return contextValue;
|
|
5837
|
-
};
|
|
5838
|
-
/**
|
|
5839
|
-
* Typescript currently does not support partial inference so if ChatContext
|
|
5840
|
-
* typing is desired while using the HOC withChatContext the Props for the
|
|
5841
|
-
* wrapped component must be provided as the first generic.
|
|
5842
|
-
*/
|
|
5843
|
-
var withChatContext = function (Component) {
|
|
5844
|
-
var WithChatContextComponent = function (props) {
|
|
5845
|
-
var chatContext = useChatContext();
|
|
5846
|
-
return React__default["default"].createElement(Component, __assign({}, props, chatContext));
|
|
5847
|
-
};
|
|
5848
|
-
WithChatContextComponent.displayName = "WithChatContext".concat(getDisplayName(Component));
|
|
5849
|
-
return WithChatContextComponent;
|
|
5850
|
-
};
|
|
5851
|
-
|
|
5852
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var AudioV1 = function (_a) {
|
|
5853
|
-
var og = _a.og;
|
|
5854
|
-
var asset_url = og.asset_url, description = og.description, image_url = og.image_url, text = og.text, title = og.title;
|
|
5855
|
-
var _b = useAudioController(), audioRef = _b.audioRef, isPlaying = _b.isPlaying, progress = _b.progress, togglePlay = _b.togglePlay;
|
|
5856
|
-
return (React__default["default"].createElement("div", { className: 'str-chat__audio' },
|
|
5857
|
-
React__default["default"].createElement("div", { className: 'str-chat__audio__wrapper' },
|
|
5858
|
-
React__default["default"].createElement("audio", { ref: audioRef },
|
|
5859
|
-
React__default["default"].createElement("source", { "data-testid": 'audio-source', src: asset_url, type: 'audio/mp3' })),
|
|
5860
|
-
React__default["default"].createElement("div", { className: 'str-chat__audio__image' },
|
|
5861
|
-
React__default["default"].createElement("div", { className: 'str-chat__audio__image--overlay' }, !isPlaying ? (React__default["default"].createElement("button", { className: 'str-chat__audio__image--button', "data-testid": 'play-audio', onClick: togglePlay },
|
|
5862
|
-
React__default["default"].createElement("svg", { height: '40', viewBox: '0 0 64 64', width: '40', xmlns: 'http://www.w3.org/2000/svg' },
|
|
5863
|
-
React__default["default"].createElement("path", { d: 'M32 58c14.36 0 26-11.64 26-26S46.36 6 32 6 6 17.64 6 32s11.64 26 26 26zm0 6C14.327 64 0 49.673 0 32 0 14.327 14.327 0 32 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32zm13.237-28.412L26.135 45.625a3.27 3.27 0 0 1-4.426-1.4 3.319 3.319 0 0 1-.372-1.47L21 23.36c-.032-1.823 1.41-3.327 3.222-3.358a3.263 3.263 0 0 1 1.473.322l19.438 9.36a3.311 3.311 0 0 1 .103 5.905z', fillRule: 'nonzero' })))) : (React__default["default"].createElement("button", { className: 'str-chat__audio__image--button', "data-testid": 'pause-audio', onClick: togglePlay },
|
|
5864
|
-
React__default["default"].createElement("svg", { height: '40', viewBox: '0 0 64 64', width: '40', xmlns: 'http://www.w3.org/2000/svg' },
|
|
5865
|
-
React__default["default"].createElement("path", { d: 'M32 58.215c14.478 0 26.215-11.737 26.215-26.215S46.478 5.785 32 5.785 5.785 17.522 5.785 32 17.522 58.215 32 58.215zM32 64C14.327 64 0 49.673 0 32 0 14.327 14.327 0 32 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32zm-7.412-45.56h2.892a2.17 2.17 0 0 1 2.17 2.17v23.865a2.17 2.17 0 0 1-2.17 2.17h-2.892a2.17 2.17 0 0 1-2.17-2.17V20.61a2.17 2.17 0 0 1 2.17-2.17zm12.293 0h2.893a2.17 2.17 0 0 1 2.17 2.17v23.865a2.17 2.17 0 0 1-2.17 2.17h-2.893a2.17 2.17 0 0 1-2.17-2.17V20.61a2.17 2.17 0 0 1 2.17-2.17z', fillRule: 'nonzero' }))))),
|
|
5866
|
-
image_url && React__default["default"].createElement("img", { alt: "".concat(description), src: image_url })),
|
|
5867
|
-
React__default["default"].createElement("div", { className: 'str-chat__audio__content' },
|
|
5868
|
-
React__default["default"].createElement("span", { className: 'str-chat__audio__content--title' },
|
|
5869
|
-
React__default["default"].createElement("strong", null, title)),
|
|
5870
|
-
React__default["default"].createElement("span", { className: 'str-chat__audio__content--subtitle' }, text),
|
|
5871
|
-
React__default["default"].createElement("div", { className: 'str-chat__audio__content--progress' },
|
|
5872
|
-
React__default["default"].createElement("div", { "data-progress": progress, "data-testid": 'audio-progress', role: 'progressbar', style: { width: "".concat(progress, "%") } }))))));
|
|
5873
|
-
};
|
|
5874
|
-
var PlayButton = function (_a) {
|
|
5875
|
-
var isPlaying = _a.isPlaying, onClick = _a.onClick;
|
|
5876
|
-
return (React__default["default"].createElement("button", { className: 'str-chat__message-attachment-audio-widget--play-button', "data-testid": isPlaying ? 'pause-audio' : 'play-audio', onClick: onClick }, isPlaying ? React__default["default"].createElement(PauseIcon, null) : React__default["default"].createElement(PlayTriangleIcon, null)));
|
|
5877
|
-
};
|
|
5878
|
-
var ProgressBar = function (_a) {
|
|
5879
|
-
var onClick = _a.onClick, progress = _a.progress;
|
|
5880
|
-
return (React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--progress-track', "data-progress": progress, "data-testid": 'audio-progress', onClick: onClick, role: 'progressbar', style: {
|
|
5881
|
-
background: "linear-gradient(\n\t\t to right, \n\t\t var(--str-chat__primary-color),\n\t\t var(--str-chat__primary-color) ".concat(progress, "%,\n\t\t var(--str-chat__disabled-color) ").concat(progress, "%,\n\t\t var(--str-chat__disabled-color)\n\t )"),
|
|
5882
|
-
} },
|
|
5883
|
-
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--progress-slider', style: { left: "".concat(progress, "px") } })));
|
|
5884
|
-
};
|
|
5885
|
-
var AudioV2 = function (_a) {
|
|
5886
|
-
var og = _a.og;
|
|
5887
|
-
var asset_url = og.asset_url, file_size = og.file_size, title = og.title;
|
|
5888
|
-
var _b = useAudioController(), audioRef = _b.audioRef, isPlaying = _b.isPlaying, progress = _b.progress, seek = _b.seek, togglePlay = _b.togglePlay;
|
|
5889
|
-
if (!asset_url)
|
|
5890
|
-
return null;
|
|
5891
|
-
var dataTestId = 'audio-widget';
|
|
5892
|
-
var rootClassName = 'str-chat__message-attachment-audio-widget';
|
|
5893
|
-
return (React__default["default"].createElement("div", { className: rootClassName, "data-testid": dataTestId },
|
|
5894
|
-
React__default["default"].createElement("audio", { ref: audioRef },
|
|
5895
|
-
React__default["default"].createElement("source", { "data-testid": 'audio-source', src: asset_url, type: 'audio/mp3' })),
|
|
5896
|
-
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--play-controls' },
|
|
5897
|
-
React__default["default"].createElement(PlayButton, { isPlaying: isPlaying, onClick: togglePlay })),
|
|
5898
|
-
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--text' },
|
|
5899
|
-
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--text-first-row' },
|
|
5900
|
-
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--title' }, title),
|
|
5901
|
-
React__default["default"].createElement(DownloadButton, { assetUrl: asset_url })),
|
|
5902
|
-
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--text-second-row' },
|
|
5903
|
-
React__default["default"].createElement(FileSizeIndicator, { fileSize: file_size }),
|
|
5904
|
-
React__default["default"].createElement(ProgressBar, { onClick: seek, progress: progress })))));
|
|
5905
|
-
};
|
|
5906
|
-
var UnMemoizedAudio = function (props) {
|
|
5907
|
-
var themeVersion = useChatContext('Audio').themeVersion;
|
|
5908
|
-
return themeVersion === '1' ? React__default["default"].createElement(AudioV1, __assign({}, props)) : React__default["default"].createElement(AudioV2, __assign({}, props));
|
|
5909
|
-
};
|
|
5910
|
-
/**
|
|
5911
|
-
* Audio attachment with play/pause button and progress bar
|
|
5912
|
-
*/
|
|
5913
|
-
var Audio = React__default["default"].memo(UnMemoizedAudio);
|
|
5914
|
-
|
|
5915
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var CloseIconRound = function () { return (React__default["default"].createElement("svg", { "data-testid": 'close-icon-round', fill: 'none', height: '28', viewBox: '0 0 28 28', width: '28', xmlns: 'http://www.w3.org/2000/svg' },
|
|
5916
|
-
React__default["default"].createElement("rect", { fill: '#72767E', height: '28', rx: '14', width: '28' }),
|
|
5917
|
-
React__default["default"].createElement("circle", { cx: '14', cy: '14', fill: '#72767E', r: '12' }),
|
|
5918
|
-
React__default["default"].createElement("path", { clipRule: 'evenodd', d: 'M28 14C28 21.732 21.732 28 14 28C6.26801 28 0 21.732 0 14C0 6.26801 6.26801 0 14 0C21.732 0 28 6.26801 28 14ZM26 14C26 20.6274 20.6274 26 14 26C7.37258 26 2 20.6274 2 14C2 7.37258 7.37258 2 14 2C20.6274 2 26 7.37258 26 14ZM19.59 7L21 8.41L15.41 14L21 19.59L19.59 21L14 15.41L8.41 21L7 19.59L12.59 14L7 8.41L8.41 7L14 12.59L19.59 7Z', fill: 'white', fillRule: 'evenodd' }))); };
|
|
5919
|
-
|
|
5920
5560
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var ChannelActionContext = React__default["default"].createContext(undefined);
|
|
5921
5561
|
var ChannelActionProvider = function (_a) {
|
|
5922
5562
|
var children = _a.children, value = _a.value;
|
|
@@ -5975,6 +5615,37 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
5975
5615
|
return WithChannelStateContextComponent;
|
|
5976
5616
|
};
|
|
5977
5617
|
|
|
5618
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var getDisplayName = function (Component) {
|
|
5619
|
+
return Component.displayName || Component.name || 'Component';
|
|
5620
|
+
};
|
|
5621
|
+
|
|
5622
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var ChatContext = React__default["default"].createContext(undefined);
|
|
5623
|
+
var ChatProvider = function (_a) {
|
|
5624
|
+
var children = _a.children, value = _a.value;
|
|
5625
|
+
return (React__default["default"].createElement(ChatContext.Provider, { value: value }, children));
|
|
5626
|
+
};
|
|
5627
|
+
var useChatContext = function (componentName) {
|
|
5628
|
+
var contextValue = React$2.useContext(ChatContext);
|
|
5629
|
+
if (!contextValue) {
|
|
5630
|
+
console.warn("The useChatContext hook was called outside of the ChatContext provider. Make sure this hook is called within a child of the Chat component. The errored call is located in the ".concat(componentName, " component."));
|
|
5631
|
+
return {};
|
|
5632
|
+
}
|
|
5633
|
+
return contextValue;
|
|
5634
|
+
};
|
|
5635
|
+
/**
|
|
5636
|
+
* Typescript currently does not support partial inference so if ChatContext
|
|
5637
|
+
* typing is desired while using the HOC withChatContext the Props for the
|
|
5638
|
+
* wrapped component must be provided as the first generic.
|
|
5639
|
+
*/
|
|
5640
|
+
var withChatContext = function (Component) {
|
|
5641
|
+
var WithChatContextComponent = function (props) {
|
|
5642
|
+
var chatContext = useChatContext();
|
|
5643
|
+
return React__default["default"].createElement(Component, __assign({}, props, chatContext));
|
|
5644
|
+
};
|
|
5645
|
+
WithChatContextComponent.displayName = "WithChatContext".concat(getDisplayName(Component));
|
|
5646
|
+
return WithChatContextComponent;
|
|
5647
|
+
};
|
|
5648
|
+
|
|
5978
5649
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var ComponentContext = React__default["default"].createContext(undefined);
|
|
5979
5650
|
var ComponentProvider = function (_a) {
|
|
5980
5651
|
var children = _a.children, value = _a.value;
|
|
@@ -6047,6 +5718,23 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
6047
5718
|
return contextValue;
|
|
6048
5719
|
};
|
|
6049
5720
|
|
|
5721
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var MessageListContext = React$2.createContext(undefined);
|
|
5722
|
+
/**
|
|
5723
|
+
* Context provider for components rendered within the `MessageList`
|
|
5724
|
+
*/
|
|
5725
|
+
var MessageListContextProvider = function (_a) {
|
|
5726
|
+
var children = _a.children, value = _a.value;
|
|
5727
|
+
return (React__default["default"].createElement(MessageListContext.Provider, { value: value }, children));
|
|
5728
|
+
};
|
|
5729
|
+
var useMessageListContext = function (componentName) {
|
|
5730
|
+
var contextValue = React$2.useContext(MessageListContext);
|
|
5731
|
+
if (!contextValue) {
|
|
5732
|
+
console.warn("The useMessageListContext hook was called outside of the MessageListContext provider. Make sure this hook is called within the MessageList component. The errored call is located in the ".concat(componentName, " component."));
|
|
5733
|
+
return {};
|
|
5734
|
+
}
|
|
5735
|
+
return contextValue;
|
|
5736
|
+
};
|
|
5737
|
+
|
|
6050
5738
|
var dayjs_min = {exports: {}};
|
|
6051
5739
|
|
|
6052
5740
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};
|
|
@@ -6081,29 +5769,29 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
6081
5769
|
|
|
6082
5770
|
var localizedFormat = localizedFormat$1.exports;
|
|
6083
5771
|
|
|
6084
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$b="Stornieren";var Close$b="Schließen";var Delete$b="Löschen";var Delivered$b="Zugestellt";var Flag$b="Meldung";var Menu$b="Menü";var Mute$b="Stumm schalten";var New$b="Neu";var Pin$b="Pin";var Reply$b="Antworten";var Search$b="Suche";var Send$b="Senden";var Thread$c="Thread";var Unmute$b="Stummschaltung aufheben";var Unpin$b="Pin entfernen";var live$b="live";var replyCount_one$b="1 Antwort";var replyCount_other$b="{{ count }} Antworten";var searchResultsCount_one$b="1 Ergebnis";var searchResultsCount_other$b="{{ count }} Ergebnisse";var deTranslations = {"Attach files":"Dateien anhängen",Cancel:Cancel$b,"Channel Missing":"Kanal fehlt",Close:Close$b,"Close emoji picker":"Emoji-Picker schließen","Commands matching":"Übereinstimmende Befehle","Connection failure, reconnecting now...":"Verbindungsfehler, Wiederherstellung der Verbindung...",Delete:Delete$b,Delivered:Delivered$b,"Drag your files here":"Drag your files here","Edit Message":"Nachricht bearbeiten","Edit message request failed":"Anfrage zum Bearbeiten der Nachricht fehlgeschlagen","Emoji matching":"Emoji passend","Empty message...":"Leere Nachricht...","Error adding flag":"Fehler beim Hinzufügen des Flags","Error connecting to chat, refresh the page to try again.":"Verbindungsfehler zum Chat, Aktualisiere die Seite um es erneut zu versuchen.","Error deleting message":"Fehler beim Löschen der Nachricht","Error muting a user ...":"Fehler beim Stummschalten eines Nutzers.","Error pinning message":"Fehler beim Pinnen der Nachricht","Error removing message pin":"Fehler beim Entfernen der gepinnten Nachricht","Error unmuting a user ...":"Stummschaltung des Nutzers fehlgeschlagen ...","Error uploading file":"Fehler beim Hochladen der Datei","Error uploading image":"Hochladen des Bildes fehlgeschlagen","Error · Unsent":"Fehler nicht gesendet","Error: {{ errorMessage }}":"Fehler: {{ errorMessage }}",Flag:Flag$b,"Latest Messages":"Neueste Nachrichten",Menu:Menu$b,"Message Failed · Click to try again":"Nachricht fehlgeschlagen · Klicken, um es erneut zu versuchen","Message Failed · Unauthorized":"Nachricht fehlgeschlagen · Nicht autorisiert","Message deleted":"Nachricht gelöscht","Message has been successfully flagged":"Nachricht wurde erfolgreich gemeldet","Message pinned":"Nachricht gepinnt",Mute:Mute$b,New:New$b,"New Messages!":"Neue Nachrichten!","No chats here yet…":"Noch keine Chats hier...","No results found":"keine Ergebnisse gefunden","Nothing yet...":"Noch nichts...","Open emoji picker":"Emoji-Picker öffnen","People matching":"Passende Personen",Pin:Pin$b,"Pinned by":"Gepinnt von",Reply:Reply$b,"Reply to Message":"Auf Nachricht antworten",Search:Search$b,"Searching...":"Suchen...",Send:Send$b,"Send message request failed":"Senden der Nachrichtenanfrage fehlgeschlagen","Sending...":"Senden...","Slow Mode ON":"Slow-Mode EIN","Some of the files will not be accepted":"
|
|
5772
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$b="Stornieren";var Close$b="Schließen";var Delete$b="Löschen";var Delivered$b="Zugestellt";var Flag$b="Meldung";var Menu$b="Menü";var Mute$b="Stumm schalten";var New$b="Neu";var Pin$b="Pin";var Reply$b="Antworten";var Search$b="Suche";var Send$b="Senden";var Shuffle$b="Mischen";var Thread$c="Thread";var Unmute$b="Stummschaltung aufheben";var Unpin$b="Pin entfernen";var live$b="live";var replyCount_one$b="1 Antwort";var replyCount_other$b="{{ count }} Antworten";var searchResultsCount_one$b="1 Ergebnis";var searchResultsCount_other$b="{{ count }} Ergebnisse";var deTranslations = {"Attach files":"Dateien anhängen",Cancel:Cancel$b,"Channel Missing":"Kanal fehlt",Close:Close$b,"Close emoji picker":"Emoji-Picker schließen","Commands matching":"Übereinstimmende Befehle","Connection failure, reconnecting now...":"Verbindungsfehler, Wiederherstellung der Verbindung...",Delete:Delete$b,Delivered:Delivered$b,"Drag your files here":"Ziehen Sie Ihre Dateien hierher","Drag your files here to add to your post":"Ziehen Sie Ihre Dateien hierher, um sie Ihrem Beitrag hinzuzufügen","Edit Message":"Nachricht bearbeiten","Edit message request failed":"Anfrage zum Bearbeiten der Nachricht fehlgeschlagen","Emoji matching":"Emoji passend","Empty message...":"Leere Nachricht...","Error adding flag":"Fehler beim Hinzufügen des Flags","Error connecting to chat, refresh the page to try again.":"Verbindungsfehler zum Chat, Aktualisiere die Seite um es erneut zu versuchen.","Error deleting message":"Fehler beim Löschen der Nachricht","Error muting a user ...":"Fehler beim Stummschalten eines Nutzers.","Error pinning message":"Fehler beim Pinnen der Nachricht","Error removing message pin":"Fehler beim Entfernen der gepinnten Nachricht","Error unmuting a user ...":"Stummschaltung des Nutzers fehlgeschlagen ...","Error uploading file":"Fehler beim Hochladen der Datei","Error uploading image":"Hochladen des Bildes fehlgeschlagen","Error · Unsent":"Fehler nicht gesendet","Error: {{ errorMessage }}":"Fehler: {{ errorMessage }}",Flag:Flag$b,"Latest Messages":"Neueste Nachrichten","Load more":"Mehr laden",Menu:Menu$b,"Message Failed · Click to try again":"Nachricht fehlgeschlagen · Klicken, um es erneut zu versuchen","Message Failed · Unauthorized":"Nachricht fehlgeschlagen · Nicht autorisiert","Message deleted":"Nachricht gelöscht","Message has been successfully flagged":"Nachricht wurde erfolgreich gemeldet","Message pinned":"Nachricht gepinnt",Mute:Mute$b,New:New$b,"New Messages!":"Neue Nachrichten!","No chats here yet…":"Noch keine Chats hier...","No results found":"keine Ergebnisse gefunden","Nothing yet...":"Noch nichts...","Open emoji picker":"Emoji-Picker öffnen","People matching":"Passende Personen",Pin:Pin$b,"Pinned by":"Gepinnt von",Reply:Reply$b,"Reply to Message":"Auf Nachricht antworten",Search:Search$b,"Searching...":"Suchen...",Send:Send$b,"Send message request failed":"Senden der Nachrichtenanfrage fehlgeschlagen","Sending...":"Senden...",Shuffle:Shuffle$b,"Slow Mode ON":"Slow-Mode EIN","Some of the files will not be accepted":"Einige der Dateien werden nicht akzeptiert","This message was deleted...":"Diese Nachricht wurde gelöscht...",Thread:Thread$c,"Type your message":"Nachricht eingeben",Unmute:Unmute$b,Unpin:Unpin$b,"Upload type: \"{{ type }}\" is not allowed":"Upload-Typ: \"{{ type }}\" ist nicht erlaubt","Wait until all attachments have uploaded":"Bitte warten, bis alle Anhänge hochgeladen wurden","You have no channels currently":"Du hast momentan noch keinen Channels","You've reached the maximum number of files":"Die maximale Dateianzahl ist erreicht","ban-command-args":"[@Benutzername] [Text]","ban-command-description":"Einen Benutzer verbannen","giphy-command-args":"[Text]","giphy-command-description":"Poste ein zufälliges Gif in den Kanal",live:live$b,"mute-command-args":"[@Benutzername]","mute-command-description":"Stummschalten eines Benutzers",replyCount_one:replyCount_one$b,replyCount_other:replyCount_other$b,searchResultsCount_one:searchResultsCount_one$b,searchResultsCount_other:searchResultsCount_other$b,"this content could not be displayed":"Dieser Inhalt konnte nicht angezeigt werden","unban-command-args":"[@Benutzername]","unban-command-description":"Einen Benutzer entbannen","unmute-command-args":"[@Benutzername]","unmute-command-description":"Stummschaltung eines Benutzers aufheben","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} und {{moreCount}} Mehr","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }} und {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} und {{ secondUser }}","{{ imageCount }} more":"{{ imageCount }} mehr","{{ memberCount }} members":"{{ memberCount }} Mitglieder","{{ user }} has been muted":"{{ user }} wurde stummgeschaltet","{{ user }} has been unmuted":"{{ user }} wurde nicht stummgeschaltet","{{ user }} is typing...":"{{ user }} tippt...","{{ users }} and more are typing...":"{{ users }} und mehr tippen...","{{ users }} and {{ user }} are typing...":"{{ users }} und {{ user }} tippen...","{{ watcherCount }} online":"{{ watcherCount }} online","🏙 Attachment...":"🏙 Anhang..."};
|
|
6085
5773
|
|
|
6086
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$a="Cancel";var Close$a="Close";var Delete$a="Delete";var Delivered$a="Delivered";var Flag$a="Flag";var Menu$a="Menu";var Mute$a="Mute";var New$a="New";var Pin$a="Pin";var Reply$a="Reply";var Search$a="Search";var Send$a="Send";var Thread$b="Thread";var Unmute$a="Unmute";var Unpin$a="Unpin";var live$a="live";var replyCount_one$a="1 reply";var replyCount_other$a="{{ count }} replies";var searchResultsCount_one$a="1 result";var searchResultsCount_other$a="{{ count }} results";var enTranslations = {"Attach files":"Attach files",Cancel:Cancel$a,"Channel Missing":"Channel Missing",Close:Close$a,"Close emoji picker":"Close emoji picker","Commands matching":"Commands matching","Connection failure, reconnecting now...":"Connection failure, reconnecting now...",Delete:Delete$a,Delivered:Delivered$a,"Drag your files here":"Drag your files here","Edit Message":"Edit Message","Edit message request failed":"Edit message request failed","Emoji matching":"Emoji matching","Empty message...":"Empty message...","Error adding flag":"Error adding flag","Error connecting to chat, refresh the page to try again.":"Error connecting to chat, refresh the page to try again.","Error deleting message":"Error deleting message","Error muting a user ...":"Error muting a user ...","Error pinning message":"Error pinning message","Error removing message pin":"Error removing message pin","Error unmuting a user ...":"Error unmuting a user ...","Error uploading file":"Error uploading file","Error uploading image":"Error uploading image","Error · Unsent":"Error · Unsent","Error: {{ errorMessage }}":"Error: {{ errorMessage }}",Flag:Flag$a,"Latest Messages":"Latest Messages",Menu:Menu$a,"Message Failed · Click to try again":"Message Failed · Click to try again","Message Failed · Unauthorized":"Message Failed · Unauthorized","Message deleted":"Message deleted","Message has been successfully flagged":"Message has been successfully flagged","Message pinned":"Message pinned",Mute:Mute$a,New:New$a,"New Messages!":"New Messages!","No chats here yet…":"No chats here yet…","No results found":"No results found","Nothing yet...":"Nothing yet...","Open emoji picker":"Open emoji picker","People matching":"People matching",Pin:Pin$a,"Pinned by":"Pinned by",Reply:Reply$a,"Reply to Message":"Reply to Message",Search:Search$a,"Searching...":"Searching...",Send:Send$a,"Send message request failed":"Send message request failed","Sending...":"Sending...","Slow Mode ON":"Slow Mode ON","Some of the files will not be accepted":"Some of the files will not be accepted","This message was deleted...":"This message was deleted...",Thread:Thread$b,"Type your message":"Type your message",Unmute:Unmute$a,Unpin:Unpin$a,"Upload type: \"{{ type }}\" is not allowed":"Upload type: \"{{ type }}\" is not allowed","Wait until all attachments have uploaded":"Wait until all attachments have uploaded","You have no channels currently":"You have no channels currently","You've reached the maximum number of files":"You've reached the maximum number of files",live:live$a,replyCount_one:replyCount_one$a,replyCount_other:replyCount_other$a,searchResultsCount_one:searchResultsCount_one$a,searchResultsCount_other:searchResultsCount_other$a,"this content could not be displayed":"this content could not be displayed","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} and {{ moreCount }} more","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }}, and {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} and {{ secondUser }}","{{ imageCount }} more":"{{ imageCount }} more","{{ memberCount }} members":"{{ memberCount }} members","{{ user }} has been muted":"{{ user }} has been muted","{{ user }} has been unmuted":"{{ user }} has been unmuted","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} online","🏙 Attachment...":"🏙 Attachment..."};
|
|
5774
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$a="Cancel";var Close$a="Close";var Delete$a="Delete";var Delivered$a="Delivered";var Flag$a="Flag";var Menu$a="Menu";var Mute$a="Mute";var New$a="New";var Pin$a="Pin";var Reply$a="Reply";var Search$a="Search";var Send$a="Send";var Shuffle$a="Shuffle";var Thread$b="Thread";var Unmute$a="Unmute";var Unpin$a="Unpin";var live$a="live";var replyCount_one$a="1 reply";var replyCount_other$a="{{ count }} replies";var searchResultsCount_one$a="1 result";var searchResultsCount_other$a="{{ count }} results";var enTranslations = {"Attach files":"Attach files",Cancel:Cancel$a,"Channel Missing":"Channel Missing",Close:Close$a,"Close emoji picker":"Close emoji picker","Commands matching":"Commands matching","Connection failure, reconnecting now...":"Connection failure, reconnecting now...",Delete:Delete$a,Delivered:Delivered$a,"Drag your files here":"Drag your files here","Drag your files here to add to your post":"Drag your files here to add to your post","Edit Message":"Edit Message","Edit message request failed":"Edit message request failed","Emoji matching":"Emoji matching","Empty message...":"Empty message...","Error adding flag":"Error adding flag","Error connecting to chat, refresh the page to try again.":"Error connecting to chat, refresh the page to try again.","Error deleting message":"Error deleting message","Error muting a user ...":"Error muting a user ...","Error pinning message":"Error pinning message","Error removing message pin":"Error removing message pin","Error unmuting a user ...":"Error unmuting a user ...","Error uploading file":"Error uploading file","Error uploading image":"Error uploading image","Error · Unsent":"Error · Unsent","Error: {{ errorMessage }}":"Error: {{ errorMessage }}",Flag:Flag$a,"Latest Messages":"Latest Messages","Load more":"Load more",Menu:Menu$a,"Message Failed · Click to try again":"Message Failed · Click to try again","Message Failed · Unauthorized":"Message Failed · Unauthorized","Message deleted":"Message deleted","Message has been successfully flagged":"Message has been successfully flagged","Message pinned":"Message pinned",Mute:Mute$a,New:New$a,"New Messages!":"New Messages!","No chats here yet…":"No chats here yet…","No results found":"No results found","Nothing yet...":"Nothing yet...","Open emoji picker":"Open emoji picker","People matching":"People matching",Pin:Pin$a,"Pinned by":"Pinned by",Reply:Reply$a,"Reply to Message":"Reply to Message",Search:Search$a,"Searching...":"Searching...",Send:Send$a,"Send message request failed":"Send message request failed","Sending...":"Sending...",Shuffle:Shuffle$a,"Slow Mode ON":"Slow Mode ON","Some of the files will not be accepted":"Some of the files will not be accepted","This message was deleted...":"This message was deleted...",Thread:Thread$b,"Type your message":"Type your message",Unmute:Unmute$a,Unpin:Unpin$a,"Upload type: \"{{ type }}\" is not allowed":"Upload type: \"{{ type }}\" is not allowed","Wait until all attachments have uploaded":"Wait until all attachments have uploaded","You have no channels currently":"You have no channels currently","You've reached the maximum number of files":"You've reached the maximum number of files",live:live$a,replyCount_one:replyCount_one$a,replyCount_other:replyCount_other$a,searchResultsCount_one:searchResultsCount_one$a,searchResultsCount_other:searchResultsCount_other$a,"this content could not be displayed":"this content could not be displayed","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} and {{ moreCount }} more","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }}, and {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} and {{ secondUser }}","{{ imageCount }} more":"{{ imageCount }} more","{{ memberCount }} members":"{{ memberCount }} members","{{ user }} has been muted":"{{ user }} has been muted","{{ user }} has been unmuted":"{{ user }} has been unmuted","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} online","🏙 Attachment...":"🏙 Attachment..."};
|
|
6087
5775
|
|
|
6088
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$9="Cancelar";var Close$9="Cerca";var Delete$9="Borrar";var Delivered$9="Entregado";var Flag$9="Bandera";var Menu$9="Menú";var Mute$9="Mudo";var New$9="Nuevo";var Pin$9="Alfiler";var Reply$9="Respuesta";var Search$9="Buscar";var Send$9="Enviar";var Thread$a="Hilo";var Unmute$9="Activar sonido";var Unpin$9="Desprender";var live$9="En Vivo";var replyCount_many$4="{{ count }} respuestas";var replyCount_one$9="1 respuesta";var replyCount_other$9="{{ count }} respuestas";var searchResultsCount_many$4="{{ count }} resultados";var searchResultsCount_one$9="1 resultado";var searchResultsCount_other$9="{{ count }} resultados";var esTranslations = {"Attach files":"Adjuntar archivos",Cancel:Cancel$9,"Channel Missing":"Falta canal",Close:Close$9,"Close emoji picker":"Cerrar el selector de emojis","Commands matching":"Coincidencia de comandos","Connection failure, reconnecting now...":"Fallo de conexión, reconectando ahora ...",Delete:Delete$9,Delivered:Delivered$9,"Drag your files here":"Drag your files here","Edit Message":"Editar mensaje","Edit message request failed":"Error al editar la solicitud de mensaje","Emoji matching":"Coincidencia de emoji","Empty message...":"Mensaje vacío ...","Error adding flag":"Error al agregar la bandera","Error connecting to chat, refresh the page to try again.":"Error al conectarse al chat, actualice la página para volver a intentarlo.","Error deleting message":"Error al eliminar el mensaje","Error muting a user ...":"Error al silenciar a un usuario ...","Error pinning message":"Mensaje de error al fijar","Error removing message pin":"Error al quitar el pin del mensaje","Error unmuting a user ...":"Error al activar el silencio de un usuario ...","Error uploading file":"Error al cargar el archivo","Error uploading image":"Error subiendo imagen","Error · Unsent":"Error · No enviado","Error: {{ errorMessage }}":"Error: {{ errorMessage }}",Flag:Flag$9,"Latest Messages":"Últimos mensajes",Menu:Menu$9,"Message Failed · Click to try again":"Mensaje fallido · Haga clic para volver a intentarlo","Message Failed · Unauthorized":"Mensaje fallido · No autorizado","Message deleted":"Mensaje borrado","Message has been successfully flagged":"El mensaje se marcó correctamente","Message pinned":"Mensaje fijado",Mute:Mute$9,New:New$9,"New Messages!":"¡Nuevos mensajes!","No chats here yet…":"Aún no hay mensajes aquí...","No results found":"No se han encontrado resultados","Nothing yet...":"Nada aún...","Open emoji picker":"Selector de emoji abierto","People matching":"Personas que coinciden",Pin:Pin$9,"Pinned by":"Fijado por",Reply:Reply$9,"Reply to Message":"Responder al mensaje",Search:Search$9,"Searching...":"Buscando...",Send:Send$9,"Send message request failed":"Error al enviar la solicitud de mensaje","Sending...":"Enviando...","Slow Mode ON":"Modo lento activado","Some of the files will not be accepted":"
|
|
5776
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$9="Cancelar";var Close$9="Cerca";var Delete$9="Borrar";var Delivered$9="Entregado";var Flag$9="Bandera";var Menu$9="Menú";var Mute$9="Mudo";var New$9="Nuevo";var Pin$9="Alfiler";var Reply$9="Respuesta";var Search$9="Buscar";var Send$9="Enviar";var Shuffle$9="Mezclar";var Thread$a="Hilo";var Unmute$9="Activar sonido";var Unpin$9="Desprender";var live$9="En Vivo";var replyCount_many$4="{{ count }} respuestas";var replyCount_one$9="1 respuesta";var replyCount_other$9="{{ count }} respuestas";var searchResultsCount_many$4="{{ count }} resultados";var searchResultsCount_one$9="1 resultado";var searchResultsCount_other$9="{{ count }} resultados";var esTranslations = {"Attach files":"Adjuntar archivos",Cancel:Cancel$9,"Channel Missing":"Falta canal",Close:Close$9,"Close emoji picker":"Cerrar el selector de emojis","Commands matching":"Coincidencia de comandos","Connection failure, reconnecting now...":"Fallo de conexión, reconectando ahora ...",Delete:Delete$9,Delivered:Delivered$9,"Drag your files here":"Arrastra tus archivos aquí","Drag your files here to add to your post":"Arrastra tus archivos aquí para agregarlos a tu publicación","Edit Message":"Editar mensaje","Edit message request failed":"Error al editar la solicitud de mensaje","Emoji matching":"Coincidencia de emoji","Empty message...":"Mensaje vacío ...","Error adding flag":"Error al agregar la bandera","Error connecting to chat, refresh the page to try again.":"Error al conectarse al chat, actualice la página para volver a intentarlo.","Error deleting message":"Error al eliminar el mensaje","Error muting a user ...":"Error al silenciar a un usuario ...","Error pinning message":"Mensaje de error al fijar","Error removing message pin":"Error al quitar el pin del mensaje","Error unmuting a user ...":"Error al activar el silencio de un usuario ...","Error uploading file":"Error al cargar el archivo","Error uploading image":"Error subiendo imagen","Error · Unsent":"Error · No enviado","Error: {{ errorMessage }}":"Error: {{ errorMessage }}",Flag:Flag$9,"Latest Messages":"Últimos mensajes","Load more":"Cargar más",Menu:Menu$9,"Message Failed · Click to try again":"Mensaje fallido · Haga clic para volver a intentarlo","Message Failed · Unauthorized":"Mensaje fallido · No autorizado","Message deleted":"Mensaje borrado","Message has been successfully flagged":"El mensaje se marcó correctamente","Message pinned":"Mensaje fijado",Mute:Mute$9,New:New$9,"New Messages!":"¡Nuevos mensajes!","No chats here yet…":"Aún no hay mensajes aquí...","No results found":"No se han encontrado resultados","Nothing yet...":"Nada aún...","Open emoji picker":"Selector de emoji abierto","People matching":"Personas que coinciden",Pin:Pin$9,"Pinned by":"Fijado por",Reply:Reply$9,"Reply to Message":"Responder al mensaje",Search:Search$9,"Searching...":"Buscando...",Send:Send$9,"Send message request failed":"Error al enviar la solicitud de mensaje","Sending...":"Enviando...",Shuffle:Shuffle$9,"Slow Mode ON":"Modo lento activado","Some of the files will not be accepted":"Algunos de los archivos no serán aceptados","This message was deleted...":"Este mensaje fue eliminado ...",Thread:Thread$a,"Type your message":"Escribe tu mensaje",Unmute:Unmute$9,Unpin:Unpin$9,"Upload type: \"{{ type }}\" is not allowed":"Tipo de carga: \"{{ type }}\" no está permitido","Wait until all attachments have uploaded":"Espere hasta que se hayan cargado todos los archivos adjuntos","You have no channels currently":"Actualmente no tienes canales","You've reached the maximum number of files":"Has alcanzado el número máximo de archivos","ban-command-args":"[@usuario] [texto]","ban-command-description":"Prohibir a un usuario","giphy-command-args":"[texto]","giphy-command-description":"Publicar un gif aleatorio en el canal",live:live$9,"mute-command-args":"[@usuario]","mute-command-description":"Silenciar a un usuario",replyCount_many:replyCount_many$4,replyCount_one:replyCount_one$9,replyCount_other:replyCount_other$9,searchResultsCount_many:searchResultsCount_many$4,searchResultsCount_one:searchResultsCount_one$9,searchResultsCount_other:searchResultsCount_other$9,"this content could not be displayed":"este contenido no se pudo mostrar","unban-command-args":"[@usuario]","unban-command-description":"Quitar la prohibición a un usuario","unmute-command-args":"[@usuario]","unmute-command-description":"Anular el silencio de un usuario","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} y {{ moreCount }} más","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }} y {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} y {{ secondUser }}","{{ imageCount }} more":"{{ imageCount }} más","{{ memberCount }} members":"{{ memberCount }} miembros","{{ user }} has been muted":"{{ user }} ha sido silenciado","{{ user }} has been unmuted":"{{ user }} se ha desactivado","{{ user }} is typing...":"{{ user }} está escribiendo...","{{ users }} and more are typing...":"{{ users }} y más están escribiendo...","{{ users }} and {{ user }} are typing...":"{{ users }} y {{ user }} están escribiendo...","{{ watcherCount }} online":"{{ watcherCount }} en línea","🏙 Attachment...":"🏙 Adjunto..."};
|
|
6089
5777
|
|
|
6090
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$8="Annuler";var Close$8="Fermer";var Delete$8="Supprimer";var Delivered$8="Publié";var Flag$8="Signaler";var Menu$8="Menu";var Mute$8="Muet";var New$8="Nouveaux";var Pin$8="Épingle";var Reply$8="Réponse";var Search$8="Rechercher";var Send$8="Envoyer";var Thread$9="Fil de discussion";var Unmute$8="Désactiver muet";var Unpin$8="Détacher";var live$8="en direct";var replyCount_many$3="{{ count }} réponses";var replyCount_one$8="1 réponse";var replyCount_other$8="{{ count }} réponses";var searchResultsCount_many$3="{{ count }} résultats";var searchResultsCount_one$8="1 résultat";var searchResultsCount_other$8="{{ count }} résultats";var frTranslations = {"Attach files":"Pièces jointes",Cancel:Cancel$8,"Channel Missing":"Canal Manquant",Close:Close$8,"Close emoji picker":"Fermer le sélecteur d'emojis","Commands matching":"Correspondance des commandes","Connection failure, reconnecting now...":"Échec de la connexion, reconnexion en cours...",Delete:Delete$8,Delivered:Delivered$8,"Drag your files here":"Drag your files here","Edit Message":"Éditer un message","Edit message request failed":"Échec de la demande de modification du message","Emoji matching":"Correspondance emoji","Empty message...":"Message vide...","Error adding flag":"Erreur lors de l'ajout du drapeau","Error connecting to chat, refresh the page to try again.":"Erreur de connexion au chat, rafraîchissez la page pour réessayer.","Error deleting message":"Erreur lors de la suppression du message","Error muting a user ...":"Erreur de mise en sourdine d'un utilisateur ...","Error pinning message":"Erreur d'épinglage du message","Error removing message pin":"Erreur lors de la suppression du code PIN du message","Error unmuting a user ...":"Erreur de désactivation de la fonction sourdine pour un utilisateur ...","Error uploading file":"Erreur lors du téléchargement du fichier","Error uploading image":"Erreur lors de l'envoi de l'image","Error · Unsent":"Erreur - Non envoyé","Error: {{ errorMessage }}":"Erreur : {{ errorMessage }}",Flag:Flag$8,"Latest Messages":"Derniers messages",Menu:Menu$8,"Message Failed · Click to try again":"Échec de l'envoi du message - Cliquez pour réessayer","Message Failed · Unauthorized":"Échec de l'envoi du message - Non autorisé","Message deleted":"Message supprimé","Message has been successfully flagged":"Le message a été signalé avec succès","Message pinned":"Message épinglé",Mute:Mute$8,New:New$8,"New Messages!":"Nouveaux Messages!","No chats here yet…":"Pas encore de messages ici...","No results found":"Aucun résultat trouvé","Nothing yet...":"Aucun message...","Open emoji picker":"Ouvrez le sélecteur d'emoji","People matching":"Correspondance de personnes",Pin:Pin$8,"Pinned by":"Épinglé par",Reply:Reply$8,"Reply to Message":"Répondre au message",Search:Search$8,"Searching...":"Recherche...",Send:Send$8,"Send message request failed":"Échec de la demande d'envoi de message","Sending...":"Envoi en cours...","Slow Mode ON":"Mode lent activé","Some of the files will not be accepted":"
|
|
5778
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$8="Annuler";var Close$8="Fermer";var Delete$8="Supprimer";var Delivered$8="Publié";var Flag$8="Signaler";var Menu$8="Menu";var Mute$8="Muet";var New$8="Nouveaux";var Pin$8="Épingle";var Reply$8="Réponse";var Search$8="Rechercher";var Send$8="Envoyer";var Shuffle$8="Mélanger";var Thread$9="Fil de discussion";var Unmute$8="Désactiver muet";var Unpin$8="Détacher";var live$8="en direct";var replyCount_many$3="{{ count }} réponses";var replyCount_one$8="1 réponse";var replyCount_other$8="{{ count }} réponses";var searchResultsCount_many$3="{{ count }} résultats";var searchResultsCount_one$8="1 résultat";var searchResultsCount_other$8="{{ count }} résultats";var frTranslations = {"Attach files":"Pièces jointes",Cancel:Cancel$8,"Channel Missing":"Canal Manquant",Close:Close$8,"Close emoji picker":"Fermer le sélecteur d'emojis","Commands matching":"Correspondance des commandes","Connection failure, reconnecting now...":"Échec de la connexion, reconnexion en cours...",Delete:Delete$8,Delivered:Delivered$8,"Drag your files here":"Glissez vos fichiers ici","Drag your files here to add to your post":"Glissez vos fichiers ici pour les ajouter à votre publication","Edit Message":"Éditer un message","Edit message request failed":"Échec de la demande de modification du message","Emoji matching":"Correspondance emoji","Empty message...":"Message vide...","Error adding flag":"Erreur lors de l'ajout du drapeau","Error connecting to chat, refresh the page to try again.":"Erreur de connexion au chat, rafraîchissez la page pour réessayer.","Error deleting message":"Erreur lors de la suppression du message","Error muting a user ...":"Erreur de mise en sourdine d'un utilisateur ...","Error pinning message":"Erreur d'épinglage du message","Error removing message pin":"Erreur lors de la suppression du code PIN du message","Error unmuting a user ...":"Erreur de désactivation de la fonction sourdine pour un utilisateur ...","Error uploading file":"Erreur lors du téléchargement du fichier","Error uploading image":"Erreur lors de l'envoi de l'image","Error · Unsent":"Erreur - Non envoyé","Error: {{ errorMessage }}":"Erreur : {{ errorMessage }}",Flag:Flag$8,"Latest Messages":"Derniers messages","Load more":"Charger plus",Menu:Menu$8,"Message Failed · Click to try again":"Échec de l'envoi du message - Cliquez pour réessayer","Message Failed · Unauthorized":"Échec de l'envoi du message - Non autorisé","Message deleted":"Message supprimé","Message has been successfully flagged":"Le message a été signalé avec succès","Message pinned":"Message épinglé",Mute:Mute$8,New:New$8,"New Messages!":"Nouveaux Messages!","No chats here yet…":"Pas encore de messages ici...","No results found":"Aucun résultat trouvé","Nothing yet...":"Aucun message...","Open emoji picker":"Ouvrez le sélecteur d'emoji","People matching":"Correspondance de personnes",Pin:Pin$8,"Pinned by":"Épinglé par",Reply:Reply$8,"Reply to Message":"Répondre au message",Search:Search$8,"Searching...":"Recherche...",Send:Send$8,"Send message request failed":"Échec de la demande d'envoi de message","Sending...":"Envoi en cours...",Shuffle:Shuffle$8,"Slow Mode ON":"Mode lent activé","Some of the files will not be accepted":"Certains fichiers ne seront pas acceptés","This message was deleted...":"Ce message a été supprimé...",Thread:Thread$9,"Type your message":"Saisissez votre message",Unmute:Unmute$8,Unpin:Unpin$8,"Upload type: \"{{ type }}\" is not allowed":"Le type de téléchargement: \"{{ type }}\" n'est pas autorisé","Wait until all attachments have uploaded":"Attendez que toutes les pièces jointes soient téléchargées","You have no channels currently":"Vous n'avez actuellement aucun canal","You've reached the maximum number of files":"Vous avez atteint le nombre maximum de fichiers","ban-command-args":"[@nomdutilisateur] [texte]","ban-command-description":"Bannir un utilisateur","giphy-command-args":"[texte]","giphy-command-description":"Poster un GIF aléatoire dans le canal",live:live$8,"mute-command-args":"[@nomdutilisateur]","mute-command-description":"Muter un utilisateur",replyCount_many:replyCount_many$3,replyCount_one:replyCount_one$8,replyCount_other:replyCount_other$8,searchResultsCount_many:searchResultsCount_many$3,searchResultsCount_one:searchResultsCount_one$8,searchResultsCount_other:searchResultsCount_other$8,"this content could not be displayed":"ce contenu n'a pu être affiché","unban-command-args":"[@nomdutilisateur]","unban-command-description":"Débannir un utilisateur","unmute-command-args":"[@nomdutilisateur]","unmute-command-description":"Démuter un utilisateur","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} et {{ moreCount }} autres","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }} et {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} et {{ secondUser }}","{{ imageCount }} more":"{{ imageCount }} supplémentaires","{{ memberCount }} members":"{{ memberCount }} membres","{{ user }} has been muted":"{{ user }} a été mis en sourdine","{{ user }} has been unmuted":"{{ user }} n'est plus en sourdine","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} en ligne","🏙 Attachment...":"🏙 Pièce jointe..."};
|
|
6091
5779
|
|
|
6092
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$7="रद्द करें";var Close$7="बंद करे";var Delete$7="डिलीट";var Delivered$7="पहुंच गया";var Flag$7="फ्लैग करे";var Menu$7="मेन्यू";var Mute$7="म्यूट करे";var New$7="नए";var Pin$7="पिन";var Reply$7="जवाब दे दो";var Search$7="खोज";var Send$7="भेजे";var Thread$8="रिप्लाई थ्रेड";var Unmute$7="अनम्यूट";var Unpin$7="अनपिन";var live$7="लाइव";var replyCount_one$7="1 रिप्लाई";var replyCount_other$7="{{ count }} रिप्लाई";var searchResultsCount_one$7="1 परिणाम";var searchResultsCount_other$7="{{ count }} परिणाम";var hiTranslations = {"Attach files":"फाइल्स अटैच करे",Cancel:Cancel$7,"Channel Missing":"चैनल उपलब्ध नहीं है",Close:Close$7,"Close emoji picker":"इमोजी पिकर बंद करें","Commands matching":"मेल खाती है","Connection failure, reconnecting now...":"कनेक्शन विफल रहा, अब पुनः कनेक्ट हो रहा है ...",Delete:Delete$7,Delivered:Delivered$7,"Drag your files here":"Drag your files here","Edit Message":"मैसेज में बदलाव करे","Edit message request failed":"संदेश संपादित करने का अनुरोध विफल रहा","Emoji matching":"इमोजी मिलान","Empty message...":"खाली संदेश ...","Error adding flag":"ध्वज जोड़ने में त्रुटि","Error connecting to chat, refresh the page to try again.":"चैट से कनेक्ट करने में त्रुटि, पेज को रिफ्रेश करें","Error deleting message":"संदेश हटाने में त्रुटि","Error muting a user ...":"यूजर को म्यूट करने का प्रयास फेल हुआ","Error pinning message":"संदेश को पिन करने में त्रुटि","Error removing message pin":"संदेश पिन निकालने में त्रुटि","Error unmuting a user ...":"यूजर को अनम्यूट करने का प्रयास फेल हुआ","Error uploading file":"फ़ाइल अपलोड करने में त्रुटि","Error uploading image":"छवि अपलोड करने में त्रुटि","Error · Unsent":"फेल","Error: {{ errorMessage }}":"फेल: {{ errorMessage }}",Flag:Flag$7,"Latest Messages":"नवीनतम संदेश",Menu:Menu$7,"Message Failed · Click to try again":"मैसेज फ़ैल - पुनः कोशिश करें","Message Failed · Unauthorized":"मैसेज फ़ैल - अनधिकृत","Message deleted":"मैसेज हटा दिया गया","Message has been successfully flagged":"मैसेज को फ्लैग कर दिया गया है","Message pinned":"संदेश पिन किया गया",Mute:Mute$7,New:New$7,"New Messages!":"नए मैसेज!","No chats here yet…":"यहां अभी तक कोई चैट नहीं...","No results found":"कोई परिणाम नहीं मिला","Nothing yet...":"कोई मैसेज नहीं है","Open emoji picker":"इमोजी पिकर खोलिये","People matching":"मेल खाते लोग",Pin:Pin$7,"Pinned by":"द्वारा पिन किया गया",Reply:Reply$7,"Reply to Message":"संदेश का जवाब दें",Search:Search$7,"Searching...":"खोज कर...",Send:Send$7,"Send message request failed":"संदेश भेजने का अनुरोध विफल रहा","Sending...":"भेजा जा रहा है","Slow Mode ON":"स्लो मोड ऑन","Some of the files will not be accepted":"
|
|
5780
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$7="रद्द करें";var Close$7="बंद करे";var Delete$7="डिलीट";var Delivered$7="पहुंच गया";var Flag$7="फ्लैग करे";var Menu$7="मेन्यू";var Mute$7="म्यूट करे";var New$7="नए";var Pin$7="पिन";var Reply$7="जवाब दे दो";var Search$7="खोज";var Send$7="भेजे";var Shuffle$7="मिश्रित करें";var Thread$8="रिप्लाई थ्रेड";var Unmute$7="अनम्यूट";var Unpin$7="अनपिन";var live$7="लाइव";var replyCount_one$7="1 रिप्लाई";var replyCount_other$7="{{ count }} रिप्लाई";var searchResultsCount_one$7="1 परिणाम";var searchResultsCount_other$7="{{ count }} परिणाम";var hiTranslations = {"Attach files":"फाइल्स अटैच करे",Cancel:Cancel$7,"Channel Missing":"चैनल उपलब्ध नहीं है",Close:Close$7,"Close emoji picker":"इमोजी पिकर बंद करें","Commands matching":"मेल खाती है","Connection failure, reconnecting now...":"कनेक्शन विफल रहा, अब पुनः कनेक्ट हो रहा है ...",Delete:Delete$7,Delivered:Delivered$7,"Drag your files here":"अपनी फ़ाइलें यहाँ खींचें","Drag your files here to add to your post":"अपनी फ़ाइलें यहाँ खींचें और अपने पोस्ट में जोड़ने के लिए","Edit Message":"मैसेज में बदलाव करे","Edit message request failed":"संदेश संपादित करने का अनुरोध विफल रहा","Emoji matching":"इमोजी मिलान","Empty message...":"खाली संदेश ...","Error adding flag":"ध्वज जोड़ने में त्रुटि","Error connecting to chat, refresh the page to try again.":"चैट से कनेक्ट करने में त्रुटि, पेज को रिफ्रेश करें","Error deleting message":"संदेश हटाने में त्रुटि","Error muting a user ...":"यूजर को म्यूट करने का प्रयास फेल हुआ","Error pinning message":"संदेश को पिन करने में त्रुटि","Error removing message pin":"संदेश पिन निकालने में त्रुटि","Error unmuting a user ...":"यूजर को अनम्यूट करने का प्रयास फेल हुआ","Error uploading file":"फ़ाइल अपलोड करने में त्रुटि","Error uploading image":"छवि अपलोड करने में त्रुटि","Error · Unsent":"फेल","Error: {{ errorMessage }}":"फेल: {{ errorMessage }}",Flag:Flag$7,"Latest Messages":"नवीनतम संदेश","Load more":"और लोड करें",Menu:Menu$7,"Message Failed · Click to try again":"मैसेज फ़ैल - पुनः कोशिश करें","Message Failed · Unauthorized":"मैसेज फ़ैल - अनधिकृत","Message deleted":"मैसेज हटा दिया गया","Message has been successfully flagged":"मैसेज को फ्लैग कर दिया गया है","Message pinned":"संदेश पिन किया गया",Mute:Mute$7,New:New$7,"New Messages!":"नए मैसेज!","No chats here yet…":"यहां अभी तक कोई चैट नहीं...","No results found":"कोई परिणाम नहीं मिला","Nothing yet...":"कोई मैसेज नहीं है","Open emoji picker":"इमोजी पिकर खोलिये","People matching":"मेल खाते लोग",Pin:Pin$7,"Pinned by":"द्वारा पिन किया गया",Reply:Reply$7,"Reply to Message":"संदेश का जवाब दें",Search:Search$7,"Searching...":"खोज कर...",Send:Send$7,"Send message request failed":"संदेश भेजने का अनुरोध विफल रहा","Sending...":"भेजा जा रहा है",Shuffle:Shuffle$7,"Slow Mode ON":"स्लो मोड ऑन","Some of the files will not be accepted":"कुछ फ़ाइलें स्वीकार नहीं की जाएंगी","This message was deleted...":"मैसेज हटा दिया गया",Thread:Thread$8,"Type your message":"अपना मैसेज लिखे",Unmute:Unmute$7,Unpin:Unpin$7,"Upload type: \"{{ type }}\" is not allowed":"अपलोड प्रकार: \"{{ type }}\" की अनुमति नहीं है","Wait until all attachments have uploaded":"सभी अटैचमेंट अपलोड होने तक प्रतीक्षा करें","You have no channels currently":"आपके पास कोई चैनल नहीं है","You've reached the maximum number of files":"आप अधिकतम फ़ाइलों तक पहुँच गए हैं","ban-command-args":"[@उपयोगकर्तनाम] [पाठ]","ban-command-description":"एक उपयोगकर्ता को प्रतिषेधित करें","giphy-command-args":"[पाठ]","giphy-command-description":"चैनल पर एक क्रॉफिल जीआइएफ पोस्ट करें",live:live$7,"mute-command-args":"[@उपयोगकर्तनाम]","mute-command-description":"एक उपयोगकर्ता को म्यूट करें",replyCount_one:replyCount_one$7,replyCount_other:replyCount_other$7,searchResultsCount_one:searchResultsCount_one$7,searchResultsCount_other:searchResultsCount_other$7,"this content could not be displayed":"यह कॉन्टेंट लोड नहीं हो पाया","unban-command-args":"[@उपयोगकर्तनाम]","unban-command-description":"एक उपयोगकर्ता को प्रतिषेध से मुक्त करें","unmute-command-args":"[@उपयोगकर्तनाम]","unmute-command-description":"एक उपयोगकर्ता को अनम्यूट करें","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} और {{ moreCount }} और","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }} और {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} और {{ secondUser }}","{{ imageCount }} more":"{{ imageCount }} और","{{ memberCount }} members":"{{ memberCount }} मेंबर्स","{{ user }} has been muted":"{{ user }} को म्यूट कर दिया गया है","{{ user }} has been unmuted":"{{ user }} को अनम्यूट कर दिया गया है","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} online","🏙 Attachment...":"🏙 अटैचमेंट"};
|
|
6093
5781
|
|
|
6094
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$6="Annulla";var Close$6="Chiudi";var Delete$6="Cancella";var Delivered$6="Consegnato";var Flag$6="Segnala";var Menu$6="Menù";var Mute$6="Silenzia";var New$6="Nuovo";var Pin$6="Pin";var Reply$6="Rispondere";var Search$6="Ricerca";var Send$6="Invia";var Thread$7="Thread";var Unmute$6="Riattiva le notifiche";var Unpin$6="Sblocca";var live$6="live";var replyCount_many$2="{{ count }} risposte";var replyCount_one$6="Una risposta";var replyCount_other$6="{{ count }} risposte";var searchResultsCount_many$2="{{ count }} risultati";var searchResultsCount_one$6="1 risultato";var searchResultsCount_other$6="{{ count }} risultati";var itTranslations = {"Attach files":"Allega file",Cancel:Cancel$6,"Channel Missing":"Il canale non esiste",Close:Close$6,"Close emoji picker":"Chiudi il selettore di emoji","Commands matching":"Comandi corrispondenti","Connection failure, reconnecting now...":"Connessione fallitta, riconnessione in corso...",Delete:Delete$6,Delivered:Delivered$6,"Drag your files here":"Drag your files here","Edit Message":"Modifica messaggio","Edit message request failed":"Richiesta di modifica del messaggio non riuscita","Emoji matching":"Abbinamento emoji","Empty message...":"Message vuoto...","Error adding flag":"Errore durante l'aggiunta del flag","Error connecting to chat, refresh the page to try again.":"Errore di connessione alla chat, aggiorna la pagina per riprovare","Error deleting message":"Errore durante l'eliminazione del messaggio","Error muting a user ...":"Errore silenziando un utente ...","Error pinning message":"Errore durante il blocco del messaggio","Error removing message pin":"Errore durante la rimozione del PIN del messaggio","Error unmuting a user ...":"Errore riattivando le notifiche per l'utente ...","Error uploading file":"Errore durante il caricamento del file","Error uploading image":"Errore durante il caricamento dell'immagine","Error · Unsent":"Errore · Non inviato","Error: {{ errorMessage }}":"Errore: {{ errorMessage }}",Flag:Flag$6,"Latest Messages":"Ultimi messaggi",Menu:Menu$6,"Message Failed · Click to try again":"Invio messaggio fallito · Clicca per riprovare","Message Failed · Unauthorized":"Invio messaggio fallito · Non autorizzato","Message deleted":"Messaggio cancellato","Message has been successfully flagged":"Il messaggio é stato segnalato con successo","Message pinned":"Messaggio bloccato",Mute:Mute$6,New:New$6,"New Messages!":"Nuovo messaggio!","No chats here yet…":"Non ci sono ancora messaggi qui...","No results found":"Nessun risultato trovato","Nothing yet...":"Ancora niente...","Open emoji picker":"Apri il selettore dellle emoji","People matching":"Persone che corrispondono",Pin:Pin$6,"Pinned by":"Appuntato da",Reply:Reply$6,"Reply to Message":"Rispondi al messaggio",Search:Search$6,"Searching...":"Ricerca in corso ...",Send:Send$6,"Send message request failed":"Invia messaggio di richiesta non riuscito","Sending...":"Invio in corso...","Slow Mode ON":"Modalità lenta attivata","Some of the files will not be accepted":"
|
|
5782
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$6="Annulla";var Close$6="Chiudi";var Delete$6="Cancella";var Delivered$6="Consegnato";var Flag$6="Segnala";var Menu$6="Menù";var Mute$6="Silenzia";var New$6="Nuovo";var Pin$6="Pin";var Reply$6="Rispondere";var Search$6="Ricerca";var Send$6="Invia";var Shuffle$6="Mescolare";var Thread$7="Thread";var Unmute$6="Riattiva le notifiche";var Unpin$6="Sblocca";var live$6="live";var replyCount_many$2="{{ count }} risposte";var replyCount_one$6="Una risposta";var replyCount_other$6="{{ count }} risposte";var searchResultsCount_many$2="{{ count }} risultati";var searchResultsCount_one$6="1 risultato";var searchResultsCount_other$6="{{ count }} risultati";var itTranslations = {"Attach files":"Allega file",Cancel:Cancel$6,"Channel Missing":"Il canale non esiste",Close:Close$6,"Close emoji picker":"Chiudi il selettore di emoji","Commands matching":"Comandi corrispondenti","Connection failure, reconnecting now...":"Connessione fallitta, riconnessione in corso...",Delete:Delete$6,Delivered:Delivered$6,"Drag your files here":"Trascina i tuoi file qui","Drag your files here to add to your post":"Trascina i tuoi file qui per aggiungerli al tuo post","Edit Message":"Modifica messaggio","Edit message request failed":"Richiesta di modifica del messaggio non riuscita","Emoji matching":"Abbinamento emoji","Empty message...":"Message vuoto...","Error adding flag":"Errore durante l'aggiunta del flag","Error connecting to chat, refresh the page to try again.":"Errore di connessione alla chat, aggiorna la pagina per riprovare","Error deleting message":"Errore durante l'eliminazione del messaggio","Error muting a user ...":"Errore silenziando un utente ...","Error pinning message":"Errore durante il blocco del messaggio","Error removing message pin":"Errore durante la rimozione del PIN del messaggio","Error unmuting a user ...":"Errore riattivando le notifiche per l'utente ...","Error uploading file":"Errore durante il caricamento del file","Error uploading image":"Errore durante il caricamento dell'immagine","Error · Unsent":"Errore · Non inviato","Error: {{ errorMessage }}":"Errore: {{ errorMessage }}",Flag:Flag$6,"Latest Messages":"Ultimi messaggi","Load more":"Carica di più",Menu:Menu$6,"Message Failed · Click to try again":"Invio messaggio fallito · Clicca per riprovare","Message Failed · Unauthorized":"Invio messaggio fallito · Non autorizzato","Message deleted":"Messaggio cancellato","Message has been successfully flagged":"Il messaggio é stato segnalato con successo","Message pinned":"Messaggio bloccato",Mute:Mute$6,New:New$6,"New Messages!":"Nuovo messaggio!","No chats here yet…":"Non ci sono ancora messaggi qui...","No results found":"Nessun risultato trovato","Nothing yet...":"Ancora niente...","Open emoji picker":"Apri il selettore dellle emoji","People matching":"Persone che corrispondono",Pin:Pin$6,"Pinned by":"Appuntato da",Reply:Reply$6,"Reply to Message":"Rispondi al messaggio",Search:Search$6,"Searching...":"Ricerca in corso ...",Send:Send$6,"Send message request failed":"Invia messaggio di richiesta non riuscito","Sending...":"Invio in corso...",Shuffle:Shuffle$6,"Slow Mode ON":"Modalità lenta attivata","Some of the files will not be accepted":"Alcuni dei file non saranno accettati","This message was deleted...":"Questo messaggio é stato cancellato",Thread:Thread$7,"Type your message":"Scrivi il tuo messaggio",Unmute:Unmute$6,Unpin:Unpin$6,"Upload type: \"{{ type }}\" is not allowed":"Tipo di caricamento: \"{{ type }}\" non è consentito","Wait until all attachments have uploaded":"Attendi il caricamento di tutti gli allegati","You have no channels currently":"Al momento non sono presenti canali","You've reached the maximum number of files":"Hai raggiunto il numero massimo di file","ban-command-args":"[@nomeutente] [testo]","ban-command-description":"Vietare un utente","giphy-command-args":"[testo]","giphy-command-description":"Pubblica un gif casuale sul canale",live:live$6,"mute-command-args":"[@nomeutente]","mute-command-description":"Silenzia un utente",replyCount_many:replyCount_many$2,replyCount_one:replyCount_one$6,replyCount_other:replyCount_other$6,searchResultsCount_many:searchResultsCount_many$2,searchResultsCount_one:searchResultsCount_one$6,searchResultsCount_other:searchResultsCount_other$6,"this content could not be displayed":"questo contenuto non puó essere mostrato","unban-command-args":"[@nomeutente]","unban-command-description":"Togliere il divieto a un utente","unmute-command-args":"[@nomeutente]","unmute-command-description":"Togliere il silenzio a un utente","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} e altri {{ moreCount }}","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }} e {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} e {{ secondUser }}","{{ imageCount }} more":"+ {{ imageCount }}","{{ memberCount }} members":"{{ memberCount }} membri","{{ user }} has been muted":"{{ user }} é stato silenziato","{{ user }} has been unmuted":"Notifiche riattivate per {{ user }}","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} online","🏙 Attachment...":"🏙 Allegato..."};
|
|
6095
5783
|
|
|
6096
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$5="キャンセル";var Close$5="閉める";var Delete$5="消去";var Delivered$5="配信しました";var Flag$5="フラグ";var Menu$5="メニュー";var Mute$5="無音";var New$5="新しい";var Pin$5="ピン";var Reply$5="返事";var Search$5="探す";var Send$5="送信";var Thread$6="スレッド";var Unmute$5="無音を解除する";var Unpin$5="ピンを解除する";var live$5="ライブ";var replyCount_one$5="1件の返信";var replyCount_other$5="{{ count }} 返信";var searchResultsCount_one$5="1件の結果";var searchResultsCount_other$5="{{ count }}件の結果";var jaTranslations = {"Attach files":"ファイルを添付する",Cancel:Cancel$5,"Channel Missing":"チャネルがありません",Close:Close$5,"Close emoji picker":"絵文字ピッカーを閉める","Commands matching":"一致するコマンド","Connection failure, reconnecting now...":"接続が失敗しました。再接続中...",Delete:Delete$5,Delivered:Delivered$5,"Drag your files here":"Drag your files here","Edit Message":"メッセージを編集","Edit message request failed":"メッセージの編集要求が失敗しました","Emoji matching":"絵文字マッチング","Empty message...":"空のメッセージ...","Error adding flag":"フラグを追加のエラーが発生しました","Error connecting to chat, refresh the page to try again.":"チャットへの接続ができませんでした。ページを更新してください。","Error deleting message":"メッセージを削除するエラーが発生しました","Error muting a user ...":"ユーザーを無音するエラーが発生しました...","Error pinning message":"メッセージをピンのエラーが発生しました","Error removing message pin":"メッセージのピンを削除のエラーが発生しました","Error unmuting a user ...":"ユーザーの無音解除のエラーが発生しました...","Error uploading file":"ファイルをアップロードのエラーが発生しました","Error uploading image":"画像をアップロードのエラーが発生しました","Error · Unsent":"エラー・未送信","Error: {{ errorMessage }}":"エラー: {{ errorMessage }}",Flag:Flag$5,"Latest Messages":"最新のメッセージ",Menu:Menu$5,"Message Failed · Click to try again":"メッセージが失敗しました · クリックして再試行してください","Message Failed · Unauthorized":"メッセージが失敗しました · 許可されていません","Message deleted":"メッセージが削除されました","Message has been successfully flagged":"メッセージに正常にフラグが付けられました","Message pinned":"メッセージにピンが付けられました",Mute:Mute$5,New:New$5,"New Messages!":"新しいメッセージ!","No chats here yet…":"ここにはまだチャットはありません…","No results found":"結果が見つかりません","Nothing yet...":"まだ何もありません...","Open emoji picker":"絵文字ピッカーを開く","People matching":"一致する人",Pin:Pin$5,"Pinned by":"ピンした方",Reply:Reply$5,"Reply to Message":"メッセージに返信",Search:Search$5,"Searching...":"検索中...",Send:Send$5,"Send message request failed":"メッセージ送信リクエストが失敗しました","Sending...":"送信中...","Slow Mode ON":"スローモードオン","Some of the files will not be accepted":"
|
|
5784
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$5="キャンセル";var Close$5="閉める";var Delete$5="消去";var Delivered$5="配信しました";var Flag$5="フラグ";var Menu$5="メニュー";var Mute$5="無音";var New$5="新しい";var Pin$5="ピン";var Reply$5="返事";var Search$5="探す";var Send$5="送信";var Shuffle$5="シャッフル";var Thread$6="スレッド";var Unmute$5="無音を解除する";var Unpin$5="ピンを解除する";var live$5="ライブ";var replyCount_one$5="1件の返信";var replyCount_other$5="{{ count }} 返信";var searchResultsCount_one$5="1件の結果";var searchResultsCount_other$5="{{ count }}件の結果";var jaTranslations = {"Attach files":"ファイルを添付する",Cancel:Cancel$5,"Channel Missing":"チャネルがありません",Close:Close$5,"Close emoji picker":"絵文字ピッカーを閉める","Commands matching":"一致するコマンド","Connection failure, reconnecting now...":"接続が失敗しました。再接続中...",Delete:Delete$5,Delivered:Delivered$5,"Drag your files here":"ここにファイルをドラッグ","Drag your files here to add to your post":"投稿に追加するためにここにファイルをドラッグ","Edit Message":"メッセージを編集","Edit message request failed":"メッセージの編集要求が失敗しました","Emoji matching":"絵文字マッチング","Empty message...":"空のメッセージ...","Error adding flag":"フラグを追加のエラーが発生しました","Error connecting to chat, refresh the page to try again.":"チャットへの接続ができませんでした。ページを更新してください。","Error deleting message":"メッセージを削除するエラーが発生しました","Error muting a user ...":"ユーザーを無音するエラーが発生しました...","Error pinning message":"メッセージをピンのエラーが発生しました","Error removing message pin":"メッセージのピンを削除のエラーが発生しました","Error unmuting a user ...":"ユーザーの無音解除のエラーが発生しました...","Error uploading file":"ファイルをアップロードのエラーが発生しました","Error uploading image":"画像をアップロードのエラーが発生しました","Error · Unsent":"エラー・未送信","Error: {{ errorMessage }}":"エラー: {{ errorMessage }}",Flag:Flag$5,"Latest Messages":"最新のメッセージ","Load more":"もっと読み込む",Menu:Menu$5,"Message Failed · Click to try again":"メッセージが失敗しました · クリックして再試行してください","Message Failed · Unauthorized":"メッセージが失敗しました · 許可されていません","Message deleted":"メッセージが削除されました","Message has been successfully flagged":"メッセージに正常にフラグが付けられました","Message pinned":"メッセージにピンが付けられました",Mute:Mute$5,New:New$5,"New Messages!":"新しいメッセージ!","No chats here yet…":"ここにはまだチャットはありません…","No results found":"結果が見つかりません","Nothing yet...":"まだ何もありません...","Open emoji picker":"絵文字ピッカーを開く","People matching":"一致する人",Pin:Pin$5,"Pinned by":"ピンした方",Reply:Reply$5,"Reply to Message":"メッセージに返信",Search:Search$5,"Searching...":"検索中...",Send:Send$5,"Send message request failed":"メッセージ送信リクエストが失敗しました","Sending...":"送信中...",Shuffle:Shuffle$5,"Slow Mode ON":"スローモードオン","Some of the files will not be accepted":"一部のファイルは受け付けられません","This message was deleted...":"このメッセージは削除されました...",Thread:Thread$6,"Type your message":"メッセージを入力してください",Unmute:Unmute$5,Unpin:Unpin$5,"Upload type: \"{{ type }}\" is not allowed":"アップロードタイプ:\"{{ type }}\"は許可されていません","Wait until all attachments have uploaded":"すべての添付ファイルがアップロードされるまでお待ちください","You have no channels currently":"現在チャンネルはありません","You've reached the maximum number of files":"ファイルの最大数に達しました","ban-command-args":"[@ユーザ名] [テキスト]","ban-command-description":"ユーザーを禁止する","giphy-command-args":"[テキスト]","giphy-command-description":"チャンネルにランダムなGIFを投稿する",live:live$5,"mute-command-args":"[@ユーザ名]","mute-command-description":"ユーザーをミュートする",replyCount_one:replyCount_one$5,replyCount_other:replyCount_other$5,searchResultsCount_one:searchResultsCount_one$5,searchResultsCount_other:searchResultsCount_other$5,"this content could not be displayed":"このコンテンツは表示できませんでした","unban-command-args":"[@ユーザ名]","unban-command-description":"ユーザーの禁止を解除する","unmute-command-args":"[@ユーザ名]","unmute-command-description":"ユーザーのミュートを解除する","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} と {{ moreCount }} 他人","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }} と {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} と {{ secondUser }}","{{ imageCount }} more":"{{ imageCount }} イメージ","{{ memberCount }} members":"{{ memberCount }} メンバー","{{ user }} has been muted":"{{ user }} 無音されています","{{ user }} has been unmuted":"{{ user }} 無音されていません","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} オンライン","🏙 Attachment...":"🏙 アタッチメント..."};
|
|
6097
5785
|
|
|
6098
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$4="취소";var Close$4="닫기";var Delete$4="삭제";var Delivered$4="배달됨";var Flag$4="플래그";var Menu$4="메뉴";var Mute$4="무음";var New$4="새로운";var Pin$4="핀";var Reply$4="답장";var Search$4="찾다";var Send$4="보내다";var Thread$5="스레드";var Unmute$4="음소거 해제";var Unpin$4="핀 해제";var live$4="라이브";var replyCount_one$4="답장 1개";var replyCount_other$4="{{ count }} 답장";var searchResultsCount_one$4="1개의 결과";var searchResultsCount_other$4="{{ count }}개 결과";var koTranslations = {"Attach files":"파일 첨부",Cancel:Cancel$4,"Channel Missing":"채널 누락",Close:Close$4,"Close emoji picker":"이모티콘 선택기 닫기","Commands matching":"일치하는 명령","Connection failure, reconnecting now...":"연결 실패, 지금 다시 연결 중...",Delete:Delete$4,Delivered:Delivered$4,"Drag your files here":"Drag your files here","Edit Message":"메시지 수정","Edit message request failed":"메시지 수정 요청 실패","Emoji matching":"이모티콘 매칭","Empty message...":"빈 메시지...","Error adding flag":"플래그를 추가하는 동안 오류가 발생했습니다.","Error connecting to chat, refresh the page to try again.":"채팅에 연결하는 동안 오류가 발생했습니다. 페이지를 새로고침하여 다시 시도하세요.","Error deleting message":"메시지를 삭제하는 중에 오류가 발생했습니다.","Error muting a user ...":"사용자를 음소거하는 중에 오류가 발생했습니다...","Error pinning message":"메시지를 핀하는 중에 오류가 발생했습니다.","Error removing message pin":"메시지 핀을 제거하는 중에 오류가 발생했습니다.","Error unmuting a user ...":"사용자 음소거 해제 중 오류 발생...","Error uploading file":"파일 업로드 오류","Error uploading image":"이미지를 업로드하는 동안 오류가 발생했습니다.","Error · Unsent":"오류 · 전송되지 않음","Error: {{ errorMessage }}":"오류: {{ errorMessage }}",Flag:Flag$4,"Latest Messages":"최신 메시지",Menu:Menu$4,"Message Failed · Click to try again":"메시지 실패 · 다시 시도하려면 클릭하세요.","Message Failed · Unauthorized":"메시지 실패 · 승인되지 않음","Message deleted":"메시지가 삭제되었습니다.","Message has been successfully flagged":"메시지에 플래그가 지정되었습니다.","Message pinned":"메시지 핀했습니다",Mute:Mute$4,New:New$4,"New Messages!":"새 메시지!","No chats here yet…":"아직 채팅이 없습니다...","No results found":"검색 결과가 없습니다","Nothing yet...":"아직 아무것도...","Open emoji picker":"이모티콘 선택기 열기","People matching":"일치하는 사람",Pin:Pin$4,"Pinned by":"핀했던 분:",Reply:Reply$4,"Reply to Message":"메시지에 답장",Search:Search$4,"Searching...":"수색...",Send:Send$4,"Send message request failed":"메시지 보내기 요청 실패","Sending...":"배상중...","Slow Mode ON":"슬로우 모드 켜짐","Some of the files will not be accepted":"
|
|
5786
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$4="취소";var Close$4="닫기";var Delete$4="삭제";var Delivered$4="배달됨";var Flag$4="플래그";var Menu$4="메뉴";var Mute$4="무음";var New$4="새로운";var Pin$4="핀";var Reply$4="답장";var Search$4="찾다";var Send$4="보내다";var Shuffle$4="셔플";var Thread$5="스레드";var Unmute$4="음소거 해제";var Unpin$4="핀 해제";var live$4="라이브";var replyCount_one$4="답장 1개";var replyCount_other$4="{{ count }} 답장";var searchResultsCount_one$4="1개의 결과";var searchResultsCount_other$4="{{ count }}개 결과";var koTranslations = {"Attach files":"파일 첨부",Cancel:Cancel$4,"Channel Missing":"채널 누락",Close:Close$4,"Close emoji picker":"이모티콘 선택기 닫기","Commands matching":"일치하는 명령","Connection failure, reconnecting now...":"연결 실패, 지금 다시 연결 중...",Delete:Delete$4,Delivered:Delivered$4,"Drag your files here":"여기로 파일을 끌어다 놓으세요","Drag your files here to add to your post":"게시물에 추가하려면 파일을 여기로 끌어다 놓으세요","Edit Message":"메시지 수정","Edit message request failed":"메시지 수정 요청 실패","Emoji matching":"이모티콘 매칭","Empty message...":"빈 메시지...","Error adding flag":"플래그를 추가하는 동안 오류가 발생했습니다.","Error connecting to chat, refresh the page to try again.":"채팅에 연결하는 동안 오류가 발생했습니다. 페이지를 새로고침하여 다시 시도하세요.","Error deleting message":"메시지를 삭제하는 중에 오류가 발생했습니다.","Error muting a user ...":"사용자를 음소거하는 중에 오류가 발생했습니다...","Error pinning message":"메시지를 핀하는 중에 오류가 발생했습니다.","Error removing message pin":"메시지 핀을 제거하는 중에 오류가 발생했습니다.","Error unmuting a user ...":"사용자 음소거 해제 중 오류 발생...","Error uploading file":"파일 업로드 오류","Error uploading image":"이미지를 업로드하는 동안 오류가 발생했습니다.","Error · Unsent":"오류 · 전송되지 않음","Error: {{ errorMessage }}":"오류: {{ errorMessage }}",Flag:Flag$4,"Latest Messages":"최신 메시지","Load more":"더 불러오기",Menu:Menu$4,"Message Failed · Click to try again":"메시지 실패 · 다시 시도하려면 클릭하세요.","Message Failed · Unauthorized":"메시지 실패 · 승인되지 않음","Message deleted":"메시지가 삭제되었습니다.","Message has been successfully flagged":"메시지에 플래그가 지정되었습니다.","Message pinned":"메시지 핀했습니다",Mute:Mute$4,New:New$4,"New Messages!":"새 메시지!","No chats here yet…":"아직 채팅이 없습니다...","No results found":"검색 결과가 없습니다","Nothing yet...":"아직 아무것도...","Open emoji picker":"이모티콘 선택기 열기","People matching":"일치하는 사람",Pin:Pin$4,"Pinned by":"핀했던 분:",Reply:Reply$4,"Reply to Message":"메시지에 답장",Search:Search$4,"Searching...":"수색...",Send:Send$4,"Send message request failed":"메시지 보내기 요청 실패","Sending...":"배상중...",Shuffle:Shuffle$4,"Slow Mode ON":"슬로우 모드 켜짐","Some of the files will not be accepted":"일부 파일은 허용되지 않을 수 있습니다","This message was deleted...":"이 메시지는 삭제되었습니다...",Thread:Thread$5,"Type your message":"메시지 입력",Unmute:Unmute$4,Unpin:Unpin$4,"Upload type: \"{{ type }}\" is not allowed":"업로드 유형: \"{{ type }}\"은(는) 허용되지 않습니다.","Wait until all attachments have uploaded":"모든 첨부 파일이 업로드될 때까지 기다립니다.","You have no channels currently":"현재 채널이 없습니다.","You've reached the maximum number of files":"최대 파일 수에 도달했습니다.","ban-command-args":"[@사용자이름] [텍스트]","ban-command-description":"사용자를 차단","giphy-command-args":"[텍스트]","giphy-command-description":"채널에 무작위 GIF 게시",live:live$4,"mute-command-args":"[@사용자이름]","mute-command-description":"사용자 음소거",replyCount_one:replyCount_one$4,replyCount_other:replyCount_other$4,searchResultsCount_one:searchResultsCount_one$4,searchResultsCount_other:searchResultsCount_other$4,"this content could not be displayed":"이 콘텐츠를 표시할 수 없습니다","unban-command-args":"[@사용자이름]","unban-command-description":"사용자 차단 해제","unmute-command-args":"[@사용자이름]","unmute-command-description":"사용자 음소거 해제","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} 그리고 {{ moreCount }}명 더","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }} 그리고 {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} 그리고 {{ secondUser }}","{{ imageCount }} more":"{{ imageCount }}개 더","{{ memberCount }} members":"{{ memberCount }}명","{{ user }} has been muted":"{{ user }} 음소거되었습니다","{{ user }} has been unmuted":"{{ user }} 음소거가 해제되었습니다","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} 온라인","🏙 Attachment...":"🏙 부착..."};
|
|
6099
5787
|
|
|
6100
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$3="Annuleer";var Close$3="Sluit";var Delete$3="Verwijder";var Delivered$3="Afgeleverd";var Flag$3="Markeer";var Menu$3="Menu";var Mute$3="Mute";var New$3="Nieuwe";var Pin$3="Pin";var Reply$3="Antwoord";var Search$3="Zoeken";var Send$3="Verstuur";var Thread$4="Draadje";var Unmute$3="Unmute";var Unpin$3="Losmaken";var live$3="live";var replyCount_one$3="1 antwoord";var replyCount_other$3="{{ count }} antwoorden";var searchResultsCount_one$3="1 resultaat";var searchResultsCount_other$3="{{ count }} resultaten";var nlTranslations = {"Attach files":"Bijlage toevoegen",Cancel:Cancel$3,"Channel Missing":"Kanaal niet gevonden",Close:Close$3,"Close emoji picker":"Sluit de emoji-kiezer","Commands matching":"Bijpassende opdrachten","Connection failure, reconnecting now...":"Probleem met de verbinding, opnieuw verbinding maken...",Delete:Delete$3,Delivered:Delivered$3,"Drag your files here":"Drag your files here","Edit Message":"Pas bericht aan","Edit message request failed":"Verzoek om bericht bewerken mislukt","Emoji matching":"Emoji-overeenkomsten","Empty message...":"Leeg bericht...","Error adding flag":"Fout bij toevoegen van vlag","Error connecting to chat, refresh the page to try again.":"Fout bij het verbinden, ververs de pagina om nogmaals te proberen","Error deleting message":"Fout bij verwijderen van bericht","Error muting a user ...":"Fout bij het muten van de gebruiker","Error pinning message":"Fout bij vastzetten van bericht","Error removing message pin":"Fout bij verwijderen van berichtpin","Error unmuting a user ...":"Fout bij het unmuten van de gebruiker","Error uploading file":"Fout bij uploaden bestand","Error uploading image":"Fout bij uploaden afbeelding","Error · Unsent":"Error: · niet verzonden","Error: {{ errorMessage }}":"Error: {{ errorMessage }}",Flag:Flag$3,"Latest Messages":"Laatste berichten",Menu:Menu$3,"Message Failed · Click to try again":"Bericht mislukt, klik om het nogmaals te proberen","Message Failed · Unauthorized":"Bericht mislukt, ongeautoriseerd","Message deleted":"Bericht verwijderd","Message has been successfully flagged":"Bericht is succesvol gemarkeerd","Message pinned":"Bericht vastgezet",Mute:Mute$3,New:New$3,"New Messages!":"Nieuwe Berichten!","No chats here yet…":"Nog geen chats hier...","No results found":"Geen resultaten gevonden","Nothing yet...":"Nog niets ...","Open emoji picker":"Open emojipicker","People matching":"Mensen die matchen",Pin:Pin$3,"Pinned by":"Vastgemaakt door",Reply:Reply$3,"Reply to Message":"Antwoord op bericht",Search:Search$3,"Searching...":"Zoeken...",Send:Send$3,"Send message request failed":"Verzoek om bericht te verzenden mislukt","Sending...":"Aan het verzenden...","Slow Mode ON":"Langzame modus aan","Some of the files will not be accepted":"
|
|
5788
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$3="Annuleer";var Close$3="Sluit";var Delete$3="Verwijder";var Delivered$3="Afgeleverd";var Flag$3="Markeer";var Menu$3="Menu";var Mute$3="Mute";var New$3="Nieuwe";var Pin$3="Pin";var Reply$3="Antwoord";var Search$3="Zoeken";var Send$3="Verstuur";var Shuffle$3="Schudden";var Thread$4="Draadje";var Unmute$3="Unmute";var Unpin$3="Losmaken";var live$3="live";var replyCount_one$3="1 antwoord";var replyCount_other$3="{{ count }} antwoorden";var searchResultsCount_one$3="1 resultaat";var searchResultsCount_other$3="{{ count }} resultaten";var nlTranslations = {"Attach files":"Bijlage toevoegen",Cancel:Cancel$3,"Channel Missing":"Kanaal niet gevonden",Close:Close$3,"Close emoji picker":"Sluit de emoji-kiezer","Commands matching":"Bijpassende opdrachten","Connection failure, reconnecting now...":"Probleem met de verbinding, opnieuw verbinding maken...",Delete:Delete$3,Delivered:Delivered$3,"Drag your files here":"Sleep je bestanden hier naartoe","Drag your files here to add to your post":"Sleep je bestanden hier naartoe om aan je bericht toe te voegen","Edit Message":"Pas bericht aan","Edit message request failed":"Verzoek om bericht bewerken mislukt","Emoji matching":"Emoji-overeenkomsten","Empty message...":"Leeg bericht...","Error adding flag":"Fout bij toevoegen van vlag","Error connecting to chat, refresh the page to try again.":"Fout bij het verbinden, ververs de pagina om nogmaals te proberen","Error deleting message":"Fout bij verwijderen van bericht","Error muting a user ...":"Fout bij het muten van de gebruiker","Error pinning message":"Fout bij vastzetten van bericht","Error removing message pin":"Fout bij verwijderen van berichtpin","Error unmuting a user ...":"Fout bij het unmuten van de gebruiker","Error uploading file":"Fout bij uploaden bestand","Error uploading image":"Fout bij uploaden afbeelding","Error · Unsent":"Error: · niet verzonden","Error: {{ errorMessage }}":"Error: {{ errorMessage }}",Flag:Flag$3,"Latest Messages":"Laatste berichten","Load more":"Meer laden",Menu:Menu$3,"Message Failed · Click to try again":"Bericht mislukt, klik om het nogmaals te proberen","Message Failed · Unauthorized":"Bericht mislukt, ongeautoriseerd","Message deleted":"Bericht verwijderd","Message has been successfully flagged":"Bericht is succesvol gemarkeerd","Message pinned":"Bericht vastgezet",Mute:Mute$3,New:New$3,"New Messages!":"Nieuwe Berichten!","No chats here yet…":"Nog geen chats hier...","No results found":"Geen resultaten gevonden","Nothing yet...":"Nog niets ...","Open emoji picker":"Open emojipicker","People matching":"Mensen die matchen",Pin:Pin$3,"Pinned by":"Vastgemaakt door",Reply:Reply$3,"Reply to Message":"Antwoord op bericht",Search:Search$3,"Searching...":"Zoeken...",Send:Send$3,"Send message request failed":"Verzoek om bericht te verzenden mislukt","Sending...":"Aan het verzenden...",Shuffle:Shuffle$3,"Slow Mode ON":"Langzame modus aan","Some of the files will not be accepted":"Sommige bestanden zullen niet worden geaccepteerd","This message was deleted...":"Dit bericht was verwijderd",Thread:Thread$4,"Type your message":"Type je bericht",Unmute:Unmute$3,Unpin:Unpin$3,"Upload type: \"{{ type }}\" is not allowed":"Uploadtype: \"{{ type }}\" is niet toegestaan","Wait until all attachments have uploaded":"Wacht tot alle bijlagen zijn geüpload","You have no channels currently":"Er zijn geen chats beschikbaar","You've reached the maximum number of files":"Je hebt het maximale aantal bestanden bereikt","ban-command-args":"[@gebruikersnaam] [tekst]","ban-command-description":"Een gebruiker verbannen","giphy-command-args":"[tekst]","giphy-command-description":"Plaats een willekeurige gif in het kanaal",live:live$3,"mute-command-args":"[@gebruikersnaam]","mute-command-description":"Een gebruiker dempen",replyCount_one:replyCount_one$3,replyCount_other:replyCount_other$3,searchResultsCount_one:searchResultsCount_one$3,searchResultsCount_other:searchResultsCount_other$3,"this content could not be displayed":"Deze inhoud kan niet weergegeven worden","unban-command-args":"[@gebruikersnaam]","unban-command-description":"Een gebruiker debannen","unmute-command-args":"[@gebruikersnaam]","unmute-command-description":"Een gebruiker niet meer dempen","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} en {{ moreCount }} meer","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }} en {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} en {{ secondUser }}","{{ imageCount }} more":"+{{ imageCount }}","{{ memberCount }} members":"{{ memberCount }} deelnemers","{{ user }} has been muted":"{{ user }} is muted","{{ user }} has been unmuted":"{{ user }} is unmuted","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} online","🏙 Attachment...":"🏙 Bijlage..."};
|
|
6101
5789
|
|
|
6102
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$2="Cancelar";var Close$2="Fechar";var Delete$2="Excluir";var Delivered$2="Entregue";var Flag$2="Reportar";var Menu$2="Menu";var Mute$2="Mudo";var New$2="Novo";var Pin$2="Fixar";var Reply$2="Responder";var Search$2="Procurar";var Send$2="Enviar";var Thread$3="Fio";var Unmute$2="Ativar som";var Unpin$2="Liberar";var live$2="ao vivo";var replyCount_many$1="{{ count }} respostas";var replyCount_one$2="1 resposta";var replyCount_other$2="{{ count }} respostas";var searchResultsCount_many$1="{{ count }} resultados";var searchResultsCount_one$2="1 resultado";var searchResultsCount_other$2="{{ count }} resultados";var ptTranslations = {"Attach files":"Anexar arquivos",Cancel:Cancel$2,"Channel Missing":"Canal ausente",Close:Close$2,"Close emoji picker":"Fechar seletor de emoji","Commands matching":"Comandos correspondentes","Connection failure, reconnecting now...":"Falha de conexão, reconectando agora...",Delete:Delete$2,Delivered:Delivered$2,"Drag your files here":"Drag your files here","Edit Message":"Editar Mensagem","Edit message request failed":"O pedido de edição da mensagem falhou","Emoji matching":"Emoji correspondente","Empty message...":"Mensagem vazia...","Error adding flag":"Erro ao reportar","Error connecting to chat, refresh the page to try again.":"Erro ao conectar ao bate-papo, atualize a página para tentar novamente.","Error deleting message":"Erro ao deletar mensagem","Error muting a user ...":"Erro ao silenciar um usuário...","Error pinning message":"Erro ao fixar mensagem","Error removing message pin":"Erro ao remover o PIN da mensagem","Error unmuting a user ...":"Erro ao ativar o som de um usuário...","Error uploading file":"Erro ao enviar arquivo","Error uploading image":"Erro ao carregar a imagem","Error · Unsent":"Erro · Não enviado","Error: {{ errorMessage }}":"Erro: {{ errorMessage }}",Flag:Flag$2,"Latest Messages":"Mensagens mais recentes",Menu:Menu$2,"Message Failed · Click to try again":"A mensagem falhou · Clique para tentar novamente","Message Failed · Unauthorized":"A mensagem falhou · não autorizado","Message deleted":"Mensagem apagada","Message has been successfully flagged":"A mensagem foi reportada com sucesso","Message pinned":"Mensagem fixada",Mute:Mute$2,New:New$2,"New Messages!":"Novas mensagens!","No chats here yet…":"Ainda não há conversas aqui...","No results found":"Nenhum resultado encontrado","Nothing yet...":"Nada ainda...","Open emoji picker":"Abrir seletor de emoji","People matching":"Pessoas correspondentes",Pin:Pin$2,"Pinned by":"Fixado por",Reply:Reply$2,"Reply to Message":"Responder a mensagem",Search:Search$2,"Searching...":"Procurando...",Send:Send$2,"Send message request failed":"O pedido de envio de mensagem falhou","Sending...":"Enviando...","Slow Mode ON":"Modo lento LIGADO","Some of the files will not be accepted":"
|
|
5790
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$2="Cancelar";var Close$2="Fechar";var Delete$2="Excluir";var Delivered$2="Entregue";var Flag$2="Reportar";var Menu$2="Menu";var Mute$2="Mudo";var New$2="Novo";var Pin$2="Fixar";var Reply$2="Responder";var Search$2="Procurar";var Send$2="Enviar";var Shuffle$2="Embaralhar";var Thread$3="Fio";var Unmute$2="Ativar som";var Unpin$2="Liberar";var live$2="ao vivo";var replyCount_many$1="{{ count }} respostas";var replyCount_one$2="1 resposta";var replyCount_other$2="{{ count }} respostas";var searchResultsCount_many$1="{{ count }} resultados";var searchResultsCount_one$2="1 resultado";var searchResultsCount_other$2="{{ count }} resultados";var ptTranslations = {"Attach files":"Anexar arquivos",Cancel:Cancel$2,"Channel Missing":"Canal ausente",Close:Close$2,"Close emoji picker":"Fechar seletor de emoji","Commands matching":"Comandos correspondentes","Connection failure, reconnecting now...":"Falha de conexão, reconectando agora...",Delete:Delete$2,Delivered:Delivered$2,"Drag your files here":"Arraste seus arquivos aqui","Drag your files here to add to your post":"Arraste seus arquivos aqui para adicionar ao seu post","Edit Message":"Editar Mensagem","Edit message request failed":"O pedido de edição da mensagem falhou","Emoji matching":"Emoji correspondente","Empty message...":"Mensagem vazia...","Error adding flag":"Erro ao reportar","Error connecting to chat, refresh the page to try again.":"Erro ao conectar ao bate-papo, atualize a página para tentar novamente.","Error deleting message":"Erro ao deletar mensagem","Error muting a user ...":"Erro ao silenciar um usuário...","Error pinning message":"Erro ao fixar mensagem","Error removing message pin":"Erro ao remover o PIN da mensagem","Error unmuting a user ...":"Erro ao ativar o som de um usuário...","Error uploading file":"Erro ao enviar arquivo","Error uploading image":"Erro ao carregar a imagem","Error · Unsent":"Erro · Não enviado","Error: {{ errorMessage }}":"Erro: {{ errorMessage }}",Flag:Flag$2,"Latest Messages":"Mensagens mais recentes","Load more":"Carregar mais",Menu:Menu$2,"Message Failed · Click to try again":"A mensagem falhou · Clique para tentar novamente","Message Failed · Unauthorized":"A mensagem falhou · não autorizado","Message deleted":"Mensagem apagada","Message has been successfully flagged":"A mensagem foi reportada com sucesso","Message pinned":"Mensagem fixada",Mute:Mute$2,New:New$2,"New Messages!":"Novas mensagens!","No chats here yet…":"Ainda não há conversas aqui...","No results found":"Nenhum resultado encontrado","Nothing yet...":"Nada ainda...","Open emoji picker":"Abrir seletor de emoji","People matching":"Pessoas correspondentes",Pin:Pin$2,"Pinned by":"Fixado por",Reply:Reply$2,"Reply to Message":"Responder a mensagem",Search:Search$2,"Searching...":"Procurando...",Send:Send$2,"Send message request failed":"O pedido de envio de mensagem falhou","Sending...":"Enviando...",Shuffle:Shuffle$2,"Slow Mode ON":"Modo lento LIGADO","Some of the files will not be accepted":"Alguns dos arquivos não serão aceitos","This message was deleted...":"Esta mensagem foi excluída...",Thread:Thread$3,"Type your message":"Digite sua mensagem",Unmute:Unmute$2,Unpin:Unpin$2,"Upload type: \"{{ type }}\" is not allowed":"Tipo de upload: \"{{ type }}\" não é permitido","Wait until all attachments have uploaded":"Espere até que todos os anexos tenham sido carregados","You have no channels currently":"Você não tem canais atualmente","You've reached the maximum number of files":"Você atingiu o número máximo de arquivos","ban-command-args":"[@nomedeusuário] [texto]","ban-command-description":"Banir um usuário","giphy-command-args":"[texto]","giphy-command-description":"Postar um gif aleatório no canal",live:live$2,"mute-command-args":"[@nomedeusuário]","mute-command-description":"Silenciar um usuário",replyCount_many:replyCount_many$1,replyCount_one:replyCount_one$2,replyCount_other:replyCount_other$2,searchResultsCount_many:searchResultsCount_many$1,searchResultsCount_one:searchResultsCount_one$2,searchResultsCount_other:searchResultsCount_other$2,"this content could not be displayed":"este conteúdo não pôde ser exibido","unban-command-args":"[@nomedeusuário]","unban-command-description":"Desbanir um usuário","unmute-command-args":"[@nomedeusuário]","unmute-command-description":"Retirar o silenciamento de um usuário","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} e mais {{ moreCount }}","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }} e {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} e {{ secondUser }}","{{ imageCount }} more":"{{ imageCount }} mais","{{ memberCount }} members":"{{ memberCount }} membros","{{ user }} has been muted":"{{ user }} foi silenciado","{{ user }} has been unmuted":"{{ user }} foi reativado","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} online","🏙 Attachment...":"🏙 Anexo..."};
|
|
6103
5791
|
|
|
6104
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$1="Отмена";var Close$1="Закрыть";var Delete$1="Удалить";var Delivered$1="Отправлено";var Flag$1="Пожаловаться";var Menu$1="Меню";var Mute$1="Отключить уведомления";var New$1="Новые";var Pin$1="Штырь";var Reply$1="Отвечать";var Search$1="Поиск";var Send$1="Отправить";var Thread$2="Ветка";var Unmute$1="Включить уведомления";var Unpin$1="Открепить";var live$1="В прямом эфире";var replyCount_few="{{ count }} ответов";var replyCount_many="{{ count }} ответов";var replyCount_one$1="1 ответ";var replyCount_other$1="{{ count }} ответов";var searchResultsCount_few="{{ count }} результата";var searchResultsCount_many="{{ count }} результатов";var searchResultsCount_one$1="1 результат";var searchResultsCount_other$1="{{ count }} результатов";var ruTranslations = {"Attach files":"Прикрепить файлы",Cancel:Cancel$1,"Channel Missing":"Канал не найден",Close:Close$1,"Close emoji picker":"Закрыть окно выбора смайлов","Commands matching":"Соответствие команд","Connection failure, reconnecting now...":"Ошибка соединения, переподключение...",Delete:Delete$1,Delivered:Delivered$1,"Drag your files here":"Drag your files here","Edit Message":"Редактировать сообщение","Edit message request failed":"Не удалось изменить запрос сообщения","Emoji matching":"Соответствие эмодзи","Empty message...":"Пустое сообщение...","Error adding flag":"Ошибка добавления флага","Error connecting to chat, refresh the page to try again.":"Ошибка подключения к чату, обновите страницу чтобы попробовать снова.","Error deleting message":"Ошибка при удалении сообщения","Error muting a user ...":"Ошибка отключения уведомлений от пользователя...","Error pinning message":"Сообщение об ошибке при закреплении","Error removing message pin":"Ошибка при удалении булавки сообщения","Error unmuting a user ...":"Ошибка включения уведомлений...","Error uploading file":"Ошибка при загрузке файла","Error uploading image":"Ошибка загрузки изображения","Error · Unsent":"Ошибка · Не отправлено","Error: {{ errorMessage }}":"Ошибка: {{ errorMessage }}",Flag:Flag$1,"Latest Messages":"Последние сообщения",Menu:Menu$1,"Message Failed · Click to try again":"Ошибка отправки сообщения · Нажмите чтобы повторить","Message Failed · Unauthorized":"Ошибка отправки сообщения · Неавторизованный","Message deleted":"Сообщение удалено","Message has been successfully flagged":"Жалоба на сообщение была принята","Message pinned":"Сообщение закреплено",Mute:Mute$1,New:New$1,"New Messages!":"Новые сообщения!","No chats here yet…":"Здесь еще нет чатов...","No results found":"результаты не найдены","Nothing yet...":"Пока ничего нет...","Open emoji picker":"Выбрать emoji","People matching":"Соответствующие люди",Pin:Pin$1,"Pinned by":"Закреплено",Reply:Reply$1,"Reply to Message":"Ответить на сообщение",Search:Search$1,"Searching...":"Ищем...",Send:Send$1,"Send message request failed":"Не удалось отправить запрос на отправку сообщения","Sending...":"Отправка...","Slow Mode ON":"Медленный режим включен","Some of the files will not be accepted":"
|
|
5792
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel$1="Отмена";var Close$1="Закрыть";var Delete$1="Удалить";var Delivered$1="Отправлено";var Flag$1="Пожаловаться";var Menu$1="Меню";var Mute$1="Отключить уведомления";var New$1="Новые";var Pin$1="Штырь";var Reply$1="Отвечать";var Search$1="Поиск";var Send$1="Отправить";var Shuffle$1="Перемешать";var Thread$2="Ветка";var Unmute$1="Включить уведомления";var Unpin$1="Открепить";var live$1="В прямом эфире";var replyCount_few="{{ count }} ответов";var replyCount_many="{{ count }} ответов";var replyCount_one$1="1 ответ";var replyCount_other$1="{{ count }} ответов";var searchResultsCount_few="{{ count }} результата";var searchResultsCount_many="{{ count }} результатов";var searchResultsCount_one$1="1 результат";var searchResultsCount_other$1="{{ count }} результатов";var ruTranslations = {"Attach files":"Прикрепить файлы",Cancel:Cancel$1,"Channel Missing":"Канал не найден",Close:Close$1,"Close emoji picker":"Закрыть окно выбора смайлов","Commands matching":"Соответствие команд","Connection failure, reconnecting now...":"Ошибка соединения, переподключение...",Delete:Delete$1,Delivered:Delivered$1,"Drag your files here":"Перетащите ваши файлы сюда","Drag your files here to add to your post":"Перетащите ваши файлы сюда, чтобы добавить их в ваш пост","Edit Message":"Редактировать сообщение","Edit message request failed":"Не удалось изменить запрос сообщения","Emoji matching":"Соответствие эмодзи","Empty message...":"Пустое сообщение...","Error adding flag":"Ошибка добавления флага","Error connecting to chat, refresh the page to try again.":"Ошибка подключения к чату, обновите страницу чтобы попробовать снова.","Error deleting message":"Ошибка при удалении сообщения","Error muting a user ...":"Ошибка отключения уведомлений от пользователя...","Error pinning message":"Сообщение об ошибке при закреплении","Error removing message pin":"Ошибка при удалении булавки сообщения","Error unmuting a user ...":"Ошибка включения уведомлений...","Error uploading file":"Ошибка при загрузке файла","Error uploading image":"Ошибка загрузки изображения","Error · Unsent":"Ошибка · Не отправлено","Error: {{ errorMessage }}":"Ошибка: {{ errorMessage }}",Flag:Flag$1,"Latest Messages":"Последние сообщения","Load more":"Загрузить больше",Menu:Menu$1,"Message Failed · Click to try again":"Ошибка отправки сообщения · Нажмите чтобы повторить","Message Failed · Unauthorized":"Ошибка отправки сообщения · Неавторизованный","Message deleted":"Сообщение удалено","Message has been successfully flagged":"Жалоба на сообщение была принята","Message pinned":"Сообщение закреплено",Mute:Mute$1,New:New$1,"New Messages!":"Новые сообщения!","No chats here yet…":"Здесь еще нет чатов...","No results found":"результаты не найдены","Nothing yet...":"Пока ничего нет...","Open emoji picker":"Выбрать emoji","People matching":"Соответствующие люди",Pin:Pin$1,"Pinned by":"Закреплено",Reply:Reply$1,"Reply to Message":"Ответить на сообщение",Search:Search$1,"Searching...":"Ищем...",Send:Send$1,"Send message request failed":"Не удалось отправить запрос на отправку сообщения","Sending...":"Отправка...",Shuffle:Shuffle$1,"Slow Mode ON":"Медленный режим включен","Some of the files will not be accepted":"Некоторые файлы не будут приняты","This message was deleted...":"Сообщение было удалено...",Thread:Thread$2,"Type your message":"Ваше сообщение",Unmute:Unmute$1,Unpin:Unpin$1,"Upload type: \"{{ type }}\" is not allowed":"Тип загрузки: \"{{ type }}\" не разрешен","Wait until all attachments have uploaded":"Подождите, пока все вложения загрузятся","You have no channels currently":"У вас нет каналов в данный момент","You've reached the maximum number of files":"Вы достигли максимального количества файлов","ban-command-args":"[@имяпользователя] [текст]","ban-command-description":"Заблокировать пользователя","giphy-command-args":"[текст]","giphy-command-description":"Опубликовать случайную GIF-анимацию в канале",live:live$1,"mute-command-args":"[@имяпользователя]","mute-command-description":"Выключить микрофон у пользователя",replyCount_few:replyCount_few,replyCount_many:replyCount_many,replyCount_one:replyCount_one$1,replyCount_other:replyCount_other$1,searchResultsCount_few:searchResultsCount_few,searchResultsCount_many:searchResultsCount_many,searchResultsCount_one:searchResultsCount_one$1,searchResultsCount_other:searchResultsCount_other$1,"this content could not be displayed":"Этот контент не может быть отображен в данный момент","unban-command-args":"[@имяпользователя]","unban-command-description":"Разблокировать пользователя","unmute-command-args":"[@имяпользователя]","unmute-command-description":"Включить микрофон у пользователя","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} и {{ moreCount }} еще","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }} и {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} и {{ secondUser }}","{{ imageCount }} more":"Ещё {{ imageCount }}","{{ memberCount }} members":"{{ memberCount }} члены","{{ user }} has been muted":"Вы отписались от уведомлений от {{ user }}","{{ user }} has been unmuted":"Уведомления от {{ user }} были включены","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} в сети","🏙 Attachment...":"🏙 Вложение..."};
|
|
6105
5793
|
|
|
6106
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel="İptal";var Close="Kapat";var Delete="Sil";var Delivered="İletildi";var Flag="Bayrak";var Menu="Menü";var Mute="Sessiz";var New="Yeni";var Pin="Toplu iğne";var Reply="Cevapla";var Search="Arama";var Send="Gönder";var Thread$1="Konu";var Unmute="Sesini aç";var Unpin="Sabitlemeyi kaldır";var live="canlı";var replyCount_one="1 cevap";var replyCount_other="{{ count }} cevaplar";var searchResultsCount_one="1 sonuç";var searchResultsCount_other="{{ count }} sonuç";var trTranslations = {"Attach files":"Dosya ekle",Cancel:Cancel,"Channel Missing":"Kanal bulunamıyor",Close:Close,"Close emoji picker":"Emoji seçiciyi kapat","Commands matching":"Eşleşen komutlar","Connection failure, reconnecting now...":"Bağlantı hatası, tekrar bağlanılıyor...",Delete:Delete,Delivered:Delivered,"Drag your files here":"Drag your files here","Edit Message":"Mesajı Düzenle","Edit message request failed":"Mesaj düzenleme isteği başarısız oldu","Emoji matching":"Emoji eşleştirme","Empty message...":"Boş mesaj...","Error adding flag":"Bayrak eklenirken hata oluştu","Error connecting to chat, refresh the page to try again.":"Bağlantı hatası, sayfayı yenileyip tekrar deneyin.","Error deleting message":"Mesaj silinirken hata oluştu","Error muting a user ...":"Kullanıcıyı sessize alırken hata oluştu ...","Error pinning message":"Mesaj sabitlenirken hata oluştu","Error removing message pin":"Mesaj PIN'i kaldırılırken hata oluştu","Error unmuting a user ...":"Kullanıcının sesini açarken hata oluştu ...","Error uploading file":"Dosya yüklenirken hata oluştu","Error uploading image":"Resmi yüklerken hata","Error · Unsent":"Hata · Gönderilemedi","Error: {{ errorMessage }}":"Hata: {{ errorMessage }}",Flag:Flag,"Latest Messages":"Son Mesajlar",Menu:Menu,"Message Failed · Click to try again":"Mesaj Başarısız · Tekrar denemek için tıklayın","Message Failed · Unauthorized":"Mesaj Başarısız · Yetkisiz","Message deleted":"Mesaj silindi","Message has been successfully flagged":"Mesaj başarıyla bayraklandı","Message pinned":"Mesaj sabitlendi",Mute:Mute,New:New,"New Messages!":"Yeni Mesajlar!","No chats here yet…":"Henüz burada sohbet yok...","No results found":"Sonuç bulunamadı","Nothing yet...":"Şimdilik hiçbir şey...","Open emoji picker":"Emoji klavyesini aç","People matching":"Eşleşen kişiler",Pin:Pin,"Pinned by":"Sabitleyen",Reply:Reply,"Reply to Message":"Mesajı Cevapla",Search:Search,"Searching...":"Aranıyor...",Send:Send,"Send message request failed":"Mesaj gönderme isteği başarısız oldu","Sending...":"Gönderiliyor...","Slow Mode ON":"Yavaş Mod Açık","Some of the files will not be accepted":"
|
|
5794
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Cancel="İptal";var Close="Kapat";var Delete="Sil";var Delivered="İletildi";var Flag="Bayrak";var Menu="Menü";var Mute="Sessiz";var New="Yeni";var Pin="Toplu iğne";var Reply="Cevapla";var Search="Arama";var Send="Gönder";var Shuffle="Karıştır";var Thread$1="Konu";var Unmute="Sesini aç";var Unpin="Sabitlemeyi kaldır";var live="canlı";var replyCount_one="1 cevap";var replyCount_other="{{ count }} cevaplar";var searchResultsCount_one="1 sonuç";var searchResultsCount_other="{{ count }} sonuç";var trTranslations = {"Attach files":"Dosya ekle",Cancel:Cancel,"Channel Missing":"Kanal bulunamıyor",Close:Close,"Close emoji picker":"Emoji seçiciyi kapat","Commands matching":"Eşleşen komutlar","Connection failure, reconnecting now...":"Bağlantı hatası, tekrar bağlanılıyor...",Delete:Delete,Delivered:Delivered,"Drag your files here":"Dosyalarınızı buraya sürükleyin","Drag your files here to add to your post":"Gönderinize eklemek için dosyalarınızı buraya sürükleyin","Edit Message":"Mesajı Düzenle","Edit message request failed":"Mesaj düzenleme isteği başarısız oldu","Emoji matching":"Emoji eşleştirme","Empty message...":"Boş mesaj...","Error adding flag":"Bayrak eklenirken hata oluştu","Error connecting to chat, refresh the page to try again.":"Bağlantı hatası, sayfayı yenileyip tekrar deneyin.","Error deleting message":"Mesaj silinirken hata oluştu","Error muting a user ...":"Kullanıcıyı sessize alırken hata oluştu ...","Error pinning message":"Mesaj sabitlenirken hata oluştu","Error removing message pin":"Mesaj PIN'i kaldırılırken hata oluştu","Error unmuting a user ...":"Kullanıcının sesini açarken hata oluştu ...","Error uploading file":"Dosya yüklenirken hata oluştu","Error uploading image":"Resmi yüklerken hata","Error · Unsent":"Hata · Gönderilemedi","Error: {{ errorMessage }}":"Hata: {{ errorMessage }}",Flag:Flag,"Latest Messages":"Son Mesajlar","Load more":"Daha fazla yükle",Menu:Menu,"Message Failed · Click to try again":"Mesaj Başarısız · Tekrar denemek için tıklayın","Message Failed · Unauthorized":"Mesaj Başarısız · Yetkisiz","Message deleted":"Mesaj silindi","Message has been successfully flagged":"Mesaj başarıyla bayraklandı","Message pinned":"Mesaj sabitlendi",Mute:Mute,New:New,"New Messages!":"Yeni Mesajlar!","No chats here yet…":"Henüz burada sohbet yok...","No results found":"Sonuç bulunamadı","Nothing yet...":"Şimdilik hiçbir şey...","Open emoji picker":"Emoji klavyesini aç","People matching":"Eşleşen kişiler",Pin:Pin,"Pinned by":"Sabitleyen",Reply:Reply,"Reply to Message":"Mesajı Cevapla",Search:Search,"Searching...":"Aranıyor...",Send:Send,"Send message request failed":"Mesaj gönderme isteği başarısız oldu","Sending...":"Gönderiliyor...",Shuffle:Shuffle,"Slow Mode ON":"Yavaş Mod Açık","Some of the files will not be accepted":"Bazı dosyalar kabul edilmeyecektir","This message was deleted...":"Bu mesaj silindi",Thread:Thread$1,"Type your message":"Mesajınızı yazın",Unmute:Unmute,Unpin:Unpin,"Upload type: \"{{ type }}\" is not allowed":"Yükleme türü: \"{{ type }}\" izin verilmez","Wait until all attachments have uploaded":"Tüm ekler yüklenene kadar bekleyin","You have no channels currently":"Henüz kanalınız yok","You've reached the maximum number of files":"Maksimum dosya sayısına ulaştınız","ban-command-args":"[@kullanıcıadı] [metin]","ban-command-description":"Bir kullanıcıyı yasakla","giphy-command-args":"[metin]","giphy-command-description":"Rastgele bir gif'i kanala gönder",live:live,"mute-command-args":"[@kullanıcıadı]","mute-command-description":"Bir kullanıcının sesini kapat",replyCount_one:replyCount_one,replyCount_other:replyCount_other,searchResultsCount_one:searchResultsCount_one,searchResultsCount_other:searchResultsCount_other,"this content could not be displayed":"bu içerik gösterilemiyor","unban-command-args":"[@kullanıcıadı]","unban-command-description":"Bir kullanıcının yasağını kaldır","unmute-command-args":"[@kullanıcıadı]","unmute-command-description":"Bir kullanıcının sesini aç","{{ commaSeparatedUsers }} and {{ moreCount }} more":"{{ commaSeparatedUsers }} ve {{ moreCount }} daha","{{ commaSeparatedUsers }}, and {{ lastUser }}":"{{ commaSeparatedUsers }}, ve {{ lastUser }}","{{ firstUser }} and {{ secondUser }}":"{{ firstUser }} ve {{ secondUser }}","{{ imageCount }} more":"{{ imageCount }} adet daha","{{ memberCount }} members":"{{ memberCount }} üyeler","{{ user }} has been muted":"{{ user }} sessize alındı","{{ user }} has been unmuted":"{{ user }} sesi açıldı","{{ user }} is typing...":"{{ user }} is typing...","{{ users }} and more are typing...":"{{ users }} and more are typing...","{{ users }} and {{ user }} are typing...":"{{ users }} and {{ user }} are typing...","{{ watcherCount }} online":"{{ watcherCount }} çevrimiçi","🏙 Attachment...":"🏙 Ek..."};
|
|
6107
5795
|
|
|
6108
5796
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};
|
|
6109
5797
|
|
|
@@ -9800,6 +9488,335 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
9800
9488
|
|
|
9801
9489
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};
|
|
9802
9490
|
|
|
9491
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var UnMemoizedAttachmentActions = function (props) {
|
|
9492
|
+
var actionHandler = props.actionHandler, actions = props.actions, id = props.id, text = props.text;
|
|
9493
|
+
var t = useTranslationContext('UnMemoizedAttachmentActions').t;
|
|
9494
|
+
var handleActionClick = function (event, name, value) { return actionHandler === null || actionHandler === void 0 ? void 0 : actionHandler(name, value, event); };
|
|
9495
|
+
return (React__default["default"].createElement("div", { className: 'str-chat__message-attachment-actions' },
|
|
9496
|
+
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-actions-form' },
|
|
9497
|
+
React__default["default"].createElement("span", null, text),
|
|
9498
|
+
actions.map(function (action) { return (React__default["default"].createElement("button", { className: "str-chat__message-attachment-actions-button str-chat__message-attachment-actions-button--".concat(action.style), "data-testid": "".concat(action.name), "data-value": action.value, key: "".concat(id, "-").concat(action.value), onClick: function (event) { return handleActionClick(event, action.name, action.value); } }, action.text ? t(action.text) : null)); }))));
|
|
9499
|
+
};
|
|
9500
|
+
/**
|
|
9501
|
+
* A component for rendering the actions you can take on an attachment.
|
|
9502
|
+
*/
|
|
9503
|
+
var AttachmentActions = React__default["default"].memo(UnMemoizedAttachmentActions);
|
|
9504
|
+
|
|
9505
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var DownloadIcon$1 = function (_a) {
|
|
9506
|
+
var className = _a.className;
|
|
9507
|
+
return (React__default["default"].createElement("svg", { className: className, "data-testid": 'download', fill: 'none', height: '24', viewBox: '0 0 24 24', width: '24', xmlns: 'http://www.w3.org/2000/svg' },
|
|
9508
|
+
React__default["default"].createElement("path", { d: 'M19.35 10.04C18.67 6.59 15.64 4 12 4C9.11 4 6.6 5.64 5.35 8.04C2.34 8.36 0 10.91 0 14C0 17.31 2.69 20 6 20H19C21.76 20 24 17.76 24 15C24 12.36 21.95 10.22 19.35 10.04ZM19 18H6C3.79 18 2 16.21 2 14C2 11.95 3.53 10.24 5.56 10.03L6.63 9.92L7.13 8.97C8.08 7.14 9.94 6 12 6C14.62 6 16.88 7.86 17.39 10.43L17.69 11.93L19.22 12.04C20.78 12.14 22 13.45 22 15C22 16.65 20.65 18 19 18ZM13.45 10H10.55V13H8L12 17L16 13H13.45V10Z', fill: 'black' })));
|
|
9509
|
+
};
|
|
9510
|
+
var PlayTriangleIcon = function () { return (React__default["default"].createElement("svg", { fill: 'none', viewBox: '0 0 12 14', xmlns: 'http://www.w3.org/2000/svg' },
|
|
9511
|
+
React__default["default"].createElement("path", { d: 'M0.5 0V14L11.5 7L0.5 0Z', fill: '#080707' }))); };
|
|
9512
|
+
var PauseIcon = function () { return (React__default["default"].createElement("svg", { fill: 'none', viewBox: '0 0 12 14', xmlns: 'http://www.w3.org/2000/svg' },
|
|
9513
|
+
React__default["default"].createElement("path", { d: 'M0 14H4V0H0V14ZM8 0V14H12V0H8Z', fill: '#080707' }))); };
|
|
9514
|
+
|
|
9515
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};
|
|
9516
|
+
const BYTE_UNITS = [
|
|
9517
|
+
'B',
|
|
9518
|
+
'kB',
|
|
9519
|
+
'MB',
|
|
9520
|
+
'GB',
|
|
9521
|
+
'TB',
|
|
9522
|
+
'PB',
|
|
9523
|
+
'EB',
|
|
9524
|
+
'ZB',
|
|
9525
|
+
'YB'
|
|
9526
|
+
];
|
|
9527
|
+
|
|
9528
|
+
const BIBYTE_UNITS = [
|
|
9529
|
+
'B',
|
|
9530
|
+
'kiB',
|
|
9531
|
+
'MiB',
|
|
9532
|
+
'GiB',
|
|
9533
|
+
'TiB',
|
|
9534
|
+
'PiB',
|
|
9535
|
+
'EiB',
|
|
9536
|
+
'ZiB',
|
|
9537
|
+
'YiB'
|
|
9538
|
+
];
|
|
9539
|
+
|
|
9540
|
+
const BIT_UNITS = [
|
|
9541
|
+
'b',
|
|
9542
|
+
'kbit',
|
|
9543
|
+
'Mbit',
|
|
9544
|
+
'Gbit',
|
|
9545
|
+
'Tbit',
|
|
9546
|
+
'Pbit',
|
|
9547
|
+
'Ebit',
|
|
9548
|
+
'Zbit',
|
|
9549
|
+
'Ybit'
|
|
9550
|
+
];
|
|
9551
|
+
|
|
9552
|
+
const BIBIT_UNITS = [
|
|
9553
|
+
'b',
|
|
9554
|
+
'kibit',
|
|
9555
|
+
'Mibit',
|
|
9556
|
+
'Gibit',
|
|
9557
|
+
'Tibit',
|
|
9558
|
+
'Pibit',
|
|
9559
|
+
'Eibit',
|
|
9560
|
+
'Zibit',
|
|
9561
|
+
'Yibit'
|
|
9562
|
+
];
|
|
9563
|
+
|
|
9564
|
+
/*
|
|
9565
|
+
Formats the given number using `Number#toLocaleString`.
|
|
9566
|
+
- If locale is a string, the value is expected to be a locale-key (for example: `de`).
|
|
9567
|
+
- If locale is true, the system default locale is used for translation.
|
|
9568
|
+
- If no value for locale is specified, the number is returned unmodified.
|
|
9569
|
+
*/
|
|
9570
|
+
const toLocaleString = (number, locale, options) => {
|
|
9571
|
+
let result = number;
|
|
9572
|
+
if (typeof locale === 'string' || Array.isArray(locale)) {
|
|
9573
|
+
result = number.toLocaleString(locale, options);
|
|
9574
|
+
} else if (locale === true || options !== undefined) {
|
|
9575
|
+
result = number.toLocaleString(undefined, options);
|
|
9576
|
+
}
|
|
9577
|
+
|
|
9578
|
+
return result;
|
|
9579
|
+
};
|
|
9580
|
+
|
|
9581
|
+
var prettyBytes = (number, options) => {
|
|
9582
|
+
if (!Number.isFinite(number)) {
|
|
9583
|
+
throw new TypeError(`Expected a finite number, got ${typeof number}: ${number}`);
|
|
9584
|
+
}
|
|
9585
|
+
|
|
9586
|
+
options = Object.assign({bits: false, binary: false}, options);
|
|
9587
|
+
|
|
9588
|
+
const UNITS = options.bits ?
|
|
9589
|
+
(options.binary ? BIBIT_UNITS : BIT_UNITS) :
|
|
9590
|
+
(options.binary ? BIBYTE_UNITS : BYTE_UNITS);
|
|
9591
|
+
|
|
9592
|
+
if (options.signed && number === 0) {
|
|
9593
|
+
return ` 0 ${UNITS[0]}`;
|
|
9594
|
+
}
|
|
9595
|
+
|
|
9596
|
+
const isNegative = number < 0;
|
|
9597
|
+
const prefix = isNegative ? '-' : (options.signed ? '+' : '');
|
|
9598
|
+
|
|
9599
|
+
if (isNegative) {
|
|
9600
|
+
number = -number;
|
|
9601
|
+
}
|
|
9602
|
+
|
|
9603
|
+
let localeOptions;
|
|
9604
|
+
|
|
9605
|
+
if (options.minimumFractionDigits !== undefined) {
|
|
9606
|
+
localeOptions = {minimumFractionDigits: options.minimumFractionDigits};
|
|
9607
|
+
}
|
|
9608
|
+
|
|
9609
|
+
if (options.maximumFractionDigits !== undefined) {
|
|
9610
|
+
localeOptions = Object.assign({maximumFractionDigits: options.maximumFractionDigits}, localeOptions);
|
|
9611
|
+
}
|
|
9612
|
+
|
|
9613
|
+
if (number < 1) {
|
|
9614
|
+
const numberString = toLocaleString(number, options.locale, localeOptions);
|
|
9615
|
+
return prefix + numberString + ' ' + UNITS[0];
|
|
9616
|
+
}
|
|
9617
|
+
|
|
9618
|
+
const exponent = Math.min(Math.floor(options.binary ? Math.log(number) / Math.log(1024) : Math.log10(number) / 3), UNITS.length - 1);
|
|
9619
|
+
// eslint-disable-next-line unicorn/prefer-exponentiation-operator
|
|
9620
|
+
number /= Math.pow(options.binary ? 1024 : 1000, exponent);
|
|
9621
|
+
|
|
9622
|
+
if (!localeOptions) {
|
|
9623
|
+
number = number.toPrecision(3);
|
|
9624
|
+
}
|
|
9625
|
+
|
|
9626
|
+
const numberString = toLocaleString(Number(number), options.locale, localeOptions);
|
|
9627
|
+
|
|
9628
|
+
const unit = UNITS[exponent];
|
|
9629
|
+
|
|
9630
|
+
return prefix + numberString + ' ' + unit;
|
|
9631
|
+
};
|
|
9632
|
+
|
|
9633
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var FileSizeIndicator = function (_a) {
|
|
9634
|
+
var fileSize = _a.fileSize;
|
|
9635
|
+
if (!(fileSize && Number.isFinite(Number(fileSize))))
|
|
9636
|
+
return null;
|
|
9637
|
+
return (React__default["default"].createElement("span", { className: 'str-chat__message-attachment-file--item-size' }, prettyBytes(fileSize)));
|
|
9638
|
+
};
|
|
9639
|
+
|
|
9640
|
+
var dist$2 = {};
|
|
9641
|
+
|
|
9642
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};
|
|
9643
|
+
(function (exports) {
|
|
9644
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9645
|
+
exports.sanitizeUrl = exports.BLANK_URL = void 0;
|
|
9646
|
+
var invalidProtocolRegex = /^([^\w]*)(javascript|data|vbscript)/im;
|
|
9647
|
+
var htmlEntitiesRegex = /&#(\w+)(^\w|;)?/g;
|
|
9648
|
+
var htmlCtrlEntityRegex = /&(newline|tab);/gi;
|
|
9649
|
+
var ctrlCharactersRegex = /[\u0000-\u001F\u007F-\u009F\u2000-\u200D\uFEFF]/gim;
|
|
9650
|
+
var urlSchemeRegex = /^.+(:|:)/gim;
|
|
9651
|
+
var relativeFirstCharacters = [".", "/"];
|
|
9652
|
+
exports.BLANK_URL = "about:blank";
|
|
9653
|
+
function isRelativeUrlWithoutProtocol(url) {
|
|
9654
|
+
return relativeFirstCharacters.indexOf(url[0]) > -1;
|
|
9655
|
+
}
|
|
9656
|
+
// adapted from https://stackoverflow.com/a/29824550/2601552
|
|
9657
|
+
function decodeHtmlCharacters(str) {
|
|
9658
|
+
var removedNullByte = str.replace(ctrlCharactersRegex, "");
|
|
9659
|
+
return removedNullByte.replace(htmlEntitiesRegex, function (match, dec) {
|
|
9660
|
+
return String.fromCharCode(dec);
|
|
9661
|
+
});
|
|
9662
|
+
}
|
|
9663
|
+
function sanitizeUrl(url) {
|
|
9664
|
+
if (!url) {
|
|
9665
|
+
return exports.BLANK_URL;
|
|
9666
|
+
}
|
|
9667
|
+
var sanitizedUrl = decodeHtmlCharacters(url)
|
|
9668
|
+
.replace(htmlCtrlEntityRegex, "")
|
|
9669
|
+
.replace(ctrlCharactersRegex, "")
|
|
9670
|
+
.trim();
|
|
9671
|
+
if (!sanitizedUrl) {
|
|
9672
|
+
return exports.BLANK_URL;
|
|
9673
|
+
}
|
|
9674
|
+
if (isRelativeUrlWithoutProtocol(sanitizedUrl)) {
|
|
9675
|
+
return sanitizedUrl;
|
|
9676
|
+
}
|
|
9677
|
+
var urlSchemeParseResults = sanitizedUrl.match(urlSchemeRegex);
|
|
9678
|
+
if (!urlSchemeParseResults) {
|
|
9679
|
+
return sanitizedUrl;
|
|
9680
|
+
}
|
|
9681
|
+
var urlScheme = urlSchemeParseResults[0];
|
|
9682
|
+
if (invalidProtocolRegex.test(urlScheme)) {
|
|
9683
|
+
return exports.BLANK_URL;
|
|
9684
|
+
}
|
|
9685
|
+
return sanitizedUrl;
|
|
9686
|
+
}
|
|
9687
|
+
exports.sanitizeUrl = sanitizeUrl;
|
|
9688
|
+
} (dist$2));
|
|
9689
|
+
|
|
9690
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var UnMemoizedSafeAnchor = function (props) {
|
|
9691
|
+
var children = props.children, className = props.className, download = props.download, href = props.href, rel = props.rel, target = props.target;
|
|
9692
|
+
if (!href)
|
|
9693
|
+
return null;
|
|
9694
|
+
var sanitized = dist$2.sanitizeUrl(href);
|
|
9695
|
+
return (React__default["default"].createElement("a", { "aria-label": 'Attachment', className: className, download: download, href: sanitized, rel: rel, target: target }, children));
|
|
9696
|
+
};
|
|
9697
|
+
var SafeAnchor = React__default["default"].memo(UnMemoizedSafeAnchor);
|
|
9698
|
+
|
|
9699
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};// export { default as SafeAnchor } from './SafeAnchor';
|
|
9700
|
+
|
|
9701
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var DownloadButton = function (_a) {
|
|
9702
|
+
var assetUrl = _a.assetUrl;
|
|
9703
|
+
return (React__default["default"].createElement(SafeAnchor, { className: 'str-chat__message-attachment-file--item-download', download: true, href: assetUrl, target: '_blank' },
|
|
9704
|
+
React__default["default"].createElement(DownloadIcon$1, { className: 'str-chat__message-attachment-download-icon' })));
|
|
9705
|
+
};
|
|
9706
|
+
|
|
9707
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var PROGRESS_UPDATE_INTERVAL = 100;
|
|
9708
|
+
var useAudioController = function () {
|
|
9709
|
+
var _a = React$2.useState(false), isPlaying = _a[0], setIsPlaying = _a[1];
|
|
9710
|
+
var _b = React$2.useState(0), progress = _b[0], setProgress = _b[1];
|
|
9711
|
+
var audioRef = React$2.useRef(null);
|
|
9712
|
+
var togglePlay = React$2.useCallback(function () {
|
|
9713
|
+
setIsPlaying(function (playing) { return !playing; });
|
|
9714
|
+
}, []);
|
|
9715
|
+
var seek = React$2.useCallback(function (_a) {
|
|
9716
|
+
var clientX = _a.clientX, currentTarget = _a.currentTarget;
|
|
9717
|
+
if (!audioRef.current)
|
|
9718
|
+
return;
|
|
9719
|
+
var _b = currentTarget.getBoundingClientRect(), width = _b.width, x = _b.x;
|
|
9720
|
+
var ratio = (clientX - x) / width;
|
|
9721
|
+
if (!isPlaying)
|
|
9722
|
+
setProgress(ratio * 100);
|
|
9723
|
+
audioRef.current.currentTime = ratio * audioRef.current.duration;
|
|
9724
|
+
}, [isPlaying]);
|
|
9725
|
+
React$2.useEffect(function () {
|
|
9726
|
+
if (!audioRef.current || !isPlaying)
|
|
9727
|
+
return;
|
|
9728
|
+
var interval = window.setInterval(function () {
|
|
9729
|
+
if (!audioRef.current)
|
|
9730
|
+
return;
|
|
9731
|
+
var _a = audioRef.current, currentTime = _a.currentTime, duration = _a.duration;
|
|
9732
|
+
setProgress((currentTime / duration) * 100);
|
|
9733
|
+
if (currentTime === duration)
|
|
9734
|
+
setIsPlaying(false);
|
|
9735
|
+
}, PROGRESS_UPDATE_INTERVAL);
|
|
9736
|
+
audioRef.current.play();
|
|
9737
|
+
return function () {
|
|
9738
|
+
var _a;
|
|
9739
|
+
(_a = audioRef.current) === null || _a === void 0 ? void 0 : _a.pause();
|
|
9740
|
+
window.clearInterval(interval);
|
|
9741
|
+
};
|
|
9742
|
+
}, [isPlaying]);
|
|
9743
|
+
return {
|
|
9744
|
+
audioRef: audioRef,
|
|
9745
|
+
isPlaying: isPlaying,
|
|
9746
|
+
progress: progress,
|
|
9747
|
+
seek: seek,
|
|
9748
|
+
togglePlay: togglePlay,
|
|
9749
|
+
};
|
|
9750
|
+
};
|
|
9751
|
+
|
|
9752
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var AudioV1 = function (_a) {
|
|
9753
|
+
var og = _a.og;
|
|
9754
|
+
var asset_url = og.asset_url, description = og.description, image_url = og.image_url, text = og.text, title = og.title;
|
|
9755
|
+
var _b = useAudioController(), audioRef = _b.audioRef, isPlaying = _b.isPlaying, progress = _b.progress, togglePlay = _b.togglePlay;
|
|
9756
|
+
return (React__default["default"].createElement("div", { className: 'str-chat__audio' },
|
|
9757
|
+
React__default["default"].createElement("div", { className: 'str-chat__audio__wrapper' },
|
|
9758
|
+
React__default["default"].createElement("audio", { ref: audioRef },
|
|
9759
|
+
React__default["default"].createElement("source", { "data-testid": 'audio-source', src: asset_url, type: 'audio/mp3' })),
|
|
9760
|
+
React__default["default"].createElement("div", { className: 'str-chat__audio__image' },
|
|
9761
|
+
React__default["default"].createElement("div", { className: 'str-chat__audio__image--overlay' }, !isPlaying ? (React__default["default"].createElement("button", { className: 'str-chat__audio__image--button', "data-testid": 'play-audio', onClick: togglePlay },
|
|
9762
|
+
React__default["default"].createElement("svg", { height: '40', viewBox: '0 0 64 64', width: '40', xmlns: 'http://www.w3.org/2000/svg' },
|
|
9763
|
+
React__default["default"].createElement("path", { d: 'M32 58c14.36 0 26-11.64 26-26S46.36 6 32 6 6 17.64 6 32s11.64 26 26 26zm0 6C14.327 64 0 49.673 0 32 0 14.327 14.327 0 32 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32zm13.237-28.412L26.135 45.625a3.27 3.27 0 0 1-4.426-1.4 3.319 3.319 0 0 1-.372-1.47L21 23.36c-.032-1.823 1.41-3.327 3.222-3.358a3.263 3.263 0 0 1 1.473.322l19.438 9.36a3.311 3.311 0 0 1 .103 5.905z', fillRule: 'nonzero' })))) : (React__default["default"].createElement("button", { className: 'str-chat__audio__image--button', "data-testid": 'pause-audio', onClick: togglePlay },
|
|
9764
|
+
React__default["default"].createElement("svg", { height: '40', viewBox: '0 0 64 64', width: '40', xmlns: 'http://www.w3.org/2000/svg' },
|
|
9765
|
+
React__default["default"].createElement("path", { d: 'M32 58.215c14.478 0 26.215-11.737 26.215-26.215S46.478 5.785 32 5.785 5.785 17.522 5.785 32 17.522 58.215 32 58.215zM32 64C14.327 64 0 49.673 0 32 0 14.327 14.327 0 32 0c17.673 0 32 14.327 32 32 0 17.673-14.327 32-32 32zm-7.412-45.56h2.892a2.17 2.17 0 0 1 2.17 2.17v23.865a2.17 2.17 0 0 1-2.17 2.17h-2.892a2.17 2.17 0 0 1-2.17-2.17V20.61a2.17 2.17 0 0 1 2.17-2.17zm12.293 0h2.893a2.17 2.17 0 0 1 2.17 2.17v23.865a2.17 2.17 0 0 1-2.17 2.17h-2.893a2.17 2.17 0 0 1-2.17-2.17V20.61a2.17 2.17 0 0 1 2.17-2.17z', fillRule: 'nonzero' }))))),
|
|
9766
|
+
image_url && React__default["default"].createElement("img", { alt: "".concat(description), src: image_url })),
|
|
9767
|
+
React__default["default"].createElement("div", { className: 'str-chat__audio__content' },
|
|
9768
|
+
React__default["default"].createElement("span", { className: 'str-chat__audio__content--title' },
|
|
9769
|
+
React__default["default"].createElement("strong", null, title)),
|
|
9770
|
+
React__default["default"].createElement("span", { className: 'str-chat__audio__content--subtitle' }, text),
|
|
9771
|
+
React__default["default"].createElement("div", { className: 'str-chat__audio__content--progress' },
|
|
9772
|
+
React__default["default"].createElement("div", { "data-progress": progress, "data-testid": 'audio-progress', role: 'progressbar', style: { width: "".concat(progress, "%") } }))))));
|
|
9773
|
+
};
|
|
9774
|
+
var PlayButton = function (_a) {
|
|
9775
|
+
var isPlaying = _a.isPlaying, onClick = _a.onClick;
|
|
9776
|
+
return (React__default["default"].createElement("button", { className: 'str-chat__message-attachment-audio-widget--play-button', "data-testid": isPlaying ? 'pause-audio' : 'play-audio', onClick: onClick }, isPlaying ? React__default["default"].createElement(PauseIcon, null) : React__default["default"].createElement(PlayTriangleIcon, null)));
|
|
9777
|
+
};
|
|
9778
|
+
var ProgressBar = function (_a) {
|
|
9779
|
+
var onClick = _a.onClick, progress = _a.progress;
|
|
9780
|
+
return (React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--progress-track', "data-progress": progress, "data-testid": 'audio-progress', onClick: onClick, role: 'progressbar', style: {
|
|
9781
|
+
background: "linear-gradient(\n\t\t to right, \n\t\t var(--str-chat__primary-color),\n\t\t var(--str-chat__primary-color) ".concat(progress, "%,\n\t\t var(--str-chat__disabled-color) ").concat(progress, "%,\n\t\t var(--str-chat__disabled-color)\n\t )"),
|
|
9782
|
+
} },
|
|
9783
|
+
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--progress-slider', style: { left: "".concat(progress, "px") } })));
|
|
9784
|
+
};
|
|
9785
|
+
var AudioV2 = function (_a) {
|
|
9786
|
+
var og = _a.og;
|
|
9787
|
+
var asset_url = og.asset_url, file_size = og.file_size, title = og.title;
|
|
9788
|
+
var _b = useAudioController(), audioRef = _b.audioRef, isPlaying = _b.isPlaying, progress = _b.progress, seek = _b.seek, togglePlay = _b.togglePlay;
|
|
9789
|
+
if (!asset_url)
|
|
9790
|
+
return null;
|
|
9791
|
+
var dataTestId = 'audio-widget';
|
|
9792
|
+
var rootClassName = 'str-chat__message-attachment-audio-widget';
|
|
9793
|
+
return (React__default["default"].createElement("div", { className: rootClassName, "data-testid": dataTestId },
|
|
9794
|
+
React__default["default"].createElement("audio", { ref: audioRef },
|
|
9795
|
+
React__default["default"].createElement("source", { "data-testid": 'audio-source', src: asset_url, type: 'audio/mp3' })),
|
|
9796
|
+
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--play-controls' },
|
|
9797
|
+
React__default["default"].createElement(PlayButton, { isPlaying: isPlaying, onClick: togglePlay })),
|
|
9798
|
+
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--text' },
|
|
9799
|
+
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--text-first-row' },
|
|
9800
|
+
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--title' }, title),
|
|
9801
|
+
React__default["default"].createElement(DownloadButton, { assetUrl: asset_url })),
|
|
9802
|
+
React__default["default"].createElement("div", { className: 'str-chat__message-attachment-audio-widget--text-second-row' },
|
|
9803
|
+
React__default["default"].createElement(FileSizeIndicator, { fileSize: file_size }),
|
|
9804
|
+
React__default["default"].createElement(ProgressBar, { onClick: seek, progress: progress })))));
|
|
9805
|
+
};
|
|
9806
|
+
var UnMemoizedAudio = function (props) {
|
|
9807
|
+
var themeVersion = useChatContext('Audio').themeVersion;
|
|
9808
|
+
return themeVersion === '1' ? React__default["default"].createElement(AudioV1, __assign({}, props)) : React__default["default"].createElement(AudioV2, __assign({}, props));
|
|
9809
|
+
};
|
|
9810
|
+
/**
|
|
9811
|
+
* Audio attachment with play/pause button and progress bar
|
|
9812
|
+
*/
|
|
9813
|
+
var Audio = React__default["default"].memo(UnMemoizedAudio);
|
|
9814
|
+
|
|
9815
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var CloseIconRound = function () { return (React__default["default"].createElement("svg", { "data-testid": 'close-icon-round', fill: 'none', height: '28', viewBox: '0 0 28 28', width: '28', xmlns: 'http://www.w3.org/2000/svg' },
|
|
9816
|
+
React__default["default"].createElement("rect", { fill: '#72767E', height: '28', rx: '14', width: '28' }),
|
|
9817
|
+
React__default["default"].createElement("circle", { cx: '14', cy: '14', fill: '#72767E', r: '12' }),
|
|
9818
|
+
React__default["default"].createElement("path", { clipRule: 'evenodd', d: 'M28 14C28 21.732 21.732 28 14 28C6.26801 28 0 21.732 0 14C0 6.26801 6.26801 0 14 0C21.732 0 28 6.26801 28 14ZM26 14C26 20.6274 20.6274 26 14 26C7.37258 26 2 20.6274 2 14C2 7.37258 7.37258 2 14 2C20.6274 2 26 7.37258 26 14ZM19.59 7L21 8.41L15.41 14L21 19.59L19.59 21L14 15.41L8.41 21L7 19.59L12.59 14L7 8.41L8.41 7L14 12.59L19.59 7Z', fill: 'white', fillRule: 'evenodd' }))); };
|
|
9819
|
+
|
|
9803
9820
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var Modal = function (_a) {
|
|
9804
9821
|
var children = _a.children, onClose = _a.onClose, open = _a.open;
|
|
9805
9822
|
var t = useTranslationContext('Modal').t;
|
|
@@ -12347,6 +12364,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
12347
12364
|
|
|
12348
12365
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var ImageDropzone = function (_a) {
|
|
12349
12366
|
var _b = _a.accept, acceptedFiles = _b === void 0 ? [] : _b, children = _a.children, disabled = _a.disabled, handleFiles = _a.handleFiles, maxNumberOfFiles = _a.maxNumberOfFiles, multiple = _a.multiple;
|
|
12367
|
+
var t = useTranslationContext('ImageDropzone').t;
|
|
12350
12368
|
var handleDrop = React$2.useCallback(function (accepted) {
|
|
12351
12369
|
if (!handleFiles) {
|
|
12352
12370
|
return;
|
|
@@ -12381,7 +12399,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
12381
12399
|
React__default["default"].createElement("div", { className: 'rfu-dropzone__inner' },
|
|
12382
12400
|
React__default["default"].createElement("svg", { height: '41', viewBox: '0 0 41 41', width: '41', xmlns: 'http://www.w3.org/2000/svg' },
|
|
12383
12401
|
React__default["default"].createElement("path", { d: 'M40.517 28.002V3.997c0-2.197-1.808-3.992-4.005-3.992H12.507a4.004 4.004 0 0 0-3.992 3.993v24.004a4.004 4.004 0 0 0 3.992 3.993h24.005c2.197 0 4.005-1.795 4.005-3.993zm-22.002-7.997l4.062 5.42 5.937-7.423 7.998 10H12.507l6.008-7.997zM.517 8.003V36c0 2.198 1.795 4.005 3.993 4.005h27.997V36H4.51V8.002H.517z', fill: '#000', fillRule: 'nonzero' })),
|
|
12384
|
-
React__default["default"].createElement("p", null,
|
|
12402
|
+
React__default["default"].createElement("p", null, t('Drag your files here to add to your post')))),
|
|
12385
12403
|
children));
|
|
12386
12404
|
};
|
|
12387
12405
|
|
|
@@ -14593,7 +14611,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
14593
14611
|
style: style
|
|
14594
14612
|
}, /*#__PURE__*/React__default["default"].createElement("a", {
|
|
14595
14613
|
href: "",
|
|
14596
|
-
onClick:
|
|
14614
|
+
onClick: handleClick,
|
|
14597
14615
|
onFocus: handleSelect,
|
|
14598
14616
|
onMouseEnter: handleSelect,
|
|
14599
14617
|
ref: innerRef
|
|
@@ -36211,11 +36229,11 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
36211
36229
|
var SuggestionHeader = PropHeader || AutocompleteSuggestionHeader || DefaultSuggestionListHeader;
|
|
36212
36230
|
var _useState = React$2.useState(undefined),
|
|
36213
36231
|
_useState2 = _slicedToArray(_useState, 2),
|
|
36214
|
-
|
|
36215
|
-
|
|
36232
|
+
selectedItemIndex = _useState2[0],
|
|
36233
|
+
setSelectedItemIndex = _useState2[1];
|
|
36216
36234
|
var itemsRef = [];
|
|
36217
36235
|
var isSelected = function isSelected(item) {
|
|
36218
|
-
return
|
|
36236
|
+
return selectedItemIndex === values.findIndex(function (value) {
|
|
36219
36237
|
return getId(value) === getId(item);
|
|
36220
36238
|
});
|
|
36221
36239
|
};
|
|
@@ -36246,32 +36264,30 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
36246
36264
|
}, [modifyText, findItemIndex]);
|
|
36247
36265
|
var selectItem = React$2.useCallback(function (item) {
|
|
36248
36266
|
var index = findItemIndex(item);
|
|
36249
|
-
|
|
36267
|
+
setSelectedItemIndex(index);
|
|
36250
36268
|
}, [findItemIndex]);
|
|
36251
36269
|
var handleKeyDown = React$2.useCallback(function (event) {
|
|
36252
36270
|
if (event.key === 'ArrowUp') {
|
|
36253
|
-
|
|
36271
|
+
setSelectedItemIndex(function (prevSelected) {
|
|
36254
36272
|
if (prevSelected === undefined) return 0;
|
|
36255
|
-
var
|
|
36256
|
-
dropdownScroll(itemsRef[
|
|
36257
|
-
return
|
|
36273
|
+
var newIndex = prevSelected === 0 ? values.length - 1 : prevSelected - 1;
|
|
36274
|
+
dropdownScroll(itemsRef[newIndex]);
|
|
36275
|
+
return newIndex;
|
|
36258
36276
|
});
|
|
36259
36277
|
}
|
|
36260
36278
|
if (event.key === 'ArrowDown') {
|
|
36261
|
-
|
|
36279
|
+
setSelectedItemIndex(function (prevSelected) {
|
|
36262
36280
|
if (prevSelected === undefined) return 0;
|
|
36263
|
-
var
|
|
36264
|
-
dropdownScroll(itemsRef[
|
|
36265
|
-
return
|
|
36281
|
+
var newIndex = prevSelected === values.length - 1 ? 0 : prevSelected + 1;
|
|
36282
|
+
dropdownScroll(itemsRef[newIndex]);
|
|
36283
|
+
return newIndex;
|
|
36266
36284
|
});
|
|
36267
36285
|
}
|
|
36268
|
-
if ((event.key === 'Enter' || event.key === 'Tab') &&
|
|
36269
|
-
handleClick(event);
|
|
36286
|
+
if ((event.key === 'Enter' || event.key === 'Tab') && selectedItemIndex !== undefined) {
|
|
36287
|
+
handleClick(event, values[selectedItemIndex]);
|
|
36270
36288
|
}
|
|
36271
36289
|
return null;
|
|
36272
|
-
}, [
|
|
36273
|
-
);
|
|
36274
|
-
|
|
36290
|
+
}, [selectedItemIndex, values]);
|
|
36275
36291
|
React$2.useEffect(function () {
|
|
36276
36292
|
document.addEventListener('keydown', handleKeyDown, false);
|
|
36277
36293
|
return function () {
|
|
@@ -42494,9 +42510,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
42494
42510
|
})
|
|
42495
42511
|
.map(function (commandData) {
|
|
42496
42512
|
var translatedCommandData = {
|
|
42497
|
-
name:
|
|
42498
|
-
defaultValue: commandData.name,
|
|
42499
|
-
}),
|
|
42513
|
+
name: commandData.name,
|
|
42500
42514
|
};
|
|
42501
42515
|
if (commandData.args)
|
|
42502
42516
|
translatedCommandData.args = t("".concat(commandData.name, "-command-args"), {
|
|
@@ -45071,7 +45085,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
45071
45085
|
};
|
|
45072
45086
|
var ChannelInner = function (props) {
|
|
45073
45087
|
var _a;
|
|
45074
|
-
var acceptedFiles = props.acceptedFiles, activeUnreadHandler = props.activeUnreadHandler, channel = props.channel, children = props.children, doMarkReadRequest = props.doMarkReadRequest, doSendMessageRequest = props.doSendMessageRequest, doUpdateMessageRequest = props.doUpdateMessageRequest, _b = props.dragAndDropWindow, dragAndDropWindow = _b === void 0 ? false : _b, enrichURLForPreviewConfig = props.enrichURLForPreviewConfig, _c = props.initializeOnMount, initializeOnMount = _c === void 0 ? true : _c, _d = props.LoadingErrorIndicator, LoadingErrorIndicator$1 = _d === void 0 ? LoadingErrorIndicator : _d, _e = props.LoadingIndicator, LoadingIndicator = _e === void 0 ? LoadingChannel : _e, maxNumberOfFiles = props.maxNumberOfFiles, _f = props.multipleUploads, multipleUploads = _f === void 0 ? true : _f, onMentionsClick = props.onMentionsClick, onMentionsHover = props.onMentionsHover, _g = props.optionalMessageInputProps, optionalMessageInputProps = _g === void 0 ? {} : _g, skipMessageDataMemoization = props.skipMessageDataMemoization;
|
|
45088
|
+
var acceptedFiles = props.acceptedFiles, activeUnreadHandler = props.activeUnreadHandler, channel = props.channel, children = props.children, doDeleteMessageRequest = props.doDeleteMessageRequest, doMarkReadRequest = props.doMarkReadRequest, doSendMessageRequest = props.doSendMessageRequest, doUpdateMessageRequest = props.doUpdateMessageRequest, _b = props.dragAndDropWindow, dragAndDropWindow = _b === void 0 ? false : _b, enrichURLForPreviewConfig = props.enrichURLForPreviewConfig, _c = props.initializeOnMount, initializeOnMount = _c === void 0 ? true : _c, _d = props.LoadingErrorIndicator, LoadingErrorIndicator$1 = _d === void 0 ? LoadingErrorIndicator : _d, _e = props.LoadingIndicator, LoadingIndicator = _e === void 0 ? LoadingChannel : _e, maxNumberOfFiles = props.maxNumberOfFiles, _f = props.multipleUploads, multipleUploads = _f === void 0 ? true : _f, onMentionsClick = props.onMentionsClick, onMentionsHover = props.onMentionsHover, _g = props.optionalMessageInputProps, optionalMessageInputProps = _g === void 0 ? {} : _g, skipMessageDataMemoization = props.skipMessageDataMemoization;
|
|
45075
45089
|
var _h = useChatContext('Channel'), client = _h.client, customClasses = _h.customClasses, latestMessageDatesByChannels = _h.latestMessageDatesByChannels, mutes = _h.mutes, theme = _h.theme;
|
|
45076
45090
|
var t = useTranslationContext('Channel').t;
|
|
45077
45091
|
var _j = useChannelContainerClasses({ customClasses: customClasses }), channelClass = _j.channelClass, chatClass = _j.chatClass, chatContainerClass = _j.chatContainerClass, windowsEmojiClass = _j.windowsEmojiClass;
|
|
@@ -45408,6 +45422,28 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
45408
45422
|
}
|
|
45409
45423
|
});
|
|
45410
45424
|
}); };
|
|
45425
|
+
var deleteMessage = React$2.useCallback(function (message) { return __awaiter(void 0, void 0, void 0, function () {
|
|
45426
|
+
var deletedMessage, result;
|
|
45427
|
+
return __generator(this, function (_a) {
|
|
45428
|
+
switch (_a.label) {
|
|
45429
|
+
case 0:
|
|
45430
|
+
if (!(message === null || message === void 0 ? void 0 : message.id)) {
|
|
45431
|
+
throw new Error('Cannot delete a message - missing message ID.');
|
|
45432
|
+
}
|
|
45433
|
+
if (!doDeleteMessageRequest) return [3 /*break*/, 2];
|
|
45434
|
+
return [4 /*yield*/, doDeleteMessageRequest(message)];
|
|
45435
|
+
case 1:
|
|
45436
|
+
deletedMessage = _a.sent();
|
|
45437
|
+
return [3 /*break*/, 4];
|
|
45438
|
+
case 2: return [4 /*yield*/, client.deleteMessage(message.id)];
|
|
45439
|
+
case 3:
|
|
45440
|
+
result = _a.sent();
|
|
45441
|
+
deletedMessage = result.message;
|
|
45442
|
+
_a.label = 4;
|
|
45443
|
+
case 4: return [2 /*return*/, deletedMessage];
|
|
45444
|
+
}
|
|
45445
|
+
});
|
|
45446
|
+
}); }, [client, doDeleteMessageRequest]);
|
|
45411
45447
|
var updateMessage = function (updatedMessage) {
|
|
45412
45448
|
// add the message to the local channel state
|
|
45413
45449
|
channel.state.addMessageSorted(updatedMessage, true);
|
|
@@ -45591,6 +45627,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
45591
45627
|
var channelActionContextValue = React$2.useMemo(function () { return ({
|
|
45592
45628
|
addNotification: addNotification,
|
|
45593
45629
|
closeThread: closeThread,
|
|
45630
|
+
deleteMessage: deleteMessage,
|
|
45594
45631
|
dispatch: dispatch,
|
|
45595
45632
|
editMessage: editMessage,
|
|
45596
45633
|
jumpToLatestMessage: jumpToLatestMessage,
|
|
@@ -45609,6 +45646,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
45609
45646
|
updateMessage: updateMessage,
|
|
45610
45647
|
}); }, [
|
|
45611
45648
|
channel.cid,
|
|
45649
|
+
deleteMessage,
|
|
45612
45650
|
enrichURLForPreviewConfig === null || enrichURLForPreviewConfig === void 0 ? void 0 : enrichURLForPreviewConfig.findURLFn,
|
|
45613
45651
|
enrichURLForPreviewConfig === null || enrichURLForPreviewConfig === void 0 ? void 0 : enrichURLForPreviewConfig.onLinkPreviewDismissed,
|
|
45614
45652
|
loadMore,
|
|
@@ -46156,8 +46194,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
46156
46194
|
var MIN_RECOVER_LOADED_CHANNELS_THROTTLE_INTERVAL_IN_MS = 2000;
|
|
46157
46195
|
var usePaginatedChannels = function (client, filters, sort, options, activeChannelHandler, recoveryThrottleIntervalMs) {
|
|
46158
46196
|
if (recoveryThrottleIntervalMs === void 0) { recoveryThrottleIntervalMs = RECOVER_LOADED_CHANNELS_THROTTLE_INTERVAL_IN_MS; }
|
|
46159
|
-
var _a = useChatContext('usePaginatedChannels').channelsQueryState, error =
|
|
46160
|
-
var _b = React$2.useState([]), channels = _b[0], setChannels = _b[1];
|
|
46197
|
+
var _a = useChatContext('usePaginatedChannels'), channels = _a.channels, _b = _a.channelsQueryState, error = _b.error, setError = _b.setError, setQueryInProgress = _b.setQueryInProgress, setChannels = _a.setChannels;
|
|
46161
46198
|
var _c = React$2.useState(true), hasNextPage = _c[0], setHasNextPage = _c[1];
|
|
46162
46199
|
var lastRecoveryTimestamp = React$2.useRef();
|
|
46163
46200
|
var recoveryThrottleInterval = recoveryThrottleIntervalMs < MIN_RECOVER_LOADED_CHANNELS_THROTTLE_INTERVAL_IN_MS
|
|
@@ -46237,6 +46274,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
46237
46274
|
React$2.useEffect(function () {
|
|
46238
46275
|
queryChannels('reload');
|
|
46239
46276
|
}, [filterString, sortString]);
|
|
46277
|
+
// FIXME: state refactor (breaking change) is needed - do not forward `channels` and `setChannel`
|
|
46240
46278
|
return {
|
|
46241
46279
|
channels: channels,
|
|
46242
46280
|
hasNextPage: hasNextPage,
|
|
@@ -46844,13 +46882,15 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
46844
46882
|
};
|
|
46845
46883
|
|
|
46846
46884
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var UnMemoizedLoadMoreButton = function (_a) {
|
|
46847
|
-
var
|
|
46885
|
+
var children = _a.children, isLoading = _a.isLoading, onClick = _a.onClick, refreshing = _a.refreshing;
|
|
46886
|
+
var t = useTranslationContext('UnMemoizedLoadMoreButton').t;
|
|
46887
|
+
var childrenOrDefaultString = children !== null && children !== void 0 ? children : t('Load more');
|
|
46848
46888
|
var loading = typeof isLoading !== 'undefined' ? isLoading : refreshing;
|
|
46849
46889
|
React$2.useEffect(function () {
|
|
46850
46890
|
deprecationAndReplacementWarning([[{ refreshing: refreshing }, { isLoading: isLoading }]], 'LoadMoreButton');
|
|
46851
46891
|
}, []);
|
|
46852
46892
|
return (React__default["default"].createElement("div", { className: 'str-chat__load-more-button' },
|
|
46853
|
-
React__default["default"].createElement("button", { "aria-label": 'Load More Channels', className: 'str-chat__load-more-button__button str-chat__cta-button', "data-testid": 'load-more-button', disabled: loading, onClick: onClick }, loading ? React__default["default"].createElement(LoadingIndicator, null) :
|
|
46893
|
+
React__default["default"].createElement("button", { "aria-label": 'Load More Channels', className: 'str-chat__load-more-button__button str-chat__cta-button', "data-testid": 'load-more-button', disabled: loading, onClick: onClick }, loading ? React__default["default"].createElement(LoadingIndicator, null) : childrenOrDefaultString)));
|
|
46854
46894
|
};
|
|
46855
46895
|
var LoadMoreButton = React__default["default"].memo(UnMemoizedLoadMoreButton);
|
|
46856
46896
|
|
|
@@ -47001,7 +47041,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47001
47041
|
|
|
47002
47042
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};
|
|
47003
47043
|
|
|
47004
|
-
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var version$1 = '11.0.0-rc.
|
|
47044
|
+
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var version$1 = '11.0.0-rc.5';
|
|
47005
47045
|
|
|
47006
47046
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var useChat = function (_a) {
|
|
47007
47047
|
var _b, _c;
|
|
@@ -47011,10 +47051,11 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47011
47051
|
tDateTimeParser: defaultDateTimeParser,
|
|
47012
47052
|
userLanguage: 'en',
|
|
47013
47053
|
}), translators = _e[0], setTranslators = _e[1];
|
|
47014
|
-
var _f = React$2.useState(),
|
|
47015
|
-
var _g = React$2.useState(
|
|
47016
|
-
var _h = React$2.useState(
|
|
47017
|
-
var _j = React$2.useState(
|
|
47054
|
+
var _f = React$2.useState([]), channels = _f[0], setChannels = _f[1];
|
|
47055
|
+
var _g = React$2.useState(), channel = _g[0], setChannel = _g[1];
|
|
47056
|
+
var _h = React$2.useState([]), mutes = _h[0], setMutes = _h[1];
|
|
47057
|
+
var _j = React$2.useState(initialNavOpen), navOpen = _j[0], setNavOpen = _j[1];
|
|
47058
|
+
var _k = React$2.useState({}), latestMessageDatesByChannels = _k[0], setLatestMessageDatesByChannels = _k[1];
|
|
47018
47059
|
var clientMutes = ((_b = client.user) === null || _b === void 0 ? void 0 : _b.mutes) || [];
|
|
47019
47060
|
var closeMobileNav = function () { return setNavOpen(false); };
|
|
47020
47061
|
var openMobileNav = function () { return setTimeout(function () { return setNavOpen(true); }, 100); };
|
|
@@ -47085,6 +47126,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47085
47126
|
}, [(_c = client.user) === null || _c === void 0 ? void 0 : _c.id]);
|
|
47086
47127
|
return {
|
|
47087
47128
|
channel: channel,
|
|
47129
|
+
channels: channels,
|
|
47088
47130
|
closeMobileNav: closeMobileNav,
|
|
47089
47131
|
getAppSettings: getAppSettings,
|
|
47090
47132
|
latestMessageDatesByChannels: latestMessageDatesByChannels,
|
|
@@ -47092,13 +47134,14 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47092
47134
|
navOpen: navOpen,
|
|
47093
47135
|
openMobileNav: openMobileNav,
|
|
47094
47136
|
setActiveChannel: setActiveChannel,
|
|
47137
|
+
setChannels: setChannels,
|
|
47095
47138
|
translators: translators,
|
|
47096
47139
|
};
|
|
47097
47140
|
};
|
|
47098
47141
|
|
|
47099
47142
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var useCreateChatContext = function (value) {
|
|
47100
47143
|
var _a;
|
|
47101
|
-
var channel = value.channel, channelsQueryState = value.channelsQueryState, client = value.client, closeMobileNav = value.closeMobileNav, customClasses = value.customClasses, getAppSettings = value.getAppSettings, latestMessageDatesByChannels = value.latestMessageDatesByChannels, mutes = value.mutes, navOpen = value.navOpen, openMobileNav = value.openMobileNav, setActiveChannel = value.setActiveChannel, theme = value.theme, themeVersion = value.themeVersion, useImageFlagEmojisOnWindows = value.useImageFlagEmojisOnWindows;
|
|
47144
|
+
var channel = value.channel, channels = value.channels, channelsQueryState = value.channelsQueryState, client = value.client, closeMobileNav = value.closeMobileNav, customClasses = value.customClasses, getAppSettings = value.getAppSettings, latestMessageDatesByChannels = value.latestMessageDatesByChannels, mutes = value.mutes, navOpen = value.navOpen, openMobileNav = value.openMobileNav, setActiveChannel = value.setActiveChannel, setChannels = value.setChannels, theme = value.theme, themeVersion = value.themeVersion, useImageFlagEmojisOnWindows = value.useImageFlagEmojisOnWindows;
|
|
47102
47145
|
var channelCid = channel === null || channel === void 0 ? void 0 : channel.cid;
|
|
47103
47146
|
var channelsQueryError = channelsQueryState.error;
|
|
47104
47147
|
var channelsQueryInProgress = channelsQueryState.queryInProgress;
|
|
@@ -47106,6 +47149,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47106
47149
|
var mutedUsersLength = mutes.length;
|
|
47107
47150
|
var chatContext = React$2.useMemo(function () { return ({
|
|
47108
47151
|
channel: channel,
|
|
47152
|
+
channels: channels,
|
|
47109
47153
|
channelsQueryState: channelsQueryState,
|
|
47110
47154
|
client: client,
|
|
47111
47155
|
closeMobileNav: closeMobileNav,
|
|
@@ -47116,6 +47160,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47116
47160
|
navOpen: navOpen,
|
|
47117
47161
|
openMobileNav: openMobileNav,
|
|
47118
47162
|
setActiveChannel: setActiveChannel,
|
|
47163
|
+
setChannels: setChannels,
|
|
47119
47164
|
theme: theme,
|
|
47120
47165
|
themeVersion: themeVersion,
|
|
47121
47166
|
useImageFlagEmojisOnWindows: useImageFlagEmojisOnWindows,
|
|
@@ -47123,10 +47168,12 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47123
47168
|
channelCid,
|
|
47124
47169
|
channelsQueryError,
|
|
47125
47170
|
channelsQueryInProgress,
|
|
47171
|
+
channels,
|
|
47126
47172
|
clientValues,
|
|
47127
47173
|
getAppSettings,
|
|
47128
47174
|
mutedUsersLength,
|
|
47129
47175
|
navOpen,
|
|
47176
|
+
setChannels,
|
|
47130
47177
|
]);
|
|
47131
47178
|
return chatContext;
|
|
47132
47179
|
};
|
|
@@ -47185,7 +47232,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47185
47232
|
*/
|
|
47186
47233
|
var Chat = function (props) {
|
|
47187
47234
|
var children = props.children, client = props.client, customClasses = props.customClasses, customStyles = props.customStyles, _a = props.darkMode, darkMode = _a === void 0 ? false : _a, defaultLanguage = props.defaultLanguage, i18nInstance = props.i18nInstance, _b = props.initialNavOpen, initialNavOpen = _b === void 0 ? true : _b, _c = props.theme, theme = _c === void 0 ? 'messaging light' : _c, _d = props.useImageFlagEmojisOnWindows, useImageFlagEmojisOnWindows = _d === void 0 ? false : _d;
|
|
47188
|
-
var _e = useChat({ client: client, defaultLanguage: defaultLanguage, i18nInstance: i18nInstance, initialNavOpen: initialNavOpen }), channel = _e.channel, closeMobileNav = _e.closeMobileNav, getAppSettings = _e.getAppSettings, latestMessageDatesByChannels = _e.latestMessageDatesByChannels, mutes = _e.mutes, navOpen = _e.navOpen, openMobileNav = _e.openMobileNav, setActiveChannel = _e.setActiveChannel, translators = _e.translators;
|
|
47235
|
+
var _e = useChat({ client: client, defaultLanguage: defaultLanguage, i18nInstance: i18nInstance, initialNavOpen: initialNavOpen }), channel = _e.channel, channels = _e.channels, closeMobileNav = _e.closeMobileNav, getAppSettings = _e.getAppSettings, latestMessageDatesByChannels = _e.latestMessageDatesByChannels, mutes = _e.mutes, navOpen = _e.navOpen, openMobileNav = _e.openMobileNav, setActiveChannel = _e.setActiveChannel, setChannels = _e.setChannels, translators = _e.translators;
|
|
47189
47236
|
var channelsQueryState = useChannelsQueryState();
|
|
47190
47237
|
var themeVersion = typeof window !== 'undefined'
|
|
47191
47238
|
? (window
|
|
@@ -47196,6 +47243,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47196
47243
|
useCustomStyles(darkMode ? darkModeTheme : customStyles);
|
|
47197
47244
|
var chatContextValue = useCreateChatContext({
|
|
47198
47245
|
channel: channel,
|
|
47246
|
+
channels: channels,
|
|
47199
47247
|
channelsQueryState: channelsQueryState,
|
|
47200
47248
|
client: client,
|
|
47201
47249
|
closeMobileNav: closeMobileNav,
|
|
@@ -47206,6 +47254,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47206
47254
|
navOpen: navOpen,
|
|
47207
47255
|
openMobileNav: openMobileNav,
|
|
47208
47256
|
setActiveChannel: setActiveChannel,
|
|
47257
|
+
setChannels: setChannels,
|
|
47209
47258
|
theme: theme,
|
|
47210
47259
|
themeVersion: themeVersion,
|
|
47211
47260
|
useImageFlagEmojisOnWindows: useImageFlagEmojisOnWindows,
|
|
@@ -47419,11 +47468,11 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47419
47468
|
window.StreamChat.StreamChat=StreamChat;window.StreamChat.logChatPromiseExecution=logChatPromiseExecution;window.StreamChat.Channel=Channel;window.ICAL=window.ICAL||{};var useDeleteHandler = function (message, notifications) {
|
|
47420
47469
|
if (notifications === void 0) { notifications = {}; }
|
|
47421
47470
|
var getErrorNotification = notifications.getErrorNotification, notify = notifications.notify;
|
|
47422
|
-
var
|
|
47471
|
+
var _a = useChannelActionContext('useDeleteHandler'), deleteMessage = _a.deleteMessage, updateMessage = _a.updateMessage;
|
|
47423
47472
|
var client = useChatContext('useDeleteHandler').client;
|
|
47424
47473
|
var t = useTranslationContext('useDeleteHandler').t;
|
|
47425
47474
|
return function (event) { return __awaiter(void 0, void 0, void 0, function () {
|
|
47426
|
-
var
|
|
47475
|
+
var deletedMessage, errorMessage;
|
|
47427
47476
|
return __generator(this, function (_a) {
|
|
47428
47477
|
switch (_a.label) {
|
|
47429
47478
|
case 0:
|
|
@@ -47434,10 +47483,10 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
47434
47483
|
_a.label = 1;
|
|
47435
47484
|
case 1:
|
|
47436
47485
|
_a.trys.push([1, 3, , 4]);
|
|
47437
|
-
return [4 /*yield*/,
|
|
47486
|
+
return [4 /*yield*/, deleteMessage(message)];
|
|
47438
47487
|
case 2:
|
|
47439
|
-
|
|
47440
|
-
updateMessage(
|
|
47488
|
+
deletedMessage = _a.sent();
|
|
47489
|
+
updateMessage(deletedMessage);
|
|
47441
47490
|
return [3 /*break*/, 4];
|
|
47442
47491
|
case 3:
|
|
47443
47492
|
_a.sent();
|
|
@@ -48472,7 +48521,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
48472
48521
|
}
|
|
48473
48522
|
}, [highlightedMessageId]);
|
|
48474
48523
|
var showEmptyStateIndicator = elements.length === 0 && !threadList;
|
|
48475
|
-
return (React__default["default"].createElement(
|
|
48524
|
+
return (React__default["default"].createElement(MessageListContextProvider, { value: { listElement: listElement, scrollToBottom: scrollToBottom } },
|
|
48476
48525
|
React__default["default"].createElement(MessageListMainPanel, null,
|
|
48477
48526
|
React__default["default"].createElement("div", { className: "".concat(messageListClass, " ").concat(threadListClass), onScroll: onScroll, ref: setListElement, tabIndex: 0 }, showEmptyStateIndicator ? (React__default["default"].createElement(EmptyStateIndicator$1, { key: 'empty-state-indicator', listType: threadList ? 'thread' : 'message' })) : (React__default["default"].createElement(InfiniteScroll, __assign({ className: 'str-chat__reverse-infinite-scroll str-chat__message-list-scroll', "data-testid": 'reverse-infinite-scroll', hasNextPage: props.hasMoreNewer, hasPreviousPage: props.hasMore, head: props.head, isLoading: props.loadingMore, loader: React__default["default"].createElement("div", { className: 'str-chat__list__loading', key: 'loading-indicator' }, props.loadingMore && React__default["default"].createElement(LoadingIndicator$1, { size: 20 })), loadNextPage: loadMoreNewer, loadPreviousPage: loadMore }, props.internalInfiniteScrollProps, { threshold: loadMoreScrollThreshold }),
|
|
48478
48527
|
React__default["default"].createElement("ul", { className: 'str-chat__ul', ref: setUlElement }, elements),
|
|
@@ -50369,7 +50418,12 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
50369
50418
|
}, [referenceElement, popperElement]);
|
|
50370
50419
|
return (React__default["default"].createElement("div", { className: (_a = props.wrapperClassName) !== null && _a !== void 0 ? _a : wrapperClassName },
|
|
50371
50420
|
displayPicker && (React__default["default"].createElement("div", __assign({ className: (_b = props.emojiPickerContainerClassName) !== null && _b !== void 0 ? _b : emojiPickerContainerClassName, style: styles.popper }, attributes.popper, { ref: setPopperElement }),
|
|
50372
|
-
React__default["default"].createElement(Picker__default["default"], { data:
|
|
50421
|
+
React__default["default"].createElement(Picker__default["default"], { data: function () { return __awaiter(void 0, void 0, void 0, function () { return __generator(this, function (_a) {
|
|
50422
|
+
switch (_a.label) {
|
|
50423
|
+
case 0: return [4 /*yield*/, import('@emoji-mart/data')];
|
|
50424
|
+
case 1: return [2 /*return*/, (_a.sent()).default];
|
|
50425
|
+
}
|
|
50426
|
+
}); }); }, onEmojiSelect: function (e) {
|
|
50373
50427
|
var _a;
|
|
50374
50428
|
// @ts-ignore emoji-mart is missing types
|
|
50375
50429
|
insertText(e.native);
|
|
@@ -74552,6 +74606,8 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
74552
74606
|
exports.MessageInputFlat = MessageInputFlat;
|
|
74553
74607
|
exports.MessageInputSmall = MessageInputSmall;
|
|
74554
74608
|
exports.MessageList = MessageList;
|
|
74609
|
+
exports.MessageListContext = MessageListContext;
|
|
74610
|
+
exports.MessageListContextProvider = MessageListContextProvider;
|
|
74555
74611
|
exports.MessageNotification = MessageNotification;
|
|
74556
74612
|
exports.MessageOptions = MessageOptions;
|
|
74557
74613
|
exports.MessageProvider = MessageProvider;
|
|
@@ -74713,6 +74769,7 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
74713
74769
|
exports.useMessageContext = useMessageContext;
|
|
74714
74770
|
exports.useMessageInputContext = useMessageInputContext;
|
|
74715
74771
|
exports.useMessageInputState = useMessageInputState;
|
|
74772
|
+
exports.useMessageListContext = useMessageListContext;
|
|
74716
74773
|
exports.useMessageListElements = useMessageListElements;
|
|
74717
74774
|
exports.useMessageListScrollManager = useMessageListScrollManager;
|
|
74718
74775
|
exports.useMessageNewListener = useMessageNewListener;
|
|
@@ -74749,5 +74806,5 @@ var StreamChatReact = (function (exports, React$2, streamChat, ReactDOM, data, P
|
|
|
74749
74806
|
|
|
74750
74807
|
return exports;
|
|
74751
74808
|
|
|
74752
|
-
})({}, React, StreamChat, ReactDOM,
|
|
74809
|
+
})({}, React, StreamChat, ReactDOM, Picker);
|
|
74753
74810
|
//# sourceMappingURL=browser.full-bundle.js.map
|