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

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 (90) 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/en.json +1 -1
  22. package/lib/commonjs/i18n/fr.json +54 -54
  23. package/lib/commonjs/i18n/hi.json +54 -54
  24. package/lib/commonjs/i18n/it.json +54 -54
  25. package/lib/commonjs/i18n/nl.json +54 -54
  26. package/lib/commonjs/i18n/ru.json +54 -54
  27. package/lib/commonjs/i18n/tr.json +54 -54
  28. package/lib/commonjs/version.json +1 -1
  29. package/lib/module/components/Attachment/Attachment.js +22 -14
  30. package/lib/module/components/Attachment/Attachment.js.map +1 -1
  31. package/lib/module/components/Attachment/Card.js +11 -4
  32. package/lib/module/components/Attachment/Card.js.map +1 -1
  33. package/lib/module/components/Attachment/Gallery.js +24 -16
  34. package/lib/module/components/Attachment/Gallery.js.map +1 -1
  35. package/lib/module/components/Message/Message.js +14 -7
  36. package/lib/module/components/Message/Message.js.map +1 -1
  37. package/lib/module/components/Message/MessageSimple/MessageContent.js +22 -16
  38. package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
  39. package/lib/module/components/Message/MessageSimple/MessageSimple.js +14 -8
  40. package/lib/module/components/Message/MessageSimple/MessageSimple.js.map +1 -1
  41. package/lib/module/components/Message/MessageSimple/MessageTextContainer.js +10 -4
  42. package/lib/module/components/Message/MessageSimple/MessageTextContainer.js.map +1 -1
  43. package/lib/module/components/Message/hooks/useCreateMessageContext.js +6 -1
  44. package/lib/module/components/Message/hooks/useCreateMessageContext.js.map +1 -1
  45. package/lib/module/components/MessageOverlay/MessageOverlay.js +9 -3
  46. package/lib/module/components/MessageOverlay/MessageOverlay.js.map +1 -1
  47. package/lib/module/contexts/messageContext/MessageContext.js +2 -2
  48. package/lib/module/contexts/messageContext/MessageContext.js.map +1 -1
  49. package/lib/module/i18n/en.json +1 -1
  50. package/lib/module/i18n/fr.json +54 -54
  51. package/lib/module/i18n/hi.json +54 -54
  52. package/lib/module/i18n/it.json +54 -54
  53. package/lib/module/i18n/nl.json +54 -54
  54. package/lib/module/i18n/ru.json +54 -54
  55. package/lib/module/i18n/tr.json +54 -54
  56. package/lib/module/version.json +1 -1
  57. package/lib/typescript/components/Attachment/Attachment.d.ts +2 -2
  58. package/lib/typescript/components/Attachment/Card.d.ts +2 -2
  59. package/lib/typescript/components/Attachment/Gallery.d.ts +1 -1
  60. package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts +1 -1
  61. package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts +1 -1
  62. package/lib/typescript/components/Message/MessageSimple/MessageTextContainer.d.ts +1 -1
  63. package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts +1 -1
  64. package/lib/typescript/contexts/messageContext/MessageContext.d.ts +8 -2
  65. package/lib/typescript/i18n/en.json +1 -1
  66. package/lib/typescript/i18n/fr.json +54 -54
  67. package/lib/typescript/i18n/hi.json +54 -54
  68. package/lib/typescript/i18n/it.json +54 -54
  69. package/lib/typescript/i18n/nl.json +54 -54
  70. package/lib/typescript/i18n/ru.json +54 -54
  71. package/lib/typescript/i18n/tr.json +54 -54
  72. package/package.json +1 -1
  73. package/src/components/Attachment/Attachment.tsx +16 -2
  74. package/src/components/Attachment/Card.tsx +22 -4
  75. package/src/components/Attachment/Gallery.tsx +11 -0
  76. package/src/components/Message/Message.tsx +9 -0
  77. package/src/components/Message/MessageSimple/MessageContent.tsx +9 -0
  78. package/src/components/Message/MessageSimple/MessageSimple.tsx +9 -0
  79. package/src/components/Message/MessageSimple/MessageTextContainer.tsx +12 -2
  80. package/src/components/Message/hooks/useCreateMessageContext.ts +4 -0
  81. package/src/components/MessageOverlay/MessageOverlay.tsx +8 -0
  82. package/src/contexts/messageContext/MessageContext.tsx +7 -1
  83. package/src/i18n/en.json +1 -1
  84. package/src/i18n/fr.json +54 -54
  85. package/src/i18n/hi.json +54 -54
  86. package/src/i18n/it.json +54 -54
  87. package/src/i18n/nl.json +54 -54
  88. package/src/i18n/ru.json +54 -54
  89. package/src/i18n/tr.json +54 -54
  90. package/src/version.json +1 -1
@@ -1,79 +1,79 @@
1
1
  {
2
2
  "1 Reply": "1 Cevap",
3
- "1 Thread Reply": "",
3
+ "1 Thread Reply": "1 Konu Yanıtı",
4
4
  "Allow access to your Gallery": "Galerinize erişime izin verin",
5
5
  "Allow camera access in device settings": "Cihaz ayarlarında kamera erişimine izin ver",
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": "",
6
+ "Also send to channel": "Kanala da gönder",
7
+ "Are you sure you want to permanently delete this message?": "Bu mesajı kalıcı olarak silmek istediğinizden emin misiniz?",
8
+ "Are you sure?": "Emin misiniz?",
9
+ "Block User": "Kullanıcıyı engelle",
10
+ "Cancel": "İptal",
11
+ "Cannot Flag Message": "Raporlama Başarısız",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Yorumunuzun diğerlerini nasıl hissettirebileceğini düşünün ve topluluk kurallarımızı takip ettiğinizden emin olun",
13
+ "Copy Message": "Mesajı Kopyala",
14
+ "Delete": "Sil",
15
+ "Delete Message": "Mesajı Sil",
16
16
  "Device camera is used to take photos or videos.": "Cihaz kamerası fotoğraf veya video çekmek için kullanılır.",
17
- "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
- "Edit Message": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "Detaylı inceleme için bu mesajın kopyasını moderatöre göndermek istiyor musunuz?",
18
+ "Edit Message": "Mesajı Düzenle",
19
19
  "Editing Message": "Mesaj Düzenleniyor",
20
20
  "Emoji matching": "Emoji eşleştirme",
21
- "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
25
- "Error while loading, please reload/refresh": "",
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": "",
30
- "How about sending your first message to a friend?": "",
21
+ "Empty message...": "Boş mesaj...",
22
+ "Error loading": "Yükleme hatası",
23
+ "Error loading channel list...": "Kanal listesi yüklenirken hata oluştu...",
24
+ "Error loading messages for this channel...": "Bu kanal için mesajlar yüklenirken hata oluştu...",
25
+ "Error while loading, please reload/refresh": "Yüklenirken hata oluştu, lütfen tekrar deneyiniz",
26
+ "File type not supported": "Dosya türü desteklenmiyor",
27
+ "Flag": "Raporla",
28
+ "Flag Message": "Mesajı Raporla",
29
+ "Flag action failed either due to a network issue or the message is already flagged": "Mesajın daha önce raporlanmış olması veya bir ağ bağlantısı sorunu nedeniyle raporlama işlemi başarısız oldu.",
30
+ "How about sending your first message to a friend?": "İlk mesajınızı bir arkadaşınıza göndermeye ne dersiniz?",
31
31
  "Instant Commands": "Anlık Komutlar",
32
- "Let's start chatting!": "",
33
- "Links are disabled": "",
32
+ "Let's start chatting!": "Haydi sohbete başlayalım!",
33
+ "Links are disabled": "Bağlantılar devre dışı",
34
34
  "Loading channels...": "Kanallar yükleniyor...",
35
35
  "Loading messages...": "Mesajlar yükleniyor...",
36
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": "",
39
- "Message deleted": "",
40
- "Message flagged": "",
41
- "Mute User": "",
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
+ "Message deleted": "Mesaj silindi",
40
+ "Message flagged": "Mesaj işaretlendi",
41
+ "Mute User": "Kullanıcıyı sessize al",
42
42
  "Not supported": "Desteklenmiyor",
43
- "Nothing yet...": "",
44
- "Ok": "",
45
- "Only visible to you": "",
43
+ "Nothing yet...": "Henüz değil...",
44
+ "Ok": "Tamam",
45
+ "Only visible to you": "Sadece siz görebilirsiniz",
46
46
  "Open Settings": "Ayarları aç",
47
- "Photo": "",
47
+ "Photo": "Fotoğraf",
48
48
  "Photos and Videos": "Fotoğraflar ve Videolar",
49
- "Pin to Conversation": "",
50
- "Pinned by": "",
49
+ "Pin to Conversation": "Konuşmaya sabitle",
50
+ "Pinned by": "Tarafından sabitlendi",
51
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.",
52
52
  "Please select a channel first": "Lütfen önce bir kanal seçiniz",
53
- "Reconnecting...": "",
54
- "Reply": "",
53
+ "Reconnecting...": "Yeniden Bağlanılıyor...",
54
+ "Reply": "Yanıtla",
55
55
  "Reply to Message": "Mesajı Yanıtla",
56
- "Resend": "",
56
+ "Resend": "Yeniden gönder",
57
57
  "Search GIFs": "GIF Ara",
58
58
  "Select More Photos": "Daha Fazla Fotoğraf Seçin",
59
- "Send Anyway": "",
59
+ "Send Anyway": "Yine de Gönder",
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
- "The message has been reported to a moderator.": "",
64
- "Thread Reply": "",
65
- "Unblock User": "",
63
+ "The message has been reported to a moderator.": "Mesaj moderatöre bildirildi.",
64
+ "Thread Reply": "Konu Yanıtı",
65
+ "Unblock User": "Kullanıcının engelini kaldır",
66
66
  "Unknown User": "Bilinmeyen kullanıcı",
67
- "Unmute User": "",
68
- "Unpin from Conversation": "",
69
- "Unread Messages": "",
70
- "Video": "",
71
- "You": "",
72
- "You can't send messages in this channel": "",
73
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
67
+ "Unmute User": "Kullanıcının sesini aç",
68
+ "Unpin from Conversation": "Sabitlemeyi kaldır",
69
+ "Unread Messages": "Okunmamış Mesajlar",
70
+ "Video": "Video",
71
+ "You": "Sen",
72
+ "You can't send messages in this channel": "Bu konuşmaya mesaj gönderemezsiniz",
73
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ve {{ nonSelfUserLength }} kişi daha yazıyor",
74
74
  "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
75
75
  "{{ replyCount }} Replies": "{{ replyCount }} Cevap",
76
- "{{ replyCount }} Thread Replies": "",
77
- "{{ user }} is typing": "",
78
- "🏙 Attachment...": ""
76
+ "{{ replyCount }} Thread Replies": "{{responseCount}} Konu Cevapı",
77
+ "{{ user }} is typing": "{{ user }} yazıyor",
78
+ "🏙 Attachment...": "🏙 Ek..."
79
79
  }
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "5.24.0-beta.5"
2
+ "version": "5.24.0"
3
3
  }
@@ -3,13 +3,13 @@ import type { Attachment as AttachmentType } from 'stream-chat';
3
3
  import { MessagesContextValue } from '../../contexts/messagesContext/MessagesContext';
4
4
  import type { DefaultStreamChatGenerics } from '../../types/types';
5
5
  export declare type ActionHandler = (name: string, value: string) => void;
6
- export declare type AttachmentPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessagesContextValue<StreamChatGenerics>, 'AttachmentActions' | 'Card' | 'FileAttachment' | 'Gallery' | 'giphyVersion' | 'Giphy' | 'isAttachmentEqual' | 'UrlPreview'> & {
6
+ export declare type AttachmentPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessagesContextValue<StreamChatGenerics>, 'AttachmentActions' | 'Card' | 'FileAttachment' | 'Gallery' | 'giphyVersion' | 'Giphy' | 'isAttachmentEqual' | 'UrlPreview' | 'myMessageTheme'> & {
7
7
  /**
8
8
  * The attachment to render
9
9
  */
10
10
  attachment: AttachmentType<StreamChatGenerics>;
11
11
  };
12
- export declare type AttachmentProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Partial<Pick<MessagesContextValue<StreamChatGenerics>, 'AttachmentActions' | 'Card' | 'FileAttachment' | 'Gallery' | 'Giphy' | 'giphyVersion' | 'UrlPreview' | 'isAttachmentEqual'>> & Pick<AttachmentPropsWithContext<StreamChatGenerics>, 'attachment'>;
12
+ export declare type AttachmentProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Partial<Pick<MessagesContextValue<StreamChatGenerics>, 'AttachmentActions' | 'Card' | 'FileAttachment' | 'Gallery' | 'Giphy' | 'giphyVersion' | 'myMessageTheme' | 'UrlPreview' | 'isAttachmentEqual'>> & Pick<AttachmentPropsWithContext<StreamChatGenerics>, 'attachment'>;
13
13
  /**
14
14
  * Attachment - The message attachment
15
15
  */
@@ -5,7 +5,7 @@ import { ChatContextValue } from '../../contexts/chatContext/ChatContext';
5
5
  import { MessageContextValue } from '../../contexts/messageContext/MessageContext';
6
6
  import { MessagesContextValue } from '../../contexts/messagesContext/MessagesContext';
7
7
  import type { DefaultStreamChatGenerics } from '../../types/types';
8
- export declare type CardPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Attachment<StreamChatGenerics> & Pick<ChatContextValue, 'ImageComponent'> & Pick<MessageContextValue<StreamChatGenerics>, 'onLongPress' | 'onPress' | 'onPressIn' | 'preventPress'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'CardCover' | 'CardFooter' | 'CardHeader'> & {
8
+ export declare type CardPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Attachment<StreamChatGenerics> & Pick<ChatContextValue, 'ImageComponent'> & Pick<MessageContextValue<StreamChatGenerics>, 'onLongPress' | 'onPress' | 'onPressIn' | 'preventPress'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'CardCover' | 'CardFooter' | 'CardHeader' | 'myMessageTheme'> & {
9
9
  channelId: string | undefined;
10
10
  messageId: string | undefined;
11
11
  styles?: Partial<{
@@ -21,7 +21,7 @@ export declare type CardPropsWithContext<StreamChatGenerics extends DefaultStrea
21
21
  title: StyleProp<TextStyle>;
22
22
  }>;
23
23
  };
24
- export declare type CardProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Attachment<StreamChatGenerics> & Partial<Pick<ChatContextValue<StreamChatGenerics>, 'ImageComponent'> & Pick<MessageContextValue<StreamChatGenerics>, 'onLongPress' | 'onPress' | 'onPressIn'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'CardCover' | 'CardFooter' | 'CardHeader'>>;
24
+ export declare type CardProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Attachment<StreamChatGenerics> & Partial<Pick<ChatContextValue<StreamChatGenerics>, 'ImageComponent'> & Pick<MessageContextValue<StreamChatGenerics>, 'onLongPress' | 'onPress' | 'onPressIn' | 'myMessageTheme'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'CardCover' | 'CardFooter' | 'CardHeader'>>;
25
25
  /**
26
26
  * UI component for card in attachments.
27
27
  */
@@ -5,7 +5,7 @@ import { MessageContextValue } from '../../contexts/messageContext/MessageContex
5
5
  import { MessagesContextValue } from '../../contexts/messagesContext/MessagesContext';
6
6
  import { OverlayContextValue } from '../../contexts/overlayContext/OverlayContext';
7
7
  import type { DefaultStreamChatGenerics } from '../../types/types';
8
- export declare type GalleryPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<ImageGalleryContextValue<StreamChatGenerics>, 'setSelectedMessage' | 'setMessages'> & Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'groupStyles' | 'images' | 'videos' | 'onLongPress' | 'onPress' | 'onPressIn' | 'preventPress' | 'threadList'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'legacyImageViewerSwipeBehaviour' | 'VideoThumbnail' | 'ImageLoadingIndicator' | 'ImageLoadingFailedIndicator'> & Pick<OverlayContextValue, 'setOverlay'> & {
8
+ export declare type GalleryPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<ImageGalleryContextValue<StreamChatGenerics>, 'setSelectedMessage' | 'setMessages'> & Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'groupStyles' | 'images' | 'videos' | 'onLongPress' | 'onPress' | 'onPressIn' | 'preventPress' | 'threadList'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'legacyImageViewerSwipeBehaviour' | 'VideoThumbnail' | 'ImageLoadingIndicator' | 'ImageLoadingFailedIndicator' | 'myMessageTheme'> & Pick<OverlayContextValue, 'setOverlay'> & {
9
9
  channelId: string | undefined;
10
10
  hasThreadReplies?: boolean;
11
11
  /**
@@ -3,7 +3,7 @@ import { MessageContextValue } from '../../../contexts/messageContext/MessageCon
3
3
  import { MessagesContextValue } from '../../../contexts/messagesContext/MessagesContext';
4
4
  import { TranslationContextValue } from '../../../contexts/translationContext/TranslationContext';
5
5
  import type { DefaultStreamChatGenerics } from '../../../types/types';
6
- export declare type MessageContentPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'disabled' | 'goToMessage' | 'groupStyles' | 'hasReactions' | 'isMyMessage' | 'lastGroupMessage' | 'members' | 'message' | 'messageContentOrder' | 'onLongPress' | 'onlyEmojis' | 'onPress' | 'onPressIn' | 'otherAttachments' | 'preventPress' | 'showMessageStatus' | 'threadList'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'Attachment' | 'FileAttachmentGroup' | 'formatDate' | 'Gallery' | 'isAttachmentEqual' | 'MessageFooter' | 'MessageHeader' | 'MessageDeleted' | 'MessageError' | 'MessageReplies' | 'MessageStatus' | 'onPressInMessage' | 'Reply'> & Pick<TranslationContextValue, 't' | 'tDateTimeParser'> & {
6
+ export declare type MessageContentPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'disabled' | 'goToMessage' | 'groupStyles' | 'hasReactions' | 'isMyMessage' | 'lastGroupMessage' | 'members' | 'message' | 'messageContentOrder' | 'onLongPress' | 'onlyEmojis' | 'onPress' | 'onPressIn' | 'otherAttachments' | 'preventPress' | 'showMessageStatus' | 'threadList'> & Pick<MessagesContextValue<StreamChatGenerics>, 'additionalTouchableProps' | 'Attachment' | 'FileAttachmentGroup' | 'formatDate' | 'Gallery' | 'isAttachmentEqual' | 'MessageFooter' | 'MessageHeader' | 'MessageDeleted' | 'MessageError' | 'MessageReplies' | 'MessageStatus' | 'myMessageTheme' | 'onPressInMessage' | 'Reply'> & Pick<TranslationContextValue, 't' | 'tDateTimeParser'> & {
7
7
  setMessageContentWidth: React.Dispatch<React.SetStateAction<number>>;
8
8
  };
9
9
  export declare type MessageContentProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Partial<Omit<MessageContentPropsWithContext<StreamChatGenerics>, 'setMessageContentWidth'>> & Pick<MessageContentPropsWithContext<StreamChatGenerics>, 'setMessageContentWidth'>;
@@ -2,7 +2,7 @@
2
2
  import { MessageContextValue } from '../../../contexts/messageContext/MessageContext';
3
3
  import { MessagesContextValue } from '../../../contexts/messagesContext/MessagesContext';
4
4
  import type { DefaultStreamChatGenerics } from '../../../types/types';
5
- export declare type MessageSimplePropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'channel' | 'groupStyles' | 'hasReactions' | 'message'> & Pick<MessagesContextValue<StreamChatGenerics>, 'enableMessageGroupingByUser' | 'MessageAvatar' | 'MessageContent' | 'MessagePinnedHeader' | 'ReactionList'>;
5
+ export declare type MessageSimplePropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'alignment' | 'channel' | 'groupStyles' | 'hasReactions' | 'message'> & Pick<MessagesContextValue<StreamChatGenerics>, 'enableMessageGroupingByUser' | 'myMessageTheme' | 'MessageAvatar' | 'MessageContent' | 'MessagePinnedHeader' | 'ReactionList'>;
6
6
  export declare type MessageSimpleProps<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Partial<MessageSimplePropsWithContext<StreamChatGenerics>>;
7
7
  /**
8
8
  *
@@ -11,7 +11,7 @@ export declare type MessageTextProps<StreamChatGenerics extends DefaultStreamCha
11
11
  theme: Theme;
12
12
  };
13
13
  };
14
- export declare type MessageTextContainerPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'message' | 'onLongPress' | 'onlyEmojis' | 'onPress' | 'preventPress'> & Pick<MessagesContextValue<StreamChatGenerics>, 'markdownRules' | 'MessageText'> & {
14
+ export declare type MessageTextContainerPropsWithContext<StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics> = Pick<MessageContextValue<StreamChatGenerics>, 'message' | 'onLongPress' | 'onlyEmojis' | 'onPress' | 'preventPress'> & Pick<MessagesContextValue<StreamChatGenerics>, 'markdownRules' | 'MessageText' | 'myMessageTheme'> & {
15
15
  markdownStyles?: MarkdownStyle;
16
16
  messageOverlay?: boolean;
17
17
  messageTextNumberOfLines?: number;
@@ -1,3 +1,3 @@
1
1
  import type { MessageContextValue } from '../../../contexts/messageContext/MessageContext';
2
2
  import type { DefaultStreamChatGenerics } from '../../../types/types';
3
- export declare const useCreateMessageContext: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>({ actionsEnabled, alignment, channel, disabled, files, goToMessage, groupStyles, handleAction, handleDeleteMessage, handleEditMessage, handleQuotedReplyMessage, handleResendMessage, handleToggleBanUser, handleToggleMuteUser, handleToggleReaction, hasReactions, images, isMyMessage, lastGroupMessage, lastReceivedId, members, message, messageContentOrder, onLongPress, onlyEmojis, onOpenThread, onPress, onPressIn, otherAttachments, preventPress, reactions, showAvatar, showMessageOverlay, showMessageStatus, threadList, videos, }: MessageContextValue<StreamChatGenerics>) => MessageContextValue<StreamChatGenerics>;
3
+ export declare const useCreateMessageContext: <StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>({ actionsEnabled, alignment, channel, disabled, files, goToMessage, groupStyles, handleAction, handleDeleteMessage, handleEditMessage, handleQuotedReplyMessage, handleResendMessage, handleToggleBanUser, handleToggleMuteUser, handleToggleReaction, hasReactions, images, isMyMessage, lastGroupMessage, lastReceivedId, members, message, messageContentOrder, myMessageTheme, onLongPress, onlyEmojis, onOpenThread, onPress, onPressIn, otherAttachments, preventPress, reactions, showAvatar, showMessageOverlay, showMessageStatus, threadList, videos, }: MessageContextValue<StreamChatGenerics>) => MessageContextValue<StreamChatGenerics>;
@@ -5,6 +5,8 @@ import type { MessageTouchableHandlerPayload, TouchableHandlerPayload } from '..
5
5
  import type { GroupType, MessageType } from '../../components/MessageList/hooks/useMessageList';
6
6
  import type { ChannelContextValue } from '../../contexts/channelContext/ChannelContext';
7
7
  import type { MessageContentType } from '../../contexts/messagesContext/MessagesContext';
8
+ import type { DeepPartial } from '../../contexts/themeContext/ThemeContext';
9
+ import type { Theme } from '../../contexts/themeContext/utils/theme';
8
10
  import type { DefaultStreamChatGenerics, UnknownType } from '../../types/types';
9
11
  export declare type Alignment = 'right' | 'left';
10
12
  export declare type Reactions = {
@@ -76,7 +78,7 @@ export declare type MessageContextValue<StreamChatGenerics extends DefaultStream
76
78
  /** The images attached to a message */
77
79
  otherAttachments: Attachment<StreamChatGenerics>[];
78
80
  reactions: Reactions;
79
- showMessageOverlay: (messageReactions?: boolean) => void;
81
+ showMessageOverlay: (messageReactions?: boolean, error?: boolean) => void;
80
82
  showMessageStatus: boolean;
81
83
  /** Whether or not the Message is part of a Thread */
82
84
  threadList: boolean;
@@ -85,6 +87,10 @@ export declare type MessageContextValue<StreamChatGenerics extends DefaultStream
85
87
  goToMessage?: (messageId: string) => void;
86
88
  /** Latest message id on current channel */
87
89
  lastReceivedId?: string;
90
+ /**
91
+ * Theme provided only to messages that are the current users
92
+ */
93
+ myMessageTheme?: DeepPartial<Theme>;
88
94
  /** Prevent message being pressed for image viewer view */
89
95
  preventPress?: boolean;
90
96
  /** Whether or not the avatar show show next to Message */
@@ -100,4 +106,4 @@ export declare const useMessageContext: <StreamChatGenerics extends DefaultStrea
100
106
  * typing is desired while using the HOC withMessageContextContext the Props for the
101
107
  * wrapped component must be provided as the first generic.
102
108
  */
103
- export declare const withMessageContext: <P extends UnknownType, StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(Component: React.ComponentType<P>) => React.FC<Omit<P, "disabled" | "onPress" | "onPressIn" | "onLongPress" | "channel" | "message" | "reactions" | "members" | "threadList" | "alignment" | "actionsEnabled" | "files" | "groupStyles" | "handleAction" | "handleDeleteMessage" | "handleEditMessage" | "handleQuotedReplyMessage" | "handleResendMessage" | "handleToggleBanUser" | "handleToggleMuteUser" | "handleToggleReaction" | "hasReactions" | "images" | "isMyMessage" | "lastGroupMessage" | "messageContentOrder" | "onlyEmojis" | "onOpenThread" | "otherAttachments" | "showMessageOverlay" | "showMessageStatus" | "videos" | "goToMessage" | "lastReceivedId" | "preventPress" | "showAvatar">>;
109
+ export declare const withMessageContext: <P extends UnknownType, StreamChatGenerics extends DefaultStreamChatGenerics = DefaultStreamChatGenerics>(Component: React.ComponentType<P>) => React.FC<Omit<P, "disabled" | "onPress" | "onPressIn" | "onLongPress" | "channel" | "message" | "reactions" | "members" | "threadList" | "alignment" | "actionsEnabled" | "files" | "groupStyles" | "handleAction" | "handleDeleteMessage" | "handleEditMessage" | "handleQuotedReplyMessage" | "handleResendMessage" | "handleToggleBanUser" | "handleToggleMuteUser" | "handleToggleReaction" | "hasReactions" | "images" | "isMyMessage" | "lastGroupMessage" | "messageContentOrder" | "onlyEmojis" | "onOpenThread" | "otherAttachments" | "showMessageOverlay" | "showMessageStatus" | "videos" | "goToMessage" | "lastReceivedId" | "myMessageTheme" | "preventPress" | "showAvatar">>;
@@ -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!",
@@ -1,79 +1,79 @@
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
5
  "Allow camera access in device settings": "Autoriser l'accès à la caméra dans les paramètres de l'appareil",
6
- "Also send to channel": "",
7
- "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": "",
6
+ "Also send to channel": "Envoyer également à la chaîne",
7
+ "Are you sure you want to permanently delete this message?": "Êtes-vous sûr de vouloir supprimer définitivement ce message?",
8
+ "Are you sure?": "Es-tu sûr ?",
9
+ "Block User": "Bloquer un utilisateur",
10
+ "Cancel": "Annuler",
11
+ "Cannot Flag Message": "Impossible de signaler le message",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considérez comment votre commentaire pourrait faire sentir les autres et assurez-vous de suivre nos directives communautaires",
13
+ "Copy Message": "Copier le message",
14
+ "Delete": "Supprimer",
15
+ "Delete Message": "Supprimer un message",
16
16
  "Device camera is used to take photos or videos.": "L'appareil photo de l'appareil est utilisé pour prendre des photos ou des vidéos.",
17
- "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
- "Edit Message": "",
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
19
  "Editing Message": "Édite un message",
20
20
  "Emoji matching": "Correspondance Emoji",
21
- "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
25
- "Error while loading, please reload/refresh": "",
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": "",
30
- "How about sending your first message to a friend?": "",
21
+ "Empty message...": "Message vide...",
22
+ "Error loading": "Erreur lors du chargement",
23
+ "Error loading channel list...": "Erreur lors du chargement de la liste de canaux...",
24
+ "Error loading messages for this channel...": "Erreur lors du chargement des messages de ce canal...",
25
+ "Error while loading, please reload/refresh": "Erreur lors du chargement, veuillez recharger/rafraîchir",
26
+ "File type not supported": "Le type de fichier n'est pas pris en charge",
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é.",
30
+ "How about sending your first message to a friend?": "Et si vous envoyiez votre premier message à un ami ?",
31
31
  "Instant Commands": "Commandes Instantanées",
32
- "Let's start chatting!": "",
33
- "Links are disabled": "",
32
+ "Let's start chatting!": "Commençons à discuter !",
33
+ "Links are disabled": "Links are disabled",
34
34
  "Loading channels...": "Chargement des canaux...",
35
35
  "Loading messages...": "Chargement des messages...",
36
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": "",
39
- "Message deleted": "",
40
- "Message flagged": "",
41
- "Mute User": "",
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
+ "Message deleted": "Message supprimé",
40
+ "Message flagged": "Message signalé",
41
+ "Mute User": "Utilisateur muet",
42
42
  "Not supported": "Non pris en charge",
43
- "Nothing yet...": "",
44
- "Ok": "",
45
- "Only visible to you": "",
43
+ "Nothing yet...": "Aucun message...",
44
+ "Ok": "Ok",
45
+ "Only visible to you": "Seulement visible par vous",
46
46
  "Open Settings": "Ouvrir les paramètres",
47
- "Photo": "",
47
+ "Photo": "Photo",
48
48
  "Photos and Videos": "Photos et vidéos",
49
- "Pin to Conversation": "",
50
- "Pinned by": "",
49
+ "Pin to Conversation": "Épingler à la conversation",
50
+ "Pinned by": "Épinglé par",
51
51
  "Please enable access to your photos and videos so you can share them.": "Veuillez autoriser l'accès à vos photos et vidéos afin de pouvoir les partager.",
52
52
  "Please select a channel first": "Veuillez d'abord selectionnez un canal",
53
- "Reconnecting...": "",
54
- "Reply": "",
53
+ "Reconnecting...": "Se Reconnecter...",
54
+ "Reply": "Répondre",
55
55
  "Reply to Message": "Répondre au message",
56
- "Resend": "",
56
+ "Resend": "Renvoyer",
57
57
  "Search GIFs": "Rechercher des GIF",
58
58
  "Select More Photos": "Sélectionner plus de photos",
59
- "Send Anyway": "",
59
+ "Send Anyway": "Envoyer quand même",
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
- "The message has been reported to a moderator.": "",
64
- "Thread Reply": "",
65
- "Unblock User": "",
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",
66
66
  "Unknown User": "Utilisateur inconnu",
67
- "Unmute User": "",
68
- "Unpin from Conversation": "",
69
- "Unread Messages": "",
70
- "Video": "",
71
- "You": "",
72
- "You can't send messages in this channel": "",
73
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
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": "Vidéo",
71
+ "You": "Toi",
72
+ "You can't send messages in this channel": "You can't send messages in this channel",
73
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
74
74
  "{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
75
75
  "{{ replyCount }} Replies": "{{ replyCount }} Réponses",
76
- "{{ replyCount }} Thread Replies": "",
77
- "{{ user }} is typing": "",
78
- "🏙 Attachment...": ""
76
+ "{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
77
+ "{{ user }} is typing": "{{ user }} est en train d'écrire",
78
+ "🏙 Attachment...": "🏙 Pièce jointe..."
79
79
  }
@@ -1,79 +1,79 @@
1
1
  {
2
2
  "1 Reply": "1 रिप्लाई",
3
- "1 Thread Reply": "",
3
+ "1 Thread Reply": "1 धागा उत्तर",
4
4
  "Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
5
5
  "Allow camera access in device settings": "डिवाइस सेटिंग्स में कैमरा एक्सेस की अनुमति दें",
6
- "Also send to channel": "",
7
- "Are you sure you want to permanently delete this message?": "",
8
- "Are you sure?": "",
9
- "Block User": "",
10
- "Cancel": "",
11
- "Cannot Flag Message": "",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
13
- "Copy Message": "",
14
- "Delete": "",
15
- "Delete Message": "",
6
+ "Also send to channel": "चैनल को भी भेजें",
7
+ "Are you sure you want to permanently delete this message?": "क्या आप वाकई इस संदेश को स्थायी रूप से हटाना चाहते हैं?",
8
+ "Are you sure?": "क्या आप सुनिश्चित हैं?",
9
+ "Block User": "उपयोगकर्ता को रोक देना, ब्लॉक यूजर",
10
+ "Cancel": "रद्द करें",
11
+ "Cannot Flag Message": "मैसेज फ्लैग नहीं किया जा सकता है",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "ध्यान दें कि आपका संदेश दूसरों को कैसा लगा सकता है और सुनिश्चित हों कि आप हमारी सामुदायिक अनुशासन का पालन कर रहे हैं",
13
+ "Copy Message": "संदेश की प्रतिलिपि बनाएँ",
14
+ "Delete": "हटाएं",
15
+ "Delete Message": "मैसेज को डिलीट करे",
16
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": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "क्या आप इस संदेश की एक प्रति आगे की जाँच के लिए किसी मॉडरेटर को भेजना चाहते हैं?",
18
+ "Edit Message": "मैसेज में बदलाव करे",
19
19
  "Editing Message": "मैसेज बदला जा रहा है",
20
20
  "Emoji matching": "इमोजी मिलान",
21
- "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
25
- "Error while loading, please reload/refresh": "",
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": "",
30
- "How about sending your first message to a friend?": "",
21
+ "Empty message...": "खाली संदेश...",
22
+ "Error loading": "लोड होने मे त्रुटि",
23
+ "Error loading channel list...": "चैनल सूची लोड करने में त्रुटि...",
24
+ "Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
25
+ "Error while loading, please reload/refresh": "एरर, रिफ्रेश करे",
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": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
30
+ "How about sending your first message to a friend?": "किसी मित्र को अपना पहला संदेश भेजने के बारे में क्या ख़याल है?",
31
31
  "Instant Commands": "त्वरित कमांड",
32
- "Let's start chatting!": "",
33
- "Links are disabled": "",
32
+ "Let's start chatting!": "आइए चैट करना शुरू करें!",
33
+ "Links are disabled": "लिंक अक्षम हैं",
34
34
  "Loading channels...": "चैनल लोड हो रहे हैं...",
35
35
  "Loading messages...": "मेसेजस लोड हो रहे हैं...",
36
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": "",
39
- "Message deleted": "",
40
- "Message flagged": "",
41
- "Mute User": "",
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
+ "Message deleted": "मैसेज हटा दिया गया",
40
+ "Message flagged": "संदेश को ध्वजांकित किया गया",
41
+ "Mute User": "उपयोगकर्ता को म्यूट करें",
42
42
  "Not supported": "समर्थित नहीं",
43
- "Nothing yet...": "",
44
- "Ok": "",
45
- "Only visible to you": "",
43
+ "Nothing yet...": "कोई मैसेज नहीं है...",
44
+ "Ok": "ठीक",
45
+ "Only visible to you": "केवल आपको दिखाई दे रहा है",
46
46
  "Open Settings": "सेटिंग्स खोलें",
47
- "Photo": "",
47
+ "Photo": "तस्वीर",
48
48
  "Photos and Videos": "तस्वीरें और वीडियों",
49
- "Pin to Conversation": "",
50
- "Pinned by": "",
49
+ "Pin to Conversation": "बातचीत में पिन करें",
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
- "Reconnecting...": "",
54
- "Reply": "",
53
+ "Reconnecting...": "पुनः कनेक्ट हो...",
54
+ "Reply": "मैसेज को रिप्लाई करे",
55
55
  "Reply to Message": "संदेश का जवाब दें",
56
- "Resend": "",
56
+ "Resend": "पुन: भेजें",
57
57
  "Search GIFs": "GIF खोजें",
58
58
  "Select More Photos": "अधिक फ़ोटो चुनें",
59
- "Send Anyway": "",
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
- "The message has been reported to a moderator.": "",
64
- "Thread Reply": "",
65
- "Unblock User": "",
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": "",
71
- "You": "",
72
- "You can't send messages in this channel": "",
73
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
67
+ "Unmute User": "उपयोगकर्ता को अनम्यूट करें",
68
+ "Unpin from Conversation": "बातचीत से अनपिन करें",
69
+ "Unread Messages": "अपठित संदेश",
70
+ "Video": "वीडियो",
71
+ "You": "आप",
72
+ "You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
73
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
74
74
  "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
75
75
  "{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
76
- "{{ replyCount }} Thread Replies": "",
77
- "{{ user }} is typing": "",
78
- "🏙 Attachment...": ""
76
+ "{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
77
+ "{{ user }} is typing": "{{ user }} टाइप कर रहा है",
78
+ "🏙 Attachment...": "🏙 अटैचमेंट..."
79
79
  }