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.
Files changed (92) 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/components/MessageList/MessageList.js +2 -2
  8. package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
  9. package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +89 -76
  10. package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
  11. package/lib/commonjs/contexts/messageInputContext/utils/utils.js +66 -0
  12. package/lib/commonjs/contexts/messageInputContext/utils/utils.js.map +1 -0
  13. package/lib/commonjs/i18n/en.json +2 -2
  14. package/lib/commonjs/i18n/es.json +64 -64
  15. package/lib/commonjs/i18n/fr.json +64 -64
  16. package/lib/commonjs/i18n/he.json +64 -64
  17. package/lib/commonjs/i18n/hi.json +64 -64
  18. package/lib/commonjs/i18n/it.json +64 -64
  19. package/lib/commonjs/i18n/ja.json +64 -64
  20. package/lib/commonjs/i18n/ko.json +64 -64
  21. package/lib/commonjs/i18n/nl.json +64 -64
  22. package/lib/commonjs/i18n/pt-BR.json +64 -64
  23. package/lib/commonjs/i18n/ru.json +64 -64
  24. package/lib/commonjs/i18n/tr.json +64 -64
  25. package/lib/commonjs/version.json +1 -1
  26. package/lib/module/components/Chat/hooks/useAppSettings.js +2 -4
  27. package/lib/module/components/Chat/hooks/useAppSettings.js.map +1 -1
  28. package/lib/module/components/MessageInput/FileUploadPreview.js +5 -6
  29. package/lib/module/components/MessageInput/FileUploadPreview.js.map +1 -1
  30. package/lib/module/components/MessageInput/MessageInput.js +4 -26
  31. package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
  32. package/lib/module/components/MessageList/MessageList.js +2 -2
  33. package/lib/module/components/MessageList/MessageList.js.map +1 -1
  34. package/lib/module/contexts/messageInputContext/MessageInputContext.js +89 -76
  35. package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
  36. package/lib/module/contexts/messageInputContext/utils/utils.js +66 -0
  37. package/lib/module/contexts/messageInputContext/utils/utils.js.map +1 -0
  38. package/lib/module/i18n/en.json +2 -2
  39. package/lib/module/i18n/es.json +64 -64
  40. package/lib/module/i18n/fr.json +64 -64
  41. package/lib/module/i18n/he.json +64 -64
  42. package/lib/module/i18n/hi.json +64 -64
  43. package/lib/module/i18n/it.json +64 -64
  44. package/lib/module/i18n/ja.json +64 -64
  45. package/lib/module/i18n/ko.json +64 -64
  46. package/lib/module/i18n/nl.json +64 -64
  47. package/lib/module/i18n/pt-BR.json +64 -64
  48. package/lib/module/i18n/ru.json +64 -64
  49. package/lib/module/i18n/tr.json +64 -64
  50. package/lib/module/version.json +1 -1
  51. package/lib/typescript/components/Chat/hooks/useAppSettings.d.ts.map +1 -1
  52. package/lib/typescript/components/MessageInput/FileUploadPreview.d.ts.map +1 -1
  53. package/lib/typescript/components/MessageInput/MessageInput.d.ts.map +1 -1
  54. package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
  55. package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts.map +1 -1
  56. package/lib/typescript/contexts/messageInputContext/utils/utils.d.ts +22 -0
  57. package/lib/typescript/contexts/messageInputContext/utils/utils.d.ts.map +1 -0
  58. package/lib/typescript/i18n/en.json +2 -2
  59. package/lib/typescript/i18n/es.json +64 -64
  60. package/lib/typescript/i18n/fr.json +64 -64
  61. package/lib/typescript/i18n/he.json +64 -64
  62. package/lib/typescript/i18n/hi.json +64 -64
  63. package/lib/typescript/i18n/it.json +64 -64
  64. package/lib/typescript/i18n/ja.json +64 -64
  65. package/lib/typescript/i18n/ko.json +64 -64
  66. package/lib/typescript/i18n/nl.json +64 -64
  67. package/lib/typescript/i18n/pt-BR.json +64 -64
  68. package/lib/typescript/i18n/ru.json +64 -64
  69. package/lib/typescript/i18n/tr.json +64 -64
  70. package/lib/typescript/utils/Streami18n.d.ts +1 -1
  71. package/package.json +1 -1
  72. package/src/components/Chat/hooks/useAppSettings.ts +4 -6
  73. package/src/components/MessageInput/FileUploadPreview.tsx +2 -3
  74. package/src/components/MessageInput/MessageInput.tsx +4 -45
  75. package/src/components/MessageList/MessageList.tsx +5 -2
  76. package/src/contexts/messageInputContext/MessageInputContext.tsx +60 -55
  77. package/src/contexts/messageInputContext/__tests__/MessageInputContext.test.tsx +9 -0
  78. package/src/contexts/messageInputContext/__tests__/pickFile.test.tsx +8 -3
  79. package/src/contexts/messageInputContext/utils/utils.ts +86 -0
  80. package/src/i18n/en.json +2 -2
  81. package/src/i18n/es.json +64 -64
  82. package/src/i18n/fr.json +64 -64
  83. package/src/i18n/he.json +64 -64
  84. package/src/i18n/hi.json +64 -64
  85. package/src/i18n/it.json +64 -64
  86. package/src/i18n/ja.json +64 -64
  87. package/src/i18n/ko.json +64 -64
  88. package/src/i18n/nl.json +64 -64
  89. package/src/i18n/pt-BR.json +64 -64
  90. package/src/i18n/ru.json +64 -64
  91. package/src/i18n/tr.json +64 -64
  92. 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,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": "1 respuesta de hilo",
4
- "Allow access to your Gallery": "Permitir acceso a tu galería",
5
- "Allow camera access in device settings": "Permitir el acceso a la cámara en la configuración del dispositivo",
6
- "Also send to channel": "También enviar al canal",
7
- "Are you sure you want to permanently delete this message?": "¿Estás seguro de que deseas eliminar permanentemente este mensaje?",
8
- "Are you sure?": "¿Estás seguro?",
9
- "Block User": "Bloquear usuario",
10
- "Cancel": "Cancelar",
11
- "Cannot Flag Message": "No se puede reportar el mensaje",
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",
13
- "Copy Message": "Copiar mensaje",
14
- "Delete": "Eliminar",
15
- "Delete Message": "Eliminar mensaje",
16
- "Device camera is used to take photos or videos.": "La cámara del dispositivo se utiliza para tomar fotografías o vídeos.",
17
- "Do you want to send a copy of this message to a moderator for further investigation?": "¿Deseas enviar una copia de este mensaje a un moderador para una investigación adicional?",
18
- "Edit Message": "Editar mensaje",
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": "Editando mensaje",
20
+ "Editing Message": "",
21
21
  "Emoji matching": "Coincidencia de emoji",
22
22
  "Empty message...": "Mensaje vacío...",
23
- "Error loading": "Error al cargar",
24
- "Error loading channel list...": "Error al cargar la lista de canales...",
25
- "Error loading messages for this channel...": "Error al cargar los mensajes de este canal...",
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 type not supported": "Tipo de archivo no admitido",
28
- "Flag": "Reportar",
29
- "Flag Message": "Reportar mensaje",
30
- "Flag action failed either due to a network issue or the message is already flagged": "El reporte falló debido a un problema de red o el mensaje ya fue reportado.",
31
- "Hold to start recording.": "Mantén presionado para comenzar a grabar.",
32
- "How about sending your first message to a friend?": "¿Qué tal enviar tu primer mensaje a un amigo?",
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!": "¡Empecemos a charlar!",
35
- "Links are disabled": "Los enlaces están desactivados",
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
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "El archivo supera el tamaño máximo permitido. Por favor, selecciona un archivo menor a {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
40
- "Message Reactions": "Reacciones al mensaje",
40
+ "Message Reactions": "",
41
41
  "Message deleted": "Mensaje eliminado",
42
- "Message flagged": "Mensaje reportado",
43
- "Mute User": "Silenciar usuario",
44
- "No chats here yet…": "No hay chats aquí todavía...",
45
- "Not supported": "No admitido",
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": "Aceptar",
47
+ "Ok": "",
48
48
  "Only visible to you": "Solo visible para ti",
49
- "Open Settings": "Configuración abierta",
50
- "Photo": "Foto",
51
- "Photos and Videos": "Fotos y videos",
52
- "Pin to Conversation": "Fijar a la conversación",
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.": "Por favor, permita los permisos de audio en la configuración.",
55
- "Please enable access to your photos and videos so you can share them.": "Por favor, habilita el acceso a tus fotos y videos para poder compartirlos.",
56
- "Please select a channel first": "Por favor, selecciona primero un canal",
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": "Responder",
59
- "Reply to Message": "Responder al mensaje",
60
- "Resend": "Reenviar",
61
- "Search GIFs": "Buscar GIFs",
62
- "Select More Photos": "Seleccionar más fotos",
63
- "Send Anyway": "Enviar de todos modos",
64
- "Send a message": "Enviar un mensaje",
65
- "Sending links is not allowed in this conversation": "No está permitido enviar enlaces en esta conversación",
66
- "Slow mode ON": "Modo lento ACTIVADO",
67
- "The message has been reported to a moderator.": "El mensaje ha sido reportado a un moderador.",
68
- "Thread Reply": "Respuesta de hilo",
69
- "Unblock User": "Desbloquear usuario",
70
- "Unknown User": "Usuario desconocido",
71
- "Unmute User": "Activar sonido del usuario",
72
- "Unpin from Conversation": "Desmarcar de la conversación",
73
- "Unread Messages": "Mensajes no leídos",
74
- "Video": "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": "No puedes enviar mensajes en este canal",
77
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} y {{ nonSelfUserLength }} más están escribiendo",
78
- "{{ index }} of {{ photoLength }}": "{{ index }} de {{ 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": "{{ replyCount }} respuestas de hilo",
81
- "{{ user }} is typing": "{{ user }} está escribiendo",
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": "Réponse à 1 fil",
4
- "Allow access to your Gallery": "Autoriser l'accès à votre galerie",
5
- "Allow camera access in device settings": "Autoriser l'accès à la caméra dans les paramètres de l'appareil",
6
- "Also send to channel": "Envoyer également à la chaîne",
7
- "Are you sure you want to permanently delete this message?": "Êtes-vous sûr de vouloir supprimer définitivement ce message?",
8
- "Are you sure?": "Es-tu sûr ?",
9
- "Block User": "Bloquer un utilisateur",
10
- "Cancel": "Annuler",
11
- "Cannot Flag Message": "Impossible de signaler le 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",
13
- "Copy Message": "Copier le message",
14
- "Delete": "Supprimer",
15
- "Delete Message": "Supprimer un message",
16
- "Device camera is used to take photos or videos.": "L'appareil photo de l'appareil est utilisé pour prendre des photos ou des vidéos.",
17
- "Do you want to send a copy of this message to a moderator for further investigation?": "Voulez-vous envoyer une copie de ce message à un modérateur pour une enquête plus approfondie?",
18
- "Edit Message": "Éditer un 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": "Édite un message",
20
+ "Editing Message": "",
21
21
  "Emoji matching": "Correspondance Emoji",
22
22
  "Empty message...": "Message vide...",
23
- "Error loading": "Erreur lors du chargement",
24
- "Error loading channel list...": "Erreur lors du chargement de la liste de canaux...",
25
- "Error loading messages for this channel...": "Erreur lors du chargement des messages de ce canal...",
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 type not supported": "Le type de fichier n'est pas pris en charge",
28
- "Flag": "Signaler",
29
- "Flag Message": "Signaler le message",
30
- "Flag action failed either due to a network issue or the message is already flagged": "L'action de signalisation a échoué en raison d'un problème de réseau ou le message est déjà signalé.",
31
- "Hold to start recording.": "Hold to start recording.",
32
- "How about sending your first message to a friend?": "Et si vous envoyiez votre premier message à un ami ?",
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!": "Commençons à discuter !",
35
- "Links are disabled": "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
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Taille maximale de téléchargement de fichier atteinte. Veuillez télécharger un fichier inférieur à {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} Mo.",
40
- "Message Reactions": "Réactions aux messages",
40
+ "Message Reactions": "",
41
41
  "Message deleted": "Message supprimé",
42
- "Message flagged": "Message signalé",
43
- "Mute User": "Utilisateur muet",
44
- "No chats here yet…": "Pas de discussions ici pour le moment…",
45
- "Not supported": "Non pris en charge",
42
+ "Message flagged": "",
43
+ "Mute User": "",
44
+ "No chats here yet…": "",
45
+ "Not supported": "",
46
46
  "Nothing yet...": "Aucun message...",
47
- "Ok": "Ok",
47
+ "Ok": "",
48
48
  "Only visible to you": "Seulement visible par vous",
49
- "Open Settings": "Ouvrir les paramètres",
50
- "Photo": "Photo",
51
- "Photos and Videos": "Photos et vidéos",
52
- "Pin to Conversation": "Épingler à la 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.": "Veuillez autoriser les permissions audio dans les paramètres.",
55
- "Please enable access to your photos and videos so you can share them.": "Veuillez autoriser l'accès à vos photos et vidéos afin de pouvoir les partager.",
56
- "Please select a channel first": "Veuillez d'abord selectionnez un canal",
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": "Répondre",
59
- "Reply to Message": "Répondre au message",
60
- "Resend": "Renvoyer",
61
- "Search GIFs": "Rechercher des GIF",
62
- "Select More Photos": "Sélectionner plus de photos",
63
- "Send Anyway": "Envoyer quand même",
64
- "Send a message": "Envoyer un message",
65
- "Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
66
- "Slow mode ON": "Mode lent activé",
67
- "The message has been reported to a moderator.": "Le message a été signalé à un modérateur.",
68
- "Thread Reply": "Réponse à la discussion",
69
- "Unblock User": "Débloquer Utilisateur",
70
- "Unknown User": "Utilisateur inconnu",
71
- "Unmute User": "Activer le son de Utilisateur",
72
- "Unpin from Conversation": "Décrocher de la conversation",
73
- "Unread Messages": "Messages non lus",
74
- "Video": "Vidéo",
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": "You can't send messages in this channel",
77
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
78
- "{{ index }} of {{ photoLength }}": "{{ index }} sur {{ 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": "{{replyCount}} Réponses à la discussion",
81
- "{{ user }} is typing": "{{ user }} est en train d'écrire",
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 type not supported": "סוג הקובץ אינו נתמך",
28
- "Flag": "סמן",
29
- "Flag Message": "סמן הודעה",
30
- "Flag action failed either due to a network issue or the message is already flagged": "פעולת הסימון נכשלה בגלל בעיית רשת או שההודעה כבר סומנה.",
31
- "Hold to start recording.": "לחץ והחזק כדי להתחיל להקליט.",
32
- "How about sending your first message to a friend?": "מה דעתך לשלוח את ההודעה הראשונה שלך לחבר?",
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
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "הגעת למגבלת העלאת גודל הקובץ המקסימלית. אנא העלה קובץ מתחת ל-{{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB",
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": "חפש/י 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": "{{ firstUser }} ו-{{ nonSelfUserLength }} משתמש/ים אחר/ים מקלידים",
78
- "{{ index }} of {{ photoLength }}": "{{ index }} מתוך {{ 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": "{{ replyCount }} תגובות שרשור",
81
- "{{ user }} is typing": "{{ user }} מקליד/ה",
80
+ "{{ replyCount }} Thread Replies": "",
81
+ "{{ user }} is typing": "",
82
82
  "🏙 Attachment...": "🏙 קובץ מצורף..."
83
83
  }