stream-chat-react-native-core 5.26.0-beta.2 → 5.26.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/lib/commonjs/components/Channel/Channel.js +49 -35
  2. package/lib/commonjs/components/Channel/Channel.js.map +1 -1
  3. package/lib/commonjs/components/Channel/hooks/useTargetedMessage.js +5 -0
  4. package/lib/commonjs/components/Channel/hooks/useTargetedMessage.js.map +1 -1
  5. package/lib/commonjs/i18n/es.json +24 -24
  6. package/lib/commonjs/i18n/fr.json +24 -24
  7. package/lib/commonjs/i18n/he.json +24 -24
  8. package/lib/commonjs/i18n/hi.json +24 -24
  9. package/lib/commonjs/i18n/it.json +24 -24
  10. package/lib/commonjs/i18n/ja.json +24 -24
  11. package/lib/commonjs/i18n/ko.json +24 -24
  12. package/lib/commonjs/i18n/nl.json +24 -24
  13. package/lib/commonjs/i18n/pt-BR.json +24 -24
  14. package/lib/commonjs/i18n/ru.json +24 -24
  15. package/lib/commonjs/i18n/tr.json +24 -24
  16. package/lib/commonjs/version.json +1 -1
  17. package/lib/module/components/Channel/Channel.js +49 -35
  18. package/lib/module/components/Channel/Channel.js.map +1 -1
  19. package/lib/module/components/Channel/hooks/useTargetedMessage.js +5 -0
  20. package/lib/module/components/Channel/hooks/useTargetedMessage.js.map +1 -1
  21. package/lib/module/i18n/es.json +24 -24
  22. package/lib/module/i18n/fr.json +24 -24
  23. package/lib/module/i18n/he.json +24 -24
  24. package/lib/module/i18n/hi.json +24 -24
  25. package/lib/module/i18n/it.json +24 -24
  26. package/lib/module/i18n/ja.json +24 -24
  27. package/lib/module/i18n/ko.json +24 -24
  28. package/lib/module/i18n/nl.json +24 -24
  29. package/lib/module/i18n/pt-BR.json +24 -24
  30. package/lib/module/i18n/ru.json +24 -24
  31. package/lib/module/i18n/tr.json +24 -24
  32. package/lib/module/version.json +1 -1
  33. package/lib/typescript/components/Channel/hooks/useTargetedMessage.d.ts +1 -0
  34. package/lib/typescript/i18n/es.json +24 -24
  35. package/lib/typescript/i18n/fr.json +24 -24
  36. package/lib/typescript/i18n/he.json +24 -24
  37. package/lib/typescript/i18n/hi.json +24 -24
  38. package/lib/typescript/i18n/it.json +24 -24
  39. package/lib/typescript/i18n/ja.json +24 -24
  40. package/lib/typescript/i18n/ko.json +24 -24
  41. package/lib/typescript/i18n/nl.json +24 -24
  42. package/lib/typescript/i18n/pt-BR.json +24 -24
  43. package/lib/typescript/i18n/ru.json +24 -24
  44. package/lib/typescript/i18n/tr.json +24 -24
  45. package/package.json +1 -1
  46. package/src/components/Channel/Channel.tsx +38 -21
  47. package/src/components/Channel/hooks/useTargetedMessage.ts +6 -0
  48. package/src/i18n/es.json +24 -24
  49. package/src/i18n/fr.json +24 -24
  50. package/src/i18n/he.json +24 -24
  51. package/src/i18n/hi.json +24 -24
  52. package/src/i18n/it.json +24 -24
  53. package/src/i18n/ja.json +24 -24
  54. package/src/i18n/ko.json +24 -24
  55. package/src/i18n/nl.json +24 -24
  56. package/src/i18n/pt-BR.json +24 -24
  57. package/src/i18n/ru.json +24 -24
  58. package/src/i18n/tr.json +24 -24
  59. package/src/version.json +1 -1
@@ -11,6 +11,10 @@ var useTargetedMessage = function useTargetedMessage(messageId) {
11
11
  _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
12
12
  targetedMessage = _useState2[0],
13
13
  setTargetedMessage = _useState2[1];
14
+ var prevTargetedMessageRef = (0, _react.useRef)();
15
+ (0, _react.useEffect)(function () {
16
+ prevTargetedMessageRef.current = targetedMessage;
17
+ }, [targetedMessage]);
14
18
  (0, _react.useEffect)(function () {
15
19
  clearTargetedMessageCall.current = setTimeout(function () {
16
20
  setTargetedMessage(undefined);
@@ -27,6 +31,7 @@ var useTargetedMessage = function useTargetedMessage(messageId) {
27
31
  setTargetedMessage(messageId);
28
32
  });
29
33
  return {
34
+ prevTargetedMessage: prevTargetedMessageRef.current,
30
35
  setTargetedMessage: setTargetedMessageTimeoutRef.current,
31
36
  targetedMessage: targetedMessage
32
37
  };
@@ -1 +1 @@
1
- {"version":3,"names":["_react","require","useTargetedMessage","messageId","clearTargetedMessageCall","useRef","_useState","useState","_useState2","_slicedToArray2","targetedMessage","setTargetedMessage","useEffect","current","setTimeout","undefined","clearTimeout","setTargetedMessageTimeoutRef","exports"],"sources":["useTargetedMessage.ts"],"sourcesContent":["import { useEffect, useRef, useState } from 'react';\n\nexport const useTargetedMessage = (messageId?: string) => {\n const clearTargetedMessageCall = useRef<ReturnType<typeof setTimeout>>();\n const [targetedMessage, setTargetedMessage] = useState(messageId);\n\n useEffect(() => {\n clearTargetedMessageCall.current = setTimeout(() => {\n setTargetedMessage(undefined);\n }, 3000);\n\n return () => {\n clearTargetedMessageCall.current && clearTimeout(clearTargetedMessageCall.current);\n };\n }, []);\n\n const setTargetedMessageTimeoutRef = useRef((messageId: string) => {\n clearTargetedMessageCall.current && clearTimeout(clearTargetedMessageCall.current);\n\n clearTargetedMessageCall.current = setTimeout(() => {\n setTargetedMessage(undefined);\n }, 3000);\n\n setTargetedMessage(messageId);\n });\n\n return {\n setTargetedMessage: setTargetedMessageTimeoutRef.current,\n targetedMessage,\n };\n};\n"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAEO,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkBA,CAAIC,SAAkB,EAAK;EACxD,IAAMC,wBAAwB,GAAG,IAAAC,aAAM,EAAgC,CAAC;EACxE,IAAAC,SAAA,GAA8C,IAAAC,eAAQ,EAACJ,SAAS,CAAC;IAAAK,UAAA,OAAAC,eAAA,aAAAH,SAAA;IAA1DI,eAAe,GAAAF,UAAA;IAAEG,kBAAkB,GAAAH,UAAA;EAE1C,IAAAI,gBAAS,EAAC,YAAM;IACdR,wBAAwB,CAACS,OAAO,GAAGC,UAAU,CAAC,YAAM;MAClDH,kBAAkB,CAACI,SAAS,CAAC;IAC/B,CAAC,EAAE,IAAI,CAAC;IAER,OAAO,YAAM;MACXX,wBAAwB,CAACS,OAAO,IAAIG,YAAY,CAACZ,wBAAwB,CAACS,OAAO,CAAC;IACpF,CAAC;EACH,CAAC,EAAE,EAAE,CAAC;EAEN,IAAMI,4BAA4B,GAAG,IAAAZ,aAAM,EAAC,UAACF,SAAiB,EAAK;IACjEC,wBAAwB,CAACS,OAAO,IAAIG,YAAY,CAACZ,wBAAwB,CAACS,OAAO,CAAC;IAElFT,wBAAwB,CAACS,OAAO,GAAGC,UAAU,CAAC,YAAM;MAClDH,kBAAkB,CAACI,SAAS,CAAC;IAC/B,CAAC,EAAE,IAAI,CAAC;IAERJ,kBAAkB,CAACR,SAAS,CAAC;EAC/B,CAAC,CAAC;EAEF,OAAO;IACLQ,kBAAkB,EAAEM,4BAA4B,CAACJ,OAAO;IACxDH,eAAe,EAAfA;EACF,CAAC;AACH,CAAC;AAACQ,OAAA,CAAAhB,kBAAA,GAAAA,kBAAA"}
1
+ {"version":3,"names":["_react","require","useTargetedMessage","messageId","clearTargetedMessageCall","useRef","_useState","useState","_useState2","_slicedToArray2","targetedMessage","setTargetedMessage","prevTargetedMessageRef","useEffect","current","setTimeout","undefined","clearTimeout","setTargetedMessageTimeoutRef","prevTargetedMessage","exports"],"sources":["useTargetedMessage.ts"],"sourcesContent":["import { useEffect, useRef, useState } from 'react';\n\nexport const useTargetedMessage = (messageId?: string) => {\n const clearTargetedMessageCall = useRef<ReturnType<typeof setTimeout>>();\n const [targetedMessage, setTargetedMessage] = useState(messageId);\n const prevTargetedMessageRef = useRef<string>();\n\n useEffect(() => {\n prevTargetedMessageRef.current = targetedMessage;\n }, [targetedMessage]);\n\n useEffect(() => {\n clearTargetedMessageCall.current = setTimeout(() => {\n setTargetedMessage(undefined);\n }, 3000);\n\n return () => {\n clearTargetedMessageCall.current && clearTimeout(clearTargetedMessageCall.current);\n };\n }, []);\n\n const setTargetedMessageTimeoutRef = useRef((messageId: string) => {\n clearTargetedMessageCall.current && clearTimeout(clearTargetedMessageCall.current);\n\n clearTargetedMessageCall.current = setTimeout(() => {\n setTargetedMessage(undefined);\n }, 3000);\n\n setTargetedMessage(messageId);\n });\n\n return {\n prevTargetedMessage: prevTargetedMessageRef.current,\n setTargetedMessage: setTargetedMessageTimeoutRef.current,\n targetedMessage,\n };\n};\n"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,OAAA;AAEO,IAAMC,kBAAkB,GAAG,SAArBA,kBAAkBA,CAAIC,SAAkB,EAAK;EACxD,IAAMC,wBAAwB,GAAG,IAAAC,aAAM,EAAgC,CAAC;EACxE,IAAAC,SAAA,GAA8C,IAAAC,eAAQ,EAACJ,SAAS,CAAC;IAAAK,UAAA,OAAAC,eAAA,aAAAH,SAAA;IAA1DI,eAAe,GAAAF,UAAA;IAAEG,kBAAkB,GAAAH,UAAA;EAC1C,IAAMI,sBAAsB,GAAG,IAAAP,aAAM,EAAS,CAAC;EAE/C,IAAAQ,gBAAS,EAAC,YAAM;IACdD,sBAAsB,CAACE,OAAO,GAAGJ,eAAe;EAClD,CAAC,EAAE,CAACA,eAAe,CAAC,CAAC;EAErB,IAAAG,gBAAS,EAAC,YAAM;IACdT,wBAAwB,CAACU,OAAO,GAAGC,UAAU,CAAC,YAAM;MAClDJ,kBAAkB,CAACK,SAAS,CAAC;IAC/B,CAAC,EAAE,IAAI,CAAC;IAER,OAAO,YAAM;MACXZ,wBAAwB,CAACU,OAAO,IAAIG,YAAY,CAACb,wBAAwB,CAACU,OAAO,CAAC;IACpF,CAAC;EACH,CAAC,EAAE,EAAE,CAAC;EAEN,IAAMI,4BAA4B,GAAG,IAAAb,aAAM,EAAC,UAACF,SAAiB,EAAK;IACjEC,wBAAwB,CAACU,OAAO,IAAIG,YAAY,CAACb,wBAAwB,CAACU,OAAO,CAAC;IAElFV,wBAAwB,CAACU,OAAO,GAAGC,UAAU,CAAC,YAAM;MAClDJ,kBAAkB,CAACK,SAAS,CAAC;IAC/B,CAAC,EAAE,IAAI,CAAC;IAERL,kBAAkB,CAACR,SAAS,CAAC;EAC/B,CAAC,CAAC;EAEF,OAAO;IACLgB,mBAAmB,EAAEP,sBAAsB,CAACE,OAAO;IACnDH,kBAAkB,EAAEO,4BAA4B,CAACJ,OAAO;IACxDJ,eAAe,EAAfA;EACF,CAAC;AACH,CAAC;AAACU,OAAA,CAAAlB,kBAAA,GAAAA,kBAAA"}
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 respuesta",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "",
5
- "Allow camera access in device settings": "",
6
- "Also send to channel": "También enviar al canal",
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": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,22 +13,22 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "",
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
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
20
- "Emoji matching": "",
19
+ "Editing Message": "Editando mensaje",
20
+ "Emoji matching": "Coincidencia de emoji",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "",
26
+ "File type not supported": "Tipo de archivo no admitido",
27
27
  "Flag": "",
28
28
  "Flag Message": "",
29
29
  "Flag action failed either due to a network issue or the message is already flagged": "",
30
30
  "How about sending your first message to a friend?": "",
31
- "Instant Commands": "",
31
+ "Instant Commands": "Comandos instantáneos",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
34
  "Loading channels...": "",
@@ -42,37 +42,37 @@
42
42
  "Not supported": "",
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
- "Only visible to you": "Solo visible para ti",
46
- "Open Settings": "",
47
- "Photo": "",
48
- "Photos and Videos": "",
45
+ "Only visible to you": "",
46
+ "Open Settings": "Configuración abierta",
47
+ "Photo": "Foto",
48
+ "Photos and Videos": "Fotos y videos",
49
49
  "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
- "Please enable access to your photos and videos so you can share them.": "",
51
+ "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.",
52
52
  "Please select a channel first": "",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "",
55
+ "Reply to Message": "Responder al mensaje",
56
56
  "Resend": "",
57
- "Search GIFs": "",
58
- "Select More Photos": "",
57
+ "Search GIFs": "Buscar GIFs",
58
+ "Select More Photos": "Seleccionar más fotos",
59
59
  "Send Anyway": "",
60
- "Send a message": "",
60
+ "Send a message": "Enviar un mensaje",
61
61
  "Sending links is not allowed in this conversation": "",
62
- "Slow mode ON": "",
62
+ "Slow mode ON": "Modo lento ACTIVADO",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "",
66
+ "Unknown User": "Usuario desconocido",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "Video",
71
71
  "You": "",
72
- "You can't send messages in this channel": "No puedes enviar mensajes en este canal",
72
+ "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "",
75
- "{{ replyCount }} Replies": "",
74
+ "{{ index }} of {{ photoLength }}": "{{ index }} de {{ photoLength }}",
75
+ "{{ replyCount }} Replies": "{{ replyCount }} Respuestas",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 Réponse",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "",
5
- "Allow camera access in device settings": "",
6
- "Also send to channel": "Envoyer également à la chaîne",
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": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,22 +13,22 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "",
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
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
20
- "Emoji matching": "",
19
+ "Editing Message": "Édite un message",
20
+ "Emoji matching": "Correspondance Emoji",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "",
26
+ "File type not supported": "Le type de fichier n'est pas pris en charge",
27
27
  "Flag": "",
28
28
  "Flag Message": "",
29
29
  "Flag action failed either due to a network issue or the message is already flagged": "",
30
30
  "How about sending your first message to a friend?": "",
31
- "Instant Commands": "",
31
+ "Instant Commands": "Commandes Instantanées",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
34
  "Loading channels...": "",
@@ -42,37 +42,37 @@
42
42
  "Not supported": "",
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
- "Only visible to you": "Seulement visible par vous",
46
- "Open Settings": "",
47
- "Photo": "",
48
- "Photos and Videos": "",
45
+ "Only visible to you": "",
46
+ "Open Settings": "Ouvrir les paramètres",
47
+ "Photo": "Photo",
48
+ "Photos and Videos": "Photos et vidéos",
49
49
  "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
- "Please enable access to your photos and videos so you can share them.": "",
51
+ "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.",
52
52
  "Please select a channel first": "",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "",
55
+ "Reply to Message": "Répondre au message",
56
56
  "Resend": "",
57
- "Search GIFs": "",
58
- "Select More Photos": "",
57
+ "Search GIFs": "Rechercher des GIF",
58
+ "Select More Photos": "Sélectionner plus de photos",
59
59
  "Send Anyway": "",
60
- "Send a message": "",
60
+ "Send a message": "Envoyer un message",
61
61
  "Sending links is not allowed in this conversation": "",
62
- "Slow mode ON": "",
62
+ "Slow mode ON": "Mode lent activé",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "",
66
+ "Unknown User": "Utilisateur inconnu",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "Vidéo",
71
71
  "You": "",
72
- "You can't send messages in this channel": "You can't send messages in this channel",
72
+ "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "",
75
- "{{ replyCount }} Replies": "",
74
+ "{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
75
+ "{{ replyCount }} Replies": "{{ replyCount }} Réponses",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "תגובה אחת",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "",
5
- "Allow camera access in device settings": "",
6
- "Also send to channel": "שלח/י הודעה לשיחה",
4
+ "Allow access to your Gallery": "אפשר גישה לגלריה שלך",
5
+ "Allow camera access in device settings": "אפשר גישה למצלמה בהגדרות המכשיר",
6
+ "Also send to channel": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,22 +13,22 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "",
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
- "Editing Message": "",
20
- "Emoji matching": "",
19
+ "Editing Message": "הודעה בעריכה",
20
+ "Emoji matching": "התאמת אמוג'י",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "",
26
+ "File type not supported": "סוג הקובץ אינו נתמך",
27
27
  "Flag": "",
28
28
  "Flag Message": "",
29
29
  "Flag action failed either due to a network issue or the message is already flagged": "",
30
30
  "How about sending your first message to a friend?": "",
31
- "Instant Commands": "",
31
+ "Instant Commands": "פעולות מיידיות",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
34
  "Loading channels...": "",
@@ -42,37 +42,37 @@
42
42
  "Not supported": "",
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
- "Only visible to you": "גלוי רק לך",
46
- "Open Settings": "",
47
- "Photo": "",
48
- "Photos and Videos": "",
45
+ "Only visible to you": "",
46
+ "Open Settings": "פתח את ההגדרות",
47
+ "Photo": "תמונה",
48
+ "Photos and Videos": "תמונות ווידאו",
49
49
  "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
- "Please enable access to your photos and videos so you can share them.": "",
51
+ "Please enable access to your photos and videos so you can share them.": "אפשר/י גישה לתמונות ולסרטונים שלך כדי שתוכל/י לשתף אותם.",
52
52
  "Please select a channel first": "",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "",
55
+ "Reply to Message": "השב/י להודעה",
56
56
  "Resend": "",
57
- "Search GIFs": "",
58
- "Select More Photos": "",
57
+ "Search GIFs": "חפש/י GIFs",
58
+ "Select More Photos": "בחר עוד תמונות",
59
59
  "Send Anyway": "",
60
- "Send a message": "",
60
+ "Send a message": "שלח/י הודעה",
61
61
  "Sending links is not allowed in this conversation": "",
62
- "Slow mode ON": "",
62
+ "Slow mode ON": "מצב איטי מופעל",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "",
66
+ "Unknown User": "משתמש לא ידוע",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "וִידֵאוֹ",
71
71
  "You": "",
72
- "You can't send messages in this channel": "את/ב לא יכול/ה לשלוח הודעות בשיחה זו",
72
+ "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "",
75
- "{{ replyCount }} Replies": "",
74
+ "{{ index }} of {{ photoLength }}": "{{ index }} מתוך {{ photoLength }}",
75
+ "{{ replyCount }} Replies": "{{ replyCount }} תגובות",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 रिप्लाई",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "",
5
- "Allow camera access in device settings": "",
6
- "Also send to channel": "चैनल को भी भेजें",
4
+ "Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
5
+ "Allow camera access in device settings": "डिवाइस सेटिंग्स में कैमरा एक्सेस की अनुमति दें",
6
+ "Also send to channel": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,22 +13,22 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "",
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
- "Editing Message": "",
20
- "Emoji matching": "",
19
+ "Editing Message": "मैसेज बदला जा रहा है",
20
+ "Emoji matching": "इमोजी मिलान",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "",
26
+ "File type not supported": "फ़ाइल प्रकार समर्थित नहीं है",
27
27
  "Flag": "",
28
28
  "Flag Message": "",
29
29
  "Flag action failed either due to a network issue or the message is already flagged": "",
30
30
  "How about sending your first message to a friend?": "",
31
- "Instant Commands": "",
31
+ "Instant Commands": "त्वरित कमांड",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
34
  "Loading channels...": "",
@@ -42,37 +42,37 @@
42
42
  "Not supported": "",
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
- "Only visible to you": "केवल आपको दिखाई दे रहा है",
46
- "Open Settings": "",
47
- "Photo": "",
48
- "Photos and Videos": "",
45
+ "Only visible to you": "",
46
+ "Open Settings": "सेटिंग्स खोलें",
47
+ "Photo": "तस्वीर",
48
+ "Photos and Videos": "तस्वीरें और वीडियों",
49
49
  "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
- "Please enable access to your photos and videos so you can share them.": "",
51
+ "Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
52
52
  "Please select a channel first": "",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "",
55
+ "Reply to Message": "संदेश का जवाब दें",
56
56
  "Resend": "",
57
- "Search GIFs": "",
58
- "Select More Photos": "",
57
+ "Search GIFs": "GIF खोजें",
58
+ "Select More Photos": "अधिक फ़ोटो चुनें",
59
59
  "Send Anyway": "",
60
- "Send a message": "",
60
+ "Send a message": "एक संदेश भेजें",
61
61
  "Sending links is not allowed in this conversation": "",
62
- "Slow mode ON": "",
62
+ "Slow mode ON": "स्लो मोड चालू",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "",
66
+ "Unknown User": "अज्ञात उपयोगकर्ता",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "वीडियो",
71
71
  "You": "",
72
- "You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
72
+ "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "",
75
- "{{ replyCount }} Replies": "",
74
+ "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
75
+ "{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1 Risposta",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "",
5
- "Allow camera access in device settings": "",
6
- "Also send to channel": "Invia anche al canale",
4
+ "Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
5
+ "Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
6
+ "Also send to channel": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,22 +13,22 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "",
16
+ "Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
- "Editing Message": "",
20
- "Emoji matching": "",
19
+ "Editing Message": "Modificando il Messaggio",
20
+ "Emoji matching": "Abbinamento emoji",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "",
26
+ "File type not supported": "Tipo di file non supportato",
27
27
  "Flag": "",
28
28
  "Flag Message": "",
29
29
  "Flag action failed either due to a network issue or the message is already flagged": "",
30
30
  "How about sending your first message to a friend?": "",
31
- "Instant Commands": "",
31
+ "Instant Commands": "Comandi Istantanei",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
34
  "Loading channels...": "",
@@ -42,37 +42,37 @@
42
42
  "Not supported": "",
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
- "Only visible to you": "Visibile solo a te",
46
- "Open Settings": "",
47
- "Photo": "",
48
- "Photos and Videos": "",
45
+ "Only visible to you": "",
46
+ "Open Settings": "Apri Impostazioni",
47
+ "Photo": "Foto",
48
+ "Photos and Videos": "Foto e Video",
49
49
  "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
- "Please enable access to your photos and videos so you can share them.": "",
51
+ "Please enable access to your photos and videos so you can share them.": "Abilita l'accesso alle tue foto e ai tuoi video in modo da poterli condividere.",
52
52
  "Please select a channel first": "",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "",
55
+ "Reply to Message": "Rispondi al messaggio",
56
56
  "Resend": "",
57
- "Search GIFs": "",
58
- "Select More Photos": "",
57
+ "Search GIFs": "Cerca GIF",
58
+ "Select More Photos": "Seleziona Altre foto",
59
59
  "Send Anyway": "",
60
- "Send a message": "",
60
+ "Send a message": "Mandare un messaggio",
61
61
  "Sending links is not allowed in this conversation": "",
62
- "Slow mode ON": "",
62
+ "Slow mode ON": "Slowmode attiva",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "",
66
+ "Unknown User": "Utente sconosciuto",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "Video",
71
71
  "You": "",
72
- "You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
72
+ "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "",
75
- "{{ replyCount }} Replies": "",
74
+ "{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
75
+ "{{ replyCount }} Replies": "{{ replyCount }} Risposte",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "",
2
+ "1 Reply": "1件の返信",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "",
5
- "Allow camera access in device settings": "",
6
- "Also send to channel": "チャンネルにも送信",
4
+ "Allow access to your Gallery": "ギャラリーへのアクセスを許可する",
5
+ "Allow camera access in device settings": "デバイス設定でカメラへのアクセスを許可する",
6
+ "Also send to channel": "",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,22 +13,22 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "",
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
- "Editing Message": "",
20
- "Emoji matching": "",
19
+ "Editing Message": "メッセージを編集中",
20
+ "Emoji matching": "絵文字マッチング",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "",
26
+ "File type not supported": "サポートされていないファイルです",
27
27
  "Flag": "",
28
28
  "Flag Message": "",
29
29
  "Flag action failed either due to a network issue or the message is already flagged": "",
30
30
  "How about sending your first message to a friend?": "",
31
- "Instant Commands": "",
31
+ "Instant Commands": "インスタントコマンド",
32
32
  "Let's start chatting!": "",
33
33
  "Links are disabled": "",
34
34
  "Loading channels...": "",
@@ -42,37 +42,37 @@
42
42
  "Not supported": "",
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
- "Only visible to you": "あなただけに見える",
46
- "Open Settings": "",
47
- "Photo": "",
48
- "Photos and Videos": "",
45
+ "Only visible to you": "",
46
+ "Open Settings": "設定を開く",
47
+ "Photo": "写真",
48
+ "Photos and Videos": "写真と動画",
49
49
  "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
- "Please enable access to your photos and videos so you can share them.": "",
51
+ "Please enable access to your photos and videos so you can share them.": "写真やビデオへのアクセスを有効にして、共有できるようにしてください。",
52
52
  "Please select a channel first": "",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "",
55
+ "Reply to Message": "メッセージに返信",
56
56
  "Resend": "",
57
- "Search GIFs": "",
58
- "Select More Photos": "",
57
+ "Search GIFs": "GIFの探索",
58
+ "Select More Photos": "さらに写真を選択",
59
59
  "Send Anyway": "",
60
- "Send a message": "",
60
+ "Send a message": "メッセージを送る",
61
61
  "Sending links is not allowed in this conversation": "",
62
- "Slow mode ON": "",
62
+ "Slow mode ON": "スローモードオン",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "",
66
+ "Unknown User": "不明なユーザー",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "ビデオ",
71
71
  "You": "",
72
- "You can't send messages in this channel": "このチャンネルではメッセージを送信できません",
72
+ "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "",
75
- "{{ replyCount }} Replies": "",
74
+ "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
75
+ "{{ replyCount }} Replies": "{{ replyCount }}件の返信",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""