stream-chat-react-native-core 5.30.1-beta.1 → 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.
Files changed (86) hide show
  1. package/lib/commonjs/components/Chat/hooks/useAppSettings.js +2 -4
  2. package/lib/commonjs/components/Chat/hooks/useAppSettings.js.map +1 -1
  3. package/lib/commonjs/components/MessageInput/FileUploadPreview.js +5 -6
  4. package/lib/commonjs/components/MessageInput/FileUploadPreview.js.map +1 -1
  5. package/lib/commonjs/components/MessageInput/MessageInput.js +4 -26
  6. package/lib/commonjs/components/MessageInput/MessageInput.js.map +1 -1
  7. package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +89 -76
  8. package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
  9. package/lib/commonjs/contexts/messageInputContext/utils/utils.js +66 -0
  10. package/lib/commonjs/contexts/messageInputContext/utils/utils.js.map +1 -0
  11. package/lib/commonjs/i18n/en.json +1 -1
  12. package/lib/commonjs/i18n/es.json +21 -21
  13. package/lib/commonjs/i18n/fr.json +21 -21
  14. package/lib/commonjs/i18n/he.json +21 -21
  15. package/lib/commonjs/i18n/hi.json +21 -21
  16. package/lib/commonjs/i18n/it.json +21 -21
  17. package/lib/commonjs/i18n/ja.json +21 -21
  18. package/lib/commonjs/i18n/ko.json +21 -21
  19. package/lib/commonjs/i18n/nl.json +21 -21
  20. package/lib/commonjs/i18n/pt-BR.json +21 -21
  21. package/lib/commonjs/i18n/ru.json +21 -21
  22. package/lib/commonjs/i18n/tr.json +21 -21
  23. package/lib/commonjs/version.json +1 -1
  24. package/lib/module/components/Chat/hooks/useAppSettings.js +2 -4
  25. package/lib/module/components/Chat/hooks/useAppSettings.js.map +1 -1
  26. package/lib/module/components/MessageInput/FileUploadPreview.js +5 -6
  27. package/lib/module/components/MessageInput/FileUploadPreview.js.map +1 -1
  28. package/lib/module/components/MessageInput/MessageInput.js +4 -26
  29. package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
  30. package/lib/module/contexts/messageInputContext/MessageInputContext.js +89 -76
  31. package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
  32. package/lib/module/contexts/messageInputContext/utils/utils.js +66 -0
  33. package/lib/module/contexts/messageInputContext/utils/utils.js.map +1 -0
  34. package/lib/module/i18n/en.json +1 -1
  35. package/lib/module/i18n/es.json +21 -21
  36. package/lib/module/i18n/fr.json +21 -21
  37. package/lib/module/i18n/he.json +21 -21
  38. package/lib/module/i18n/hi.json +21 -21
  39. package/lib/module/i18n/it.json +21 -21
  40. package/lib/module/i18n/ja.json +21 -21
  41. package/lib/module/i18n/ko.json +21 -21
  42. package/lib/module/i18n/nl.json +21 -21
  43. package/lib/module/i18n/pt-BR.json +21 -21
  44. package/lib/module/i18n/ru.json +21 -21
  45. package/lib/module/i18n/tr.json +21 -21
  46. package/lib/module/version.json +1 -1
  47. package/lib/typescript/components/Chat/hooks/useAppSettings.d.ts.map +1 -1
  48. package/lib/typescript/components/MessageInput/FileUploadPreview.d.ts.map +1 -1
  49. package/lib/typescript/components/MessageInput/MessageInput.d.ts.map +1 -1
  50. package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts.map +1 -1
  51. package/lib/typescript/contexts/messageInputContext/utils/utils.d.ts +22 -0
  52. package/lib/typescript/contexts/messageInputContext/utils/utils.d.ts.map +1 -0
  53. package/lib/typescript/i18n/en.json +1 -1
  54. package/lib/typescript/i18n/es.json +21 -21
  55. package/lib/typescript/i18n/fr.json +21 -21
  56. package/lib/typescript/i18n/he.json +21 -21
  57. package/lib/typescript/i18n/hi.json +21 -21
  58. package/lib/typescript/i18n/it.json +21 -21
  59. package/lib/typescript/i18n/ja.json +21 -21
  60. package/lib/typescript/i18n/ko.json +21 -21
  61. package/lib/typescript/i18n/nl.json +21 -21
  62. package/lib/typescript/i18n/pt-BR.json +21 -21
  63. package/lib/typescript/i18n/ru.json +21 -21
  64. package/lib/typescript/i18n/tr.json +21 -21
  65. package/lib/typescript/utils/Streami18n.d.ts +1 -1
  66. package/package.json +1 -1
  67. package/src/components/Chat/hooks/useAppSettings.ts +4 -6
  68. package/src/components/MessageInput/FileUploadPreview.tsx +2 -3
  69. package/src/components/MessageInput/MessageInput.tsx +4 -45
  70. package/src/contexts/messageInputContext/MessageInputContext.tsx +60 -55
  71. package/src/contexts/messageInputContext/__tests__/MessageInputContext.test.tsx +9 -0
  72. package/src/contexts/messageInputContext/__tests__/pickFile.test.tsx +8 -3
  73. package/src/contexts/messageInputContext/utils/utils.ts +86 -0
  74. package/src/i18n/en.json +1 -1
  75. package/src/i18n/es.json +21 -21
  76. package/src/i18n/fr.json +21 -21
  77. package/src/i18n/he.json +21 -21
  78. package/src/i18n/hi.json +21 -21
  79. package/src/i18n/it.json +21 -21
  80. package/src/i18n/ja.json +21 -21
  81. package/src/i18n/ko.json +21 -21
  82. package/src/i18n/nl.json +21 -21
  83. package/src/i18n/pt-BR.json +21 -21
  84. package/src/i18n/ru.json +21 -21
  85. package/src/i18n/tr.json +21 -21
  86. package/src/version.json +1 -1
@@ -0,0 +1,66 @@
1
+ Object.defineProperty(exports, "__esModule", {
2
+ value: true
3
+ });
4
+ exports.isUploadAllowed = exports.MAX_FILE_SIZE_TO_UPLOAD = void 0;
5
+ exports.prettifyFileSize = prettifyFileSize;
6
+ var _mimeTypes = require("mime-types");
7
+ var MAX_FILE_SIZE_TO_UPLOAD = 100 * 1024 * 1024;
8
+ exports.MAX_FILE_SIZE_TO_UPLOAD = MAX_FILE_SIZE_TO_UPLOAD;
9
+ var isUploadAllowed = function isUploadAllowed(_ref) {
10
+ var config = _ref.config,
11
+ file = _ref.file;
12
+ var allowed_file_extensions = config.allowed_file_extensions,
13
+ allowed_mime_types = config.allowed_mime_types,
14
+ blocked_file_extensions = config.blocked_file_extensions,
15
+ blocked_mime_types = config.blocked_mime_types;
16
+ if (allowed_file_extensions != null && allowed_file_extensions.length) {
17
+ var allowed = allowed_file_extensions.some(function (fileExtension) {
18
+ var _file$name;
19
+ return (_file$name = file.name) == null ? void 0 : _file$name.toLowerCase().endsWith(fileExtension.toLowerCase());
20
+ });
21
+ if (!allowed) {
22
+ return false;
23
+ }
24
+ }
25
+ if (blocked_file_extensions != null && blocked_file_extensions.length) {
26
+ var blocked = blocked_file_extensions.some(function (fileExtension) {
27
+ var _file$name2;
28
+ return (_file$name2 = file.name) == null ? void 0 : _file$name2.toLowerCase().endsWith(fileExtension.toLowerCase());
29
+ });
30
+ if (blocked) {
31
+ return false;
32
+ }
33
+ }
34
+ if (allowed_mime_types != null && allowed_mime_types.length) {
35
+ if (file.name) {
36
+ var fileMimeType = (0, _mimeTypes.lookup)(file.name);
37
+ var _allowed = allowed_mime_types.some(function (mimeType) {
38
+ return fileMimeType.toLowerCase() === mimeType.toLowerCase();
39
+ });
40
+ if (!_allowed) {
41
+ return false;
42
+ }
43
+ }
44
+ }
45
+ if (blocked_mime_types != null && blocked_mime_types.length) {
46
+ if (file.name) {
47
+ var _fileMimeType = (0, _mimeTypes.lookup)(file.name);
48
+ var _blocked = blocked_mime_types.some(function (mimeType) {
49
+ return _fileMimeType.toLowerCase() === mimeType.toLowerCase();
50
+ });
51
+ if (_blocked) {
52
+ return false;
53
+ }
54
+ }
55
+ }
56
+ return true;
57
+ };
58
+ exports.isUploadAllowed = isUploadAllowed;
59
+ function prettifyFileSize(bytes) {
60
+ var precision = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 3;
61
+ var units = ['B', 'kB', 'MB', 'GB'];
62
+ var exponent = Math.min(Math.floor(Math.log(bytes) / Math.log(1024)), units.length - 1);
63
+ var mantissa = bytes / Math.pow(1024, exponent);
64
+ return "".concat(mantissa.toPrecision(precision), " ").concat(units[exponent]);
65
+ }
66
+ //# sourceMappingURL=utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_mimeTypes","require","MAX_FILE_SIZE_TO_UPLOAD","exports","isUploadAllowed","_ref","config","file","allowed_file_extensions","allowed_mime_types","blocked_file_extensions","blocked_mime_types","length","allowed","some","fileExtension","_file$name","name","toLowerCase","endsWith","blocked","_file$name2","fileMimeType","lookup","mimeType","prettifyFileSize","bytes","precision","arguments","undefined","units","exponent","Math","min","floor","log","mantissa","pow","concat","toPrecision"],"sourceRoot":"../../../../../src","sources":["contexts/messageInputContext/utils/utils.ts"],"mappings":"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","ignoreList":[]}
@@ -24,6 +24,7 @@
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",
@@ -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,57 +1,57 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 respuesta",
3
3
  "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
- "Are you sure?": "¿Estás seguro?",
8
+ "Are you sure?": "",
9
9
  "Block User": "",
10
10
  "Cancel": "",
11
11
  "Cannot Flag Message": "",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considera cómo tu comentario podría hacer sentir a los demás y asegúrate de seguir nuestras Normas de la Comunidad",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Edited": "",
19
+ "Edited": "Editado",
20
20
  "Editing Message": "",
21
- "Emoji matching": "",
22
- "Empty message...": "",
21
+ "Emoji matching": "Coincidencia de emoji",
22
+ "Empty message...": "Mensaje vacío...",
23
23
  "Error loading": "",
24
24
  "Error loading channel list...": "",
25
25
  "Error loading messages for this channel...": "",
26
- "Error while loading, please reload/refresh": "",
26
+ "Error while loading, please reload/refresh": "Error al cargar, por favor recarga/actualiza",
27
+ "File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
27
28
  "File type not supported": "",
28
29
  "Flag": "",
29
30
  "Flag Message": "",
30
31
  "Flag action failed either due to a network issue or the message is already flagged": "",
31
- "Hold to start recording.": "Mantén presionado para comenzar a grabar.",
32
+ "Hold to start recording.": "",
32
33
  "How about sending your first message to a friend?": "",
33
- "Instant Commands": "",
34
+ "Instant Commands": "Comandos instantáneos",
34
35
  "Let's start chatting!": "",
35
36
  "Links are disabled": "",
36
- "Loading channels...": "",
37
- "Loading messages...": "",
38
- "Loading...": "",
39
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
37
+ "Loading channels...": "Cargando canales...",
38
+ "Loading messages...": "Cargando mensajes...",
39
+ "Loading...": "Cargando...",
40
40
  "Message Reactions": "",
41
41
  "Message deleted": "Mensaje eliminado",
42
42
  "Message flagged": "",
43
43
  "Mute User": "",
44
44
  "No chats here yet…": "",
45
- "Not supported": "No admitido",
46
- "Nothing yet...": "",
45
+ "Not supported": "",
46
+ "Nothing yet...": "Aún no hay nada...",
47
47
  "Ok": "",
48
- "Only visible to you": "",
48
+ "Only visible to you": "Solo visible para ti",
49
49
  "Open Settings": "",
50
50
  "Photo": "",
51
51
  "Photos and Videos": "",
52
52
  "Pin to Conversation": "",
53
- "Pinned by": "",
54
- "Please allow Audio permissions in settings.": "Por favor, permita los permisos de audio en la configuración.",
53
+ "Pinned by": "Fijado por",
54
+ "Please allow Audio permissions in settings.": "",
55
55
  "Please enable access to your photos and videos so you can share them.": "",
56
56
  "Please select a channel first": "",
57
57
  "Reconnecting...": "Reconectando...",
@@ -60,7 +60,7 @@
60
60
  "Resend": "",
61
61
  "Search GIFs": "",
62
62
  "Select More Photos": "",
63
- "Send Anyway": "Enviar de todos modos",
63
+ "Send Anyway": "",
64
64
  "Send a message": "",
65
65
  "Sending links is not allowed in this conversation": "",
66
66
  "Slow mode ON": "",
@@ -76,8 +76,8 @@
76
76
  "You can't send messages in this channel": "",
77
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
78
78
  "{{ index }} of {{ photoLength }}": "",
79
- "{{ replyCount }} Replies": "",
79
+ "{{ replyCount }} Replies": "{{ replyCount }} Respuestas",
80
80
  "{{ replyCount }} Thread Replies": "",
81
81
  "{{ user }} is typing": "",
82
- "🏙 Attachment...": ""
82
+ "🏙 Attachment...": "🏙 Adjunto..."
83
83
  }
@@ -1,57 +1,57 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 Réponse",
3
3
  "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
- "Are you sure?": "Es-tu sûr ?",
8
+ "Are you sure?": "",
9
9
  "Block User": "",
10
10
  "Cancel": "",
11
11
  "Cannot Flag Message": "",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considérez comment votre commentaire pourrait faire sentir les autres et assurez-vous de suivre nos directives communautaires",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Edited": "",
19
+ "Edited": "Édité",
20
20
  "Editing Message": "",
21
- "Emoji matching": "",
22
- "Empty message...": "",
21
+ "Emoji matching": "Correspondance Emoji",
22
+ "Empty message...": "Message vide...",
23
23
  "Error loading": "",
24
24
  "Error loading channel list...": "",
25
25
  "Error loading messages for this channel...": "",
26
- "Error while loading, please reload/refresh": "",
26
+ "Error while loading, please reload/refresh": "Erreur lors du chargement, veuillez recharger/rafraîchir",
27
+ "File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
27
28
  "File type not supported": "",
28
29
  "Flag": "",
29
30
  "Flag Message": "",
30
31
  "Flag action failed either due to a network issue or the message is already flagged": "",
31
- "Hold to start recording.": "Hold to start recording.",
32
+ "Hold to start recording.": "",
32
33
  "How about sending your first message to a friend?": "",
33
- "Instant Commands": "",
34
+ "Instant Commands": "Commandes Instantanées",
34
35
  "Let's start chatting!": "",
35
36
  "Links are disabled": "",
36
- "Loading channels...": "",
37
- "Loading messages...": "",
38
- "Loading...": "",
39
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
37
+ "Loading channels...": "Chargement des canaux...",
38
+ "Loading messages...": "Chargement des messages...",
39
+ "Loading...": "Chargement...",
40
40
  "Message Reactions": "",
41
41
  "Message deleted": "Message supprimé",
42
42
  "Message flagged": "",
43
43
  "Mute User": "",
44
44
  "No chats here yet…": "",
45
- "Not supported": "Non pris en charge",
46
- "Nothing yet...": "",
45
+ "Not supported": "",
46
+ "Nothing yet...": "Aucun message...",
47
47
  "Ok": "",
48
- "Only visible to you": "",
48
+ "Only visible to you": "Seulement visible par vous",
49
49
  "Open Settings": "",
50
50
  "Photo": "",
51
51
  "Photos and Videos": "",
52
52
  "Pin to Conversation": "",
53
- "Pinned by": "",
54
- "Please allow Audio permissions in settings.": "Veuillez autoriser les permissions audio dans les paramètres.",
53
+ "Pinned by": "Épinglé par",
54
+ "Please allow Audio permissions in settings.": "",
55
55
  "Please enable access to your photos and videos so you can share them.": "",
56
56
  "Please select a channel first": "",
57
57
  "Reconnecting...": "Se Reconnecter...",
@@ -60,7 +60,7 @@
60
60
  "Resend": "",
61
61
  "Search GIFs": "",
62
62
  "Select More Photos": "",
63
- "Send Anyway": "Envoyer quand même",
63
+ "Send Anyway": "",
64
64
  "Send a message": "",
65
65
  "Sending links is not allowed in this conversation": "",
66
66
  "Slow mode ON": "",
@@ -76,8 +76,8 @@
76
76
  "You can't send messages in this channel": "",
77
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
78
78
  "{{ index }} of {{ photoLength }}": "",
79
- "{{ replyCount }} Replies": "",
79
+ "{{ replyCount }} Replies": "{{ replyCount }} Réponses",
80
80
  "{{ replyCount }} Thread Replies": "",
81
81
  "{{ user }} is typing": "",
82
- "🏙 Attachment...": ""
82
+ "🏙 Attachment...": "🏙 Pièce jointe..."
83
83
  }
@@ -1,57 +1,57 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "תגובה אחת",
3
3
  "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
- "Are you sure?": "האם אתה בטוח?",
8
+ "Are you sure?": "",
9
9
  "Block User": "",
10
10
  "Cancel": "",
11
11
  "Cannot Flag Message": "",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "שקול איך התגובה שלך עשויה להשפיע על אחרים ווודא שאתה עוקב אחר ההנחיות של הקהילה שלנו",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Edited": "",
19
+ "Edited": "נערך",
20
20
  "Editing Message": "",
21
- "Emoji matching": "",
22
- "Empty message...": "",
21
+ "Emoji matching": "התאמת אמוג'י",
22
+ "Empty message...": "הודעה ריקה...",
23
23
  "Error loading": "",
24
24
  "Error loading channel list...": "",
25
25
  "Error loading messages for this channel...": "",
26
- "Error while loading, please reload/refresh": "",
26
+ "Error while loading, please reload/refresh": "שגיאה ארעה בזמן הטעינה, אנא טען מחדש/רענן",
27
+ "File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
27
28
  "File type not supported": "",
28
29
  "Flag": "",
29
30
  "Flag Message": "",
30
31
  "Flag action failed either due to a network issue or the message is already flagged": "",
31
- "Hold to start recording.": "לחץ והחזק כדי להתחיל להקליט.",
32
+ "Hold to start recording.": "",
32
33
  "How about sending your first message to a friend?": "",
33
- "Instant Commands": "",
34
+ "Instant Commands": "פעולות מיידיות",
34
35
  "Let's start chatting!": "",
35
36
  "Links are disabled": "",
36
- "Loading channels...": "",
37
- "Loading messages...": "",
38
- "Loading...": "",
39
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
37
+ "Loading channels...": "השיחות בטעינה...",
38
+ "Loading messages...": "ההודעות בטעינה..",
39
+ "Loading...": "טוען...",
40
40
  "Message Reactions": "",
41
41
  "Message deleted": "ההודעה נמחקה",
42
42
  "Message flagged": "",
43
43
  "Mute User": "",
44
44
  "No chats here yet…": "",
45
- "Not supported": "לא נתמך",
46
- "Nothing yet...": "",
45
+ "Not supported": "",
46
+ "Nothing yet...": "אינפורמציה תתקבל בהמשך...",
47
47
  "Ok": "",
48
- "Only visible to you": "",
48
+ "Only visible to you": "גלוי רק לך",
49
49
  "Open Settings": "",
50
50
  "Photo": "",
51
51
  "Photos and Videos": "",
52
52
  "Pin to Conversation": "",
53
- "Pinned by": "",
54
- "Please allow Audio permissions in settings.": "בבקשה, הרשה הרשאות שמע בהגדרות.",
53
+ "Pinned by": " - הוצמד לשיחה",
54
+ "Please allow Audio permissions in settings.": "",
55
55
  "Please enable access to your photos and videos so you can share them.": "",
56
56
  "Please select a channel first": "",
57
57
  "Reconnecting...": "מתחבר מחדש...",
@@ -60,7 +60,7 @@
60
60
  "Resend": "",
61
61
  "Search GIFs": "",
62
62
  "Select More Photos": "",
63
- "Send Anyway": "שלח בכל זאת",
63
+ "Send Anyway": "",
64
64
  "Send a message": "",
65
65
  "Sending links is not allowed in this conversation": "",
66
66
  "Slow mode ON": "",
@@ -76,8 +76,8 @@
76
76
  "You can't send messages in this channel": "",
77
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
78
78
  "{{ index }} of {{ photoLength }}": "",
79
- "{{ replyCount }} Replies": "",
79
+ "{{ replyCount }} Replies": "{{ replyCount }} תגובות",
80
80
  "{{ replyCount }} Thread Replies": "",
81
81
  "{{ user }} is typing": "",
82
- "🏙 Attachment...": ""
82
+ "🏙 Attachment...": "🏙 קובץ מצורף..."
83
83
  }
@@ -1,57 +1,57 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 रिप्लाई",
3
3
  "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
- "Are you sure?": "क्या आप सुनिश्चित हैं?",
8
+ "Are you sure?": "",
9
9
  "Block User": "",
10
10
  "Cancel": "",
11
11
  "Cannot Flag Message": "",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "ध्यान दें कि आपका संदेश दूसरों को कैसा लगा सकता है और सुनिश्चित हों कि आप हमारी सामुदायिक अनुशासन का पालन कर रहे हैं",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Edited": "",
19
+ "Edited": "मैसेज बदला गया है",
20
20
  "Editing Message": "",
21
- "Emoji matching": "",
22
- "Empty message...": "",
21
+ "Emoji matching": "इमोजी मिलान",
22
+ "Empty message...": "खाली संदेश...",
23
23
  "Error loading": "",
24
24
  "Error loading channel list...": "",
25
25
  "Error loading messages for this channel...": "",
26
- "Error while loading, please reload/refresh": "",
26
+ "Error while loading, please reload/refresh": "एरर, रिफ्रेश करे",
27
+ "File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
27
28
  "File type not supported": "",
28
29
  "Flag": "",
29
30
  "Flag Message": "",
30
31
  "Flag action failed either due to a network issue or the message is already flagged": "",
31
- "Hold to start recording.": "रिकॉर्डिंग शुरू करने के लिए दबाएं।",
32
+ "Hold to start recording.": "",
32
33
  "How about sending your first message to a friend?": "",
33
- "Instant Commands": "",
34
+ "Instant Commands": "त्वरित कमांड",
34
35
  "Let's start chatting!": "",
35
36
  "Links are disabled": "",
36
- "Loading channels...": "",
37
- "Loading messages...": "",
38
- "Loading...": "",
39
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
37
+ "Loading channels...": "चैनल लोड हो रहे हैं...",
38
+ "Loading messages...": "मेसेजस लोड हो रहे हैं...",
39
+ "Loading...": "लोड हो रहा है...",
40
40
  "Message Reactions": "",
41
41
  "Message deleted": "मैसेज हटा दिया गया",
42
42
  "Message flagged": "",
43
43
  "Mute User": "",
44
44
  "No chats here yet…": "",
45
- "Not supported": "समर्थित नहीं",
46
- "Nothing yet...": "",
45
+ "Not supported": "",
46
+ "Nothing yet...": "कोई मैसेज नहीं है...",
47
47
  "Ok": "",
48
- "Only visible to you": "",
48
+ "Only visible to you": "केवल आपको दिखाई दे रहा है",
49
49
  "Open Settings": "",
50
50
  "Photo": "",
51
51
  "Photos and Videos": "",
52
52
  "Pin to Conversation": "",
53
- "Pinned by": "",
54
- "Please allow Audio permissions in settings.": "कृपया सेटिंग्स में ऑडियो की अनुमति दें।",
53
+ "Pinned by": "द्वारा पिन किया गया",
54
+ "Please allow Audio permissions in settings.": "",
55
55
  "Please enable access to your photos and videos so you can share them.": "",
56
56
  "Please select a channel first": "",
57
57
  "Reconnecting...": "पुनः कनेक्ट हो...",
@@ -60,7 +60,7 @@
60
60
  "Resend": "",
61
61
  "Search GIFs": "",
62
62
  "Select More Photos": "",
63
- "Send Anyway": "फिर भी भेजें",
63
+ "Send Anyway": "",
64
64
  "Send a message": "",
65
65
  "Sending links is not allowed in this conversation": "",
66
66
  "Slow mode ON": "",
@@ -76,8 +76,8 @@
76
76
  "You can't send messages in this channel": "",
77
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
78
78
  "{{ index }} of {{ photoLength }}": "",
79
- "{{ replyCount }} Replies": "",
79
+ "{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
80
80
  "{{ replyCount }} Thread Replies": "",
81
81
  "{{ user }} is typing": "",
82
- "🏙 Attachment...": ""
82
+ "🏙 Attachment...": "🏙 अटैचमेंट..."
83
83
  }
@@ -1,57 +1,57 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 Risposta",
3
3
  "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
- "Are you sure?": "Sei sicuro?",
8
+ "Are you sure?": "",
9
9
  "Block User": "",
10
10
  "Cancel": "",
11
11
  "Cannot Flag Message": "",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considera come il tuo commento potrebbe far sentire gli altri e assicurati di seguire le nostre Linee guida della community",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Edited": "",
19
+ "Edited": "Modificato",
20
20
  "Editing Message": "",
21
- "Emoji matching": "",
22
- "Empty message...": "",
21
+ "Emoji matching": "Abbinamento emoji",
22
+ "Empty message...": "Message vuoto...",
23
23
  "Error loading": "",
24
24
  "Error loading channel list...": "",
25
25
  "Error loading messages for this channel...": "",
26
- "Error while loading, please reload/refresh": "",
26
+ "Error while loading, please reload/refresh": "Errore durante il caricamento, per favore ricarica la pagina",
27
+ "File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
27
28
  "File type not supported": "",
28
29
  "Flag": "",
29
30
  "Flag Message": "",
30
31
  "Flag action failed either due to a network issue or the message is already flagged": "",
31
- "Hold to start recording.": "Tieni premuto per avviare la registrazione.",
32
+ "Hold to start recording.": "",
32
33
  "How about sending your first message to a friend?": "",
33
- "Instant Commands": "",
34
+ "Instant Commands": "Comandi Istantanei",
34
35
  "Let's start chatting!": "",
35
36
  "Links are disabled": "",
36
- "Loading channels...": "",
37
- "Loading messages...": "",
38
- "Loading...": "",
39
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
37
+ "Loading channels...": "Caricamento canali in corso...",
38
+ "Loading messages...": "Caricamento messaggi...",
39
+ "Loading...": "Caricamento...",
40
40
  "Message Reactions": "",
41
41
  "Message deleted": "Messaggio cancellato",
42
42
  "Message flagged": "",
43
43
  "Mute User": "",
44
44
  "No chats here yet…": "",
45
- "Not supported": "non supportato",
46
- "Nothing yet...": "",
45
+ "Not supported": "",
46
+ "Nothing yet...": "Ancora niente...",
47
47
  "Ok": "",
48
- "Only visible to you": "",
48
+ "Only visible to you": "Visibile solo a te",
49
49
  "Open Settings": "",
50
50
  "Photo": "",
51
51
  "Photos and Videos": "",
52
52
  "Pin to Conversation": "",
53
- "Pinned by": "",
54
- "Please allow Audio permissions in settings.": "Si prega di consentire le autorizzazioni audio nelle impostazioni.",
53
+ "Pinned by": "Fissato da",
54
+ "Please allow Audio permissions in settings.": "",
55
55
  "Please enable access to your photos and videos so you can share them.": "",
56
56
  "Please select a channel first": "",
57
57
  "Reconnecting...": "Ricollegarsi...",
@@ -60,7 +60,7 @@
60
60
  "Resend": "",
61
61
  "Search GIFs": "",
62
62
  "Select More Photos": "",
63
- "Send Anyway": "Invia comunque",
63
+ "Send Anyway": "",
64
64
  "Send a message": "",
65
65
  "Sending links is not allowed in this conversation": "",
66
66
  "Slow mode ON": "",
@@ -76,8 +76,8 @@
76
76
  "You can't send messages in this channel": "",
77
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
78
78
  "{{ index }} of {{ photoLength }}": "",
79
- "{{ replyCount }} Replies": "",
79
+ "{{ replyCount }} Replies": "{{ replyCount }} Risposte",
80
80
  "{{ replyCount }} Thread Replies": "",
81
81
  "{{ user }} is typing": "",
82
- "🏙 Attachment...": ""
82
+ "🏙 Attachment...": "🏙 Allegato..."
83
83
  }