stream-chat-react-native-core 5.27.0-beta.8 → 5.27.0
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.
- package/lib/commonjs/components/Attachment/Gallery.js +4 -4
- package/lib/commonjs/components/Attachment/Gallery.js.map +1 -1
- package/lib/commonjs/components/AttachmentPicker/AttachmentPicker.js +1 -1
- package/lib/commonjs/components/AttachmentPicker/AttachmentPicker.js.map +1 -1
- package/lib/commonjs/components/Chat/hooks/handleEventToSyncDB.js +100 -37
- package/lib/commonjs/components/Chat/hooks/handleEventToSyncDB.js.map +1 -1
- package/lib/commonjs/components/Chat/hooks/useSyncDatabase.js +3 -1
- package/lib/commonjs/components/Chat/hooks/useSyncDatabase.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/ImageGallery.js +39 -21
- package/lib/commonjs/components/ImageGallery/ImageGallery.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +22 -21
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/i18n/es.json +17 -17
- package/lib/commonjs/i18n/fr.json +17 -17
- package/lib/commonjs/i18n/he.json +17 -17
- package/lib/commonjs/i18n/hi.json +17 -17
- package/lib/commonjs/i18n/it.json +17 -17
- package/lib/commonjs/i18n/ja.json +17 -17
- package/lib/commonjs/i18n/ko.json +17 -17
- package/lib/commonjs/i18n/nl.json +17 -17
- package/lib/commonjs/i18n/pt-BR.json +17 -17
- package/lib/commonjs/i18n/ru.json +17 -17
- package/lib/commonjs/i18n/tr.json +17 -17
- package/lib/commonjs/store/apis/upsertChannelDataFromChannel.js +21 -0
- package/lib/commonjs/store/apis/upsertChannelDataFromChannel.js.map +1 -0
- package/lib/commonjs/store/mappers/mapChannelToStorable.js +63 -0
- package/lib/commonjs/store/mappers/mapChannelToStorable.js.map +1 -0
- package/lib/commonjs/utils/DBSyncManager.js +73 -68
- package/lib/commonjs/utils/DBSyncManager.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Attachment/Gallery.js +4 -4
- package/lib/module/components/Attachment/Gallery.js.map +1 -1
- package/lib/module/components/AttachmentPicker/AttachmentPicker.js +1 -1
- package/lib/module/components/AttachmentPicker/AttachmentPicker.js.map +1 -1
- package/lib/module/components/Chat/hooks/handleEventToSyncDB.js +100 -37
- package/lib/module/components/Chat/hooks/handleEventToSyncDB.js.map +1 -1
- package/lib/module/components/Chat/hooks/useSyncDatabase.js +3 -1
- package/lib/module/components/Chat/hooks/useSyncDatabase.js.map +1 -1
- package/lib/module/components/ImageGallery/ImageGallery.js +39 -21
- package/lib/module/components/ImageGallery/ImageGallery.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +22 -21
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/i18n/es.json +17 -17
- package/lib/module/i18n/fr.json +17 -17
- package/lib/module/i18n/he.json +17 -17
- package/lib/module/i18n/hi.json +17 -17
- package/lib/module/i18n/it.json +17 -17
- package/lib/module/i18n/ja.json +17 -17
- package/lib/module/i18n/ko.json +17 -17
- package/lib/module/i18n/nl.json +17 -17
- package/lib/module/i18n/pt-BR.json +17 -17
- package/lib/module/i18n/ru.json +17 -17
- package/lib/module/i18n/tr.json +17 -17
- package/lib/module/store/apis/upsertChannelDataFromChannel.js +21 -0
- package/lib/module/store/apis/upsertChannelDataFromChannel.js.map +1 -0
- package/lib/module/store/mappers/mapChannelToStorable.js +63 -0
- package/lib/module/store/mappers/mapChannelToStorable.js.map +1 -0
- package/lib/module/utils/DBSyncManager.js +73 -68
- package/lib/module/utils/DBSyncManager.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Chat/hooks/handleEventToSyncDB.d.ts +4 -2
- package/lib/typescript/i18n/es.json +17 -17
- package/lib/typescript/i18n/fr.json +17 -17
- package/lib/typescript/i18n/he.json +17 -17
- package/lib/typescript/i18n/hi.json +17 -17
- package/lib/typescript/i18n/it.json +17 -17
- package/lib/typescript/i18n/ja.json +17 -17
- package/lib/typescript/i18n/ko.json +17 -17
- package/lib/typescript/i18n/nl.json +17 -17
- package/lib/typescript/i18n/pt-BR.json +17 -17
- package/lib/typescript/i18n/ru.json +17 -17
- package/lib/typescript/i18n/tr.json +17 -17
- package/lib/typescript/store/apis/upsertChannelDataFromChannel.d.ts +6 -0
- package/lib/typescript/store/mappers/mapChannelToStorable.d.ts +4 -0
- package/lib/typescript/utils/DBSyncManager.d.ts +1 -1
- package/package.json +1 -1
- package/src/components/Attachment/Gallery.tsx +5 -5
- package/src/components/AttachmentPicker/AttachmentPicker.tsx +1 -1
- package/src/components/Chat/hooks/handleEventToSyncDB.ts +132 -46
- package/src/components/Chat/hooks/useSyncDatabase.ts +1 -1
- package/src/components/ImageGallery/ImageGallery.tsx +25 -2
- package/src/components/MessageList/MessageList.tsx +4 -2
- package/src/i18n/es.json +17 -17
- package/src/i18n/fr.json +17 -17
- package/src/i18n/he.json +17 -17
- package/src/i18n/hi.json +17 -17
- package/src/i18n/it.json +17 -17
- package/src/i18n/ja.json +17 -17
- package/src/i18n/ko.json +17 -17
- package/src/i18n/nl.json +17 -17
- package/src/i18n/pt-BR.json +17 -17
- package/src/i18n/ru.json +17 -17
- package/src/i18n/tr.json +17 -17
- package/src/store/apis/upsertChannelDataFromChannel.ts +25 -0
- package/src/store/mappers/mapChannelToStorable.ts +68 -0
- package/src/utils/DBSyncManager.ts +7 -3
- package/src/version.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Réponse",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
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
6
|
"Also send to channel": "Envoyer également à la chaîne",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "Êtes-vous sûr de vouloir supprimer définitivement ce message?",
|
|
8
8
|
"Are you sure?": "Es-tu sûr ?",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"Copy Message": "Copier le message",
|
|
14
14
|
"Delete": "Supprimer",
|
|
15
15
|
"Delete Message": "Supprimer un message",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
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
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
18
|
"Edit Message": "Éditer un message",
|
|
19
|
-
"Editing Message": "",
|
|
19
|
+
"Editing Message": "Édite un message",
|
|
20
20
|
"Emoji matching": "Correspondance Emoji",
|
|
21
21
|
"Empty message...": "Message vide...",
|
|
22
22
|
"Error loading": "Erreur lors du chargement",
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"Message deleted": "Message supprimé",
|
|
40
40
|
"Message flagged": "Message signalé",
|
|
41
41
|
"Mute User": "Utilisateur muet",
|
|
42
|
-
"Not supported": "",
|
|
42
|
+
"Not supported": "Non pris en charge",
|
|
43
43
|
"Nothing yet...": "Aucun message...",
|
|
44
44
|
"Ok": "Ok",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "Seulement visible par vous",
|
|
46
|
+
"Open Settings": "Ouvrir les paramètres",
|
|
47
47
|
"Photo": "Photo",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "Photos et vidéos",
|
|
49
49
|
"Pin to Conversation": "Épingler à la conversation",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
|
+
"Pinned by": "Épinglé par",
|
|
51
|
+
"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.",
|
|
52
52
|
"Please select a channel first": "Veuillez d'abord selectionnez un canal",
|
|
53
53
|
"Reconnecting...": "Se Reconnecter...",
|
|
54
54
|
"Reply": "Répondre",
|
|
55
55
|
"Reply to Message": "Répondre au message",
|
|
56
56
|
"Resend": "Renvoyer",
|
|
57
57
|
"Search GIFs": "Rechercher des GIF",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "Sélectionner plus de photos",
|
|
59
59
|
"Send Anyway": "Envoyer quand même",
|
|
60
60
|
"Send a message": "Envoyer un message",
|
|
61
61
|
"Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
|
|
@@ -63,17 +63,17 @@
|
|
|
63
63
|
"The message has been reported to a moderator.": "Le message a été signalé à un modérateur.",
|
|
64
64
|
"Thread Reply": "Réponse à la discussion",
|
|
65
65
|
"Unblock User": "Débloquer Utilisateur",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "Utilisateur inconnu",
|
|
67
67
|
"Unmute User": "Activer le son de Utilisateur",
|
|
68
68
|
"Unpin from Conversation": "Décrocher de la conversation",
|
|
69
69
|
"Unread Messages": "Messages non lus",
|
|
70
70
|
"Video": "Vidéo",
|
|
71
71
|
"You": "Toi",
|
|
72
72
|
"You can't send messages in this channel": "You can't send messages in this channel",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} sur {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Réponses à la discussion",
|
|
77
|
+
"{{ user }} is typing": "{{ user }} est en train d'écrire",
|
|
78
78
|
"🏙 Attachment...": "🏙 Pièce jointe..."
|
|
79
79
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "תגובה אחת",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
3
|
+
"1 Thread Reply": "תגובה אחת לשרשור",
|
|
4
|
+
"Allow access to your Gallery": "אפשר גישה לגלריה שלך",
|
|
5
|
+
"Allow camera access in device settings": "אפשר גישה למצלמה בהגדרות המכשיר",
|
|
6
6
|
"Also send to channel": "שלח/י הודעה לשיחה",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "האם את/ה בטוח/ה שאת/ה רוצה למחוק את ההודעה הזו לצמיתות?",
|
|
8
8
|
"Are you sure?": "האם אתה בטוח?",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"Copy Message": "העתק/י הודעה",
|
|
14
14
|
"Delete": "מחק",
|
|
15
15
|
"Delete Message": "מחק/י הודעה",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "מצלמת המכשיר משמשת לצילום תמונות או סרטונים.",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "האם את/ה רוצה לשלוח עותק של הודעה זו למנחה להמשך חקירה?",
|
|
18
18
|
"Edit Message": "ערוך הודעה",
|
|
19
|
-
"Editing Message": "",
|
|
19
|
+
"Editing Message": "הודעה בעריכה",
|
|
20
20
|
"Emoji matching": "התאמת אמוג'י",
|
|
21
21
|
"Empty message...": "הודעה ריקה...",
|
|
22
22
|
"Error loading": "שגיאה ארעה בעת הטעינה",
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"Message deleted": "ההודעה נמחקה",
|
|
40
40
|
"Message flagged": "ההודעה סומנה",
|
|
41
41
|
"Mute User": "השתק/י משתמש",
|
|
42
|
-
"Not supported": "",
|
|
42
|
+
"Not supported": "לא נתמך",
|
|
43
43
|
"Nothing yet...": "אינפורמציה תתקבל בהמשך...",
|
|
44
44
|
"Ok": "אוקיי",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "גלוי רק לך",
|
|
46
|
+
"Open Settings": "פתח את ההגדרות",
|
|
47
47
|
"Photo": "תמונה",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "תמונות ווידאו",
|
|
49
49
|
"Pin to Conversation": "הצמד/י לשיחה",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
|
+
"Pinned by": " - הוצמד לשיחה",
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "אפשר/י גישה לתמונות ולסרטונים שלך כדי שתוכל/י לשתף אותם.",
|
|
52
52
|
"Please select a channel first": "אנא בחר/י שיחה תחילה",
|
|
53
53
|
"Reconnecting...": "מתחבר מחדש...",
|
|
54
54
|
"Reply": "השב/י",
|
|
55
55
|
"Reply to Message": "השב/י להודעה",
|
|
56
56
|
"Resend": "שלח/י שוב",
|
|
57
57
|
"Search GIFs": "חפש/י GIFs",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "בחר עוד תמונות",
|
|
59
59
|
"Send Anyway": "שלח בכל זאת",
|
|
60
60
|
"Send a message": "שלח/י הודעה",
|
|
61
61
|
"Sending links is not allowed in this conversation": "שליחת קישורים אינה מותרת בשיחה זו",
|
|
@@ -63,17 +63,17 @@
|
|
|
63
63
|
"The message has been reported to a moderator.": "ההודעה דווחה למנהל",
|
|
64
64
|
"Thread Reply": "הגב/י בשרשור",
|
|
65
65
|
"Unblock User": "בטל/י חסימת משתמש",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "משתמש לא ידוע",
|
|
67
67
|
"Unmute User": "בטל/י השתקת משתמש",
|
|
68
68
|
"Unpin from Conversation": "בטל/י הצמדה לשיחה",
|
|
69
69
|
"Unread Messages": "הודעות שטרם נקרו",
|
|
70
70
|
"Video": "וִידֵאוֹ",
|
|
71
71
|
"You": "את/ה",
|
|
72
72
|
"You can't send messages in this channel": "את/ב לא יכול/ה לשלוח הודעות בשיחה זו",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ו-{{ nonSelfUserLength }} משתמש/ים אחר/ים מקלידים",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} מתוך {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} תגובות",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }} תגובות שרשור",
|
|
77
|
+
"{{ user }} is typing": "{{ user }} מקליד/ה",
|
|
78
78
|
"🏙 Attachment...": "🏙 קובץ מצורף..."
|
|
79
79
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 रिप्लाई",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
3
|
+
"1 Thread Reply": "1 धागा उत्तर",
|
|
4
|
+
"Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
|
|
5
|
+
"Allow camera access in device settings": "डिवाइस सेटिंग्स में कैमरा एक्सेस की अनुमति दें",
|
|
6
6
|
"Also send to channel": "चैनल को भी भेजें",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "क्या आप वाकई इस संदेश को स्थायी रूप से हटाना चाहते हैं?",
|
|
8
8
|
"Are you sure?": "क्या आप सुनिश्चित हैं?",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"Copy Message": "संदेश की प्रतिलिपि बनाएँ",
|
|
14
14
|
"Delete": "हटाएं",
|
|
15
15
|
"Delete Message": "मैसेज को डिलीट करे",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "डिवाइस कैमरे का उपयोग फ़ोटो या वीडियो लेने के लिए किया जाता है।",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "क्या आप इस संदेश की एक प्रति आगे की जाँच के लिए किसी मॉडरेटर को भेजना चाहते हैं?",
|
|
18
18
|
"Edit Message": "मैसेज में बदलाव करे",
|
|
19
|
-
"Editing Message": "",
|
|
19
|
+
"Editing Message": "मैसेज बदला जा रहा है",
|
|
20
20
|
"Emoji matching": "इमोजी मिलान",
|
|
21
21
|
"Empty message...": "खाली संदेश...",
|
|
22
22
|
"Error loading": "लोड होने मे त्रुटि",
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"Message deleted": "मैसेज हटा दिया गया",
|
|
40
40
|
"Message flagged": "संदेश को ध्वजांकित किया गया",
|
|
41
41
|
"Mute User": "उपयोगकर्ता को म्यूट करें",
|
|
42
|
-
"Not supported": "",
|
|
42
|
+
"Not supported": "समर्थित नहीं",
|
|
43
43
|
"Nothing yet...": "कोई मैसेज नहीं है...",
|
|
44
44
|
"Ok": "ठीक",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "केवल आपको दिखाई दे रहा है",
|
|
46
|
+
"Open Settings": "सेटिंग्स खोलें",
|
|
47
47
|
"Photo": "तस्वीर",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "तस्वीरें और वीडियों",
|
|
49
49
|
"Pin to Conversation": "बातचीत में पिन करें",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
|
+
"Pinned by": "द्वारा पिन किया गया",
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
|
|
52
52
|
"Please select a channel first": "कृपया पहले एक चैनल चुनें",
|
|
53
53
|
"Reconnecting...": "पुनः कनेक्ट हो...",
|
|
54
54
|
"Reply": "मैसेज को रिप्लाई करे",
|
|
55
55
|
"Reply to Message": "संदेश का जवाब दें",
|
|
56
56
|
"Resend": "पुन: भेजें",
|
|
57
57
|
"Search GIFs": "GIF खोजें",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "अधिक फ़ोटो चुनें",
|
|
59
59
|
"Send Anyway": "फिर भी भेजें",
|
|
60
60
|
"Send a message": "एक संदेश भेजें",
|
|
61
61
|
"Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
|
|
@@ -63,17 +63,17 @@
|
|
|
63
63
|
"The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
|
|
64
64
|
"Thread Reply": "धागा जवाब",
|
|
65
65
|
"Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "अज्ञात उपयोगकर्ता",
|
|
67
67
|
"Unmute User": "उपयोगकर्ता को अनम्यूट करें",
|
|
68
68
|
"Unpin from Conversation": "बातचीत से अनपिन करें",
|
|
69
69
|
"Unread Messages": "अपठित संदेश",
|
|
70
70
|
"Video": "वीडियो",
|
|
71
71
|
"You": "आप",
|
|
72
72
|
"You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
|
|
77
|
+
"{{ user }} is typing": "{{ user }} टाइप कर रहा है",
|
|
78
78
|
"🏙 Attachment...": "🏙 अटैचमेंट..."
|
|
79
79
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Risposta",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
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
6
|
"Also send to channel": "Invia anche al canale",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "Sei sicuro di voler eliminare definitivamente questo messaggio?",
|
|
8
8
|
"Are you sure?": "Sei sicuro?",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"Copy Message": "Copia Messaggio",
|
|
14
14
|
"Delete": "Elimina",
|
|
15
15
|
"Delete Message": "Cancella il Messaggio",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
|
|
17
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
18
|
"Edit Message": "Modifica Messaggio",
|
|
19
|
-
"Editing Message": "",
|
|
19
|
+
"Editing Message": "Modificando il Messaggio",
|
|
20
20
|
"Emoji matching": "Abbinamento emoji",
|
|
21
21
|
"Empty message...": "Message vuoto...",
|
|
22
22
|
"Error loading": "Errore di caricamento",
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"Message deleted": "Messaggio cancellato",
|
|
40
40
|
"Message flagged": "Messaggio contrassegnato",
|
|
41
41
|
"Mute User": "Utente Muto",
|
|
42
|
-
"Not supported": "",
|
|
42
|
+
"Not supported": "non supportato",
|
|
43
43
|
"Nothing yet...": "Ancora niente...",
|
|
44
44
|
"Ok": "Ok",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "Visibile solo a te",
|
|
46
|
+
"Open Settings": "Apri Impostazioni",
|
|
47
47
|
"Photo": "Foto",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "Foto e Video",
|
|
49
49
|
"Pin to Conversation": "Metti in evidenza",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
|
+
"Pinned by": "Fissato da",
|
|
51
|
+
"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.",
|
|
52
52
|
"Please select a channel first": "Seleziona un canale",
|
|
53
53
|
"Reconnecting...": "Ricollegarsi...",
|
|
54
54
|
"Reply": "Rispondi",
|
|
55
55
|
"Reply to Message": "Rispondi al messaggio",
|
|
56
56
|
"Resend": "Invia di nuovo",
|
|
57
57
|
"Search GIFs": "Cerca GIF",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "Seleziona Altre foto",
|
|
59
59
|
"Send Anyway": "Invia comunque",
|
|
60
60
|
"Send a message": "Mandare un messaggio",
|
|
61
61
|
"Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
|
|
@@ -63,17 +63,17 @@
|
|
|
63
63
|
"The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
|
|
64
64
|
"Thread Reply": "Rispondi alla Discussione",
|
|
65
65
|
"Unblock User": "Sblocca utente",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "Utente sconosciuto",
|
|
67
67
|
"Unmute User": "Riattiva utente",
|
|
68
68
|
"Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
|
|
69
69
|
"Unread Messages": "Messaggi non letti",
|
|
70
70
|
"Video": "Video",
|
|
71
71
|
"You": "Tu",
|
|
72
72
|
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
|
|
77
|
+
"{{ user }} is typing": "{{ user }} sta scrivendo",
|
|
78
78
|
"🏙 Attachment...": "🏙 Allegato..."
|
|
79
79
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1件の返信",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
3
|
+
"1 Thread Reply": "1件のスレッド返信",
|
|
4
|
+
"Allow access to your Gallery": "ギャラリーへのアクセスを許可する",
|
|
5
|
+
"Allow camera access in device settings": "デバイス設定でカメラへのアクセスを許可する",
|
|
6
6
|
"Also send to channel": "チャンネルにも送信",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "このメッセージを完全に削除してもよろしいですか?",
|
|
8
8
|
"Are you sure?": "本当によろしいですか?",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"Copy Message": "メッセージのコピー",
|
|
14
14
|
"Delete": "消去",
|
|
15
15
|
"Delete Message": "メッセージを削除",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "デバイスのカメラは写真やビデオの撮影に使用されます。",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "このメッセージのコピーをモデレーターに送信して、さらに調査しますか?",
|
|
18
18
|
"Edit Message": "メッセージを編集",
|
|
19
|
-
"Editing Message": "",
|
|
19
|
+
"Editing Message": "メッセージを編集中",
|
|
20
20
|
"Emoji matching": "絵文字マッチング",
|
|
21
21
|
"Empty message...": "空のメッセージ...",
|
|
22
22
|
"Error loading": "読み込みエラー",
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"Message deleted": "メッセージが削除されました",
|
|
40
40
|
"Message flagged": "メッセージにフラグが付けられました",
|
|
41
41
|
"Mute User": "ユーザーをミュートする",
|
|
42
|
-
"Not supported": "",
|
|
42
|
+
"Not supported": "サポートしていません",
|
|
43
43
|
"Nothing yet...": "まだ何もありません...",
|
|
44
44
|
"Ok": "確認",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "あなただけに見える",
|
|
46
|
+
"Open Settings": "設定を開く",
|
|
47
47
|
"Photo": "写真",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "写真と動画",
|
|
49
49
|
"Pin to Conversation": "会話にピンする",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
|
+
"Pinned by": "ピン留めされユーザー",
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "写真やビデオへのアクセスを有効にして、共有できるようにしてください。",
|
|
52
52
|
"Please select a channel first": "最初にチャンネルを選択してください",
|
|
53
53
|
"Reconnecting...": "再接続中。。。",
|
|
54
54
|
"Reply": "返事",
|
|
55
55
|
"Reply to Message": "メッセージに返信",
|
|
56
56
|
"Resend": "再送",
|
|
57
57
|
"Search GIFs": "GIFの探索",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "さらに写真を選択",
|
|
59
59
|
"Send Anyway": "とにかく送信",
|
|
60
60
|
"Send a message": "メッセージを送る",
|
|
61
61
|
"Sending links is not allowed in this conversation": "この会話ではリンク機能を使用できません。",
|
|
@@ -63,17 +63,17 @@
|
|
|
63
63
|
"The message has been reported to a moderator.": "メッセージはモデレーターに報告されました。",
|
|
64
64
|
"Thread Reply": "スレッドの返信",
|
|
65
65
|
"Unblock User": "ユーザーのブロックを解除する",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "不明なユーザー",
|
|
67
67
|
"Unmute User": "ユーザーのミュートを解除する",
|
|
68
68
|
"Unpin from Conversation": "会話のピンを外す",
|
|
69
69
|
"Unread Messages": "未読メッセージ",
|
|
70
70
|
"Video": "ビデオ",
|
|
71
71
|
"You": "あなた",
|
|
72
72
|
"You can't send messages in this channel": "このチャンネルではメッセージを送信できません",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }}と{{ nonSelfUserLength }}人がタイピングしています",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }}件の返信",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }}件のスレッド返信",
|
|
77
|
+
"{{ user }} is typing": "{{ user }}はタイピング中",
|
|
78
78
|
"🏙 Attachment...": "🏙 アタッチメント..."
|
|
79
79
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "답장 1개",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
3
|
+
"1 Thread Reply": "1개의 스레드 답글",
|
|
4
|
+
"Allow access to your Gallery": "갤러리에 대한 액세스를 허용",
|
|
5
|
+
"Allow camera access in device settings": "기기 설정에서 카메라 액세스를 허용하세요.",
|
|
6
6
|
"Also send to channel": "채널에도 전송",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "이 메시지를 영구적으로 삭제하시겠습니까?",
|
|
8
8
|
"Are you sure?": "확실합니까?",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"Copy Message": "메시지 복사",
|
|
14
14
|
"Delete": "삭제",
|
|
15
15
|
"Delete Message": "메시지 삭제",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "기기 카메라는 사진이나 동영상을 촬영하는 데 사용됩니다.",
|
|
17
17
|
"Do you want to send a copy of this message to a moderator for further investigation?": "이 메시지의 복사본을 운영자에게 보내 추가 조사를합니까?",
|
|
18
18
|
"Edit Message": "메시지 수정",
|
|
19
|
-
"Editing Message": "",
|
|
19
|
+
"Editing Message": "메시지 편집중",
|
|
20
20
|
"Emoji matching": "이모티콘 매칭",
|
|
21
21
|
"Empty message...": "빈 메시지...",
|
|
22
22
|
"Error loading": "로드 오류",
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"Message deleted": "메시지가 삭제되었습니다.",
|
|
40
40
|
"Message flagged": "메시지에 플래그가 지정되었습니다",
|
|
41
41
|
"Mute User": "사용자를 음소거",
|
|
42
|
-
"Not supported": "",
|
|
42
|
+
"Not supported": "지원하지 않습니다",
|
|
43
43
|
"Nothing yet...": "아직 아무것도...",
|
|
44
44
|
"Ok": "확인",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "당신만 볼 수 있습니다",
|
|
46
|
+
"Open Settings": "설정 열기",
|
|
47
47
|
"Photo": "사진",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "사진과 동영상",
|
|
49
49
|
"Pin to Conversation": "대화에 고정합니다",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
|
+
"Pinned by": "고정된 사용자",
|
|
51
|
+
"Please enable access to your photos and videos so you can share them.": "사진 및 비디오에 대한 액세스를 사용하여 공유 할 수 있도록합니다.",
|
|
52
52
|
"Please select a channel first": "먼저 채널을 선택하십시오",
|
|
53
53
|
"Reconnecting...": "다시 연결 중...",
|
|
54
54
|
"Reply": "답장",
|
|
55
55
|
"Reply to Message": "메시지에 답장",
|
|
56
56
|
"Resend": "재전송",
|
|
57
57
|
"Search GIFs": "GIF의 검색",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "추가 사진 선택",
|
|
59
59
|
"Send Anyway": "그래도 보내기",
|
|
60
60
|
"Send a message": "메세지를 보내다",
|
|
61
61
|
"Sending links is not allowed in this conversation": "이 대화에서는 링크 기능을 사용할 수 없습니다",
|
|
@@ -63,17 +63,17 @@
|
|
|
63
63
|
"The message has been reported to a moderator.": "메시지는 운영자에보고되었습니다.",
|
|
64
64
|
"Thread Reply": "스레드 답장",
|
|
65
65
|
"Unblock User": "사용자 차단 해제",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "알 수없는 사용자",
|
|
67
67
|
"Unmute User": "사용자 음소거 해제",
|
|
68
68
|
"Unpin from Conversation": "대화의 핀을 분리합니다",
|
|
69
69
|
"Unread Messages": "읽지 않은 메시지",
|
|
70
70
|
"Video": "동영상",
|
|
71
71
|
"You": "당신",
|
|
72
72
|
"You can't send messages in this channel": "이 채널에서는 메세지를 전송할 수 없습니다",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} 외 {{ nonSelfUserLength }}명이 입력 중입니다",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} 답글",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }} 스레드 답글",
|
|
77
|
+
"{{ user }} is typing": "{{ user }} 타이핑 중",
|
|
78
78
|
"🏙 Attachment...": "🏙 부착..."
|
|
79
79
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Antwoord",
|
|
3
|
-
"1 Thread Reply": "",
|
|
4
|
-
"Allow access to your Gallery": "",
|
|
5
|
-
"Allow camera access in device settings": "",
|
|
3
|
+
"1 Thread Reply": "1 thread antwoord",
|
|
4
|
+
"Allow access to your Gallery": "Geef toegang tot uw galerij",
|
|
5
|
+
"Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
|
|
6
6
|
"Also send to channel": "Stuur ook naar kanaal",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "Weet u zeker dat u dit bericht definitief wilt verwijderen?",
|
|
8
8
|
"Are you sure?": "Weet je het zeker?",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"Copy Message": "Bericht kopiëren",
|
|
14
14
|
"Delete": "Verwijderen",
|
|
15
15
|
"Delete Message": "Verwijder bericht",
|
|
16
|
-
"Device camera is used to take photos or videos.": "",
|
|
16
|
+
"Device camera is used to take photos or videos.": "De camera van het apparaat wordt gebruikt om foto's of video's te maken.",
|
|
17
17
|
"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?",
|
|
18
18
|
"Edit Message": "Pas bericht aan",
|
|
19
|
-
"Editing Message": "",
|
|
19
|
+
"Editing Message": "Bericht aanpassen",
|
|
20
20
|
"Emoji matching": "Emoji-overeenkomsten",
|
|
21
21
|
"Empty message...": "Leeg bericht...",
|
|
22
22
|
"Error loading": "Probleem bij het laden",
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"Message deleted": "Bericht verwijderd",
|
|
40
40
|
"Message flagged": "Bericht gemarkeerd",
|
|
41
41
|
"Mute User": "Gebruiker dempen",
|
|
42
|
-
"Not supported": "",
|
|
42
|
+
"Not supported": "niet ondersteund",
|
|
43
43
|
"Nothing yet...": "Nog niets...",
|
|
44
44
|
"Ok": "Oké",
|
|
45
|
-
"Only visible to you": "",
|
|
46
|
-
"Open Settings": "",
|
|
45
|
+
"Only visible to you": "Alleen zichtbaar voor jou",
|
|
46
|
+
"Open Settings": "Open instellingen",
|
|
47
47
|
"Photo": "Foto",
|
|
48
|
-
"Photos and Videos": "",
|
|
48
|
+
"Photos and Videos": "Foto's en video's",
|
|
49
49
|
"Pin to Conversation": "Vastmaken aan gesprek",
|
|
50
|
-
"Pinned by": "",
|
|
51
|
-
"Please enable access to your photos and videos so you can share them.": "",
|
|
50
|
+
"Pinned by": "Vastgemaakt door",
|
|
51
|
+
"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.",
|
|
52
52
|
"Please select a channel first": "Selecteer eerst een kanaal",
|
|
53
53
|
"Reconnecting...": "Opnieuw Verbinding Maken...",
|
|
54
54
|
"Reply": "Antwoord",
|
|
55
55
|
"Reply to Message": "Beantwoord bericht",
|
|
56
56
|
"Resend": "Opnieuw versturen",
|
|
57
57
|
"Search GIFs": "Zoek GIF's",
|
|
58
|
-
"Select More Photos": "",
|
|
58
|
+
"Select More Photos": "Selecteer Meer foto's",
|
|
59
59
|
"Send Anyway": "Toch verzenden",
|
|
60
60
|
"Send a message": "Stuur een bericht",
|
|
61
61
|
"Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
|
|
@@ -63,17 +63,17 @@
|
|
|
63
63
|
"The message has been reported to a moderator.": "Het bericht is gerapporteerd aan een moderator.",
|
|
64
64
|
"Thread Reply": "Discussie beantwoorden",
|
|
65
65
|
"Unblock User": "Deblokkeer gebruiker",
|
|
66
|
-
"Unknown User": "",
|
|
66
|
+
"Unknown User": "Onbekende gebruiker",
|
|
67
67
|
"Unmute User": "Dempen van gebruiker opheffen",
|
|
68
68
|
"Unpin from Conversation": "Losmaken van gesprek",
|
|
69
69
|
"Unread Messages": "Ongelezen Berichten",
|
|
70
70
|
"Video": "Video",
|
|
71
71
|
"You": "U",
|
|
72
72
|
"You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
74
|
-
"{{ index }} of {{ photoLength }}": "",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
|
|
74
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
|
|
77
|
+
"{{ user }} is typing": "{{ user }} is aan het typen",
|
|
78
78
|
"🏙 Attachment...": "🏙 Bijlage..."
|
|
79
79
|
}
|