stream-chat-react 12.4.1 → 12.5.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/assets/icons/stream-chat-icons.eot +0 -0
- package/dist/assets/icons/stream-chat-icons.svg +4 -0
- package/dist/assets/icons/stream-chat-icons.ttf +0 -0
- package/dist/assets/icons/stream-chat-icons.woff +0 -0
- package/dist/assets/icons/stream-chat-icons.woff2 +0 -0
- package/dist/components/Attachment/components/ProgressBar.d.ts +2 -2
- package/dist/components/Attachment/components/ProgressBar.js +2 -1
- package/dist/components/Channel/Channel.d.ts +1 -1
- package/dist/components/Channel/Channel.js +36 -15
- package/dist/components/Channel/constants.d.ts +1 -0
- package/dist/components/Channel/constants.js +1 -0
- package/dist/components/Channel/hooks/useChannelContainerClasses.d.ts +2 -0
- package/dist/components/Channel/hooks/useChannelContainerClasses.js +10 -5
- package/dist/components/ChannelPreview/utils.js +35 -0
- package/dist/components/Chat/hooks/useChat.js +2 -0
- package/dist/components/Dialog/DialogAnchor.d.ts +1 -2
- package/dist/components/Dialog/DialogMenu.d.ts +3 -0
- package/dist/components/Dialog/DialogMenu.js +5 -0
- package/dist/components/Dialog/DialogPortal.d.ts +1 -1
- package/dist/components/Dialog/DialogPortal.js +4 -12
- package/dist/components/Dialog/FormDialog.d.ts +23 -0
- package/dist/components/Dialog/FormDialog.js +72 -0
- package/dist/components/Dialog/PromptDialog.d.ts +8 -0
- package/dist/components/Dialog/PromptDialog.js +7 -0
- package/dist/components/DragAndDrop/DragAndDropContainer.d.ts +7 -0
- package/dist/components/DragAndDrop/DragAndDropContainer.js +93 -0
- package/dist/components/Form/FieldError.d.ts +6 -0
- package/dist/components/Form/FieldError.js +3 -0
- package/dist/components/Form/SwitchField.d.ts +7 -0
- package/dist/components/Form/SwitchField.js +21 -0
- package/dist/components/InfiniteScrollPaginator/InfiniteScroll.d.ts +10 -0
- package/dist/components/InfiniteScrollPaginator/InfiniteScroll.js +10 -0
- package/dist/components/InfiniteScrollPaginator/InfiniteScrollPaginator.d.ts +10 -0
- package/dist/components/InfiniteScrollPaginator/InfiniteScrollPaginator.js +68 -0
- package/dist/components/InfiniteScrollPaginator/hooks/useCursorPaginator.d.ts +18 -0
- package/dist/components/InfiniteScrollPaginator/hooks/useCursorPaginator.js +41 -0
- package/dist/components/Message/MessageSimple.js +5 -1
- package/dist/components/Message/QuotedMessage.js +8 -4
- package/dist/components/Message/hooks/useUserRole.js +3 -2
- package/dist/components/Message/index.d.ts +1 -0
- package/dist/components/MessageInput/AttachmentSelector.d.ts +25 -0
- package/dist/components/MessageInput/AttachmentSelector.js +125 -0
- package/dist/components/MessageInput/EditMessageForm.js +1 -1
- package/dist/components/MessageInput/MessageInput.d.ts +2 -0
- package/dist/components/MessageInput/MessageInput.js +9 -4
- package/dist/components/MessageInput/MessageInputFlat.js +4 -10
- package/dist/components/MessageInput/QuotedMessagePreview.js +7 -3
- package/dist/components/MessageInput/hooks/useCreateMessageInputContext.js +3 -1
- package/dist/components/MessageInput/hooks/usePasteHandler.js +5 -8
- package/dist/components/MessageInput/hooks/useSubmitHandler.js +4 -1
- package/dist/components/MessageInput/index.d.ts +1 -0
- package/dist/components/MessageInput/index.js +1 -0
- package/dist/components/Modal/ModalHeader.d.ts +8 -0
- package/dist/components/Modal/ModalHeader.js +6 -0
- package/dist/components/Poll/Poll.d.ts +7 -0
- package/dist/components/Poll/Poll.js +8 -0
- package/dist/components/Poll/PollActions/AddCommentForm.d.ts +7 -0
- package/dist/components/Poll/PollActions/AddCommentForm.js +24 -0
- package/dist/components/Poll/PollActions/EndPollDialog.d.ts +6 -0
- package/dist/components/Poll/PollActions/EndPollDialog.js +19 -0
- package/dist/components/Poll/PollActions/PollAction.d.ts +9 -0
- package/dist/components/Poll/PollActions/PollAction.js +5 -0
- package/dist/components/Poll/PollActions/PollActions.d.ts +17 -0
- package/dist/components/Poll/PollActions/PollActions.js +46 -0
- package/dist/components/Poll/PollActions/PollAnswerList.d.ts +7 -0
- package/dist/components/Poll/PollActions/PollAnswerList.js +28 -0
- package/dist/components/Poll/PollActions/PollOptionsFullList.d.ts +6 -0
- package/dist/components/Poll/PollActions/PollOptionsFullList.js +16 -0
- package/dist/components/Poll/PollActions/PollResults/PollOptionVotesList.d.ts +7 -0
- package/dist/components/Poll/PollActions/PollResults/PollOptionVotesList.js +18 -0
- package/dist/components/Poll/PollActions/PollResults/PollOptionWithLatestVotes.d.ts +9 -0
- package/dist/components/Poll/PollActions/PollResults/PollOptionWithLatestVotes.js +19 -0
- package/dist/components/Poll/PollActions/PollResults/PollOptionWithVotesHeader.d.ts +11 -0
- package/dist/components/Poll/PollActions/PollResults/PollOptionWithVotesHeader.js +18 -0
- package/dist/components/Poll/PollActions/PollResults/PollResults.d.ts +6 -0
- package/dist/components/Poll/PollActions/PollResults/PollResults.js +33 -0
- package/dist/components/Poll/PollActions/PollResults/index.d.ts +1 -0
- package/dist/components/Poll/PollActions/PollResults/index.js +1 -0
- package/dist/components/Poll/PollActions/SuggestPollOptionForm.d.ts +7 -0
- package/dist/components/Poll/PollActions/SuggestPollOptionForm.js +37 -0
- package/dist/components/Poll/PollActions/index.d.ts +7 -0
- package/dist/components/Poll/PollActions/index.js +7 -0
- package/dist/components/Poll/PollContent.d.ts +3 -0
- package/dist/components/Poll/PollContent.js +18 -0
- package/dist/components/Poll/PollCreationDialog/OptionFieldSet.d.ts +9 -0
- package/dist/components/Poll/PollCreationDialog/OptionFieldSet.js +70 -0
- package/dist/components/Poll/PollCreationDialog/PollCreationDialog.d.ts +5 -0
- package/dist/components/Poll/PollCreationDialog/PollCreationDialog.js +87 -0
- package/dist/components/Poll/PollCreationDialog/PollCreationDialogControls.d.ts +8 -0
- package/dist/components/Poll/PollCreationDialog/PollCreationDialogControls.js +44 -0
- package/dist/components/Poll/PollCreationDialog/index.d.ts +1 -0
- package/dist/components/Poll/PollCreationDialog/index.js +1 -0
- package/dist/components/Poll/PollCreationDialog/types.d.ts +21 -0
- package/dist/components/Poll/PollCreationDialog/types.js +1 -0
- package/dist/components/Poll/PollHeader.d.ts +3 -0
- package/dist/components/Poll/PollHeader.js +31 -0
- package/dist/components/Poll/PollOptionList.d.ts +6 -0
- package/dist/components/Poll/PollOptionList.js +14 -0
- package/dist/components/Poll/PollOptionSelector.d.ts +19 -0
- package/dist/components/Poll/PollOptionSelector.js +53 -0
- package/dist/components/Poll/PollVote.d.ts +12 -0
- package/dist/components/Poll/PollVote.js +31 -0
- package/dist/components/Poll/QuotedPoll.d.ts +3 -0
- package/dist/components/Poll/QuotedPoll.js +17 -0
- package/dist/components/Poll/constants.d.ts +3 -0
- package/dist/components/Poll/constants.js +3 -0
- package/dist/components/Poll/hooks/index.d.ts +2 -0
- package/dist/components/Poll/hooks/index.js +2 -0
- package/dist/components/Poll/hooks/useManagePollVotesRealtime.d.ts +4 -0
- package/dist/components/Poll/hooks/useManagePollVotesRealtime.js +36 -0
- package/dist/components/Poll/hooks/usePollAnswerPagination.d.ts +13 -0
- package/dist/components/Poll/hooks/usePollAnswerPagination.js +27 -0
- package/dist/components/Poll/hooks/usePollOptionVotesPagination.d.ts +13 -0
- package/dist/components/Poll/hooks/usePollOptionVotesPagination.js +27 -0
- package/dist/components/Poll/index.d.ts +10 -0
- package/dist/components/Poll/index.js +10 -0
- package/dist/components/Portal/Portal.d.ts +6 -0
- package/dist/components/Portal/Portal.js +14 -0
- package/dist/components/ReactFileUtilities/UploadButton.d.ts +11 -1
- package/dist/components/ReactFileUtilities/UploadButton.js +22 -4
- package/dist/components/Thread/Thread.js +1 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +1 -0
- package/dist/context/AttachmentSelectorContext.d.ts +8 -0
- package/dist/context/AttachmentSelectorContext.js +6 -0
- package/dist/context/ComponentContext.d.ts +21 -5
- package/dist/context/PollContext.d.ts +11 -0
- package/dist/context/PollContext.js +7 -0
- package/dist/context/index.d.ts +1 -0
- package/dist/context/index.js +1 -0
- package/dist/css/v2/index.css +2 -2
- package/dist/css/v2/index.layout.css +2 -2
- package/dist/experimental/index.browser.cjs +129 -117
- package/dist/experimental/index.browser.cjs.map +4 -4
- package/dist/experimental/index.node.cjs +129 -117
- package/dist/experimental/index.node.cjs.map +4 -4
- package/dist/i18n/Streami18n.d.ts +45 -0
- package/dist/i18n/de.json +70 -25
- package/dist/i18n/en.json +46 -1
- package/dist/i18n/es.json +74 -25
- package/dist/i18n/fr.json +83 -34
- package/dist/i18n/hi.json +54 -9
- package/dist/i18n/it.json +75 -26
- package/dist/i18n/ja.json +46 -5
- package/dist/i18n/ko.json +46 -5
- package/dist/i18n/nl.json +59 -14
- package/dist/i18n/pt.json +66 -17
- package/dist/i18n/ru.json +66 -13
- package/dist/i18n/tr.json +77 -32
- package/dist/index.browser.cjs +4229 -1861
- package/dist/index.browser.cjs.map +4 -4
- package/dist/index.node.cjs +4169 -1774
- package/dist/index.node.cjs.map +4 -4
- package/dist/scss/v2/AttachmentPreviewList/AttachmentPreviewList-layout.scss +2 -2
- package/dist/scss/v2/AudioRecorder/AudioRecorder-layout.scss +64 -14
- package/dist/scss/v2/AudioRecorder/AudioRecorder-theme.scss +11 -1
- package/dist/scss/v2/Avatar/Avatar-layout.scss +4 -0
- package/dist/scss/v2/ChannelList/ChannelList-layout.scss +15 -0
- package/dist/scss/v2/Dialog/Dialog-layout.scss +54 -0
- package/dist/scss/v2/Dialog/Dialog-theme.scss +103 -0
- package/dist/scss/v2/DragAndDropContainer/DragAmdDropContainer-layout.scss +5 -0
- package/dist/scss/v2/DragAndDropContainer/DragAndDropContainer-theme.scss +47 -0
- package/dist/scss/v2/Form/Form-layout.scss +9 -0
- package/dist/scss/v2/Form/Form-theme.scss +17 -0
- package/dist/scss/v2/Icon/Icon-layout.scss +6 -1
- package/dist/scss/v2/InfiniteScrollPaginator/InfiniteScrollPaginator-layout.scss +4 -0
- package/dist/scss/v2/MessageActionsBox/MessageActionsBox-layout.scss +0 -9
- package/dist/scss/v2/MessageInput/MessageInput-layout.scss +29 -4
- package/dist/scss/v2/MessageInput/MessageInput-theme.scss +61 -0
- package/dist/scss/v2/Modal/Modal-layout.scss +31 -0
- package/dist/scss/v2/Modal/Modal-theme.scss +6 -0
- package/dist/scss/v2/Notification/MessageNotification-layout.scss +1 -1
- package/dist/scss/v2/Poll/Poll-layout.scss +488 -0
- package/dist/scss/v2/Poll/Poll-theme.scss +206 -0
- package/dist/scss/v2/_base.scss +4 -0
- package/dist/scss/v2/_global-theme-variables.scss +1 -1
- package/dist/scss/v2/_icons.scss +7 -0
- package/dist/scss/v2/index.layout.scss +4 -0
- package/dist/scss/v2/index.scss +4 -0
- package/dist/types/types.d.ts +6 -0
- package/package.json +4 -4
|
@@ -129,10 +129,17 @@ export declare class Streami18n {
|
|
|
129
129
|
getTranslations: () => {
|
|
130
130
|
[key: string]: {
|
|
131
131
|
[key: string]: {
|
|
132
|
+
"Add a comment": string;
|
|
133
|
+
"Add an option": string;
|
|
132
134
|
"Allow access to camera": string;
|
|
133
135
|
"Allow access to microphone": string;
|
|
136
|
+
"Allow comments": string;
|
|
137
|
+
"Allow option suggestion": string;
|
|
134
138
|
"An error has occurred during recording": string;
|
|
135
139
|
"An error has occurred during the recording processing": string;
|
|
140
|
+
Anonymous: string;
|
|
141
|
+
"Anonymous poll": string;
|
|
142
|
+
"Ask a question": string;
|
|
136
143
|
"Attach files": string;
|
|
137
144
|
Cancel: string;
|
|
138
145
|
"Cannot seek in the recording": string;
|
|
@@ -141,6 +148,8 @@ export declare class Streami18n {
|
|
|
141
148
|
"Close emoji picker": string;
|
|
142
149
|
"Commands matching": string;
|
|
143
150
|
"Connection failure, reconnecting now...": string;
|
|
151
|
+
Create: string;
|
|
152
|
+
"Create poll": string;
|
|
144
153
|
Delete: string;
|
|
145
154
|
Delivered: string;
|
|
146
155
|
"Download attachment {{ name }}": string;
|
|
@@ -151,6 +160,8 @@ export declare class Streami18n {
|
|
|
151
160
|
Edited: string;
|
|
152
161
|
"Emoji matching": string;
|
|
153
162
|
"Empty message...": string;
|
|
163
|
+
End: string;
|
|
164
|
+
"End vote": string;
|
|
154
165
|
"Error adding flag": string;
|
|
155
166
|
"Error connecting to chat, refresh the page to try again.": string;
|
|
156
167
|
"Error deleting message": string;
|
|
@@ -170,11 +181,13 @@ export declare class Streami18n {
|
|
|
170
181
|
"Failed to jump to the first unread message": string;
|
|
171
182
|
"Failed to mark channel as read": string;
|
|
172
183
|
"Failed to play the recording": string;
|
|
184
|
+
File: string;
|
|
173
185
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": string;
|
|
174
186
|
Flag: string;
|
|
175
187
|
"Latest Messages": string;
|
|
176
188
|
"Load more": string;
|
|
177
189
|
"Mark as unread": string;
|
|
190
|
+
"Maximum number of votes (from 2 to 10)": string;
|
|
178
191
|
Menu: string;
|
|
179
192
|
"Message Failed \u00B7 Click to try again": string;
|
|
180
193
|
"Message Failed \u00B7 Unauthorized": string;
|
|
@@ -183,44 +196,69 @@ export declare class Streami18n {
|
|
|
183
196
|
"Message pinned": string;
|
|
184
197
|
"Messages have been marked unread.": string;
|
|
185
198
|
"Missing permissions to upload the attachment": string;
|
|
199
|
+
"Multiple answers": string;
|
|
186
200
|
Mute: string;
|
|
187
201
|
New: string;
|
|
188
202
|
"New Messages!": string;
|
|
189
203
|
"No chats here yet\u2026": string;
|
|
190
204
|
"No results found": string;
|
|
205
|
+
"Nobody will be able to vote in this poll anymore.": string;
|
|
191
206
|
"Nothing yet...": string;
|
|
192
207
|
Ok: string;
|
|
193
208
|
"Open emoji picker": string;
|
|
209
|
+
"Option already exists": string;
|
|
210
|
+
Options: string;
|
|
194
211
|
"People matching": string;
|
|
195
212
|
Pin: string;
|
|
196
213
|
"Pinned by": string;
|
|
214
|
+
Poll: string;
|
|
215
|
+
"Poll comments": string;
|
|
216
|
+
"Poll options": string;
|
|
217
|
+
"Poll results": string;
|
|
218
|
+
Question: string;
|
|
197
219
|
Quote: string;
|
|
198
220
|
"Recording format is not supported and cannot be reproduced": string;
|
|
199
221
|
Reply: string;
|
|
200
222
|
"Reply to Message": string;
|
|
201
223
|
Search: string;
|
|
202
224
|
"Searching...": string;
|
|
225
|
+
"See all options ({{count}})_one": string;
|
|
226
|
+
"See all options ({{count}})_other": string;
|
|
227
|
+
"Select one": string;
|
|
228
|
+
"Select one or more": string;
|
|
229
|
+
"Select up to {{count}}_one": string;
|
|
230
|
+
"Select up to {{count}}_other": string;
|
|
203
231
|
Send: string;
|
|
204
232
|
"Send Anyway": string;
|
|
205
233
|
"Send message request failed": string;
|
|
206
234
|
"Sending...": string;
|
|
235
|
+
"Show all": string;
|
|
207
236
|
Shuffle: string;
|
|
208
237
|
"Slow Mode ON": string;
|
|
209
238
|
"Some of the files will not be accepted": string;
|
|
239
|
+
Submit: string;
|
|
240
|
+
"Suggest an option": string;
|
|
210
241
|
"This message did not meet our content guidelines": string;
|
|
211
242
|
"This message was deleted...": string;
|
|
212
243
|
Thread: string;
|
|
213
244
|
"To start recording, allow the camera access in your browser": string;
|
|
214
245
|
"To start recording, allow the microphone access in your browser": string;
|
|
246
|
+
"Type a number from 2 to 10": string;
|
|
215
247
|
"Type your message": string;
|
|
216
248
|
Unmute: string;
|
|
217
249
|
Unpin: string;
|
|
218
250
|
"Unread messages": string;
|
|
219
251
|
"Unsupported attachment": string;
|
|
252
|
+
"Update your comment": string;
|
|
220
253
|
"Upload type: \"{{ type }}\" is not allowed": string;
|
|
221
254
|
"User uploaded content": string;
|
|
255
|
+
"View results": string;
|
|
256
|
+
"View {{count}} comments_one": string;
|
|
257
|
+
"View {{count}} comments_other": string;
|
|
222
258
|
"Voice message": string;
|
|
259
|
+
"Vote ended": string;
|
|
223
260
|
"Wait until all attachments have uploaded": string;
|
|
261
|
+
You: string;
|
|
224
262
|
"You have no channels currently": string;
|
|
225
263
|
"You've reached the maximum number of files": string;
|
|
226
264
|
"aria/Attachment": string;
|
|
@@ -237,6 +275,7 @@ export declare class Streami18n {
|
|
|
237
275
|
"aria/Load More Channels": string;
|
|
238
276
|
"aria/Menu": string;
|
|
239
277
|
"aria/Message Options": string;
|
|
278
|
+
"aria/Open Attachment Selector": string;
|
|
240
279
|
"aria/Open Message Actions Menu": string;
|
|
241
280
|
"aria/Open Reaction Selector": string;
|
|
242
281
|
"aria/Open Thread": string;
|
|
@@ -252,6 +291,8 @@ export declare class Streami18n {
|
|
|
252
291
|
"this content could not be displayed": string;
|
|
253
292
|
"timestamp/DateSeparator": string;
|
|
254
293
|
"timestamp/MessageTimestamp": string;
|
|
294
|
+
"timestamp/PollVote": string;
|
|
295
|
+
"timestamp/PollVoteTooltip": string;
|
|
255
296
|
"timestamp/SystemMessage": string;
|
|
256
297
|
unreadMessagesSeparatorText_one: string;
|
|
257
298
|
unreadMessagesSeparatorText_other: string;
|
|
@@ -268,7 +309,11 @@ export declare class Streami18n {
|
|
|
268
309
|
"{{ watcherCount }} online": string;
|
|
269
310
|
"{{count}} unread_one": string;
|
|
270
311
|
"{{count}} unread_other": string;
|
|
312
|
+
"{{count}} votes_one": string;
|
|
313
|
+
"{{count}} votes_other": string;
|
|
271
314
|
"\uD83C\uDFD9 Attachment...": string;
|
|
315
|
+
"\uD83D\uDCCA {{createdBy}} created: {{ pollName}}": string;
|
|
316
|
+
"\uD83D\uDCCA {{votedBy}} voted: {{pollOptionText}}": string;
|
|
272
317
|
} | UnknownType;
|
|
273
318
|
};
|
|
274
319
|
};
|
package/dist/i18n/de.json
CHANGED
|
@@ -1,16 +1,25 @@
|
|
|
1
1
|
{
|
|
2
|
+
"Add a comment": "Einen Kommentar hinzufügen",
|
|
3
|
+
"Add an option": "Eine Option hinzufügen",
|
|
2
4
|
"Allow access to camera": "Zugriff auf Kamera erlauben",
|
|
3
5
|
"Allow access to microphone": "Zugriff auf Mikrofon erlauben",
|
|
6
|
+
"Allow comments": "Kommentare erlauben",
|
|
7
|
+
"Allow option suggestion": "Optionsvorschläge erlauben",
|
|
4
8
|
"An error has occurred during recording": "Ein Fehler ist während der Aufnahme aufgetreten",
|
|
5
9
|
"An error has occurred during the recording processing": "Ein Fehler ist während der Aufnahmeverarbeitung aufgetreten",
|
|
10
|
+
"Anonymous": "Anonym",
|
|
11
|
+
"Anonymous poll": "Anonyme Umfrage",
|
|
12
|
+
"Ask a question": "Eine Frage stellen",
|
|
6
13
|
"Attach files": "Dateien anhängen",
|
|
7
|
-
"Cancel": "
|
|
8
|
-
"Cannot seek in the recording": "In der Aufnahme
|
|
14
|
+
"Cancel": "Abbrechen",
|
|
15
|
+
"Cannot seek in the recording": "In der Aufnahme kann nicht gesucht werden",
|
|
9
16
|
"Channel Missing": "Kanal fehlt",
|
|
10
17
|
"Close": "Schließen",
|
|
11
|
-
"Close emoji picker": "Emoji-
|
|
18
|
+
"Close emoji picker": "Emoji-Auswahl schließen",
|
|
12
19
|
"Commands matching": "Übereinstimmende Befehle",
|
|
13
20
|
"Connection failure, reconnecting now...": "Verbindungsfehler, Wiederherstellung der Verbindung...",
|
|
21
|
+
"Create": "Erstellen",
|
|
22
|
+
"Create poll": "Umfrage erstellen",
|
|
14
23
|
"Delete": "Löschen",
|
|
15
24
|
"Delivered": "Zugestellt",
|
|
16
25
|
"Download attachment {{ name }}": "Anhang {{ name }} herunterladen",
|
|
@@ -19,10 +28,12 @@
|
|
|
19
28
|
"Edit Message": "Nachricht bearbeiten",
|
|
20
29
|
"Edit message request failed": "Anfrage zum Bearbeiten der Nachricht fehlgeschlagen",
|
|
21
30
|
"Edited": "Bearbeitet",
|
|
22
|
-
"Emoji matching": "
|
|
31
|
+
"Emoji matching": "Passende Emojis",
|
|
23
32
|
"Empty message...": "Leere Nachricht...",
|
|
33
|
+
"End": "Beenden",
|
|
34
|
+
"End vote": "Abstimmung beenden",
|
|
24
35
|
"Error adding flag": "Fehler beim Hinzufügen des Flags",
|
|
25
|
-
"Error connecting to chat, refresh the page to try again.": "Verbindungsfehler zum Chat,
|
|
36
|
+
"Error connecting to chat, refresh the page to try again.": "Verbindungsfehler zum Chat, aktualisieren Sie die Seite, um es erneut zu versuchen.",
|
|
26
37
|
"Error deleting message": "Fehler beim Löschen der Nachricht",
|
|
27
38
|
"Error fetching reactions": "Fehler beim Laden von Reaktionen",
|
|
28
39
|
"Error marking message unread. Cannot mark unread messages older than the newest 100 channel messages.": "Fehler beim Markieren der Nachricht als ungelesen. Kann keine älteren ungelesenen Nachrichten markieren als die neuesten 100 Kanalnachrichten.",
|
|
@@ -31,68 +42,95 @@
|
|
|
31
42
|
"Error removing message pin": "Fehler beim Entfernen der gepinnten Nachricht",
|
|
32
43
|
"Error reproducing the recording": "Fehler bei der Wiedergabe der Aufnahme",
|
|
33
44
|
"Error starting recording": "Fehler beim Starten der Aufnahme",
|
|
34
|
-
"Error unmuting a user ...": "Stummschaltung
|
|
45
|
+
"Error unmuting a user ...": "Fehler beim Aufheben der Stummschaltung eines Nutzers ...",
|
|
35
46
|
"Error uploading attachment": "Fehler beim Hochladen des Anhangs",
|
|
36
47
|
"Error uploading file": "Fehler beim Hochladen der Datei",
|
|
37
|
-
"Error uploading image": "Hochladen des Bildes
|
|
38
|
-
"Error · Unsent": "Fehler
|
|
48
|
+
"Error uploading image": "Fehler beim Hochladen des Bildes",
|
|
49
|
+
"Error · Unsent": "Fehler · Nicht gesendet",
|
|
39
50
|
"Error: {{ errorMessage }}": "Fehler: {{ errorMessage }}",
|
|
40
51
|
"Failed to jump to the first unread message": "Fehler beim Springen zur ersten ungelesenen Nachricht",
|
|
41
52
|
"Failed to mark channel as read": "Fehler beim Markieren des Kanals als gelesen",
|
|
42
53
|
"Failed to play the recording": "Wiedergabe der Aufnahme fehlgeschlagen",
|
|
54
|
+
"File": "Datei",
|
|
43
55
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Datei ist zu groß: {{ size }}, maximale Upload-Größe beträgt {{ limit }}",
|
|
44
|
-
"Flag": "
|
|
56
|
+
"Flag": "Melden",
|
|
45
57
|
"Latest Messages": "Neueste Nachrichten",
|
|
46
58
|
"Load more": "Mehr laden",
|
|
47
59
|
"Mark as unread": "Als ungelesen markieren",
|
|
60
|
+
"Maximum number of votes (from 2 to 10)": "Maximale Anzahl der Stimmen (von 2 bis 10)",
|
|
48
61
|
"Menu": "Menü",
|
|
49
62
|
"Message Failed · Click to try again": "Nachricht fehlgeschlagen · Klicken, um es erneut zu versuchen",
|
|
50
63
|
"Message Failed · Unauthorized": "Nachricht fehlgeschlagen · Nicht autorisiert",
|
|
51
64
|
"Message deleted": "Nachricht gelöscht",
|
|
52
65
|
"Message has been successfully flagged": "Nachricht wurde erfolgreich gemeldet",
|
|
53
|
-
"Message pinned": "Nachricht
|
|
66
|
+
"Message pinned": "Nachricht angeheftet",
|
|
54
67
|
"Messages have been marked unread.": "Nachrichten wurden als ungelesen markiert.",
|
|
55
|
-
"Missing permissions to upload the attachment": "Berechtigungen zum Hochladen des Anhangs
|
|
56
|
-
"
|
|
68
|
+
"Missing permissions to upload the attachment": "Fehlende Berechtigungen zum Hochladen des Anhangs",
|
|
69
|
+
"Multiple answers": "Mehrere Antworten",
|
|
70
|
+
"Mute": "Stummschalten",
|
|
57
71
|
"New": "Neu",
|
|
58
72
|
"New Messages!": "Neue Nachrichten!",
|
|
59
73
|
"No chats here yet…": "Noch keine Chats hier...",
|
|
60
|
-
"No results found": "
|
|
74
|
+
"No results found": "Keine Ergebnisse gefunden",
|
|
75
|
+
"Nobody will be able to vote in this poll anymore.": "Niemand kann mehr in dieser Umfrage abstimmen.",
|
|
61
76
|
"Nothing yet...": "Noch nichts...",
|
|
62
77
|
"Ok": "Ok",
|
|
63
|
-
"Open emoji picker": "Emoji-
|
|
78
|
+
"Open emoji picker": "Emoji-Auswahl öffnen",
|
|
79
|
+
"Option already exists": "Option existiert bereits",
|
|
80
|
+
"Options": "Optionen",
|
|
64
81
|
"People matching": "Passende Personen",
|
|
65
|
-
"Pin": "
|
|
66
|
-
"Pinned by": "
|
|
67
|
-
"
|
|
82
|
+
"Pin": "Anheften",
|
|
83
|
+
"Pinned by": "Angeheftet von",
|
|
84
|
+
"Poll": "Umfrage",
|
|
85
|
+
"Poll comments": "Umfragekommentare",
|
|
86
|
+
"Poll options": "Umfrageoptionen",
|
|
87
|
+
"Poll results": "Umfrageergebnisse",
|
|
88
|
+
"Question": "Frage",
|
|
89
|
+
"Quote": "Zitieren",
|
|
68
90
|
"Recording format is not supported and cannot be reproduced": "Aufnahmeformat wird nicht unterstützt und kann nicht wiedergegeben werden",
|
|
69
91
|
"Reply": "Antworten",
|
|
70
92
|
"Reply to Message": "Auf Nachricht antworten",
|
|
71
93
|
"Search": "Suche",
|
|
72
94
|
"Searching...": "Suchen...",
|
|
95
|
+
"See all options ({{count}})_one": "Alle Optionen anzeigen ({{count}})",
|
|
96
|
+
"See all options ({{count}})_other": "Alle Optionen anzeigen ({{count}})",
|
|
97
|
+
"Select one": "Eine auswählen",
|
|
98
|
+
"Select one or more": "Eine oder mehrere auswählen",
|
|
99
|
+
"Select up to {{count}}_one": "Bis zu {{count}} auswählen",
|
|
100
|
+
"Select up to {{count}}_other": "Bis zu {{count}} auswählen",
|
|
73
101
|
"Send": "Senden",
|
|
74
102
|
"Send Anyway": "Trotzdem senden",
|
|
75
103
|
"Send message request failed": "Senden der Nachrichtenanfrage fehlgeschlagen",
|
|
76
104
|
"Sending...": "Senden...",
|
|
105
|
+
"Show all": "Alle anzeigen",
|
|
77
106
|
"Shuffle": "Mischen",
|
|
78
|
-
"Slow Mode ON": "
|
|
107
|
+
"Slow Mode ON": "Langsamer Modus EIN",
|
|
79
108
|
"Some of the files will not be accepted": "Einige der Dateien werden nicht akzeptiert",
|
|
109
|
+
"Submit": "Absenden",
|
|
110
|
+
"Suggest an option": "Eine Option vorschlagen",
|
|
80
111
|
"This message did not meet our content guidelines": "Diese Nachricht entsprach nicht unseren Inhaltsrichtlinien",
|
|
81
112
|
"This message was deleted...": "Diese Nachricht wurde gelöscht...",
|
|
82
113
|
"Thread": "Thread",
|
|
83
114
|
"To start recording, allow the camera access in your browser": "Um mit der Aufnahme zu beginnen, erlauben Sie den Zugriff auf die Kamera in Ihrem Browser",
|
|
84
115
|
"To start recording, allow the microphone access in your browser": "Um mit der Aufnahme zu beginnen, erlauben Sie den Zugriff auf das Mikrofon in Ihrem Browser",
|
|
116
|
+
"Type a number from 2 to 10": "Geben Sie eine Zahl von 2 bis 10 ein",
|
|
85
117
|
"Type your message": "Nachricht eingeben",
|
|
86
118
|
"Unmute": "Stummschaltung aufheben",
|
|
87
|
-
"Unpin": "
|
|
119
|
+
"Unpin": "Anheftung aufheben",
|
|
88
120
|
"Unread messages": "Ungelesene Nachrichten",
|
|
89
121
|
"Unsupported attachment": "Nicht unterstützter Anhang",
|
|
122
|
+
"Update your comment": "Ihren Kommentar aktualisieren",
|
|
90
123
|
"Upload type: \"{{ type }}\" is not allowed": "Upload-Typ: \"{{ type }}\" ist nicht erlaubt",
|
|
91
|
-
"User uploaded content": "Benutzer
|
|
124
|
+
"User uploaded content": "Vom Benutzer hochgeladener Inhalt",
|
|
125
|
+
"View results": "Ergebnisse anzeigen",
|
|
126
|
+
"View {{count}} comments_one": "{{count}} Kommentar anzeigen",
|
|
127
|
+
"View {{count}} comments_other": "{{count}} Kommentare anzeigen",
|
|
92
128
|
"Voice message": "Sprachnachricht",
|
|
129
|
+
"Vote ended": "Abstimmung beendet",
|
|
93
130
|
"Wait until all attachments have uploaded": "Bitte warten, bis alle Anhänge hochgeladen wurden",
|
|
94
|
-
"You
|
|
95
|
-
"You
|
|
131
|
+
"You": "Du",
|
|
132
|
+
"You have no channels currently": "Du hast momentan noch keine Kanäle",
|
|
133
|
+
"You've reached the maximum number of files": "Die maximale Anzahl an Dateien ist erreicht",
|
|
96
134
|
"aria/Attachment": "Anhang",
|
|
97
135
|
"aria/Cancel Reply": "Antwort abbrechen",
|
|
98
136
|
"aria/Cancel upload": "Upload abbrechen",
|
|
@@ -107,6 +145,7 @@
|
|
|
107
145
|
"aria/Load More Channels": "Mehr Kanäle laden",
|
|
108
146
|
"aria/Menu": "Menü",
|
|
109
147
|
"aria/Message Options": "Nachrichtenoptionen",
|
|
148
|
+
"aria/Open Attachment Selector": "Anhang-Auswahl öffnen",
|
|
110
149
|
"aria/Open Message Actions Menu": "Nachrichtenaktionsmenü öffnen",
|
|
111
150
|
"aria/Open Reaction Selector": "Reaktionsauswahl öffnen",
|
|
112
151
|
"aria/Open Thread": "Thread öffnen",
|
|
@@ -128,6 +167,8 @@
|
|
|
128
167
|
"this content could not be displayed": "Dieser Inhalt konnte nicht angezeigt werden",
|
|
129
168
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
130
169
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
170
|
+
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
171
|
+
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
131
172
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
132
173
|
"unban-command-args": "[@Benutzername]",
|
|
133
174
|
"unban-command-description": "Einen Benutzer entbannen",
|
|
@@ -135,18 +176,22 @@
|
|
|
135
176
|
"unmute-command-description": "Stummschaltung eines Benutzers aufheben",
|
|
136
177
|
"unreadMessagesSeparatorText_one": "1 ungelesene Nachricht",
|
|
137
178
|
"unreadMessagesSeparatorText_other": "{{count}} ungelesene Nachrichten",
|
|
138
|
-
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} und {{moreCount}}
|
|
179
|
+
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} und {{moreCount}} mehr",
|
|
139
180
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} und {{ lastUser }}",
|
|
140
181
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} und {{ secondUser }}",
|
|
141
182
|
"{{ imageCount }} more": "{{ imageCount }} mehr",
|
|
142
183
|
"{{ memberCount }} members": "{{ memberCount }} Mitglieder",
|
|
143
184
|
"{{ user }} has been muted": "{{ user }} wurde stummgeschaltet",
|
|
144
|
-
"{{ user }} has been unmuted": "{{ user }} wurde
|
|
185
|
+
"{{ user }} has been unmuted": "Die Stummschaltung von {{ user }} wurde aufgehoben",
|
|
145
186
|
"{{ user }} is typing...": "{{ user }} tippt...",
|
|
146
187
|
"{{ users }} and more are typing...": "{{ users }} und mehr tippen...",
|
|
147
188
|
"{{ users }} and {{ user }} are typing...": "{{ users }} und {{ user }} tippen...",
|
|
148
189
|
"{{ watcherCount }} online": "{{ watcherCount }} online",
|
|
149
190
|
"{{count}} unread_one": "{{count}} ungelesen",
|
|
150
191
|
"{{count}} unread_other": "{{count}} ungelesen",
|
|
151
|
-
"
|
|
192
|
+
"{{count}} votes_one": "{{count}} Stimme",
|
|
193
|
+
"{{count}} votes_other": "{{count}} Stimmen",
|
|
194
|
+
"🏙 Attachment...": "🏙 Anhang...",
|
|
195
|
+
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} hat erstellt: {{ pollName}}",
|
|
196
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} hat abgestimmt: {{pollOptionText}}"
|
|
152
197
|
}
|
package/dist/i18n/en.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
+
"Add a comment": "Add a comment",
|
|
3
|
+
"Add an option": "Add an option",
|
|
2
4
|
"Allow access to camera": "Allow access to camera",
|
|
3
5
|
"Allow access to microphone": "Allow access to microphone",
|
|
6
|
+
"Allow comments": "Allow comments",
|
|
7
|
+
"Allow option suggestion": "Allow option suggestion",
|
|
4
8
|
"An error has occurred during recording": "An error has occurred during recording",
|
|
5
9
|
"An error has occurred during the recording processing": "An error has occurred during the recording processing",
|
|
10
|
+
"Anonymous": "Anonymous",
|
|
11
|
+
"Anonymous poll": "Anonymous poll",
|
|
12
|
+
"Ask a question": "Ask a question",
|
|
6
13
|
"Attach files": "Attach files",
|
|
7
14
|
"Cancel": "Cancel",
|
|
8
15
|
"Cannot seek in the recording": "Cannot seek in the recording",
|
|
@@ -11,6 +18,8 @@
|
|
|
11
18
|
"Close emoji picker": "Close emoji picker",
|
|
12
19
|
"Commands matching": "Commands matching",
|
|
13
20
|
"Connection failure, reconnecting now...": "Connection failure, reconnecting now...",
|
|
21
|
+
"Create": "Create",
|
|
22
|
+
"Create poll": "Create poll",
|
|
14
23
|
"Delete": "Delete",
|
|
15
24
|
"Delivered": "Delivered",
|
|
16
25
|
"Download attachment {{ name }}": "Download attachment {{ name }}",
|
|
@@ -21,6 +30,8 @@
|
|
|
21
30
|
"Edited": "Edited",
|
|
22
31
|
"Emoji matching": "Emoji matching",
|
|
23
32
|
"Empty message...": "Empty message...",
|
|
33
|
+
"End": "End",
|
|
34
|
+
"End vote": "End vote",
|
|
24
35
|
"Error adding flag": "Error adding flag",
|
|
25
36
|
"Error connecting to chat, refresh the page to try again.": "Error connecting to chat, refresh the page to try again.",
|
|
26
37
|
"Error deleting message": "Error deleting message",
|
|
@@ -40,11 +51,13 @@
|
|
|
40
51
|
"Failed to jump to the first unread message": "Failed to jump to the first unread message",
|
|
41
52
|
"Failed to mark channel as read": "Failed to mark channel as read",
|
|
42
53
|
"Failed to play the recording": "Failed to play the recording",
|
|
54
|
+
"File": "File",
|
|
43
55
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "File is too large: {{ size }}, maximum upload size is {{ limit }}",
|
|
44
56
|
"Flag": "Flag",
|
|
45
57
|
"Latest Messages": "Latest Messages",
|
|
46
58
|
"Load more": "Load more",
|
|
47
59
|
"Mark as unread": "Mark as unread",
|
|
60
|
+
"Maximum number of votes (from 2 to 10)": "Maximum number of votes (from 2 to 10)",
|
|
48
61
|
"Menu": "Menu",
|
|
49
62
|
"Message Failed · Click to try again": "Message Failed · Click to try again",
|
|
50
63
|
"Message Failed · Unauthorized": "Message Failed · Unauthorized",
|
|
@@ -53,44 +66,69 @@
|
|
|
53
66
|
"Message pinned": "Message pinned",
|
|
54
67
|
"Messages have been marked unread.": "Messages have been marked unread.",
|
|
55
68
|
"Missing permissions to upload the attachment": "Missing permissions to upload the attachment",
|
|
69
|
+
"Multiple answers": "Multiple answers",
|
|
56
70
|
"Mute": "Mute",
|
|
57
71
|
"New": "New",
|
|
58
72
|
"New Messages!": "New Messages!",
|
|
59
73
|
"No chats here yet…": "No chats here yet…",
|
|
60
74
|
"No results found": "No results found",
|
|
75
|
+
"Nobody will be able to vote in this poll anymore.": "Nobody will be able to vote in this poll anymore.",
|
|
61
76
|
"Nothing yet...": "Nothing yet...",
|
|
62
77
|
"Ok": "Ok",
|
|
63
78
|
"Open emoji picker": "Open emoji picker",
|
|
79
|
+
"Option already exists": "Option already exists",
|
|
80
|
+
"Options": "Options",
|
|
64
81
|
"People matching": "People matching",
|
|
65
82
|
"Pin": "Pin",
|
|
66
83
|
"Pinned by": "Pinned by",
|
|
84
|
+
"Poll": "Poll",
|
|
85
|
+
"Poll comments": "Poll comments",
|
|
86
|
+
"Poll options": "Poll options",
|
|
87
|
+
"Poll results": "Poll results",
|
|
88
|
+
"Question": "Question",
|
|
67
89
|
"Quote": "Quote",
|
|
68
90
|
"Recording format is not supported and cannot be reproduced": "Recording format is not supported and cannot be reproduced",
|
|
69
91
|
"Reply": "Reply",
|
|
70
92
|
"Reply to Message": "Reply to Message",
|
|
71
93
|
"Search": "Search",
|
|
72
94
|
"Searching...": "Searching...",
|
|
95
|
+
"See all options ({{count}})_one": "See all options ({{count}})",
|
|
96
|
+
"See all options ({{count}})_other": "See all options ({{count}})",
|
|
97
|
+
"Select one": "Select one",
|
|
98
|
+
"Select one or more": "Select one or more",
|
|
99
|
+
"Select up to {{count}}_one": "Select up to {{count}}",
|
|
100
|
+
"Select up to {{count}}_other": "Select up to {{count}}",
|
|
73
101
|
"Send": "Send",
|
|
74
102
|
"Send Anyway": "Send Anyway",
|
|
75
103
|
"Send message request failed": "Send message request failed",
|
|
76
104
|
"Sending...": "Sending...",
|
|
105
|
+
"Show all": "Show all",
|
|
77
106
|
"Shuffle": "Shuffle",
|
|
78
107
|
"Slow Mode ON": "Slow Mode ON",
|
|
79
108
|
"Some of the files will not be accepted": "Some of the files will not be accepted",
|
|
109
|
+
"Submit": "Submit",
|
|
110
|
+
"Suggest an option": "Suggest an option",
|
|
80
111
|
"This message did not meet our content guidelines": "This message did not meet our content guidelines",
|
|
81
112
|
"This message was deleted...": "This message was deleted...",
|
|
82
113
|
"Thread": "Thread",
|
|
83
114
|
"To start recording, allow the camera access in your browser": "To start recording, allow the camera access in your browser",
|
|
84
115
|
"To start recording, allow the microphone access in your browser": "To start recording, allow the microphone access in your browser",
|
|
116
|
+
"Type a number from 2 to 10": "Type a number from 2 to 10",
|
|
85
117
|
"Type your message": "Type your message",
|
|
86
118
|
"Unmute": "Unmute",
|
|
87
119
|
"Unpin": "Unpin",
|
|
88
120
|
"Unread messages": "Unread messages",
|
|
89
121
|
"Unsupported attachment": "Unsupported attachment",
|
|
122
|
+
"Update your comment": "Update your comment",
|
|
90
123
|
"Upload type: \"{{ type }}\" is not allowed": "Upload type: \"{{ type }}\" is not allowed",
|
|
91
124
|
"User uploaded content": "User uploaded content",
|
|
125
|
+
"View results": "View results",
|
|
126
|
+
"View {{count}} comments_one": "View {{count}} comment",
|
|
127
|
+
"View {{count}} comments_other": "View {{count}} comments",
|
|
92
128
|
"Voice message": "Voice message",
|
|
129
|
+
"Vote ended": "Vote ended",
|
|
93
130
|
"Wait until all attachments have uploaded": "Wait until all attachments have uploaded",
|
|
131
|
+
"You": "You",
|
|
94
132
|
"You have no channels currently": "You have no channels currently",
|
|
95
133
|
"You've reached the maximum number of files": "You've reached the maximum number of files",
|
|
96
134
|
"aria/Attachment": "Attachment",
|
|
@@ -107,6 +145,7 @@
|
|
|
107
145
|
"aria/Load More Channels": "Load More Channels",
|
|
108
146
|
"aria/Menu": "Menu",
|
|
109
147
|
"aria/Message Options": "Message Options",
|
|
148
|
+
"aria/Open Attachment Selector": "aria/Open Attachment Selector",
|
|
110
149
|
"aria/Open Message Actions Menu": "Open Message Actions Menu",
|
|
111
150
|
"aria/Open Reaction Selector": "Open Reaction Selector",
|
|
112
151
|
"aria/Open Thread": "Open Thread",
|
|
@@ -122,6 +161,8 @@
|
|
|
122
161
|
"this content could not be displayed": "this content could not be displayed",
|
|
123
162
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
124
163
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
164
|
+
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
165
|
+
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
125
166
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
126
167
|
"unreadMessagesSeparatorText_one": "1 unread message",
|
|
127
168
|
"unreadMessagesSeparatorText_other": "{{count}} unread messages",
|
|
@@ -138,5 +179,9 @@
|
|
|
138
179
|
"{{ watcherCount }} online": "{{ watcherCount }} online",
|
|
139
180
|
"{{count}} unread_one": "{{count}} unread",
|
|
140
181
|
"{{count}} unread_other": "{{count}} unread",
|
|
141
|
-
"
|
|
182
|
+
"{{count}} votes_one": "{{count}} vote",
|
|
183
|
+
"{{count}} votes_other": "{{count}} votes",
|
|
184
|
+
"🏙 Attachment...": "🏙 Attachment...",
|
|
185
|
+
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} created: {{ pollName}}",
|
|
186
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} voted: {{pollOptionText}}"
|
|
142
187
|
}
|