stream-chat-react-native-core 5.23.0-beta.4 → 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 (55) 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/MessageInput/MessageInput.js +51 -28
  4. package/lib/commonjs/components/MessageInput/MessageInput.js.map +1 -1
  5. package/lib/commonjs/contexts/themeContext/utils/theme.js +1 -0
  6. package/lib/commonjs/contexts/themeContext/utils/theme.js.map +1 -1
  7. package/lib/commonjs/i18n/en.json +1 -1
  8. package/lib/commonjs/i18n/fr.json +32 -32
  9. package/lib/commonjs/i18n/hi.json +32 -32
  10. package/lib/commonjs/i18n/it.json +32 -32
  11. package/lib/commonjs/i18n/nl.json +32 -32
  12. package/lib/commonjs/i18n/ru.json +32 -32
  13. package/lib/commonjs/i18n/tr.json +32 -32
  14. package/lib/commonjs/utils/utils.js +2 -2
  15. package/lib/commonjs/utils/utils.js.map +1 -1
  16. package/lib/commonjs/version.json +1 -1
  17. package/lib/module/components/AutoCompleteInput/AutoCompleteInput.js +2 -11
  18. package/lib/module/components/AutoCompleteInput/AutoCompleteInput.js.map +1 -1
  19. package/lib/module/components/MessageInput/MessageInput.js +51 -28
  20. package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
  21. package/lib/module/contexts/themeContext/utils/theme.js +1 -0
  22. package/lib/module/contexts/themeContext/utils/theme.js.map +1 -1
  23. package/lib/module/i18n/en.json +1 -1
  24. package/lib/module/i18n/fr.json +32 -32
  25. package/lib/module/i18n/hi.json +32 -32
  26. package/lib/module/i18n/it.json +32 -32
  27. package/lib/module/i18n/nl.json +32 -32
  28. package/lib/module/i18n/ru.json +32 -32
  29. package/lib/module/i18n/tr.json +32 -32
  30. package/lib/module/utils/utils.js +2 -2
  31. package/lib/module/utils/utils.js.map +1 -1
  32. package/lib/module/version.json +1 -1
  33. package/lib/typescript/components/AutoCompleteInput/AutoCompleteInput.d.ts +1 -1
  34. package/lib/typescript/contexts/themeContext/utils/theme.d.ts +1 -0
  35. package/lib/typescript/i18n/en.json +1 -1
  36. package/lib/typescript/i18n/fr.json +32 -32
  37. package/lib/typescript/i18n/hi.json +32 -32
  38. package/lib/typescript/i18n/it.json +32 -32
  39. package/lib/typescript/i18n/nl.json +32 -32
  40. package/lib/typescript/i18n/ru.json +32 -32
  41. package/lib/typescript/i18n/tr.json +32 -32
  42. package/package.json +1 -1
  43. package/src/components/AutoCompleteInput/AutoCompleteInput.tsx +0 -10
  44. package/src/components/MessageInput/MessageInput.tsx +33 -3
  45. package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +2 -0
  46. package/src/contexts/themeContext/utils/theme.ts +2 -0
  47. package/src/i18n/en.json +1 -1
  48. package/src/i18n/fr.json +32 -32
  49. package/src/i18n/hi.json +32 -32
  50. package/src/i18n/it.json +32 -32
  51. package/src/i18n/nl.json +32 -32
  52. package/src/i18n/ru.json +32 -32
  53. package/src/i18n/tr.json +32 -32
  54. package/src/utils/utils.ts +3 -2
  55. package/src/version.json +1 -1
@@ -63,7 +63,6 @@ type AutoCompleteInputPropsWithContext<
63
63
  | 'onChange'
64
64
  | 'setGiphyActive'
65
65
  | 'setInputBoxRef'
66
- | 'setShowMoreOptions'
67
66
  | 'text'
68
67
  | 'triggerSettings'
69
68
  > &
@@ -103,7 +102,6 @@ const AutoCompleteInputWithContext = <
103
102
  openSuggestions,
104
103
  setGiphyActive,
105
104
  setInputBoxRef,
106
- setShowMoreOptions,
107
105
  t,
108
106
  text,
109
107
  triggerSettings,
@@ -425,12 +423,6 @@ const AutoCompleteInputWithContext = <
425
423
  testID='auto-complete-text-input'
426
424
  value={text}
427
425
  {...additionalTextInputProps}
428
- onBlur={(event) => {
429
- if (additionalTextInputProps?.onBlur) {
430
- additionalTextInputProps?.onBlur(event);
431
- }
432
- setShowMoreOptions(true);
433
- }}
434
426
  />
435
427
  );
436
428
  };
@@ -489,7 +481,6 @@ export const AutoCompleteInput = <
489
481
  onChange,
490
482
  setGiphyActive,
491
483
  setInputBoxRef,
492
- setShowMoreOptions,
493
484
  text,
494
485
  triggerSettings,
495
486
  } = useMessageInputContext<StreamChatGenerics>();
@@ -513,7 +504,6 @@ export const AutoCompleteInput = <
513
504
  openSuggestions,
514
505
  setGiphyActive,
515
506
  setInputBoxRef,
516
- setShowMoreOptions,
517
507
  t,
518
508
  text,
519
509
  triggerSettings,
@@ -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
@@ -4,16 +4,16 @@
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
7
- "Are you sure you want to permanently delete this message?": "",
8
- "Block User": "",
9
- "Cancel": "",
10
- "Cannot Flag Message": "",
11
- "Copy Message": "",
12
- "Delete": "",
13
- "Delete Message": "",
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...": "",
@@ -21,10 +21,10 @@
21
21
  "Error loading channel list...": "",
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
- "File type not supported": "Le type de fichier n'est pas pris en charge",
25
- "Flag": "",
26
- "Flag Message": "",
27
- "Flag action failed either due to a network issue or the message is already flagged": "",
24
+ "File type not supported": "",
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!": "",
@@ -35,42 +35,42 @@
35
35
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
36
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": "",
42
+ "Ok": "Ok",
43
43
  "Only visible to you": "",
44
44
  "Open Settings": "",
45
- "Photo": "Photo",
45
+ "Photo": "",
46
46
  "Photos and Videos": "",
47
- "Pin to Conversation": "",
47
+ "Pin to Conversation": "Épingler à la conversation",
48
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": "",
55
- "Search GIFs": "Rechercher des GIF",
54
+ "Resend": "Renvoyer",
55
+ "Search GIFs": "",
56
56
  "Select More Photos": "",
57
- "Send a message": "Envoyer un message",
57
+ "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "",
59
- "Slow mode ON": "Mode lent activé",
60
- "The message has been reported to a moderator.": "",
61
- "Thread Reply": "",
62
- "Unblock User": "",
59
+ "Slow mode ON": "",
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",
67
- "Video": "Vidéo",
64
+ "Unmute User": "Activer le son de Utilisateur",
65
+ "Unpin from Conversation": "Décrocher de la conversation",
66
+ "Unread Messages": "",
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
73
  "{{ replyCount }} Thread Replies": "",
74
- "{{ user }} is typing": "",
74
+ "{{ user }} is typing": "{{ user }} est en train d'écrire",
75
75
  "🏙 Attachment...": ""
76
76
  }
package/src/i18n/hi.json CHANGED
@@ -4,16 +4,16 @@
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
7
- "Are you sure you want to permanently delete this message?": "",
8
- "Block User": "",
9
- "Cancel": "",
10
- "Cannot Flag Message": "",
11
- "Copy Message": "",
12
- "Delete": "",
13
- "Delete Message": "",
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...": "",
@@ -21,10 +21,10 @@
21
21
  "Error loading channel list...": "",
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
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": "",
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": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
28
28
  "How about sending your first message to a friend?": "",
29
29
  "Instant Commands": "",
30
30
  "Let's start chatting!": "",
@@ -35,42 +35,42 @@
35
35
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
36
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": "",
42
+ "Ok": "ठीक",
43
43
  "Only visible to you": "",
44
44
  "Open Settings": "",
45
- "Photo": "तस्वीर",
45
+ "Photo": "",
46
46
  "Photos and Videos": "",
47
- "Pin to Conversation": "",
47
+ "Pin to Conversation": "बातचीत में पिन करें",
48
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": "",
55
- "Search GIFs": "GIF खोजें",
54
+ "Resend": "पुन: भेजें",
55
+ "Search GIFs": "",
56
56
  "Select More Photos": "",
57
- "Send a message": "एक संदेश भेजें",
57
+ "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "",
59
- "Slow mode ON": "स्लो मोड चालू",
60
- "The message has been reported to a moderator.": "",
61
- "Thread Reply": "",
62
- "Unblock User": "",
59
+ "Slow mode ON": "",
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": "अपठित संदेश",
67
- "Video": "वीडियो",
64
+ "Unmute User": "उपयोगकर्ता को अनम्यूट करें",
65
+ "Unpin from Conversation": "बातचीत से अनपिन करें",
66
+ "Unread Messages": "",
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
73
  "{{ replyCount }} Thread Replies": "",
74
- "{{ user }} is typing": "",
74
+ "{{ user }} is typing": "{{ user }} टाइप कर रहा है",
75
75
  "🏙 Attachment...": ""
76
76
  }
package/src/i18n/it.json CHANGED
@@ -4,16 +4,16 @@
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
7
- "Are you sure you want to permanently delete this message?": "",
8
- "Block User": "",
9
- "Cancel": "",
10
- "Cannot Flag Message": "",
11
- "Copy Message": "",
12
- "Delete": "",
13
- "Delete Message": "",
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...": "",
@@ -21,10 +21,10 @@
21
21
  "Error loading channel list...": "",
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
- "File type not supported": "Tipo di file non supportato",
25
- "Flag": "",
26
- "Flag Message": "",
27
- "Flag action failed either due to a network issue or the message is already flagged": "",
24
+ "File type not supported": "",
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!": "",
@@ -35,42 +35,42 @@
35
35
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
36
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": "",
42
+ "Ok": "Ok",
43
43
  "Only visible to you": "",
44
44
  "Open Settings": "",
45
- "Photo": "Foto",
45
+ "Photo": "",
46
46
  "Photos and Videos": "",
47
- "Pin to Conversation": "",
47
+ "Pin to Conversation": "Metti in evidenza",
48
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": "",
55
- "Search GIFs": "Cerca GIF",
54
+ "Resend": "Invia di nuovo",
55
+ "Search GIFs": "",
56
56
  "Select More Photos": "",
57
- "Send a message": "Mandare un messaggio",
57
+ "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "",
59
- "Slow mode ON": "Slowmode attiva",
60
- "The message has been reported to a moderator.": "",
61
- "Thread Reply": "",
62
- "Unblock User": "",
59
+ "Slow mode ON": "",
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",
67
- "Video": "Video",
64
+ "Unmute User": "Riattiva utente",
65
+ "Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
66
+ "Unread Messages": "",
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
73
  "{{ replyCount }} Thread Replies": "",
74
- "{{ user }} is typing": "",
74
+ "{{ user }} is typing": "{{ user }} sta scrivendo",
75
75
  "🏙 Attachment...": ""
76
76
  }
package/src/i18n/nl.json CHANGED
@@ -4,16 +4,16 @@
4
4
  "Allow access to your Gallery": "",
5
5
  "Allow camera access in device settings": "",
6
6
  "Also send to channel": "",
7
- "Are you sure you want to permanently delete this message?": "",
8
- "Block User": "",
9
- "Cancel": "",
10
- "Cannot Flag Message": "",
11
- "Copy Message": "",
12
- "Delete": "",
13
- "Delete Message": "",
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...": "",
@@ -21,10 +21,10 @@
21
21
  "Error loading channel list...": "",
22
22
  "Error loading messages for this channel...": "",
23
23
  "Error while loading, please reload/refresh": "",
24
- "File type not supported": "Bestandstype niet ondersteund",
25
- "Flag": "",
26
- "Flag Message": "",
27
- "Flag action failed either due to a network issue or the message is already flagged": "",
24
+ "File type not supported": "",
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!": "",
@@ -35,42 +35,42 @@
35
35
  "Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
36
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": "",
42
+ "Ok": "Oké",
43
43
  "Only visible to you": "",
44
44
  "Open Settings": "",
45
- "Photo": "Foto",
45
+ "Photo": "",
46
46
  "Photos and Videos": "",
47
- "Pin to Conversation": "",
47
+ "Pin to Conversation": "Vastmaken aan gesprek",
48
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": "",
55
- "Search GIFs": "Zoek GIF's",
54
+ "Resend": "Opnieuw versturen",
55
+ "Search GIFs": "",
56
56
  "Select More Photos": "",
57
- "Send a message": "Stuur een bericht",
57
+ "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "",
59
- "Slow mode ON": "Langzame modus aan",
60
- "The message has been reported to a moderator.": "",
61
- "Thread Reply": "",
62
- "Unblock User": "",
59
+ "Slow mode ON": "",
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",
67
- "Video": "Video",
64
+ "Unmute User": "Dempen van gebruiker opheffen",
65
+ "Unpin from Conversation": "Losmaken van gesprek",
66
+ "Unread Messages": "",
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
73
  "{{ replyCount }} Thread Replies": "",
74
- "{{ user }} is typing": "",
74
+ "{{ user }} is typing": "{{ user }} is aan het typen",
75
75
  "🏙 Attachment...": ""
76
76
  }