stream-chat-react-native-core 5.24.0-beta.4 → 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 (95) 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/MessageInput/SendButton.js +2 -2
  18. package/lib/commonjs/components/MessageInput/SendButton.js.map +1 -1
  19. package/lib/commonjs/components/MessageOverlay/MessageOverlay.js +9 -3
  20. package/lib/commonjs/components/MessageOverlay/MessageOverlay.js.map +1 -1
  21. package/lib/commonjs/contexts/messageContext/MessageContext.js +2 -2
  22. package/lib/commonjs/contexts/messageContext/MessageContext.js.map +1 -1
  23. package/lib/commonjs/i18n/en.json +1 -1
  24. package/lib/commonjs/i18n/fr.json +36 -36
  25. package/lib/commonjs/i18n/hi.json +36 -36
  26. package/lib/commonjs/i18n/it.json +36 -36
  27. package/lib/commonjs/i18n/nl.json +36 -36
  28. package/lib/commonjs/i18n/ru.json +36 -36
  29. package/lib/commonjs/i18n/tr.json +36 -36
  30. package/lib/commonjs/version.json +1 -1
  31. package/lib/module/components/Attachment/Attachment.js +22 -14
  32. package/lib/module/components/Attachment/Attachment.js.map +1 -1
  33. package/lib/module/components/Attachment/Card.js +11 -4
  34. package/lib/module/components/Attachment/Card.js.map +1 -1
  35. package/lib/module/components/Attachment/Gallery.js +24 -16
  36. package/lib/module/components/Attachment/Gallery.js.map +1 -1
  37. package/lib/module/components/Message/Message.js +14 -7
  38. package/lib/module/components/Message/Message.js.map +1 -1
  39. package/lib/module/components/Message/MessageSimple/MessageContent.js +22 -16
  40. package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
  41. package/lib/module/components/Message/MessageSimple/MessageSimple.js +14 -8
  42. package/lib/module/components/Message/MessageSimple/MessageSimple.js.map +1 -1
  43. package/lib/module/components/Message/MessageSimple/MessageTextContainer.js +10 -4
  44. package/lib/module/components/Message/MessageSimple/MessageTextContainer.js.map +1 -1
  45. package/lib/module/components/Message/hooks/useCreateMessageContext.js +6 -1
  46. package/lib/module/components/Message/hooks/useCreateMessageContext.js.map +1 -1
  47. package/lib/module/components/MessageInput/SendButton.js +2 -2
  48. package/lib/module/components/MessageInput/SendButton.js.map +1 -1
  49. package/lib/module/components/MessageOverlay/MessageOverlay.js +9 -3
  50. package/lib/module/components/MessageOverlay/MessageOverlay.js.map +1 -1
  51. package/lib/module/contexts/messageContext/MessageContext.js +2 -2
  52. package/lib/module/contexts/messageContext/MessageContext.js.map +1 -1
  53. package/lib/module/i18n/en.json +1 -1
  54. package/lib/module/i18n/fr.json +36 -36
  55. package/lib/module/i18n/hi.json +36 -36
  56. package/lib/module/i18n/it.json +36 -36
  57. package/lib/module/i18n/nl.json +36 -36
  58. package/lib/module/i18n/ru.json +36 -36
  59. package/lib/module/i18n/tr.json +36 -36
  60. package/lib/module/version.json +1 -1
  61. package/lib/typescript/components/Attachment/Attachment.d.ts +2 -2
  62. package/lib/typescript/components/Attachment/Card.d.ts +2 -2
  63. package/lib/typescript/components/Attachment/Gallery.d.ts +1 -1
  64. package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts +1 -1
  65. package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts +1 -1
  66. package/lib/typescript/components/Message/MessageSimple/MessageTextContainer.d.ts +1 -1
  67. package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts +1 -1
  68. package/lib/typescript/contexts/messageContext/MessageContext.d.ts +8 -2
  69. package/lib/typescript/i18n/en.json +1 -1
  70. package/lib/typescript/i18n/fr.json +36 -36
  71. package/lib/typescript/i18n/hi.json +36 -36
  72. package/lib/typescript/i18n/it.json +36 -36
  73. package/lib/typescript/i18n/nl.json +36 -36
  74. package/lib/typescript/i18n/ru.json +36 -36
  75. package/lib/typescript/i18n/tr.json +36 -36
  76. package/package.json +1 -1
  77. package/src/components/Attachment/Attachment.tsx +16 -2
  78. package/src/components/Attachment/Card.tsx +22 -4
  79. package/src/components/Attachment/Gallery.tsx +11 -0
  80. package/src/components/Message/Message.tsx +9 -0
  81. package/src/components/Message/MessageSimple/MessageContent.tsx +9 -0
  82. package/src/components/Message/MessageSimple/MessageSimple.tsx +9 -0
  83. package/src/components/Message/MessageSimple/MessageTextContainer.tsx +12 -2
  84. package/src/components/Message/hooks/useCreateMessageContext.ts +4 -0
  85. package/src/components/MessageInput/SendButton.tsx +2 -2
  86. package/src/components/MessageOverlay/MessageOverlay.tsx +8 -0
  87. package/src/contexts/messageContext/MessageContext.tsx +7 -1
  88. package/src/i18n/en.json +1 -1
  89. package/src/i18n/fr.json +36 -36
  90. package/src/i18n/hi.json +36 -36
  91. package/src/i18n/it.json +36 -36
  92. package/src/i18n/nl.json +36 -36
  93. package/src/i18n/ru.json +36 -36
  94. package/src/i18n/tr.json +36 -36
  95. package/src/version.json +1 -1
@@ -548,11 +548,13 @@ const areEqual = <StreamChatGenerics extends DefaultStreamChatGenerics = Default
548
548
  alignment: prevAlignment,
549
549
  message: prevMessage,
550
550
  messageReactionTitle: prevMessageReactionTitle,
551
+ messagesContext: prevMessagesContext,
551
552
  } = prevProps;
552
553
  const {
553
554
  alignment: nextAlignment,
554
555
  message: nextMessage,
555
556
  messageReactionTitle: nextMessageReactionTitle,
557
+ messagesContext: nextMessagesContext,
556
558
  } = nextProps;
557
559
 
558
560
  const alignmentEqual = prevAlignment === nextAlignment;
@@ -561,6 +563,12 @@ const areEqual = <StreamChatGenerics extends DefaultStreamChatGenerics = Default
561
563
  const messageReactionTitleEqual = prevMessageReactionTitle === nextMessageReactionTitle;
562
564
  if (!messageReactionTitleEqual) return false;
563
565
 
566
+ const prevMyMessageTheme = JSON.stringify(prevMessagesContext?.myMessageTheme);
567
+ const nextMyMessageTheme = JSON.stringify(nextMessagesContext?.myMessageTheme);
568
+
569
+ const myMessageThemeEqual = prevMyMessageTheme === nextMyMessageTheme;
570
+ if (!myMessageThemeEqual) return false;
571
+
564
572
  const latestReactionsEqual =
565
573
  Array.isArray(prevMessage?.latest_reactions) && Array.isArray(nextMessage?.latest_reactions)
566
574
  ? prevMessage?.latest_reactions.length === nextMessage?.latest_reactions.length &&
@@ -10,6 +10,8 @@ import type {
10
10
  import type { GroupType, MessageType } from '../../components/MessageList/hooks/useMessageList';
11
11
  import type { ChannelContextValue } from '../../contexts/channelContext/ChannelContext';
12
12
  import type { MessageContentType } from '../../contexts/messagesContext/MessagesContext';
13
+ import type { DeepPartial } from '../../contexts/themeContext/ThemeContext';
14
+ import type { Theme } from '../../contexts/themeContext/utils/theme';
13
15
  import type { DefaultStreamChatGenerics, UnknownType } from '../../types/types';
14
16
  import { DEFAULT_BASE_CONTEXT_VALUE } from '../utils/defaultBaseContextValue';
15
17
 
@@ -89,7 +91,7 @@ export type MessageContextValue<
89
91
  /** The images attached to a message */
90
92
  otherAttachments: Attachment<StreamChatGenerics>[];
91
93
  reactions: Reactions;
92
- showMessageOverlay: (messageReactions?: boolean) => void;
94
+ showMessageOverlay: (messageReactions?: boolean, error?: boolean) => void;
93
95
  showMessageStatus: boolean;
94
96
  /** Whether or not the Message is part of a Thread */
95
97
  threadList: boolean;
@@ -98,6 +100,10 @@ export type MessageContextValue<
98
100
  goToMessage?: (messageId: string) => void;
99
101
  /** Latest message id on current channel */
100
102
  lastReceivedId?: string;
103
+ /**
104
+ * Theme provided only to messages that are the current users
105
+ */
106
+ myMessageTheme?: DeepPartial<Theme>;
101
107
  /** Prevent message being pressed for image viewer view */
102
108
  preventPress?: boolean;
103
109
  /** Whether or not the avatar show show next to Message */
package/src/i18n/en.json CHANGED
@@ -26,7 +26,7 @@
26
26
  "File type not supported": "File type not supported",
27
27
  "Flag": "Flag",
28
28
  "Flag Message": "Flag Message",
29
- "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.",
29
+ "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",
30
30
  "How about sending your first message to a friend?": "How about sending your first message to a friend?",
31
31
  "Instant Commands": "Instant Commands",
32
32
  "Let's start chatting!": "Let's start chatting!",
package/src/i18n/fr.json CHANGED
@@ -4,19 +4,19 @@
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
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",
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
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?": "Voulez-vous envoyer une copie de ce message à un modérateur pour une enquête plus approfondie?",
18
- "Edit Message": "Éditer un message",
19
- "Editing Message": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
+ "Edit Message": "",
19
+ "Editing Message": "Édite un message",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
@@ -24,9 +24,9 @@
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
26
  "File type not supported": "",
27
- "Flag": "Signaler",
28
- "Flag Message": "Signaler le message",
29
- "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é.",
27
+ "Flag": "",
28
+ "Flag Message": "",
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
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
@@ -35,41 +35,41 @@
35
35
  "Loading messages...": "",
36
36
  "Loading...": "",
37
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": "",
38
+ "Message Reactions": "Réactions aux messages",
39
39
  "Message deleted": "",
40
- "Message flagged": "Message signalé",
41
- "Mute User": "Utilisateur muet",
42
- "Not supported": "",
40
+ "Message flagged": "",
41
+ "Mute User": "",
42
+ "Not supported": "Non pris en charge",
43
43
  "Nothing yet...": "",
44
- "Ok": "Ok",
44
+ "Ok": "",
45
45
  "Only visible to you": "",
46
46
  "Open Settings": "",
47
- "Photo": "",
47
+ "Photo": "Photo",
48
48
  "Photos and Videos": "",
49
- "Pin to Conversation": "Épingler à la conversation",
49
+ "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
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
- "Reply": "Répondre",
54
+ "Reply": "",
55
55
  "Reply to Message": "",
56
- "Resend": "Renvoyer",
57
- "Search GIFs": "",
56
+ "Resend": "",
57
+ "Search GIFs": "Rechercher des GIF",
58
58
  "Select More Photos": "",
59
- "Send Anyway": "Envoyer quand même",
60
- "Send a message": "",
59
+ "Send Anyway": "",
60
+ "Send a message": "Envoyer un message",
61
61
  "Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
62
- "Slow mode ON": "",
63
- "The message has been reported to a moderator.": "Le message a été signalé à un modérateur.",
64
- "Thread Reply": "Réponse à la discussion",
65
- "Unblock User": "Débloquer Utilisateur",
62
+ "Slow mode ON": "Mode lent activé",
63
+ "The message has been reported to a moderator.": "",
64
+ "Thread Reply": "",
65
+ "Unblock User": "",
66
66
  "Unknown User": "",
67
- "Unmute User": "Activer le son de Utilisateur",
68
- "Unpin from Conversation": "Décrocher de la conversation",
69
- "Unread Messages": "Messages non lus",
70
- "Video": "",
67
+ "Unmute User": "",
68
+ "Unpin from Conversation": "",
69
+ "Unread Messages": "",
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
74
  "{{ index }} of {{ photoLength }}": "",
75
75
  "{{ replyCount }} Replies": "",
package/src/i18n/hi.json CHANGED
@@ -4,19 +4,19 @@
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
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": "मैसेज को डिलीट करे",
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
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
- "Editing Message": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
+ "Edit Message": "",
19
+ "Editing Message": "मैसेज बदला जा रहा है",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
@@ -24,9 +24,9 @@
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
26
  "File type not supported": "",
27
- "Flag": "झंडा",
28
- "Flag Message": "झंडा संदेश",
29
- "Flag action failed either due to a network issue or the message is already flagged": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
27
+ "Flag": "",
28
+ "Flag Message": "",
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
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
@@ -35,41 +35,41 @@
35
35
  "Loading messages...": "",
36
36
  "Loading...": "",
37
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": "",
38
+ "Message Reactions": "संदेश प्रतिक्रियाएँ",
39
39
  "Message deleted": "",
40
- "Message flagged": "संदेश को ध्वजांकित किया गया",
41
- "Mute User": "उपयोगकर्ता को म्यूट करें",
42
- "Not supported": "",
40
+ "Message flagged": "",
41
+ "Mute User": "",
42
+ "Not supported": "समर्थित नहीं",
43
43
  "Nothing yet...": "",
44
- "Ok": "ठीक",
44
+ "Ok": "",
45
45
  "Only visible to you": "",
46
46
  "Open Settings": "",
47
- "Photo": "",
47
+ "Photo": "तस्वीर",
48
48
  "Photos and Videos": "",
49
- "Pin to Conversation": "बातचीत में पिन करें",
49
+ "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
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
- "Reply": "मैसेज को रिप्लाई करे",
54
+ "Reply": "",
55
55
  "Reply to Message": "",
56
- "Resend": "पुन: भेजें",
57
- "Search GIFs": "",
56
+ "Resend": "",
57
+ "Search GIFs": "GIF खोजें",
58
58
  "Select More Photos": "",
59
- "Send Anyway": "फिर भी भेजें",
60
- "Send a message": "",
59
+ "Send Anyway": "",
60
+ "Send a message": "एक संदेश भेजें",
61
61
  "Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
62
- "Slow mode ON": "",
63
- "The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
64
- "Thread Reply": "धागा जवाब",
65
- "Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
62
+ "Slow mode ON": "स्लो मोड चालू",
63
+ "The message has been reported to a moderator.": "",
64
+ "Thread Reply": "",
65
+ "Unblock User": "",
66
66
  "Unknown User": "",
67
- "Unmute User": "उपयोगकर्ता को अनम्यूट करें",
68
- "Unpin from Conversation": "बातचीत से अनपिन करें",
69
- "Unread Messages": "अपठित संदेश",
70
- "Video": "",
67
+ "Unmute User": "",
68
+ "Unpin from Conversation": "",
69
+ "Unread Messages": "",
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
74
  "{{ index }} of {{ photoLength }}": "",
75
75
  "{{ replyCount }} Replies": "",
package/src/i18n/it.json CHANGED
@@ -4,19 +4,19 @@
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "Invia anche al canale",
7
- "Are you sure you want to permanently delete this message?": "Sei sicuro di voler eliminare definitivamente questo messaggio?",
8
- "Are you sure?": "Sei sicuro?",
9
- "Block User": "Blocca Utente",
10
- "Cancel": "Annulla",
11
- "Cannot Flag Message": "Impossibile Segnalare Messaggio",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considera come il tuo commento potrebbe far sentire gli altri e assicurati di seguire le nostre Linee guida della community",
13
- "Copy Message": "Copia Messaggio",
14
- "Delete": "Elimina",
15
- "Delete Message": "Cancella il Messaggio",
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
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?": "Vuoi inviare una copia di questo messaggio a un moderatore per ulteriori indagini?",
18
- "Edit Message": "Modifica Messaggio",
19
- "Editing Message": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
+ "Edit Message": "",
19
+ "Editing Message": "Modificando il Messaggio",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
@@ -24,9 +24,9 @@
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
26
  "File type not supported": "",
27
- "Flag": "Contrassegna",
28
- "Flag Message": "Contrassegna Messaggio",
29
- "Flag action failed either due to a network issue or the message is already flagged": "L'azione di segnalazione non è riuscita a causa di un problema di rete o il messaggio è già segnalato.",
27
+ "Flag": "",
28
+ "Flag Message": "",
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
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
@@ -35,41 +35,41 @@
35
35
  "Loading messages...": "",
36
36
  "Loading...": "",
37
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": "",
38
+ "Message Reactions": "Reazioni ai Messaggi",
39
39
  "Message deleted": "",
40
- "Message flagged": "Messaggio contrassegnato",
41
- "Mute User": "Utente Muto",
42
- "Not supported": "",
40
+ "Message flagged": "",
41
+ "Mute User": "",
42
+ "Not supported": "non supportato",
43
43
  "Nothing yet...": "",
44
- "Ok": "Ok",
44
+ "Ok": "",
45
45
  "Only visible to you": "",
46
46
  "Open Settings": "",
47
- "Photo": "",
47
+ "Photo": "Foto",
48
48
  "Photos and Videos": "",
49
- "Pin to Conversation": "Metti in evidenza",
49
+ "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
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
- "Reply": "Rispondi",
54
+ "Reply": "",
55
55
  "Reply to Message": "",
56
- "Resend": "Invia di nuovo",
57
- "Search GIFs": "",
56
+ "Resend": "",
57
+ "Search GIFs": "Cerca GIF",
58
58
  "Select More Photos": "",
59
- "Send Anyway": "Invia comunque",
60
- "Send a message": "",
59
+ "Send Anyway": "",
60
+ "Send a message": "Mandare un messaggio",
61
61
  "Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
62
- "Slow mode ON": "",
63
- "The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
64
- "Thread Reply": "Rispondi alla Discussione",
65
- "Unblock User": "Sblocca utente",
62
+ "Slow mode ON": "Slowmode attiva",
63
+ "The message has been reported to a moderator.": "",
64
+ "Thread Reply": "",
65
+ "Unblock User": "",
66
66
  "Unknown User": "",
67
- "Unmute User": "Riattiva utente",
68
- "Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
69
- "Unread Messages": "Messaggi non letti",
70
- "Video": "",
67
+ "Unmute User": "",
68
+ "Unpin from Conversation": "",
69
+ "Unread Messages": "",
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
74
  "{{ index }} of {{ photoLength }}": "",
75
75
  "{{ replyCount }} Replies": "",
package/src/i18n/nl.json CHANGED
@@ -4,19 +4,19 @@
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "Stuur ook naar kanaal",
7
- "Are you sure you want to permanently delete this message?": "Weet u zeker dat u dit bericht definitief wilt verwijderen?",
8
- "Are you sure?": "Weet je het zeker?",
9
- "Block User": "Blokkeer Gebruiker",
10
- "Cancel": "Annuleer",
11
- "Cannot Flag Message": "Kan bericht niet rapporteren",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Denk na over hoe jouw opmerking anderen zou kunnen laten voelen en zorg ervoor dat je onze Community-richtlijnen volgt",
13
- "Copy Message": "Bericht kopiëren",
14
- "Delete": "Verwijderen",
15
- "Delete Message": "Verwijder bericht",
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
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?": "Wil je een kopie van dit bericht naar een moderator sturen voor verder onderzoek?",
18
- "Edit Message": "Pas bericht aan",
19
- "Editing Message": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
+ "Edit Message": "",
19
+ "Editing Message": "Bericht aanpassen",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
@@ -24,9 +24,9 @@
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
26
  "File type not supported": "",
27
- "Flag": "Markeer",
28
- "Flag Message": "Markeer bericht",
29
- "Flag action failed either due to a network issue or the message is already flagged": "Rapporteren mislukt door een netwerk fout of het berich is al gerapporteerd",
27
+ "Flag": "",
28
+ "Flag Message": "",
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
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
@@ -35,41 +35,41 @@
35
35
  "Loading messages...": "",
36
36
  "Loading...": "",
37
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": "",
38
+ "Message Reactions": "Bericht Reacties",
39
39
  "Message deleted": "",
40
- "Message flagged": "Bericht gemarkeerd",
41
- "Mute User": "Gebruiker dempen",
42
- "Not supported": "",
40
+ "Message flagged": "",
41
+ "Mute User": "",
42
+ "Not supported": "niet ondersteund",
43
43
  "Nothing yet...": "",
44
- "Ok": "Oké",
44
+ "Ok": "",
45
45
  "Only visible to you": "",
46
46
  "Open Settings": "",
47
- "Photo": "",
47
+ "Photo": "Foto",
48
48
  "Photos and Videos": "",
49
- "Pin to Conversation": "Vastmaken aan gesprek",
49
+ "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
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
- "Reply": "Antwoord",
54
+ "Reply": "",
55
55
  "Reply to Message": "",
56
- "Resend": "Opnieuw versturen",
57
- "Search GIFs": "",
56
+ "Resend": "",
57
+ "Search GIFs": "Zoek GIF's",
58
58
  "Select More Photos": "",
59
- "Send Anyway": "Toch verzenden",
60
- "Send a message": "",
59
+ "Send Anyway": "",
60
+ "Send a message": "Stuur een bericht",
61
61
  "Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
62
- "Slow mode ON": "",
63
- "The message has been reported to a moderator.": "Het bericht is gerapporteerd aan een moderator.",
64
- "Thread Reply": "Discussie beantwoorden",
65
- "Unblock User": "Deblokkeer gebruiker",
62
+ "Slow mode ON": "Langzame modus aan",
63
+ "The message has been reported to a moderator.": "",
64
+ "Thread Reply": "",
65
+ "Unblock User": "",
66
66
  "Unknown User": "",
67
- "Unmute User": "Dempen van gebruiker opheffen",
68
- "Unpin from Conversation": "Losmaken van gesprek",
69
- "Unread Messages": "Ongelezen Berichten",
70
- "Video": "",
67
+ "Unmute User": "",
68
+ "Unpin from Conversation": "",
69
+ "Unread Messages": "",
70
+ "Video": "Video",
71
71
  "You": "",
72
- "You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
72
+ "You can't send messages in this channel": "",
73
73
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
74
74
  "{{ index }} of {{ photoLength }}": "",
75
75
  "{{ replyCount }} Replies": "",
package/src/i18n/ru.json CHANGED
@@ -4,19 +4,19 @@
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
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": "Удалить сообщение",
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
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
- "Editing Message": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
+ "Edit Message": "",
19
+ "Editing Message": "Редактирование сообщения",
20
20
  "Emoji matching": "",
21
21
  "Empty message...": "",
22
22
  "Error loading": "",
@@ -24,9 +24,9 @@
24
24
  "Error loading messages for this channel...": "",
25
25
  "Error while loading, please reload/refresh": "",
26
26
  "File type not supported": "",
27
- "Flag": "Пометить",
28
- "Flag Message": "Пометить сообщение",
29
- "Flag action failed either due to a network issue or the message is already flagged": "Не удалось отправить жалобу. Возможные причины: проблема с подключением к интернету или ваша жалоба уже была принята.",
27
+ "Flag": "",
28
+ "Flag Message": "",
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
31
  "Instant Commands": "",
32
32
  "Let's start chatting!": "",
@@ -35,41 +35,41 @@
35
35
  "Loading messages...": "",
36
36
  "Loading...": "",
37
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": "",
38
+ "Message Reactions": "Сообщения Реакции",
39
39
  "Message deleted": "",
40
- "Message flagged": "Сообщение отмечено",
41
- "Mute User": "Отключить пользователя",
42
- "Not supported": "",
40
+ "Message flagged": "",
41
+ "Mute User": "",
42
+ "Not supported": "не поддерживается",
43
43
  "Nothing yet...": "",
44
- "Ok": "",
44
+ "Ok": "",
45
45
  "Only visible to you": "",
46
46
  "Open Settings": "",
47
- "Photo": "",
47
+ "Photo": "Фото",
48
48
  "Photos and Videos": "",
49
- "Pin to Conversation": "Закрепить к беседе",
49
+ "Pin to Conversation": "",
50
50
  "Pinned by": "",
51
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
- "Reply": "Ответить",
54
+ "Reply": "",
55
55
  "Reply to Message": "",
56
- "Resend": "Отправить",
57
- "Search GIFs": "",
56
+ "Resend": "",
57
+ "Search GIFs": "Поиск GIF",
58
58
  "Select More Photos": "",
59
- "Send Anyway": "Всё равно отправить",
60
- "Send a message": "",
59
+ "Send Anyway": "",
60
+ "Send a message": "Отправить сообщение",
61
61
  "Sending links is not allowed in this conversation": "Отправка ссылок недоступна в этом чате",
62
- "Slow mode ON": "",
63
- "The message has been reported to a moderator.": "Сообщение отправлено модератору.",
64
- "Thread Reply": "Тема Ответить",
65
- "Unblock User": "Разблокировать пользователя",
62
+ "Slow mode ON": "Медленный режим включен",
63
+ "The message has been reported to a moderator.": "",
64
+ "Thread Reply": "",
65
+ "Unblock User": "",
66
66
  "Unknown User": "",
67
- "Unmute User": "Включить микрофон",
68
- "Unpin from Conversation": "Открепить от беседы",
69
- "Unread Messages": "Непрочитанные Сообщения",
70
- "Video": "",
67
+ "Unmute User": "",
68
+ "Unpin from Conversation": "",
69
+ "Unread Messages": "",
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
74
  "{{ index }} of {{ photoLength }}": "",
75
75
  "{{ replyCount }} Replies": "",