stream-chat-react-native-core 5.22.1 → 5.22.2-beta.1

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 (47) hide show
  1. package/lib/commonjs/components/Channel/Channel.js +160 -163
  2. package/lib/commonjs/components/Channel/Channel.js.map +1 -1
  3. package/lib/commonjs/components/Channel/hooks/useCreatePaginatedMessageListContext.js +1 -1
  4. package/lib/commonjs/components/Channel/hooks/useCreatePaginatedMessageListContext.js.map +1 -1
  5. package/lib/commonjs/components/MessageList/MessageList.js +30 -25
  6. package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
  7. package/lib/commonjs/i18n/en.json +1 -1
  8. package/lib/commonjs/i18n/fr.json +50 -50
  9. package/lib/commonjs/i18n/hi.json +50 -50
  10. package/lib/commonjs/i18n/it.json +50 -50
  11. package/lib/commonjs/i18n/nl.json +50 -50
  12. package/lib/commonjs/i18n/ru.json +50 -50
  13. package/lib/commonjs/i18n/tr.json +50 -50
  14. package/lib/commonjs/version.json +1 -1
  15. package/lib/module/components/Channel/Channel.js +160 -163
  16. package/lib/module/components/Channel/Channel.js.map +1 -1
  17. package/lib/module/components/Channel/hooks/useCreatePaginatedMessageListContext.js +1 -1
  18. package/lib/module/components/Channel/hooks/useCreatePaginatedMessageListContext.js.map +1 -1
  19. package/lib/module/components/MessageList/MessageList.js +30 -25
  20. package/lib/module/components/MessageList/MessageList.js.map +1 -1
  21. package/lib/module/i18n/en.json +1 -1
  22. package/lib/module/i18n/fr.json +50 -50
  23. package/lib/module/i18n/hi.json +50 -50
  24. package/lib/module/i18n/it.json +50 -50
  25. package/lib/module/i18n/nl.json +50 -50
  26. package/lib/module/i18n/ru.json +50 -50
  27. package/lib/module/i18n/tr.json +50 -50
  28. package/lib/module/version.json +1 -1
  29. package/lib/typescript/i18n/en.json +1 -1
  30. package/lib/typescript/i18n/fr.json +50 -50
  31. package/lib/typescript/i18n/hi.json +50 -50
  32. package/lib/typescript/i18n/it.json +50 -50
  33. package/lib/typescript/i18n/nl.json +50 -50
  34. package/lib/typescript/i18n/ru.json +50 -50
  35. package/lib/typescript/i18n/tr.json +50 -50
  36. package/package.json +1 -1
  37. package/src/components/Channel/Channel.tsx +75 -45
  38. package/src/components/Channel/hooks/useCreatePaginatedMessageListContext.ts +8 -1
  39. package/src/components/MessageList/MessageList.tsx +28 -9
  40. package/src/i18n/en.json +1 -1
  41. package/src/i18n/fr.json +50 -50
  42. package/src/i18n/hi.json +50 -50
  43. package/src/i18n/it.json +50 -50
  44. package/src/i18n/nl.json +50 -50
  45. package/src/i18n/ru.json +50 -50
  46. package/src/i18n/tr.json +50 -50
  47. package/src/version.json +1 -1
@@ -524,7 +524,7 @@ const MessageListWithContext = <
524
524
 
525
525
  messageListLengthBeforeUpdate.current = messageListLengthAfterUpdate;
526
526
  topMessageBeforeUpdate.current = topMessageAfterUpdate;
527
- }, [messageListLengthAfterUpdate, topMessageAfterUpdate?.id]);
527
+ }, [hasNoMoreRecentMessagesToLoad, messageListLengthAfterUpdate, topMessageAfterUpdate?.id]);
528
528
 
529
529
  useEffect(() => {
530
530
  setAutoscrollToTop(hasNoMoreRecentMessagesToLoad);
@@ -729,13 +729,13 @@ const MessageListWithContext = <
729
729
  };
730
730
 
731
731
  /**
732
- * Following if condition covers following cases:
733
- * 1. If I scroll up -> show scrollToBottom button.
734
- * 2. If I scroll to bottom of screen
735
- * |-> hide scrollToBottom button.
736
- * |-> if channel is unread, call markRead().
732
+ * Method used only inside the List to do these things
733
+ * 1. Mark channel as read if scroll is at the bottom
734
+ * 2. Call maybeCallOnStartReached if scroll is at the top
735
+ * 3. Call maybeCallOnEndReached if scroll is at the bottom
736
+ * 4. Show scrollToBottom button if scroll is at the bottom and messages are not the latest
737
737
  */
738
- const handleScroll: ScrollViewProps['onScroll'] = (event) => {
738
+ const onScrollEvent: ScrollViewProps['onScroll'] = (event) => {
739
739
  if (!channel || !channelResyncScrollSet.current) {
740
740
  return;
741
741
  }
@@ -757,6 +757,15 @@ const MessageListWithContext = <
757
757
 
758
758
  // Show scrollToBottom button once scroll position goes beyond 150.
759
759
  const isScrollAtBottom = offset <= 150;
760
+
761
+ /**
762
+ * Following if condition covers following cases:
763
+ * 1. If I scroll up -> show scrollToBottom button.
764
+ * 2. If I scroll to bottom of screen
765
+ * |-> hide scrollToBottom button.
766
+ * |-> if channel is unread, call markRead().
767
+ */
768
+
760
769
  const showScrollToBottomButton = !isScrollAtBottom || !hasNoMoreRecentMessagesToLoad;
761
770
 
762
771
  const shouldMarkRead =
@@ -767,6 +776,10 @@ const MessageListWithContext = <
767
776
  }
768
777
 
769
778
  setScrollToBottomButtonVisible(showScrollToBottomButton);
779
+ };
780
+
781
+ const handleScroll: ScrollViewProps['onScroll'] = (event) => {
782
+ onScrollEvent(event);
770
783
 
771
784
  if (onListScroll) {
772
785
  onListScroll(event);
@@ -979,8 +992,14 @@ const MessageListWithContext = <
979
992
  closePicker();
980
993
  }
981
994
  };
982
- const onScrollBeginDrag = () => !hasMoved && selectedPicker && setHasMoved(true);
983
- const onScrollEndDrag = () => hasMoved && selectedPicker && setHasMoved(false);
995
+ const onScrollBeginDrag: ScrollViewProps['onScrollBeginDrag'] = (event) => {
996
+ !hasMoved && selectedPicker && setHasMoved(true);
997
+ onScrollEvent(event);
998
+ };
999
+ const onScrollEndDrag: ScrollViewProps['onScrollEndDrag'] = (event) => {
1000
+ hasMoved && selectedPicker && setHasMoved(false);
1001
+ onScrollEvent(event);
1002
+ };
984
1003
 
985
1004
  const refCallback = (ref: FlatListType<MessageType<StreamChatGenerics>>) => {
986
1005
  flatListRef.current = ref;
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,73 +4,73 @@
4
4
  "Allow access to your Gallery": "Autoriser l'accès à votre galerie",
5
5
  "Allow camera access in device settings": "Autoriser l'accès à la caméra dans les paramètres de l'appareil",
6
6
  "Also send to channel": "Envoyer également à la chaîne",
7
- "Are you sure you want to permanently delete this message?": "Êtes-vous sûr de vouloir supprimer définitivement ce message?",
8
- "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",
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.": "L'appareil photo de l'appareil est utilisé pour prendre des photos ou des vidéos.",
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",
15
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
+ "Edit Message": "",
17
17
  "Editing Message": "Édite un message",
18
- "Emoji matching": "Correspondance Emoji",
19
- "Empty message...": "Message vide...",
20
- "Error loading": "Erreur lors du chargement",
21
- "Error loading channel list...": "Erreur lors du chargement de la liste de canaux...",
22
- "Error loading messages for this channel...": "Erreur lors du chargement des messages de ce canal...",
23
- "Error while loading, please reload/refresh": "Erreur lors du chargement, veuillez recharger/rafraîchir",
24
- "File type not supported": "Le type de fichier n'est pas pris en charge",
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
- "How about sending your first message to a friend?": "Et si vous envoyiez votre premier message à un ami ?",
29
- "Instant Commands": "Commandes Instantanées",
30
- "Let's start chatting!": "Commençons à discuter !",
18
+ "Emoji matching": "",
19
+ "Empty message...": "",
20
+ "Error loading": "",
21
+ "Error loading channel list...": "",
22
+ "Error loading messages for this channel...": "",
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": "",
28
+ "How about sending your first message to a friend?": "",
29
+ "Instant Commands": "",
30
+ "Let's start chatting!": "",
31
31
  "Links are disabled": "Links are disabled",
32
- "Loading channels...": "Chargement des canaux...",
33
- "Loading messages...": "Chargement des messages...",
34
- "Loading...": "Chargement...",
32
+ "Loading channels...": "",
33
+ "Loading messages...": "",
34
+ "Loading...": "",
35
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
36
  "Message Reactions": "Réactions aux messages",
37
- "Message deleted": "Message supprimé",
38
- "Message flagged": "Message signalé",
39
- "Mute User": "Utilisateur muet",
40
- "Not supported": "Non pris en charge",
41
- "Nothing yet...": "Aucun message...",
42
- "Ok": "Ok",
37
+ "Message deleted": "",
38
+ "Message flagged": "",
39
+ "Mute User": "",
40
+ "Not supported": "",
41
+ "Nothing yet...": "",
42
+ "Ok": "",
43
43
  "Only visible to you": "Seulement visible par vous",
44
44
  "Open Settings": "Ouvrir les paramètres",
45
- "Photo": "Photo",
45
+ "Photo": "",
46
46
  "Photos and Videos": "Photos et vidéos",
47
- "Pin to Conversation": "Épingler à la conversation",
47
+ "Pin to Conversation": "",
48
48
  "Pinned by": "Épinglé par",
49
49
  "Please enable access to your photos and videos so you can share them.": "Veuillez autoriser l'accès à vos photos et vidéos afin de pouvoir les partager.",
50
50
  "Please select a channel first": "Veuillez d'abord selectionnez un canal",
51
- "Reconnecting...": "Se Reconnecter...",
52
- "Reply": "Répondre",
53
- "Reply to Message": "Répondre au message",
54
- "Resend": "Renvoyer",
55
- "Search GIFs": "Rechercher des GIF",
51
+ "Reconnecting...": "",
52
+ "Reply": "",
53
+ "Reply to Message": "",
54
+ "Resend": "",
55
+ "Search GIFs": "",
56
56
  "Select More Photos": "Sélectionner plus de photos",
57
- "Send a message": "Envoyer un message",
57
+ "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
59
- "Slow mode ON": "Mode lent activé",
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",
59
+ "Slow mode ON": "",
60
+ "The message has been reported to a moderator.": "",
61
+ "Thread Reply": "",
62
+ "Unblock User": "",
63
63
  "Unknown User": "Utilisateur inconnu",
64
- "Unmute User": "Activer le son de Utilisateur",
65
- "Unpin from Conversation": "Décrocher de la conversation",
64
+ "Unmute User": "",
65
+ "Unpin from Conversation": "",
66
66
  "Unread Messages": "Messages non lus",
67
- "Video": "Vidéo",
68
- "You": "Toi",
67
+ "Video": "",
68
+ "You": "",
69
69
  "You can't send messages in this channel": "You can't send messages in this channel",
70
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
70
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
71
71
  "{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
72
72
  "{{ replyCount }} Replies": "{{ replyCount }} Réponses",
73
73
  "{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
74
- "{{ user }} is typing": "{{ user }} est en train d'écrire",
75
- "🏙 Attachment...": "🏙 Pièce jointe..."
74
+ "{{ user }} is typing": "",
75
+ "🏙 Attachment...": ""
76
76
  }
package/src/i18n/hi.json CHANGED
@@ -4,73 +4,73 @@
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
- "Emoji matching": "इमोजी मिलान",
19
- "Empty message...": "खाली संदेश...",
20
- "Error loading": "लोड होने मे त्रुटि",
21
- "Error loading channel list...": "चैनल सूची लोड करने में त्रुटि...",
22
- "Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
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": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
28
- "How about sending your first message to a friend?": "किसी मित्र को अपना पहला संदेश भेजने के बारे में क्या ख़याल है?",
29
- "Instant Commands": "त्वरित कमांड",
30
- "Let's start chatting!": "आइए चैट करना शुरू करें!",
18
+ "Emoji matching": "",
19
+ "Empty message...": "",
20
+ "Error loading": "",
21
+ "Error loading channel list...": "",
22
+ "Error loading messages for this channel...": "",
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": "",
28
+ "How about sending your first message to a friend?": "",
29
+ "Instant Commands": "",
30
+ "Let's start chatting!": "",
31
31
  "Links are disabled": "लिंक अक्षम हैं",
32
- "Loading channels...": "चैनल लोड हो रहे हैं...",
33
- "Loading messages...": "मेसेजस लोड हो रहे हैं...",
34
- "Loading...": "लोड हो रहा है...",
32
+ "Loading channels...": "",
33
+ "Loading messages...": "",
34
+ "Loading...": "",
35
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
36
  "Message Reactions": "संदेश प्रतिक्रियाएँ",
37
- "Message deleted": "मैसेज हटा दिया गया",
38
- "Message flagged": "संदेश को ध्वजांकित किया गया",
39
- "Mute User": "उपयोगकर्ता को म्यूट करें",
40
- "Not supported": "समर्थित नहीं",
41
- "Nothing yet...": "कोई मैसेज नहीं है...",
42
- "Ok": "ठीक",
37
+ "Message deleted": "",
38
+ "Message flagged": "",
39
+ "Mute User": "",
40
+ "Not supported": "",
41
+ "Nothing yet...": "",
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
- "Reconnecting...": "पुनः कनेक्ट हो...",
52
- "Reply": "मैसेज को रिप्लाई करे",
53
- "Reply to Message": "संदेश का जवाब दें",
54
- "Resend": "पुन: भेजें",
55
- "Search GIFs": "GIF खोजें",
51
+ "Reconnecting...": "",
52
+ "Reply": "",
53
+ "Reply to Message": "",
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": "बातचीत से अनपिन करें",
64
+ "Unmute User": "",
65
+ "Unpin from Conversation": "",
66
66
  "Unread Messages": "अपठित संदेश",
67
- "Video": "वीडियो",
68
- "You": "आप",
67
+ "Video": "",
68
+ "You": "",
69
69
  "You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
70
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
70
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
71
71
  "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
72
72
  "{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
73
73
  "{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
74
- "{{ user }} is typing": "{{ user }} टाइप कर रहा है",
75
- "🏙 Attachment...": "🏙 अटैचमेंट..."
74
+ "{{ user }} is typing": "",
75
+ "🏙 Attachment...": ""
76
76
  }
package/src/i18n/it.json CHANGED
@@ -4,73 +4,73 @@
4
4
  "Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
5
5
  "Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
6
6
  "Also send to channel": "Invia anche al canale",
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",
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.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
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",
15
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
+ "Edit Message": "",
17
17
  "Editing Message": "Modificando il Messaggio",
18
- "Emoji matching": "Abbinamento emoji",
19
- "Empty message...": "Message vuoto...",
20
- "Error loading": "Errore di caricamento",
21
- "Error loading channel list...": "Errore durante il caricamento della lista dei canali...",
22
- "Error loading messages for this channel...": "Errore durante il caricamento dei messaggi per questo canale...",
23
- "Error while loading, please reload/refresh": "Errore durante il caricamento, per favore ricarica la pagina",
24
- "File type not supported": "Tipo di file non supportato",
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
- "How about sending your first message to a friend?": "Che ne dici di inviare il tuo primo messaggio ad un amico?",
29
- "Instant Commands": "Comandi Istantanei",
30
- "Let's start chatting!": "Iniziamo a chattare!",
18
+ "Emoji matching": "",
19
+ "Empty message...": "",
20
+ "Error loading": "",
21
+ "Error loading channel list...": "",
22
+ "Error loading messages for this channel...": "",
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": "",
28
+ "How about sending your first message to a friend?": "",
29
+ "Instant Commands": "",
30
+ "Let's start chatting!": "",
31
31
  "Links are disabled": "I link sono disabilitati",
32
- "Loading channels...": "Caricamento canali in corso...",
33
- "Loading messages...": "Caricamento messaggi...",
34
- "Loading...": "Caricamento...",
32
+ "Loading channels...": "",
33
+ "Loading messages...": "",
34
+ "Loading...": "",
35
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
36
  "Message Reactions": "Reazioni ai Messaggi",
37
- "Message deleted": "Messaggio cancellato",
38
- "Message flagged": "Messaggio contrassegnato",
39
- "Mute User": "Utente Muto",
40
- "Not supported": "non supportato",
41
- "Nothing yet...": "Ancora niente...",
42
- "Ok": "Ok",
37
+ "Message deleted": "",
38
+ "Message flagged": "",
39
+ "Mute User": "",
40
+ "Not supported": "",
41
+ "Nothing yet...": "",
42
+ "Ok": "",
43
43
  "Only visible to you": "Visibile solo a te",
44
44
  "Open Settings": "Apri Impostazioni",
45
- "Photo": "Foto",
45
+ "Photo": "",
46
46
  "Photos and Videos": "Foto e Video",
47
- "Pin to Conversation": "Metti in evidenza",
47
+ "Pin to Conversation": "",
48
48
  "Pinned by": "Fissato da",
49
49
  "Please enable access to your photos and videos so you can share them.": "Abilita l'accesso alle tue foto e ai tuoi video in modo da poterli condividere.",
50
50
  "Please select a channel first": "Seleziona un canale",
51
- "Reconnecting...": "Ricollegarsi...",
52
- "Reply": "Rispondi",
53
- "Reply to Message": "Rispondi al messaggio",
54
- "Resend": "Invia di nuovo",
55
- "Search GIFs": "Cerca GIF",
51
+ "Reconnecting...": "",
52
+ "Reply": "",
53
+ "Reply to Message": "",
54
+ "Resend": "",
55
+ "Search GIFs": "",
56
56
  "Select More Photos": "Seleziona Altre foto",
57
- "Send a message": "Mandare un messaggio",
57
+ "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
59
- "Slow mode ON": "Slowmode attiva",
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",
59
+ "Slow mode ON": "",
60
+ "The message has been reported to a moderator.": "",
61
+ "Thread Reply": "",
62
+ "Unblock User": "",
63
63
  "Unknown User": "Utente sconosciuto",
64
- "Unmute User": "Riattiva utente",
65
- "Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
64
+ "Unmute User": "",
65
+ "Unpin from Conversation": "",
66
66
  "Unread Messages": "Messaggi non letti",
67
- "Video": "Video",
68
- "You": "Tu",
67
+ "Video": "",
68
+ "You": "",
69
69
  "You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
70
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
70
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
71
71
  "{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
72
72
  "{{ replyCount }} Replies": "{{ replyCount }} Risposte",
73
73
  "{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
74
- "{{ user }} is typing": "{{ user }} sta scrivendo",
75
- "🏙 Attachment...": "🏙 Allegato..."
74
+ "{{ user }} is typing": "",
75
+ "🏙 Attachment...": ""
76
76
  }
package/src/i18n/nl.json CHANGED
@@ -4,73 +4,73 @@
4
4
  "Allow access to your Gallery": "Geef toegang tot uw galerij",
5
5
  "Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
6
6
  "Also send to channel": "Stuur ook naar kanaal",
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",
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.": "De camera van het apparaat wordt gebruikt om foto's of video's te maken.",
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",
15
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
16
+ "Edit Message": "",
17
17
  "Editing Message": "Bericht aanpassen",
18
- "Emoji matching": "Emoji-overeenkomsten",
19
- "Empty message...": "Leeg bericht...",
20
- "Error loading": "Probleem bij het laden",
21
- "Error loading channel list...": "Probleem bij het laden van de kanalen...",
22
- "Error loading messages for this channel...": "Probleem bij het laden van de berichten in dit kanaal...",
23
- "Error while loading, please reload/refresh": "Probleem bij het laden, probeer opnieuw",
24
- "File type not supported": "Bestandstype niet ondersteund",
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
- "How about sending your first message to a friend?": "Wat dacht je ervan om je eerste bericht naar een vriend te sturen?",
29
- "Instant Commands": "Directe Opdrachten",
30
- "Let's start chatting!": "Laten we beginnen met chatten!",
18
+ "Emoji matching": "",
19
+ "Empty message...": "",
20
+ "Error loading": "",
21
+ "Error loading channel list...": "",
22
+ "Error loading messages for this channel...": "",
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": "",
28
+ "How about sending your first message to a friend?": "",
29
+ "Instant Commands": "",
30
+ "Let's start chatting!": "",
31
31
  "Links are disabled": "Het versturen van links staat uit",
32
- "Loading channels...": "Kanalen aan het laden...",
33
- "Loading messages...": "Berichten aan het laden...",
34
- "Loading...": "Aan het laden...",
32
+ "Loading channels...": "",
33
+ "Loading messages...": "",
34
+ "Loading...": "",
35
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
36
  "Message Reactions": "Bericht Reacties",
37
- "Message deleted": "Bericht verwijderd",
38
- "Message flagged": "Bericht gemarkeerd",
39
- "Mute User": "Gebruiker dempen",
40
- "Not supported": "niet ondersteund",
41
- "Nothing yet...": "Nog niets...",
42
- "Ok": "Oké",
37
+ "Message deleted": "",
38
+ "Message flagged": "",
39
+ "Mute User": "",
40
+ "Not supported": "",
41
+ "Nothing yet...": "",
42
+ "Ok": "",
43
43
  "Only visible to you": "Alleen zichtbaar voor jou",
44
44
  "Open Settings": "Open instellingen",
45
- "Photo": "Foto",
45
+ "Photo": "",
46
46
  "Photos and Videos": "Foto's en video's",
47
- "Pin to Conversation": "Vastmaken aan gesprek",
47
+ "Pin to Conversation": "",
48
48
  "Pinned by": "Vastgemaakt door",
49
49
  "Please enable access to your photos and videos so you can share them.": "Schakel toegang tot uw foto's en video's in zodat u ze kunt delen.",
50
50
  "Please select a channel first": "Selecteer eerst een kanaal",
51
- "Reconnecting...": "Opnieuw Verbinding Maken...",
52
- "Reply": "Antwoord",
53
- "Reply to Message": "Beantwoord bericht",
54
- "Resend": "Opnieuw versturen",
55
- "Search GIFs": "Zoek GIF's",
51
+ "Reconnecting...": "",
52
+ "Reply": "",
53
+ "Reply to Message": "",
54
+ "Resend": "",
55
+ "Search GIFs": "",
56
56
  "Select More Photos": "Selecteer Meer foto's",
57
- "Send a message": "Stuur een bericht",
57
+ "Send a message": "",
58
58
  "Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
59
- "Slow mode ON": "Langzame modus aan",
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",
59
+ "Slow mode ON": "",
60
+ "The message has been reported to a moderator.": "",
61
+ "Thread Reply": "",
62
+ "Unblock User": "",
63
63
  "Unknown User": "Onbekende gebruiker",
64
- "Unmute User": "Dempen van gebruiker opheffen",
65
- "Unpin from Conversation": "Losmaken van gesprek",
64
+ "Unmute User": "",
65
+ "Unpin from Conversation": "",
66
66
  "Unread Messages": "Ongelezen Berichten",
67
- "Video": "Video",
68
- "You": "U",
67
+ "Video": "",
68
+ "You": "",
69
69
  "You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
70
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
70
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
71
71
  "{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
72
72
  "{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
73
73
  "{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
74
- "{{ user }} is typing": "{{ user }} is aan het typen",
75
- "🏙 Attachment...": "🏙 Bijlage..."
74
+ "{{ user }} is typing": "",
75
+ "🏙 Attachment...": ""
76
76
  }