stream-chat-react 12.4.0 → 12.5.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.
Files changed (181) hide show
  1. package/dist/assets/icons/stream-chat-icons.eot +0 -0
  2. package/dist/assets/icons/stream-chat-icons.svg +4 -0
  3. package/dist/assets/icons/stream-chat-icons.ttf +0 -0
  4. package/dist/assets/icons/stream-chat-icons.woff +0 -0
  5. package/dist/assets/icons/stream-chat-icons.woff2 +0 -0
  6. package/dist/components/Attachment/components/ProgressBar.d.ts +2 -2
  7. package/dist/components/Attachment/components/ProgressBar.js +2 -1
  8. package/dist/components/Channel/Channel.d.ts +1 -1
  9. package/dist/components/Channel/Channel.js +36 -15
  10. package/dist/components/Channel/constants.d.ts +1 -0
  11. package/dist/components/Channel/constants.js +1 -0
  12. package/dist/components/Channel/hooks/useChannelContainerClasses.d.ts +2 -0
  13. package/dist/components/Channel/hooks/useChannelContainerClasses.js +10 -5
  14. package/dist/components/ChannelPreview/utils.js +35 -0
  15. package/dist/components/Chat/hooks/useChat.js +2 -0
  16. package/dist/components/Dialog/DialogAnchor.d.ts +1 -2
  17. package/dist/components/Dialog/DialogMenu.d.ts +3 -0
  18. package/dist/components/Dialog/DialogMenu.js +5 -0
  19. package/dist/components/Dialog/DialogPortal.d.ts +1 -1
  20. package/dist/components/Dialog/DialogPortal.js +4 -12
  21. package/dist/components/Dialog/FormDialog.d.ts +23 -0
  22. package/dist/components/Dialog/FormDialog.js +72 -0
  23. package/dist/components/Dialog/PromptDialog.d.ts +8 -0
  24. package/dist/components/Dialog/PromptDialog.js +7 -0
  25. package/dist/components/DragAndDrop/DragAndDropContainer.d.ts +7 -0
  26. package/dist/components/DragAndDrop/DragAndDropContainer.js +93 -0
  27. package/dist/components/Form/FieldError.d.ts +6 -0
  28. package/dist/components/Form/FieldError.js +3 -0
  29. package/dist/components/Form/SwitchField.d.ts +7 -0
  30. package/dist/components/Form/SwitchField.js +21 -0
  31. package/dist/components/InfiniteScrollPaginator/InfiniteScroll.d.ts +10 -0
  32. package/dist/components/InfiniteScrollPaginator/InfiniteScroll.js +10 -0
  33. package/dist/components/InfiniteScrollPaginator/InfiniteScrollPaginator.d.ts +10 -0
  34. package/dist/components/InfiniteScrollPaginator/InfiniteScrollPaginator.js +68 -0
  35. package/dist/components/InfiniteScrollPaginator/hooks/useCursorPaginator.d.ts +18 -0
  36. package/dist/components/InfiniteScrollPaginator/hooks/useCursorPaginator.js +41 -0
  37. package/dist/components/Message/MessageSimple.js +5 -1
  38. package/dist/components/Message/QuotedMessage.js +8 -4
  39. package/dist/components/Message/hooks/useUserRole.js +3 -2
  40. package/dist/components/Message/index.d.ts +1 -0
  41. package/dist/components/MessageInput/AttachmentSelector.d.ts +25 -0
  42. package/dist/components/MessageInput/AttachmentSelector.js +125 -0
  43. package/dist/components/MessageInput/EditMessageForm.js +1 -1
  44. package/dist/components/MessageInput/MessageInput.d.ts +2 -0
  45. package/dist/components/MessageInput/MessageInput.js +9 -4
  46. package/dist/components/MessageInput/MessageInputFlat.js +4 -10
  47. package/dist/components/MessageInput/QuotedMessagePreview.js +7 -3
  48. package/dist/components/MessageInput/hooks/useCreateMessageInputContext.js +3 -1
  49. package/dist/components/MessageInput/hooks/useSubmitHandler.js +4 -1
  50. package/dist/components/MessageInput/index.d.ts +1 -0
  51. package/dist/components/MessageInput/index.js +1 -0
  52. package/dist/components/Modal/ModalHeader.d.ts +8 -0
  53. package/dist/components/Modal/ModalHeader.js +6 -0
  54. package/dist/components/Poll/Poll.d.ts +7 -0
  55. package/dist/components/Poll/Poll.js +8 -0
  56. package/dist/components/Poll/PollActions/AddCommentForm.d.ts +7 -0
  57. package/dist/components/Poll/PollActions/AddCommentForm.js +24 -0
  58. package/dist/components/Poll/PollActions/EndPollDialog.d.ts +6 -0
  59. package/dist/components/Poll/PollActions/EndPollDialog.js +19 -0
  60. package/dist/components/Poll/PollActions/PollAction.d.ts +9 -0
  61. package/dist/components/Poll/PollActions/PollAction.js +5 -0
  62. package/dist/components/Poll/PollActions/PollActions.d.ts +17 -0
  63. package/dist/components/Poll/PollActions/PollActions.js +46 -0
  64. package/dist/components/Poll/PollActions/PollAnswerList.d.ts +7 -0
  65. package/dist/components/Poll/PollActions/PollAnswerList.js +28 -0
  66. package/dist/components/Poll/PollActions/PollOptionsFullList.d.ts +6 -0
  67. package/dist/components/Poll/PollActions/PollOptionsFullList.js +16 -0
  68. package/dist/components/Poll/PollActions/PollResults/PollOptionVotesList.d.ts +7 -0
  69. package/dist/components/Poll/PollActions/PollResults/PollOptionVotesList.js +18 -0
  70. package/dist/components/Poll/PollActions/PollResults/PollOptionWithLatestVotes.d.ts +9 -0
  71. package/dist/components/Poll/PollActions/PollResults/PollOptionWithLatestVotes.js +19 -0
  72. package/dist/components/Poll/PollActions/PollResults/PollOptionWithVotesHeader.d.ts +11 -0
  73. package/dist/components/Poll/PollActions/PollResults/PollOptionWithVotesHeader.js +18 -0
  74. package/dist/components/Poll/PollActions/PollResults/PollResults.d.ts +6 -0
  75. package/dist/components/Poll/PollActions/PollResults/PollResults.js +33 -0
  76. package/dist/components/Poll/PollActions/PollResults/index.d.ts +1 -0
  77. package/dist/components/Poll/PollActions/PollResults/index.js +1 -0
  78. package/dist/components/Poll/PollActions/SuggestPollOptionForm.d.ts +7 -0
  79. package/dist/components/Poll/PollActions/SuggestPollOptionForm.js +37 -0
  80. package/dist/components/Poll/PollActions/index.d.ts +7 -0
  81. package/dist/components/Poll/PollActions/index.js +7 -0
  82. package/dist/components/Poll/PollContent.d.ts +3 -0
  83. package/dist/components/Poll/PollContent.js +18 -0
  84. package/dist/components/Poll/PollCreationDialog/OptionFieldSet.d.ts +9 -0
  85. package/dist/components/Poll/PollCreationDialog/OptionFieldSet.js +70 -0
  86. package/dist/components/Poll/PollCreationDialog/PollCreationDialog.d.ts +5 -0
  87. package/dist/components/Poll/PollCreationDialog/PollCreationDialog.js +87 -0
  88. package/dist/components/Poll/PollCreationDialog/PollCreationDialogControls.d.ts +8 -0
  89. package/dist/components/Poll/PollCreationDialog/PollCreationDialogControls.js +44 -0
  90. package/dist/components/Poll/PollCreationDialog/index.d.ts +1 -0
  91. package/dist/components/Poll/PollCreationDialog/index.js +1 -0
  92. package/dist/components/Poll/PollCreationDialog/types.d.ts +21 -0
  93. package/dist/components/Poll/PollCreationDialog/types.js +1 -0
  94. package/dist/components/Poll/PollHeader.d.ts +3 -0
  95. package/dist/components/Poll/PollHeader.js +31 -0
  96. package/dist/components/Poll/PollOptionList.d.ts +6 -0
  97. package/dist/components/Poll/PollOptionList.js +14 -0
  98. package/dist/components/Poll/PollOptionSelector.d.ts +19 -0
  99. package/dist/components/Poll/PollOptionSelector.js +53 -0
  100. package/dist/components/Poll/PollVote.d.ts +12 -0
  101. package/dist/components/Poll/PollVote.js +31 -0
  102. package/dist/components/Poll/QuotedPoll.d.ts +3 -0
  103. package/dist/components/Poll/QuotedPoll.js +17 -0
  104. package/dist/components/Poll/constants.d.ts +3 -0
  105. package/dist/components/Poll/constants.js +3 -0
  106. package/dist/components/Poll/hooks/index.d.ts +2 -0
  107. package/dist/components/Poll/hooks/index.js +2 -0
  108. package/dist/components/Poll/hooks/useManagePollVotesRealtime.d.ts +4 -0
  109. package/dist/components/Poll/hooks/useManagePollVotesRealtime.js +36 -0
  110. package/dist/components/Poll/hooks/usePollAnswerPagination.d.ts +13 -0
  111. package/dist/components/Poll/hooks/usePollAnswerPagination.js +27 -0
  112. package/dist/components/Poll/hooks/usePollOptionVotesPagination.d.ts +13 -0
  113. package/dist/components/Poll/hooks/usePollOptionVotesPagination.js +27 -0
  114. package/dist/components/Poll/index.d.ts +10 -0
  115. package/dist/components/Poll/index.js +10 -0
  116. package/dist/components/Portal/Portal.d.ts +6 -0
  117. package/dist/components/Portal/Portal.js +14 -0
  118. package/dist/components/ReactFileUtilities/UploadButton.d.ts +11 -1
  119. package/dist/components/ReactFileUtilities/UploadButton.js +22 -4
  120. package/dist/components/Thread/Thread.js +1 -1
  121. package/dist/components/index.d.ts +2 -0
  122. package/dist/components/index.js +1 -0
  123. package/dist/context/AttachmentSelectorContext.d.ts +8 -0
  124. package/dist/context/AttachmentSelectorContext.js +6 -0
  125. package/dist/context/ComponentContext.d.ts +21 -5
  126. package/dist/context/PollContext.d.ts +11 -0
  127. package/dist/context/PollContext.js +7 -0
  128. package/dist/context/index.d.ts +1 -0
  129. package/dist/context/index.js +1 -0
  130. package/dist/css/v2/index.css +2 -2
  131. package/dist/css/v2/index.layout.css +2 -2
  132. package/dist/experimental/index.browser.cjs +129 -117
  133. package/dist/experimental/index.browser.cjs.map +4 -4
  134. package/dist/experimental/index.node.cjs +129 -117
  135. package/dist/experimental/index.node.cjs.map +4 -4
  136. package/dist/i18n/Streami18n.d.ts +45 -0
  137. package/dist/i18n/de.json +70 -25
  138. package/dist/i18n/en.json +46 -1
  139. package/dist/i18n/es.json +74 -25
  140. package/dist/i18n/fr.json +83 -34
  141. package/dist/i18n/hi.json +54 -9
  142. package/dist/i18n/it.json +75 -26
  143. package/dist/i18n/ja.json +46 -5
  144. package/dist/i18n/ko.json +46 -5
  145. package/dist/i18n/nl.json +59 -14
  146. package/dist/i18n/pt.json +66 -17
  147. package/dist/i18n/ru.json +66 -13
  148. package/dist/i18n/tr.json +77 -32
  149. package/dist/index.browser.cjs +4232 -1860
  150. package/dist/index.browser.cjs.map +4 -4
  151. package/dist/index.node.cjs +4172 -1773
  152. package/dist/index.node.cjs.map +4 -4
  153. package/dist/scss/v2/AttachmentPreviewList/AttachmentPreviewList-layout.scss +2 -2
  154. package/dist/scss/v2/AudioRecorder/AudioRecorder-layout.scss +64 -14
  155. package/dist/scss/v2/AudioRecorder/AudioRecorder-theme.scss +11 -1
  156. package/dist/scss/v2/Avatar/Avatar-layout.scss +4 -0
  157. package/dist/scss/v2/ChannelList/ChannelList-layout.scss +15 -0
  158. package/dist/scss/v2/Dialog/Dialog-layout.scss +54 -0
  159. package/dist/scss/v2/Dialog/Dialog-theme.scss +103 -0
  160. package/dist/scss/v2/DragAndDropContainer/DragAmdDropContainer-layout.scss +5 -0
  161. package/dist/scss/v2/DragAndDropContainer/DragAndDropContainer-theme.scss +47 -0
  162. package/dist/scss/v2/Form/Form-layout.scss +9 -0
  163. package/dist/scss/v2/Form/Form-theme.scss +17 -0
  164. package/dist/scss/v2/Icon/Icon-layout.scss +6 -1
  165. package/dist/scss/v2/InfiniteScrollPaginator/InfiniteScrollPaginator-layout.scss +4 -0
  166. package/dist/scss/v2/MessageActionsBox/MessageActionsBox-layout.scss +0 -9
  167. package/dist/scss/v2/MessageInput/MessageInput-layout.scss +29 -4
  168. package/dist/scss/v2/MessageInput/MessageInput-theme.scss +61 -0
  169. package/dist/scss/v2/Modal/Modal-layout.scss +31 -0
  170. package/dist/scss/v2/Modal/Modal-theme.scss +6 -0
  171. package/dist/scss/v2/Notification/MessageNotification-layout.scss +1 -1
  172. package/dist/scss/v2/Poll/Poll-layout.scss +488 -0
  173. package/dist/scss/v2/Poll/Poll-theme.scss +206 -0
  174. package/dist/scss/v2/_base.scss +4 -0
  175. package/dist/scss/v2/_global-theme-variables.scss +1 -1
  176. package/dist/scss/v2/_icons.scss +7 -0
  177. package/dist/scss/v2/index.layout.scss +4 -0
  178. package/dist/scss/v2/index.scss +4 -0
  179. package/dist/types/types.d.ts +6 -0
  180. package/dist/utils/getChannel.js +7 -3
  181. package/package.json +4 -4
package/dist/i18n/it.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
+ "Add a comment": "Aggiungi un commento",
3
+ "Add an option": "Aggiungi un'opzione",
2
4
  "Allow access to camera": "Consenti l'accesso alla fotocamera",
3
5
  "Allow access to microphone": "Consenti l'accesso al microfono",
6
+ "Allow comments": "Consenti i commenti",
7
+ "Allow option suggestion": "Consenti il suggerimento di opzioni",
4
8
  "An error has occurred during recording": "Si è verificato un errore durante la registrazione",
5
9
  "An error has occurred during the recording processing": "Si è verificato un errore durante l'elaborazione della registrazione",
10
+ "Anonymous": "Anonimo",
11
+ "Anonymous poll": "Sondaggio anonimo",
12
+ "Ask a question": "Fai una domanda",
6
13
  "Attach files": "Allega file",
7
14
  "Cancel": "Annulla",
8
15
  "Cannot seek in the recording": "Impossibile cercare nella registrazione",
@@ -10,8 +17,10 @@
10
17
  "Close": "Chiudi",
11
18
  "Close emoji picker": "Chiudi il selettore di emoji",
12
19
  "Commands matching": "Comandi corrispondenti",
13
- "Connection failure, reconnecting now...": "Connessione fallitta, riconnessione in corso...",
14
- "Delete": "Cancella",
20
+ "Connection failure, reconnecting now...": "Errore di connessione, riconnessione in corso...",
21
+ "Create": "Crea",
22
+ "Create poll": "Crea sondaggio",
23
+ "Delete": "Elimina",
15
24
  "Delivered": "Consegnato",
16
25
  "Download attachment {{ name }}": "Scarica l'allegato {{ name }}",
17
26
  "Drag your files here": "Trascina i tuoi file qui",
@@ -20,18 +29,20 @@
20
29
  "Edit message request failed": "Richiesta di modifica del messaggio non riuscita",
21
30
  "Edited": "Modificato",
22
31
  "Emoji matching": "Abbinamento emoji",
23
- "Empty message...": "Message vuoto...",
32
+ "Empty message...": "Messaggio vuoto...",
33
+ "End": "Fine",
34
+ "End vote": "Termina il voto",
24
35
  "Error adding flag": "Errore durante l'aggiunta del flag",
25
- "Error connecting to chat, refresh the page to try again.": "Errore di connessione alla chat, aggiorna la pagina per riprovare",
36
+ "Error connecting to chat, refresh the page to try again.": "Errore di connessione alla chat, aggiorna la pagina per riprovare.",
26
37
  "Error deleting message": "Errore durante l'eliminazione del messaggio",
27
38
  "Error fetching reactions": "Errore nel caricamento delle reazioni",
28
39
  "Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "Errore durante la marcatura del messaggio come non letto. Impossibile marcare messaggi non letti più vecchi dei più recenti 100 messaggi del canale.",
29
- "Error muting a user ...": "Errore silenziando un utente ...",
40
+ "Error muting a user ...": "Errore nel silenziare un utente ...",
30
41
  "Error pinning message": "Errore durante il blocco del messaggio",
31
42
  "Error removing message pin": "Errore durante la rimozione del PIN del messaggio",
32
43
  "Error reproducing the recording": "Errore durante la riproduzione della registrazione",
33
44
  "Error starting recording": "Errore durante l'avvio della registrazione",
34
- "Error unmuting a user ...": "Errore riattivando le notifiche per l'utente ...",
45
+ "Error unmuting a user ...": "Errore nel riattivare un utente ...",
35
46
  "Error uploading attachment": "Errore durante il caricamento dell'allegato",
36
47
  "Error uploading file": "Errore durante il caricamento del file",
37
48
  "Error uploading image": "Errore durante il caricamento dell'immagine",
@@ -40,57 +51,87 @@
40
51
  "Failed to jump to the first unread message": "Impossibile passare al primo messaggio non letto",
41
52
  "Failed to mark channel as read": "Impossibile contrassegnare il canale come letto",
42
53
  "Failed to play the recording": "Impossibile riprodurre la registrazione",
54
+ "File": "File",
43
55
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "Il file è troppo grande: {{ size }}, la dimensione massima di caricamento è {{ limit }}",
44
56
  "Flag": "Segnala",
45
57
  "Latest Messages": "Ultimi messaggi",
46
58
  "Load more": "Carica di più",
47
59
  "Mark as unread": "Contrassegna come non letto",
60
+ "Maximum number of votes (from 2 to 10)": "Numero massimo di voti (da 2 a 10)",
48
61
  "Menu": "Menù",
49
62
  "Message Failed · Click to try again": "Invio messaggio fallito · Clicca per riprovare",
50
63
  "Message Failed · Unauthorized": "Invio messaggio fallito · Non autorizzato",
51
64
  "Message deleted": "Messaggio cancellato",
52
- "Message has been successfully flagged": "Il messaggio é stato segnalato con successo",
65
+ "Message has been successfully flagged": "Il messaggio è stato segnalato con successo",
53
66
  "Message pinned": "Messaggio bloccato",
54
67
  "Messages have been marked unread.": "I messaggi sono stati contrassegnati come non letti.",
55
68
  "Missing permissions to upload the attachment": "Autorizzazioni mancanti per caricare l'allegato",
69
+ "Multiple answers": "Risposte multiple",
56
70
  "Mute": "Silenzia",
57
71
  "New": "Nuovo",
58
- "New Messages!": "Nuovo messaggio!",
72
+ "New Messages!": "Nuovi messaggi!",
59
73
  "No chats here yet…": "Non ci sono ancora messaggi qui...",
60
74
  "No results found": "Nessun risultato trovato",
75
+ "Nobody will be able to vote in this poll anymore.": "Nessuno potrà più votare in questo sondaggio.",
61
76
  "Nothing yet...": "Ancora niente...",
62
77
  "Ok": "Ok",
63
- "Open emoji picker": "Apri il selettore dellle emoji",
78
+ "Open emoji picker": "Apri il selettore di emoji",
79
+ "Option already exists": "L'opzione esiste già",
80
+ "Options": "Opzioni",
64
81
  "People matching": "Persone che corrispondono",
65
82
  "Pin": "Pin",
66
83
  "Pinned by": "Appuntato da",
67
- "Quote": "Quote",
84
+ "Poll": "Sondaggio",
85
+ "Poll comments": "Commenti del sondaggio",
86
+ "Poll options": "Opzioni del sondaggio",
87
+ "Poll results": "Risultati del sondaggio",
88
+ "Question": "Domanda",
89
+ "Quote": "Citazione",
68
90
  "Recording format is not supported and cannot be reproduced": "Il formato di registrazione non è supportato e non può essere riprodotto",
69
- "Reply": "Rispondere",
91
+ "Reply": "Rispondi",
70
92
  "Reply to Message": "Rispondi al messaggio",
71
- "Search": "Ricerca",
72
- "Searching...": "Ricerca in corso ...",
93
+ "Search": "Cerca",
94
+ "Searching...": "Ricerca in corso...",
95
+ "See all options ({{count}})_many": "Vedi tutte le opzioni ({{count}})",
96
+ "See all options ({{count}})_one": "Vedi tutte le opzioni ({{count}})",
97
+ "See all options ({{count}})_other": "Vedi tutte le opzioni ({{count}})",
98
+ "Select one": "Seleziona uno",
99
+ "Select one or more": "Seleziona uno o più",
100
+ "Select up to {{count}}_many": "Seleziona fino a {{count}}",
101
+ "Select up to {{count}}_one": "Seleziona fino a {{count}}",
102
+ "Select up to {{count}}_other": "Seleziona fino a {{count}}",
73
103
  "Send": "Invia",
74
104
  "Send Anyway": "Invia comunque",
75
- "Send message request failed": "Invia messaggio di richiesta non riuscito",
105
+ "Send message request failed": "Richiesta di invio messaggio non riuscita",
76
106
  "Sending...": "Invio in corso...",
107
+ "Show all": "Mostra tutto",
77
108
  "Shuffle": "Mescolare",
78
109
  "Slow Mode ON": "Modalità lenta attivata",
79
110
  "Some of the files will not be accepted": "Alcuni dei file non saranno accettati",
111
+ "Submit": "Invia",
112
+ "Suggest an option": "Suggerisci un'opzione",
80
113
  "This message did not meet our content guidelines": "Questo messaggio non soddisfa le nostre linee guida sui contenuti",
81
- "This message was deleted...": "Questo messaggio é stato cancellato",
82
- "Thread": "Thread",
83
- "To start recording, allow the camera access in your browser": "Per iniziare la registrazione, consenti l'accesso alla fotocamera nel tuo browser",
84
- "To start recording, allow the microphone access in your browser": "Per iniziare la registrazione, consenti l'accesso al microfono nel tuo browser",
114
+ "This message was deleted...": "Questo messaggio è stato cancellato...",
115
+ "Thread": "Discussione",
116
+ "To start recording, allow the camera access in your browser": "Per iniziare a registrare, consenti l'accesso alla fotocamera nel tuo browser",
117
+ "To start recording, allow the microphone access in your browser": "Per iniziare a registrare, consenti l'accesso al microfono nel tuo browser",
118
+ "Type a number from 2 to 10": "Digita un numero da 2 a 10",
85
119
  "Type your message": "Scrivi il tuo messaggio",
86
- "Unmute": "Riattiva le notifiche",
120
+ "Unmute": "Riattiva il notifiche",
87
121
  "Unpin": "Sblocca",
88
122
  "Unread messages": "Messaggi non letti",
89
123
  "Unsupported attachment": "Allegato non supportato",
124
+ "Update your comment": "Aggiorna il tuo commento",
90
125
  "Upload type: \"{{ type }}\" is not allowed": "Tipo di caricamento: \"{{ type }}\" non è consentito",
91
126
  "User uploaded content": "Contenuto caricato dall'utente",
127
+ "View results": "Vedi risultati",
128
+ "View {{count}} comments_many": "Visualizza {{count}} commenti",
129
+ "View {{count}} comments_one": "Visualizza {{count}} commento",
130
+ "View {{count}} comments_other": "Visualizza {{count}} commenti",
92
131
  "Voice message": "Messaggio vocale",
132
+ "Vote ended": "Voto terminato",
93
133
  "Wait until all attachments have uploaded": "Attendi il caricamento di tutti gli allegati",
134
+ "You": "Tu",
94
135
  "You have no channels currently": "Al momento non sono presenti canali",
95
136
  "You've reached the maximum number of files": "Hai raggiunto il numero massimo di file",
96
137
  "aria/Attachment": "Allegato",
@@ -107,11 +148,12 @@
107
148
  "aria/Load More Channels": "Carica altri canali",
108
149
  "aria/Menu": "Menu",
109
150
  "aria/Message Options": "Opzioni di messaggio",
151
+ "aria/Open Attachment Selector": "Apri selettore allegati",
110
152
  "aria/Open Message Actions Menu": "Apri il menu delle azioni di messaggio",
111
153
  "aria/Open Reaction Selector": "Apri il selettore di reazione",
112
154
  "aria/Open Thread": "Apri discussione",
113
155
  "aria/Reaction list": "Elenco delle reazioni",
114
- "aria/Remove attachment": "Rimuovere allegato",
156
+ "aria/Remove attachment": "Rimuovi allegato",
115
157
  "aria/Retry upload": "Riprova caricamento",
116
158
  "aria/Send": "Invia",
117
159
  "ban-command-args": "[@nomeutente] [testo]",
@@ -127,9 +169,11 @@
127
169
  "searchResultsCount_many": "{{ count }} risultati",
128
170
  "searchResultsCount_one": "1 risultato",
129
171
  "searchResultsCount_other": "{{ count }} risultati",
130
- "this content could not be displayed": "questo contenuto non puó essere mostrato",
172
+ "this content could not be displayed": "questo contenuto non può essere mostrato",
131
173
  "timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
132
174
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
175
+ "timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
176
+ "timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
133
177
  "timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
134
178
  "unban-command-args": "[@nomeutente]",
135
179
  "unban-command-description": "Togliere il divieto a un utente",
@@ -143,14 +187,19 @@
143
187
  "{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} e {{ secondUser }}",
144
188
  "{{ imageCount }} more": "+ {{ imageCount }}",
145
189
  "{{ memberCount }} members": "{{ memberCount }} membri",
146
- "{{ user }} has been muted": "{{ user }} é stato silenziato",
190
+ "{{ user }} has been muted": "{{ user }} è stato silenziato",
147
191
  "{{ user }} has been unmuted": "Notifiche riattivate per {{ user }}",
148
- "{{ user }} is typing...": "{{ user }} is typing...",
149
- "{{ users }} and more are typing...": "{{ users }} and more are typing...",
150
- "{{ users }} and {{ user }} are typing...": "{{ users }} and {{ user }} are typing...",
192
+ "{{ user }} is typing...": "{{ user }} sta digitando...",
193
+ "{{ users }} and more are typing...": "{{ users }} e altri stanno digitando...",
194
+ "{{ users }} and {{ user }} are typing...": "{{ users }} e {{ user }} stanno digitando...",
151
195
  "{{ watcherCount }} online": "{{ watcherCount }} online",
152
196
  "{{count}} unread_many": "{{count}} non letti",
153
197
  "{{count}} unread_one": "{{count}} non letto",
154
198
  "{{count}} unread_other": "{{count}} non letti",
155
- "🏙 Attachment...": "🏙 Allegato..."
199
+ "{{count}} votes_many": "{{count}} voti",
200
+ "{{count}} votes_one": "{{count}} voto",
201
+ "{{count}} votes_other": "{{count}} voti",
202
+ "🏙 Attachment...": "🏙 Allegato...",
203
+ "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} ha creato: {{ pollName}}",
204
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} ha votato: {{pollOptionText}}"
156
205
  }
package/dist/i18n/ja.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
+ "Add a comment": "コメントを追加",
3
+ "Add an option": "オプションを追加",
2
4
  "Allow access to camera": "カメラへのアクセスを許可する",
3
5
  "Allow access to microphone": "マイクロフォンへのアクセスを許可する",
6
+ "Allow comments": "コメントを許可",
7
+ "Allow option suggestion": "オプションの提案を許可",
4
8
  "An error has occurred during recording": "録音中にエラーが発生しました",
5
9
  "An error has occurred during the recording processing": "録音処理中にエラーが発生しました",
10
+ "Anonymous": "匿名",
11
+ "Anonymous poll": "匿名投票",
12
+ "Ask a question": "質問する",
6
13
  "Attach files": "ファイルを添付する",
7
14
  "Cancel": "キャンセル",
8
15
  "Cannot seek in the recording": "録音中にシークできません",
@@ -11,6 +18,8 @@
11
18
  "Close emoji picker": "絵文字ピッカーを閉める",
12
19
  "Commands matching": "一致するコマンド",
13
20
  "Connection failure, reconnecting now...": "接続が失敗しました。再接続中...",
21
+ "Create": "作成",
22
+ "Create poll": "投票を作成",
14
23
  "Delete": "消去",
15
24
  "Delivered": "配信しました",
16
25
  "Download attachment {{ name }}": "添付ファイル {{ name }} をダウンロード",
@@ -21,6 +30,8 @@
21
30
  "Edited": "編集済み",
22
31
  "Emoji matching": "絵文字マッチング",
23
32
  "Empty message...": "空のメッセージ...",
33
+ "End": "終了",
34
+ "End vote": "投票を終了",
24
35
  "Error adding flag": "フラグを追加のエラーが発生しました",
25
36
  "Error connecting to chat, refresh the page to try again.": "チャットへの接続ができませんでした。ページを更新してください。",
26
37
  "Error deleting message": "メッセージを削除するエラーが発生しました",
@@ -40,11 +51,13 @@
40
51
  "Failed to jump to the first unread message": "最初の未読メッセージにジャンプできませんでした",
41
52
  "Failed to mark channel as read": "チャンネルを既読にすることができませんでした",
42
53
  "Failed to play the recording": "録音の再生に失敗しました",
54
+ "File": "ファイル",
43
55
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "ファイルが大きすぎます:{{ size }}、最大アップロードサイズは{{ limit }}です",
44
56
  "Flag": "フラグ",
45
57
  "Latest Messages": "最新のメッセージ",
46
58
  "Load more": "もっと読み込む",
47
59
  "Mark as unread": "未読としてマーク",
60
+ "Maximum number of votes (from 2 to 10)": "最大投票数(2から10まで)",
48
61
  "Menu": "メニュー",
49
62
  "Message Failed · Click to try again": "メッセージが失敗しました · クリックして再試行してください",
50
63
  "Message Failed · Unauthorized": "メッセージが失敗しました · 許可されていません",
@@ -53,44 +66,66 @@
53
66
  "Message pinned": "メッセージにピンが付けられました",
54
67
  "Messages have been marked unread.": "メッセージは未読としてマークされました。",
55
68
  "Missing permissions to upload the attachment": "添付ファイルをアップロードするための許可がありません",
69
+ "Multiple answers": "複数回答",
56
70
  "Mute": "無音",
57
71
  "New": "新しい",
58
72
  "New Messages!": "新しいメッセージ!",
59
73
  "No chats here yet…": "ここにはまだチャットはありません…",
60
74
  "No results found": "結果が見つかりません",
75
+ "Nobody will be able to vote in this poll anymore.": "この投票では、誰も投票できなくなります。",
61
76
  "Nothing yet...": "まだ何もありません...",
62
77
  "Ok": "OK",
63
78
  "Open emoji picker": "絵文字ピッカーを開く",
79
+ "Option already exists": "オプションは既に存在します",
80
+ "Options": "オプション",
64
81
  "People matching": "一致する人",
65
82
  "Pin": "ピン",
66
83
  "Pinned by": "ピンした方",
67
- "Quote": "Quote",
84
+ "Poll": "投票",
85
+ "Poll comments": "投票コメント",
86
+ "Poll options": "投票オプション",
87
+ "Poll results": "投票結果",
88
+ "Question": "質問",
89
+ "Quote": "引用",
68
90
  "Recording format is not supported and cannot be reproduced": "録音形式はサポートされておらず、再生できません",
69
91
  "Reply": "返事",
70
92
  "Reply to Message": "メッセージに返信",
71
93
  "Search": "探す",
72
94
  "Searching...": "検索中...",
95
+ "See all options ({{count}})_other": "すべてのオプションを見る ({{count}})",
96
+ "Select one": "1つ選択",
97
+ "Select one or more": "1つ以上選択",
98
+ "Select up to {{count}}_other": "最大{{count}}まで選択",
73
99
  "Send": "送信",
74
100
  "Send Anyway": "とにかく送信する",
75
101
  "Send message request failed": "メッセージ送信リクエストが失敗しました",
76
102
  "Sending...": "送信中...",
103
+ "Show all": "すべて表示",
77
104
  "Shuffle": "シャッフル",
78
105
  "Slow Mode ON": "スローモードオン",
79
106
  "Some of the files will not be accepted": "一部のファイルは受け付けられません",
107
+ "Submit": "送信",
108
+ "Suggest an option": "オプションを提案",
80
109
  "This message did not meet our content guidelines": "このメッセージはコンテンツガイドラインに適合していません",
81
110
  "This message was deleted...": "このメッセージは削除されました...",
82
111
  "Thread": "スレッド",
83
112
  "To start recording, allow the camera access in your browser": "録音を開始するには、ブラウザーでカメラへのアクセスを許可してください",
84
113
  "To start recording, allow the microphone access in your browser": "録音を開始するには、ブラウザーでマイクロフォンへのアクセスを許可してください",
114
+ "Type a number from 2 to 10": "2から10までの数字を入力してください",
85
115
  "Type your message": "メッセージを入力してください",
86
116
  "Unmute": "無音を解除する",
87
117
  "Unpin": "ピンを解除する",
88
118
  "Unread messages": "未読メッセージ",
89
119
  "Unsupported attachment": "サポートされていない添付ファイル",
120
+ "Update your comment": "コメントを更新",
90
121
  "Upload type: \"{{ type }}\" is not allowed": "アップロードタイプ:\"{{ type }}\"は許可されていません",
91
122
  "User uploaded content": "ユーザーがアップロードしたコンテンツ",
123
+ "View results": "結果を表示",
124
+ "View {{count}} comments_other": "{{count}} コメントを表示",
92
125
  "Voice message": "ボイスメッセージ",
126
+ "Vote ended": "投票が終了しました",
93
127
  "Wait until all attachments have uploaded": "すべての添付ファイルがアップロードされるまでお待ちください",
128
+ "You": "あなた",
94
129
  "You have no channels currently": "現在チャンネルはありません",
95
130
  "You've reached the maximum number of files": "ファイルの最大数に達しました",
96
131
  "aria/Attachment": "添付ファイル",
@@ -107,6 +142,7 @@
107
142
  "aria/Load More Channels": "さらにチャンネルを読み込む",
108
143
  "aria/Menu": "メニュー",
109
144
  "aria/Message Options": "メッセージオプション",
145
+ "aria/Open Attachment Selector": "添付ファイル選択を開く",
110
146
  "aria/Open Message Actions Menu": "メッセージアクションメニューを開く",
111
147
  "aria/Open Reaction Selector": "リアクションセレクターを開く",
112
148
  "aria/Open Thread": "スレッドを開く",
@@ -128,6 +164,8 @@
128
164
  "this content could not be displayed": "このコンテンツは表示できませんでした",
129
165
  "timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
130
166
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
167
+ "timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
168
+ "timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
131
169
  "timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
132
170
  "unban-command-args": "[@ユーザ名]",
133
171
  "unban-command-description": "ユーザーの禁止を解除する",
@@ -141,10 +179,13 @@
141
179
  "{{ memberCount }} members": "{{ memberCount }} メンバー",
142
180
  "{{ user }} has been muted": "{{ user }} 無音されています",
143
181
  "{{ user }} has been unmuted": "{{ user }} 無音されていません",
144
- "{{ user }} is typing...": "{{ user }} is typing...",
145
- "{{ users }} and more are typing...": "{{ users }} and more are typing...",
146
- "{{ users }} and {{ user }} are typing...": "{{ users }} and {{ user }} are typing...",
182
+ "{{ user }} is typing...": "{{ user }} が入力中...",
183
+ "{{ users }} and more are typing...": "{{ users }} とその他が入力中...",
184
+ "{{ users }} and {{ user }} are typing...": "{{ users }} {{ user }} が入力中...",
147
185
  "{{ watcherCount }} online": "{{ watcherCount }} オンライン",
148
186
  "{{count}} unread_other": "{{count}} 未読",
149
- "🏙 Attachment...": "🏙 アタッチメント..."
187
+ "{{count}} votes_other": "{{count}} ",
188
+ "🏙 Attachment...": "🏙 アタッチメント...",
189
+ "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} が作成: {{ pollName}}",
190
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} が投票: {{pollOptionText}}"
150
191
  }
package/dist/i18n/ko.json CHANGED
@@ -1,8 +1,15 @@
1
1
  {
2
+ "Add a comment": "댓글 추가",
3
+ "Add an option": "옵션 추가",
2
4
  "Allow access to camera": "카메라에 대한 액세스 허용",
3
5
  "Allow access to microphone": "마이크로폰에 대한 액세스 허용",
6
+ "Allow comments": "댓글 허용",
7
+ "Allow option suggestion": "옵션 제안 허용",
4
8
  "An error has occurred during recording": "녹음 중 오류가 발생했습니다",
5
9
  "An error has occurred during the recording processing": "녹음 처리 중 오류가 발생했습니다",
10
+ "Anonymous": "익명",
11
+ "Anonymous poll": "익명 투표",
12
+ "Ask a question": "질문하기",
6
13
  "Attach files": "파일 첨부",
7
14
  "Cancel": "취소",
8
15
  "Cannot seek in the recording": "녹음에서 찾을 수 없습니다",
@@ -11,6 +18,8 @@
11
18
  "Close emoji picker": "이모티콘 선택기 닫기",
12
19
  "Commands matching": "일치하는 명령",
13
20
  "Connection failure, reconnecting now...": "연결 실패, 지금 다시 연결 중...",
21
+ "Create": "생성",
22
+ "Create poll": "투표 생성",
14
23
  "Delete": "삭제",
15
24
  "Delivered": "배달됨",
16
25
  "Download attachment {{ name }}": "첨부 파일 {{ name }} 다운로드",
@@ -21,6 +30,8 @@
21
30
  "Edited": "편집됨",
22
31
  "Emoji matching": "이모티콘 매칭",
23
32
  "Empty message...": "빈 메시지...",
33
+ "End": "종료",
34
+ "End vote": "투표 종료",
24
35
  "Error adding flag": "플래그를 추가하는 동안 오류가 발생했습니다.",
25
36
  "Error connecting to chat, refresh the page to try again.": "채팅에 연결하는 동안 오류가 발생했습니다. 페이지를 새로고침하여 다시 시도하세요.",
26
37
  "Error deleting message": "메시지를 삭제하는 중에 오류가 발생했습니다.",
@@ -40,11 +51,13 @@
40
51
  "Failed to jump to the first unread message": "첫 번째 읽지 않은 메시지로 이동하지 못했습니다",
41
52
  "Failed to mark channel as read": "채널을 읽음으로 표시하는 데 실패했습니다",
42
53
  "Failed to play the recording": "녹음을 재생하지 못했습니다",
54
+ "File": "파일",
43
55
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "파일이 너무 큽니다: {{ size }}, 최대 업로드 크기는 {{ limit }}입니다",
44
56
  "Flag": "플래그",
45
57
  "Latest Messages": "최신 메시지",
46
58
  "Load more": "더 불러오기",
47
59
  "Mark as unread": "읽지 않음으로 표시",
60
+ "Maximum number of votes (from 2 to 10)": "최대 투표 수 (2에서 10까지)",
48
61
  "Menu": "메뉴",
49
62
  "Message Failed · Click to try again": "메시지 실패 · 다시 시도하려면 클릭하세요.",
50
63
  "Message Failed · Unauthorized": "메시지 실패 · 승인되지 않음",
@@ -53,44 +66,66 @@
53
66
  "Message pinned": "메시지 핀했습니다",
54
67
  "Messages have been marked unread.": "메시지가 읽지 않음으로 표시되었습니다.",
55
68
  "Missing permissions to upload the attachment": "첨부 파일을 업로드하려면 권한이 필요합니다",
69
+ "Multiple answers": "복수 응답",
56
70
  "Mute": "무음",
57
71
  "New": "새로운",
58
72
  "New Messages!": "새 메시지!",
59
73
  "No chats here yet…": "아직 채팅이 없습니다...",
60
74
  "No results found": "검색 결과가 없습니다",
75
+ "Nobody will be able to vote in this poll anymore.": "이 투표에 더 이상 아무도 투표할 수 없습니다.",
61
76
  "Nothing yet...": "아직 아무것도...",
62
77
  "Ok": "확인",
63
78
  "Open emoji picker": "이모티콘 선택기 열기",
79
+ "Option already exists": "옵션이 이미 존재합니다",
80
+ "Options": "옵션",
64
81
  "People matching": "일치하는 사람",
65
82
  "Pin": "핀",
66
83
  "Pinned by": "핀했던 분:",
67
- "Quote": "Quote",
84
+ "Poll": "투표",
85
+ "Poll comments": "투표 댓글",
86
+ "Poll options": "투표 옵션",
87
+ "Poll results": "투표 결과",
88
+ "Question": "질문",
89
+ "Quote": "인용",
68
90
  "Recording format is not supported and cannot be reproduced": "녹음 형식이 지원되지 않으므로 재생할 수 없습니다",
69
91
  "Reply": "답장",
70
92
  "Reply to Message": "메시지에 답장",
71
93
  "Search": "찾다",
72
94
  "Searching...": "수색...",
95
+ "See all options ({{count}})_other": "모든 옵션 보기 ({{count}})",
96
+ "Select one": "하나 선택",
97
+ "Select one or more": "하나 이상 선택",
98
+ "Select up to {{count}}_other": "{{count}}개까지 선택",
73
99
  "Send": "보내다",
74
100
  "Send Anyway": "어쨌든 보내기",
75
101
  "Send message request failed": "메시지 보내기 요청 실패",
76
102
  "Sending...": "배상중...",
103
+ "Show all": "모두 보기",
77
104
  "Shuffle": "셔플",
78
105
  "Slow Mode ON": "슬로우 모드 켜짐",
79
106
  "Some of the files will not be accepted": "일부 파일은 허용되지 않을 수 있습니다",
107
+ "Submit": "제출",
108
+ "Suggest an option": "옵션 제안",
80
109
  "This message did not meet our content guidelines": "이 메시지는 콘텐츠 가이드라인을 충족하지 않습니다.",
81
110
  "This message was deleted...": "이 메시지는 삭제되었습니다...",
82
111
  "Thread": "스레드",
83
112
  "To start recording, allow the camera access in your browser": "브라우저에서 카메라 액세스를 허용하여 녹음을 시작합니다",
84
113
  "To start recording, allow the microphone access in your browser": "브라우저에서 마이크로폰 액세스를 허용하여 녹음을 시작합니다",
114
+ "Type a number from 2 to 10": "2에서 10 사이의 숫자를 입력하세요",
85
115
  "Type your message": "메시지 입력",
86
116
  "Unmute": "음소거 해제",
87
117
  "Unpin": "핀 해제",
88
118
  "Unread messages": "읽지 않은 메시지",
89
119
  "Unsupported attachment": "지원되지 않는 첨부 파일",
120
+ "Update your comment": "댓글 업데이트",
90
121
  "Upload type: \"{{ type }}\" is not allowed": "업로드 유형: \"{{ type }}\"은(는) 허용되지 않습니다.",
91
122
  "User uploaded content": "사용자 업로드 콘텐츠",
123
+ "View results": "결과 보기",
124
+ "View {{count}} comments_other": "{{count}}개의 댓글 보기",
92
125
  "Voice message": "음성 메시지",
126
+ "Vote ended": "투표 종료",
93
127
  "Wait until all attachments have uploaded": "모든 첨부 파일이 업로드될 때까지 기다립니다.",
128
+ "You": "당신",
94
129
  "You have no channels currently": "현재 채널이 없습니다.",
95
130
  "You've reached the maximum number of files": "최대 파일 수에 도달했습니다.",
96
131
  "aria/Attachment": "첨부 파일",
@@ -107,6 +142,7 @@
107
142
  "aria/Load More Channels": "더 많은 채널 불러오기",
108
143
  "aria/Menu": "메뉴",
109
144
  "aria/Message Options": "메시지 옵션",
145
+ "aria/Open Attachment Selector": "첨부 파일 선택기 열기",
110
146
  "aria/Open Message Actions Menu": "메시지 액션 메뉴 열기",
111
147
  "aria/Open Reaction Selector": "반응 선택기 열기",
112
148
  "aria/Open Thread": "스레드 열기",
@@ -128,6 +164,8 @@
128
164
  "this content could not be displayed": "이 콘텐츠를 표시할 수 없습니다",
129
165
  "timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
130
166
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
167
+ "timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
168
+ "timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
131
169
  "timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
132
170
  "unban-command-args": "[@사용자이름]",
133
171
  "unban-command-description": "사용자 차단 해제",
@@ -141,10 +179,13 @@
141
179
  "{{ memberCount }} members": "{{ memberCount }}명",
142
180
  "{{ user }} has been muted": "{{ user }} 음소거되었습니다",
143
181
  "{{ user }} has been unmuted": "{{ user }} 음소거가 해제되었습니다",
144
- "{{ user }} is typing...": "{{ user }} is typing...",
145
- "{{ users }} and more are typing...": "{{ users }} and more are typing...",
146
- "{{ users }} and {{ user }} are typing...": "{{ users }} and {{ user }} are typing...",
182
+ "{{ user }} is typing...": "{{ user }}이(가) 입력 중입니다...",
183
+ "{{ users }} and more are typing...": "{{ users }}와(과) 많은 사람들이 입력 중입니다...",
184
+ "{{ users }} and {{ user }} are typing...": "{{ users }}와(과) {{ user }}이(가) 입력 중입니다...",
147
185
  "{{ watcherCount }} online": "{{ watcherCount }} 온라인",
148
186
  "{{count}} unread_other": "{{count}} 읽지 않음",
149
- "🏙 Attachment...": "🏙 부착..."
187
+ "{{count}} votes_other": "{{count}} 투표",
188
+ "🏙 Attachment...": "🏙 부착...",
189
+ "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}}이(가) 생성함: {{ pollName}}",
190
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}}이(가) 투표함: {{pollOptionText}}"
150
191
  }