stream-chat-react 13.0.5 → 13.1.1
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/dist/components/Channel/Channel.d.ts +1 -1
- package/dist/components/Channel/Channel.js +7 -0
- package/dist/components/ChannelList/hooks/useChannelListShape.js +3 -3
- package/dist/components/Chat/hooks/useChat.js +7 -3
- package/dist/components/Dialog/ButtonWithSubmenu.d.ts +11 -0
- package/dist/components/Dialog/ButtonWithSubmenu.js +88 -0
- package/dist/components/Dialog/index.d.ts +1 -0
- package/dist/components/Dialog/index.js +1 -0
- package/dist/components/Loading/LoadingErrorIndicator.js +1 -1
- package/dist/components/Message/Message.js +3 -2
- package/dist/components/Message/MessageIsThreadReplyInChannelButtonIndicator.d.ts +2 -0
- package/dist/components/Message/MessageIsThreadReplyInChannelButtonIndicator.js +63 -0
- package/dist/components/Message/MessageSimple.js +11 -4
- package/dist/components/Message/ReminderNotification.d.ts +6 -0
- package/dist/components/Message/ReminderNotification.js +30 -0
- package/dist/components/Message/hooks/index.d.ts +1 -0
- package/dist/components/Message/hooks/index.js +1 -0
- package/dist/components/Message/hooks/useMessageReminder.d.ts +1 -0
- package/dist/components/Message/hooks/useMessageReminder.js +11 -0
- package/dist/components/Message/index.d.ts +1 -0
- package/dist/components/Message/index.js +1 -0
- package/dist/components/Message/utils.d.ts +4 -2
- package/dist/components/Message/utils.js +11 -1
- package/dist/components/MessageActions/MessageActionsBox.js +12 -6
- package/dist/components/MessageActions/RemindMeSubmenu.d.ts +6 -0
- package/dist/components/MessageActions/RemindMeSubmenu.js +18 -0
- package/dist/components/MessageInput/MessageInputFlat.js +5 -3
- package/dist/components/MessageInput/SendToChannelCheckbox.d.ts +2 -0
- package/dist/components/MessageInput/SendToChannelCheckbox.js +20 -0
- package/dist/components/MessageList/MessageListNotifications.js +8 -3
- package/dist/components/MessageList/VirtualizedMessageListComponents.d.ts +1 -1
- package/dist/components/MessageList/VirtualizedMessageListComponents.js +4 -0
- package/dist/components/Notifications/hooks/index.d.ts +1 -0
- package/dist/components/Notifications/hooks/index.js +1 -0
- package/dist/components/Notifications/hooks/useNotifications.d.ts +2 -0
- package/dist/components/Notifications/hooks/useNotifications.js +10 -0
- package/dist/components/Notifications/index.d.ts +1 -0
- package/dist/components/Notifications/index.js +1 -0
- package/dist/components/TextareaComposer/TextareaComposer.js +4 -0
- package/dist/components/Thread/LegacyThreadContext.d.ts +8 -0
- package/dist/components/Thread/LegacyThreadContext.js +3 -0
- package/dist/components/Thread/Thread.d.ts +0 -4
- package/dist/components/Thread/Thread.js +2 -3
- package/dist/components/Thread/index.d.ts +1 -0
- package/dist/components/Thread/index.js +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/context/ComponentContext.d.ts +7 -1
- package/dist/css/v2/index.css +1 -1
- package/dist/css/v2/index.layout.css +1 -1
- package/dist/experimental/MessageActions/defaults.d.ts +1 -1
- package/dist/experimental/MessageActions/defaults.js +27 -4
- package/dist/experimental/index.browser.cjs +382 -169
- package/dist/experimental/index.browser.cjs.map +4 -4
- package/dist/experimental/index.node.cjs +382 -169
- package/dist/experimental/index.node.cjs.map +4 -4
- package/dist/i18n/Streami18n.d.ts +32 -3
- package/dist/i18n/Streami18n.js +34 -5
- package/dist/i18n/TranslationBuilder/TranslationBuilder.d.ts +35 -0
- package/dist/i18n/TranslationBuilder/TranslationBuilder.js +92 -0
- package/dist/i18n/TranslationBuilder/index.d.ts +2 -0
- package/dist/i18n/TranslationBuilder/index.js +2 -0
- package/dist/i18n/TranslationBuilder/notifications/NotificationTranslationTopic.d.ts +11 -0
- package/dist/i18n/TranslationBuilder/notifications/NotificationTranslationTopic.js +27 -0
- package/dist/i18n/TranslationBuilder/notifications/attachmentUpload.d.ts +4 -0
- package/dist/i18n/TranslationBuilder/notifications/attachmentUpload.js +32 -0
- package/dist/i18n/TranslationBuilder/notifications/index.d.ts +2 -0
- package/dist/i18n/TranslationBuilder/notifications/index.js +2 -0
- package/dist/i18n/TranslationBuilder/notifications/pollComposition.d.ts +3 -0
- package/dist/i18n/TranslationBuilder/notifications/pollComposition.js +9 -0
- package/dist/i18n/TranslationBuilder/notifications/types.d.ts +4 -0
- package/dist/i18n/TranslationBuilder/notifications/types.js +1 -0
- package/dist/i18n/de.json +23 -0
- package/dist/i18n/en.json +23 -0
- package/dist/i18n/es.json +23 -0
- package/dist/i18n/fr.json +23 -0
- package/dist/i18n/hi.json +23 -0
- package/dist/i18n/index.d.ts +1 -0
- package/dist/i18n/index.js +1 -0
- package/dist/i18n/it.json +23 -0
- package/dist/i18n/ja.json +23 -0
- package/dist/i18n/ko.json +23 -0
- package/dist/i18n/nl.json +23 -0
- package/dist/i18n/pt.json +23 -0
- package/dist/i18n/ru.json +23 -0
- package/dist/i18n/tr.json +23 -0
- package/dist/i18n/types.d.ts +54 -0
- package/dist/i18n/utils.d.ts +1 -1
- package/dist/i18n/utils.js +8 -2
- package/dist/index.browser.cjs +3617 -2162
- package/dist/index.browser.cjs.map +4 -4
- package/dist/index.node.cjs +3674 -2156
- package/dist/index.node.cjs.map +4 -4
- package/dist/plugins/Emojis/index.browser.cjs +1 -2
- package/dist/plugins/Emojis/index.browser.cjs.map +3 -3
- package/dist/plugins/Emojis/index.node.cjs +1 -2
- package/dist/plugins/Emojis/index.node.cjs.map +3 -3
- package/dist/scss/v2/Message/Message-layout.scss +11 -1
- package/dist/scss/v2/Message/Message-theme.scss +31 -1
- package/dist/scss/v2/MessageActionsBox/MessageActionsBox-theme.scss +8 -0
- package/dist/scss/v2/MessageInput/MessageInput-layout.scss +19 -0
- package/dist/scss/v2/MessageInput/MessageInput-theme.scss +11 -0
- package/package.json +6 -8
package/dist/i18n/en.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "Allow access to microphone",
|
|
7
7
|
"Allow comments": "Allow comments",
|
|
8
8
|
"Allow option suggestion": "Allow option suggestion",
|
|
9
|
+
"Also send as a direct message": "Also send as a direct message",
|
|
10
|
+
"Also send in channel": "Also send in channel",
|
|
9
11
|
"An error has occurred during recording": "An error has occurred during recording",
|
|
10
12
|
"An error has occurred during the recording processing": "An error has occurred during the recording processing",
|
|
11
13
|
"Anonymous": "Anonymous",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "Archive",
|
|
14
16
|
"Ask a question": "Ask a question",
|
|
15
17
|
"Attach files": "Attach files",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "Attachment upload blocked due to {{reason}}",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "Attachment upload failed due to {{reason}}",
|
|
16
20
|
"Cancel": "Cancel",
|
|
17
21
|
"Cannot seek in the recording": "Cannot seek in the recording",
|
|
18
22
|
"Channel Missing": "Channel Missing",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "Download attachment {{ name }}",
|
|
28
32
|
"Drag your files here": "Drag your files here",
|
|
29
33
|
"Drag your files here to add to your post": "Drag your files here to add to your post",
|
|
34
|
+
"Due since {{ dueSince }}": "Due since {{ dueSince }}",
|
|
35
|
+
"Due {{ timeLeft }}": "Due {{ timeLeft }}",
|
|
30
36
|
"Edit Message": "Edit Message",
|
|
31
37
|
"Edit message request failed": "Edit message request failed",
|
|
32
38
|
"Edited": "Edited",
|
|
@@ -50,6 +56,8 @@
|
|
|
50
56
|
"Error uploading image": "Error uploading image",
|
|
51
57
|
"Error · Unsent": "Error · Unsent",
|
|
52
58
|
"Error: {{ errorMessage }}": "Error: {{ errorMessage }}",
|
|
59
|
+
"Failed to create the poll": "Failed to create the poll",
|
|
60
|
+
"Failed to create the poll due to {{reason}}": "Failed to create the poll due to {{reason}}",
|
|
53
61
|
"Failed to jump to the first unread message": "Failed to jump to the first unread message",
|
|
54
62
|
"Failed to mark channel as read": "Failed to mark channel as read",
|
|
55
63
|
"Failed to play the recording": "Failed to play the recording",
|
|
@@ -93,8 +101,12 @@
|
|
|
93
101
|
"Question": "Question",
|
|
94
102
|
"Quote": "Quote",
|
|
95
103
|
"Recording format is not supported and cannot be reproduced": "Recording format is not supported and cannot be reproduced",
|
|
104
|
+
"Remind Me": "Remind Me",
|
|
105
|
+
"Remove reminder": "Remove reminder",
|
|
96
106
|
"Reply": "Reply",
|
|
97
107
|
"Reply to Message": "Reply to Message",
|
|
108
|
+
"Save for later": "Save for later",
|
|
109
|
+
"Saved for later": "Saved for later",
|
|
98
110
|
"Search": "Search",
|
|
99
111
|
"Searching...": "Searching...",
|
|
100
112
|
"See all options ({{count}})_one": "See all options ({{count}})",
|
|
@@ -118,6 +130,8 @@
|
|
|
118
130
|
"This message did not meet our content guidelines": "This message did not meet our content guidelines",
|
|
119
131
|
"This message was deleted...": "This message was deleted...",
|
|
120
132
|
"Thread": "Thread",
|
|
133
|
+
"Thread has not been found": "Thread has not been found",
|
|
134
|
+
"Thread reply": "Thread reply",
|
|
121
135
|
"To start recording, allow the camera access in your browser": "To start recording, allow the camera access in your browser",
|
|
122
136
|
"To start recording, allow the microphone access in your browser": "To start recording, allow the microphone access in your browser",
|
|
123
137
|
"Type a number from 2 to 10": "Type a number from 2 to 10",
|
|
@@ -158,13 +172,17 @@
|
|
|
158
172
|
"aria/Open Reaction Selector": "Open Reaction Selector",
|
|
159
173
|
"aria/Open Thread": "Open Thread",
|
|
160
174
|
"aria/Reaction list": "Reaction list",
|
|
175
|
+
"aria/Remind Me Options": "aria/Remind Me Options",
|
|
161
176
|
"aria/Remove attachment": "Remove attachment",
|
|
162
177
|
"aria/Retry upload": "Retry upload",
|
|
163
178
|
"aria/Search results": "Search results",
|
|
164
179
|
"aria/Search results header filter button": "Search results header filter button",
|
|
165
180
|
"aria/Send": "Send",
|
|
166
181
|
"aria/Stop AI Generation": "Stop AI Generation",
|
|
182
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
183
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
167
184
|
"live": "live",
|
|
185
|
+
"network error": "network error",
|
|
168
186
|
"replyCount_one": "1 reply",
|
|
169
187
|
"replyCount_other": "{{ count }} replies",
|
|
170
188
|
"search-results-header-filter-source-button-label--channels": "channels",
|
|
@@ -172,14 +190,19 @@
|
|
|
172
190
|
"search-results-header-filter-source-button-label--users": "users",
|
|
173
191
|
"searchResultsCount_one": "1 result",
|
|
174
192
|
"searchResultsCount_other": "{{ count }} results",
|
|
193
|
+
"size limit": "size limit",
|
|
175
194
|
"this content could not be displayed": "this content could not be displayed",
|
|
176
195
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
177
196
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
178
197
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
179
198
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
199
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
180
200
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
201
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
202
|
+
"unknown error": "unknown error",
|
|
181
203
|
"unreadMessagesSeparatorText_one": "1 unread message",
|
|
182
204
|
"unreadMessagesSeparatorText_other": "{{count}} unread messages",
|
|
205
|
+
"unsupported file type": "unsupported file type",
|
|
183
206
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} and {{ moreCount }} more",
|
|
184
207
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }}, and {{ lastUser }}",
|
|
185
208
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} and {{ secondUser }}",
|
package/dist/i18n/es.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "Permitir acceso al micrófono",
|
|
7
7
|
"Allow comments": "Permitir comentarios",
|
|
8
8
|
"Allow option suggestion": "Permitir sugerencia de opciones",
|
|
9
|
+
"Also send as a direct message": "También enviar como mensaje directo",
|
|
10
|
+
"Also send in channel": "También enviar en el canal",
|
|
9
11
|
"An error has occurred during recording": "Se ha producido un error durante la grabación",
|
|
10
12
|
"An error has occurred during the recording processing": "Se ha producido un error durante el procesamiento de la grabación",
|
|
11
13
|
"Anonymous": "Anónimo",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "Archivo",
|
|
14
16
|
"Ask a question": "Hacer una pregunta",
|
|
15
17
|
"Attach files": "Adjuntar archivos",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "Carga de adjunto bloqueada debido a {{reason}}",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "Carga de adjunto fallida debido a {{reason}}",
|
|
16
20
|
"Cancel": "Cancelar",
|
|
17
21
|
"Cannot seek in the recording": "No se puede buscar en la grabación",
|
|
18
22
|
"Channel Missing": "Falta canal",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "Descargar adjunto {{ name }}",
|
|
28
32
|
"Drag your files here": "Arrastra tus archivos aquí",
|
|
29
33
|
"Drag your files here to add to your post": "Arrastra tus archivos aquí para agregarlos a tu publicación",
|
|
34
|
+
"Due since {{ dueSince }}": "Vencido desde {{ dueSince }}",
|
|
35
|
+
"Due {{ timeLeft }}": "Vence en {{ timeLeft }}",
|
|
30
36
|
"Edit Message": "Editar mensaje",
|
|
31
37
|
"Edit message request failed": "Error al editar la solicitud de mensaje",
|
|
32
38
|
"Edited": "Editado",
|
|
@@ -50,6 +56,8 @@
|
|
|
50
56
|
"Error uploading image": "Error al subir la imagen",
|
|
51
57
|
"Error · Unsent": "Error · No enviado",
|
|
52
58
|
"Error: {{ errorMessage }}": "Error: {{ errorMessage }}",
|
|
59
|
+
"Failed to create the poll": "Error al crear la encuesta",
|
|
60
|
+
"Failed to create the poll due to {{reason}}": "No se pudo crear la encuesta debido a {{reason}}",
|
|
53
61
|
"Failed to jump to the first unread message": "Error al saltar al primer mensaje no leído",
|
|
54
62
|
"Failed to mark channel as read": "Error al marcar el canal como leído",
|
|
55
63
|
"Failed to play the recording": "No se pudo reproducir la grabación",
|
|
@@ -93,8 +101,12 @@
|
|
|
93
101
|
"Question": "Pregunta",
|
|
94
102
|
"Quote": "Citar",
|
|
95
103
|
"Recording format is not supported and cannot be reproduced": "El formato de grabación no es compatible y no se puede reproducir",
|
|
104
|
+
"Remind Me": "Recordarme",
|
|
105
|
+
"Remove reminder": "Eliminar recordatorio",
|
|
96
106
|
"Reply": "Responder",
|
|
97
107
|
"Reply to Message": "Responder al mensaje",
|
|
108
|
+
"Save for later": "Guardar para más tarde",
|
|
109
|
+
"Saved for later": "Guardado para más tarde",
|
|
98
110
|
"Search": "Buscar",
|
|
99
111
|
"Searching...": "Buscando...",
|
|
100
112
|
"See all options ({{count}})_many": "Ver todas las opciones ({{count}})",
|
|
@@ -120,6 +132,8 @@
|
|
|
120
132
|
"This message did not meet our content guidelines": "Este mensaje no cumple con nuestras directrices de contenido",
|
|
121
133
|
"This message was deleted...": "Este mensaje fue eliminado...",
|
|
122
134
|
"Thread": "Hilo",
|
|
135
|
+
"Thread has not been found": "No se ha encontrado el hilo",
|
|
136
|
+
"Thread reply": "Respuesta en hilo",
|
|
123
137
|
"To start recording, allow the camera access in your browser": "Para comenzar a grabar, permita el acceso a la cámara en su navegador",
|
|
124
138
|
"To start recording, allow the microphone access in your browser": "Para comenzar a grabar, permita el acceso al micrófono en su navegador",
|
|
125
139
|
"Type a number from 2 to 10": "Escribe un número del 2 al 10",
|
|
@@ -161,6 +175,7 @@
|
|
|
161
175
|
"aria/Open Reaction Selector": "Abrir selector de reacciones",
|
|
162
176
|
"aria/Open Thread": "Abrir hilo",
|
|
163
177
|
"aria/Reaction list": "Lista de reacciones",
|
|
178
|
+
"aria/Remind Me Options": "Opciones de recordatorio",
|
|
164
179
|
"aria/Remove attachment": "Eliminar adjunto",
|
|
165
180
|
"aria/Retry upload": "Reintentar carga",
|
|
166
181
|
"aria/Search results": "Resultados de búsqueda",
|
|
@@ -169,11 +184,14 @@
|
|
|
169
184
|
"aria/Stop AI Generation": "Detener generación de IA",
|
|
170
185
|
"ban-command-args": "[@usuario] [texto]",
|
|
171
186
|
"ban-command-description": "Prohibir a un usuario",
|
|
187
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
188
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
172
189
|
"giphy-command-args": "[texto]",
|
|
173
190
|
"giphy-command-description": "Publicar un gif aleatorio en el canal",
|
|
174
191
|
"live": "En vivo",
|
|
175
192
|
"mute-command-args": "[@usuario]",
|
|
176
193
|
"mute-command-description": "Silenciar a un usuario",
|
|
194
|
+
"network error": "error de red",
|
|
177
195
|
"replyCount_many": "{{ count }} respuestas",
|
|
178
196
|
"replyCount_one": "1 respuesta",
|
|
179
197
|
"replyCount_other": "{{ count }} respuestas",
|
|
@@ -183,19 +201,24 @@
|
|
|
183
201
|
"searchResultsCount_many": "{{ count }} resultados",
|
|
184
202
|
"searchResultsCount_one": "1 resultado",
|
|
185
203
|
"searchResultsCount_other": "{{ count }} resultados",
|
|
204
|
+
"size limit": "límite de tamaño",
|
|
186
205
|
"this content could not be displayed": "Este contenido no se pudo mostrar",
|
|
187
206
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
188
207
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
189
208
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
190
209
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
210
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
191
211
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
212
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
192
213
|
"unban-command-args": "[@usuario]",
|
|
193
214
|
"unban-command-description": "Quitar la prohibición a un usuario",
|
|
215
|
+
"unknown error": "error desconocido",
|
|
194
216
|
"unmute-command-args": "[@usuario]",
|
|
195
217
|
"unmute-command-description": "Desactivar el silencio de un usuario",
|
|
196
218
|
"unreadMessagesSeparatorText_many": "{{count}} mensajes no leídos",
|
|
197
219
|
"unreadMessagesSeparatorText_one": "1 mensaje no leído",
|
|
198
220
|
"unreadMessagesSeparatorText_other": "{{count}} mensajes no leídos",
|
|
221
|
+
"unsupported file type": "tipo de archivo no compatible",
|
|
199
222
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} y {{ moreCount }} más",
|
|
200
223
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} y {{ lastUser }}",
|
|
201
224
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} y {{ secondUser }}",
|
package/dist/i18n/fr.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "Autoriser l'accès au microphone",
|
|
7
7
|
"Allow comments": "Autoriser les commentaires",
|
|
8
8
|
"Allow option suggestion": "Autoriser la suggestion d'options",
|
|
9
|
+
"Also send as a direct message": "Également envoyer en message direct",
|
|
10
|
+
"Also send in channel": "Également envoyer dans le canal",
|
|
9
11
|
"An error has occurred during recording": "Une erreur s'est produite pendant l'enregistrement",
|
|
10
12
|
"An error has occurred during the recording processing": "Une erreur s'est produite pendant le traitement de l'enregistrement",
|
|
11
13
|
"Anonymous": "Anonyme",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "Archive",
|
|
14
16
|
"Ask a question": "Poser une question",
|
|
15
17
|
"Attach files": "Joindre des fichiers",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "Téléchargement de pièce jointe bloqué en raison de {{reason}}",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "Échec du téléchargement de la pièce jointe en raison de {{reason}}",
|
|
16
20
|
"Cancel": "Annuler",
|
|
17
21
|
"Cannot seek in the recording": "Impossible de rechercher dans l'enregistrement",
|
|
18
22
|
"Channel Missing": "Canal Manquant",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "Télécharger la pièce jointe {{ name }}",
|
|
28
32
|
"Drag your files here": "Glissez vos fichiers ici",
|
|
29
33
|
"Drag your files here to add to your post": "Glissez vos fichiers ici pour les ajouter à votre publication",
|
|
34
|
+
"Due since {{ dueSince }}": "Échéance depuis {{ dueSince }}",
|
|
35
|
+
"Due {{ timeLeft }}": "Échéance dans {{ timeLeft }}",
|
|
30
36
|
"Edit Message": "Éditer un message",
|
|
31
37
|
"Edit message request failed": "Échec de la demande de modification du message",
|
|
32
38
|
"Edited": "Modifié",
|
|
@@ -50,6 +56,8 @@
|
|
|
50
56
|
"Error uploading image": "Erreur lors de l'envoi de l'image",
|
|
51
57
|
"Error · Unsent": "Erreur - Non envoyé",
|
|
52
58
|
"Error: {{ errorMessage }}": "Erreur : {{ errorMessage }}",
|
|
59
|
+
"Failed to create the poll": "Échec de la création du sondage",
|
|
60
|
+
"Failed to create the poll due to {{reason}}": "Échec de la création du sondage en raison de {{reason}}",
|
|
53
61
|
"Failed to jump to the first unread message": "Échec du saut vers le premier message non lu",
|
|
54
62
|
"Failed to mark channel as read": "Échec du marquage du canal comme lu",
|
|
55
63
|
"Failed to play the recording": "Impossible de lire l'enregistrement",
|
|
@@ -93,8 +101,12 @@
|
|
|
93
101
|
"Question": "Question",
|
|
94
102
|
"Quote": "Citer",
|
|
95
103
|
"Recording format is not supported and cannot be reproduced": "Le format d'enregistrement n'est pas pris en charge et ne peut pas être reproduit",
|
|
104
|
+
"Remind Me": "Me rappeler",
|
|
105
|
+
"Remove reminder": "Supprimer le rappel",
|
|
96
106
|
"Reply": "Répondre",
|
|
97
107
|
"Reply to Message": "Répondre au message",
|
|
108
|
+
"Save for later": "Enregistrer pour plus tard",
|
|
109
|
+
"Saved for later": "Enregistré pour plus tard",
|
|
98
110
|
"Search": "Rechercher",
|
|
99
111
|
"Searching...": "Recherche en cours...",
|
|
100
112
|
"See all options ({{count}})_many": "Voir toutes les options ({{count}})",
|
|
@@ -120,6 +132,8 @@
|
|
|
120
132
|
"This message did not meet our content guidelines": "Ce message ne respecte pas nos directives de contenu",
|
|
121
133
|
"This message was deleted...": "Ce message a été supprimé...",
|
|
122
134
|
"Thread": "Fil de discussion",
|
|
135
|
+
"Thread has not been found": "Le fil de discussion n'a pas été trouvé",
|
|
136
|
+
"Thread reply": "Réponse dans le fil",
|
|
123
137
|
"To start recording, allow the camera access in your browser": "Pour commencer l'enregistrement, autorisez l'accès à la caméra dans votre navigateur",
|
|
124
138
|
"To start recording, allow the microphone access in your browser": "Pour commencer l'enregistrement, autorisez l'accès au microphone dans votre navigateur",
|
|
125
139
|
"Type a number from 2 to 10": "Tapez un nombre de 2 à 10",
|
|
@@ -161,6 +175,7 @@
|
|
|
161
175
|
"aria/Open Reaction Selector": "Ouvrir le sélecteur de réactions",
|
|
162
176
|
"aria/Open Thread": "Ouvrir le fil",
|
|
163
177
|
"aria/Reaction list": "Liste des réactions",
|
|
178
|
+
"aria/Remind Me Options": "Options de rappel",
|
|
164
179
|
"aria/Remove attachment": "Supprimer la pièce jointe",
|
|
165
180
|
"aria/Retry upload": "Réessayer le téléchargement",
|
|
166
181
|
"aria/Search results": "Résultats de recherche",
|
|
@@ -169,11 +184,14 @@
|
|
|
169
184
|
"aria/Stop AI Generation": "Arrêter la génération d'IA",
|
|
170
185
|
"ban-command-args": "[@nomdutilisateur] [texte]",
|
|
171
186
|
"ban-command-description": "Bannir un utilisateur",
|
|
187
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
188
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
172
189
|
"giphy-command-args": "[texte]",
|
|
173
190
|
"giphy-command-description": "Poster un GIF aléatoire dans le canal",
|
|
174
191
|
"live": "en direct",
|
|
175
192
|
"mute-command-args": "[@nomdutilisateur]",
|
|
176
193
|
"mute-command-description": "Muter un utilisateur",
|
|
194
|
+
"network error": "erreur réseau",
|
|
177
195
|
"replyCount_many": "{{ count }} réponses",
|
|
178
196
|
"replyCount_one": "1 réponse",
|
|
179
197
|
"replyCount_other": "{{ count }} réponses",
|
|
@@ -183,19 +201,24 @@
|
|
|
183
201
|
"searchResultsCount_many": "{{ count }} résultats",
|
|
184
202
|
"searchResultsCount_one": "1 résultat",
|
|
185
203
|
"searchResultsCount_other": "{{ count }} résultats",
|
|
204
|
+
"size limit": "limite de taille",
|
|
186
205
|
"this content could not be displayed": "ce contenu n'a pas pu être affiché",
|
|
187
206
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
188
207
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
189
208
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
190
209
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
210
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
191
211
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
212
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
192
213
|
"unban-command-args": "[@nomdutilisateur]",
|
|
193
214
|
"unban-command-description": "Débannir un utilisateur",
|
|
215
|
+
"unknown error": "erreur inconnue",
|
|
194
216
|
"unmute-command-args": "[@nomdutilisateur]",
|
|
195
217
|
"unmute-command-description": "Démuter un utilisateur",
|
|
196
218
|
"unreadMessagesSeparatorText_many": "{{count}} messages non lus",
|
|
197
219
|
"unreadMessagesSeparatorText_one": "1 message non lu",
|
|
198
220
|
"unreadMessagesSeparatorText_other": "{{count}} messages non lus",
|
|
221
|
+
"unsupported file type": "type de fichier non pris en charge",
|
|
199
222
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} et {{ moreCount }} autres",
|
|
200
223
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} et {{ lastUser }}",
|
|
201
224
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} et {{ secondUser }}",
|
package/dist/i18n/hi.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "माइक्रोफ़ोन तक पहुँच दें",
|
|
7
7
|
"Allow comments": "टिप्पणियाँ की अनुमति दें",
|
|
8
8
|
"Allow option suggestion": "विकल्प सुझाव की अनुमति दें",
|
|
9
|
+
"Also send as a direct message": "सीधे संदेश के रूप में भी भेजें",
|
|
10
|
+
"Also send in channel": "चैनल में भी भेजें",
|
|
9
11
|
"An error has occurred during recording": "रेकॉर्डिंग के दौरान एक त्रुटि आ गई है",
|
|
10
12
|
"An error has occurred during the recording processing": "रेकॉर्डिंग प्रोसेसिंग के दौरान एक त्रुटि आ गई है",
|
|
11
13
|
"Anonymous": "गुमनाम",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "आर्काइव",
|
|
14
16
|
"Ask a question": "एक प्रश्न पूछें",
|
|
15
17
|
"Attach files": "फाइल्स अटैच करे",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "{{reason}} के कारण अटैचमेंट अपलोड ब्लॉक किया गया",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "{{reason}} के कारण अटैचमेंट अपलोड विफल रहा",
|
|
16
20
|
"Cancel": "रद्द करें",
|
|
17
21
|
"Cannot seek in the recording": "रेकॉर्डिंग में खोज नहीं की जा सकती",
|
|
18
22
|
"Channel Missing": "चैनल उपलब्ध नहीं है",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "अनुलग्नक {{ name }} डाउनलोड करें",
|
|
28
32
|
"Drag your files here": "अपनी फ़ाइलें यहाँ खींचें",
|
|
29
33
|
"Drag your files here to add to your post": "अपनी फ़ाइलें यहाँ खींचें और अपने पोस्ट में जोड़ने के लिए",
|
|
34
|
+
"Due since {{ dueSince }}": "{{ dueSince }} से देय",
|
|
35
|
+
"Due {{ timeLeft }}": "{{ timeLeft }} में देय",
|
|
30
36
|
"Edit Message": "मैसेज में बदलाव करे",
|
|
31
37
|
"Edit message request failed": "संदेश संपादित करने का अनुरोध विफल रहा",
|
|
32
38
|
"Edited": "संपादित",
|
|
@@ -51,6 +57,8 @@
|
|
|
51
57
|
"Error uploading image": "छवि अपलोड करने में त्रुटि",
|
|
52
58
|
"Error · Unsent": "फेल",
|
|
53
59
|
"Error: {{ errorMessage }}": "फेल: {{ errorMessage }}",
|
|
60
|
+
"Failed to create the poll": "मतदान बनाने में विफल",
|
|
61
|
+
"Failed to create the poll due to {{reason}}": "मतदान {{reason}} के कारण नहीं बन सका",
|
|
54
62
|
"Failed to jump to the first unread message": "पहले अपठित संदेश पर जाने में विफल",
|
|
55
63
|
"Failed to mark channel as read": "चैनल को पढ़ा हुआ चिह्नित करने में विफल।",
|
|
56
64
|
"Failed to play the recording": "रेकॉर्डिंग प्ले करने में विफल",
|
|
@@ -94,8 +102,12 @@
|
|
|
94
102
|
"Question": "प्रश्न",
|
|
95
103
|
"Quote": "उद्धरण",
|
|
96
104
|
"Recording format is not supported and cannot be reproduced": "रेकॉर्डिंग फ़ॉर्मेट समर्थित नहीं है और पुनः उत्पन्न नहीं किया जा सकता",
|
|
105
|
+
"Remind Me": "मुझे याद दिलाएं",
|
|
106
|
+
"Remove reminder": "रिमाइंडर हटाएं",
|
|
97
107
|
"Reply": "जवाब दे दो",
|
|
98
108
|
"Reply to Message": "संदेश का जवाब दें",
|
|
109
|
+
"Save for later": "बाद के लिए सहेजें",
|
|
110
|
+
"Saved for later": "बाद के लिए सहेजा गया",
|
|
99
111
|
"Search": "खोज",
|
|
100
112
|
"Searching...": "खोज कर...",
|
|
101
113
|
"See all options ({{count}})_one": "सभी विकल्प देखें ({{count}})",
|
|
@@ -119,6 +131,8 @@
|
|
|
119
131
|
"This message did not meet our content guidelines": "यह संदेश हमारे सामग्री दिशानिर्देशों के अनुरूप नहीं था",
|
|
120
132
|
"This message was deleted...": "मैसेज हटा दिया गया",
|
|
121
133
|
"Thread": "रिप्लाई थ्रेड",
|
|
134
|
+
"Thread has not been found": "थ्रेड नहीं मिला",
|
|
135
|
+
"Thread reply": "थ्रेड में उत्तर",
|
|
122
136
|
"To start recording, allow the camera access in your browser": "रिकॉर्डिंग शुरू करने के लिए, अपने ब्राउज़र में कैमरा तक पहुँच दें",
|
|
123
137
|
"To start recording, allow the microphone access in your browser": "रिकॉर्डिंग शुरू करने के लिए, अपने ब्राउज़र में माइक्रोफ़ोन तक पहुँच दें",
|
|
124
138
|
"Type a number from 2 to 10": "2 से 10 तक का एक नंबर टाइप करें",
|
|
@@ -159,6 +173,7 @@
|
|
|
159
173
|
"aria/Open Reaction Selector": "प्रतिक्रिया चयनकर्ता खोलें",
|
|
160
174
|
"aria/Open Thread": "थ्रेड खोलें",
|
|
161
175
|
"aria/Reaction list": "प्रतिक्रिया सूची",
|
|
176
|
+
"aria/Remind Me Options": "रिमाइंडर विकल्प",
|
|
162
177
|
"aria/Remove attachment": "संलग्नक हटाएं",
|
|
163
178
|
"aria/Retry upload": "अपलोड पुनः प्रयास करें",
|
|
164
179
|
"aria/Search results": "खोज परिणाम",
|
|
@@ -167,11 +182,14 @@
|
|
|
167
182
|
"aria/Stop AI Generation": "एआई जनरेशन रोकें",
|
|
168
183
|
"ban-command-args": "[@उपयोगकर्तनाम] [पाठ]",
|
|
169
184
|
"ban-command-description": "एक उपयोगकर्ता को प्रतिषेधित करें",
|
|
185
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
186
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
170
187
|
"giphy-command-args": "[पाठ]",
|
|
171
188
|
"giphy-command-description": "चैनल पर एक क्रॉफिल जीआइएफ पोस्ट करें",
|
|
172
189
|
"live": "लाइव",
|
|
173
190
|
"mute-command-args": "[@उपयोगकर्तनाम]",
|
|
174
191
|
"mute-command-description": "एक उपयोगकर्ता को म्यूट करें",
|
|
192
|
+
"network error": "नेटवर्क त्रुटि",
|
|
175
193
|
"replyCount_one": "1 रिप्लाई",
|
|
176
194
|
"replyCount_other": "{{ count }} रिप्लाई",
|
|
177
195
|
"search-results-header-filter-source-button-label--channels": "चैनल्स",
|
|
@@ -179,18 +197,23 @@
|
|
|
179
197
|
"search-results-header-filter-source-button-label--users": "उपयोगकर्ता",
|
|
180
198
|
"searchResultsCount_one": "1 परिणाम",
|
|
181
199
|
"searchResultsCount_other": "{{ count }} परिणाम",
|
|
200
|
+
"size limit": "आकार सीमा",
|
|
182
201
|
"this content could not be displayed": "यह कॉन्टेंट लोड नहीं हो पाया",
|
|
183
202
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
184
203
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
185
204
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
186
205
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
206
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
187
207
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
208
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
188
209
|
"unban-command-args": "[@उपयोगकर्तनाम]",
|
|
189
210
|
"unban-command-description": "एक उपयोगकर्ता को प्रतिषेध से मुक्त करें",
|
|
211
|
+
"unknown error": "अज्ञात त्रुटि",
|
|
190
212
|
"unmute-command-args": "[@उपयोगकर्तनाम]",
|
|
191
213
|
"unmute-command-description": "एक उपयोगकर्ता को अनम्यूट करें",
|
|
192
214
|
"unreadMessagesSeparatorText_one": "1 अपठित संदेश",
|
|
193
215
|
"unreadMessagesSeparatorText_other": "{{count}} अपठित संदेश",
|
|
216
|
+
"unsupported file type": "असमर्थित फ़ाइल प्रकार",
|
|
194
217
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} और {{ moreCount }} और",
|
|
195
218
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} और {{ lastUser }}",
|
|
196
219
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} और {{ secondUser }}",
|
package/dist/i18n/index.d.ts
CHANGED
package/dist/i18n/index.js
CHANGED
package/dist/i18n/it.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "Consenti l'accesso al microfono",
|
|
7
7
|
"Allow comments": "Consenti i commenti",
|
|
8
8
|
"Allow option suggestion": "Consenti il suggerimento di opzioni",
|
|
9
|
+
"Also send as a direct message": "Invia anche come messaggio diretto",
|
|
10
|
+
"Also send in channel": "Invia anche nel canale",
|
|
9
11
|
"An error has occurred during recording": "Si è verificato un errore durante la registrazione",
|
|
10
12
|
"An error has occurred during the recording processing": "Si è verificato un errore durante l'elaborazione della registrazione",
|
|
11
13
|
"Anonymous": "Anonimo",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "Archivia",
|
|
14
16
|
"Ask a question": "Fai una domanda",
|
|
15
17
|
"Attach files": "Allega file",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "Caricamento allegato bloccato a causa di {{reason}}",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "Caricamento allegato fallito a causa di {{reason}}",
|
|
16
20
|
"Cancel": "Annulla",
|
|
17
21
|
"Cannot seek in the recording": "Impossibile cercare nella registrazione",
|
|
18
22
|
"Channel Missing": "Il canale non esiste",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "Scarica l'allegato {{ name }}",
|
|
28
32
|
"Drag your files here": "Trascina i tuoi file qui",
|
|
29
33
|
"Drag your files here to add to your post": "Trascina i tuoi file qui per aggiungerli al tuo post",
|
|
34
|
+
"Due since {{ dueSince }}": "Scaduto dal {{ dueSince }}",
|
|
35
|
+
"Due {{ timeLeft }}": "Scadenza tra {{ timeLeft }}",
|
|
30
36
|
"Edit Message": "Modifica messaggio",
|
|
31
37
|
"Edit message request failed": "Richiesta di modifica del messaggio non riuscita",
|
|
32
38
|
"Edited": "Modificato",
|
|
@@ -50,6 +56,8 @@
|
|
|
50
56
|
"Error uploading image": "Errore durante il caricamento dell'immagine",
|
|
51
57
|
"Error · Unsent": "Errore · Non inviato",
|
|
52
58
|
"Error: {{ errorMessage }}": "Errore: {{ errorMessage }}",
|
|
59
|
+
"Failed to create the poll": "Impossibile creare il sondaggio",
|
|
60
|
+
"Failed to create the poll due to {{reason}}": "Impossibile creare il sondaggio a causa di {{reason}}",
|
|
53
61
|
"Failed to jump to the first unread message": "Impossibile passare al primo messaggio non letto",
|
|
54
62
|
"Failed to mark channel as read": "Impossibile contrassegnare il canale come letto",
|
|
55
63
|
"Failed to play the recording": "Impossibile riprodurre la registrazione",
|
|
@@ -93,8 +101,12 @@
|
|
|
93
101
|
"Question": "Domanda",
|
|
94
102
|
"Quote": "Citazione",
|
|
95
103
|
"Recording format is not supported and cannot be reproduced": "Il formato di registrazione non è supportato e non può essere riprodotto",
|
|
104
|
+
"Remind Me": "Ricordami",
|
|
105
|
+
"Remove reminder": "Rimuovi promemoria",
|
|
96
106
|
"Reply": "Rispondi",
|
|
97
107
|
"Reply to Message": "Rispondi al messaggio",
|
|
108
|
+
"Save for later": "Salva per dopo",
|
|
109
|
+
"Saved for later": "Salvato per dopo",
|
|
98
110
|
"Search": "Cerca",
|
|
99
111
|
"Searching...": "Ricerca in corso...",
|
|
100
112
|
"See all options ({{count}})_many": "Vedi tutte le opzioni ({{count}})",
|
|
@@ -120,6 +132,8 @@
|
|
|
120
132
|
"This message did not meet our content guidelines": "Questo messaggio non soddisfa le nostre linee guida sui contenuti",
|
|
121
133
|
"This message was deleted...": "Questo messaggio è stato cancellato...",
|
|
122
134
|
"Thread": "Discussione",
|
|
135
|
+
"Thread has not been found": "Discussione non trovata",
|
|
136
|
+
"Thread reply": "Risposta nella discussione",
|
|
123
137
|
"To start recording, allow the camera access in your browser": "Per iniziare a registrare, consenti l'accesso alla fotocamera nel tuo browser",
|
|
124
138
|
"To start recording, allow the microphone access in your browser": "Per iniziare a registrare, consenti l'accesso al microfono nel tuo browser",
|
|
125
139
|
"Type a number from 2 to 10": "Digita un numero da 2 a 10",
|
|
@@ -161,6 +175,7 @@
|
|
|
161
175
|
"aria/Open Reaction Selector": "Apri il selettore di reazione",
|
|
162
176
|
"aria/Open Thread": "Apri discussione",
|
|
163
177
|
"aria/Reaction list": "Elenco delle reazioni",
|
|
178
|
+
"aria/Remind Me Options": "Opzioni promemoria",
|
|
164
179
|
"aria/Remove attachment": "Rimuovi allegato",
|
|
165
180
|
"aria/Retry upload": "Riprova caricamento",
|
|
166
181
|
"aria/Search results": "Risultati della ricerca",
|
|
@@ -169,11 +184,14 @@
|
|
|
169
184
|
"aria/Stop AI Generation": "Interrompi generazione IA",
|
|
170
185
|
"ban-command-args": "[@nomeutente] [testo]",
|
|
171
186
|
"ban-command-description": "Vietare un utente",
|
|
187
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
188
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
172
189
|
"giphy-command-args": "[testo]",
|
|
173
190
|
"giphy-command-description": "Pubblica un gif casuale sul canale",
|
|
174
191
|
"live": "live",
|
|
175
192
|
"mute-command-args": "[@nomeutente]",
|
|
176
193
|
"mute-command-description": "Silenzia un utente",
|
|
194
|
+
"network error": "errore di rete",
|
|
177
195
|
"replyCount_many": "{{ count }} risposte",
|
|
178
196
|
"replyCount_one": "Una risposta",
|
|
179
197
|
"replyCount_other": "{{ count }} risposte",
|
|
@@ -183,19 +201,24 @@
|
|
|
183
201
|
"searchResultsCount_many": "{{ count }} risultati",
|
|
184
202
|
"searchResultsCount_one": "1 risultato",
|
|
185
203
|
"searchResultsCount_other": "{{ count }} risultati",
|
|
204
|
+
"size limit": "limite di dimensione",
|
|
186
205
|
"this content could not be displayed": "questo contenuto non può essere mostrato",
|
|
187
206
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
188
207
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
189
208
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
190
209
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
210
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
191
211
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
212
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
192
213
|
"unban-command-args": "[@nomeutente]",
|
|
193
214
|
"unban-command-description": "Togliere il divieto a un utente",
|
|
215
|
+
"unknown error": "errore sconosciuto",
|
|
194
216
|
"unmute-command-args": "[@nomeutente]",
|
|
195
217
|
"unmute-command-description": "Togliere il silenzio a un utente",
|
|
196
218
|
"unreadMessagesSeparatorText_many": "{{count}} messaggi non letti",
|
|
197
219
|
"unreadMessagesSeparatorText_one": "1 messaggio non letto",
|
|
198
220
|
"unreadMessagesSeparatorText_other": "{{count}} messaggi non letti",
|
|
221
|
+
"unsupported file type": "tipo di file non supportato",
|
|
199
222
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} e altri {{ moreCount }}",
|
|
200
223
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} e {{ lastUser }}",
|
|
201
224
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} e {{ secondUser }}",
|