stream-chat-react-native-core 5.24.0-beta.5 → 5.24.0-beta.6

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/Attachment/Attachment.js +22 -14
  2. package/lib/commonjs/components/Attachment/Attachment.js.map +1 -1
  3. package/lib/commonjs/components/Attachment/Card.js +11 -4
  4. package/lib/commonjs/components/Attachment/Card.js.map +1 -1
  5. package/lib/commonjs/components/Attachment/Gallery.js +24 -16
  6. package/lib/commonjs/components/Attachment/Gallery.js.map +1 -1
  7. package/lib/commonjs/components/Message/Message.js +14 -7
  8. package/lib/commonjs/components/Message/Message.js.map +1 -1
  9. package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +22 -16
  10. package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
  11. package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js +14 -8
  12. package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js.map +1 -1
  13. package/lib/commonjs/components/Message/MessageSimple/MessageTextContainer.js +10 -4
  14. package/lib/commonjs/components/Message/MessageSimple/MessageTextContainer.js.map +1 -1
  15. package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js +6 -1
  16. package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js.map +1 -1
  17. package/lib/commonjs/components/MessageOverlay/MessageOverlay.js +9 -3
  18. package/lib/commonjs/components/MessageOverlay/MessageOverlay.js.map +1 -1
  19. package/lib/commonjs/contexts/messageContext/MessageContext.js +2 -2
  20. package/lib/commonjs/contexts/messageContext/MessageContext.js.map +1 -1
  21. package/lib/commonjs/i18n/fr.json +24 -24
  22. package/lib/commonjs/i18n/hi.json +24 -24
  23. package/lib/commonjs/i18n/it.json +24 -24
  24. package/lib/commonjs/i18n/nl.json +24 -24
  25. package/lib/commonjs/i18n/ru.json +24 -24
  26. package/lib/commonjs/i18n/tr.json +24 -24
  27. package/lib/commonjs/version.json +1 -1
  28. package/lib/module/components/Attachment/Attachment.js +22 -14
  29. package/lib/module/components/Attachment/Attachment.js.map +1 -1
  30. package/lib/module/components/Attachment/Card.js +11 -4
  31. package/lib/module/components/Attachment/Card.js.map +1 -1
  32. package/lib/module/components/Attachment/Gallery.js +24 -16
  33. package/lib/module/components/Attachment/Gallery.js.map +1 -1
  34. package/lib/module/components/Message/Message.js +14 -7
  35. package/lib/module/components/Message/Message.js.map +1 -1
  36. package/lib/module/components/Message/MessageSimple/MessageContent.js +22 -16
  37. package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
  38. package/lib/module/components/Message/MessageSimple/MessageSimple.js +14 -8
  39. package/lib/module/components/Message/MessageSimple/MessageSimple.js.map +1 -1
  40. package/lib/module/components/Message/MessageSimple/MessageTextContainer.js +10 -4
  41. package/lib/module/components/Message/MessageSimple/MessageTextContainer.js.map +1 -1
  42. package/lib/module/components/Message/hooks/useCreateMessageContext.js +6 -1
  43. package/lib/module/components/Message/hooks/useCreateMessageContext.js.map +1 -1
  44. package/lib/module/components/MessageOverlay/MessageOverlay.js +9 -3
  45. package/lib/module/components/MessageOverlay/MessageOverlay.js.map +1 -1
  46. package/lib/module/contexts/messageContext/MessageContext.js +2 -2
  47. package/lib/module/contexts/messageContext/MessageContext.js.map +1 -1
  48. package/lib/module/i18n/fr.json +24 -24
  49. package/lib/module/i18n/hi.json +24 -24
  50. package/lib/module/i18n/it.json +24 -24
  51. package/lib/module/i18n/nl.json +24 -24
  52. package/lib/module/i18n/ru.json +24 -24
  53. package/lib/module/i18n/tr.json +24 -24
  54. package/lib/module/version.json +1 -1
  55. package/lib/typescript/components/Attachment/Attachment.d.ts +2 -2
  56. package/lib/typescript/components/Attachment/Card.d.ts +2 -2
  57. package/lib/typescript/components/Attachment/Gallery.d.ts +1 -1
  58. package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts +1 -1
  59. package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts +1 -1
  60. package/lib/typescript/components/Message/MessageSimple/MessageTextContainer.d.ts +1 -1
  61. package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts +1 -1
  62. package/lib/typescript/contexts/messageContext/MessageContext.d.ts +8 -2
  63. package/lib/typescript/i18n/fr.json +24 -24
  64. package/lib/typescript/i18n/hi.json +24 -24
  65. package/lib/typescript/i18n/it.json +24 -24
  66. package/lib/typescript/i18n/nl.json +24 -24
  67. package/lib/typescript/i18n/ru.json +24 -24
  68. package/lib/typescript/i18n/tr.json +24 -24
  69. package/package.json +1 -1
  70. package/src/components/Attachment/Attachment.tsx +16 -2
  71. package/src/components/Attachment/Card.tsx +22 -4
  72. package/src/components/Attachment/Gallery.tsx +11 -0
  73. package/src/components/Message/Message.tsx +9 -0
  74. package/src/components/Message/MessageSimple/MessageContent.tsx +9 -0
  75. package/src/components/Message/MessageSimple/MessageSimple.tsx +9 -0
  76. package/src/components/Message/MessageSimple/MessageTextContainer.tsx +12 -2
  77. package/src/components/Message/hooks/useCreateMessageContext.ts +4 -0
  78. package/src/components/MessageOverlay/MessageOverlay.tsx +8 -0
  79. package/src/contexts/messageContext/MessageContext.tsx +7 -1
  80. package/src/i18n/fr.json +24 -24
  81. package/src/i18n/hi.json +24 -24
  82. package/src/i18n/it.json +24 -24
  83. package/src/i18n/nl.json +24 -24
  84. package/src/i18n/ru.json +24 -24
  85. package/src/i18n/tr.json +24 -24
  86. package/src/version.json +1 -1
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "1 Réponse",
2
+ "1 Reply": "",
3
3
  "1 Thread Reply": "",
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": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "Envoyer également à la chaîne",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,11 +13,11 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete 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.",
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
19
  "Editing Message": "Édite un message",
20
- "Emoji matching": "Correspondance Emoji",
20
+ "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
@@ -28,14 +28,14 @@
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": "Commandes Instantanées",
31
+ "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
- "Links are disabled": "",
34
- "Loading channels...": "Chargement des canaux...",
35
- "Loading messages...": "Chargement des messages...",
36
- "Loading...": "Chargement...",
37
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
- "Message Reactions": "",
33
+ "Links are disabled": "Links are disabled",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
+ "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.",
38
+ "Message Reactions": "Réactions aux messages",
39
39
  "Message deleted": "",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
@@ -43,36 +43,36 @@
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
46
- "Open Settings": "Ouvrir les paramètres",
47
- "Photo": "",
48
- "Photos and Videos": "Photos et vidéos",
46
+ "Open Settings": "",
47
+ "Photo": "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.": "Veuillez autoriser l'accès à vos photos et vidéos afin de pouvoir les partager.",
51
+ "Please enable access to your photos and videos so you can share them.": "",
52
52
  "Please select a channel first": "Veuillez d'abord selectionnez un canal",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "Répondre au message",
55
+ "Reply to Message": "",
56
56
  "Resend": "",
57
57
  "Search GIFs": "Rechercher des GIF",
58
- "Select More Photos": "Sélectionner plus de photos",
58
+ "Select More Photos": "",
59
59
  "Send Anyway": "",
60
60
  "Send a message": "Envoyer un message",
61
- "Sending links is not allowed in this conversation": "",
61
+ "Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
62
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": "Utilisateur inconnu",
66
+ "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "Vidéo",
71
71
  "You": "",
72
72
  "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
75
- "{{ replyCount }} Replies": "{{ replyCount }} Réponses",
74
+ "{{ index }} of {{ photoLength }}": "",
75
+ "{{ replyCount }} Replies": "",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "1 रिप्लाई",
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,11 +13,11 @@
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
19
  "Editing Message": "मैसेज बदला जा रहा है",
20
- "Emoji matching": "इमोजी मिलान",
20
+ "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
@@ -28,14 +28,14 @@
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
- "Links are disabled": "",
34
- "Loading channels...": "चैनल लोड हो रहे हैं...",
35
- "Loading messages...": "मेसेजस लोड हो रहे हैं...",
36
- "Loading...": "लोड हो रहा है...",
37
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
- "Message Reactions": "",
33
+ "Links are disabled": "लिंक अक्षम हैं",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
+ "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}} एमबी से नीचे की फ़ाइल अपलोड करें।",
38
+ "Message Reactions": "संदेश प्रतिक्रियाएँ",
39
39
  "Message deleted": "",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
@@ -43,36 +43,36 @@
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
46
- "Open Settings": "सेटिंग्स खोलें",
47
- "Photo": "",
48
- "Photos and Videos": "तस्वीरें और वीडियों",
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
57
  "Search GIFs": "GIF खोजें",
58
- "Select More Photos": "अधिक फ़ोटो चुनें",
58
+ "Select More Photos": "",
59
59
  "Send Anyway": "",
60
60
  "Send a message": "एक संदेश भेजें",
61
- "Sending links is not allowed in this conversation": "",
61
+ "Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
62
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
72
  "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
75
- "{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
74
+ "{{ index }} of {{ photoLength }}": "",
75
+ "{{ replyCount }} Replies": "",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "1 Risposta",
2
+ "1 Reply": "",
3
3
  "1 Thread Reply": "",
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": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "Invia anche al canale",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,11 +13,11 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
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
19
  "Editing Message": "Modificando il Messaggio",
20
- "Emoji matching": "Abbinamento emoji",
20
+ "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
@@ -28,14 +28,14 @@
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": "Comandi Istantanei",
31
+ "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
- "Links are disabled": "",
34
- "Loading channels...": "Caricamento canali in corso...",
35
- "Loading messages...": "Caricamento messaggi...",
36
- "Loading...": "Caricamento...",
37
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
- "Message Reactions": "",
33
+ "Links are disabled": "I link sono disabilitati",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "È stato raggiunto il limite massimo di caricamento delle dimensioni del file. Carica un file inferiore a {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
38
+ "Message Reactions": "Reazioni ai Messaggi",
39
39
  "Message deleted": "",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
@@ -43,36 +43,36 @@
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
46
- "Open Settings": "Apri Impostazioni",
47
- "Photo": "",
48
- "Photos and Videos": "Foto e Video",
46
+ "Open Settings": "",
47
+ "Photo": "Foto",
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.": "Abilita l'accesso alle tue foto e ai tuoi video in modo da poterli condividere.",
51
+ "Please enable access to your photos and videos so you can share them.": "",
52
52
  "Please select a channel first": "Seleziona un canale",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "Rispondi al messaggio",
55
+ "Reply to Message": "",
56
56
  "Resend": "",
57
57
  "Search GIFs": "Cerca GIF",
58
- "Select More Photos": "Seleziona Altre foto",
58
+ "Select More Photos": "",
59
59
  "Send Anyway": "",
60
60
  "Send a message": "Mandare un messaggio",
61
- "Sending links is not allowed in this conversation": "",
61
+ "Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
62
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": "Utente sconosciuto",
66
+ "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "Video",
71
71
  "You": "",
72
72
  "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
75
- "{{ replyCount }} Replies": "{{ replyCount }} Risposte",
74
+ "{{ index }} of {{ photoLength }}": "",
75
+ "{{ replyCount }} Replies": "",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "1 Antwoord",
2
+ "1 Reply": "",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "Geef toegang tot uw galerij",
5
- "Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
6
- "Also send to channel": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "Stuur ook naar kanaal",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,11 +13,11 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "De camera van het apparaat wordt gebruikt om foto's of video's te maken.",
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
19
  "Editing Message": "Bericht aanpassen",
20
- "Emoji matching": "Emoji-overeenkomsten",
20
+ "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
@@ -28,14 +28,14 @@
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": "Directe Opdrachten",
31
+ "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
- "Links are disabled": "",
34
- "Loading channels...": "Kanalen aan het laden...",
35
- "Loading messages...": "Berichten aan het laden...",
36
- "Loading...": "Aan het laden...",
37
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
- "Message Reactions": "",
33
+ "Links are disabled": "Het versturen van links staat uit",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Maximale uploadlimiet voor bestandsgrootte bereikt. Upload een bestand van minder dan {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
38
+ "Message Reactions": "Bericht Reacties",
39
39
  "Message deleted": "",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
@@ -43,36 +43,36 @@
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
46
- "Open Settings": "Open instellingen",
47
- "Photo": "",
48
- "Photos and Videos": "Foto's en video's",
46
+ "Open Settings": "",
47
+ "Photo": "Foto",
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.": "Schakel toegang tot uw foto's en video's in zodat u ze kunt delen.",
51
+ "Please enable access to your photos and videos so you can share them.": "",
52
52
  "Please select a channel first": "Selecteer eerst een kanaal",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "Beantwoord bericht",
55
+ "Reply to Message": "",
56
56
  "Resend": "",
57
57
  "Search GIFs": "Zoek GIF's",
58
- "Select More Photos": "Selecteer Meer foto's",
58
+ "Select More Photos": "",
59
59
  "Send Anyway": "",
60
60
  "Send a message": "Stuur een bericht",
61
- "Sending links is not allowed in this conversation": "",
61
+ "Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
62
62
  "Slow mode ON": "Langzame modus aan",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "Onbekende gebruiker",
66
+ "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "Video",
71
71
  "You": "",
72
72
  "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
75
- "{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
74
+ "{{ index }} of {{ photoLength }}": "",
75
+ "{{ replyCount }} Replies": "",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "1 Ответ",
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,11 +13,11 @@
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
19
  "Editing Message": "Редактирование сообщения",
20
- "Emoji matching": "Соответствие эмодзи",
20
+ "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
@@ -28,14 +28,14 @@
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
- "Links are disabled": "",
34
- "Loading channels...": "Загружаю каналы...",
35
- "Loading messages...": "Загружаю сообщения...",
36
- "Loading...": "Загружаю...",
37
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
- "Message Reactions": "",
33
+ "Links are disabled": "Ссылки отключены",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
+ "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}} МБ.",
38
+ "Message Reactions": "Сообщения Реакции",
39
39
  "Message deleted": "",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
@@ -43,36 +43,36 @@
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
46
- "Open Settings": "Открыть настройки",
47
- "Photo": "",
48
- "Photos and Videos": "Фото и видео",
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
57
  "Search GIFs": "Поиск GIF",
58
- "Select More Photos": "Выбрать больше фотографий",
58
+ "Select More Photos": "",
59
59
  "Send Anyway": "",
60
60
  "Send a message": "Отправить сообщение",
61
- "Sending links is not allowed in this conversation": "",
61
+ "Sending links is not allowed in this conversation": "Отправка ссылок недоступна в этом чате",
62
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
72
  "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "{{ index }} из {{ photoLength }}",
75
- "{{ replyCount }} Replies": "{{ replyCount }} Ответов",
74
+ "{{ index }} of {{ photoLength }}": "",
75
+ "{{ replyCount }} Replies": "",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
@@ -1,9 +1,9 @@
1
1
  {
2
- "1 Reply": "1 Cevap",
2
+ "1 Reply": "",
3
3
  "1 Thread Reply": "",
4
- "Allow access to your Gallery": "Galerinize erişime izin verin",
5
- "Allow camera access in device settings": "Cihaz ayarlarında kamera erişimine izin ver",
6
- "Also send to channel": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "Kanala da gönder",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -13,11 +13,11 @@
13
13
  "Copy Message": "",
14
14
  "Delete": "",
15
15
  "Delete Message": "",
16
- "Device camera is used to take photos or videos.": "Cihaz kamerası fotoğraf veya video çekmek için kullanılır.",
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
19
  "Editing Message": "Mesaj Düzenleniyor",
20
- "Emoji matching": "Emoji eşleştirme",
20
+ "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
23
23
  "Error loading channel list...": "",
@@ -28,14 +28,14 @@
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": "Anlık Komutlar",
31
+ "Instant Commands": "",
32
32
  "Let's start chatting!": "",
33
- "Links are disabled": "",
34
- "Loading channels...": "Kanallar yükleniyor...",
35
- "Loading messages...": "Mesajlar yükleniyor...",
36
- "Loading...": "Yükleniyor...",
37
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
38
- "Message Reactions": "",
33
+ "Links are disabled": "Bağlantılar devre dışı",
34
+ "Loading channels...": "",
35
+ "Loading messages...": "",
36
+ "Loading...": "",
37
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Maksimum dosya boyutu yükleme sınırına ulaşıldı. Lütfen {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB'ın altında bir dosya yükleyin.",
38
+ "Message Reactions": "Mesaj Tepkileri",
39
39
  "Message deleted": "",
40
40
  "Message flagged": "",
41
41
  "Mute User": "",
@@ -43,36 +43,36 @@
43
43
  "Nothing yet...": "",
44
44
  "Ok": "",
45
45
  "Only visible to you": "",
46
- "Open Settings": "Ayarları aç",
47
- "Photo": "",
48
- "Photos and Videos": "Fotoğraflar ve Videolar",
46
+ "Open Settings": "",
47
+ "Photo": "Fotoğraf",
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.": "Paylaşım yapabilmek için lutfen fotoğraflarınıza ve videolarınıza erişimi etkinleştirin.",
51
+ "Please enable access to your photos and videos so you can share them.": "",
52
52
  "Please select a channel first": "Lütfen önce bir kanal seçiniz",
53
53
  "Reconnecting...": "",
54
54
  "Reply": "",
55
- "Reply to Message": "Mesajı Yanıtla",
55
+ "Reply to Message": "",
56
56
  "Resend": "",
57
57
  "Search GIFs": "GIF Ara",
58
- "Select More Photos": "Daha Fazla Fotoğraf Seçin",
58
+ "Select More Photos": "",
59
59
  "Send Anyway": "",
60
60
  "Send a message": "Mesaj gönder",
61
- "Sending links is not allowed in this conversation": "",
61
+ "Sending links is not allowed in this conversation": "Bu konuşmada bağlantı göndermek desteklenmiyor",
62
62
  "Slow mode ON": "Yavaş Mod Açık",
63
63
  "The message has been reported to a moderator.": "",
64
64
  "Thread Reply": "",
65
65
  "Unblock User": "",
66
- "Unknown User": "Bilinmeyen kullanıcı",
66
+ "Unknown User": "",
67
67
  "Unmute User": "",
68
68
  "Unpin from Conversation": "",
69
69
  "Unread Messages": "",
70
- "Video": "",
70
+ "Video": "Video",
71
71
  "You": "",
72
72
  "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
- "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
75
- "{{ replyCount }} Replies": "{{ replyCount }} Cevap",
74
+ "{{ index }} of {{ photoLength }}": "",
75
+ "{{ replyCount }} Replies": "",
76
76
  "{{ replyCount }} Thread Replies": "",
77
77
  "{{ user }} is typing": "",
78
78
  "🏙 Attachment...": ""
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stream-chat-react-native-core",
3
3
  "description": "The official React Native and Expo components for Stream Chat, a service for building chat applications",
4
- "version": "5.24.0-beta.5",
4
+ "version": "5.24.0-beta.6",
5
5
  "author": {
6
6
  "company": "Stream.io Inc",
7
7
  "name": "Stream.io Inc"