stream-chat-react-native-core 5.30.0 → 5.31.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commonjs/components/Chat/hooks/useAppSettings.js +2 -4
- package/lib/commonjs/components/Chat/hooks/useAppSettings.js.map +1 -1
- package/lib/commonjs/components/MessageInput/FileUploadPreview.js +5 -6
- package/lib/commonjs/components/MessageInput/FileUploadPreview.js.map +1 -1
- package/lib/commonjs/components/MessageInput/MessageInput.js +4 -26
- package/lib/commonjs/components/MessageInput/MessageInput.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +2 -2
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +89 -76
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/utils/utils.js +66 -0
- package/lib/commonjs/contexts/messageInputContext/utils/utils.js.map +1 -0
- package/lib/commonjs/i18n/en.json +2 -2
- package/lib/commonjs/i18n/es.json +64 -64
- package/lib/commonjs/i18n/fr.json +64 -64
- package/lib/commonjs/i18n/he.json +64 -64
- package/lib/commonjs/i18n/hi.json +64 -64
- package/lib/commonjs/i18n/it.json +64 -64
- package/lib/commonjs/i18n/ja.json +64 -64
- package/lib/commonjs/i18n/ko.json +64 -64
- package/lib/commonjs/i18n/nl.json +64 -64
- package/lib/commonjs/i18n/pt-BR.json +64 -64
- package/lib/commonjs/i18n/ru.json +64 -64
- package/lib/commonjs/i18n/tr.json +64 -64
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Chat/hooks/useAppSettings.js +2 -4
- package/lib/module/components/Chat/hooks/useAppSettings.js.map +1 -1
- package/lib/module/components/MessageInput/FileUploadPreview.js +5 -6
- package/lib/module/components/MessageInput/FileUploadPreview.js.map +1 -1
- package/lib/module/components/MessageInput/MessageInput.js +4 -26
- package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +2 -2
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/contexts/messageInputContext/MessageInputContext.js +89 -76
- package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/module/contexts/messageInputContext/utils/utils.js +66 -0
- package/lib/module/contexts/messageInputContext/utils/utils.js.map +1 -0
- package/lib/module/i18n/en.json +2 -2
- package/lib/module/i18n/es.json +64 -64
- package/lib/module/i18n/fr.json +64 -64
- package/lib/module/i18n/he.json +64 -64
- package/lib/module/i18n/hi.json +64 -64
- package/lib/module/i18n/it.json +64 -64
- package/lib/module/i18n/ja.json +64 -64
- package/lib/module/i18n/ko.json +64 -64
- package/lib/module/i18n/nl.json +64 -64
- package/lib/module/i18n/pt-BR.json +64 -64
- package/lib/module/i18n/ru.json +64 -64
- package/lib/module/i18n/tr.json +64 -64
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Chat/hooks/useAppSettings.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/FileUploadPreview.d.ts.map +1 -1
- package/lib/typescript/components/MessageInput/MessageInput.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messageInputContext/utils/utils.d.ts +22 -0
- package/lib/typescript/contexts/messageInputContext/utils/utils.d.ts.map +1 -0
- package/lib/typescript/i18n/en.json +2 -2
- package/lib/typescript/i18n/es.json +64 -64
- package/lib/typescript/i18n/fr.json +64 -64
- package/lib/typescript/i18n/he.json +64 -64
- package/lib/typescript/i18n/hi.json +64 -64
- package/lib/typescript/i18n/it.json +64 -64
- package/lib/typescript/i18n/ja.json +64 -64
- package/lib/typescript/i18n/ko.json +64 -64
- package/lib/typescript/i18n/nl.json +64 -64
- package/lib/typescript/i18n/pt-BR.json +64 -64
- package/lib/typescript/i18n/ru.json +64 -64
- package/lib/typescript/i18n/tr.json +64 -64
- package/lib/typescript/utils/Streami18n.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/Chat/hooks/useAppSettings.ts +4 -6
- package/src/components/MessageInput/FileUploadPreview.tsx +2 -3
- package/src/components/MessageInput/MessageInput.tsx +4 -45
- package/src/components/MessageList/MessageList.tsx +5 -2
- package/src/contexts/messageInputContext/MessageInputContext.tsx +60 -55
- package/src/contexts/messageInputContext/__tests__/MessageInputContext.test.tsx +9 -0
- package/src/contexts/messageInputContext/__tests__/pickFile.test.tsx +8 -3
- package/src/contexts/messageInputContext/utils/utils.ts +86 -0
- package/src/i18n/en.json +2 -2
- package/src/i18n/es.json +64 -64
- package/src/i18n/fr.json +64 -64
- package/src/i18n/he.json +64 -64
- package/src/i18n/hi.json +64 -64
- package/src/i18n/it.json +64 -64
- package/src/i18n/ja.json +64 -64
- package/src/i18n/ko.json +64 -64
- package/src/i18n/nl.json +64 -64
- package/src/i18n/pt-BR.json +64 -64
- package/src/i18n/ru.json +64 -64
- package/src/i18n/tr.json +64 -64
- package/src/version.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useAppSettings.d.ts","sourceRoot":"","sources":["../../../../../src/components/Chat/hooks/useAppSettings.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"useAppSettings.d.ts","sourceRoot":"","sources":["../../../../../src/components/Chat/hooks/useAppSettings.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,sBAAsB,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAItE,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,sBAAsB,CAAC;AAEtE,eAAO,MAAM,cAAc,uIAIf,OAAO,GAAG,IAAI,wBACF,OAAO,uBACR,OAAO,KAC3B,sBAAsB,GAAG,IAqC3B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileUploadPreview.d.ts","sourceRoot":"","sources":["../../../../src/components/MessageInput/FileUploadPreview.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAO3D,OAAO,EAAE,gBAAgB,EAAkB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EACL,wBAAwB,EAEzB,MAAM,wDAAwD,CAAC;AAChE,OAAO,EACL,oBAAoB,EAErB,MAAM,gDAAgD,CAAC;AAMxD,OAAO,KAAK,EAAE,yBAAyB,EAAc,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"FileUploadPreview.d.ts","sourceRoot":"","sources":["../../../../src/components/MessageInput/FileUploadPreview.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAO3D,OAAO,EAAE,gBAAgB,EAAkB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EACL,wBAAwB,EAEzB,MAAM,wDAAwD,CAAC;AAChE,OAAO,EACL,oBAAoB,EAErB,MAAM,gDAAgD,CAAC;AAMxD,OAAO,KAAK,EAAE,yBAAyB,EAAc,MAAM,mBAAmB,CAAC;AAgH/E,KAAK,iCAAiC,CACpC,kBAAkB,SAAS,yBAAyB,GAAG,yBAAyB,IAC9E,IAAI,CACN,wBAAwB,CAAC,kBAAkB,CAAC,EAC5C,aAAa,GAAG,YAAY,GAAG,YAAY,GAAG,gBAAgB,GAAG,8BAA8B,CAChG,GACC,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,EAAE,oBAAoB,CAAC,GACpE,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,EAAE,sBAAsB,CAAC,CAAC;AAgOrE,MAAM,MAAM,sBAAsB,CAChC,kBAAkB,SAAS,yBAAyB,GAAG,yBAAyB,IAC9E,OAAO,CAAC,iCAAiC,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAEnE;;;GAGG;AACH,eAAO,MAAM,iBAAiB;;;CAwB7B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MessageInput.d.ts","sourceRoot":"","sources":["../../../../src/components/MessageInput/MessageInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"MessageInput.d.ts","sourceRoot":"","sources":["../../../../src/components/MessageInput/MessageInput.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAuC,MAAM,OAAO,CAAC;AAuB5D,OAAO,EAAE,gBAAgB,EAAkB,MAAM,gBAAgB,CAAC;AAClE,OAAO,EACL,4BAA4B,EAE7B,MAAM,gEAAgE,CAAC;AACxE,OAAO,EACL,mBAAmB,EAEpB,MAAM,8CAA8C,CAAC;AACtD,OAAO,EACL,wBAAwB,EAEzB,MAAM,wDAAwD,CAAC;AAChE,OAAO,EACL,oBAAoB,EAErB,MAAM,gDAAgD,CAAC;AAExD,OAAO,EACL,uBAAuB,EAExB,MAAM,sDAAsD,CAAC;AAE9D,OAAO,EAAE,kBAAkB,EAAoB,MAAM,4CAA4C,CAAC;AAClG,OAAO,EACL,uBAAuB,EAExB,MAAM,sDAAsD,CAAC;AAG9D,OAAO,KAAK,EAAS,yBAAyB,EAAE,MAAM,mBAAmB,CAAC;AAyC1E,KAAK,4BAA4B,CAC/B,kBAAkB,SAAS,yBAAyB,GAAG,yBAAyB,IAC9E,IAAI,CAAC,4BAA4B,EAAE,8BAA8B,CAAC,GACpE,IAAI,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,EAAE,UAAU,CAAC,GACtD,IAAI,CACF,mBAAmB,CAAC,kBAAkB,CAAC,EACvC,UAAU,GAAG,SAAS,GAAG,YAAY,GAAG,UAAU,CACnD,GACD,IAAI,CACF,wBAAwB,CAAC,kBAAkB,CAAC,EAC1C,0BAA0B,GAC1B,UAAU,GACV,uBAAuB,GACvB,2BAA2B,GAC3B,mCAAmC,GACnC,oCAAoC,GACpC,cAAc,GACd,eAAe,GACf,0BAA0B,GAC1B,6BAA6B,GAC7B,uBAAuB,GACvB,gBAAgB,GAChB,eAAe,GACf,mBAAmB,GACnB,yBAAyB,GACzB,uBAAuB,GACvB,SAAS,GACT,mBAAmB,GACnB,aAAa,GACb,aAAa,GACb,oBAAoB,GACpB,cAAc,GACd,OAAO,GACP,aAAa,GACb,cAAc,GACd,yBAAyB,GACzB,kBAAkB,GAClB,uBAAuB,GACvB,gBAAgB,GAChB,kBAAkB,GAClB,gBAAgB,GAChB,iBAAiB,GACjB,eAAe,GACf,YAAY,GACZ,YAAY,GACZ,SAAS,GACT,kBAAkB,GAClB,oBAAoB,GACpB,gBAAgB,GAChB,iBAAiB,GACjB,kCAAkC,GAClC,2BAA2B,GAC3B,YAAY,GACZ,aAAa,GACb,MAAM,GACN,eAAe,GACf,gBAAgB,CACnB,GACD,IAAI,CAAC,oBAAoB,CAAC,kBAAkB,CAAC,EAAE,OAAO,CAAC,GACvD,IAAI,CACF,uBAAuB,CAAC,kBAAkB,CAAC,EACzC,8BAA8B,GAC9B,4BAA4B,GAC5B,4BAA4B,GAC5B,aAAa,GACb,aAAa,CAChB,GACD,IAAI,CAAC,kBAAkB,CAAC,kBAAkB,CAAC,EAAE,QAAQ,CAAC,GACtD,IAAI,CAAC,uBAAuB,EAAE,GAAG,CAAC,CAAC;AAqzBrC,MAAM,MAAM,iBAAiB,CAC3B,kBAAkB,SAAS,yBAAyB,GAAG,yBAAyB,IAC9E,OAAO,CAAC,4BAA4B,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAE9D;;;;;;;;GAQG;AACH,eAAO,MAAM,YAAY;;;CAuJxB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MessageList.d.ts","sourceRoot":"","sources":["../../../../src/components/MessageList/MessageList.tsx"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"MessageList.d.ts","sourceRoot":"","sources":["../../../../src/components/MessageList/MessageList.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MessageInputContext.d.ts","sourceRoot":"","sources":["../../../../src/contexts/messageInputContext/MessageInputContext.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AACvC,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAA2C,MAAM,OAAO,CAAC;AAC1F,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAK9D,OAAO,EACL,UAAU,EAEV,OAAO,EACP,mBAAmB,EACnB,UAAU,EACV,OAAO,IAAI,aAAa,EACxB,WAAW,EACX,WAAW,EACX,YAAY,EACZ,QAAQ,EACT,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"MessageInputContext.d.ts","sourceRoot":"","sources":["../../../../src/contexts/messageInputContext/MessageInputContext.tsx"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { FileUploadConfig } from 'stream-chat';
|
|
2
|
+
import { Asset, File } from '../../../types/types';
|
|
3
|
+
export declare const MAX_FILE_SIZE_TO_UPLOAD: number;
|
|
4
|
+
type CheckUploadPermissionsParams = {
|
|
5
|
+
config: FileUploadConfig;
|
|
6
|
+
file: File | Partial<Asset>;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* This utility function checks if the file upload is allowed based on the file upload config.
|
|
10
|
+
* @param Object File upload config and file to check
|
|
11
|
+
* @returns
|
|
12
|
+
*/
|
|
13
|
+
export declare const isUploadAllowed: ({ config, file }: CheckUploadPermissionsParams) => boolean;
|
|
14
|
+
/**
|
|
15
|
+
* This utility function prettifies the file size.
|
|
16
|
+
* @param bytes The bytes of the file
|
|
17
|
+
* @param precision The precision to which the file size should be rounded
|
|
18
|
+
* @returns
|
|
19
|
+
*/
|
|
20
|
+
export declare function prettifyFileSize(bytes: number, precision?: number): string;
|
|
21
|
+
export {};
|
|
22
|
+
//# sourceMappingURL=utils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../../src/contexts/messageInputContext/utils/utils.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAEpD,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAC;AAEnD,eAAO,MAAM,uBAAuB,QAAoB,CAAC;AAEzD,KAAK,4BAA4B,GAAG;IAClC,MAAM,EAAE,gBAAgB,CAAC;IACzB,IAAI,EAAE,IAAI,GAAG,OAAO,CAAC,KAAK,CAAC,CAAC;CAC7B,CAAC;AAEF;;;;GAIG;AACH,eAAO,MAAM,eAAe,qBAAsB,4BAA4B,YAuD7E,CAAC;AAEF;;;;;GAKG;AACH,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,MAAM,EAAE,SAAS,SAAI,UAK5D"}
|
|
@@ -24,10 +24,11 @@
|
|
|
24
24
|
"Error loading channel list...": "Error loading channel list...",
|
|
25
25
|
"Error loading messages for this channel...": "Error loading messages for this channel...",
|
|
26
26
|
"Error while loading, please reload/refresh": "Error while loading, please reload/refresh",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "File is too large: {{ size }}, maximum upload size is {{ limit }}",
|
|
27
28
|
"File type not supported": "File type not supported",
|
|
28
29
|
"Flag": "Flag",
|
|
29
30
|
"Flag Message": "Flag Message",
|
|
30
|
-
"Flag action failed either due to a network issue or the message is already flagged": "Flag action failed either due to a network issue or the message is already flagged
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "Flag action failed either due to a network issue or the message is already flagged",
|
|
31
32
|
"Hold to start recording.": "Hold to start recording.",
|
|
32
33
|
"How about sending your first message to a friend?": "How about sending your first message to a friend?",
|
|
33
34
|
"Instant Commands": "Instant Commands",
|
|
@@ -36,7 +37,6 @@
|
|
|
36
37
|
"Loading channels...": "Loading channels...",
|
|
37
38
|
"Loading messages...": "Loading messages...",
|
|
38
39
|
"Loading...": "Loading...",
|
|
39
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
|
|
40
40
|
"Message Reactions": "Message Reactions",
|
|
41
41
|
"Message deleted": "Message deleted",
|
|
42
42
|
"Message flagged": "Message flagged",
|
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 respuesta",
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Are you sure?": "
|
|
9
|
-
"Block User": "
|
|
10
|
-
"Cancel": "
|
|
11
|
-
"Cannot Flag Message": "
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
13
|
-
"Copy Message": "
|
|
14
|
-
"Delete": "
|
|
15
|
-
"Delete Message": "
|
|
16
|
-
"Device camera is used to take photos or videos.": "
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
18
|
-
"Edit Message": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
9
|
+
"Block User": "",
|
|
10
|
+
"Cancel": "",
|
|
11
|
+
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
+
"Copy Message": "",
|
|
14
|
+
"Delete": "",
|
|
15
|
+
"Delete Message": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
+
"Edit Message": "",
|
|
19
19
|
"Edited": "Editado",
|
|
20
|
-
"Editing Message": "
|
|
20
|
+
"Editing Message": "",
|
|
21
21
|
"Emoji matching": "Coincidencia de emoji",
|
|
22
22
|
"Empty message...": "Mensaje vacío...",
|
|
23
|
-
"Error loading": "
|
|
24
|
-
"Error loading channel list...": "
|
|
25
|
-
"Error loading messages for this channel...": "
|
|
23
|
+
"Error loading": "",
|
|
24
|
+
"Error loading channel list...": "",
|
|
25
|
+
"Error loading messages for this channel...": "",
|
|
26
26
|
"Error while loading, please reload/refresh": "Error al cargar, por favor recarga/actualiza",
|
|
27
|
-
"File
|
|
28
|
-
"
|
|
29
|
-
"Flag
|
|
30
|
-
"Flag
|
|
31
|
-
"
|
|
32
|
-
"
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
+
"File type not supported": "",
|
|
29
|
+
"Flag": "",
|
|
30
|
+
"Flag Message": "",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
+
"Hold to start recording.": "",
|
|
33
|
+
"How about sending your first message to a friend?": "",
|
|
33
34
|
"Instant Commands": "Comandos instantáneos",
|
|
34
|
-
"Let's start chatting!": "
|
|
35
|
-
"Links are disabled": "
|
|
35
|
+
"Let's start chatting!": "",
|
|
36
|
+
"Links are disabled": "",
|
|
36
37
|
"Loading channels...": "Cargando canales...",
|
|
37
38
|
"Loading messages...": "Cargando mensajes...",
|
|
38
39
|
"Loading...": "Cargando...",
|
|
39
|
-
"
|
|
40
|
-
"Message Reactions": "Reacciones al mensaje",
|
|
40
|
+
"Message Reactions": "",
|
|
41
41
|
"Message deleted": "Mensaje eliminado",
|
|
42
|
-
"Message flagged": "
|
|
43
|
-
"Mute User": "
|
|
44
|
-
"No chats here yet…": "
|
|
45
|
-
"Not supported": "
|
|
42
|
+
"Message flagged": "",
|
|
43
|
+
"Mute User": "",
|
|
44
|
+
"No chats here yet…": "",
|
|
45
|
+
"Not supported": "",
|
|
46
46
|
"Nothing yet...": "Aún no hay nada...",
|
|
47
|
-
"Ok": "
|
|
47
|
+
"Ok": "",
|
|
48
48
|
"Only visible to you": "Solo visible para ti",
|
|
49
|
-
"Open Settings": "
|
|
50
|
-
"Photo": "
|
|
51
|
-
"Photos and Videos": "
|
|
52
|
-
"Pin to Conversation": "
|
|
49
|
+
"Open Settings": "",
|
|
50
|
+
"Photo": "",
|
|
51
|
+
"Photos and Videos": "",
|
|
52
|
+
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "Fijado por",
|
|
54
|
-
"Please allow Audio permissions in settings.": "
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
56
|
-
"Please select a channel first": "
|
|
54
|
+
"Please allow Audio permissions in settings.": "",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
+
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "Reconectando...",
|
|
58
|
-
"Reply": "
|
|
59
|
-
"Reply to Message": "
|
|
60
|
-
"Resend": "
|
|
61
|
-
"Search GIFs": "
|
|
62
|
-
"Select More Photos": "
|
|
63
|
-
"Send Anyway": "
|
|
64
|
-
"Send a message": "
|
|
65
|
-
"Sending links is not allowed in this conversation": "
|
|
66
|
-
"Slow mode ON": "
|
|
67
|
-
"The message has been reported to a moderator.": "
|
|
68
|
-
"Thread Reply": "
|
|
69
|
-
"Unblock User": "
|
|
70
|
-
"Unknown User": "
|
|
71
|
-
"Unmute User": "
|
|
72
|
-
"Unpin from Conversation": "
|
|
73
|
-
"Unread Messages": "
|
|
74
|
-
"Video": "
|
|
58
|
+
"Reply": "",
|
|
59
|
+
"Reply to Message": "",
|
|
60
|
+
"Resend": "",
|
|
61
|
+
"Search GIFs": "",
|
|
62
|
+
"Select More Photos": "",
|
|
63
|
+
"Send Anyway": "",
|
|
64
|
+
"Send a message": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "",
|
|
66
|
+
"Slow mode ON": "",
|
|
67
|
+
"The message has been reported to a moderator.": "",
|
|
68
|
+
"Thread Reply": "",
|
|
69
|
+
"Unblock User": "",
|
|
70
|
+
"Unknown User": "",
|
|
71
|
+
"Unmute User": "",
|
|
72
|
+
"Unpin from Conversation": "",
|
|
73
|
+
"Unread Messages": "",
|
|
74
|
+
"Video": "",
|
|
75
75
|
"You": "Tú",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
77
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }} Respuestas",
|
|
80
|
-
"{{ replyCount }} Thread Replies": "
|
|
81
|
-
"{{ user }} is typing": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "",
|
|
82
82
|
"🏙 Attachment...": "🏙 Adjunto..."
|
|
83
83
|
}
|
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Réponse",
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Are you sure?": "
|
|
9
|
-
"Block User": "
|
|
10
|
-
"Cancel": "
|
|
11
|
-
"Cannot Flag Message": "
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
13
|
-
"Copy Message": "
|
|
14
|
-
"Delete": "
|
|
15
|
-
"Delete Message": "
|
|
16
|
-
"Device camera is used to take photos or videos.": "
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
18
|
-
"Edit Message": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
9
|
+
"Block User": "",
|
|
10
|
+
"Cancel": "",
|
|
11
|
+
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
+
"Copy Message": "",
|
|
14
|
+
"Delete": "",
|
|
15
|
+
"Delete Message": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
+
"Edit Message": "",
|
|
19
19
|
"Edited": "Édité",
|
|
20
|
-
"Editing Message": "
|
|
20
|
+
"Editing Message": "",
|
|
21
21
|
"Emoji matching": "Correspondance Emoji",
|
|
22
22
|
"Empty message...": "Message vide...",
|
|
23
|
-
"Error loading": "
|
|
24
|
-
"Error loading channel list...": "
|
|
25
|
-
"Error loading messages for this channel...": "
|
|
23
|
+
"Error loading": "",
|
|
24
|
+
"Error loading channel list...": "",
|
|
25
|
+
"Error loading messages for this channel...": "",
|
|
26
26
|
"Error while loading, please reload/refresh": "Erreur lors du chargement, veuillez recharger/rafraîchir",
|
|
27
|
-
"File
|
|
28
|
-
"
|
|
29
|
-
"Flag
|
|
30
|
-
"Flag
|
|
31
|
-
"
|
|
32
|
-
"
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
+
"File type not supported": "",
|
|
29
|
+
"Flag": "",
|
|
30
|
+
"Flag Message": "",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
+
"Hold to start recording.": "",
|
|
33
|
+
"How about sending your first message to a friend?": "",
|
|
33
34
|
"Instant Commands": "Commandes Instantanées",
|
|
34
|
-
"Let's start chatting!": "
|
|
35
|
-
"Links are disabled": "
|
|
35
|
+
"Let's start chatting!": "",
|
|
36
|
+
"Links are disabled": "",
|
|
36
37
|
"Loading channels...": "Chargement des canaux...",
|
|
37
38
|
"Loading messages...": "Chargement des messages...",
|
|
38
39
|
"Loading...": "Chargement...",
|
|
39
|
-
"
|
|
40
|
-
"Message Reactions": "Réactions aux messages",
|
|
40
|
+
"Message Reactions": "",
|
|
41
41
|
"Message deleted": "Message supprimé",
|
|
42
|
-
"Message flagged": "
|
|
43
|
-
"Mute User": "
|
|
44
|
-
"No chats here yet…": "
|
|
45
|
-
"Not supported": "
|
|
42
|
+
"Message flagged": "",
|
|
43
|
+
"Mute User": "",
|
|
44
|
+
"No chats here yet…": "",
|
|
45
|
+
"Not supported": "",
|
|
46
46
|
"Nothing yet...": "Aucun message...",
|
|
47
|
-
"Ok": "
|
|
47
|
+
"Ok": "",
|
|
48
48
|
"Only visible to you": "Seulement visible par vous",
|
|
49
|
-
"Open Settings": "
|
|
50
|
-
"Photo": "
|
|
51
|
-
"Photos and Videos": "
|
|
52
|
-
"Pin to Conversation": "
|
|
49
|
+
"Open Settings": "",
|
|
50
|
+
"Photo": "",
|
|
51
|
+
"Photos and Videos": "",
|
|
52
|
+
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": "Épinglé par",
|
|
54
|
-
"Please allow Audio permissions in settings.": "
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
56
|
-
"Please select a channel first": "
|
|
54
|
+
"Please allow Audio permissions in settings.": "",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
+
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "Se Reconnecter...",
|
|
58
|
-
"Reply": "
|
|
59
|
-
"Reply to Message": "
|
|
60
|
-
"Resend": "
|
|
61
|
-
"Search GIFs": "
|
|
62
|
-
"Select More Photos": "
|
|
63
|
-
"Send Anyway": "
|
|
64
|
-
"Send a message": "
|
|
65
|
-
"Sending links is not allowed in this conversation": "
|
|
66
|
-
"Slow mode ON": "
|
|
67
|
-
"The message has been reported to a moderator.": "
|
|
68
|
-
"Thread Reply": "
|
|
69
|
-
"Unblock User": "
|
|
70
|
-
"Unknown User": "
|
|
71
|
-
"Unmute User": "
|
|
72
|
-
"Unpin from Conversation": "
|
|
73
|
-
"Unread Messages": "
|
|
74
|
-
"Video": "
|
|
58
|
+
"Reply": "",
|
|
59
|
+
"Reply to Message": "",
|
|
60
|
+
"Resend": "",
|
|
61
|
+
"Search GIFs": "",
|
|
62
|
+
"Select More Photos": "",
|
|
63
|
+
"Send Anyway": "",
|
|
64
|
+
"Send a message": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "",
|
|
66
|
+
"Slow mode ON": "",
|
|
67
|
+
"The message has been reported to a moderator.": "",
|
|
68
|
+
"Thread Reply": "",
|
|
69
|
+
"Unblock User": "",
|
|
70
|
+
"Unknown User": "",
|
|
71
|
+
"Unmute User": "",
|
|
72
|
+
"Unpin from Conversation": "",
|
|
73
|
+
"Unread Messages": "",
|
|
74
|
+
"Video": "",
|
|
75
75
|
"You": "Toi",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
77
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
|
80
|
-
"{{ replyCount }} Thread Replies": "
|
|
81
|
-
"{{ user }} is typing": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "",
|
|
82
82
|
"🏙 Attachment...": "🏙 Pièce jointe..."
|
|
83
83
|
}
|
|
@@ -1,83 +1,83 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "תגובה אחת",
|
|
3
|
-
"1 Thread Reply": "
|
|
4
|
-
"Allow access to your Gallery": "
|
|
5
|
-
"Allow camera access in device settings": "
|
|
6
|
-
"Also send to channel": "
|
|
7
|
-
"Are you sure you want to permanently delete this message?": "
|
|
8
|
-
"Are you sure?": "
|
|
9
|
-
"Block User": "
|
|
10
|
-
"Cancel": "
|
|
11
|
-
"Cannot Flag Message": "
|
|
12
|
-
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "
|
|
13
|
-
"Copy Message": "
|
|
14
|
-
"Delete": "
|
|
15
|
-
"Delete Message": "
|
|
16
|
-
"Device camera is used to take photos or videos.": "
|
|
17
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "
|
|
18
|
-
"Edit Message": "
|
|
3
|
+
"1 Thread Reply": "",
|
|
4
|
+
"Allow access to your Gallery": "",
|
|
5
|
+
"Allow camera access in device settings": "",
|
|
6
|
+
"Also send to channel": "",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "",
|
|
8
|
+
"Are you sure?": "",
|
|
9
|
+
"Block User": "",
|
|
10
|
+
"Cancel": "",
|
|
11
|
+
"Cannot Flag Message": "",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
|
|
13
|
+
"Copy Message": "",
|
|
14
|
+
"Delete": "",
|
|
15
|
+
"Delete Message": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
+
"Edit Message": "",
|
|
19
19
|
"Edited": "נערך",
|
|
20
|
-
"Editing Message": "
|
|
20
|
+
"Editing Message": "",
|
|
21
21
|
"Emoji matching": "התאמת אמוג'י",
|
|
22
22
|
"Empty message...": "הודעה ריקה...",
|
|
23
|
-
"Error loading": "
|
|
24
|
-
"Error loading channel list...": "
|
|
25
|
-
"Error loading messages for this channel...": "
|
|
23
|
+
"Error loading": "",
|
|
24
|
+
"Error loading channel list...": "",
|
|
25
|
+
"Error loading messages for this channel...": "",
|
|
26
26
|
"Error while loading, please reload/refresh": "שגיאה ארעה בזמן הטעינה, אנא טען מחדש/רענן",
|
|
27
|
-
"File
|
|
28
|
-
"
|
|
29
|
-
"Flag
|
|
30
|
-
"Flag
|
|
31
|
-
"
|
|
32
|
-
"
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
|
|
28
|
+
"File type not supported": "",
|
|
29
|
+
"Flag": "",
|
|
30
|
+
"Flag Message": "",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "",
|
|
32
|
+
"Hold to start recording.": "",
|
|
33
|
+
"How about sending your first message to a friend?": "",
|
|
33
34
|
"Instant Commands": "פעולות מיידיות",
|
|
34
|
-
"Let's start chatting!": "
|
|
35
|
-
"Links are disabled": "
|
|
35
|
+
"Let's start chatting!": "",
|
|
36
|
+
"Links are disabled": "",
|
|
36
37
|
"Loading channels...": "השיחות בטעינה...",
|
|
37
38
|
"Loading messages...": "ההודעות בטעינה..",
|
|
38
39
|
"Loading...": "טוען...",
|
|
39
|
-
"
|
|
40
|
-
"Message Reactions": "תגובות להודעה",
|
|
40
|
+
"Message Reactions": "",
|
|
41
41
|
"Message deleted": "ההודעה נמחקה",
|
|
42
|
-
"Message flagged": "
|
|
43
|
-
"Mute User": "
|
|
44
|
-
"No chats here yet…": "
|
|
45
|
-
"Not supported": "
|
|
42
|
+
"Message flagged": "",
|
|
43
|
+
"Mute User": "",
|
|
44
|
+
"No chats here yet…": "",
|
|
45
|
+
"Not supported": "",
|
|
46
46
|
"Nothing yet...": "אינפורמציה תתקבל בהמשך...",
|
|
47
|
-
"Ok": "
|
|
47
|
+
"Ok": "",
|
|
48
48
|
"Only visible to you": "גלוי רק לך",
|
|
49
|
-
"Open Settings": "
|
|
50
|
-
"Photo": "
|
|
51
|
-
"Photos and Videos": "
|
|
52
|
-
"Pin to Conversation": "
|
|
49
|
+
"Open Settings": "",
|
|
50
|
+
"Photo": "",
|
|
51
|
+
"Photos and Videos": "",
|
|
52
|
+
"Pin to Conversation": "",
|
|
53
53
|
"Pinned by": " - הוצמד לשיחה",
|
|
54
|
-
"Please allow Audio permissions in settings.": "
|
|
55
|
-
"Please enable access to your photos and videos so you can share them.": "
|
|
56
|
-
"Please select a channel first": "
|
|
54
|
+
"Please allow Audio permissions in settings.": "",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "",
|
|
56
|
+
"Please select a channel first": "",
|
|
57
57
|
"Reconnecting...": "מתחבר מחדש...",
|
|
58
|
-
"Reply": "
|
|
59
|
-
"Reply to Message": "
|
|
60
|
-
"Resend": "
|
|
61
|
-
"Search GIFs": "
|
|
62
|
-
"Select More Photos": "
|
|
63
|
-
"Send Anyway": "
|
|
64
|
-
"Send a message": "
|
|
65
|
-
"Sending links is not allowed in this conversation": "
|
|
66
|
-
"Slow mode ON": "
|
|
67
|
-
"The message has been reported to a moderator.": "
|
|
68
|
-
"Thread Reply": "
|
|
69
|
-
"Unblock User": "
|
|
70
|
-
"Unknown User": "
|
|
71
|
-
"Unmute User": "
|
|
72
|
-
"Unpin from Conversation": "
|
|
73
|
-
"Unread Messages": "
|
|
74
|
-
"Video": "
|
|
58
|
+
"Reply": "",
|
|
59
|
+
"Reply to Message": "",
|
|
60
|
+
"Resend": "",
|
|
61
|
+
"Search GIFs": "",
|
|
62
|
+
"Select More Photos": "",
|
|
63
|
+
"Send Anyway": "",
|
|
64
|
+
"Send a message": "",
|
|
65
|
+
"Sending links is not allowed in this conversation": "",
|
|
66
|
+
"Slow mode ON": "",
|
|
67
|
+
"The message has been reported to a moderator.": "",
|
|
68
|
+
"Thread Reply": "",
|
|
69
|
+
"Unblock User": "",
|
|
70
|
+
"Unknown User": "",
|
|
71
|
+
"Unmute User": "",
|
|
72
|
+
"Unpin from Conversation": "",
|
|
73
|
+
"Unread Messages": "",
|
|
74
|
+
"Video": "",
|
|
75
75
|
"You": "את/ה",
|
|
76
|
-
"You can't send messages in this channel": "
|
|
77
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "
|
|
78
|
-
"{{ index }} of {{ photoLength }}": "
|
|
76
|
+
"You can't send messages in this channel": "",
|
|
77
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
78
|
+
"{{ index }} of {{ photoLength }}": "",
|
|
79
79
|
"{{ replyCount }} Replies": "{{ replyCount }} תגובות",
|
|
80
|
-
"{{ replyCount }} Thread Replies": "
|
|
81
|
-
"{{ user }} is typing": "
|
|
80
|
+
"{{ replyCount }} Thread Replies": "",
|
|
81
|
+
"{{ user }} is typing": "",
|
|
82
82
|
"🏙 Attachment...": "🏙 קובץ מצורף..."
|
|
83
83
|
}
|