stream-chat-react-native-core 5.29.1-beta.4 → 5.30.0-beta.2

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 (209) hide show
  1. package/lib/commonjs/components/Channel/Channel.js +4 -2
  2. package/lib/commonjs/components/Channel/Channel.js.map +1 -1
  3. package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js +2 -2
  4. package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
  5. package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js +1 -1
  6. package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
  7. package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js +6 -14
  8. package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
  9. package/lib/commonjs/components/Message/Message.js +11 -0
  10. package/lib/commonjs/components/Message/Message.js.map +1 -1
  11. package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +12 -27
  12. package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
  13. package/lib/commonjs/components/Message/MessageSimple/MessageDeleted.js +10 -12
  14. package/lib/commonjs/components/Message/MessageSimple/MessageDeleted.js.map +1 -1
  15. package/lib/commonjs/components/Message/MessageSimple/MessageEditedTimestamp.js +55 -0
  16. package/lib/commonjs/components/Message/MessageSimple/MessageEditedTimestamp.js.map +1 -0
  17. package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js +94 -58
  18. package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js.map +1 -1
  19. package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js +6 -0
  20. package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js.map +1 -1
  21. package/lib/commonjs/components/Message/MessageSimple/MessageTimestamp.js +48 -0
  22. package/lib/commonjs/components/Message/MessageSimple/MessageTimestamp.js.map +1 -0
  23. package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js +5 -1
  24. package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js.map +1 -1
  25. package/lib/commonjs/components/MessageInput/hooks/useAudioController.js +7 -10
  26. package/lib/commonjs/components/MessageInput/hooks/useAudioController.js.map +1 -1
  27. package/lib/commonjs/components/MessageList/InlineDateSeparator.js +6 -2
  28. package/lib/commonjs/components/MessageList/InlineDateSeparator.js.map +1 -1
  29. package/lib/commonjs/components/MessageList/MessageList.js +9 -6
  30. package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
  31. package/lib/commonjs/components/MessageList/MessageSystem.js +30 -27
  32. package/lib/commonjs/components/MessageList/MessageSystem.js.map +1 -1
  33. package/lib/commonjs/components/MessageList/utils/getGroupStyles.js +3 -2
  34. package/lib/commonjs/components/MessageList/utils/getGroupStyles.js.map +1 -1
  35. package/lib/commonjs/components/index.js +11 -0
  36. package/lib/commonjs/components/index.js.map +1 -1
  37. package/lib/commonjs/contexts/messageContext/MessageContext.js.map +1 -1
  38. package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
  39. package/lib/commonjs/contexts/themeContext/utils/theme.js +3 -0
  40. package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
  41. package/lib/commonjs/i18n/en.json +1 -0
  42. package/lib/commonjs/i18n/es.json +14 -13
  43. package/lib/commonjs/i18n/fr.json +14 -13
  44. package/lib/commonjs/i18n/he.json +14 -13
  45. package/lib/commonjs/i18n/hi.json +14 -13
  46. package/lib/commonjs/i18n/it.json +14 -13
  47. package/lib/commonjs/i18n/ja.json +14 -13
  48. package/lib/commonjs/i18n/ko.json +14 -13
  49. package/lib/commonjs/i18n/nl.json +14 -13
  50. package/lib/commonjs/i18n/pt-BR.json +14 -13
  51. package/lib/commonjs/i18n/ru.json +14 -13
  52. package/lib/commonjs/i18n/tr.json +14 -13
  53. package/lib/commonjs/utils/getDateString.js +31 -0
  54. package/lib/commonjs/utils/getDateString.js.map +1 -0
  55. package/lib/commonjs/utils/utils.js +5 -1
  56. package/lib/commonjs/utils/utils.js.map +1 -1
  57. package/lib/commonjs/version.json +1 -1
  58. package/lib/module/components/Channel/Channel.js +4 -2
  59. package/lib/module/components/Channel/Channel.js.map +1 -1
  60. package/lib/module/components/Channel/hooks/useCreateMessagesContext.js +2 -2
  61. package/lib/module/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
  62. package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js +1 -1
  63. package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
  64. package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js +6 -14
  65. package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
  66. package/lib/module/components/Message/Message.js +11 -0
  67. package/lib/module/components/Message/Message.js.map +1 -1
  68. package/lib/module/components/Message/MessageSimple/MessageContent.js +12 -27
  69. package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
  70. package/lib/module/components/Message/MessageSimple/MessageDeleted.js +10 -12
  71. package/lib/module/components/Message/MessageSimple/MessageDeleted.js.map +1 -1
  72. package/lib/module/components/Message/MessageSimple/MessageEditedTimestamp.js +55 -0
  73. package/lib/module/components/Message/MessageSimple/MessageEditedTimestamp.js.map +1 -0
  74. package/lib/module/components/Message/MessageSimple/MessageFooter.js +94 -58
  75. package/lib/module/components/Message/MessageSimple/MessageFooter.js.map +1 -1
  76. package/lib/module/components/Message/MessageSimple/MessageSimple.js +6 -0
  77. package/lib/module/components/Message/MessageSimple/MessageSimple.js.map +1 -1
  78. package/lib/module/components/Message/MessageSimple/MessageTimestamp.js +48 -0
  79. package/lib/module/components/Message/MessageSimple/MessageTimestamp.js.map +1 -0
  80. package/lib/module/components/Message/hooks/useCreateMessageContext.js +5 -1
  81. package/lib/module/components/Message/hooks/useCreateMessageContext.js.map +1 -1
  82. package/lib/module/components/MessageInput/hooks/useAudioController.js +7 -10
  83. package/lib/module/components/MessageInput/hooks/useAudioController.js.map +1 -1
  84. package/lib/module/components/MessageList/InlineDateSeparator.js +6 -2
  85. package/lib/module/components/MessageList/InlineDateSeparator.js.map +1 -1
  86. package/lib/module/components/MessageList/MessageList.js +9 -6
  87. package/lib/module/components/MessageList/MessageList.js.map +1 -1
  88. package/lib/module/components/MessageList/MessageSystem.js +30 -27
  89. package/lib/module/components/MessageList/MessageSystem.js.map +1 -1
  90. package/lib/module/components/MessageList/utils/getGroupStyles.js +3 -2
  91. package/lib/module/components/MessageList/utils/getGroupStyles.js.map +1 -1
  92. package/lib/module/components/index.js +11 -0
  93. package/lib/module/components/index.js.map +1 -1
  94. package/lib/module/contexts/messageContext/MessageContext.js.map +1 -1
  95. package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
  96. package/lib/module/contexts/themeContext/utils/theme.js +3 -0
  97. package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
  98. package/lib/module/i18n/en.json +1 -0
  99. package/lib/module/i18n/es.json +14 -13
  100. package/lib/module/i18n/fr.json +14 -13
  101. package/lib/module/i18n/he.json +14 -13
  102. package/lib/module/i18n/hi.json +14 -13
  103. package/lib/module/i18n/it.json +14 -13
  104. package/lib/module/i18n/ja.json +14 -13
  105. package/lib/module/i18n/ko.json +14 -13
  106. package/lib/module/i18n/nl.json +14 -13
  107. package/lib/module/i18n/pt-BR.json +14 -13
  108. package/lib/module/i18n/ru.json +14 -13
  109. package/lib/module/i18n/tr.json +14 -13
  110. package/lib/module/utils/getDateString.js +31 -0
  111. package/lib/module/utils/getDateString.js.map +1 -0
  112. package/lib/module/utils/utils.js +5 -1
  113. package/lib/module/utils/utils.js.map +1 -1
  114. package/lib/module/version.json +1 -1
  115. package/lib/typescript/components/Channel/Channel.d.ts +1 -1
  116. package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
  117. package/lib/typescript/components/Channel/hooks/useCreateMessagesContext.d.ts +1 -1
  118. package/lib/typescript/components/ImageGallery/components/ImageGalleryHeader.d.ts.map +1 -1
  119. package/lib/typescript/components/Message/Message.d.ts.map +1 -1
  120. package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts +1 -1
  121. package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts.map +1 -1
  122. package/lib/typescript/components/Message/MessageSimple/MessageDeleted.d.ts +8 -8
  123. package/lib/typescript/components/Message/MessageSimple/MessageDeleted.d.ts.map +1 -1
  124. package/lib/typescript/components/Message/MessageSimple/MessageEditedTimestamp.d.ts +7 -0
  125. package/lib/typescript/components/Message/MessageSimple/MessageEditedTimestamp.d.ts.map +1 -0
  126. package/lib/typescript/components/Message/MessageSimple/MessageFooter.d.ts +1 -1
  127. package/lib/typescript/components/Message/MessageSimple/MessageFooter.d.ts.map +1 -1
  128. package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts +1 -1
  129. package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts.map +1 -1
  130. package/lib/typescript/components/Message/MessageSimple/MessageTimestamp.d.ts +22 -0
  131. package/lib/typescript/components/Message/MessageSimple/MessageTimestamp.d.ts.map +1 -0
  132. package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts +1 -1
  133. package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts.map +1 -1
  134. package/lib/typescript/components/MessageInput/hooks/useAudioController.d.ts.map +1 -1
  135. package/lib/typescript/components/MessageList/DateHeader.d.ts +1 -1
  136. package/lib/typescript/components/MessageList/DateHeader.d.ts.map +1 -1
  137. package/lib/typescript/components/MessageList/InlineDateSeparator.d.ts.map +1 -1
  138. package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
  139. package/lib/typescript/components/MessageList/MessageSystem.d.ts +0 -8
  140. package/lib/typescript/components/MessageList/MessageSystem.d.ts.map +1 -1
  141. package/lib/typescript/components/MessageList/utils/getGroupStyles.d.ts.map +1 -1
  142. package/lib/typescript/components/index.d.ts +1 -0
  143. package/lib/typescript/components/index.d.ts.map +1 -1
  144. package/lib/typescript/contexts/channelContext/ChannelContext.d.ts +1 -1
  145. package/lib/typescript/contexts/channelContext/ChannelContext.d.ts.map +1 -1
  146. package/lib/typescript/contexts/messageContext/MessageContext.d.ts +5 -1
  147. package/lib/typescript/contexts/messageContext/MessageContext.d.ts.map +1 -1
  148. package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +6 -5
  149. package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts.map +1 -1
  150. package/lib/typescript/contexts/themeContext/utils/theme.d.ts +3 -0
  151. package/lib/typescript/contexts/themeContext/utils/theme.d.ts.map +1 -1
  152. package/lib/typescript/i18n/en.json +1 -0
  153. package/lib/typescript/i18n/es.json +14 -13
  154. package/lib/typescript/i18n/fr.json +14 -13
  155. package/lib/typescript/i18n/he.json +14 -13
  156. package/lib/typescript/i18n/hi.json +14 -13
  157. package/lib/typescript/i18n/it.json +14 -13
  158. package/lib/typescript/i18n/ja.json +14 -13
  159. package/lib/typescript/i18n/ko.json +14 -13
  160. package/lib/typescript/i18n/nl.json +14 -13
  161. package/lib/typescript/i18n/pt-BR.json +14 -13
  162. package/lib/typescript/i18n/ru.json +14 -13
  163. package/lib/typescript/i18n/tr.json +14 -13
  164. package/lib/typescript/utils/Streami18n.d.ts +6 -0
  165. package/lib/typescript/utils/Streami18n.d.ts.map +1 -1
  166. package/lib/typescript/utils/getDateString.d.ts +30 -0
  167. package/lib/typescript/utils/getDateString.d.ts.map +1 -0
  168. package/lib/typescript/utils/utils.d.ts +6 -0
  169. package/lib/typescript/utils/utils.d.ts.map +1 -1
  170. package/package.json +2 -2
  171. package/src/components/Channel/Channel.tsx +4 -3
  172. package/src/components/Channel/hooks/useCreateMessagesContext.ts +2 -2
  173. package/src/components/ChannelPreview/hooks/useLatestMessagePreview.ts +1 -1
  174. package/src/components/ImageGallery/components/ImageGalleryHeader.tsx +3 -31
  175. package/src/components/Message/Message.tsx +7 -0
  176. package/src/components/Message/MessageSimple/MessageContent.tsx +13 -33
  177. package/src/components/Message/MessageSimple/MessageDeleted.tsx +13 -31
  178. package/src/components/Message/MessageSimple/MessageEditedTimestamp.tsx +56 -0
  179. package/src/components/Message/MessageSimple/MessageFooter.tsx +104 -63
  180. package/src/components/Message/MessageSimple/MessageSimple.tsx +14 -2
  181. package/src/components/Message/MessageSimple/MessageTimestamp.tsx +64 -0
  182. package/src/components/Message/hooks/useCreateMessageContext.ts +5 -0
  183. package/src/components/MessageInput/hooks/useAudioController.tsx +3 -5
  184. package/src/components/MessageList/DateHeader.tsx +1 -1
  185. package/src/components/MessageList/InlineDateSeparator.tsx +8 -8
  186. package/src/components/MessageList/MessageList.tsx +9 -9
  187. package/src/components/MessageList/MessageSystem.tsx +35 -43
  188. package/src/components/MessageList/utils/getGroupStyles.ts +7 -4
  189. package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +20 -12
  190. package/src/components/index.ts +1 -0
  191. package/src/contexts/channelContext/ChannelContext.tsx +1 -1
  192. package/src/contexts/messageContext/MessageContext.tsx +4 -0
  193. package/src/contexts/messagesContext/MessagesContext.tsx +6 -5
  194. package/src/contexts/themeContext/utils/theme.ts +6 -0
  195. package/src/i18n/en.json +1 -0
  196. package/src/i18n/es.json +14 -13
  197. package/src/i18n/fr.json +14 -13
  198. package/src/i18n/he.json +14 -13
  199. package/src/i18n/hi.json +14 -13
  200. package/src/i18n/it.json +14 -13
  201. package/src/i18n/ja.json +14 -13
  202. package/src/i18n/ko.json +14 -13
  203. package/src/i18n/nl.json +14 -13
  204. package/src/i18n/pt-BR.json +14 -13
  205. package/src/i18n/ru.json +14 -13
  206. package/src/i18n/tr.json +14 -13
  207. package/src/utils/getDateString.ts +67 -0
  208. package/src/utils/utils.ts +11 -0
  209. package/src/version.json +1 -1
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "תגובה אחת לשרשור",
3
+ "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
- "Also send to channel": "",
6
+ "Also send to channel": "שלח/י הודעה לשיחה",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -16,14 +16,15 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
+ "Edited": "",
19
20
  "Editing Message": "",
20
21
  "Emoji matching": "",
21
22
  "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
23
+ "Error loading": "שגיאה ארעה בעת הטעינה",
24
+ "Error loading channel list...": "שגיאה ארעה בטעינת השיחות...",
25
+ "Error loading messages for this channel...": "שגיאה ארעה בטעינת הודעות עבור שיחה זאת...",
25
26
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "סוג הקובץ אינו נתמך",
27
+ "File type not supported": "",
27
28
  "Flag": "",
28
29
  "Flag Message": "",
29
30
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -32,9 +33,9 @@
32
33
  "Instant Commands": "",
33
34
  "Let's start chatting!": "",
34
35
  "Links are disabled": "",
35
- "Loading channels...": "",
36
- "Loading messages...": "",
37
- "Loading...": "",
36
+ "Loading channels...": "השיחות בטעינה...",
37
+ "Loading messages...": "ההודעות בטעינה..",
38
+ "Loading...": "טוען...",
38
39
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
39
40
  "Message Reactions": "",
40
41
  "Message deleted": "ההודעה נמחקה",
@@ -44,7 +45,7 @@
44
45
  "Not supported": "",
45
46
  "Nothing yet...": "",
46
47
  "Ok": "",
47
- "Only visible to you": "גלוי רק לך",
48
+ "Only visible to you": "",
48
49
  "Open Settings": "",
49
50
  "Photo": "",
50
51
  "Photos and Videos": "",
@@ -53,7 +54,7 @@
53
54
  "Please allow Audio permissions in settings.": "",
54
55
  "Please enable access to your photos and videos so you can share them.": "",
55
56
  "Please select a channel first": "",
56
- "Reconnecting...": "",
57
+ "Reconnecting...": "מתחבר מחדש...",
57
58
  "Reply": "",
58
59
  "Reply to Message": "",
59
60
  "Resend": "",
@@ -71,12 +72,12 @@
71
72
  "Unpin from Conversation": "",
72
73
  "Unread Messages": "הודעות שטרם נקרו",
73
74
  "Video": "",
74
- "You": "",
75
+ "You": "את/ה",
75
76
  "You can't send messages in this channel": "",
76
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
77
78
  "{{ index }} of {{ photoLength }}": "",
78
79
  "{{ replyCount }} Replies": "",
79
- "{{ replyCount }} Thread Replies": "{{ replyCount }} תגובות שרשור",
80
+ "{{ replyCount }} Thread Replies": "",
80
81
  "{{ user }} is typing": "",
81
82
  "🏙 Attachment...": ""
82
83
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "1 धागा उत्तर",
3
+ "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
- "Also send to channel": "",
6
+ "Also send to channel": "चैनल को भी भेजें",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -16,14 +16,15 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
+ "Edited": "",
19
20
  "Editing Message": "",
20
21
  "Emoji matching": "",
21
22
  "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
23
+ "Error loading": "लोड होने मे त्रुटि",
24
+ "Error loading channel list...": "चैनल सूची लोड करने में त्रुटि...",
25
+ "Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
25
26
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "फ़ाइल प्रकार समर्थित नहीं है",
27
+ "File type not supported": "",
27
28
  "Flag": "",
28
29
  "Flag Message": "",
29
30
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -32,9 +33,9 @@
32
33
  "Instant Commands": "",
33
34
  "Let's start chatting!": "",
34
35
  "Links are disabled": "",
35
- "Loading channels...": "",
36
- "Loading messages...": "",
37
- "Loading...": "",
36
+ "Loading channels...": "चैनल लोड हो रहे हैं...",
37
+ "Loading messages...": "मेसेजस लोड हो रहे हैं...",
38
+ "Loading...": "लोड हो रहा है...",
38
39
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
39
40
  "Message Reactions": "",
40
41
  "Message deleted": "मैसेज हटा दिया गया",
@@ -44,7 +45,7 @@
44
45
  "Not supported": "",
45
46
  "Nothing yet...": "",
46
47
  "Ok": "",
47
- "Only visible to you": "केवल आपको दिखाई दे रहा है",
48
+ "Only visible to you": "",
48
49
  "Open Settings": "",
49
50
  "Photo": "",
50
51
  "Photos and Videos": "",
@@ -53,7 +54,7 @@
53
54
  "Please allow Audio permissions in settings.": "",
54
55
  "Please enable access to your photos and videos so you can share them.": "",
55
56
  "Please select a channel first": "",
56
- "Reconnecting...": "",
57
+ "Reconnecting...": "पुनः कनेक्ट हो...",
57
58
  "Reply": "",
58
59
  "Reply to Message": "",
59
60
  "Resend": "",
@@ -71,12 +72,12 @@
71
72
  "Unpin from Conversation": "",
72
73
  "Unread Messages": "अपठित संदेश",
73
74
  "Video": "",
74
- "You": "",
75
+ "You": "आप",
75
76
  "You can't send messages in this channel": "",
76
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
77
78
  "{{ index }} of {{ photoLength }}": "",
78
79
  "{{ replyCount }} Replies": "",
79
- "{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
80
+ "{{ replyCount }} Thread Replies": "",
80
81
  "{{ user }} is typing": "",
81
82
  "🏙 Attachment...": ""
82
83
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "1 Risposta alla Discussione",
3
+ "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
- "Also send to channel": "",
6
+ "Also send to channel": "Invia anche al canale",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -16,14 +16,15 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
+ "Edited": "",
19
20
  "Editing Message": "",
20
21
  "Emoji matching": "",
21
22
  "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
23
+ "Error loading": "Errore di caricamento",
24
+ "Error loading channel list...": "Errore durante il caricamento della lista dei canali...",
25
+ "Error loading messages for this channel...": "Errore durante il caricamento dei messaggi per questo canale...",
25
26
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "Tipo di file non supportato",
27
+ "File type not supported": "",
27
28
  "Flag": "",
28
29
  "Flag Message": "",
29
30
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -32,9 +33,9 @@
32
33
  "Instant Commands": "",
33
34
  "Let's start chatting!": "",
34
35
  "Links are disabled": "",
35
- "Loading channels...": "",
36
- "Loading messages...": "",
37
- "Loading...": "",
36
+ "Loading channels...": "Caricamento canali in corso...",
37
+ "Loading messages...": "Caricamento messaggi...",
38
+ "Loading...": "Caricamento...",
38
39
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
39
40
  "Message Reactions": "",
40
41
  "Message deleted": "Messaggio cancellato",
@@ -44,7 +45,7 @@
44
45
  "Not supported": "",
45
46
  "Nothing yet...": "",
46
47
  "Ok": "",
47
- "Only visible to you": "Visibile solo a te",
48
+ "Only visible to you": "",
48
49
  "Open Settings": "",
49
50
  "Photo": "",
50
51
  "Photos and Videos": "",
@@ -53,7 +54,7 @@
53
54
  "Please allow Audio permissions in settings.": "",
54
55
  "Please enable access to your photos and videos so you can share them.": "",
55
56
  "Please select a channel first": "",
56
- "Reconnecting...": "",
57
+ "Reconnecting...": "Ricollegarsi...",
57
58
  "Reply": "",
58
59
  "Reply to Message": "",
59
60
  "Resend": "",
@@ -71,12 +72,12 @@
71
72
  "Unpin from Conversation": "",
72
73
  "Unread Messages": "Messaggi non letti",
73
74
  "Video": "",
74
- "You": "",
75
+ "You": "Tu",
75
76
  "You can't send messages in this channel": "",
76
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
77
78
  "{{ index }} of {{ photoLength }}": "",
78
79
  "{{ replyCount }} Replies": "",
79
- "{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
80
+ "{{ replyCount }} Thread Replies": "",
80
81
  "{{ user }} is typing": "",
81
82
  "🏙 Attachment...": ""
82
83
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "1件のスレッド返信",
3
+ "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
- "Also send to channel": "",
6
+ "Also send to channel": "チャンネルにも送信",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -16,14 +16,15 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
+ "Edited": "",
19
20
  "Editing Message": "",
20
21
  "Emoji matching": "",
21
22
  "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
23
+ "Error loading": "読み込みエラー",
24
+ "Error loading channel list...": "チャネルリストの読み込み中にエラーが発生しました。。。",
25
+ "Error loading messages for this channel...": "このチャネルのメッセージの読み込み中にエラーが発生しました。。。",
25
26
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "サポートされていないファイルです",
27
+ "File type not supported": "",
27
28
  "Flag": "",
28
29
  "Flag Message": "",
29
30
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -32,9 +33,9 @@
32
33
  "Instant Commands": "",
33
34
  "Let's start chatting!": "",
34
35
  "Links are disabled": "",
35
- "Loading channels...": "",
36
- "Loading messages...": "",
37
- "Loading...": "",
36
+ "Loading channels...": "チャネルを読み込み中。。。",
37
+ "Loading messages...": "メッセージを読み込み中。。。",
38
+ "Loading...": "読み込み中。。。",
38
39
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
39
40
  "Message Reactions": "",
40
41
  "Message deleted": "メッセージが削除されました",
@@ -44,7 +45,7 @@
44
45
  "Not supported": "",
45
46
  "Nothing yet...": "",
46
47
  "Ok": "",
47
- "Only visible to you": "あなただけに見える",
48
+ "Only visible to you": "",
48
49
  "Open Settings": "",
49
50
  "Photo": "",
50
51
  "Photos and Videos": "",
@@ -53,7 +54,7 @@
53
54
  "Please allow Audio permissions in settings.": "",
54
55
  "Please enable access to your photos and videos so you can share them.": "",
55
56
  "Please select a channel first": "",
56
- "Reconnecting...": "",
57
+ "Reconnecting...": "再接続中。。。",
57
58
  "Reply": "",
58
59
  "Reply to Message": "",
59
60
  "Resend": "",
@@ -71,12 +72,12 @@
71
72
  "Unpin from Conversation": "",
72
73
  "Unread Messages": "未読メッセージ",
73
74
  "Video": "",
74
- "You": "",
75
+ "You": "あなた",
75
76
  "You can't send messages in this channel": "",
76
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
77
78
  "{{ index }} of {{ photoLength }}": "",
78
79
  "{{ replyCount }} Replies": "",
79
- "{{ replyCount }} Thread Replies": "{{ replyCount }}件のスレッド返信",
80
+ "{{ replyCount }} Thread Replies": "",
80
81
  "{{ user }} is typing": "",
81
82
  "🏙 Attachment...": ""
82
83
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "1개의 스레드 답글",
3
+ "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
- "Also send to channel": "",
6
+ "Also send to channel": "채널에도 전송",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -16,14 +16,15 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
+ "Edited": "",
19
20
  "Editing Message": "",
20
21
  "Emoji matching": "",
21
22
  "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
23
+ "Error loading": "로드 오류",
24
+ "Error loading channel list...": "채널리스트 을로드하는 동안 오류가 발생했습니다...",
25
+ "Error loading messages for this channel...": "이 채널의 메시지를로드하는 동안 오류가 발생했습니다...",
25
26
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "지원하지 않는 파일입니다.",
27
+ "File type not supported": "",
27
28
  "Flag": "",
28
29
  "Flag Message": "",
29
30
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -32,9 +33,9 @@
32
33
  "Instant Commands": "",
33
34
  "Let's start chatting!": "",
34
35
  "Links are disabled": "",
35
- "Loading channels...": "",
36
- "Loading messages...": "",
37
- "Loading...": "",
36
+ "Loading channels...": "채널을 로딩 중...",
37
+ "Loading messages...": "메시지를 로딩 중...",
38
+ "Loading...": "로딩 중...",
38
39
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
39
40
  "Message Reactions": "",
40
41
  "Message deleted": "메시지가 삭제되었습니다.",
@@ -44,7 +45,7 @@
44
45
  "Not supported": "",
45
46
  "Nothing yet...": "",
46
47
  "Ok": "",
47
- "Only visible to you": "당신만 볼 수 있습니다",
48
+ "Only visible to you": "",
48
49
  "Open Settings": "",
49
50
  "Photo": "",
50
51
  "Photos and Videos": "",
@@ -53,7 +54,7 @@
53
54
  "Please allow Audio permissions in settings.": "",
54
55
  "Please enable access to your photos and videos so you can share them.": "",
55
56
  "Please select a channel first": "",
56
- "Reconnecting...": "",
57
+ "Reconnecting...": "다시 연결 중...",
57
58
  "Reply": "",
58
59
  "Reply to Message": "",
59
60
  "Resend": "",
@@ -71,12 +72,12 @@
71
72
  "Unpin from Conversation": "",
72
73
  "Unread Messages": "읽지 않은 메시지",
73
74
  "Video": "",
74
- "You": "",
75
+ "You": "당신",
75
76
  "You can't send messages in this channel": "",
76
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
77
78
  "{{ index }} of {{ photoLength }}": "",
78
79
  "{{ replyCount }} Replies": "",
79
- "{{ replyCount }} Thread Replies": "{{ replyCount }} 스레드 답글",
80
+ "{{ replyCount }} Thread Replies": "",
80
81
  "{{ user }} is typing": "",
81
82
  "🏙 Attachment...": ""
82
83
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "1 thread antwoord",
3
+ "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
- "Also send to channel": "",
6
+ "Also send to channel": "Stuur ook naar kanaal",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -16,14 +16,15 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
+ "Edited": "",
19
20
  "Editing Message": "",
20
21
  "Emoji matching": "",
21
22
  "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
23
+ "Error loading": "Probleem bij het laden",
24
+ "Error loading channel list...": "Probleem bij het laden van de kanalen...",
25
+ "Error loading messages for this channel...": "Probleem bij het laden van de berichten in dit kanaal...",
25
26
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "Bestandstype niet ondersteund",
27
+ "File type not supported": "",
27
28
  "Flag": "",
28
29
  "Flag Message": "",
29
30
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -32,9 +33,9 @@
32
33
  "Instant Commands": "",
33
34
  "Let's start chatting!": "",
34
35
  "Links are disabled": "",
35
- "Loading channels...": "",
36
- "Loading messages...": "",
37
- "Loading...": "",
36
+ "Loading channels...": "Kanalen aan het laden...",
37
+ "Loading messages...": "Berichten aan het laden...",
38
+ "Loading...": "Aan het laden...",
38
39
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
39
40
  "Message Reactions": "",
40
41
  "Message deleted": "Bericht verwijderd",
@@ -44,7 +45,7 @@
44
45
  "Not supported": "",
45
46
  "Nothing yet...": "",
46
47
  "Ok": "",
47
- "Only visible to you": "Alleen zichtbaar voor jou",
48
+ "Only visible to you": "",
48
49
  "Open Settings": "",
49
50
  "Photo": "",
50
51
  "Photos and Videos": "",
@@ -53,7 +54,7 @@
53
54
  "Please allow Audio permissions in settings.": "",
54
55
  "Please enable access to your photos and videos so you can share them.": "",
55
56
  "Please select a channel first": "",
56
- "Reconnecting...": "",
57
+ "Reconnecting...": "Opnieuw Verbinding Maken...",
57
58
  "Reply": "",
58
59
  "Reply to Message": "",
59
60
  "Resend": "",
@@ -71,12 +72,12 @@
71
72
  "Unpin from Conversation": "",
72
73
  "Unread Messages": "Ongelezen Berichten",
73
74
  "Video": "",
74
- "You": "",
75
+ "You": "U",
75
76
  "You can't send messages in this channel": "",
76
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
77
78
  "{{ index }} of {{ photoLength }}": "",
78
79
  "{{ replyCount }} Replies": "",
79
- "{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
80
+ "{{ replyCount }} Thread Replies": "",
80
81
  "{{ user }} is typing": "",
81
82
  "🏙 Attachment...": ""
82
83
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "1 Resposta de Thread",
3
+ "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
- "Also send to channel": "",
6
+ "Also send to channel": "Também enviar para o canal",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -16,14 +16,15 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
+ "Edited": "",
19
20
  "Editing Message": "",
20
21
  "Emoji matching": "",
21
22
  "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
23
+ "Error loading": "Erro ao carregar",
24
+ "Error loading channel list...": "Erro ao carregar lista de canais...",
25
+ "Error loading messages for this channel...": "Erro ao carregar mensagens para este canal...",
25
26
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "Tipo de arquivo não suportado",
27
+ "File type not supported": "",
27
28
  "Flag": "",
28
29
  "Flag Message": "",
29
30
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -32,9 +33,9 @@
32
33
  "Instant Commands": "",
33
34
  "Let's start chatting!": "",
34
35
  "Links are disabled": "",
35
- "Loading channels...": "",
36
- "Loading messages...": "",
37
- "Loading...": "",
36
+ "Loading channels...": "Carregando canais...",
37
+ "Loading messages...": "Carregando mensagens...",
38
+ "Loading...": "Carregando...",
38
39
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
39
40
  "Message Reactions": "",
40
41
  "Message deleted": "Mensagem excluída",
@@ -44,7 +45,7 @@
44
45
  "Not supported": "",
45
46
  "Nothing yet...": "",
46
47
  "Ok": "",
47
- "Only visible to you": "Apenas visível para você",
48
+ "Only visible to you": "",
48
49
  "Open Settings": "",
49
50
  "Photo": "",
50
51
  "Photos and Videos": "",
@@ -53,7 +54,7 @@
53
54
  "Please allow Audio permissions in settings.": "",
54
55
  "Please enable access to your photos and videos so you can share them.": "",
55
56
  "Please select a channel first": "",
56
- "Reconnecting...": "",
57
+ "Reconnecting...": "Reconectando...",
57
58
  "Reply": "",
58
59
  "Reply to Message": "",
59
60
  "Resend": "",
@@ -71,12 +72,12 @@
71
72
  "Unpin from Conversation": "",
72
73
  "Unread Messages": "Mensagens não lidas",
73
74
  "Video": "",
74
- "You": "",
75
+ "You": "Você",
75
76
  "You can't send messages in this channel": "",
76
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
77
78
  "{{ index }} of {{ photoLength }}": "",
78
79
  "{{ replyCount }} Replies": "",
79
- "{{ replyCount }} Thread Replies": "{{ replyCount }} Respostas de Thread",
80
+ "{{ replyCount }} Thread Replies": "",
80
81
  "{{ user }} is typing": "",
81
82
  "🏙 Attachment...": ""
82
83
  }
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "1 тема Ответить",
3
+ "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
- "Also send to channel": "",
6
+ "Also send to channel": "Также отправить на канал",
7
7
  "Are you sure you want to permanently delete this message?": "",
8
8
  "Are you sure?": "",
9
9
  "Block User": "",
@@ -16,14 +16,15 @@
16
16
  "Device camera is used to take photos or videos.": "",
17
17
  "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
18
  "Edit Message": "",
19
+ "Edited": "",
19
20
  "Editing Message": "",
20
21
  "Emoji matching": "",
21
22
  "Empty message...": "",
22
- "Error loading": "",
23
- "Error loading channel list...": "",
24
- "Error loading messages for this channel...": "",
23
+ "Error loading": "Ошибка при загрузке",
24
+ "Error loading channel list...": "Ошибка загрузки списка каналов...",
25
+ "Error loading messages for this channel...": "Ошибка загрузки сообщений для этого канала...",
25
26
  "Error while loading, please reload/refresh": "",
26
- "File type not supported": "Тип файла не поддерживается",
27
+ "File type not supported": "",
27
28
  "Flag": "",
28
29
  "Flag Message": "",
29
30
  "Flag action failed either due to a network issue or the message is already flagged": "",
@@ -32,9 +33,9 @@
32
33
  "Instant Commands": "",
33
34
  "Let's start chatting!": "",
34
35
  "Links are disabled": "",
35
- "Loading channels...": "",
36
- "Loading messages...": "",
37
- "Loading...": "",
36
+ "Loading channels...": "Загружаю каналы...",
37
+ "Loading messages...": "Загружаю сообщения...",
38
+ "Loading...": "Загружаю...",
38
39
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
39
40
  "Message Reactions": "",
40
41
  "Message deleted": "Сообщение удалено",
@@ -44,7 +45,7 @@
44
45
  "Not supported": "",
45
46
  "Nothing yet...": "",
46
47
  "Ok": "",
47
- "Only visible to you": "Видно только вам",
48
+ "Only visible to you": "",
48
49
  "Open Settings": "",
49
50
  "Photo": "",
50
51
  "Photos and Videos": "",
@@ -53,7 +54,7 @@
53
54
  "Please allow Audio permissions in settings.": "",
54
55
  "Please enable access to your photos and videos so you can share them.": "",
55
56
  "Please select a channel first": "",
56
- "Reconnecting...": "",
57
+ "Reconnecting...": "Переподключение...",
57
58
  "Reply": "",
58
59
  "Reply to Message": "",
59
60
  "Resend": "",
@@ -71,12 +72,12 @@
71
72
  "Unpin from Conversation": "",
72
73
  "Unread Messages": "Непрочитанные Сообщения",
73
74
  "Video": "",
74
- "You": "",
75
+ "You": "Вы",
75
76
  "You can't send messages in this channel": "",
76
77
  "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
77
78
  "{{ index }} of {{ photoLength }}": "",
78
79
  "{{ replyCount }} Replies": "",
79
- "{{ replyCount }} Thread Replies": "{{replyCount}} Ответы в темах",
80
+ "{{ replyCount }} Thread Replies": "",
80
81
  "{{ user }} is typing": "",
81
82
  "🏙 Attachment...": ""
82
83
  }