stream-chat-react-native-core 5.21.0-beta.3 → 5.21.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 (68) hide show
  1. package/lib/commonjs/components/Channel/Channel.js +17 -13
  2. package/lib/commonjs/components/Channel/Channel.js.map +1 -1
  3. package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js +2 -0
  4. package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
  5. package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +22 -42
  6. package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
  7. package/lib/commonjs/components/Message/MessageSimple/MessageError.js +50 -0
  8. package/lib/commonjs/components/Message/MessageSimple/MessageError.js.map +1 -0
  9. package/lib/commonjs/components/index.js +11 -0
  10. package/lib/commonjs/components/index.js.map +1 -1
  11. package/lib/commonjs/contexts/messagesContext/MessagesContext.js +2 -2
  12. package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
  13. package/lib/commonjs/i18n/en.json +1 -1
  14. package/lib/commonjs/i18n/fr.json +55 -55
  15. package/lib/commonjs/i18n/hi.json +55 -55
  16. package/lib/commonjs/i18n/it.json +55 -55
  17. package/lib/commonjs/i18n/nl.json +55 -55
  18. package/lib/commonjs/i18n/ru.json +55 -55
  19. package/lib/commonjs/i18n/tr.json +55 -55
  20. package/lib/commonjs/version.json +1 -1
  21. package/lib/module/components/Channel/Channel.js +17 -13
  22. package/lib/module/components/Channel/Channel.js.map +1 -1
  23. package/lib/module/components/Channel/hooks/useCreateMessagesContext.js +2 -0
  24. package/lib/module/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
  25. package/lib/module/components/Message/MessageSimple/MessageContent.js +22 -42
  26. package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
  27. package/lib/module/components/Message/MessageSimple/MessageError.js +50 -0
  28. package/lib/module/components/Message/MessageSimple/MessageError.js.map +1 -0
  29. package/lib/module/components/index.js +11 -0
  30. package/lib/module/components/index.js.map +1 -1
  31. package/lib/module/contexts/messagesContext/MessagesContext.js +2 -2
  32. package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
  33. package/lib/module/i18n/en.json +1 -1
  34. package/lib/module/i18n/fr.json +55 -55
  35. package/lib/module/i18n/hi.json +55 -55
  36. package/lib/module/i18n/it.json +55 -55
  37. package/lib/module/i18n/nl.json +55 -55
  38. package/lib/module/i18n/ru.json +55 -55
  39. package/lib/module/i18n/tr.json +55 -55
  40. package/lib/module/version.json +1 -1
  41. package/lib/typescript/components/Channel/Channel.d.ts +1 -1
  42. package/lib/typescript/components/Channel/hooks/useCreateMessagesContext.d.ts +1 -1
  43. package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts +1 -1
  44. package/lib/typescript/components/Message/MessageSimple/MessageError.d.ts +6 -0
  45. package/lib/typescript/components/index.d.ts +1 -0
  46. package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +5 -0
  47. package/lib/typescript/i18n/en.json +1 -1
  48. package/lib/typescript/i18n/fr.json +55 -55
  49. package/lib/typescript/i18n/hi.json +55 -55
  50. package/lib/typescript/i18n/it.json +55 -55
  51. package/lib/typescript/i18n/nl.json +55 -55
  52. package/lib/typescript/i18n/ru.json +55 -55
  53. package/lib/typescript/i18n/tr.json +55 -55
  54. package/package.json +1 -1
  55. package/src/components/Channel/Channel.tsx +4 -0
  56. package/src/components/Channel/hooks/useCreateMessagesContext.ts +2 -0
  57. package/src/components/Message/MessageSimple/MessageContent.tsx +6 -11
  58. package/src/components/Message/MessageSimple/MessageError.tsx +28 -0
  59. package/src/components/index.ts +1 -0
  60. package/src/contexts/messagesContext/MessagesContext.tsx +5 -0
  61. package/src/i18n/en.json +1 -1
  62. package/src/i18n/fr.json +55 -55
  63. package/src/i18n/hi.json +55 -55
  64. package/src/i18n/it.json +55 -55
  65. package/src/i18n/nl.json +55 -55
  66. package/src/i18n/ru.json +55 -55
  67. package/src/i18n/tr.json +55 -55
  68. package/src/version.json +1 -1
@@ -19,7 +19,6 @@ import {
19
19
  useTranslationContext,
20
20
  } from '../../../contexts/translationContext/TranslationContext';
21
21
 
22
- import { Error } from '../../../icons';
23
22
  import type { DefaultStreamChatGenerics } from '../../../types/types';
24
23
  import { MessageStatusTypes, vw } from '../../../utils/utils';
25
24
 
@@ -88,6 +87,7 @@ export type MessageContentPropsWithContext<
88
87
  | 'MessageFooter'
89
88
  | 'MessageHeader'
90
89
  | 'MessageDeleted'
90
+ | 'MessageError'
91
91
  | 'MessageReplies'
92
92
  | 'MessageStatus'
93
93
  | 'onPressInMessage'
@@ -121,6 +121,7 @@ const MessageContentWithContext = <
121
121
  message,
122
122
  messageContentOrder,
123
123
  MessageDeleted,
124
+ MessageError,
124
125
  MessageFooter,
125
126
  MessageHeader,
126
127
  MessageReplies,
@@ -140,7 +141,7 @@ const MessageContentWithContext = <
140
141
 
141
142
  const {
142
143
  theme: {
143
- colors: { accent_red, blue_alice, grey_gainsboro, grey_whisper, transparent, white },
144
+ colors: { blue_alice, grey_gainsboro, grey_whisper, transparent, white },
144
145
  messageSimple: {
145
146
  content: {
146
147
  container: {
@@ -155,8 +156,6 @@ const MessageContentWithContext = <
155
156
  },
156
157
  containerInner,
157
158
  errorContainer,
158
- errorIcon,
159
- errorIconContainer,
160
159
  replyBorder,
161
160
  replyContainer,
162
161
  wrapper,
@@ -395,13 +394,7 @@ const MessageContentWithContext = <
395
394
  }
396
395
  })}
397
396
  </View>
398
- {error && (
399
- <View style={StyleSheet.absoluteFill} testID='message-error'>
400
- <View style={errorIconContainer}>
401
- <Error pathFill={accent_red} {...errorIcon} />
402
- </View>
403
- </View>
404
- )}
397
+ {error && <MessageError />}
405
398
  </View>
406
399
  <MessageReplies noBorder={noBorder} repliesCurveColor={repliesCurveColor} />
407
400
  <MessageFooter formattedDate={getDateText(formatDate)} isDeleted={!!isMessageTypeDeleted} />
@@ -580,6 +573,7 @@ export const MessageContent = <
580
573
  Gallery,
581
574
  isAttachmentEqual,
582
575
  MessageDeleted,
576
+ MessageError,
583
577
  MessageFooter,
584
578
  MessageHeader,
585
579
  MessageReplies,
@@ -609,6 +603,7 @@ export const MessageContent = <
609
603
  message,
610
604
  messageContentOrder,
611
605
  MessageDeleted,
606
+ MessageError,
612
607
  MessageFooter,
613
608
  MessageHeader,
614
609
  MessageReplies,
@@ -0,0 +1,28 @@
1
+ import React from 'react';
2
+ import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native';
3
+
4
+ import { useTheme } from '../../../contexts/themeContext/ThemeContext';
5
+ import { Error } from '../../../icons';
6
+
7
+ export type MessageErrorProps = {
8
+ style?: StyleProp<ViewStyle>;
9
+ };
10
+
11
+ export const MessageError: React.FC<MessageErrorProps> = ({ style }) => {
12
+ const {
13
+ theme: {
14
+ colors: { accent_red },
15
+ messageSimple: {
16
+ content: { errorIcon, errorIconContainer },
17
+ },
18
+ },
19
+ } = useTheme();
20
+
21
+ return (
22
+ <View style={[StyleSheet.absoluteFill, style]} testID='message-error'>
23
+ <View style={errorIconContainer}>
24
+ <Error pathFill={accent_red} {...errorIcon} />
25
+ </View>
26
+ </View>
27
+ );
28
+ };
@@ -98,6 +98,7 @@ export * from './Message/Message';
98
98
  export * from './Message/MessageSimple/MessageAvatar';
99
99
  export * from './Message/MessageSimple/MessageContent';
100
100
  export * from './Message/MessageSimple/MessageDeleted';
101
+ export * from './Message/MessageSimple/MessageError';
101
102
  export * from './Message/MessageSimple/MessageFooter';
102
103
  export * from './Message/MessageSimple/MessagePinnedHeader';
103
104
  export * from './Message/MessageSimple/MessageReplies';
@@ -26,6 +26,7 @@ import type {
26
26
  import type { MessageAvatarProps } from '../../components/Message/MessageSimple/MessageAvatar';
27
27
  import type { MessageContentProps } from '../../components/Message/MessageSimple/MessageContent';
28
28
  import type { MessageDeletedProps } from '../../components/Message/MessageSimple/MessageDeleted';
29
+ import type { MessageErrorProps } from '../../components/Message/MessageSimple/MessageError';
29
30
  import type { MessageFooterProps } from '../../components/Message/MessageSimple/MessageFooter';
30
31
 
31
32
  import type { MessageRepliesProps } from '../../components/Message/MessageSimple/MessageReplies';
@@ -169,6 +170,10 @@ export type MessagesContextValue<
169
170
  * Defaults to: [MessageDeleted](https://github.com/GetStream/stream-chat-react-native/blob/main/package/src/components/MessageSimple/MessageDeleted.tsx)
170
171
  */
171
172
  MessageDeleted: React.ComponentType<MessageDeletedProps<StreamChatGenerics>>;
173
+ /**
174
+ * UI component for the MessageError.
175
+ */
176
+ MessageError: React.ComponentType<MessageErrorProps>;
172
177
  /**
173
178
  * Custom message footer component
174
179
  */
package/src/i18n/en.json CHANGED
@@ -22,7 +22,7 @@
22
22
  "File type not supported": "File type not supported",
23
23
  "Flag": "Flag",
24
24
  "Flag Message": "Flag Message",
25
- "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",
25
+ "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.",
26
26
  "Instant Commands": "Instant Commands",
27
27
  "Links are disabled": "Links are disabled",
28
28
  "Loading channels...": "Loading channels...",
package/src/i18n/fr.json CHANGED
@@ -1,71 +1,71 @@
1
1
  {
2
2
  "1 Reply": "1 Réponse",
3
- "1 Thread Reply": "",
3
+ "1 Thread Reply": "Réponse à 1 fil",
4
4
  "Allow access to your Gallery": "Autoriser l'accès à votre galerie",
5
- "Also send to channel": "",
6
- "Are you sure you want to permanently delete this message?": "",
7
- "Block User": "",
8
- "Cancel": "",
9
- "Cannot Flag Message": "",
10
- "Copy Message": "",
11
- "Delete": "",
12
- "Delete Message": "",
13
- "Do you want to send a copy of this message to a moderator for further investigation?": "",
14
- "Edit Message": "",
15
- "Editing Message": "",
5
+ "Also send to channel": "Envoyer également à la chaîne",
6
+ "Are you sure you want to permanently delete this message?": "Êtes-vous sûr de vouloir supprimer définitivement ce message?",
7
+ "Block User": "Bloquer un utilisateur",
8
+ "Cancel": "Annuler",
9
+ "Cannot Flag Message": "Impossible de signaler le message",
10
+ "Copy Message": "Copier le message",
11
+ "Delete": "Supprimer",
12
+ "Delete Message": "Supprimer un message",
13
+ "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?",
14
+ "Edit Message": "Éditer un message",
15
+ "Editing Message": "Édite un message",
16
16
  "Emoji matching": "Correspondance Emoji",
17
- "Empty message...": "",
18
- "Error loading": "",
19
- "Error loading channel list...": "",
20
- "Error loading messages for this channel...": "",
21
- "Error while loading, please reload/refresh": "",
22
- "File type not supported": "",
23
- "Flag": "",
24
- "Flag Message": "",
25
- "Flag action failed either due to a network issue or the message is already flagged": "",
17
+ "Empty message...": "Message vide...",
18
+ "Error loading": "Erreur lors du chargement",
19
+ "Error loading channel list...": "Erreur lors du chargement de la liste de canaux...",
20
+ "Error loading messages for this channel...": "Erreur lors du chargement des messages de ce canal...",
21
+ "Error while loading, please reload/refresh": "Erreur lors du chargement, veuillez recharger/rafraîchir",
22
+ "File type not supported": "Le type de fichier n'est pas pris en charge",
23
+ "Flag": "Signaler",
24
+ "Flag Message": "Signaler le message",
25
+ "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é.",
26
26
  "Instant Commands": "Commandes Instantanées",
27
- "Links are disabled": "",
28
- "Loading channels...": "",
29
- "Loading messages...": "",
30
- "Loading...": "",
31
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
27
+ "Links are disabled": "Links are disabled",
28
+ "Loading channels...": "Chargement des canaux...",
29
+ "Loading messages...": "Chargement des messages...",
30
+ "Loading...": "Chargement...",
31
+ "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.",
32
32
  "Message Reactions": "Réactions aux messages",
33
- "Message deleted": "",
34
- "Message flagged": "",
35
- "Mute User": "",
33
+ "Message deleted": "Message supprimé",
34
+ "Message flagged": "Message signalé",
35
+ "Mute User": "Utilisateur muet",
36
36
  "Not supported": "Non pris en charge",
37
- "Nothing yet...": "",
38
- "Ok": "",
39
- "Only visible to you": "",
37
+ "Nothing yet...": "Aucun message...",
38
+ "Ok": "Ok",
39
+ "Only visible to you": "Seulement visible par vous",
40
40
  "Photo": "Photo",
41
41
  "Photos and Videos": "Photos et vidéos",
42
- "Pin to Conversation": "",
43
- "Pinned by": "",
42
+ "Pin to Conversation": "Épingler à la conversation",
43
+ "Pinned by": "Épinglé par",
44
44
  "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.",
45
- "Please select a channel first": "",
46
- "Reconnecting...": "",
47
- "Reply": "",
48
- "Reply to Message": "",
49
- "Resend": "",
50
- "Search GIFs": "",
45
+ "Please select a channel first": "Veuillez d'abord selectionnez un canal",
46
+ "Reconnecting...": "Se Reconnecter...",
47
+ "Reply": "Répondre",
48
+ "Reply to Message": "Répondre au message",
49
+ "Resend": "Renvoyer",
50
+ "Search GIFs": "Rechercher des GIF",
51
51
  "Select More Photos": "Sélectionner plus de photos",
52
- "Send a message": "",
53
- "Sending links is not allowed in this conversation": "",
54
- "Slow mode ON": "",
55
- "The message has been reported to a moderator.": "",
56
- "Thread Reply": "",
57
- "Unblock User": "",
52
+ "Send a message": "Envoyer un message",
53
+ "Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
54
+ "Slow mode ON": "Mode lent activé",
55
+ "The message has been reported to a moderator.": "Le message a été signalé à un modérateur.",
56
+ "Thread Reply": "Réponse à la discussion",
57
+ "Unblock User": "Débloquer Utilisateur",
58
58
  "Unknown User": "Utilisateur inconnu",
59
- "Unmute User": "",
60
- "Unpin from Conversation": "",
61
- "Unread Messages": "",
59
+ "Unmute User": "Activer le son de Utilisateur",
60
+ "Unpin from Conversation": "Décrocher de la conversation",
61
+ "Unread Messages": "Messages non lus",
62
62
  "Video": "Vidéo",
63
- "You": "",
64
- "You can't send messages in this channel": "",
65
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
63
+ "You": "Toi",
64
+ "You can't send messages in this channel": "You can't send messages in this channel",
65
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
66
66
  "{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
67
67
  "{{ replyCount }} Replies": "{{ replyCount }} Réponses",
68
- "{{ replyCount }} Thread Replies": "",
69
- "{{ user }} is typing": "",
70
- "🏙 Attachment...": ""
68
+ "{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
69
+ "{{ user }} is typing": "{{ user }} est en train d'écrire",
70
+ "🏙 Attachment...": "🏙 Pièce jointe..."
71
71
  }
package/src/i18n/hi.json CHANGED
@@ -1,71 +1,71 @@
1
1
  {
2
2
  "1 Reply": "1 रिप्लाई",
3
- "1 Thread Reply": "",
3
+ "1 Thread Reply": "1 धागा उत्तर",
4
4
  "Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
5
- "Also send to channel": "",
6
- "Are you sure you want to permanently delete this message?": "",
7
- "Block User": "",
8
- "Cancel": "",
9
- "Cannot Flag Message": "",
10
- "Copy Message": "",
11
- "Delete": "",
12
- "Delete Message": "",
13
- "Do you want to send a copy of this message to a moderator for further investigation?": "",
14
- "Edit Message": "",
15
- "Editing Message": "",
5
+ "Also send to channel": "चैनल को भी भेजें",
6
+ "Are you sure you want to permanently delete this message?": "क्या आप वाकई इस संदेश को स्थायी रूप से हटाना चाहते हैं?",
7
+ "Block User": "उपयोगकर्ता को रोक देना, ब्लॉक यूजर",
8
+ "Cancel": "रद्द करें",
9
+ "Cannot Flag Message": "मैसेज फ्लैग नहीं किया जा सकता है",
10
+ "Copy Message": "संदेश की प्रतिलिपि बनाएँ",
11
+ "Delete": "हटाएं",
12
+ "Delete Message": "मैसेज को डिलीट करे",
13
+ "Do you want to send a copy of this message to a moderator for further investigation?": "क्या आप इस संदेश की एक प्रति आगे की जाँच के लिए किसी मॉडरेटर को भेजना चाहते हैं?",
14
+ "Edit Message": "मैसेज में बदलाव करे",
15
+ "Editing Message": "मैसेज बदला जा रहा है",
16
16
  "Emoji matching": "इमोजी मिलान",
17
- "Empty message...": "",
18
- "Error loading": "",
19
- "Error loading channel list...": "",
20
- "Error loading messages for this channel...": "",
21
- "Error while loading, please reload/refresh": "",
22
- "File type not supported": "",
23
- "Flag": "",
24
- "Flag Message": "",
25
- "Flag action failed either due to a network issue or the message is already flagged": "",
17
+ "Empty message...": "खाली संदेश...",
18
+ "Error loading": "लोड होने मे त्रुटि",
19
+ "Error loading channel list...": "चैनल सूची लोड करने में त्रुटि...",
20
+ "Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
21
+ "Error while loading, please reload/refresh": "एरर, रिफ्रेश करे",
22
+ "File type not supported": "फ़ाइल प्रकार समर्थित नहीं है",
23
+ "Flag": "झंडा",
24
+ "Flag Message": "झंडा संदेश",
25
+ "Flag action failed either due to a network issue or the message is already flagged": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
26
26
  "Instant Commands": "त्वरित कमांड",
27
- "Links are disabled": "",
28
- "Loading channels...": "",
29
- "Loading messages...": "",
30
- "Loading...": "",
31
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
27
+ "Links are disabled": "लिंक अक्षम हैं",
28
+ "Loading channels...": "चैनल लोड हो रहे हैं...",
29
+ "Loading messages...": "मेसेजस लोड हो रहे हैं...",
30
+ "Loading...": "लोड हो रहा है...",
31
+ "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}} एमबी से नीचे की फ़ाइल अपलोड करें।",
32
32
  "Message Reactions": "संदेश प्रतिक्रियाएँ",
33
- "Message deleted": "",
34
- "Message flagged": "",
35
- "Mute User": "",
33
+ "Message deleted": "मैसेज हटा दिया गया",
34
+ "Message flagged": "संदेश को ध्वजांकित किया गया",
35
+ "Mute User": "उपयोगकर्ता को म्यूट करें",
36
36
  "Not supported": "समर्थित नहीं",
37
- "Nothing yet...": "",
38
- "Ok": "",
39
- "Only visible to you": "",
37
+ "Nothing yet...": "कोई मैसेज नहीं है...",
38
+ "Ok": "ठीक",
39
+ "Only visible to you": "केवल आपको दिखाई दे रहा है",
40
40
  "Photo": "तस्वीर",
41
41
  "Photos and Videos": "तस्वीरें और वीडियों",
42
- "Pin to Conversation": "",
43
- "Pinned by": "",
42
+ "Pin to Conversation": "बातचीत में पिन करें",
43
+ "Pinned by": "द्वारा पिन किया गया",
44
44
  "Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
45
- "Please select a channel first": "",
46
- "Reconnecting...": "",
47
- "Reply": "",
48
- "Reply to Message": "",
49
- "Resend": "",
50
- "Search GIFs": "",
45
+ "Please select a channel first": "कृपया पहले एक चैनल चुनें",
46
+ "Reconnecting...": "पुनः कनेक्ट हो...",
47
+ "Reply": "मैसेज को रिप्लाई करे",
48
+ "Reply to Message": "संदेश का जवाब दें",
49
+ "Resend": "पुन: भेजें",
50
+ "Search GIFs": "GIF खोजें",
51
51
  "Select More Photos": "अधिक फ़ोटो चुनें",
52
- "Send a message": "",
53
- "Sending links is not allowed in this conversation": "",
54
- "Slow mode ON": "",
55
- "The message has been reported to a moderator.": "",
56
- "Thread Reply": "",
57
- "Unblock User": "",
52
+ "Send a message": "एक संदेश भेजें",
53
+ "Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
54
+ "Slow mode ON": "स्लो मोड चालू",
55
+ "The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
56
+ "Thread Reply": "धागा जवाब",
57
+ "Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
58
58
  "Unknown User": "अज्ञात उपयोगकर्ता",
59
- "Unmute User": "",
60
- "Unpin from Conversation": "",
61
- "Unread Messages": "",
59
+ "Unmute User": "उपयोगकर्ता को अनम्यूट करें",
60
+ "Unpin from Conversation": "बातचीत से अनपिन करें",
61
+ "Unread Messages": "अपठित संदेश",
62
62
  "Video": "वीडियो",
63
- "You": "",
64
- "You can't send messages in this channel": "",
65
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
63
+ "You": "आप",
64
+ "You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
65
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
66
66
  "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
67
67
  "{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
68
- "{{ replyCount }} Thread Replies": "",
69
- "{{ user }} is typing": "",
70
- "🏙 Attachment...": ""
68
+ "{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
69
+ "{{ user }} is typing": "{{ user }} टाइप कर रहा है",
70
+ "🏙 Attachment...": "🏙 अटैचमेंट..."
71
71
  }
package/src/i18n/it.json CHANGED
@@ -1,71 +1,71 @@
1
1
  {
2
2
  "1 Reply": "1 Risposta",
3
- "1 Thread Reply": "",
3
+ "1 Thread Reply": "1 Risposta alla Discussione",
4
4
  "Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
5
- "Also send to channel": "",
6
- "Are you sure you want to permanently delete this message?": "",
7
- "Block User": "",
8
- "Cancel": "",
9
- "Cannot Flag Message": "",
10
- "Copy Message": "",
11
- "Delete": "",
12
- "Delete Message": "",
13
- "Do you want to send a copy of this message to a moderator for further investigation?": "",
14
- "Edit Message": "",
15
- "Editing Message": "",
5
+ "Also send to channel": "Invia anche al canale",
6
+ "Are you sure you want to permanently delete this message?": "Sei sicuro di voler eliminare definitivamente questo messaggio?",
7
+ "Block User": "Blocca Utente",
8
+ "Cancel": "Annulla",
9
+ "Cannot Flag Message": "Impossibile Segnalare Messaggio",
10
+ "Copy Message": "Copia Messaggio",
11
+ "Delete": "Elimina",
12
+ "Delete Message": "Cancella il Messaggio",
13
+ "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?",
14
+ "Edit Message": "Modifica Messaggio",
15
+ "Editing Message": "Modificando il Messaggio",
16
16
  "Emoji matching": "Abbinamento emoji",
17
- "Empty message...": "",
18
- "Error loading": "",
19
- "Error loading channel list...": "",
20
- "Error loading messages for this channel...": "",
21
- "Error while loading, please reload/refresh": "",
22
- "File type not supported": "",
23
- "Flag": "",
24
- "Flag Message": "",
25
- "Flag action failed either due to a network issue or the message is already flagged": "",
17
+ "Empty message...": "Message vuoto...",
18
+ "Error loading": "Errore di caricamento",
19
+ "Error loading channel list...": "Errore durante il caricamento della lista dei canali...",
20
+ "Error loading messages for this channel...": "Errore durante il caricamento dei messaggi per questo canale...",
21
+ "Error while loading, please reload/refresh": "Errore durante il caricamento, per favore ricarica la pagina",
22
+ "File type not supported": "Tipo di file non supportato",
23
+ "Flag": "Contrassegna",
24
+ "Flag Message": "Contrassegna Messaggio",
25
+ "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.",
26
26
  "Instant Commands": "Comandi Istantanei",
27
- "Links are disabled": "",
28
- "Loading channels...": "",
29
- "Loading messages...": "",
30
- "Loading...": "",
31
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
27
+ "Links are disabled": "I link sono disabilitati",
28
+ "Loading channels...": "Caricamento canali in corso...",
29
+ "Loading messages...": "Caricamento messaggi...",
30
+ "Loading...": "Caricamento...",
31
+ "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.",
32
32
  "Message Reactions": "Reazioni ai Messaggi",
33
- "Message deleted": "",
34
- "Message flagged": "",
35
- "Mute User": "",
33
+ "Message deleted": "Messaggio cancellato",
34
+ "Message flagged": "Messaggio contrassegnato",
35
+ "Mute User": "Utente Muto",
36
36
  "Not supported": "non supportato",
37
- "Nothing yet...": "",
38
- "Ok": "",
39
- "Only visible to you": "",
37
+ "Nothing yet...": "Ancora niente...",
38
+ "Ok": "Ok",
39
+ "Only visible to you": "Visibile solo a te",
40
40
  "Photo": "Foto",
41
41
  "Photos and Videos": "Foto e Video",
42
- "Pin to Conversation": "",
43
- "Pinned by": "",
42
+ "Pin to Conversation": "Metti in evidenza",
43
+ "Pinned by": "Fissato da",
44
44
  "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.",
45
- "Please select a channel first": "",
46
- "Reconnecting...": "",
47
- "Reply": "",
48
- "Reply to Message": "",
49
- "Resend": "",
50
- "Search GIFs": "",
45
+ "Please select a channel first": "Seleziona un canale",
46
+ "Reconnecting...": "Ricollegarsi...",
47
+ "Reply": "Rispondi",
48
+ "Reply to Message": "Rispondi al messaggio",
49
+ "Resend": "Invia di nuovo",
50
+ "Search GIFs": "Cerca GIF",
51
51
  "Select More Photos": "Seleziona Altre foto",
52
- "Send a message": "",
53
- "Sending links is not allowed in this conversation": "",
54
- "Slow mode ON": "",
55
- "The message has been reported to a moderator.": "",
56
- "Thread Reply": "",
57
- "Unblock User": "",
52
+ "Send a message": "Mandare un messaggio",
53
+ "Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
54
+ "Slow mode ON": "Slowmode attiva",
55
+ "The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
56
+ "Thread Reply": "Rispondi alla Discussione",
57
+ "Unblock User": "Sblocca utente",
58
58
  "Unknown User": "Utente sconosciuto",
59
- "Unmute User": "",
60
- "Unpin from Conversation": "",
61
- "Unread Messages": "",
59
+ "Unmute User": "Riattiva utente",
60
+ "Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
61
+ "Unread Messages": "Messaggi non letti",
62
62
  "Video": "Video",
63
- "You": "",
64
- "You can't send messages in this channel": "",
65
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
63
+ "You": "Tu",
64
+ "You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
65
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
66
66
  "{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
67
67
  "{{ replyCount }} Replies": "{{ replyCount }} Risposte",
68
- "{{ replyCount }} Thread Replies": "",
69
- "{{ user }} is typing": "",
70
- "🏙 Attachment...": ""
68
+ "{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
69
+ "{{ user }} is typing": "{{ user }} sta scrivendo",
70
+ "🏙 Attachment...": "🏙 Allegato..."
71
71
  }