stream-chat-react-native-core 5.24.0-beta.5 → 5.24.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/Attachment.js +22 -14
- package/lib/commonjs/components/Attachment/Attachment.js.map +1 -1
- package/lib/commonjs/components/Attachment/Card.js +11 -4
- package/lib/commonjs/components/Attachment/Card.js.map +1 -1
- package/lib/commonjs/components/Attachment/Gallery.js +24 -16
- package/lib/commonjs/components/Attachment/Gallery.js.map +1 -1
- package/lib/commonjs/components/Message/Message.js +14 -7
- package/lib/commonjs/components/Message/Message.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +22 -16
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js +14 -8
- package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageTextContainer.js +10 -4
- package/lib/commonjs/components/Message/MessageSimple/MessageTextContainer.js.map +1 -1
- package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js +6 -1
- package/lib/commonjs/components/Message/hooks/useCreateMessageContext.js.map +1 -1
- package/lib/commonjs/components/MessageOverlay/MessageOverlay.js +9 -3
- package/lib/commonjs/components/MessageOverlay/MessageOverlay.js.map +1 -1
- package/lib/commonjs/contexts/messageContext/MessageContext.js +2 -2
- package/lib/commonjs/contexts/messageContext/MessageContext.js.map +1 -1
- package/lib/commonjs/i18n/en.json +1 -1
- package/lib/commonjs/i18n/fr.json +54 -54
- package/lib/commonjs/i18n/hi.json +54 -54
- package/lib/commonjs/i18n/it.json +54 -54
- package/lib/commonjs/i18n/nl.json +54 -54
- package/lib/commonjs/i18n/ru.json +54 -54
- package/lib/commonjs/i18n/tr.json +54 -54
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Attachment/Attachment.js +22 -14
- package/lib/module/components/Attachment/Attachment.js.map +1 -1
- package/lib/module/components/Attachment/Card.js +11 -4
- package/lib/module/components/Attachment/Card.js.map +1 -1
- package/lib/module/components/Attachment/Gallery.js +24 -16
- package/lib/module/components/Attachment/Gallery.js.map +1 -1
- package/lib/module/components/Message/Message.js +14 -7
- package/lib/module/components/Message/Message.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageContent.js +22 -16
- package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageSimple.js +14 -8
- package/lib/module/components/Message/MessageSimple/MessageSimple.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageTextContainer.js +10 -4
- package/lib/module/components/Message/MessageSimple/MessageTextContainer.js.map +1 -1
- package/lib/module/components/Message/hooks/useCreateMessageContext.js +6 -1
- package/lib/module/components/Message/hooks/useCreateMessageContext.js.map +1 -1
- package/lib/module/components/MessageOverlay/MessageOverlay.js +9 -3
- package/lib/module/components/MessageOverlay/MessageOverlay.js.map +1 -1
- package/lib/module/contexts/messageContext/MessageContext.js +2 -2
- package/lib/module/contexts/messageContext/MessageContext.js.map +1 -1
- package/lib/module/i18n/en.json +1 -1
- package/lib/module/i18n/fr.json +54 -54
- package/lib/module/i18n/hi.json +54 -54
- package/lib/module/i18n/it.json +54 -54
- package/lib/module/i18n/nl.json +54 -54
- package/lib/module/i18n/ru.json +54 -54
- package/lib/module/i18n/tr.json +54 -54
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Attachment/Attachment.d.ts +2 -2
- package/lib/typescript/components/Attachment/Card.d.ts +2 -2
- package/lib/typescript/components/Attachment/Gallery.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageContent.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageTextContainer.d.ts +1 -1
- package/lib/typescript/components/Message/hooks/useCreateMessageContext.d.ts +1 -1
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts +8 -2
- package/lib/typescript/i18n/en.json +1 -1
- package/lib/typescript/i18n/fr.json +54 -54
- package/lib/typescript/i18n/hi.json +54 -54
- package/lib/typescript/i18n/it.json +54 -54
- package/lib/typescript/i18n/nl.json +54 -54
- package/lib/typescript/i18n/ru.json +54 -54
- package/lib/typescript/i18n/tr.json +54 -54
- package/package.json +1 -1
- package/src/components/Attachment/Attachment.tsx +16 -2
- package/src/components/Attachment/Card.tsx +22 -4
- package/src/components/Attachment/Gallery.tsx +11 -0
- package/src/components/Message/Message.tsx +9 -0
- package/src/components/Message/MessageSimple/MessageContent.tsx +9 -0
- package/src/components/Message/MessageSimple/MessageSimple.tsx +9 -0
- package/src/components/Message/MessageSimple/MessageTextContainer.tsx +12 -2
- package/src/components/Message/hooks/useCreateMessageContext.ts +4 -0
- package/src/components/MessageOverlay/MessageOverlay.tsx +8 -0
- package/src/contexts/messageContext/MessageContext.tsx +7 -1
- package/src/i18n/en.json +1 -1
- package/src/i18n/fr.json +54 -54
- package/src/i18n/hi.json +54 -54
- package/src/i18n/it.json +54 -54
- package/src/i18n/nl.json +54 -54
- package/src/i18n/ru.json +54 -54
- package/src/i18n/tr.json +54 -54
- package/src/version.json +1 -1
package/lib/module/i18n/hi.json
CHANGED
|
@@ -1,79 +1,79 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 रिप्लाई",
|
|
3
|
-
"1 Thread Reply": "",
|
|
3
|
+
"1 Thread Reply": "1 धागा उत्तर",
|
|
4
4
|
"Allow access to your Gallery": "अपनी गैलरी तक पहुँचने की अनुमति दें",
|
|
5
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": "",
|
|
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
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": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "क्या आप इस संदेश की एक प्रति आगे की जाँच के लिए किसी मॉडरेटर को भेजना चाहते हैं?",
|
|
18
|
+
"Edit Message": "मैसेज में बदलाव करे",
|
|
19
19
|
"Editing Message": "मैसेज बदला जा रहा है",
|
|
20
20
|
"Emoji matching": "इमोजी मिलान",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "",
|
|
27
|
-
"Flag": "",
|
|
28
|
-
"Flag Message": "",
|
|
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?": "",
|
|
21
|
+
"Empty message...": "खाली संदेश...",
|
|
22
|
+
"Error loading": "लोड होने मे त्रुटि",
|
|
23
|
+
"Error loading channel list...": "चैनल सूची लोड करने में त्रुटि...",
|
|
24
|
+
"Error loading messages for this channel...": "इस चैनल के लिए मेसेजेस लोड करने में त्रुटि हुई...",
|
|
25
|
+
"Error while loading, please reload/refresh": "एरर, रिफ्रेश करे",
|
|
26
|
+
"File type not supported": "फ़ाइल प्रकार समर्थित नहीं है",
|
|
27
|
+
"Flag": "झंडा",
|
|
28
|
+
"Flag Message": "झंडा संदेश",
|
|
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?": "किसी मित्र को अपना पहला संदेश भेजने के बारे में क्या ख़याल है?",
|
|
31
31
|
"Instant Commands": "त्वरित कमांड",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
32
|
+
"Let's start chatting!": "आइए चैट करना शुरू करें!",
|
|
33
|
+
"Links are disabled": "लिंक अक्षम हैं",
|
|
34
34
|
"Loading channels...": "चैनल लोड हो रहे हैं...",
|
|
35
35
|
"Loading messages...": "मेसेजस लोड हो रहे हैं...",
|
|
36
36
|
"Loading...": "लोड हो रहा है...",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
-
"Message Reactions": "",
|
|
39
|
-
"Message deleted": "",
|
|
40
|
-
"Message flagged": "",
|
|
41
|
-
"Mute User": "",
|
|
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
|
+
"Message Reactions": "संदेश प्रतिक्रियाएँ",
|
|
39
|
+
"Message deleted": "मैसेज हटा दिया गया",
|
|
40
|
+
"Message flagged": "संदेश को ध्वजांकित किया गया",
|
|
41
|
+
"Mute User": "उपयोगकर्ता को म्यूट करें",
|
|
42
42
|
"Not supported": "समर्थित नहीं",
|
|
43
|
-
"Nothing yet...": "",
|
|
44
|
-
"Ok": "",
|
|
45
|
-
"Only visible to you": "",
|
|
43
|
+
"Nothing yet...": "कोई मैसेज नहीं है...",
|
|
44
|
+
"Ok": "ठीक",
|
|
45
|
+
"Only visible to you": "केवल आपको दिखाई दे रहा है",
|
|
46
46
|
"Open Settings": "सेटिंग्स खोलें",
|
|
47
|
-
"Photo": "",
|
|
47
|
+
"Photo": "तस्वीर",
|
|
48
48
|
"Photos and Videos": "तस्वीरें और वीडियों",
|
|
49
|
-
"Pin to Conversation": "",
|
|
50
|
-
"Pinned by": "",
|
|
49
|
+
"Pin to Conversation": "बातचीत में पिन करें",
|
|
50
|
+
"Pinned by": "द्वारा पिन किया गया",
|
|
51
51
|
"Please enable access to your photos and videos so you can share them.": "कृपया अपनी फ़ोटो और वीडियो तक पहुंच सक्षम करें ताकि आप उन्हें साझा कर सकें।",
|
|
52
52
|
"Please select a channel first": "कृपया पहले एक चैनल चुनें",
|
|
53
|
-
"Reconnecting...": "",
|
|
54
|
-
"Reply": "",
|
|
53
|
+
"Reconnecting...": "पुनः कनेक्ट हो...",
|
|
54
|
+
"Reply": "मैसेज को रिप्लाई करे",
|
|
55
55
|
"Reply to Message": "संदेश का जवाब दें",
|
|
56
|
-
"Resend": "",
|
|
56
|
+
"Resend": "पुन: भेजें",
|
|
57
57
|
"Search GIFs": "GIF खोजें",
|
|
58
58
|
"Select More Photos": "अधिक फ़ोटो चुनें",
|
|
59
|
-
"Send Anyway": "",
|
|
59
|
+
"Send Anyway": "फिर भी भेजें",
|
|
60
60
|
"Send a message": "एक संदेश भेजें",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "इस बातचीत में लिंक भेजने की अनुमति नहीं है",
|
|
62
62
|
"Slow mode ON": "स्लो मोड चालू",
|
|
63
|
-
"The message has been reported to a moderator.": "",
|
|
64
|
-
"Thread Reply": "",
|
|
65
|
-
"Unblock User": "",
|
|
63
|
+
"The message has been reported to a moderator.": "संदेश एक मॉडरेटर को सूचित किया गया है।",
|
|
64
|
+
"Thread Reply": "धागा जवाब",
|
|
65
|
+
"Unblock User": "उपयोगकर्ता को अनब्लॉक करें",
|
|
66
66
|
"Unknown User": "अज्ञात उपयोगकर्ता",
|
|
67
|
-
"Unmute User": "",
|
|
68
|
-
"Unpin from Conversation": "",
|
|
69
|
-
"Unread Messages": "",
|
|
70
|
-
"Video": "",
|
|
71
|
-
"You": "",
|
|
72
|
-
"You can't send messages in this channel": "",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
67
|
+
"Unmute User": "उपयोगकर्ता को अनम्यूट करें",
|
|
68
|
+
"Unpin from Conversation": "बातचीत से अनपिन करें",
|
|
69
|
+
"Unread Messages": "अपठित संदेश",
|
|
70
|
+
"Video": "वीडियो",
|
|
71
|
+
"You": "आप",
|
|
72
|
+
"You can't send messages in this channel": "आप इस चैनल में संदेश नहीं भेज सकते",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} और {{ nonSelfUserLength }} अधिक टाइप कर रहे हैं",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} रिप्लाई",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }}} थ्रेड उत्तर",
|
|
77
|
+
"{{ user }} is typing": "{{ user }} टाइप कर रहा है",
|
|
78
|
+
"🏙 Attachment...": "🏙 अटैचमेंट..."
|
|
79
79
|
}
|
package/lib/module/i18n/it.json
CHANGED
|
@@ -1,79 +1,79 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Risposta",
|
|
3
|
-
"1 Thread Reply": "",
|
|
3
|
+
"1 Thread Reply": "1 Risposta alla Discussione",
|
|
4
4
|
"Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
|
|
5
5
|
"Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
|
|
6
|
-
"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": "",
|
|
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
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?": "",
|
|
18
|
-
"Edit Message": "",
|
|
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",
|
|
19
19
|
"Editing Message": "Modificando il Messaggio",
|
|
20
20
|
"Emoji matching": "Abbinamento emoji",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "",
|
|
27
|
-
"Flag": "",
|
|
28
|
-
"Flag Message": "",
|
|
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?": "",
|
|
21
|
+
"Empty message...": "Message vuoto...",
|
|
22
|
+
"Error loading": "Errore di caricamento",
|
|
23
|
+
"Error loading channel list...": "Errore durante il caricamento della lista dei canali...",
|
|
24
|
+
"Error loading messages for this channel...": "Errore durante il caricamento dei messaggi per questo canale...",
|
|
25
|
+
"Error while loading, please reload/refresh": "Errore durante il caricamento, per favore ricarica la pagina",
|
|
26
|
+
"File type not supported": "Tipo di file non supportato",
|
|
27
|
+
"Flag": "Contrassegna",
|
|
28
|
+
"Flag Message": "Contrassegna Messaggio",
|
|
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?": "Che ne dici di inviare il tuo primo messaggio ad un amico?",
|
|
31
31
|
"Instant Commands": "Comandi Istantanei",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
32
|
+
"Let's start chatting!": "Iniziamo a chattare!",
|
|
33
|
+
"Links are disabled": "I link sono disabilitati",
|
|
34
34
|
"Loading channels...": "Caricamento canali in corso...",
|
|
35
35
|
"Loading messages...": "Caricamento messaggi...",
|
|
36
36
|
"Loading...": "Caricamento...",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
-
"Message Reactions": "",
|
|
39
|
-
"Message deleted": "",
|
|
40
|
-
"Message flagged": "",
|
|
41
|
-
"Mute User": "",
|
|
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
|
+
"Message Reactions": "Reazioni ai Messaggi",
|
|
39
|
+
"Message deleted": "Messaggio cancellato",
|
|
40
|
+
"Message flagged": "Messaggio contrassegnato",
|
|
41
|
+
"Mute User": "Utente Muto",
|
|
42
42
|
"Not supported": "non supportato",
|
|
43
|
-
"Nothing yet...": "",
|
|
44
|
-
"Ok": "",
|
|
45
|
-
"Only visible to you": "",
|
|
43
|
+
"Nothing yet...": "Ancora niente...",
|
|
44
|
+
"Ok": "Ok",
|
|
45
|
+
"Only visible to you": "Visibile solo a te",
|
|
46
46
|
"Open Settings": "Apri Impostazioni",
|
|
47
|
-
"Photo": "",
|
|
47
|
+
"Photo": "Foto",
|
|
48
48
|
"Photos and Videos": "Foto e Video",
|
|
49
|
-
"Pin to Conversation": "",
|
|
50
|
-
"Pinned by": "",
|
|
49
|
+
"Pin to Conversation": "Metti in evidenza",
|
|
50
|
+
"Pinned by": "Fissato da",
|
|
51
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
|
-
"Reconnecting...": "",
|
|
54
|
-
"Reply": "",
|
|
53
|
+
"Reconnecting...": "Ricollegarsi...",
|
|
54
|
+
"Reply": "Rispondi",
|
|
55
55
|
"Reply to Message": "Rispondi al messaggio",
|
|
56
|
-
"Resend": "",
|
|
56
|
+
"Resend": "Invia di nuovo",
|
|
57
57
|
"Search GIFs": "Cerca GIF",
|
|
58
58
|
"Select More Photos": "Seleziona Altre foto",
|
|
59
|
-
"Send Anyway": "",
|
|
59
|
+
"Send Anyway": "Invia comunque",
|
|
60
60
|
"Send a message": "Mandare un messaggio",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
|
|
62
62
|
"Slow mode ON": "Slowmode attiva",
|
|
63
|
-
"The message has been reported to a moderator.": "",
|
|
64
|
-
"Thread Reply": "",
|
|
65
|
-
"Unblock User": "",
|
|
63
|
+
"The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
|
|
64
|
+
"Thread Reply": "Rispondi alla Discussione",
|
|
65
|
+
"Unblock User": "Sblocca utente",
|
|
66
66
|
"Unknown User": "Utente sconosciuto",
|
|
67
|
-
"Unmute User": "",
|
|
68
|
-
"Unpin from Conversation": "",
|
|
69
|
-
"Unread Messages": "",
|
|
70
|
-
"Video": "",
|
|
71
|
-
"You": "",
|
|
72
|
-
"You can't send messages in this channel": "",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
67
|
+
"Unmute User": "Riattiva utente",
|
|
68
|
+
"Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
|
|
69
|
+
"Unread Messages": "Messaggi non letti",
|
|
70
|
+
"Video": "Video",
|
|
71
|
+
"You": "Tu",
|
|
72
|
+
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
|
|
77
|
+
"{{ user }} is typing": "{{ user }} sta scrivendo",
|
|
78
|
+
"🏙 Attachment...": "🏙 Allegato..."
|
|
79
79
|
}
|
package/lib/module/i18n/nl.json
CHANGED
|
@@ -1,79 +1,79 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Antwoord",
|
|
3
|
-
"1 Thread Reply": "",
|
|
3
|
+
"1 Thread Reply": "1 thread antwoord",
|
|
4
4
|
"Allow access to your Gallery": "Geef toegang tot uw galerij",
|
|
5
5
|
"Allow camera access in device settings": "Sta cameratoegang toe in de apparaatinstellingen",
|
|
6
|
-
"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": "",
|
|
6
|
+
"Also send to channel": "Stuur ook naar kanaal",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "Weet u zeker dat u dit bericht definitief wilt verwijderen?",
|
|
8
|
+
"Are you sure?": "Weet je het zeker?",
|
|
9
|
+
"Block User": "Blokkeer Gebruiker",
|
|
10
|
+
"Cancel": "Annuleer",
|
|
11
|
+
"Cannot Flag Message": "Kan bericht niet rapporteren",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Denk na over hoe jouw opmerking anderen zou kunnen laten voelen en zorg ervoor dat je onze Community-richtlijnen volgt",
|
|
13
|
+
"Copy Message": "Bericht kopiëren",
|
|
14
|
+
"Delete": "Verwijderen",
|
|
15
|
+
"Delete Message": "Verwijder bericht",
|
|
16
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
|
-
"Do you want to send a copy of this message to a moderator for further investigation?": "",
|
|
18
|
-
"Edit Message": "",
|
|
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
|
+
"Edit Message": "Pas bericht aan",
|
|
19
19
|
"Editing Message": "Bericht aanpassen",
|
|
20
20
|
"Emoji matching": "Emoji-overeenkomsten",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "",
|
|
27
|
-
"Flag": "",
|
|
28
|
-
"Flag Message": "",
|
|
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?": "",
|
|
21
|
+
"Empty message...": "Leeg bericht...",
|
|
22
|
+
"Error loading": "Probleem bij het laden",
|
|
23
|
+
"Error loading channel list...": "Probleem bij het laden van de kanalen...",
|
|
24
|
+
"Error loading messages for this channel...": "Probleem bij het laden van de berichten in dit kanaal...",
|
|
25
|
+
"Error while loading, please reload/refresh": "Probleem bij het laden, probeer opnieuw",
|
|
26
|
+
"File type not supported": "Bestandstype niet ondersteund",
|
|
27
|
+
"Flag": "Markeer",
|
|
28
|
+
"Flag Message": "Markeer bericht",
|
|
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?": "Wat dacht je ervan om je eerste bericht naar een vriend te sturen?",
|
|
31
31
|
"Instant Commands": "Directe Opdrachten",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
32
|
+
"Let's start chatting!": "Laten we beginnen met chatten!",
|
|
33
|
+
"Links are disabled": "Het versturen van links staat uit",
|
|
34
34
|
"Loading channels...": "Kanalen aan het laden...",
|
|
35
35
|
"Loading messages...": "Berichten aan het laden...",
|
|
36
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.": "",
|
|
38
|
-
"Message Reactions": "",
|
|
39
|
-
"Message deleted": "",
|
|
40
|
-
"Message flagged": "",
|
|
41
|
-
"Mute User": "",
|
|
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
|
+
"Message Reactions": "Bericht Reacties",
|
|
39
|
+
"Message deleted": "Bericht verwijderd",
|
|
40
|
+
"Message flagged": "Bericht gemarkeerd",
|
|
41
|
+
"Mute User": "Gebruiker dempen",
|
|
42
42
|
"Not supported": "niet ondersteund",
|
|
43
|
-
"Nothing yet...": "",
|
|
44
|
-
"Ok": "",
|
|
45
|
-
"Only visible to you": "",
|
|
43
|
+
"Nothing yet...": "Nog niets...",
|
|
44
|
+
"Ok": "Oké",
|
|
45
|
+
"Only visible to you": "Alleen zichtbaar voor jou",
|
|
46
46
|
"Open Settings": "Open instellingen",
|
|
47
|
-
"Photo": "",
|
|
47
|
+
"Photo": "Foto",
|
|
48
48
|
"Photos and Videos": "Foto's en video's",
|
|
49
|
-
"Pin to Conversation": "",
|
|
50
|
-
"Pinned by": "",
|
|
49
|
+
"Pin to Conversation": "Vastmaken aan gesprek",
|
|
50
|
+
"Pinned by": "Vastgemaakt door",
|
|
51
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
|
-
"Reconnecting...": "",
|
|
54
|
-
"Reply": "",
|
|
53
|
+
"Reconnecting...": "Opnieuw Verbinding Maken...",
|
|
54
|
+
"Reply": "Antwoord",
|
|
55
55
|
"Reply to Message": "Beantwoord bericht",
|
|
56
|
-
"Resend": "",
|
|
56
|
+
"Resend": "Opnieuw versturen",
|
|
57
57
|
"Search GIFs": "Zoek GIF's",
|
|
58
58
|
"Select More Photos": "Selecteer Meer foto's",
|
|
59
|
-
"Send Anyway": "",
|
|
59
|
+
"Send Anyway": "Toch verzenden",
|
|
60
60
|
"Send a message": "Stuur een bericht",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "In dit gesprek is het niet toegestaan links te versturen",
|
|
62
62
|
"Slow mode ON": "Langzame modus aan",
|
|
63
|
-
"The message has been reported to a moderator.": "",
|
|
64
|
-
"Thread Reply": "",
|
|
65
|
-
"Unblock User": "",
|
|
63
|
+
"The message has been reported to a moderator.": "Het bericht is gerapporteerd aan een moderator.",
|
|
64
|
+
"Thread Reply": "Discussie beantwoorden",
|
|
65
|
+
"Unblock User": "Deblokkeer gebruiker",
|
|
66
66
|
"Unknown User": "Onbekende gebruiker",
|
|
67
|
-
"Unmute User": "",
|
|
68
|
-
"Unpin from Conversation": "",
|
|
69
|
-
"Unread Messages": "",
|
|
70
|
-
"Video": "",
|
|
71
|
-
"You": "",
|
|
72
|
-
"You can't send messages in this channel": "",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
67
|
+
"Unmute User": "Dempen van gebruiker opheffen",
|
|
68
|
+
"Unpin from Conversation": "Losmaken van gesprek",
|
|
69
|
+
"Unread Messages": "Ongelezen Berichten",
|
|
70
|
+
"Video": "Video",
|
|
71
|
+
"You": "U",
|
|
72
|
+
"You can't send messages in this channel": "Je kan geen berichten sturen in dit kanaal",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} en {{ nonSelfUserLength }} anderen zijn aan het typen",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} van {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Antwoorden",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Discussiereacties",
|
|
77
|
+
"{{ user }} is typing": "{{ user }} is aan het typen",
|
|
78
|
+
"🏙 Attachment...": "🏙 Bijlage..."
|
|
79
79
|
}
|
package/lib/module/i18n/ru.json
CHANGED
|
@@ -1,79 +1,79 @@
|
|
|
1
1
|
{
|
|
2
2
|
"1 Reply": "1 Ответ",
|
|
3
|
-
"1 Thread Reply": "",
|
|
3
|
+
"1 Thread Reply": "1 тема Ответить",
|
|
4
4
|
"Allow access to your Gallery": "Разрешить доступ к вашей галерее",
|
|
5
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": "",
|
|
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
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": "",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "Вы хотите отправить копию этого сообщения модератору для дальнейшего изучения?",
|
|
18
|
+
"Edit Message": "Редактировать сообщение",
|
|
19
19
|
"Editing Message": "Редактирование сообщения",
|
|
20
20
|
"Emoji matching": "Соответствие эмодзи",
|
|
21
|
-
"Empty message...": "",
|
|
22
|
-
"Error loading": "",
|
|
23
|
-
"Error loading channel list...": "",
|
|
24
|
-
"Error loading messages for this channel...": "",
|
|
25
|
-
"Error while loading, please reload/refresh": "",
|
|
26
|
-
"File type not supported": "",
|
|
27
|
-
"Flag": "",
|
|
28
|
-
"Flag Message": "",
|
|
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?": "",
|
|
21
|
+
"Empty message...": "Пустое сообщение...",
|
|
22
|
+
"Error loading": "Ошибка при загрузке",
|
|
23
|
+
"Error loading channel list...": "Ошибка загрузки списка каналов...",
|
|
24
|
+
"Error loading messages for this channel...": "Ошибка загрузки сообщений для этого канала...",
|
|
25
|
+
"Error while loading, please reload/refresh": "Ошибка загрузки, пожалуйста перезагрузите или обновите",
|
|
26
|
+
"File type not supported": "Тип файла не поддерживается",
|
|
27
|
+
"Flag": "Пометить",
|
|
28
|
+
"Flag Message": "Пометить сообщение",
|
|
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?": "Как насчет отправки первого сообщения другу?",
|
|
31
31
|
"Instant Commands": "Мгновенные Команды",
|
|
32
|
-
"Let's start chatting!": "",
|
|
33
|
-
"Links are disabled": "",
|
|
32
|
+
"Let's start chatting!": "Давайте начнем общаться!",
|
|
33
|
+
"Links are disabled": "Ссылки отключены",
|
|
34
34
|
"Loading channels...": "Загружаю каналы...",
|
|
35
35
|
"Loading messages...": "Загружаю сообщения...",
|
|
36
36
|
"Loading...": "Загружаю...",
|
|
37
|
-
"Maximum file size upload limit reached. Please upload a file below {{MAX_FILE_SIZE_TO_UPLOAD_IN_MB}} MB.": "",
|
|
38
|
-
"Message Reactions": "",
|
|
39
|
-
"Message deleted": "",
|
|
40
|
-
"Message flagged": "",
|
|
41
|
-
"Mute User": "",
|
|
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
|
+
"Message Reactions": "Сообщения Реакции",
|
|
39
|
+
"Message deleted": "Сообщение удалено",
|
|
40
|
+
"Message flagged": "Сообщение отмечено",
|
|
41
|
+
"Mute User": "Отключить пользователя",
|
|
42
42
|
"Not supported": "не поддерживается",
|
|
43
|
-
"Nothing yet...": "",
|
|
44
|
-
"Ok": "",
|
|
45
|
-
"Only visible to you": "",
|
|
43
|
+
"Nothing yet...": "Пока ничего нет...",
|
|
44
|
+
"Ok": "Oк",
|
|
45
|
+
"Only visible to you": "Видно только вам",
|
|
46
46
|
"Open Settings": "Открыть настройки",
|
|
47
|
-
"Photo": "",
|
|
47
|
+
"Photo": "Фото",
|
|
48
48
|
"Photos and Videos": "Фото и видео",
|
|
49
|
-
"Pin to Conversation": "",
|
|
50
|
-
"Pinned by": "",
|
|
49
|
+
"Pin to Conversation": "Закрепить к беседе",
|
|
50
|
+
"Pinned by": "Закреплено пользователем",
|
|
51
51
|
"Please enable access to your photos and videos so you can share them.": "Разрешите доступ к своим фотографиям и видео, чтобы вы могли ими поделиться.",
|
|
52
52
|
"Please select a channel first": "Пожалуйста, сначала выберите канал",
|
|
53
|
-
"Reconnecting...": "",
|
|
54
|
-
"Reply": "",
|
|
53
|
+
"Reconnecting...": "Переподключение...",
|
|
54
|
+
"Reply": "Ответить",
|
|
55
55
|
"Reply to Message": "Ответить на сообщение",
|
|
56
|
-
"Resend": "",
|
|
56
|
+
"Resend": "Отправить",
|
|
57
57
|
"Search GIFs": "Поиск GIF",
|
|
58
58
|
"Select More Photos": "Выбрать больше фотографий",
|
|
59
|
-
"Send Anyway": "",
|
|
59
|
+
"Send Anyway": "Всё равно отправить",
|
|
60
60
|
"Send a message": "Отправить сообщение",
|
|
61
|
-
"Sending links is not allowed in this conversation": "",
|
|
61
|
+
"Sending links is not allowed in this conversation": "Отправка ссылок недоступна в этом чате",
|
|
62
62
|
"Slow mode ON": "Медленный режим включен",
|
|
63
|
-
"The message has been reported to a moderator.": "",
|
|
64
|
-
"Thread Reply": "",
|
|
65
|
-
"Unblock User": "",
|
|
63
|
+
"The message has been reported to a moderator.": "Сообщение отправлено модератору.",
|
|
64
|
+
"Thread Reply": "Тема Ответить",
|
|
65
|
+
"Unblock User": "Разблокировать пользователя",
|
|
66
66
|
"Unknown User": "Неизвестный пользователь",
|
|
67
|
-
"Unmute User": "",
|
|
68
|
-
"Unpin from Conversation": "",
|
|
69
|
-
"Unread Messages": "",
|
|
70
|
-
"Video": "",
|
|
71
|
-
"You": "",
|
|
72
|
-
"You can't send messages in this channel": "",
|
|
73
|
-
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "",
|
|
67
|
+
"Unmute User": "Включить микрофон",
|
|
68
|
+
"Unpin from Conversation": "Открепить от беседы",
|
|
69
|
+
"Unread Messages": "Непрочитанные Сообщения",
|
|
70
|
+
"Video": "видео",
|
|
71
|
+
"You": "Вы",
|
|
72
|
+
"You can't send messages in this channel": "Вы не можете отправлять сообщения в этот канал",
|
|
73
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} и еще {{ nonSelfUserLength }} пишут",
|
|
74
74
|
"{{ index }} of {{ photoLength }}": "{{ index }} из {{ photoLength }}",
|
|
75
75
|
"{{ replyCount }} Replies": "{{ replyCount }} Ответов",
|
|
76
|
-
"{{ replyCount }} Thread Replies": "",
|
|
77
|
-
"{{ user }} is typing": "",
|
|
78
|
-
"🏙 Attachment...": ""
|
|
76
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Ответы в темах",
|
|
77
|
+
"{{ user }} is typing": "{{ user }} пишет",
|
|
78
|
+
"🏙 Attachment...": "🏙 Вложение..."
|
|
79
79
|
}
|