stream-chat-react-native-core 5.30.0 → 5.31.0-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 (92) hide show
  1. package/lib/commonjs/components/Chat/hooks/useAppSettings.js +2 -4
  2. package/lib/commonjs/components/Chat/hooks/useAppSettings.js.map +1 -1
  3. package/lib/commonjs/components/MessageInput/FileUploadPreview.js +5 -6
  4. package/lib/commonjs/components/MessageInput/FileUploadPreview.js.map +1 -1
  5. package/lib/commonjs/components/MessageInput/MessageInput.js +4 -26
  6. package/lib/commonjs/components/MessageInput/MessageInput.js.map +1 -1
  7. package/lib/commonjs/components/MessageList/MessageList.js +2 -2
  8. package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
  9. package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +89 -76
  10. package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
  11. package/lib/commonjs/contexts/messageInputContext/utils/utils.js +66 -0
  12. package/lib/commonjs/contexts/messageInputContext/utils/utils.js.map +1 -0
  13. package/lib/commonjs/i18n/en.json +2 -2
  14. package/lib/commonjs/i18n/es.json +64 -64
  15. package/lib/commonjs/i18n/fr.json +64 -64
  16. package/lib/commonjs/i18n/he.json +64 -64
  17. package/lib/commonjs/i18n/hi.json +64 -64
  18. package/lib/commonjs/i18n/it.json +64 -64
  19. package/lib/commonjs/i18n/ja.json +64 -64
  20. package/lib/commonjs/i18n/ko.json +64 -64
  21. package/lib/commonjs/i18n/nl.json +64 -64
  22. package/lib/commonjs/i18n/pt-BR.json +64 -64
  23. package/lib/commonjs/i18n/ru.json +64 -64
  24. package/lib/commonjs/i18n/tr.json +64 -64
  25. package/lib/commonjs/version.json +1 -1
  26. package/lib/module/components/Chat/hooks/useAppSettings.js +2 -4
  27. package/lib/module/components/Chat/hooks/useAppSettings.js.map +1 -1
  28. package/lib/module/components/MessageInput/FileUploadPreview.js +5 -6
  29. package/lib/module/components/MessageInput/FileUploadPreview.js.map +1 -1
  30. package/lib/module/components/MessageInput/MessageInput.js +4 -26
  31. package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
  32. package/lib/module/components/MessageList/MessageList.js +2 -2
  33. package/lib/module/components/MessageList/MessageList.js.map +1 -1
  34. package/lib/module/contexts/messageInputContext/MessageInputContext.js +89 -76
  35. package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
  36. package/lib/module/contexts/messageInputContext/utils/utils.js +66 -0
  37. package/lib/module/contexts/messageInputContext/utils/utils.js.map +1 -0
  38. package/lib/module/i18n/en.json +2 -2
  39. package/lib/module/i18n/es.json +64 -64
  40. package/lib/module/i18n/fr.json +64 -64
  41. package/lib/module/i18n/he.json +64 -64
  42. package/lib/module/i18n/hi.json +64 -64
  43. package/lib/module/i18n/it.json +64 -64
  44. package/lib/module/i18n/ja.json +64 -64
  45. package/lib/module/i18n/ko.json +64 -64
  46. package/lib/module/i18n/nl.json +64 -64
  47. package/lib/module/i18n/pt-BR.json +64 -64
  48. package/lib/module/i18n/ru.json +64 -64
  49. package/lib/module/i18n/tr.json +64 -64
  50. package/lib/module/version.json +1 -1
  51. package/lib/typescript/components/Chat/hooks/useAppSettings.d.ts.map +1 -1
  52. package/lib/typescript/components/MessageInput/FileUploadPreview.d.ts.map +1 -1
  53. package/lib/typescript/components/MessageInput/MessageInput.d.ts.map +1 -1
  54. package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
  55. package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts.map +1 -1
  56. package/lib/typescript/contexts/messageInputContext/utils/utils.d.ts +22 -0
  57. package/lib/typescript/contexts/messageInputContext/utils/utils.d.ts.map +1 -0
  58. package/lib/typescript/i18n/en.json +2 -2
  59. package/lib/typescript/i18n/es.json +64 -64
  60. package/lib/typescript/i18n/fr.json +64 -64
  61. package/lib/typescript/i18n/he.json +64 -64
  62. package/lib/typescript/i18n/hi.json +64 -64
  63. package/lib/typescript/i18n/it.json +64 -64
  64. package/lib/typescript/i18n/ja.json +64 -64
  65. package/lib/typescript/i18n/ko.json +64 -64
  66. package/lib/typescript/i18n/nl.json +64 -64
  67. package/lib/typescript/i18n/pt-BR.json +64 -64
  68. package/lib/typescript/i18n/ru.json +64 -64
  69. package/lib/typescript/i18n/tr.json +64 -64
  70. package/lib/typescript/utils/Streami18n.d.ts +1 -1
  71. package/package.json +1 -1
  72. package/src/components/Chat/hooks/useAppSettings.ts +4 -6
  73. package/src/components/MessageInput/FileUploadPreview.tsx +2 -3
  74. package/src/components/MessageInput/MessageInput.tsx +4 -45
  75. package/src/components/MessageList/MessageList.tsx +5 -2
  76. package/src/contexts/messageInputContext/MessageInputContext.tsx +60 -55
  77. package/src/contexts/messageInputContext/__tests__/MessageInputContext.test.tsx +9 -0
  78. package/src/contexts/messageInputContext/__tests__/pickFile.test.tsx +8 -3
  79. package/src/contexts/messageInputContext/utils/utils.ts +86 -0
  80. package/src/i18n/en.json +2 -2
  81. package/src/i18n/es.json +64 -64
  82. package/src/i18n/fr.json +64 -64
  83. package/src/i18n/he.json +64 -64
  84. package/src/i18n/hi.json +64 -64
  85. package/src/i18n/it.json +64 -64
  86. package/src/i18n/ja.json +64 -64
  87. package/src/i18n/ko.json +64 -64
  88. package/src/i18n/nl.json +64 -64
  89. package/src/i18n/pt-BR.json +64 -64
  90. package/src/i18n/ru.json +64 -64
  91. package/src/i18n/tr.json +64 -64
  92. package/src/version.json +1 -1
@@ -1,83 +1,83 @@
1
1
  {
2
2
  "1 Reply": "1 Réponse",
3
- "1 Thread Reply": "Réponse à 1 fil",
4
- "Allow access to your Gallery": "Autoriser l'accès à votre galerie",
5
- "Allow camera access in device settings": "Autoriser l'accès à la caméra dans les paramètres de l'appareil",
6
- "Also send to channel": "Envoyer également à la chaîne",
7
- "Are you sure you want to permanently delete this message?": "Êtes-vous sûr de vouloir supprimer définitivement ce message?",
8
- "Are you sure?": "Es-tu sûr ?",
9
- "Block User": "Bloquer un utilisateur",
10
- "Cancel": "Annuler",
11
- "Cannot Flag Message": "Impossible de signaler le message",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considérez comment votre commentaire pourrait faire sentir les autres et assurez-vous de suivre nos directives communautaires",
13
- "Copy Message": "Copier le message",
14
- "Delete": "Supprimer",
15
- "Delete Message": "Supprimer un message",
16
- "Device camera is used to take photos or videos.": "L'appareil photo de l'appareil est utilisé pour prendre des photos ou des vidéos.",
17
- "Do you want to send a copy of this message to a moderator for further investigation?": "Voulez-vous envoyer une copie de ce message à un modérateur pour une enquête plus approfondie?",
18
- "Edit Message": "Éditer un message",
3
+ "1 Thread Reply": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "",
7
+ "Are you sure you want to permanently delete this message?": "",
8
+ "Are you sure?": "",
9
+ "Block User": "",
10
+ "Cancel": "",
11
+ "Cannot Flag Message": "",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
13
+ "Copy Message": "",
14
+ "Delete": "",
15
+ "Delete Message": "",
16
+ "Device camera is used to take photos or videos.": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
+ "Edit Message": "",
19
19
  "Edited": "Édité",
20
- "Editing Message": "Édite un message",
20
+ "Editing Message": "",
21
21
  "Emoji matching": "Correspondance Emoji",
22
22
  "Empty message...": "Message vide...",
23
- "Error loading": "Erreur lors du chargement",
24
- "Error loading channel list...": "Erreur lors du chargement de la liste de canaux...",
25
- "Error loading messages for this channel...": "Erreur lors du chargement des messages de ce canal...",
23
+ "Error loading": "",
24
+ "Error loading channel list...": "",
25
+ "Error loading messages for this channel...": "",
26
26
  "Error while loading, please reload/refresh": "Erreur lors du chargement, veuillez recharger/rafraîchir",
27
- "File type not supported": "Le type de fichier n'est pas pris en charge",
28
- "Flag": "Signaler",
29
- "Flag Message": "Signaler le message",
30
- "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é.",
31
- "Hold to start recording.": "Hold to start recording.",
32
- "How about sending your first message to a friend?": "Et si vous envoyiez votre premier message à un ami ?",
27
+ "File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
28
+ "File type not supported": "",
29
+ "Flag": "",
30
+ "Flag Message": "",
31
+ "Flag action failed either due to a network issue or the message is already flagged": "",
32
+ "Hold to start recording.": "",
33
+ "How about sending your first message to a friend?": "",
33
34
  "Instant Commands": "Commandes Instantanées",
34
- "Let's start chatting!": "Commençons à discuter !",
35
- "Links are disabled": "Links are disabled",
35
+ "Let's start chatting!": "",
36
+ "Links are disabled": "",
36
37
  "Loading channels...": "Chargement des canaux...",
37
38
  "Loading messages...": "Chargement des messages...",
38
39
  "Loading...": "Chargement...",
39
- "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.",
40
- "Message Reactions": "Réactions aux messages",
40
+ "Message Reactions": "",
41
41
  "Message deleted": "Message supprimé",
42
- "Message flagged": "Message signalé",
43
- "Mute User": "Utilisateur muet",
44
- "No chats here yet…": "Pas de discussions ici pour le moment…",
45
- "Not supported": "Non pris en charge",
42
+ "Message flagged": "",
43
+ "Mute User": "",
44
+ "No chats here yet…": "",
45
+ "Not supported": "",
46
46
  "Nothing yet...": "Aucun message...",
47
- "Ok": "Ok",
47
+ "Ok": "",
48
48
  "Only visible to you": "Seulement visible par vous",
49
- "Open Settings": "Ouvrir les paramètres",
50
- "Photo": "Photo",
51
- "Photos and Videos": "Photos et vidéos",
52
- "Pin to Conversation": "Épingler à la conversation",
49
+ "Open Settings": "",
50
+ "Photo": "",
51
+ "Photos and Videos": "",
52
+ "Pin to Conversation": "",
53
53
  "Pinned by": "Épinglé par",
54
- "Please allow Audio permissions in settings.": "Veuillez autoriser les permissions audio dans les paramètres.",
55
- "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.",
56
- "Please select a channel first": "Veuillez d'abord selectionnez un canal",
54
+ "Please allow Audio permissions in settings.": "",
55
+ "Please enable access to your photos and videos so you can share them.": "",
56
+ "Please select a channel first": "",
57
57
  "Reconnecting...": "Se Reconnecter...",
58
- "Reply": "Répondre",
59
- "Reply to Message": "Répondre au message",
60
- "Resend": "Renvoyer",
61
- "Search GIFs": "Rechercher des GIF",
62
- "Select More Photos": "Sélectionner plus de photos",
63
- "Send Anyway": "Envoyer quand même",
64
- "Send a message": "Envoyer un message",
65
- "Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
66
- "Slow mode ON": "Mode lent activé",
67
- "The message has been reported to a moderator.": "Le message a été signalé à un modérateur.",
68
- "Thread Reply": "Réponse à la discussion",
69
- "Unblock User": "Débloquer Utilisateur",
70
- "Unknown User": "Utilisateur inconnu",
71
- "Unmute User": "Activer le son de Utilisateur",
72
- "Unpin from Conversation": "Décrocher de la conversation",
73
- "Unread Messages": "Messages non lus",
74
- "Video": "Vidéo",
58
+ "Reply": "",
59
+ "Reply to Message": "",
60
+ "Resend": "",
61
+ "Search GIFs": "",
62
+ "Select More Photos": "",
63
+ "Send Anyway": "",
64
+ "Send a message": "",
65
+ "Sending links is not allowed in this conversation": "",
66
+ "Slow mode ON": "",
67
+ "The message has been reported to a moderator.": "",
68
+ "Thread Reply": "",
69
+ "Unblock User": "",
70
+ "Unknown User": "",
71
+ "Unmute User": "",
72
+ "Unpin from Conversation": "",
73
+ "Unread Messages": "",
74
+ "Video": "",
75
75
  "You": "Toi",
76
- "You can't send messages in this channel": "You can't send messages in this channel",
77
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
78
- "{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
76
+ "You can't send messages in this channel": "",
77
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
78
+ "{{ index }} of {{ photoLength }}": "",
79
79
  "{{ replyCount }} Replies": "{{ replyCount }} Réponses",
80
- "{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
81
- "{{ user }} is typing": "{{ user }} est en train d'écrire",
80
+ "{{ replyCount }} Thread Replies": "",
81
+ "{{ user }} is typing": "",
82
82
  "🏙 Attachment...": "🏙 Pièce jointe..."
83
83
  }
@@ -1,83 +1,83 @@
1
1
  {
2
2
  "1 Reply": "תגובה אחת",
3
- "1 Thread Reply": "תגובה אחת לשרשור",
4
- "Allow access to your Gallery": "אפשר גישה לגלריה שלך",
5
- "Allow camera access in device settings": "אפשר גישה למצלמה בהגדרות המכשיר",
6
- "Also send to channel": "שלח/י הודעה לשיחה",
7
- "Are you sure you want to permanently delete this message?": "האם את/ה בטוח/ה שאת/ה רוצה למחוק את ההודעה הזו לצמיתות?",
8
- "Are you sure?": "האם אתה בטוח?",
9
- "Block User": "חסום משתמש",
10
- "Cancel": "ביטול",
11
- "Cannot Flag Message": "סימון הודעה לא אפשרי",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "שקול איך התגובה שלך עשויה להשפיע על אחרים ווודא שאתה עוקב אחר ההנחיות של הקהילה שלנו",
13
- "Copy Message": "העתק/י הודעה",
14
- "Delete": "מחק",
15
- "Delete Message": "מחק/י הודעה",
16
- "Device camera is used to take photos or videos.": "מצלמת המכשיר משמשת לצילום תמונות או סרטונים.",
17
- "Do you want to send a copy of this message to a moderator for further investigation?": "האם את/ה רוצה לשלוח עותק של הודעה זו למנחה להמשך חקירה?",
18
- "Edit Message": "ערוך הודעה",
3
+ "1 Thread Reply": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "",
7
+ "Are you sure you want to permanently delete this message?": "",
8
+ "Are you sure?": "",
9
+ "Block User": "",
10
+ "Cancel": "",
11
+ "Cannot Flag Message": "",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
13
+ "Copy Message": "",
14
+ "Delete": "",
15
+ "Delete Message": "",
16
+ "Device camera is used to take photos or videos.": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
+ "Edit Message": "",
19
19
  "Edited": "נערך",
20
- "Editing Message": "הודעה בעריכה",
20
+ "Editing Message": "",
21
21
  "Emoji matching": "התאמת אמוג'י",
22
22
  "Empty message...": "הודעה ריקה...",
23
- "Error loading": "שגיאה ארעה בעת הטעינה",
24
- "Error loading channel list...": "שגיאה ארעה בטעינת השיחות...",
25
- "Error loading messages for this channel...": "שגיאה ארעה בטעינת הודעות עבור שיחה זאת...",
23
+ "Error loading": "",
24
+ "Error loading channel list...": "",
25
+ "Error loading messages for this channel...": "",
26
26
  "Error while loading, please reload/refresh": "שגיאה ארעה בזמן הטעינה, אנא טען מחדש/רענן",
27
- "File type not supported": "סוג הקובץ אינו נתמך",
28
- "Flag": "סמן",
29
- "Flag Message": "סמן הודעה",
30
- "Flag action failed either due to a network issue or the message is already flagged": "פעולת הסימון נכשלה בגלל בעיית רשת או שההודעה כבר סומנה.",
31
- "Hold to start recording.": "לחץ והחזק כדי להתחיל להקליט.",
32
- "How about sending your first message to a friend?": "מה דעתך לשלוח את ההודעה הראשונה שלך לחבר?",
27
+ "File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
28
+ "File type not supported": "",
29
+ "Flag": "",
30
+ "Flag Message": "",
31
+ "Flag action failed either due to a network issue or the message is already flagged": "",
32
+ "Hold to start recording.": "",
33
+ "How about sending your first message to a friend?": "",
33
34
  "Instant Commands": "פעולות מיידיות",
34
- "Let's start chatting!": "בואו נתחיל לשוחח!",
35
- "Links are disabled": "הקישורים מבוטלים",
35
+ "Let's start chatting!": "",
36
+ "Links are disabled": "",
36
37
  "Loading channels...": "השיחות בטעינה...",
37
38
  "Loading messages...": "ההודעות בטעינה..",
38
39
  "Loading...": "טוען...",
39
- "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}} MB",
40
- "Message Reactions": "תגובות להודעה",
40
+ "Message Reactions": "",
41
41
  "Message deleted": "ההודעה נמחקה",
42
- "Message flagged": "ההודעה סומנה",
43
- "Mute User": "השתק/י משתמש",
44
- "No chats here yet…": "אין צ'אטים כאן עדיין...",
45
- "Not supported": "לא נתמך",
42
+ "Message flagged": "",
43
+ "Mute User": "",
44
+ "No chats here yet…": "",
45
+ "Not supported": "",
46
46
  "Nothing yet...": "אינפורמציה תתקבל בהמשך...",
47
- "Ok": "אוקיי",
47
+ "Ok": "",
48
48
  "Only visible to you": "גלוי רק לך",
49
- "Open Settings": "פתח את ההגדרות",
50
- "Photo": "תמונה",
51
- "Photos and Videos": "תמונות ווידאו",
52
- "Pin to Conversation": "הצמד/י לשיחה",
49
+ "Open Settings": "",
50
+ "Photo": "",
51
+ "Photos and Videos": "",
52
+ "Pin to Conversation": "",
53
53
  "Pinned by": " - הוצמד לשיחה",
54
- "Please allow Audio permissions in settings.": "בבקשה, הרשה הרשאות שמע בהגדרות.",
55
- "Please enable access to your photos and videos so you can share them.": "אפשר/י גישה לתמונות ולסרטונים שלך כדי שתוכל/י לשתף אותם.",
56
- "Please select a channel first": "אנא בחר/י שיחה תחילה",
54
+ "Please allow Audio permissions in settings.": "",
55
+ "Please enable access to your photos and videos so you can share them.": "",
56
+ "Please select a channel first": "",
57
57
  "Reconnecting...": "מתחבר מחדש...",
58
- "Reply": "השב/י",
59
- "Reply to Message": "השב/י להודעה",
60
- "Resend": "שלח/י שוב",
61
- "Search GIFs": "חפש/י GIFs",
62
- "Select More Photos": "בחר עוד תמונות",
63
- "Send Anyway": "שלח בכל זאת",
64
- "Send a message": "שלח/י הודעה",
65
- "Sending links is not allowed in this conversation": "שליחת קישורים אינה מותרת בשיחה זו",
66
- "Slow mode ON": "מצב איטי מופעל",
67
- "The message has been reported to a moderator.": "ההודעה דווחה למנהל",
68
- "Thread Reply": "הגב/י בשרשור",
69
- "Unblock User": "בטל/י חסימת משתמש",
70
- "Unknown User": "משתמש לא ידוע",
71
- "Unmute User": "בטל/י השתקת משתמש",
72
- "Unpin from Conversation": "בטל/י הצמדה לשיחה",
73
- "Unread Messages": "הודעות שטרם נקרו",
74
- "Video": "וִידֵאוֹ",
58
+ "Reply": "",
59
+ "Reply to Message": "",
60
+ "Resend": "",
61
+ "Search GIFs": "",
62
+ "Select More Photos": "",
63
+ "Send Anyway": "",
64
+ "Send a message": "",
65
+ "Sending links is not allowed in this conversation": "",
66
+ "Slow mode ON": "",
67
+ "The message has been reported to a moderator.": "",
68
+ "Thread Reply": "",
69
+ "Unblock User": "",
70
+ "Unknown User": "",
71
+ "Unmute User": "",
72
+ "Unpin from Conversation": "",
73
+ "Unread Messages": "",
74
+ "Video": "",
75
75
  "You": "את/ה",
76
- "You can't send messages in this channel": "את/ב לא יכול/ה לשלוח הודעות בשיחה זו",
77
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ו-{{ nonSelfUserLength }} משתמש/ים אחר/ים מקלידים",
78
- "{{ index }} of {{ photoLength }}": "{{ index }} מתוך {{ photoLength }}",
76
+ "You can't send messages in this channel": "",
77
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
78
+ "{{ index }} of {{ photoLength }}": "",
79
79
  "{{ replyCount }} Replies": "{{ replyCount }} תגובות",
80
- "{{ replyCount }} Thread Replies": "{{ replyCount }} תגובות שרשור",
81
- "{{ user }} is typing": "{{ user }} מקליד/ה",
80
+ "{{ replyCount }} Thread Replies": "",
81
+ "{{ user }} is typing": "",
82
82
  "🏙 Attachment...": "🏙 קובץ מצורף..."
83
83
  }
@@ -1,83 +1,83 @@
1
1
  {
2
2
  "1 Reply": "1 रिप्लाई",
3
- "1 Thread Reply": "1 धागा उत्तर",
4
- "Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
5
- "Allow camera access in device settings": "डिवाइस सेटिंग्स में कैमरा एक्सेस की अनुमति दें",
6
- "Also send to channel": "चैनल को भी भेजें",
7
- "Are you sure you want to permanently delete this message?": "क्या आप वाकई इस संदेश को स्थायी रूप से हटाना चाहते हैं?",
8
- "Are you sure?": "क्या आप सुनिश्चित हैं?",
9
- "Block User": "उपयोगकर्ता को रोक देना, ब्लॉक यूजर",
10
- "Cancel": "रद्द करें",
11
- "Cannot Flag Message": "मैसेज फ्लैग नहीं किया जा सकता है",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "ध्यान दें कि आपका संदेश दूसरों को कैसा लगा सकता है और सुनिश्चित हों कि आप हमारी सामुदायिक अनुशासन का पालन कर रहे हैं",
13
- "Copy Message": "संदेश की प्रतिलिपि बनाएँ",
14
- "Delete": "हटाएं",
15
- "Delete Message": "मैसेज को डिलीट करे",
16
- "Device camera is used to take photos or videos.": "डिवाइस कैमरे का उपयोग फ़ोटो या वीडियो लेने के लिए किया जाता है।",
17
- "Do you want to send a copy of this message to a moderator for further investigation?": "क्या आप इस संदेश की एक प्रति आगे की जाँच के लिए किसी मॉडरेटर को भेजना चाहते हैं?",
18
- "Edit Message": "मैसेज में बदलाव करे",
3
+ "1 Thread Reply": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "",
7
+ "Are you sure you want to permanently delete this message?": "",
8
+ "Are you sure?": "",
9
+ "Block User": "",
10
+ "Cancel": "",
11
+ "Cannot Flag Message": "",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
13
+ "Copy Message": "",
14
+ "Delete": "",
15
+ "Delete Message": "",
16
+ "Device camera is used to take photos or videos.": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
+ "Edit Message": "",
19
19
  "Edited": "मैसेज बदला गया है",
20
- "Editing Message": "मैसेज बदला जा रहा है",
20
+ "Editing Message": "",
21
21
  "Emoji matching": "इमोजी मिलान",
22
22
  "Empty message...": "खाली संदेश...",
23
- "Error loading": "लोड होने मे त्रुटि",
24
- "Error loading channel list...": "चैनल सूची लोड करने में त्रुटि...",
25
- "Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
23
+ "Error loading": "",
24
+ "Error loading channel list...": "",
25
+ "Error loading messages for this channel...": "",
26
26
  "Error while loading, please reload/refresh": "एरर, रिफ्रेश करे",
27
- "File type not supported": "फ़ाइल प्रकार समर्थित नहीं है",
28
- "Flag": "झंडा",
29
- "Flag Message": "झंडा संदेश",
30
- "Flag action failed either due to a network issue or the message is already flagged": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
31
- "Hold to start recording.": "रिकॉर्डिंग शुरू करने के लिए दबाएं।",
32
- "How about sending your first message to a friend?": "किसी मित्र को अपना पहला संदेश भेजने के बारे में क्या ख़याल है?",
27
+ "File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
28
+ "File type not supported": "",
29
+ "Flag": "",
30
+ "Flag Message": "",
31
+ "Flag action failed either due to a network issue or the message is already flagged": "",
32
+ "Hold to start recording.": "",
33
+ "How about sending your first message to a friend?": "",
33
34
  "Instant Commands": "त्वरित कमांड",
34
- "Let's start chatting!": "आइए चैट करना शुरू करें!",
35
- "Links are disabled": "लिंक अक्षम हैं",
35
+ "Let's start chatting!": "",
36
+ "Links are disabled": "",
36
37
  "Loading channels...": "चैनल लोड हो रहे हैं...",
37
38
  "Loading messages...": "मेसेजस लोड हो रहे हैं...",
38
39
  "Loading...": "लोड हो रहा है...",
39
- "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}} एमबी से नीचे की फ़ाइल अपलोड करें।",
40
- "Message Reactions": "संदेश प्रतिक्रियाएँ",
40
+ "Message Reactions": "",
41
41
  "Message deleted": "मैसेज हटा दिया गया",
42
- "Message flagged": "संदेश को ध्वजांकित किया गया",
43
- "Mute User": "उपयोगकर्ता को म्यूट करें",
44
- "No chats here yet…": "अभी तक यहाँ कोई चैट नहीं है...",
45
- "Not supported": "समर्थित नहीं",
42
+ "Message flagged": "",
43
+ "Mute User": "",
44
+ "No chats here yet…": "",
45
+ "Not supported": "",
46
46
  "Nothing yet...": "कोई मैसेज नहीं है...",
47
- "Ok": "ठीक",
47
+ "Ok": "",
48
48
  "Only visible to you": "केवल आपको दिखाई दे रहा है",
49
- "Open Settings": "सेटिंग्स खोलें",
50
- "Photo": "तस्वीर",
51
- "Photos and Videos": "तस्वीरें और वीडियों",
52
- "Pin to Conversation": "बातचीत में पिन करें",
49
+ "Open Settings": "",
50
+ "Photo": "",
51
+ "Photos and Videos": "",
52
+ "Pin to Conversation": "",
53
53
  "Pinned by": "द्वारा पिन किया गया",
54
- "Please allow Audio permissions in settings.": "कृपया सेटिंग्स में ऑडियो की अनुमति दें।",
55
- "Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
56
- "Please select a channel first": "कृपया पहले एक चैनल चुनें",
54
+ "Please allow Audio permissions in settings.": "",
55
+ "Please enable access to your photos and videos so you can share them.": "",
56
+ "Please select a channel first": "",
57
57
  "Reconnecting...": "पुनः कनेक्ट हो...",
58
- "Reply": "मैसेज को रिप्लाई करे",
59
- "Reply to Message": "संदेश का जवाब दें",
60
- "Resend": "पुन: भेजें",
61
- "Search GIFs": "GIF खोजें",
62
- "Select More Photos": "अधिक फ़ोटो चुनें",
63
- "Send Anyway": "फिर भी भेजें",
64
- "Send a message": "एक संदेश भेजें",
65
- "Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
66
- "Slow mode ON": "स्लो मोड चालू",
67
- "The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
68
- "Thread Reply": "धागा जवाब",
69
- "Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
70
- "Unknown User": "अज्ञात उपयोगकर्ता",
71
- "Unmute User": "उपयोगकर्ता को अनम्यूट करें",
72
- "Unpin from Conversation": "बातचीत से अनपिन करें",
73
- "Unread Messages": "अपठित संदेश",
74
- "Video": "वीडियो",
58
+ "Reply": "",
59
+ "Reply to Message": "",
60
+ "Resend": "",
61
+ "Search GIFs": "",
62
+ "Select More Photos": "",
63
+ "Send Anyway": "",
64
+ "Send a message": "",
65
+ "Sending links is not allowed in this conversation": "",
66
+ "Slow mode ON": "",
67
+ "The message has been reported to a moderator.": "",
68
+ "Thread Reply": "",
69
+ "Unblock User": "",
70
+ "Unknown User": "",
71
+ "Unmute User": "",
72
+ "Unpin from Conversation": "",
73
+ "Unread Messages": "",
74
+ "Video": "",
75
75
  "You": "आप",
76
- "You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
77
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
78
- "{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
76
+ "You can't send messages in this channel": "",
77
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
78
+ "{{ index }} of {{ photoLength }}": "",
79
79
  "{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
80
- "{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
81
- "{{ user }} is typing": "{{ user }} टाइप कर रहा है",
80
+ "{{ replyCount }} Thread Replies": "",
81
+ "{{ user }} is typing": "",
82
82
  "🏙 Attachment...": "🏙 अटैचमेंट..."
83
83
  }
@@ -1,83 +1,83 @@
1
1
  {
2
2
  "1 Reply": "1 Risposta",
3
- "1 Thread Reply": "1 Risposta alla Discussione",
4
- "Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
5
- "Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
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
- "Are you sure?": "Sei sicuro?",
9
- "Block User": "Blocca Utente",
10
- "Cancel": "Annulla",
11
- "Cannot Flag Message": "Impossibile Segnalare Messaggio",
12
- "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considera come il tuo commento potrebbe far sentire gli altri e assicurati di seguire le nostre Linee guida della community",
13
- "Copy Message": "Copia Messaggio",
14
- "Delete": "Elimina",
15
- "Delete Message": "Cancella il Messaggio",
16
- "Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
17
- "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?",
18
- "Edit Message": "Modifica Messaggio",
3
+ "1 Thread Reply": "",
4
+ "Allow access to your Gallery": "",
5
+ "Allow camera access in device settings": "",
6
+ "Also send to channel": "",
7
+ "Are you sure you want to permanently delete this message?": "",
8
+ "Are you sure?": "",
9
+ "Block User": "",
10
+ "Cancel": "",
11
+ "Cannot Flag Message": "",
12
+ "Consider how your comment might make others feel and be sure to follow our Community Guidelines": "",
13
+ "Copy Message": "",
14
+ "Delete": "",
15
+ "Delete Message": "",
16
+ "Device camera is used to take photos or videos.": "",
17
+ "Do you want to send a copy of this message to a moderator for further investigation?": "",
18
+ "Edit Message": "",
19
19
  "Edited": "Modificato",
20
- "Editing Message": "Modificando il Messaggio",
20
+ "Editing Message": "",
21
21
  "Emoji matching": "Abbinamento emoji",
22
22
  "Empty message...": "Message vuoto...",
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...",
23
+ "Error loading": "",
24
+ "Error loading channel list...": "",
25
+ "Error loading messages for this channel...": "",
26
26
  "Error while loading, please reload/refresh": "Errore durante il caricamento, per favore ricarica la pagina",
27
- "File type not supported": "Tipo di file non supportato",
28
- "Flag": "Contrassegna",
29
- "Flag Message": "Contrassegna Messaggio",
30
- "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.",
31
- "Hold to start recording.": "Tieni premuto per avviare la registrazione.",
32
- "How about sending your first message to a friend?": "Che ne dici di inviare il tuo primo messaggio ad un amico?",
27
+ "File is too large: {{ size }}, maximum upload size is {{ limit }}": "",
28
+ "File type not supported": "",
29
+ "Flag": "",
30
+ "Flag Message": "",
31
+ "Flag action failed either due to a network issue or the message is already flagged": "",
32
+ "Hold to start recording.": "",
33
+ "How about sending your first message to a friend?": "",
33
34
  "Instant Commands": "Comandi Istantanei",
34
- "Let's start chatting!": "Iniziamo a chattare!",
35
- "Links are disabled": "I link sono disabilitati",
35
+ "Let's start chatting!": "",
36
+ "Links are disabled": "",
36
37
  "Loading channels...": "Caricamento canali in corso...",
37
38
  "Loading messages...": "Caricamento messaggi...",
38
39
  "Loading...": "Caricamento...",
39
- "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.",
40
- "Message Reactions": "Reazioni ai Messaggi",
40
+ "Message Reactions": "",
41
41
  "Message deleted": "Messaggio cancellato",
42
- "Message flagged": "Messaggio contrassegnato",
43
- "Mute User": "Utente Muto",
44
- "No chats here yet…": "Non ci sono ancora chat qui...",
45
- "Not supported": "non supportato",
42
+ "Message flagged": "",
43
+ "Mute User": "",
44
+ "No chats here yet…": "",
45
+ "Not supported": "",
46
46
  "Nothing yet...": "Ancora niente...",
47
- "Ok": "Ok",
47
+ "Ok": "",
48
48
  "Only visible to you": "Visibile solo a te",
49
- "Open Settings": "Apri Impostazioni",
50
- "Photo": "Foto",
51
- "Photos and Videos": "Foto e Video",
52
- "Pin to Conversation": "Metti in evidenza",
49
+ "Open Settings": "",
50
+ "Photo": "",
51
+ "Photos and Videos": "",
52
+ "Pin to Conversation": "",
53
53
  "Pinned by": "Fissato da",
54
- "Please allow Audio permissions in settings.": "Si prega di consentire le autorizzazioni audio nelle impostazioni.",
55
- "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.",
56
- "Please select a channel first": "Seleziona un canale",
54
+ "Please allow Audio permissions in settings.": "",
55
+ "Please enable access to your photos and videos so you can share them.": "",
56
+ "Please select a channel first": "",
57
57
  "Reconnecting...": "Ricollegarsi...",
58
- "Reply": "Rispondi",
59
- "Reply to Message": "Rispondi al messaggio",
60
- "Resend": "Invia di nuovo",
61
- "Search GIFs": "Cerca GIF",
62
- "Select More Photos": "Seleziona Altre foto",
63
- "Send Anyway": "Invia comunque",
64
- "Send a message": "Mandare un messaggio",
65
- "Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
66
- "Slow mode ON": "Slowmode attiva",
67
- "The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
68
- "Thread Reply": "Rispondi alla Discussione",
69
- "Unblock User": "Sblocca utente",
70
- "Unknown User": "Utente sconosciuto",
71
- "Unmute User": "Riattiva utente",
72
- "Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
73
- "Unread Messages": "Messaggi non letti",
74
- "Video": "Video",
58
+ "Reply": "",
59
+ "Reply to Message": "",
60
+ "Resend": "",
61
+ "Search GIFs": "",
62
+ "Select More Photos": "",
63
+ "Send Anyway": "",
64
+ "Send a message": "",
65
+ "Sending links is not allowed in this conversation": "",
66
+ "Slow mode ON": "",
67
+ "The message has been reported to a moderator.": "",
68
+ "Thread Reply": "",
69
+ "Unblock User": "",
70
+ "Unknown User": "",
71
+ "Unmute User": "",
72
+ "Unpin from Conversation": "",
73
+ "Unread Messages": "",
74
+ "Video": "",
75
75
  "You": "Tu",
76
- "You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
77
- "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
78
- "{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
76
+ "You can't send messages in this channel": "",
77
+ "{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
78
+ "{{ index }} of {{ photoLength }}": "",
79
79
  "{{ replyCount }} Replies": "{{ replyCount }} Risposte",
80
- "{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
81
- "{{ user }} is typing": "{{ user }} sta scrivendo",
80
+ "{{ replyCount }} Thread Replies": "",
81
+ "{{ user }} is typing": "",
82
82
  "🏙 Attachment...": "🏙 Allegato..."
83
83
  }