stream-chat-react-native-core 5.32.0-beta.1 → 5.32.0-beta.3
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/Channel/Channel.js +7 -1
- package/lib/commonjs/components/Channel/Channel.js.map +1 -1
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js +2 -0
- package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/commonjs/components/ChannelPreview/ChannelPreviewStatus.js +18 -3
- package/lib/commonjs/components/ChannelPreview/ChannelPreviewStatus.js.map +1 -1
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js +4 -17
- package/lib/commonjs/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/commonjs/components/Chat/Chat.js.map +1 -1
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js +9 -6
- package/lib/commonjs/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageEditedTimestamp.js +4 -5
- package/lib/commonjs/components/Message/MessageSimple/MessageEditedTimestamp.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js +8 -8
- package/lib/commonjs/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageTimestamp.js +21 -18
- package/lib/commonjs/components/Message/MessageSimple/MessageTimestamp.js.map +1 -1
- package/lib/commonjs/components/MessageList/InlineDateSeparator.js +14 -12
- package/lib/commonjs/components/MessageList/InlineDateSeparator.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageList.js +4 -28
- package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
- package/lib/commonjs/components/MessageList/MessageSystem.js +14 -8
- package/lib/commonjs/components/MessageList/MessageSystem.js.map +1 -1
- package/lib/commonjs/components/MessageList/StickyHeader.js +36 -0
- package/lib/commonjs/components/MessageList/StickyHeader.js.map +1 -0
- package/lib/commonjs/components/index.js +11 -0
- package/lib/commonjs/components/index.js.map +1 -1
- package/lib/commonjs/contexts/channelContext/ChannelContext.js.map +1 -1
- package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/commonjs/hooks/useStreami18n.js +1 -1
- package/lib/commonjs/i18n/en.json +88 -81
- package/lib/commonjs/i18n/es.json +88 -81
- package/lib/commonjs/i18n/fr.json +88 -81
- package/lib/commonjs/i18n/he.json +88 -81
- package/lib/commonjs/i18n/hi.json +88 -81
- package/lib/commonjs/i18n/it.json +88 -81
- package/lib/commonjs/i18n/ja.json +88 -81
- package/lib/commonjs/i18n/ko.json +88 -81
- package/lib/commonjs/i18n/nl.json +88 -81
- package/lib/commonjs/i18n/pt-br.json +90 -0
- package/lib/commonjs/i18n/ru.json +88 -81
- package/lib/commonjs/i18n/tr.json +88 -81
- package/lib/commonjs/index.js +2 -1
- package/lib/commonjs/index.js.map +1 -1
- package/lib/{module/utils → commonjs/utils/i18n}/Streami18n.js +62 -69
- package/lib/commonjs/utils/i18n/Streami18n.js.map +1 -0
- package/lib/commonjs/utils/i18n/calendarFormats.js +104 -0
- package/lib/commonjs/utils/i18n/calendarFormats.js.map +1 -0
- package/lib/commonjs/utils/i18n/getDateString.js +47 -0
- package/lib/commonjs/utils/i18n/getDateString.js.map +1 -0
- package/lib/commonjs/utils/i18n/predefinedFormatters.js +40 -0
- package/lib/commonjs/utils/i18n/predefinedFormatters.js.map +1 -0
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Channel/Channel.js +7 -1
- package/lib/module/components/Channel/Channel.js.map +1 -1
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js +2 -0
- package/lib/module/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
- package/lib/module/components/ChannelPreview/ChannelPreviewStatus.js +18 -3
- package/lib/module/components/ChannelPreview/ChannelPreviewStatus.js.map +1 -1
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js +4 -17
- package/lib/module/components/ChannelPreview/hooks/useLatestMessagePreview.js.map +1 -1
- package/lib/module/components/Chat/Chat.js.map +1 -1
- package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js +9 -6
- package/lib/module/components/ImageGallery/components/ImageGalleryHeader.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageEditedTimestamp.js +4 -5
- package/lib/module/components/Message/MessageSimple/MessageEditedTimestamp.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageFooter.js +8 -8
- package/lib/module/components/Message/MessageSimple/MessageFooter.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageTimestamp.js +21 -18
- package/lib/module/components/Message/MessageSimple/MessageTimestamp.js.map +1 -1
- package/lib/module/components/MessageList/InlineDateSeparator.js +14 -12
- package/lib/module/components/MessageList/InlineDateSeparator.js.map +1 -1
- package/lib/module/components/MessageList/MessageList.js +4 -28
- package/lib/module/components/MessageList/MessageList.js.map +1 -1
- package/lib/module/components/MessageList/MessageSystem.js +14 -8
- package/lib/module/components/MessageList/MessageSystem.js.map +1 -1
- package/lib/module/components/MessageList/StickyHeader.js +36 -0
- package/lib/module/components/MessageList/StickyHeader.js.map +1 -0
- package/lib/module/components/index.js +11 -0
- package/lib/module/components/index.js.map +1 -1
- package/lib/module/contexts/channelContext/ChannelContext.js.map +1 -1
- package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
- package/lib/module/hooks/useStreami18n.js +1 -1
- package/lib/module/i18n/en.json +88 -81
- package/lib/module/i18n/es.json +88 -81
- package/lib/module/i18n/fr.json +88 -81
- package/lib/module/i18n/he.json +88 -81
- package/lib/module/i18n/hi.json +88 -81
- package/lib/module/i18n/it.json +88 -81
- package/lib/module/i18n/ja.json +88 -81
- package/lib/module/i18n/ko.json +88 -81
- package/lib/module/i18n/nl.json +88 -81
- package/lib/module/i18n/pt-br.json +90 -0
- package/lib/module/i18n/ru.json +88 -81
- package/lib/module/i18n/tr.json +88 -81
- package/lib/module/index.js +2 -1
- package/lib/module/index.js.map +1 -1
- package/lib/{commonjs/utils → module/utils/i18n}/Streami18n.js +62 -69
- package/lib/module/utils/i18n/Streami18n.js.map +1 -0
- package/lib/module/utils/i18n/calendarFormats.js +104 -0
- package/lib/module/utils/i18n/calendarFormats.js.map +1 -0
- package/lib/module/utils/i18n/getDateString.js +47 -0
- package/lib/module/utils/i18n/getDateString.js.map +1 -0
- package/lib/module/utils/i18n/predefinedFormatters.js +40 -0
- package/lib/module/utils/i18n/predefinedFormatters.js.map +1 -0
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts +1 -1
- package/lib/typescript/components/Channel/Channel.d.ts.map +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateMessagesContext.d.ts +1 -1
- package/lib/typescript/components/Channel/hooks/useCreateMessagesContext.d.ts.map +1 -1
- package/lib/typescript/components/ChannelPreview/ChannelPreviewStatus.d.ts.map +1 -1
- package/lib/typescript/components/ChannelPreview/hooks/useLatestMessagePreview.d.ts +1 -1
- package/lib/typescript/components/ChannelPreview/hooks/useLatestMessagePreview.d.ts.map +1 -1
- package/lib/typescript/components/Chat/Chat.d.ts +1 -1
- package/lib/typescript/components/Chat/Chat.d.ts.map +1 -1
- package/lib/typescript/components/ImageGallery/components/ImageGalleryHeader.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageEditedTimestamp.d.ts +2 -2
- package/lib/typescript/components/Message/MessageSimple/MessageEditedTimestamp.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageFooter.d.ts.map +1 -1
- package/lib/typescript/components/Message/MessageSimple/MessageTimestamp.d.ts +2 -13
- package/lib/typescript/components/Message/MessageSimple/MessageTimestamp.d.ts.map +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActionHandlers.d.ts +1 -1
- package/lib/typescript/components/Message/hooks/useMessageActions.d.ts +1 -1
- package/lib/typescript/components/MessageList/DateHeader.d.ts +1 -1
- package/lib/typescript/components/MessageList/DateHeader.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/InlineDateSeparator.d.ts +7 -1
- package/lib/typescript/components/MessageList/InlineDateSeparator.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageList.d.ts +1 -2
- package/lib/typescript/components/MessageList/MessageList.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/MessageSystem.d.ts +3 -0
- package/lib/typescript/components/MessageList/MessageSystem.d.ts.map +1 -1
- package/lib/typescript/components/MessageList/StickyHeader.d.ts +18 -0
- package/lib/typescript/components/MessageList/StickyHeader.d.ts.map +1 -0
- package/lib/typescript/components/index.d.ts +1 -0
- package/lib/typescript/components/index.d.ts.map +1 -1
- package/lib/typescript/contexts/channelContext/ChannelContext.d.ts +2 -3
- package/lib/typescript/contexts/channelContext/ChannelContext.d.ts.map +1 -1
- package/lib/typescript/contexts/messageContext/MessageContext.d.ts +1 -1
- package/lib/typescript/contexts/messageInputContext/MessageInputContext.d.ts +1 -1
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +6 -0
- package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts.map +1 -1
- package/lib/typescript/contexts/overlayContext/OverlayContext.d.ts +1 -1
- package/lib/typescript/contexts/overlayContext/OverlayContext.d.ts.map +1 -1
- package/lib/typescript/hooks/useStreami18n.d.ts +1 -1
- package/lib/typescript/hooks/useStreami18n.d.ts.map +1 -1
- package/lib/typescript/i18n/en.json +88 -81
- package/lib/typescript/i18n/es.json +88 -81
- package/lib/typescript/i18n/fr.json +88 -81
- package/lib/typescript/i18n/he.json +88 -81
- package/lib/typescript/i18n/hi.json +88 -81
- package/lib/typescript/i18n/it.json +88 -81
- package/lib/typescript/i18n/ja.json +88 -81
- package/lib/typescript/i18n/ko.json +88 -81
- package/lib/typescript/i18n/nl.json +88 -81
- package/lib/typescript/i18n/pt-br.json +90 -0
- package/lib/typescript/i18n/ru.json +88 -81
- package/lib/typescript/i18n/tr.json +88 -81
- package/lib/typescript/index.d.ts +3 -1
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/utils/{Streami18n.d.ts → i18n/Streami18n.d.ts} +16 -10
- package/lib/typescript/utils/i18n/Streami18n.d.ts.map +1 -0
- package/lib/typescript/utils/i18n/calendarFormats.d.ts +14 -0
- package/lib/typescript/utils/i18n/calendarFormats.d.ts.map +1 -0
- package/lib/typescript/utils/i18n/getDateString.d.ts +16 -0
- package/lib/typescript/utils/i18n/getDateString.d.ts.map +1 -0
- package/lib/typescript/utils/i18n/predefinedFormatters.d.ts +13 -0
- package/lib/typescript/utils/i18n/predefinedFormatters.d.ts.map +1 -0
- package/package.json +10 -10
- package/src/components/Attachment/__tests__/Giphy.test.js +1 -1
- package/src/components/Channel/Channel.tsx +6 -1
- package/src/components/Channel/hooks/useCreateMessagesContext.ts +2 -0
- package/src/components/ChannelPreview/ChannelPreviewStatus.tsx +16 -2
- package/src/components/ChannelPreview/hooks/useLatestMessagePreview.ts +7 -28
- package/src/components/Chat/Chat.tsx +1 -1
- package/src/components/Chat/__tests__/Chat.test.js +1 -1
- package/src/components/ImageGallery/components/ImageGalleryHeader.tsx +13 -3
- package/src/components/Message/MessageSimple/MessageEditedTimestamp.tsx +10 -5
- package/src/components/Message/MessageSimple/MessageFooter.tsx +10 -7
- package/src/components/Message/MessageSimple/MessageTimestamp.tsx +20 -29
- package/src/components/Message/MessageSimple/__tests__/MessageStatus.test.js +1 -1
- package/src/components/MessageList/DateHeader.tsx +1 -1
- package/src/components/MessageList/InlineDateSeparator.tsx +20 -15
- package/src/components/MessageList/MessageList.tsx +4 -31
- package/src/components/MessageList/MessageSystem.tsx +20 -8
- package/src/components/MessageList/StickyHeader.tsx +42 -0
- package/src/components/MessageList/__tests__/MessageSystem.test.js +8 -3
- package/src/components/MessageList/__tests__/ScrollToBottomButton.test.js +1 -1
- package/src/components/MessageList/__tests__/TypingIndicator.test.js +1 -1
- package/src/components/Thread/__tests__/Thread.test.js +1 -1
- package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +1 -1
- package/src/components/index.ts +1 -0
- package/src/contexts/channelContext/ChannelContext.tsx +2 -1
- package/src/contexts/messagesContext/MessagesContext.tsx +6 -0
- package/src/contexts/overlayContext/OverlayContext.tsx +1 -1
- package/src/hooks/useStreami18n.ts +1 -1
- package/src/i18n/en.json +8 -1
- package/src/i18n/es.json +73 -66
- package/src/i18n/fr.json +73 -66
- package/src/i18n/he.json +73 -66
- package/src/i18n/hi.json +73 -66
- package/src/i18n/it.json +73 -66
- package/src/i18n/ja.json +73 -66
- package/src/i18n/ko.json +75 -68
- package/src/i18n/nl.json +73 -66
- package/src/i18n/pt-br.json +90 -0
- package/src/i18n/ru.json +73 -66
- package/src/i18n/tr.json +73 -66
- package/src/index.ts +4 -1
- package/src/utils/__tests__/Streami18n.test.js +23 -1
- package/src/utils/{Streami18n.ts → i18n/Streami18n.ts} +60 -71
- package/src/utils/i18n/calendarFormats.ts +110 -0
- package/src/utils/i18n/getDateString.ts +76 -0
- package/src/utils/i18n/predefinedFormatters.ts +63 -0
- package/src/version.json +1 -1
- package/lib/commonjs/i18n/pt-BR.json +0 -83
- package/lib/commonjs/utils/Streami18n.js.map +0 -1
- package/lib/commonjs/utils/getDateString.js +0 -31
- package/lib/commonjs/utils/getDateString.js.map +0 -1
- package/lib/module/i18n/pt-BR.json +0 -83
- package/lib/module/utils/Streami18n.js.map +0 -1
- package/lib/module/utils/getDateString.js +0 -31
- package/lib/module/utils/getDateString.js.map +0 -1
- package/lib/typescript/i18n/pt-BR.json +0 -83
- package/lib/typescript/utils/Streami18n.d.ts.map +0 -1
- package/lib/typescript/utils/getDateString.d.ts +0 -30
- package/lib/typescript/utils/getDateString.d.ts.map +0 -1
- package/src/i18n/pt-BR.json +0 -83
- package/src/utils/getDateString.ts +0 -67
|
@@ -1,83 +1,90 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
2
|
+
"1 Reply": "1 Risposta",
|
|
3
|
+
"1 Thread Reply": "1 Risposta alla Discussione",
|
|
4
|
+
"Allow access to your Gallery": "Consenti l'accesso alla tua galleria",
|
|
5
|
+
"Allow camera access in device settings": "Consenti l'accesso alla fotocamera nelle impostazioni del dispositivo",
|
|
6
|
+
"Also send to channel": "Invia anche al canale",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "Sei sicuro di voler eliminare definitivamente questo messaggio?",
|
|
8
|
+
"Are you sure?": "Sei sicuro?",
|
|
9
|
+
"Block User": "Blocca Utente",
|
|
10
|
+
"Cancel": "Annulla",
|
|
11
|
+
"Cannot Flag Message": "Impossibile Segnalare Messaggio",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "Considera come il tuo commento potrebbe far sentire gli altri e assicurati di seguire le nostre Linee guida della community",
|
|
13
|
+
"Copy Message": "Copia Messaggio",
|
|
14
|
+
"Delete": "Elimina",
|
|
15
|
+
"Delete Message": "Cancella il Messaggio",
|
|
16
|
+
"Device camera is used to take photos or videos.": "La fotocamera del dispositivo viene utilizzata per scattare foto o video.",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "Vuoi inviare una copia di questo messaggio a un moderatore per ulteriori indagini?",
|
|
18
|
+
"Edit Message": "Modifica Messaggio",
|
|
19
|
+
"Edited": "Modificato",
|
|
20
|
+
"Editing Message": "Modificando il Messaggio",
|
|
21
|
+
"Emoji matching": "Abbinamento emoji",
|
|
22
|
+
"Empty message...": "Message vuoto...",
|
|
23
|
+
"Error loading": "Errore di caricamento",
|
|
24
|
+
"Error loading channel list...": "Errore durante il caricamento della lista dei canali...",
|
|
25
|
+
"Error loading messages for this channel...": "Errore durante il caricamento dei messaggi per questo canale...",
|
|
26
|
+
"Error while loading, please reload/refresh": "Errore durante il caricamento, per favore ricarica la pagina",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Il file è troppo grande: {{ size }}, la dimensione massima di caricamento è {{ limit }}",
|
|
28
|
+
"File type not supported": "Tipo di file non supportato",
|
|
29
|
+
"Flag": "Contrassegna",
|
|
30
|
+
"Flag Message": "Contrassegna Messaggio",
|
|
31
|
+
"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.",
|
|
32
|
+
"Hold to start recording.": "Tieni premuto per avviare la registrazione.",
|
|
33
|
+
"How about sending your first message to a friend?": "Che ne dici di inviare il tuo primo messaggio ad un amico?",
|
|
34
|
+
"Instant Commands": "Comandi Istantanei",
|
|
35
|
+
"Let's start chatting!": "Iniziamo a chattare!",
|
|
36
|
+
"Links are disabled": "I link sono disabilitati",
|
|
37
|
+
"Loading channels...": "Caricamento canali in corso...",
|
|
38
|
+
"Loading messages...": "Caricamento messaggi...",
|
|
39
|
+
"Loading...": "Caricamento...",
|
|
40
|
+
"Message Reactions": "Reazioni ai Messaggi",
|
|
41
|
+
"Message deleted": "Messaggio cancellato",
|
|
42
|
+
"Message flagged": "Messaggio contrassegnato",
|
|
43
|
+
"Mute User": "Utente Muto",
|
|
44
|
+
"No chats here yet…": "Non ci sono ancora chat qui...",
|
|
45
|
+
"Not supported": "non supportato",
|
|
46
|
+
"Nothing yet...": "Ancora niente...",
|
|
47
|
+
"Ok": "Ok",
|
|
48
|
+
"Only visible to you": "Visibile solo a te",
|
|
49
|
+
"Open Settings": "Apri Impostazioni",
|
|
50
|
+
"Photo": "Foto",
|
|
51
|
+
"Photos and Videos": "Foto e Video",
|
|
52
|
+
"Pin to Conversation": "Metti in evidenza",
|
|
53
|
+
"Pinned by": "Fissato da",
|
|
54
|
+
"Please allow Audio permissions in settings.": "Si prega di consentire le autorizzazioni audio nelle impostazioni.",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "Abilita l'accesso alle tue foto e ai tuoi video in modo da poterli condividere.",
|
|
56
|
+
"Please select a channel first": "Seleziona un canale",
|
|
57
|
+
"Reconnecting...": "Ricollegarsi...",
|
|
58
|
+
"Reply": "Rispondi",
|
|
59
|
+
"Reply to Message": "Rispondi al messaggio",
|
|
60
|
+
"Resend": "Invia di nuovo",
|
|
61
|
+
"Search GIFs": "Cerca GIF",
|
|
62
|
+
"Select More Photos": "Seleziona Altre foto",
|
|
63
|
+
"Send Anyway": "Invia comunque",
|
|
64
|
+
"Send a message": "Mandare un messaggio",
|
|
65
|
+
"Sending links is not allowed in this conversation": "L'invio di link non è consentito in questa conversazione",
|
|
66
|
+
"Slow mode ON": "Slowmode attiva",
|
|
67
|
+
"The message has been reported to a moderator.": "Il messaggio è stato segnalato a un moderatore.",
|
|
68
|
+
"Thread Reply": "Rispondi alla Discussione",
|
|
69
|
+
"Unblock User": "Sblocca utente",
|
|
70
|
+
"Unknown User": "Utente sconosciuto",
|
|
71
|
+
"Unmute User": "Riattiva utente",
|
|
72
|
+
"Unpin from Conversation": "Rimuovi dagli elementi in evidenza",
|
|
73
|
+
"Unread Messages": "Messaggi non letti",
|
|
74
|
+
"Video": "Video",
|
|
75
|
+
"You": "Tu",
|
|
76
|
+
"You can't send messages in this channel": "Non puoi inviare messaggi in questo canale",
|
|
77
|
+
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[Ieri]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[Domani]\",\"nextWeek\":\"dddd [alle] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
78
|
+
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
79
|
+
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
80
|
+
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
81
|
+
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
|
+
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
83
|
+
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
84
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} e altri {{ nonSelfUserLength }} stanno scrivendo",
|
|
85
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} di {{ photoLength }}",
|
|
86
|
+
"{{ replyCount }} Replies": "{{ replyCount }} Risposte",
|
|
87
|
+
"{{ replyCount }} Thread Replies": "{{replyCount}} Risposte alle Conversazione",
|
|
88
|
+
"{{ user }} is typing": "{{ user }} sta scrivendo",
|
|
89
|
+
"🏙 Attachment...": "🏙 Allegato..."
|
|
83
90
|
}
|
|
@@ -1,83 +1,90 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
2
|
+
"1 Reply": "1件の返信",
|
|
3
|
+
"1 Thread Reply": "1件のスレッド返信",
|
|
4
|
+
"Allow access to your Gallery": "ギャラリーへのアクセスを許可する",
|
|
5
|
+
"Allow camera access in device settings": "デバイス設定でカメラへのアクセスを許可する",
|
|
6
|
+
"Also send to channel": "チャンネルにも送信",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "このメッセージを完全に削除してもよろしいですか?",
|
|
8
|
+
"Are you sure?": "本当によろしいですか?",
|
|
9
|
+
"Block User": "ユーザをブロックする",
|
|
10
|
+
"Cancel": "キャンセル",
|
|
11
|
+
"Cannot Flag Message": "メッセージをフラグできません",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "あなたのコメントが他の人にどのように影響するか考え、必ずコミュニティガイドラインに従ってください",
|
|
13
|
+
"Copy Message": "メッセージのコピー",
|
|
14
|
+
"Delete": "消去",
|
|
15
|
+
"Delete Message": "メッセージを削除",
|
|
16
|
+
"Device camera is used to take photos or videos.": "デバイスのカメラは写真やビデオの撮影に使用されます。",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "このメッセージのコピーをモデレーターに送信して、さらに調査しますか?",
|
|
18
|
+
"Edit Message": "メッセージを編集",
|
|
19
|
+
"Edited": "編集済み",
|
|
20
|
+
"Editing Message": "メッセージを編集中",
|
|
21
|
+
"Emoji matching": "絵文字マッチング",
|
|
22
|
+
"Empty message...": "空のメッセージ...",
|
|
23
|
+
"Error loading": "読み込みエラー",
|
|
24
|
+
"Error loading channel list...": "チャネルリストの読み込み中にエラーが発生しました。。。",
|
|
25
|
+
"Error loading messages for this channel...": "このチャネルのメッセージの読み込み中にエラーが発生しました。。。",
|
|
26
|
+
"Error while loading, please reload/refresh": "ロード中にエラーが発生しました。更新してください",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "ファイルが大きすぎます:{{ size }}、最大アップロードサイズは{{ limit }}です",
|
|
28
|
+
"File type not supported": "サポートされていないファイルです",
|
|
29
|
+
"Flag": "フラグ",
|
|
30
|
+
"Flag Message": "メッセージをフラグする",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "ネットワーク接続に問題があるか、すでにフラグが設定されているため、フラグが失敗しました。",
|
|
32
|
+
"Hold to start recording.": "録音を開始するには押し続けてください。",
|
|
33
|
+
"How about sending your first message to a friend?": "初めてのメッセージを友達に送ってみてはいかがでしょうか?",
|
|
34
|
+
"Instant Commands": "インスタントコマンド",
|
|
35
|
+
"Let's start chatting!": "チャットを始めましょう!",
|
|
36
|
+
"Links are disabled": "リンク機能が無効になっています",
|
|
37
|
+
"Loading channels...": "チャネルを読み込み中。。。",
|
|
38
|
+
"Loading messages...": "メッセージを読み込み中。。。",
|
|
39
|
+
"Loading...": "読み込み中。。。",
|
|
40
|
+
"Message Reactions": "メッセージのリアクション",
|
|
41
|
+
"Message deleted": "メッセージが削除されました",
|
|
42
|
+
"Message flagged": "メッセージにフラグが付けられました",
|
|
43
|
+
"Mute User": "ユーザーをミュートする",
|
|
44
|
+
"No chats here yet…": "まだチャットはありません…",
|
|
45
|
+
"Not supported": "サポートしていません",
|
|
46
|
+
"Nothing yet...": "まだ何もありません...",
|
|
47
|
+
"Ok": "確認",
|
|
48
|
+
"Only visible to you": "あなただけに見える",
|
|
49
|
+
"Open Settings": "設定を開く",
|
|
50
|
+
"Photo": "写真",
|
|
51
|
+
"Photos and Videos": "写真と動画",
|
|
52
|
+
"Pin to Conversation": "会話にピンする",
|
|
53
|
+
"Pinned by": "ピン留めしたユーザー",
|
|
54
|
+
"Please allow Audio permissions in settings.": "設定でオーディオの権限を許可してください。",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "写真やビデオへのアクセスを有効にして、共有できるようにしてください。",
|
|
56
|
+
"Please select a channel first": "最初にチャンネルを選択してください",
|
|
57
|
+
"Reconnecting...": "再接続中。。。",
|
|
58
|
+
"Reply": "返事",
|
|
59
|
+
"Reply to Message": "メッセージに返信",
|
|
60
|
+
"Resend": "再送",
|
|
61
|
+
"Search GIFs": "GIFの探索",
|
|
62
|
+
"Select More Photos": "さらに写真を選択",
|
|
63
|
+
"Send Anyway": "とにかく送信",
|
|
64
|
+
"Send a message": "メッセージを送る",
|
|
65
|
+
"Sending links is not allowed in this conversation": "この会話ではリンク機能を使用できません。",
|
|
66
|
+
"Slow mode ON": "スローモードオン",
|
|
67
|
+
"The message has been reported to a moderator.": "メッセージはモデレーターに報告されました。",
|
|
68
|
+
"Thread Reply": "スレッドの返信",
|
|
69
|
+
"Unblock User": "ユーザーのブロックを解除する",
|
|
70
|
+
"Unknown User": "不明なユーザー",
|
|
71
|
+
"Unmute User": "ユーザーのミュートを解除する",
|
|
72
|
+
"Unpin from Conversation": "会話のピンを外す",
|
|
73
|
+
"Unread Messages": "未読メッセージ",
|
|
74
|
+
"Video": "ビデオ",
|
|
75
|
+
"You": "あなた",
|
|
76
|
+
"You can't send messages in this channel": "このチャンネルではメッセージを送信できません",
|
|
77
|
+
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[昨日]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[明日]\",\"nextWeek\":\"dddd [の] LT\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
78
|
+
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
79
|
+
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
80
|
+
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
81
|
+
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
|
+
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
83
|
+
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
84
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }}と{{ nonSelfUserLength }}人がタイピングしています",
|
|
85
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
86
|
+
"{{ replyCount }} Replies": "{{ replyCount }}件の返信",
|
|
87
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }}件のスレッド返信",
|
|
88
|
+
"{{ user }} is typing": "{{ user }}はタイピング中",
|
|
89
|
+
"🏙 Attachment...": "🏙 アタッチメント..."
|
|
83
90
|
}
|
|
@@ -1,83 +1,90 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
2
|
+
"1 Reply": "답장 1개",
|
|
3
|
+
"1 Thread Reply": "1개의 스레드\u3000답글",
|
|
4
|
+
"Allow access to your Gallery": "갤러리에 대한 액세스를 허용",
|
|
5
|
+
"Allow camera access in device settings": "기기 설정에서 카메라 액세스를 허용하세요.",
|
|
6
|
+
"Also send to channel": "채널에도 전송",
|
|
7
|
+
"Are you sure you want to permanently delete this message?": "이 메시지를 영구적으로 삭제하시겠습니까?",
|
|
8
|
+
"Are you sure?": "확실합니까?",
|
|
9
|
+
"Block User": "사용자 차단",
|
|
10
|
+
"Cancel": "취소",
|
|
11
|
+
"Cannot Flag Message": "메세지를 플래그 할 수 없습니다",
|
|
12
|
+
"Consider how your comment might make others feel and be sure to follow our Community Guidelines": "당신의 댓글이 다른 사람들에게 어떤 영향을 줄지 고려하고 반드시 우리의 커뮤니티 가이드라인을 따르십시오",
|
|
13
|
+
"Copy Message": "메시지 복사",
|
|
14
|
+
"Delete": "삭제",
|
|
15
|
+
"Delete Message": "메시지 삭제",
|
|
16
|
+
"Device camera is used to take photos or videos.": "기기 카메라는 사진이나 동영상을 촬영하는 데 사용됩니다.",
|
|
17
|
+
"Do you want to send a copy of this message to a moderator for further investigation?": "이 메시지의 복사본을 운영자에게 보내 추가 조사를합니까?",
|
|
18
|
+
"Edit Message": "메시지 수정",
|
|
19
|
+
"Edited": "편집됨",
|
|
20
|
+
"Editing Message": "메시지 편집중",
|
|
21
|
+
"Emoji matching": "이모티콘 매칭",
|
|
22
|
+
"Empty message...": "빈 메시지...",
|
|
23
|
+
"Error loading": "로드 오류",
|
|
24
|
+
"Error loading channel list...": "채널리스트 을로드하는 동안 오류가 발생했습니다...",
|
|
25
|
+
"Error loading messages for this channel...": "이 채널의 메시지를로드하는 동안 오류가 발생했습니다...",
|
|
26
|
+
"Error while loading, please reload/refresh": "로드하는 동안 오류가 발생했습니다. 다시로드하십시오",
|
|
27
|
+
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "파일이 너무 큽니다: {{ size }}, 최대 업로드 크기는 {{ limit }}입니다",
|
|
28
|
+
"File type not supported": "지원하지 않는 파일입니다.",
|
|
29
|
+
"Flag": "플래그",
|
|
30
|
+
"Flag Message": "메시지를 플래그하기",
|
|
31
|
+
"Flag action failed either due to a network issue or the message is already flagged": "네트워크 연결에 문제가 있거나 이미 플래그 되어서 플래그에 실패했습니다.",
|
|
32
|
+
"Hold to start recording.": "녹음을 시작하려면 눌러주세요.",
|
|
33
|
+
"How about sending your first message to a friend?": "친구에게 첫 번째 메시지를 보내는 것은 어떻습니까?",
|
|
34
|
+
"Instant Commands": "인스턴트 명령",
|
|
35
|
+
"Let's start chatting!": "채팅을 시작합시다!",
|
|
36
|
+
"Links are disabled": "링크 기능이 비활성화되었습니다",
|
|
37
|
+
"Loading channels...": "채널을 로딩 중...",
|
|
38
|
+
"Loading messages...": "메시지를 로딩 중...",
|
|
39
|
+
"Loading...": "로딩 중...",
|
|
40
|
+
"Message Reactions": "메시지의 리액션",
|
|
41
|
+
"Message deleted": "메시지가 삭제되었습니다.",
|
|
42
|
+
"Message flagged": "메시지에 플래그가 지정되었습니다",
|
|
43
|
+
"Mute User": "사용자를 음소거",
|
|
44
|
+
"No chats here yet…": "아직 여기에 채팅이 없어요…",
|
|
45
|
+
"Not supported": "지원하지 않습니다",
|
|
46
|
+
"Nothing yet...": "아직 아무것도...",
|
|
47
|
+
"Ok": "확인",
|
|
48
|
+
"Only visible to you": "당신만 볼 수 있습니다",
|
|
49
|
+
"Open Settings": "설정 열기",
|
|
50
|
+
"Photo": "사진",
|
|
51
|
+
"Photos and Videos": "사진과 동영상",
|
|
52
|
+
"Pin to Conversation": "대화에 고정합니다",
|
|
53
|
+
"Pinned by": "고정된 사용자",
|
|
54
|
+
"Please allow Audio permissions in settings.": "설정에서 오디오 권한을 허용해주세요.",
|
|
55
|
+
"Please enable access to your photos and videos so you can share them.": "사진 및 비디오에 대한 액세스를 사용하여 공유 할 수 있도록합니다.",
|
|
56
|
+
"Please select a channel first": "먼저 채널을 선택하십시오",
|
|
57
|
+
"Reconnecting...": "다시 연결 중...",
|
|
58
|
+
"Reply": "답장",
|
|
59
|
+
"Reply to Message": "메시지에 답장",
|
|
60
|
+
"Resend": "재전송",
|
|
61
|
+
"Search GIFs": "GIF의 검색",
|
|
62
|
+
"Select More Photos": "추가 사진 선택",
|
|
63
|
+
"Send Anyway": "그래도 보내기",
|
|
64
|
+
"Send a message": "메세지를 보내다",
|
|
65
|
+
"Sending links is not allowed in this conversation": "이 대화에서는 링크 기능을 사용할 수 없습니다",
|
|
66
|
+
"Slow mode ON": "슬로모드 켜짐",
|
|
67
|
+
"The message has been reported to a moderator.": "메시지는 운영자에보고되었습니다.",
|
|
68
|
+
"Thread Reply": "스레드\u3000답장",
|
|
69
|
+
"Unblock User": "사용자 차단 해제",
|
|
70
|
+
"Unknown User": "알 수없는 사용자",
|
|
71
|
+
"Unmute User": "사용자 음소거 해제",
|
|
72
|
+
"Unpin from Conversation": "대화의 핀을 분리합니다",
|
|
73
|
+
"Unread Messages": "읽지 않은 메시지",
|
|
74
|
+
"Video": "동영상",
|
|
75
|
+
"You": "당신",
|
|
76
|
+
"You can't send messages in this channel": "이 채널에서는 메세지를 전송할 수 없습니다",
|
|
77
|
+
"timestamp/ChannelPreviewStatus": "{{ timestamp | timestampFormatter(calendar: true; calendarFormats: {\"lastDay\":\"[어제]\",\"lastWeek\":\"dddd\",\"nextDay\":\"[내일]\",\"nextWeek\":\"dddd [LT에]\",\"sameDay\":\"LT\",\"sameElse\":\"L\"}) }}",
|
|
78
|
+
"timestamp/ImageGalleryHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
79
|
+
"timestamp/InlineDateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
80
|
+
"timestamp/MessageEditedTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
81
|
+
"timestamp/MessageSystem": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
82
|
+
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(format: LT) }}",
|
|
83
|
+
"timestamp/StickyHeader": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
84
|
+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} 외 {{ nonSelfUserLength }}명이 입력 중입니다",
|
|
85
|
+
"{{ index }} of {{ photoLength }}": "{{ index }} / {{ photoLength }}",
|
|
86
|
+
"{{ replyCount }} Replies": "{{ replyCount }} 답글",
|
|
87
|
+
"{{ replyCount }} Thread Replies": "{{ replyCount }}\u3000스레드\u3000답글",
|
|
88
|
+
"{{ user }} is typing": "{{ user }} 타이핑 중",
|
|
89
|
+
"🏙 Attachment...": "🏙 부착..."
|
|
83
90
|
}
|