stream-chat-react-native-core 5.27.0-beta.10 → 5.27.0-beta.12
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/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/i18n/es.json +22 -22
- package/lib/commonjs/i18n/fr.json +22 -22
- package/lib/commonjs/i18n/he.json +22 -22
- package/lib/commonjs/i18n/hi.json +22 -22
- package/lib/commonjs/i18n/it.json +22 -22
- package/lib/commonjs/i18n/ja.json +22 -22
- package/lib/commonjs/i18n/ko.json +22 -22
- package/lib/commonjs/i18n/nl.json +22 -22
- package/lib/commonjs/i18n/pt-BR.json +22 -22
- package/lib/commonjs/i18n/ru.json +22 -22
- package/lib/commonjs/i18n/tr.json +22 -22
- 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/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/i18n/es.json +22 -22
- package/lib/module/i18n/fr.json +22 -22
- package/lib/module/i18n/he.json +22 -22
- package/lib/module/i18n/hi.json +22 -22
- package/lib/module/i18n/it.json +22 -22
- package/lib/module/i18n/ja.json +22 -22
- package/lib/module/i18n/ko.json +22 -22
- package/lib/module/i18n/nl.json +22 -22
- package/lib/module/i18n/pt-BR.json +22 -22
- package/lib/module/i18n/ru.json +22 -22
- package/lib/module/i18n/tr.json +22 -22
- 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 +22 -22
- package/lib/typescript/i18n/fr.json +22 -22
- package/lib/typescript/i18n/he.json +22 -22
- package/lib/typescript/i18n/hi.json +22 -22
- package/lib/typescript/i18n/it.json +22 -22
- package/lib/typescript/i18n/ja.json +22 -22
- package/lib/typescript/i18n/ko.json +22 -22
- package/lib/typescript/i18n/nl.json +22 -22
- package/lib/typescript/i18n/pt-BR.json +22 -22
- package/lib/typescript/i18n/ru.json +22 -22
- package/lib/typescript/i18n/tr.json +22 -22
- 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/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/i18n/es.json +22 -22
- package/src/i18n/fr.json +22 -22
- package/src/i18n/he.json +22 -22
- package/src/i18n/hi.json +22 -22
- package/src/i18n/it.json +22 -22
- package/src/i18n/ja.json +22 -22
- package/src/i18n/ko.json +22 -22
- package/src/i18n/nl.json +22 -22
- package/src/i18n/pt-BR.json +22 -22
- package/src/i18n/ru.json +22 -22
- package/src/i18n/tr.json +22 -22
- 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,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
2
|
+
"1 Reply": "1 Réponse",
|
|
3
3
|
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
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?": "",
|
|
9
9
|
"Block User": "Bloquer un utilisateur",
|
|
@@ -18,29 +18,29 @@
|
|
|
18
18
|
"Edit Message": "Éditer un message",
|
|
19
19
|
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "",
|
|
21
|
+
"Empty message...": "Message vide...",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "Erreur lors du chargement de la liste de canaux...",
|
|
24
24
|
"Error loading messages for this channel...": "Erreur lors du chargement des messages de ce canal...",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "Erreur lors du chargement, veuillez recharger/rafraîchir",
|
|
26
26
|
"File type not supported": "",
|
|
27
27
|
"Flag": "Signaler",
|
|
28
28
|
"Flag Message": "Signaler le message",
|
|
29
29
|
"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é.",
|
|
30
|
-
"How about sending your first message to a friend?": "",
|
|
30
|
+
"How about sending your first message to a friend?": "Et si vous envoyiez votre premier message à un ami ?",
|
|
31
31
|
"Instant Commands": "",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
34
|
-
"Loading channels...": "",
|
|
35
|
-
"Loading messages...": "",
|
|
36
|
-
"Loading...": "",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
32
|
+
"Let's start chatting!": "Commençons à discuter !",
|
|
33
|
+
"Links are disabled": "Links are disabled",
|
|
34
|
+
"Loading channels...": "Chargement des canaux...",
|
|
35
|
+
"Loading messages...": "Chargement des messages...",
|
|
36
|
+
"Loading...": "Chargement...",
|
|
37
|
+
"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.",
|
|
38
38
|
"Message Reactions": "Réactions aux messages",
|
|
39
39
|
"Message deleted": "Message supprimé",
|
|
40
40
|
"Message flagged": "Message signalé",
|
|
41
41
|
"Mute User": "Utilisateur muet",
|
|
42
42
|
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "",
|
|
43
|
+
"Nothing yet...": "Aucun message...",
|
|
44
44
|
"Ok": "Ok",
|
|
45
45
|
"Only visible to you": "",
|
|
46
46
|
"Open Settings": "",
|
|
@@ -54,26 +54,26 @@
|
|
|
54
54
|
"Reply": "Répondre",
|
|
55
55
|
"Reply to Message": "",
|
|
56
56
|
"Resend": "Renvoyer",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "Rechercher des GIF",
|
|
58
58
|
"Select More Photos": "",
|
|
59
59
|
"Send Anyway": "",
|
|
60
|
-
"Send a message": "",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
60
|
+
"Send a message": "Envoyer un message",
|
|
61
|
+
"Sending links is not allowed in this conversation": "Sending links is not allowed in this conversation",
|
|
62
|
+
"Slow mode ON": "Mode lent activé",
|
|
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
66
|
"Unknown User": "",
|
|
67
67
|
"Unmute User": "Activer le son de Utilisateur",
|
|
68
68
|
"Unpin from Conversation": "Décrocher de la conversation",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "Messages non lus",
|
|
70
70
|
"Video": "Vidéo",
|
|
71
|
-
"You": "",
|
|
71
|
+
"You": "Toi",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} et {{ nonSelfUserLength }} autres sont en train d'écrire",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Réponses",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} est en train d'écrire",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 Pièce jointe..."
|
|
79
79
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
2
|
+
"1 Reply": "תגובה אחת",
|
|
3
3
|
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "האם את/ה בטוח/ה שאת/ה רוצה למחוק את ההודעה הזו לצמיתות?",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "חסום משתמש",
|
|
@@ -18,29 +18,29 @@
|
|
|
18
18
|
"Edit Message": "ערוך הודעה",
|
|
19
19
|
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "",
|
|
21
|
+
"Empty message...": "הודעה ריקה...",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "שגיאה ארעה בטעינת השיחות...",
|
|
24
24
|
"Error loading messages for this channel...": "שגיאה ארעה בטעינת הודעות עבור שיחה זאת...",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "שגיאה ארעה בזמן הטעינה, אנא טען מחדש/רענן",
|
|
26
26
|
"File type not supported": "",
|
|
27
27
|
"Flag": "סמן",
|
|
28
28
|
"Flag Message": "סמן הודעה",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "פעולת הסימון נכשלה בגלל בעיית רשת או שההודעה כבר סומנה.",
|
|
30
|
-
"How about sending your first message to a friend?": "",
|
|
30
|
+
"How about sending your first message to a friend?": "מה דעתך לשלוח את ההודעה הראשונה שלך לחבר?",
|
|
31
31
|
"Instant Commands": "",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
34
|
-
"Loading channels...": "",
|
|
35
|
-
"Loading messages...": "",
|
|
36
|
-
"Loading...": "",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
32
|
+
"Let's start chatting!": "בואו נתחיל לשוחח!",
|
|
33
|
+
"Links are disabled": "הקישורים מבוטלים",
|
|
34
|
+
"Loading channels...": "השיחות בטעינה...",
|
|
35
|
+
"Loading messages...": "ההודעות בטעינה..",
|
|
36
|
+
"Loading...": "טוען...",
|
|
37
|
+
"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",
|
|
38
38
|
"Message Reactions": "תגובות להודעה",
|
|
39
39
|
"Message deleted": "ההודעה נמחקה",
|
|
40
40
|
"Message flagged": "ההודעה סומנה",
|
|
41
41
|
"Mute User": "השתק/י משתמש",
|
|
42
42
|
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "",
|
|
43
|
+
"Nothing yet...": "אינפורמציה תתקבל בהמשך...",
|
|
44
44
|
"Ok": "אוקיי",
|
|
45
45
|
"Only visible to you": "",
|
|
46
46
|
"Open Settings": "",
|
|
@@ -54,26 +54,26 @@
|
|
|
54
54
|
"Reply": "השב/י",
|
|
55
55
|
"Reply to Message": "",
|
|
56
56
|
"Resend": "שלח/י שוב",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "חפש/י GIFs",
|
|
58
58
|
"Select More Photos": "",
|
|
59
59
|
"Send Anyway": "",
|
|
60
|
-
"Send a message": "",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
60
|
+
"Send a message": "שלח/י הודעה",
|
|
61
|
+
"Sending links is not allowed in this conversation": "שליחת קישורים אינה מותרת בשיחה זו",
|
|
62
|
+
"Slow mode ON": "מצב איטי מופעל",
|
|
63
63
|
"The message has been reported to a moderator.": "ההודעה דווחה למנהל",
|
|
64
64
|
"Thread Reply": "הגב/י בשרשור",
|
|
65
65
|
"Unblock User": "בטל/י חסימת משתמש",
|
|
66
66
|
"Unknown User": "",
|
|
67
67
|
"Unmute User": "בטל/י השתקת משתמש",
|
|
68
68
|
"Unpin from Conversation": "בטל/י הצמדה לשיחה",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "הודעות שטרם נקרו",
|
|
70
70
|
"Video": "וִידֵאוֹ",
|
|
71
|
-
"You": "",
|
|
71
|
+
"You": "את/ה",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ו-{{ nonSelfUserLength }} משתמש/ים אחר/ים מקלידים",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }} תגובות",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} מקליד/ה",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 קובץ מצורף..."
|
|
79
79
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
2
|
+
"1 Reply": "1 रिप्लाई",
|
|
3
3
|
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "क्या आप वाकई इस संदेश को स्थायी रूप से हटाना चाहते हैं?",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "उपयोगकर्ता को रोक देना, ब्लॉक यूजर",
|
|
@@ -18,29 +18,29 @@
|
|
|
18
18
|
"Edit Message": "मैसेज में बदलाव करे",
|
|
19
19
|
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "",
|
|
21
|
+
"Empty message...": "खाली संदेश...",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "चैनल सूची लोड करने में त्रुटि...",
|
|
24
24
|
"Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "एरर, रिफ्रेश करे",
|
|
26
26
|
"File type not supported": "",
|
|
27
27
|
"Flag": "झंडा",
|
|
28
28
|
"Flag Message": "झंडा संदेश",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "फ़्लैग कार्रवाई या तो नेटवर्क समस्या के कारण विफल हो गई या संदेश पहले से फ़्लैग किया गया है।",
|
|
30
|
-
"How about sending your first message to a friend?": "",
|
|
30
|
+
"How about sending your first message to a friend?": "किसी मित्र को अपना पहला संदेश भेजने के बारे में क्या ख़याल है?",
|
|
31
31
|
"Instant Commands": "",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
34
|
-
"Loading channels...": "",
|
|
35
|
-
"Loading messages...": "",
|
|
36
|
-
"Loading...": "",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
32
|
+
"Let's start chatting!": "आइए चैट करना शुरू करें!",
|
|
33
|
+
"Links are disabled": "लिंक अक्षम हैं",
|
|
34
|
+
"Loading channels...": "चैनल लोड हो रहे हैं...",
|
|
35
|
+
"Loading messages...": "मेसेजस लोड हो रहे हैं...",
|
|
36
|
+
"Loading...": "लोड हो रहा है...",
|
|
37
|
+
"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}} एमबी से नीचे की फ़ाइल अपलोड करें।",
|
|
38
38
|
"Message Reactions": "संदेश प्रतिक्रियाएँ",
|
|
39
39
|
"Message deleted": "मैसेज हटा दिया गया",
|
|
40
40
|
"Message flagged": "संदेश को ध्वजांकित किया गया",
|
|
41
41
|
"Mute User": "उपयोगकर्ता को म्यूट करें",
|
|
42
42
|
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "",
|
|
43
|
+
"Nothing yet...": "कोई मैसेज नहीं है...",
|
|
44
44
|
"Ok": "ठीक",
|
|
45
45
|
"Only visible to you": "",
|
|
46
46
|
"Open Settings": "",
|
|
@@ -54,26 +54,26 @@
|
|
|
54
54
|
"Reply": "मैसेज को रिप्लाई करे",
|
|
55
55
|
"Reply to Message": "",
|
|
56
56
|
"Resend": "पुन: भेजें",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "GIF खोजें",
|
|
58
58
|
"Select More Photos": "",
|
|
59
59
|
"Send Anyway": "",
|
|
60
|
-
"Send a message": "",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
60
|
+
"Send a message": "एक संदेश भेजें",
|
|
61
|
+
"Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
|
|
62
|
+
"Slow mode ON": "स्लो मोड चालू",
|
|
63
63
|
"The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
|
|
64
64
|
"Thread Reply": "धागा जवाब",
|
|
65
65
|
"Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
|
|
66
66
|
"Unknown User": "",
|
|
67
67
|
"Unmute User": "उपयोगकर्ता को अनम्यूट करें",
|
|
68
68
|
"Unpin from Conversation": "बातचीत से अनपिन करें",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "अपठित संदेश",
|
|
70
70
|
"Video": "वीडियो",
|
|
71
|
-
"You": "",
|
|
71
|
+
"You": "आप",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} टाइप कर रहा है",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 अटैचमेंट..."
|
|
79
79
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
2
|
+
"1 Reply": "1 Risposta",
|
|
3
3
|
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
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?": "",
|
|
9
9
|
"Block User": "Blocca Utente",
|
|
@@ -18,29 +18,29 @@
|
|
|
18
18
|
"Edit Message": "Modifica Messaggio",
|
|
19
19
|
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "",
|
|
21
|
+
"Empty message...": "Message vuoto...",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "Errore durante il caricamento della lista dei canali...",
|
|
24
24
|
"Error loading messages for this channel...": "Errore durante il caricamento dei messaggi per questo canale...",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "Errore durante il caricamento, per favore ricarica la pagina",
|
|
26
26
|
"File type not supported": "",
|
|
27
27
|
"Flag": "Contrassegna",
|
|
28
28
|
"Flag Message": "Contrassegna Messaggio",
|
|
29
29
|
"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.",
|
|
30
|
-
"How about sending your first message to a friend?": "",
|
|
30
|
+
"How about sending your first message to a friend?": "Che ne dici di inviare il tuo primo messaggio ad un amico?",
|
|
31
31
|
"Instant Commands": "",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
34
|
-
"Loading channels...": "",
|
|
35
|
-
"Loading messages...": "",
|
|
36
|
-
"Loading...": "",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
32
|
+
"Let's start chatting!": "Iniziamo a chattare!",
|
|
33
|
+
"Links are disabled": "I link sono disabilitati",
|
|
34
|
+
"Loading channels...": "Caricamento canali in corso...",
|
|
35
|
+
"Loading messages...": "Caricamento messaggi...",
|
|
36
|
+
"Loading...": "Caricamento...",
|
|
37
|
+
"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.",
|
|
38
38
|
"Message Reactions": "Reazioni ai Messaggi",
|
|
39
39
|
"Message deleted": "Messaggio cancellato",
|
|
40
40
|
"Message flagged": "Messaggio contrassegnato",
|
|
41
41
|
"Mute User": "Utente Muto",
|
|
42
42
|
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "",
|
|
43
|
+
"Nothing yet...": "Ancora niente...",
|
|
44
44
|
"Ok": "Ok",
|
|
45
45
|
"Only visible to you": "",
|
|
46
46
|
"Open Settings": "",
|
|
@@ -54,26 +54,26 @@
|
|
|
54
54
|
"Reply": "Rispondi",
|
|
55
55
|
"Reply to Message": "",
|
|
56
56
|
"Resend": "Invia di nuovo",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "Cerca GIF",
|
|
58
58
|
"Select More Photos": "",
|
|
59
59
|
"Send Anyway": "",
|
|
60
|
-
"Send a message": "",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
60
|
+
"Send a message": "Mandare un messaggio",
|
|
61
|
+
"Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
|
|
62
|
+
"Slow mode ON": "Slowmode attiva",
|
|
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
66
|
"Unknown User": "",
|
|
67
67
|
"Unmute User": "Riattiva utente",
|
|
68
68
|
"Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "Messaggi non letti",
|
|
70
70
|
"Video": "Video",
|
|
71
|
-
"You": "",
|
|
71
|
+
"You": "Tu",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} sta scrivendo",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 Allegato..."
|
|
79
79
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
2
|
+
"1 Reply": "1件の返信",
|
|
3
3
|
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "このメッセージを完全に削除してもよろしいですか?",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "ユーザをブロックする",
|
|
@@ -18,29 +18,29 @@
|
|
|
18
18
|
"Edit Message": "メッセージを編集",
|
|
19
19
|
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "",
|
|
21
|
+
"Empty message...": "空のメッセージ...",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "チャネルリストの読み込み中にエラーが発生しました。。。",
|
|
24
24
|
"Error loading messages for this channel...": "このチャネルのメッセージの読み込み中にエラーが発生しました。。。",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "ロード中にエラーが発生しました。更新してください",
|
|
26
26
|
"File type not supported": "",
|
|
27
27
|
"Flag": "フラグ",
|
|
28
28
|
"Flag Message": "メッセージをフラグする",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "ネットワーク接続に問題があるか、すでにフラグが設定されているため、フラグが失敗しました。",
|
|
30
|
-
"How about sending your first message to a friend?": "",
|
|
30
|
+
"How about sending your first message to a friend?": "初めてのメッセージを友達に送ってみてはいかがでしょうか?",
|
|
31
31
|
"Instant Commands": "",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
34
|
-
"Loading channels...": "",
|
|
35
|
-
"Loading messages...": "",
|
|
36
|
-
"Loading...": "",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
32
|
+
"Let's start chatting!": "チャットを始めましょう!",
|
|
33
|
+
"Links are disabled": "リンク機能が無効になっています",
|
|
34
|
+
"Loading channels...": "チャネルを読み込み中。。。",
|
|
35
|
+
"Loading messages...": "メッセージを読み込み中。。。",
|
|
36
|
+
"Loading...": "読み込み中。。。",
|
|
37
|
+
"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 以下のファイルをアップロードしてください",
|
|
38
38
|
"Message Reactions": "メッセージのリアクション",
|
|
39
39
|
"Message deleted": "メッセージが削除されました",
|
|
40
40
|
"Message flagged": "メッセージにフラグが付けられました",
|
|
41
41
|
"Mute User": "ユーザーをミュートする",
|
|
42
42
|
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "",
|
|
43
|
+
"Nothing yet...": "まだ何もありません...",
|
|
44
44
|
"Ok": "確認",
|
|
45
45
|
"Only visible to you": "",
|
|
46
46
|
"Open Settings": "",
|
|
@@ -54,26 +54,26 @@
|
|
|
54
54
|
"Reply": "返事",
|
|
55
55
|
"Reply to Message": "",
|
|
56
56
|
"Resend": "再送",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "GIFの探索",
|
|
58
58
|
"Select More Photos": "",
|
|
59
59
|
"Send Anyway": "",
|
|
60
|
-
"Send a message": "",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
60
|
+
"Send a message": "メッセージを送る",
|
|
61
|
+
"Sending links is not allowed in this conversation": "この会話ではリンク機能を使用できません。",
|
|
62
|
+
"Slow mode ON": "スローモードオン",
|
|
63
63
|
"The message has been reported to a moderator.": "メッセージはモデレーターに報告されました。",
|
|
64
64
|
"Thread Reply": "スレッドの返信",
|
|
65
65
|
"Unblock User": "ユーザーのブロックを解除する",
|
|
66
66
|
"Unknown User": "",
|
|
67
67
|
"Unmute User": "ユーザーのミュートを解除する",
|
|
68
68
|
"Unpin from Conversation": "会話のピンを外す",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "未読メッセージ",
|
|
70
70
|
"Video": "ビデオ",
|
|
71
|
-
"You": "",
|
|
71
|
+
"You": "あなた",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }}と{{ nonSelfUserLength }}人がタイピングしています",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }}件の返信",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "",
|
|
77
77
|
"{{ user }} is typing": "{{ user }}はタイピング中",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 アタッチメント..."
|
|
79
79
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
2
|
+
"1 Reply": "답장 1개",
|
|
3
3
|
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
7
7
|
"Are you sure you want to permanently delete this message?": "이 메시지를 영구적으로 삭제하시겠습니까?",
|
|
8
8
|
"Are you sure?": "",
|
|
9
9
|
"Block User": "사용자 차단",
|
|
@@ -18,29 +18,29 @@
|
|
|
18
18
|
"Edit Message": "메시지 수정",
|
|
19
19
|
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "",
|
|
21
|
+
"Empty message...": "빈 메시지...",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "채널리스트 을로드하는 동안 오류가 발생했습니다...",
|
|
24
24
|
"Error loading messages for this channel...": "이 채널의 메시지를로드하는 동안 오류가 발생했습니다...",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "로드하는 동안 오류가 발생했습니다. 다시로드하십시오",
|
|
26
26
|
"File type not supported": "",
|
|
27
27
|
"Flag": "플래그",
|
|
28
28
|
"Flag Message": "메시지를 플래그하기",
|
|
29
29
|
"Flag action failed either due to a network issue or the message is already flagged": "네트워크 연결에 문제가 있거나 이미 플래그 되어서 플래그에 실패했습니다.",
|
|
30
|
-
"How about sending your first message to a friend?": "",
|
|
30
|
+
"How about sending your first message to a friend?": "친구에게 첫 번째 메시지를 보내는 것은 어떻습니까?",
|
|
31
31
|
"Instant Commands": "",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
34
|
-
"Loading channels...": "",
|
|
35
|
-
"Loading messages...": "",
|
|
36
|
-
"Loading...": "",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
32
|
+
"Let's start chatting!": "채팅을 시작합시다!",
|
|
33
|
+
"Links are disabled": "링크 기능이 비활성화되었습니다",
|
|
34
|
+
"Loading channels...": "채널을 로딩 중...",
|
|
35
|
+
"Loading messages...": "메시지를 로딩 중...",
|
|
36
|
+
"Loading...": "로딩 중...",
|
|
37
|
+
"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 미만의 파일을 업로드하세요.",
|
|
38
38
|
"Message Reactions": "메시지의 리액션",
|
|
39
39
|
"Message deleted": "메시지가 삭제되었습니다.",
|
|
40
40
|
"Message flagged": "메시지에 플래그가 지정되었습니다",
|
|
41
41
|
"Mute User": "사용자를 음소거",
|
|
42
42
|
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "",
|
|
43
|
+
"Nothing yet...": "아직 아무것도...",
|
|
44
44
|
"Ok": "확인",
|
|
45
45
|
"Only visible to you": "",
|
|
46
46
|
"Open Settings": "",
|
|
@@ -54,26 +54,26 @@
|
|
|
54
54
|
"Reply": "답장",
|
|
55
55
|
"Reply to Message": "",
|
|
56
56
|
"Resend": "재전송",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "GIF의 검색",
|
|
58
58
|
"Select More Photos": "",
|
|
59
59
|
"Send Anyway": "",
|
|
60
|
-
"Send a message": "",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
60
|
+
"Send a message": "메세지를 보내다",
|
|
61
|
+
"Sending links is not allowed in this conversation": "이 대화에서는 링크 기능을 사용할 수 없습니다",
|
|
62
|
+
"Slow mode ON": "슬로모드 켜짐",
|
|
63
63
|
"The message has been reported to a moderator.": "메시지는 운영자에보고되었습니다.",
|
|
64
64
|
"Thread Reply": "스레드 답장",
|
|
65
65
|
"Unblock User": "사용자 차단 해제",
|
|
66
66
|
"Unknown User": "",
|
|
67
67
|
"Unmute User": "사용자 음소거 해제",
|
|
68
68
|
"Unpin from Conversation": "대화의 핀을 분리합니다",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "읽지 않은 메시지",
|
|
70
70
|
"Video": "동영상",
|
|
71
|
-
"You": "",
|
|
71
|
+
"You": "당신",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} 외 {{ nonSelfUserLength }}명이 입력 중입니다",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }} 답글",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} 타이핑 중",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 부착..."
|
|
79
79
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"1 Reply": "",
|
|
2
|
+
"1 Reply": "1 Antwoord",
|
|
3
3
|
"1 Thread Reply": "",
|
|
4
4
|
"Allow access to your Gallery": "",
|
|
5
5
|
"Allow camera access in device settings": "",
|
|
6
|
-
"Also send to channel": "
|
|
6
|
+
"Also send to channel": "",
|
|
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?": "",
|
|
9
9
|
"Block User": "Blokkeer Gebruiker",
|
|
@@ -18,29 +18,29 @@
|
|
|
18
18
|
"Edit Message": "Pas bericht aan",
|
|
19
19
|
"Editing Message": "",
|
|
20
20
|
"Emoji matching": "",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "
|
|
23
|
-
"Error loading channel list...": "",
|
|
21
|
+
"Empty message...": "Leeg bericht...",
|
|
22
|
+
"Error loading": "",
|
|
23
|
+
"Error loading channel list...": "Probleem bij het laden van de kanalen...",
|
|
24
24
|
"Error loading messages for this channel...": "Probleem bij het laden van de berichten in dit kanaal...",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
25
|
+
"Error while loading, please reload/refresh": "Probleem bij het laden, probeer opnieuw",
|
|
26
26
|
"File type not supported": "",
|
|
27
27
|
"Flag": "Markeer",
|
|
28
28
|
"Flag Message": "Markeer bericht",
|
|
29
29
|
"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",
|
|
30
|
-
"How about sending your first message to a friend?": "",
|
|
30
|
+
"How about sending your first message to a friend?": "Wat dacht je ervan om je eerste bericht naar een vriend te sturen?",
|
|
31
31
|
"Instant Commands": "",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
34
|
-
"Loading channels...": "",
|
|
35
|
-
"Loading messages...": "",
|
|
36
|
-
"Loading...": "",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
32
|
+
"Let's start chatting!": "Laten we beginnen met chatten!",
|
|
33
|
+
"Links are disabled": "Het versturen van links staat uit",
|
|
34
|
+
"Loading channels...": "Kanalen aan het laden...",
|
|
35
|
+
"Loading messages...": "Berichten aan het laden...",
|
|
36
|
+
"Loading...": "Aan het laden...",
|
|
37
|
+
"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.",
|
|
38
38
|
"Message Reactions": "Bericht Reacties",
|
|
39
39
|
"Message deleted": "Bericht verwijderd",
|
|
40
40
|
"Message flagged": "Bericht gemarkeerd",
|
|
41
41
|
"Mute User": "Gebruiker dempen",
|
|
42
42
|
"Not supported": "",
|
|
43
|
-
"Nothing yet...": "",
|
|
43
|
+
"Nothing yet...": "Nog niets...",
|
|
44
44
|
"Ok": "Oké",
|
|
45
45
|
"Only visible to you": "",
|
|
46
46
|
"Open Settings": "",
|
|
@@ -54,26 +54,26 @@
|
|
|
54
54
|
"Reply": "Antwoord",
|
|
55
55
|
"Reply to Message": "",
|
|
56
56
|
"Resend": "Opnieuw versturen",
|
|
57
|
-
"Search GIFs": "",
|
|
57
|
+
"Search GIFs": "Zoek GIF's",
|
|
58
58
|
"Select More Photos": "",
|
|
59
59
|
"Send Anyway": "",
|
|
60
|
-
"Send a message": "",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
62
|
-
"Slow mode ON": "",
|
|
60
|
+
"Send a message": "Stuur een bericht",
|
|
61
|
+
"Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
|
|
62
|
+
"Slow mode ON": "Langzame modus aan",
|
|
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
66
|
"Unknown User": "",
|
|
67
67
|
"Unmute User": "Dempen van gebruiker opheffen",
|
|
68
68
|
"Unpin from Conversation": "Losmaken van gesprek",
|
|
69
|
-
"Unread Messages": "",
|
|
69
|
+
"Unread Messages": "Ongelezen Berichten",
|
|
70
70
|
"Video": "Video",
|
|
71
|
-
"You": "",
|
|
71
|
+
"You": "U",
|
|
72
72
|
"You can't send messages in this channel": "",
|
|
73
73
|
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "",
|
|
75
|
-
"{{ replyCount }} Replies": "",
|
|
75
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
|
|
76
76
|
"{{ replyCount }} Thread Replies": "",
|
|
77
77
|
"{{ user }} is typing": "{{ user }} is aan het typen",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
78
|
+
"🏙 Attachment...": "🏙 Bijlage..."
|
|
79
79
|
}
|