stream-chat-react-native-core 5.23.0-beta.3 → 5.23.0-beta.5

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 (65) hide show
  1. package/lib/commonjs/components/AutoCompleteInput/AutoCompleteInput.js +2 -11
  2. package/lib/commonjs/components/AutoCompleteInput/AutoCompleteInput.js.map +1 -1
  3. package/lib/commonjs/components/Message/MessageSimple/utils/parseLinks.js +1 -1
  4. package/lib/commonjs/components/Message/MessageSimple/utils/parseLinks.js.map +1 -1
  5. package/lib/commonjs/components/Message/MessageSimple/utils/parseLinks.test.js +1 -1
  6. package/lib/commonjs/components/Message/MessageSimple/utils/parseLinks.test.js.map +1 -1
  7. package/lib/commonjs/components/MessageInput/MessageInput.js +51 -28
  8. package/lib/commonjs/components/MessageInput/MessageInput.js.map +1 -1
  9. package/lib/commonjs/contexts/themeContext/utils/theme.js +1 -0
  10. package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
  11. package/lib/commonjs/i18n/en.json +1 -1
  12. package/lib/commonjs/i18n/fr.json +38 -38
  13. package/lib/commonjs/i18n/hi.json +38 -38
  14. package/lib/commonjs/i18n/it.json +38 -38
  15. package/lib/commonjs/i18n/nl.json +38 -38
  16. package/lib/commonjs/i18n/ru.json +38 -38
  17. package/lib/commonjs/i18n/tr.json +38 -38
  18. package/lib/commonjs/utils/utils.js +2 -2
  19. package/lib/commonjs/utils/utils.js.map +1 -1
  20. package/lib/commonjs/version.json +1 -1
  21. package/lib/module/components/AutoCompleteInput/AutoCompleteInput.js +2 -11
  22. package/lib/module/components/AutoCompleteInput/AutoCompleteInput.js.map +1 -1
  23. package/lib/module/components/Message/MessageSimple/utils/parseLinks.js +1 -1
  24. package/lib/module/components/Message/MessageSimple/utils/parseLinks.js.map +1 -1
  25. package/lib/module/components/Message/MessageSimple/utils/parseLinks.test.js +1 -1
  26. package/lib/module/components/Message/MessageSimple/utils/parseLinks.test.js.map +1 -1
  27. package/lib/module/components/MessageInput/MessageInput.js +51 -28
  28. package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
  29. package/lib/module/contexts/themeContext/utils/theme.js +1 -0
  30. package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
  31. package/lib/module/i18n/en.json +1 -1
  32. package/lib/module/i18n/fr.json +38 -38
  33. package/lib/module/i18n/hi.json +38 -38
  34. package/lib/module/i18n/it.json +38 -38
  35. package/lib/module/i18n/nl.json +38 -38
  36. package/lib/module/i18n/ru.json +38 -38
  37. package/lib/module/i18n/tr.json +38 -38
  38. package/lib/module/utils/utils.js +2 -2
  39. package/lib/module/utils/utils.js.map +1 -1
  40. package/lib/module/version.json +1 -1
  41. package/lib/typescript/components/AutoCompleteInput/AutoCompleteInput.d.ts +1 -1
  42. package/lib/typescript/contexts/themeContext/utils/theme.d.ts +1 -0
  43. package/lib/typescript/i18n/en.json +1 -1
  44. package/lib/typescript/i18n/fr.json +38 -38
  45. package/lib/typescript/i18n/hi.json +38 -38
  46. package/lib/typescript/i18n/it.json +38 -38
  47. package/lib/typescript/i18n/nl.json +38 -38
  48. package/lib/typescript/i18n/ru.json +38 -38
  49. package/lib/typescript/i18n/tr.json +38 -38
  50. package/package.json +1 -1
  51. package/src/components/AutoCompleteInput/AutoCompleteInput.tsx +0 -10
  52. package/src/components/Message/MessageSimple/utils/parseLinks.test.ts +4 -0
  53. package/src/components/Message/MessageSimple/utils/parseLinks.ts +3 -3
  54. package/src/components/MessageInput/MessageInput.tsx +33 -3
  55. package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +2 -0
  56. package/src/contexts/themeContext/utils/theme.ts +2 -0
  57. package/src/i18n/en.json +1 -1
  58. package/src/i18n/fr.json +38 -38
  59. package/src/i18n/hi.json +38 -38
  60. package/src/i18n/it.json +38 -38
  61. package/src/i18n/nl.json +38 -38
  62. package/src/i18n/ru.json +38 -38
  63. package/src/i18n/tr.json +38 -38
  64. package/src/utils/utils.ts +3 -2
  65. package/src/version.json +1 -1
@@ -27,6 +27,10 @@ describe('parseLinksFromText', () => {
27
27
  'https://help.apple.com/xcode/mac/current/#/devba7f53ad4',
28
28
  'https://help.apple.com/xcode/mac/current/#/devba7f53ad4',
29
29
  ],
30
+ ['[google.com](https://www.google.com)', undefined],
31
+ ['[https://www.google.com](https://www.google.com)', undefined],
32
+ ['[abc]()', undefined],
33
+ ['[](https://www.google.com)', undefined],
30
34
  ])('Returns the encoded value of %p as %p', (link, expected) => {
31
35
  const result = parseLinksFromText(link);
32
36
  expect(result[0]?.url).toBe(expected);
@@ -6,10 +6,10 @@ interface LinkInfo {
6
6
  }
7
7
 
8
8
  /**
9
- * This is done separately because of the version of javascript run
10
- * for expo
9
+ * This is done to remove all markdown formatted links.
10
+ * eg: [google.com](https://www.google.com), [Google](https://www.google.com), [https://www.google.com](https://www.google.com)
11
11
  * */
12
- const removeMarkdownLinksFromText = (input: string) => input.replace(/\[[\w\s]+\]\(.*\)/g, '');
12
+ const removeMarkdownLinksFromText = (input: string) => input.replace(/\[.*\]\(.*\)/g, '');
13
13
 
14
14
  /**
15
15
  * This is done to avoid parsing usernames with dot as well as an email address in it.
@@ -1,5 +1,11 @@
1
- import React, { useEffect, useState } from 'react';
2
- import { Alert, StyleSheet, View } from 'react-native';
1
+ import React, { useEffect, useMemo, useState } from 'react';
2
+ import {
3
+ Alert,
4
+ NativeSyntheticEvent,
5
+ StyleSheet,
6
+ TextInputFocusEventData,
7
+ View,
8
+ } from 'react-native';
3
9
 
4
10
  import type { UserResponse } from 'stream-chat';
5
11
 
@@ -175,6 +181,7 @@ const MessageInputWithContext = <
175
181
  SendButton,
176
182
  sending,
177
183
  sendMessageAsync,
184
+ setShowMoreOptions,
178
185
  ShowThreadMessageInChannelButton,
179
186
  suggestions,
180
187
  thread,
@@ -196,6 +203,7 @@ const MessageInputWithContext = <
196
203
  autoCompleteInputContainer,
197
204
  composerContainer,
198
205
  container,
206
+ focusedInputBoxContainer,
199
207
  inputBoxContainer,
200
208
  optionsContainer,
201
209
  replyContainer,
@@ -234,6 +242,7 @@ const MessageInputWithContext = <
234
242
 
235
243
  const [hasResetImages, setHasResetImages] = useState(false);
236
244
  const [hasResetFiles, setHasResetFiles] = useState(false);
245
+ const [focused, setFocused] = useState(false);
237
246
  const selectedImagesLength = hasResetImages ? selectedImages.length : 0;
238
247
  const imageUploadsLength = hasResetImages ? imageUploads.length : 0;
239
248
  const selectedFilesLength = hasResetFiles ? selectedFiles.length : 0;
@@ -513,6 +522,26 @@ const MessageInputWithContext = <
513
522
  ...additionalTextInputProps,
514
523
  };
515
524
 
525
+ const memoizedAdditionalTextInputProps = useMemo(
526
+ () => ({
527
+ ...additionalTextInputProps,
528
+ onBlur: (event: NativeSyntheticEvent<TextInputFocusEventData>) => {
529
+ if (additionalTextInputProps?.onBlur) {
530
+ additionalTextInputProps?.onBlur(event);
531
+ }
532
+ if (setFocused) setFocused(false);
533
+ setShowMoreOptions(true);
534
+ },
535
+ onFocus: (event: NativeSyntheticEvent<TextInputFocusEventData>) => {
536
+ if (additionalTextInputProps?.onFocus) {
537
+ additionalTextInputProps.onFocus(event);
538
+ }
539
+ if (setFocused) setFocused(true);
540
+ },
541
+ }),
542
+ [additionalTextInputProps],
543
+ );
544
+
516
545
  return (
517
546
  <>
518
547
  <View
@@ -544,6 +573,7 @@ const MessageInputWithContext = <
544
573
  paddingVertical: giphyActive ? 8 : 12,
545
574
  },
546
575
  inputBoxContainer,
576
+ focused ? focusedInputBoxContainer : null,
547
577
  ]}
548
578
  >
549
579
  {((typeof editing !== 'boolean' && editing?.quoted_message) || quotedMessage) && (
@@ -569,7 +599,7 @@ const MessageInputWithContext = <
569
599
  ) : (
570
600
  <View style={[styles.autoCompleteInputContainer, autoCompleteInputContainer]}>
571
601
  <AutoCompleteInput<StreamChatGenerics>
572
- additionalTextInputProps={additionalTextInputProps}
602
+ additionalTextInputProps={memoizedAdditionalTextInputProps}
573
603
  cooldownActive={!!cooldownRemainingSeconds}
574
604
  />
575
605
  </View>
@@ -1580,6 +1580,7 @@ exports[`Thread should match thread snapshot 1`] = `
1580
1580
  "paddingVertical": 12,
1581
1581
  },
1582
1582
  Object {},
1583
+ null,
1583
1584
  ]
1584
1585
  }
1585
1586
  >
@@ -1604,6 +1605,7 @@ exports[`Thread should match thread snapshot 1`] = `
1604
1605
  onBlur={[Function]}
1605
1606
  onChangeText={[Function]}
1606
1607
  onContentSizeChange={[Function]}
1608
+ onFocus={[Function]}
1607
1609
  onSelectionChange={[Function]}
1608
1610
  placeholder="Send a message"
1609
1611
  placeholderTextColor="#7A7A7A"
@@ -261,6 +261,7 @@ export type Theme = {
261
261
  fileTextContainer: ViewStyle;
262
262
  flatList: ViewStyle;
263
263
  };
264
+ focusedInputBoxContainer: ViewStyle;
264
265
  giphyCommandInput: {
265
266
  giphyContainer: ViewStyle;
266
267
  giphyText: TextStyle;
@@ -766,6 +767,7 @@ export const defaultTheme: Theme = {
766
767
  fileTextContainer: {},
767
768
  flatList: {},
768
769
  },
770
+ focusedInputBoxContainer: {},
769
771
  giphyCommandInput: {
770
772
  giphyContainer: {},
771
773
  giphyText: {},
package/src/i18n/en.json CHANGED
@@ -24,7 +24,7 @@
24
24
  "File type not supported": "File type not supported",
25
25
  "Flag": "Flag",
26
26
  "Flag Message": "Flag Message",
27
- "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",
27
+ "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.",
28
28
  "How about sending your first message to a friend?": "How about sending your first message to a friend?",
29
29
  "Instant Commands": "Instant Commands",
30
30
  "Let's start chatting!": "Let's start chatting!",
package/src/i18n/fr.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "1 Reply": "",
3
- "1 Thread Reply": "Réponse à 1 fil",
3
+ "1 Thread Reply": "",
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
- "Also send to channel": "Envoyer également à la chaîne",
7
- "Are you sure you want to permanently delete this message?": "",
8
- "Block User": "",
9
- "Cancel": "",
10
- "Cannot Flag Message": "",
11
- "Copy Message": "",
12
- "Delete": "",
13
- "Delete Message": "",
6
+ "Also send to channel": "",
7
+ "Are you sure you want to permanently delete this message?": "Êtes-vous sûr de vouloir supprimer définitivement ce message?",
8
+ "Block User": "Bloquer un utilisateur",
9
+ "Cancel": "Annuler",
10
+ "Cannot Flag Message": "Impossible de signaler le message",
11
+ "Copy Message": "Copier le message",
12
+ "Delete": "Supprimer",
13
+ "Delete Message": "Supprimer un message",
14
14
  "Device camera is used to take photos or videos.": "",
15
- "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
- "Edit Message": "",
15
+ "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?",
16
+ "Edit Message": "Éditer un message",
17
17
  "Editing Message": "",
18
18
  "Emoji matching": "",
19
19
  "Empty message...": "",
@@ -22,55 +22,55 @@
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
24
  "File type not supported": "",
25
- "Flag": "",
26
- "Flag Message": "",
27
- "Flag action failed either due to a network issue or the message is already flagged": "",
25
+ "Flag": "Signaler",
26
+ "Flag Message": "Signaler le message",
27
+ "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é.",
28
28
  "How about sending your first message to a friend?": "",
29
29
  "Instant Commands": "",
30
30
  "Let's start chatting!": "",
31
- "Links are disabled": "Links are disabled",
32
- "Loading channels...": "",
33
- "Loading messages...": "",
34
- "Loading...": "",
35
- "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.",
36
- "Message Reactions": "",
31
+ "Links are disabled": "",
32
+ "Loading channels...": "Chargement des canaux...",
33
+ "Loading messages...": "Chargement des messages...",
34
+ "Loading...": "Chargement...",
35
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
36
+ "Message Reactions": "Réactions aux messages",
37
37
  "Message deleted": "",
38
- "Message flagged": "",
39
- "Mute User": "",
38
+ "Message flagged": "Message signalé",
39
+ "Mute User": "Utilisateur muet",
40
40
  "Not supported": "",
41
41
  "Nothing yet...": "",
42
- "Ok": "",
43
- "Only visible to you": "Seulement visible par vous",
42
+ "Ok": "Ok",
43
+ "Only visible to you": "",
44
44
  "Open Settings": "",
45
45
  "Photo": "",
46
46
  "Photos and Videos": "",
47
- "Pin to Conversation": "",
48
- "Pinned by": "Épinglé par",
47
+ "Pin to Conversation": "Épingler à la conversation",
48
+ "Pinned by": "",
49
49
  "Please enable access to your photos and videos so you can share them.": "",
50
50
  "Please select a channel first": "Veuillez d'abord selectionnez un canal",
51
51
  "Reconnecting...": "",
52
- "Reply": "",
52
+ "Reply": "Répondre",
53
53
  "Reply to Message": "",
54
- "Resend": "",
54
+ "Resend": "Renvoyer",
55
55
  "Search GIFs": "",
56
56
  "Select More Photos": "",
57
57
  "Send a message": "",
58
- "Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
58
+ "Sending links is not allowed in this conversation": "",
59
59
  "Slow mode ON": "",
60
- "The message has been reported to a moderator.": "",
61
- "Thread Reply": "",
62
- "Unblock User": "",
60
+ "The message has been reported to a moderator.": "Le message a été signalé à un modérateur.",
61
+ "Thread Reply": "Réponse à la discussion",
62
+ "Unblock User": "Débloquer Utilisateur",
63
63
  "Unknown User": "",
64
- "Unmute User": "",
65
- "Unpin from Conversation": "",
66
- "Unread Messages": "Messages non lus",
64
+ "Unmute User": "Activer le son de Utilisateur",
65
+ "Unpin from Conversation": "Décrocher de la conversation",
66
+ "Unread Messages": "",
67
67
  "Video": "",
68
68
  "You": "",
69
69
  "You can't send messages in this channel": "",
70
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
70
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
71
71
  "{{ index }} of {{ photoLength }}": "",
72
72
  "{{ replyCount }} Replies": "",
73
- "{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
74
- "{{ user }} is typing": "",
73
+ "{{ replyCount }} Thread Replies": "",
74
+ "{{ user }} is typing": "{{ user }} est en train d'écrire",
75
75
  "🏙 Attachment...": ""
76
76
  }
package/src/i18n/hi.json CHANGED
@@ -1,19 +1,19 @@
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": "चैनल को भी भेजें",
7
- "Are you sure you want to permanently delete this message?": "",
8
- "Block User": "",
9
- "Cancel": "",
10
- "Cannot Flag Message": "",
11
- "Copy Message": "",
12
- "Delete": "",
13
- "Delete Message": "",
6
+ "Also send to channel": "",
7
+ "Are you sure you want to permanently delete this message?": "क्या आप वाकई इस संदेश को स्थायी रूप से हटाना चाहते हैं?",
8
+ "Block User": "उपयोगकर्ता को रोक देना, ब्लॉक यूजर",
9
+ "Cancel": "रद्द करें",
10
+ "Cannot Flag Message": "मैसेज फ्लैग नहीं किया जा सकता है",
11
+ "Copy Message": "संदेश की प्रतिलिपि बनाएँ",
12
+ "Delete": "हटाएं",
13
+ "Delete Message": "मैसेज को डिलीट करे",
14
14
  "Device camera is used to take photos or videos.": "",
15
- "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
- "Edit Message": "",
15
+ "Do you want to send a copy of this message to a moderator for further investigation?": "क्या आप इस संदेश की एक प्रति आगे की जाँच के लिए किसी मॉडरेटर को भेजना चाहते हैं?",
16
+ "Edit Message": "मैसेज में बदलाव करे",
17
17
  "Editing Message": "",
18
18
  "Emoji matching": "",
19
19
  "Empty message...": "",
@@ -22,55 +22,55 @@
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
24
  "File type not supported": "",
25
- "Flag": "",
26
- "Flag Message": "",
27
- "Flag action failed either due to a network issue or the message is already flagged": "",
25
+ "Flag": "झंडा",
26
+ "Flag Message": "झंडा संदेश",
27
+ "Flag action failed either due to a network issue or the message is already flagged": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
28
28
  "How about sending your first message to a friend?": "",
29
29
  "Instant Commands": "",
30
30
  "Let's start chatting!": "",
31
- "Links are disabled": "लिंक अक्षम हैं",
32
- "Loading channels...": "",
33
- "Loading messages...": "",
34
- "Loading...": "",
35
- "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}} एमबी से नीचे की फ़ाइल अपलोड करें।",
36
- "Message Reactions": "",
31
+ "Links are disabled": "",
32
+ "Loading channels...": "चैनल लोड हो रहे हैं...",
33
+ "Loading messages...": "मेसेजस लोड हो रहे हैं...",
34
+ "Loading...": "लोड हो रहा है...",
35
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
36
+ "Message Reactions": "संदेश प्रतिक्रियाएँ",
37
37
  "Message deleted": "",
38
- "Message flagged": "",
39
- "Mute User": "",
38
+ "Message flagged": "संदेश को ध्वजांकित किया गया",
39
+ "Mute User": "उपयोगकर्ता को म्यूट करें",
40
40
  "Not supported": "",
41
41
  "Nothing yet...": "",
42
- "Ok": "",
43
- "Only visible to you": "केवल आपको दिखाई दे रहा है",
42
+ "Ok": "ठीक",
43
+ "Only visible to you": "",
44
44
  "Open Settings": "",
45
45
  "Photo": "",
46
46
  "Photos and Videos": "",
47
- "Pin to Conversation": "",
48
- "Pinned by": "द्वारा पिन किया गया",
47
+ "Pin to Conversation": "बातचीत में पिन करें",
48
+ "Pinned by": "",
49
49
  "Please enable access to your photos and videos so you can share them.": "",
50
50
  "Please select a channel first": "कृपया पहले एक चैनल चुनें",
51
51
  "Reconnecting...": "",
52
- "Reply": "",
52
+ "Reply": "मैसेज को रिप्लाई करे",
53
53
  "Reply to Message": "",
54
- "Resend": "",
54
+ "Resend": "पुन: भेजें",
55
55
  "Search GIFs": "",
56
56
  "Select More Photos": "",
57
57
  "Send a message": "",
58
- "Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
58
+ "Sending links is not allowed in this conversation": "",
59
59
  "Slow mode ON": "",
60
- "The message has been reported to a moderator.": "",
61
- "Thread Reply": "",
62
- "Unblock User": "",
60
+ "The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
61
+ "Thread Reply": "धागा जवाब",
62
+ "Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
63
63
  "Unknown User": "",
64
- "Unmute User": "",
65
- "Unpin from Conversation": "",
66
- "Unread Messages": "अपठित संदेश",
64
+ "Unmute User": "उपयोगकर्ता को अनम्यूट करें",
65
+ "Unpin from Conversation": "बातचीत से अनपिन करें",
66
+ "Unread Messages": "",
67
67
  "Video": "",
68
68
  "You": "",
69
69
  "You can't send messages in this channel": "",
70
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
70
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
71
71
  "{{ index }} of {{ photoLength }}": "",
72
72
  "{{ replyCount }} Replies": "",
73
- "{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
74
- "{{ user }} is typing": "",
73
+ "{{ replyCount }} Thread Replies": "",
74
+ "{{ user }} is typing": "{{ user }} टाइप कर रहा है",
75
75
  "🏙 Attachment...": ""
76
76
  }
package/src/i18n/it.json CHANGED
@@ -1,19 +1,19 @@
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": "Invia anche al canale",
7
- "Are you sure you want to permanently delete this message?": "",
8
- "Block User": "",
9
- "Cancel": "",
10
- "Cannot Flag Message": "",
11
- "Copy Message": "",
12
- "Delete": "",
13
- "Delete Message": "",
6
+ "Also send to channel": "",
7
+ "Are you sure you want to permanently delete this message?": "Sei sicuro di voler eliminare definitivamente questo messaggio?",
8
+ "Block User": "Blocca Utente",
9
+ "Cancel": "Annulla",
10
+ "Cannot Flag Message": "Impossibile Segnalare Messaggio",
11
+ "Copy Message": "Copia Messaggio",
12
+ "Delete": "Elimina",
13
+ "Delete Message": "Cancella il Messaggio",
14
14
  "Device camera is used to take photos or videos.": "",
15
- "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
- "Edit Message": "",
15
+ "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?",
16
+ "Edit Message": "Modifica Messaggio",
17
17
  "Editing Message": "",
18
18
  "Emoji matching": "",
19
19
  "Empty message...": "",
@@ -22,55 +22,55 @@
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
24
  "File type not supported": "",
25
- "Flag": "",
26
- "Flag Message": "",
27
- "Flag action failed either due to a network issue or the message is already flagged": "",
25
+ "Flag": "Contrassegna",
26
+ "Flag Message": "Contrassegna Messaggio",
27
+ "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.",
28
28
  "How about sending your first message to a friend?": "",
29
29
  "Instant Commands": "",
30
30
  "Let's start chatting!": "",
31
- "Links are disabled": "I link sono disabilitati",
32
- "Loading channels...": "",
33
- "Loading messages...": "",
34
- "Loading...": "",
35
- "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.",
36
- "Message Reactions": "",
31
+ "Links are disabled": "",
32
+ "Loading channels...": "Caricamento canali in corso...",
33
+ "Loading messages...": "Caricamento messaggi...",
34
+ "Loading...": "Caricamento...",
35
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
36
+ "Message Reactions": "Reazioni ai Messaggi",
37
37
  "Message deleted": "",
38
- "Message flagged": "",
39
- "Mute User": "",
38
+ "Message flagged": "Messaggio contrassegnato",
39
+ "Mute User": "Utente Muto",
40
40
  "Not supported": "",
41
41
  "Nothing yet...": "",
42
- "Ok": "",
43
- "Only visible to you": "Visibile solo a te",
42
+ "Ok": "Ok",
43
+ "Only visible to you": "",
44
44
  "Open Settings": "",
45
45
  "Photo": "",
46
46
  "Photos and Videos": "",
47
- "Pin to Conversation": "",
48
- "Pinned by": "Fissato da",
47
+ "Pin to Conversation": "Metti in evidenza",
48
+ "Pinned by": "",
49
49
  "Please enable access to your photos and videos so you can share them.": "",
50
50
  "Please select a channel first": "Seleziona un canale",
51
51
  "Reconnecting...": "",
52
- "Reply": "",
52
+ "Reply": "Rispondi",
53
53
  "Reply to Message": "",
54
- "Resend": "",
54
+ "Resend": "Invia di nuovo",
55
55
  "Search GIFs": "",
56
56
  "Select More Photos": "",
57
57
  "Send a message": "",
58
- "Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
58
+ "Sending links is not allowed in this conversation": "",
59
59
  "Slow mode ON": "",
60
- "The message has been reported to a moderator.": "",
61
- "Thread Reply": "",
62
- "Unblock User": "",
60
+ "The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
61
+ "Thread Reply": "Rispondi alla Discussione",
62
+ "Unblock User": "Sblocca utente",
63
63
  "Unknown User": "",
64
- "Unmute User": "",
65
- "Unpin from Conversation": "",
66
- "Unread Messages": "Messaggi non letti",
64
+ "Unmute User": "Riattiva utente",
65
+ "Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
66
+ "Unread Messages": "",
67
67
  "Video": "",
68
68
  "You": "",
69
69
  "You can't send messages in this channel": "",
70
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
70
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
71
71
  "{{ index }} of {{ photoLength }}": "",
72
72
  "{{ replyCount }} Replies": "",
73
- "{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
74
- "{{ user }} is typing": "",
73
+ "{{ replyCount }} Thread Replies": "",
74
+ "{{ user }} is typing": "{{ user }} sta scrivendo",
75
75
  "🏙 Attachment...": ""
76
76
  }
package/src/i18n/nl.json CHANGED
@@ -1,19 +1,19 @@
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": "Stuur ook naar kanaal",
7
- "Are you sure you want to permanently delete this message?": "",
8
- "Block User": "",
9
- "Cancel": "",
10
- "Cannot Flag Message": "",
11
- "Copy Message": "",
12
- "Delete": "",
13
- "Delete Message": "",
6
+ "Also send to channel": "",
7
+ "Are you sure you want to permanently delete this message?": "Weet u zeker dat u dit bericht definitief wilt verwijderen?",
8
+ "Block User": "Blokkeer Gebruiker",
9
+ "Cancel": "Annuleer",
10
+ "Cannot Flag Message": "Kan bericht niet rapporteren",
11
+ "Copy Message": "Bericht kopiëren",
12
+ "Delete": "Verwijderen",
13
+ "Delete Message": "Verwijder bericht",
14
14
  "Device camera is used to take photos or videos.": "",
15
- "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
- "Edit Message": "",
15
+ "Do you want to send a copy of this message to a moderator for further investigation?": "Wil je een kopie van dit bericht naar een moderator sturen voor verder onderzoek?",
16
+ "Edit Message": "Pas bericht aan",
17
17
  "Editing Message": "",
18
18
  "Emoji matching": "",
19
19
  "Empty message...": "",
@@ -22,55 +22,55 @@
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
24
  "File type not supported": "",
25
- "Flag": "",
26
- "Flag Message": "",
27
- "Flag action failed either due to a network issue or the message is already flagged": "",
25
+ "Flag": "Markeer",
26
+ "Flag Message": "Markeer bericht",
27
+ "Flag action failed either due to a network issue or the message is already flagged": "Rapporteren mislukt door een netwerk fout of het berich is al gerapporteerd",
28
28
  "How about sending your first message to a friend?": "",
29
29
  "Instant Commands": "",
30
30
  "Let's start chatting!": "",
31
- "Links are disabled": "Het versturen van links staat uit",
32
- "Loading channels...": "",
33
- "Loading messages...": "",
34
- "Loading...": "",
35
- "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "Maximale uploadlimiet voor bestandsgrootte bereikt. Upload een bestand van minder dan {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.",
36
- "Message Reactions": "",
31
+ "Links are disabled": "",
32
+ "Loading channels...": "Kanalen aan het laden...",
33
+ "Loading messages...": "Berichten aan het laden...",
34
+ "Loading...": "Aan het laden...",
35
+ "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
36
+ "Message Reactions": "Bericht Reacties",
37
37
  "Message deleted": "",
38
- "Message flagged": "",
39
- "Mute User": "",
38
+ "Message flagged": "Bericht gemarkeerd",
39
+ "Mute User": "Gebruiker dempen",
40
40
  "Not supported": "",
41
41
  "Nothing yet...": "",
42
- "Ok": "",
43
- "Only visible to you": "Alleen zichtbaar voor jou",
42
+ "Ok": "Oké",
43
+ "Only visible to you": "",
44
44
  "Open Settings": "",
45
45
  "Photo": "",
46
46
  "Photos and Videos": "",
47
- "Pin to Conversation": "",
48
- "Pinned by": "Vastgemaakt door",
47
+ "Pin to Conversation": "Vastmaken aan gesprek",
48
+ "Pinned by": "",
49
49
  "Please enable access to your photos and videos so you can share them.": "",
50
50
  "Please select a channel first": "Selecteer eerst een kanaal",
51
51
  "Reconnecting...": "",
52
- "Reply": "",
52
+ "Reply": "Antwoord",
53
53
  "Reply to Message": "",
54
- "Resend": "",
54
+ "Resend": "Opnieuw versturen",
55
55
  "Search GIFs": "",
56
56
  "Select More Photos": "",
57
57
  "Send a message": "",
58
- "Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
58
+ "Sending links is not allowed in this conversation": "",
59
59
  "Slow mode ON": "",
60
- "The message has been reported to a moderator.": "",
61
- "Thread Reply": "",
62
- "Unblock User": "",
60
+ "The message has been reported to a moderator.": "Het bericht is gerapporteerd aan een moderator.",
61
+ "Thread Reply": "Discussie beantwoorden",
62
+ "Unblock User": "Deblokkeer gebruiker",
63
63
  "Unknown User": "",
64
- "Unmute User": "",
65
- "Unpin from Conversation": "",
66
- "Unread Messages": "Ongelezen Berichten",
64
+ "Unmute User": "Dempen van gebruiker opheffen",
65
+ "Unpin from Conversation": "Losmaken van gesprek",
66
+ "Unread Messages": "",
67
67
  "Video": "",
68
68
  "You": "",
69
69
  "You can't send messages in this channel": "",
70
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
70
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
71
71
  "{{ index }} of {{ photoLength }}": "",
72
72
  "{{ replyCount }} Replies": "",
73
- "{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
74
- "{{ user }} is typing": "",
73
+ "{{ replyCount }} Thread Replies": "",
74
+ "{{ user }} is typing": "{{ user }} is aan het typen",
75
75
  "🏙 Attachment...": ""
76
76
  }