stream-chat-react 13.2.3 → 13.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Attachment/Attachment.d.ts +5 -3
- package/dist/components/Attachment/Attachment.js +12 -5
- package/dist/components/Attachment/AttachmentContainer.d.ts +4 -3
- package/dist/components/Attachment/AttachmentContainer.js +5 -1
- package/dist/components/Attachment/Geolocation.d.ts +13 -0
- package/dist/components/Attachment/Geolocation.js +34 -0
- package/dist/components/Attachment/icons.d.ts +2 -0
- package/dist/components/Attachment/icons.js +5 -0
- package/dist/components/Attachment/index.d.ts +3 -1
- package/dist/components/Attachment/index.js +3 -1
- package/dist/components/Attachment/utils.d.ts +4 -1
- package/dist/components/Channel/Channel.d.ts +1 -1
- package/dist/components/Channel/Channel.js +2 -0
- package/dist/components/ChannelPreview/utils.js +3 -0
- package/dist/components/Chat/hooks/useChat.js +1 -1
- package/dist/components/Dialog/DialogAnchor.d.ts +3 -2
- package/dist/components/Dialog/DialogAnchor.js +7 -2
- package/dist/components/Form/Dropdown.d.ts +14 -0
- package/dist/components/Form/Dropdown.js +49 -0
- package/dist/components/Form/SwitchField.js +3 -1
- package/dist/components/Location/ShareLocationDialog.d.ts +18 -0
- package/dist/components/Location/ShareLocationDialog.js +139 -0
- package/dist/components/Location/hooks/useLiveLocationSharingManager.d.ts +18 -0
- package/dist/components/Location/hooks/useLiveLocationSharingManager.js +57 -0
- package/dist/components/Location/index.d.ts +1 -0
- package/dist/components/Location/index.js +1 -0
- package/dist/components/Message/MessageSimple.js +6 -1
- package/dist/components/Message/index.d.ts +3 -1
- package/dist/components/Message/index.js +3 -1
- package/dist/components/Message/renderText/renderText.d.ts +1 -1
- package/dist/components/Message/renderText/renderText.js +1 -1
- package/dist/components/MessageInput/AttachmentPreviewList/AttachmentPreviewList.d.ts +3 -1
- package/dist/components/MessageInput/AttachmentPreviewList/AttachmentPreviewList.js +35 -26
- package/dist/components/MessageInput/AttachmentPreviewList/GeolocationPreview.d.ts +13 -0
- package/dist/components/MessageInput/AttachmentPreviewList/GeolocationPreview.js +25 -0
- package/dist/components/MessageInput/AttachmentPreviewList/index.d.ts +1 -0
- package/dist/components/MessageInput/AttachmentSelector.d.ts +2 -1
- package/dist/components/MessageInput/AttachmentSelector.js +34 -12
- package/dist/components/MessageInput/MessageInput.d.ts +3 -1
- package/dist/components/MessageInput/MessageInput.js +7 -3
- package/dist/components/MessageInput/hooks/index.d.ts +1 -0
- package/dist/components/MessageInput/hooks/index.js +1 -0
- package/dist/components/MessageInput/hooks/useAttachmentsForPreview.d.ts +17 -0
- package/dist/components/MessageInput/hooks/useAttachmentsForPreview.js +22 -0
- package/dist/components/MessageInput/index.d.ts +1 -1
- package/dist/components/Modal/Modal.d.ts +8 -3
- package/dist/components/Modal/Modal.js +19 -8
- package/dist/components/Poll/PollActions/AddCommentForm.js +8 -0
- package/dist/components/Poll/PollActions/SuggestPollOptionForm.js +6 -3
- package/dist/components/Poll/PollCreationDialog/PollCreationDialogControls.js +4 -1
- package/dist/components/TextareaComposer/SuggestionList/SuggestionListItem.js +4 -1
- package/dist/components/index.d.ts +2 -1
- package/dist/components/index.js +2 -0
- package/dist/context/ComponentContext.d.ts +3 -0
- package/dist/css/v2/index.css +1 -1
- package/dist/css/v2/index.layout.css +1 -1
- package/dist/experimental/index.browser.cjs +11 -0
- package/dist/experimental/index.browser.cjs.map +2 -2
- package/dist/experimental/index.node.cjs +11 -0
- package/dist/experimental/index.node.cjs.map +2 -2
- package/dist/i18n/Streami18n.d.ts +21 -0
- package/dist/i18n/TranslationBuilder/notifications/NotificationTranslationTopic.js +2 -0
- package/dist/i18n/TranslationBuilder/notifications/pollVoteCountTrespass.d.ts +3 -0
- package/dist/i18n/TranslationBuilder/notifications/pollVoteCountTrespass.js +1 -0
- package/dist/i18n/de.json +22 -1
- package/dist/i18n/en.json +22 -1
- package/dist/i18n/es.json +22 -1
- package/dist/i18n/fr.json +22 -1
- package/dist/i18n/hi.json +22 -1
- package/dist/i18n/it.json +22 -1
- package/dist/i18n/ja.json +22 -1
- package/dist/i18n/ko.json +22 -1
- package/dist/i18n/nl.json +22 -1
- package/dist/i18n/pt.json +22 -1
- package/dist/i18n/ru.json +22 -1
- package/dist/i18n/tr.json +22 -1
- package/dist/index.browser.cjs +2610 -1727
- package/dist/index.browser.cjs.map +4 -4
- package/dist/index.node.cjs +2622 -1727
- package/dist/index.node.cjs.map +4 -4
- package/dist/scss/v2/AttachmentList/AttachmentList-layout.scss +50 -0
- package/dist/scss/v2/AttachmentList/AttachmentList-theme.scss +56 -0
- package/dist/scss/v2/AttachmentPreviewList/AttachmentPreviewList-layout.scss +3 -0
- package/dist/scss/v2/AttachmentPreviewList/AttachmentPreviewList-theme.scss +11 -0
- package/dist/scss/v2/Dialog/Dialog-layout.scss +1 -2
- package/dist/scss/v2/Form/Form-layout.scss +40 -0
- package/dist/scss/v2/Form/Form-theme.scss +62 -0
- package/dist/scss/v2/Location/Location-layout.scss +52 -0
- package/dist/scss/v2/Location/Location-theme.scss +32 -0
- package/dist/scss/v2/MessageInput/MessageInput-theme.scss +7 -0
- package/dist/scss/v2/Modal/Modal-layout.scss +2 -0
- package/dist/scss/v2/Poll/Poll-layout.scss +0 -35
- package/dist/scss/v2/Poll/Poll-theme.scss +0 -28
- package/dist/scss/v2/_icons.scss +1 -0
- package/dist/scss/v2/index.layout.scss +1 -0
- package/dist/scss/v2/index.scss +1 -0
- package/package.json +6 -6
|
@@ -150,6 +150,7 @@ export declare class Streami18n {
|
|
|
150
150
|
"Anonymous poll": string;
|
|
151
151
|
Archive: string;
|
|
152
152
|
"Ask a question": string;
|
|
153
|
+
Attach: string;
|
|
153
154
|
"Attach files": string;
|
|
154
155
|
"Attachment upload blocked due to {{reason}}": string;
|
|
155
156
|
"Attachment upload failed due to {{reason}}": string;
|
|
@@ -162,6 +163,7 @@ export declare class Streami18n {
|
|
|
162
163
|
"Connection failure, reconnecting now...": string;
|
|
163
164
|
Create: string;
|
|
164
165
|
"Create poll": string;
|
|
166
|
+
"Current location": string;
|
|
165
167
|
Delete: string;
|
|
166
168
|
Delivered: string;
|
|
167
169
|
"Download attachment {{ name }}": string;
|
|
@@ -197,12 +199,19 @@ export declare class Streami18n {
|
|
|
197
199
|
"Failed to jump to the first unread message": string;
|
|
198
200
|
"Failed to mark channel as read": string;
|
|
199
201
|
"Failed to play the recording": string;
|
|
202
|
+
"Failed to retrieve location": string;
|
|
203
|
+
"Failed to share location": string;
|
|
200
204
|
File: string;
|
|
201
205
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": string;
|
|
202
206
|
Flag: string;
|
|
203
207
|
"Generating...": string;
|
|
204
208
|
"Latest Messages": string;
|
|
209
|
+
"Live for {{duration}}": string;
|
|
210
|
+
"Live location": string;
|
|
211
|
+
"Live until {{ timestamp }}": string;
|
|
205
212
|
"Load more": string;
|
|
213
|
+
Location: string;
|
|
214
|
+
"Location sharing ended": string;
|
|
206
215
|
"Mark as unread": string;
|
|
207
216
|
"Maximum number of votes (from 2 to 10)": string;
|
|
208
217
|
Menu: string;
|
|
@@ -236,6 +245,7 @@ export declare class Streami18n {
|
|
|
236
245
|
"Poll results": string;
|
|
237
246
|
Question: string;
|
|
238
247
|
Quote: string;
|
|
248
|
+
"Reached the vote limit. Remove an existing vote first.": string;
|
|
239
249
|
"Recording format is not supported and cannot be reproduced": string;
|
|
240
250
|
"Remind Me": string;
|
|
241
251
|
"Remove reminder": string;
|
|
@@ -255,14 +265,20 @@ export declare class Streami18n {
|
|
|
255
265
|
"Send Anyway": string;
|
|
256
266
|
"Send message request failed": string;
|
|
257
267
|
"Sending...": string;
|
|
268
|
+
Share: string;
|
|
269
|
+
"Share Location": string;
|
|
270
|
+
"Share live location for": string;
|
|
271
|
+
"Shared live location": string;
|
|
258
272
|
"Show all": string;
|
|
259
273
|
Shuffle: string;
|
|
260
274
|
"Slow Mode ON": string;
|
|
261
275
|
"Some of the files will not be accepted": string;
|
|
262
276
|
"Start typing to search": string;
|
|
277
|
+
"Stop sharing": string;
|
|
263
278
|
Submit: string;
|
|
264
279
|
"Suggest an option": string;
|
|
265
280
|
"Thinking...": string;
|
|
281
|
+
"This field cannot be empty or contain only spaces": string;
|
|
266
282
|
"This message did not meet our content guidelines": string;
|
|
267
283
|
"This message was deleted...": string;
|
|
268
284
|
Thread: string;
|
|
@@ -304,12 +320,14 @@ export declare class Streami18n {
|
|
|
304
320
|
"aria/Menu": string;
|
|
305
321
|
"aria/Message Options": string;
|
|
306
322
|
"aria/Open Attachment Selector": string;
|
|
323
|
+
"aria/Open Menu": string;
|
|
307
324
|
"aria/Open Message Actions Menu": string;
|
|
308
325
|
"aria/Open Reaction Selector": string;
|
|
309
326
|
"aria/Open Thread": string;
|
|
310
327
|
"aria/Reaction list": string;
|
|
311
328
|
"aria/Remind Me Options": string;
|
|
312
329
|
"aria/Remove attachment": string;
|
|
330
|
+
"aria/Remove location attachment": string;
|
|
313
331
|
"aria/Retry upload": string;
|
|
314
332
|
"aria/Search results": string;
|
|
315
333
|
"aria/Search results header filter button": string;
|
|
@@ -317,6 +335,7 @@ export declare class Streami18n {
|
|
|
317
335
|
"aria/Stop AI Generation": string;
|
|
318
336
|
"duration/Message reminder": string;
|
|
319
337
|
"duration/Remind Me": string;
|
|
338
|
+
"duration/Share Location": string;
|
|
320
339
|
live: string;
|
|
321
340
|
"network error": string;
|
|
322
341
|
replyCount_one: string;
|
|
@@ -329,6 +348,7 @@ export declare class Streami18n {
|
|
|
329
348
|
"size limit": string;
|
|
330
349
|
"this content could not be displayed": string;
|
|
331
350
|
"timestamp/DateSeparator": string;
|
|
351
|
+
"timestamp/LiveLocation": string;
|
|
332
352
|
"timestamp/MessageTimestamp": string;
|
|
333
353
|
"timestamp/PollVote": string;
|
|
334
354
|
"timestamp/PollVoteTooltip": string;
|
|
@@ -357,6 +377,7 @@ export declare class Streami18n {
|
|
|
357
377
|
"\uD83C\uDFD9 Attachment...": string;
|
|
358
378
|
"\uD83D\uDCCA {{createdBy}} created: {{ pollName}}": string;
|
|
359
379
|
"\uD83D\uDCCA {{votedBy}} voted: {{pollOptionText}}": string;
|
|
380
|
+
"\uD83D\uDCCDShared location": string;
|
|
360
381
|
} | UnknownType;
|
|
361
382
|
};
|
|
362
383
|
};
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { attachmentUploadBlockedNotificationTranslator, attachmentUploadFailedNotificationTranslator, } from './attachmentUpload';
|
|
2
2
|
import { TranslationTopic } from '../../TranslationBuilder';
|
|
3
3
|
import { pollCreationFailedNotificationTranslator } from './pollComposition';
|
|
4
|
+
import { pollVoteCountTrespass } from './pollVoteCountTrespass';
|
|
4
5
|
export const defaultNotificationTranslators = {
|
|
5
6
|
'api:attachment:upload:failed': attachmentUploadFailedNotificationTranslator,
|
|
6
7
|
'api:poll:create:failed': pollCreationFailedNotificationTranslator,
|
|
7
8
|
'validation:attachment:upload:blocked': attachmentUploadBlockedNotificationTranslator,
|
|
9
|
+
'validation:poll:castVote:limit': pollVoteCountTrespass,
|
|
8
10
|
};
|
|
9
11
|
export class NotificationTranslationTopic extends TranslationTopic {
|
|
10
12
|
constructor({ i18next, translators }) {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const pollVoteCountTrespass = ({ t }) => t('Reached the vote limit. Remove an existing vote first.');
|
package/dist/i18n/de.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Anonymous poll": "Anonyme Umfrage",
|
|
15
15
|
"Archive": "Archivieren",
|
|
16
16
|
"Ask a question": "Eine Frage stellen",
|
|
17
|
+
"Attach": "Anhängen",
|
|
17
18
|
"Attach files": "Dateien anhängen",
|
|
18
19
|
"Attachment upload blocked due to {{reason}}": "Anhang-Upload blockiert wegen {{reason}}",
|
|
19
20
|
"Attachment upload failed due to {{reason}}": "Anhang-Upload fehlgeschlagen wegen {{reason}}",
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
"Connection failure, reconnecting now...": "Verbindungsfehler, Wiederherstellung der Verbindung...",
|
|
27
28
|
"Create": "Erstellen",
|
|
28
29
|
"Create poll": "Umfrage erstellen",
|
|
30
|
+
"Current location": "Aktueller Standort",
|
|
29
31
|
"Delete": "Löschen",
|
|
30
32
|
"Delivered": "Zugestellt",
|
|
31
33
|
"Download attachment {{ name }}": "Anhang {{ name }} herunterladen",
|
|
@@ -61,12 +63,19 @@
|
|
|
61
63
|
"Failed to jump to the first unread message": "Fehler beim Springen zur ersten ungelesenen Nachricht",
|
|
62
64
|
"Failed to mark channel as read": "Fehler beim Markieren des Kanals als gelesen",
|
|
63
65
|
"Failed to play the recording": "Wiedergabe der Aufnahme fehlgeschlagen",
|
|
66
|
+
"Failed to retrieve location": "Standort konnte nicht abgerufen werden",
|
|
67
|
+
"Failed to share location": "Standort konnte nicht geteilt werden",
|
|
64
68
|
"File": "Datei",
|
|
65
69
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Datei ist zu groß: {{ size }}, maximale Upload-Größe beträgt {{ limit }}",
|
|
66
70
|
"Flag": "Melden",
|
|
67
71
|
"Generating...": "Generieren...",
|
|
68
72
|
"Latest Messages": "Neueste Nachrichten",
|
|
73
|
+
"Live for {{duration}}": "Live für {{duration}}",
|
|
74
|
+
"Live location": "Live-Standort",
|
|
75
|
+
"Live until {{ timestamp }}": "Live bis {{ timestamp }}",
|
|
69
76
|
"Load more": "Mehr laden",
|
|
77
|
+
"Location": "Standort",
|
|
78
|
+
"Location sharing ended": "Standortfreigabe beendet",
|
|
70
79
|
"Mark as unread": "Als ungelesen markieren",
|
|
71
80
|
"Maximum number of votes (from 2 to 10)": "Maximale Anzahl der Stimmen (von 2 bis 10)",
|
|
72
81
|
"Menu": "Menü",
|
|
@@ -100,6 +109,7 @@
|
|
|
100
109
|
"Poll results": "Umfrageergebnisse",
|
|
101
110
|
"Question": "Frage",
|
|
102
111
|
"Quote": "Zitieren",
|
|
112
|
+
"Reached the vote limit. Remove an existing vote first.": "Das Abstimmungslimit wurde erreicht. Entfernen Sie zuerst eine bestehende Stimme.",
|
|
103
113
|
"Recording format is not supported and cannot be reproduced": "Aufnahmeformat wird nicht unterstützt und kann nicht wiedergegeben werden",
|
|
104
114
|
"Remind Me": "Erinnern",
|
|
105
115
|
"Remove reminder": "Erinnerung entfernen",
|
|
@@ -119,14 +129,20 @@
|
|
|
119
129
|
"Send Anyway": "Trotzdem senden",
|
|
120
130
|
"Send message request failed": "Senden der Nachrichtenanfrage fehlgeschlagen",
|
|
121
131
|
"Sending...": "Senden...",
|
|
132
|
+
"Share": "Teilen",
|
|
133
|
+
"Share Location": "Standort teilen",
|
|
134
|
+
"Share live location for": "Live-Standort teilen für",
|
|
135
|
+
"Shared live location": "Geteilter Live-Standort",
|
|
122
136
|
"Show all": "Alle anzeigen",
|
|
123
137
|
"Shuffle": "Mischen",
|
|
124
138
|
"Slow Mode ON": "Langsamer Modus EIN",
|
|
125
139
|
"Some of the files will not be accepted": "Einige der Dateien werden nicht akzeptiert",
|
|
126
140
|
"Start typing to search": "Tippen Sie, um zu suchen",
|
|
141
|
+
"Stop sharing": "Teilen beenden",
|
|
127
142
|
"Submit": "Absenden",
|
|
128
143
|
"Suggest an option": "Eine Option vorschlagen",
|
|
129
144
|
"Thinking...": "Denken...",
|
|
145
|
+
"This field cannot be empty or contain only spaces": "Dieses Feld darf nicht leer sein oder nur Leerzeichen enthalten",
|
|
130
146
|
"This message did not meet our content guidelines": "Diese Nachricht entsprach nicht unseren Inhaltsrichtlinien",
|
|
131
147
|
"This message was deleted...": "Diese Nachricht wurde gelöscht...",
|
|
132
148
|
"Thread": "Thread",
|
|
@@ -168,12 +184,14 @@
|
|
|
168
184
|
"aria/Menu": "Menü",
|
|
169
185
|
"aria/Message Options": "Nachrichtenoptionen",
|
|
170
186
|
"aria/Open Attachment Selector": "Anhang-Auswahl öffnen",
|
|
187
|
+
"aria/Open Menu": "Menü öffnen",
|
|
171
188
|
"aria/Open Message Actions Menu": "Nachrichtenaktionsmenü öffnen",
|
|
172
189
|
"aria/Open Reaction Selector": "Reaktionsauswahl öffnen",
|
|
173
190
|
"aria/Open Thread": "Thread öffnen",
|
|
174
191
|
"aria/Reaction list": "Reaktionsliste",
|
|
175
192
|
"aria/Remind Me Options": "Erinnerungsoptionen",
|
|
176
193
|
"aria/Remove attachment": "Anhang entfernen",
|
|
194
|
+
"aria/Remove location attachment": "Standortanhang entfernen",
|
|
177
195
|
"aria/Retry upload": "Upload erneut versuchen",
|
|
178
196
|
"aria/Search results": "Suchergebnisse",
|
|
179
197
|
"aria/Search results header filter button": "Suchergebnisse-Kopfzeilen-Filterbutton",
|
|
@@ -183,6 +201,7 @@
|
|
|
183
201
|
"ban-command-description": "Einen Benutzer verbannen",
|
|
184
202
|
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
185
203
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
204
|
+
"duration/Share Location": "{{ milliseconds | durationFormatter }}",
|
|
186
205
|
"giphy-command-args": "[Text]",
|
|
187
206
|
"giphy-command-description": "Poste ein zufälliges Gif in den Kanal",
|
|
188
207
|
"live": "live",
|
|
@@ -199,6 +218,7 @@
|
|
|
199
218
|
"size limit": "Größenbeschränkung",
|
|
200
219
|
"this content could not be displayed": "Dieser Inhalt konnte nicht angezeigt werden",
|
|
201
220
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
221
|
+
"timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
202
222
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
203
223
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
204
224
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -230,5 +250,6 @@
|
|
|
230
250
|
"{{count}} votes_other": "{{count}} Stimmen",
|
|
231
251
|
"🏙 Attachment...": "🏙 Anhang...",
|
|
232
252
|
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} hat erstellt: {{ pollName}}",
|
|
233
|
-
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} hat abgestimmt: {{pollOptionText}}"
|
|
253
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} hat abgestimmt: {{pollOptionText}}",
|
|
254
|
+
"📍Shared location": "📍Geteilter Standort"
|
|
234
255
|
}
|
package/dist/i18n/en.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Anonymous poll": "Anonymous poll",
|
|
15
15
|
"Archive": "Archive",
|
|
16
16
|
"Ask a question": "Ask a question",
|
|
17
|
+
"Attach": "Attach",
|
|
17
18
|
"Attach files": "Attach files",
|
|
18
19
|
"Attachment upload blocked due to {{reason}}": "Attachment upload blocked due to {{reason}}",
|
|
19
20
|
"Attachment upload failed due to {{reason}}": "Attachment upload failed due to {{reason}}",
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
"Connection failure, reconnecting now...": "Connection failure, reconnecting now...",
|
|
27
28
|
"Create": "Create",
|
|
28
29
|
"Create poll": "Create poll",
|
|
30
|
+
"Current location": "Current location",
|
|
29
31
|
"Delete": "Delete",
|
|
30
32
|
"Delivered": "Delivered",
|
|
31
33
|
"Download attachment {{ name }}": "Download attachment {{ name }}",
|
|
@@ -61,12 +63,19 @@
|
|
|
61
63
|
"Failed to jump to the first unread message": "Failed to jump to the first unread message",
|
|
62
64
|
"Failed to mark channel as read": "Failed to mark channel as read",
|
|
63
65
|
"Failed to play the recording": "Failed to play the recording",
|
|
66
|
+
"Failed to retrieve location": "Failed to retrieve location",
|
|
67
|
+
"Failed to share location": "Failed to share location",
|
|
64
68
|
"File": "File",
|
|
65
69
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "File is too large: {{ size }}, maximum upload size is {{ limit }}",
|
|
66
70
|
"Flag": "Flag",
|
|
67
71
|
"Generating...": "Generating...",
|
|
68
72
|
"Latest Messages": "Latest Messages",
|
|
73
|
+
"Live for {{duration}}": "Live for {{duration}}",
|
|
74
|
+
"Live location": "Live location",
|
|
75
|
+
"Live until {{ timestamp }}": "Live until {{ timestamp }}",
|
|
69
76
|
"Load more": "Load more",
|
|
77
|
+
"Location": "Location",
|
|
78
|
+
"Location sharing ended": "Location sharing ended",
|
|
70
79
|
"Mark as unread": "Mark as unread",
|
|
71
80
|
"Maximum number of votes (from 2 to 10)": "Maximum number of votes (from 2 to 10)",
|
|
72
81
|
"Menu": "Menu",
|
|
@@ -100,6 +109,7 @@
|
|
|
100
109
|
"Poll results": "Poll results",
|
|
101
110
|
"Question": "Question",
|
|
102
111
|
"Quote": "Quote",
|
|
112
|
+
"Reached the vote limit. Remove an existing vote first.": "Reached the vote limit. Remove an existing vote first.",
|
|
103
113
|
"Recording format is not supported and cannot be reproduced": "Recording format is not supported and cannot be reproduced",
|
|
104
114
|
"Remind Me": "Remind Me",
|
|
105
115
|
"Remove reminder": "Remove reminder",
|
|
@@ -119,14 +129,20 @@
|
|
|
119
129
|
"Send Anyway": "Send Anyway",
|
|
120
130
|
"Send message request failed": "Send message request failed",
|
|
121
131
|
"Sending...": "Sending...",
|
|
132
|
+
"Share": "Share",
|
|
133
|
+
"Share Location": "Share Location",
|
|
134
|
+
"Share live location for": "Share live location for",
|
|
135
|
+
"Shared live location": "Shared live location",
|
|
122
136
|
"Show all": "Show all",
|
|
123
137
|
"Shuffle": "Shuffle",
|
|
124
138
|
"Slow Mode ON": "Slow Mode ON",
|
|
125
139
|
"Some of the files will not be accepted": "Some of the files will not be accepted",
|
|
126
140
|
"Start typing to search": "Start typing to search",
|
|
141
|
+
"Stop sharing": "Stop sharing",
|
|
127
142
|
"Submit": "Submit",
|
|
128
143
|
"Suggest an option": "Suggest an option",
|
|
129
144
|
"Thinking...": "Thinking...",
|
|
145
|
+
"This field cannot be empty or contain only spaces": "This field cannot be empty or contain only spaces",
|
|
130
146
|
"This message did not meet our content guidelines": "This message did not meet our content guidelines",
|
|
131
147
|
"This message was deleted...": "This message was deleted...",
|
|
132
148
|
"Thread": "Thread",
|
|
@@ -168,12 +184,14 @@
|
|
|
168
184
|
"aria/Menu": "Menu",
|
|
169
185
|
"aria/Message Options": "Message Options",
|
|
170
186
|
"aria/Open Attachment Selector": "aria/Open Attachment Selector",
|
|
187
|
+
"aria/Open Menu": "Open Menu",
|
|
171
188
|
"aria/Open Message Actions Menu": "Open Message Actions Menu",
|
|
172
189
|
"aria/Open Reaction Selector": "Open Reaction Selector",
|
|
173
190
|
"aria/Open Thread": "Open Thread",
|
|
174
191
|
"aria/Reaction list": "Reaction list",
|
|
175
192
|
"aria/Remind Me Options": "aria/Remind Me Options",
|
|
176
193
|
"aria/Remove attachment": "Remove attachment",
|
|
194
|
+
"aria/Remove location attachment": "Remove location attachment",
|
|
177
195
|
"aria/Retry upload": "Retry upload",
|
|
178
196
|
"aria/Search results": "Search results",
|
|
179
197
|
"aria/Search results header filter button": "Search results header filter button",
|
|
@@ -181,6 +199,7 @@
|
|
|
181
199
|
"aria/Stop AI Generation": "Stop AI Generation",
|
|
182
200
|
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
183
201
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
202
|
+
"duration/Share Location": "{{ milliseconds | durationFormatter }}",
|
|
184
203
|
"live": "live",
|
|
185
204
|
"network error": "network error",
|
|
186
205
|
"replyCount_one": "1 reply",
|
|
@@ -193,6 +212,7 @@
|
|
|
193
212
|
"size limit": "size limit",
|
|
194
213
|
"this content could not be displayed": "this content could not be displayed",
|
|
195
214
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
215
|
+
"timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
196
216
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
197
217
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
198
218
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -220,5 +240,6 @@
|
|
|
220
240
|
"{{count}} votes_other": "{{count}} votes",
|
|
221
241
|
"🏙 Attachment...": "🏙 Attachment...",
|
|
222
242
|
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} created: {{ pollName}}",
|
|
223
|
-
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} voted: {{pollOptionText}}"
|
|
243
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} voted: {{pollOptionText}}",
|
|
244
|
+
"📍Shared location": "📍Shared location"
|
|
224
245
|
}
|
package/dist/i18n/es.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Anonymous poll": "Encuesta anónima",
|
|
15
15
|
"Archive": "Archivo",
|
|
16
16
|
"Ask a question": "Hacer una pregunta",
|
|
17
|
+
"Attach": "Adjuntar",
|
|
17
18
|
"Attach files": "Adjuntar archivos",
|
|
18
19
|
"Attachment upload blocked due to {{reason}}": "Carga de adjunto bloqueada debido a {{reason}}",
|
|
19
20
|
"Attachment upload failed due to {{reason}}": "Carga de adjunto fallida debido a {{reason}}",
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
"Connection failure, reconnecting now...": "Fallo de conexión, reconectando ahora...",
|
|
27
28
|
"Create": "Crear",
|
|
28
29
|
"Create poll": "Crear encuesta",
|
|
30
|
+
"Current location": "Ubicación actual",
|
|
29
31
|
"Delete": "Borrar",
|
|
30
32
|
"Delivered": "Entregado",
|
|
31
33
|
"Download attachment {{ name }}": "Descargar adjunto {{ name }}",
|
|
@@ -61,12 +63,19 @@
|
|
|
61
63
|
"Failed to jump to the first unread message": "Error al saltar al primer mensaje no leído",
|
|
62
64
|
"Failed to mark channel as read": "Error al marcar el canal como leído",
|
|
63
65
|
"Failed to play the recording": "No se pudo reproducir la grabación",
|
|
66
|
+
"Failed to retrieve location": "No se pudo obtener la ubicación",
|
|
67
|
+
"Failed to share location": "No se pudo compartir la ubicación",
|
|
64
68
|
"File": "Archivo",
|
|
65
69
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "El archivo es demasiado grande: {{ size }}, el tamaño máximo de carga es de {{ limit }}",
|
|
66
70
|
"Flag": "Marcar",
|
|
67
71
|
"Generating...": "Generando...",
|
|
68
72
|
"Latest Messages": "Últimos mensajes",
|
|
73
|
+
"Live for {{duration}}": "En vivo durante {{duration}}",
|
|
74
|
+
"Live location": "Ubicación en vivo",
|
|
75
|
+
"Live until {{ timestamp }}": "En vivo hasta {{ timestamp }}",
|
|
69
76
|
"Load more": "Cargar más",
|
|
77
|
+
"Location": "Ubicación",
|
|
78
|
+
"Location sharing ended": "Compartir ubicación terminado",
|
|
70
79
|
"Mark as unread": "Marcar como no leído",
|
|
71
80
|
"Maximum number of votes (from 2 to 10)": "Número máximo de votos (de 2 a 10)",
|
|
72
81
|
"Menu": "Menú",
|
|
@@ -100,6 +109,7 @@
|
|
|
100
109
|
"Poll results": "Resultados de la encuesta",
|
|
101
110
|
"Question": "Pregunta",
|
|
102
111
|
"Quote": "Citar",
|
|
112
|
+
"Reached the vote limit. Remove an existing vote first.": "Se ha alcanzado el límite de votos. Elimina un voto existente primero.",
|
|
103
113
|
"Recording format is not supported and cannot be reproduced": "El formato de grabación no es compatible y no se puede reproducir",
|
|
104
114
|
"Remind Me": "Recordarme",
|
|
105
115
|
"Remove reminder": "Eliminar recordatorio",
|
|
@@ -121,14 +131,20 @@
|
|
|
121
131
|
"Send Anyway": "Enviar de todos modos",
|
|
122
132
|
"Send message request failed": "Error al enviar la solicitud de mensaje",
|
|
123
133
|
"Sending...": "Enviando...",
|
|
134
|
+
"Share": "Compartir",
|
|
135
|
+
"Share Location": "Compartir ubicación",
|
|
136
|
+
"Share live location for": "Compartir ubicación en vivo durante",
|
|
137
|
+
"Shared live location": "Ubicación en vivo compartida",
|
|
124
138
|
"Show all": "Mostrar todo",
|
|
125
139
|
"Shuffle": "Mezclar",
|
|
126
140
|
"Slow Mode ON": "Modo lento activado",
|
|
127
141
|
"Some of the files will not be accepted": "Algunos archivos no serán aceptados",
|
|
128
142
|
"Start typing to search": "Empieza a escribir para buscar",
|
|
143
|
+
"Stop sharing": "Dejar de compartir",
|
|
129
144
|
"Submit": "Enviar",
|
|
130
145
|
"Suggest an option": "Sugerir una opción",
|
|
131
146
|
"Thinking...": "Pensando...",
|
|
147
|
+
"This field cannot be empty or contain only spaces": "Este campo no puede estar vacío o contener solo espacios",
|
|
132
148
|
"This message did not meet our content guidelines": "Este mensaje no cumple con nuestras directrices de contenido",
|
|
133
149
|
"This message was deleted...": "Este mensaje fue eliminado...",
|
|
134
150
|
"Thread": "Hilo",
|
|
@@ -171,12 +187,14 @@
|
|
|
171
187
|
"aria/Menu": "Menú",
|
|
172
188
|
"aria/Message Options": "Opciones de mensaje",
|
|
173
189
|
"aria/Open Attachment Selector": "Abrir selector de adjuntos",
|
|
190
|
+
"aria/Open Menu": "Abrir menú",
|
|
174
191
|
"aria/Open Message Actions Menu": "Abrir menú de acciones de mensaje",
|
|
175
192
|
"aria/Open Reaction Selector": "Abrir selector de reacciones",
|
|
176
193
|
"aria/Open Thread": "Abrir hilo",
|
|
177
194
|
"aria/Reaction list": "Lista de reacciones",
|
|
178
195
|
"aria/Remind Me Options": "Opciones de recordatorio",
|
|
179
196
|
"aria/Remove attachment": "Eliminar adjunto",
|
|
197
|
+
"aria/Remove location attachment": "Eliminar adjunto de ubicación",
|
|
180
198
|
"aria/Retry upload": "Reintentar carga",
|
|
181
199
|
"aria/Search results": "Resultados de búsqueda",
|
|
182
200
|
"aria/Search results header filter button": "Botón de filtro del encabezado de resultados de búsqueda",
|
|
@@ -186,6 +204,7 @@
|
|
|
186
204
|
"ban-command-description": "Prohibir a un usuario",
|
|
187
205
|
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
188
206
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
207
|
+
"duration/Share Location": "{{ milliseconds | durationFormatter }}",
|
|
189
208
|
"giphy-command-args": "[texto]",
|
|
190
209
|
"giphy-command-description": "Publicar un gif aleatorio en el canal",
|
|
191
210
|
"live": "En vivo",
|
|
@@ -204,6 +223,7 @@
|
|
|
204
223
|
"size limit": "límite de tamaño",
|
|
205
224
|
"this content could not be displayed": "Este contenido no se pudo mostrar",
|
|
206
225
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
226
|
+
"timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
207
227
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
208
228
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
209
229
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -238,5 +258,6 @@
|
|
|
238
258
|
"{{count}} votes_other": "{{count}} votos",
|
|
239
259
|
"🏙 Attachment...": "🏙 Adjunto...",
|
|
240
260
|
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} creó: {{ pollName}}",
|
|
241
|
-
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} votó: {{pollOptionText}}"
|
|
261
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} votó: {{pollOptionText}}",
|
|
262
|
+
"📍Shared location": "📍Ubicación compartida"
|
|
242
263
|
}
|
package/dist/i18n/fr.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Anonymous poll": "Sondage anonyme",
|
|
15
15
|
"Archive": "Archive",
|
|
16
16
|
"Ask a question": "Poser une question",
|
|
17
|
+
"Attach": "Joindre",
|
|
17
18
|
"Attach files": "Joindre des fichiers",
|
|
18
19
|
"Attachment upload blocked due to {{reason}}": "Téléchargement de pièce jointe bloqué en raison de {{reason}}",
|
|
19
20
|
"Attachment upload failed due to {{reason}}": "Échec du téléchargement de la pièce jointe en raison de {{reason}}",
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
"Connection failure, reconnecting now...": "Échec de la connexion, reconnexion en cours...",
|
|
27
28
|
"Create": "Créer",
|
|
28
29
|
"Create poll": "Créer un sondage",
|
|
30
|
+
"Current location": "Emplacement actuel",
|
|
29
31
|
"Delete": "Supprimer",
|
|
30
32
|
"Delivered": "Publié",
|
|
31
33
|
"Download attachment {{ name }}": "Télécharger la pièce jointe {{ name }}",
|
|
@@ -61,12 +63,19 @@
|
|
|
61
63
|
"Failed to jump to the first unread message": "Échec du saut vers le premier message non lu",
|
|
62
64
|
"Failed to mark channel as read": "Échec du marquage du canal comme lu",
|
|
63
65
|
"Failed to play the recording": "Impossible de lire l'enregistrement",
|
|
66
|
+
"Failed to retrieve location": "Impossible de récupérer l'emplacement",
|
|
67
|
+
"Failed to share location": "Impossible de partager l'emplacement",
|
|
64
68
|
"File": "Fichier",
|
|
65
69
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "Le fichier est trop volumineux : {{ size }}, la taille maximale de téléchargement est de {{ limit }}",
|
|
66
70
|
"Flag": "Signaler",
|
|
67
71
|
"Generating...": "Génération...",
|
|
68
72
|
"Latest Messages": "Derniers messages",
|
|
73
|
+
"Live for {{duration}}": "En direct pendant {{duration}}",
|
|
74
|
+
"Live location": "Emplacement en direct",
|
|
75
|
+
"Live until {{ timestamp }}": "En direct jusqu'à {{ timestamp }}",
|
|
69
76
|
"Load more": "Charger plus",
|
|
77
|
+
"Location": "Emplacement",
|
|
78
|
+
"Location sharing ended": "Partage d'emplacement terminé",
|
|
70
79
|
"Mark as unread": "Marquer comme non lu",
|
|
71
80
|
"Maximum number of votes (from 2 to 10)": "Nombre maximum de votes (de 2 à 10)",
|
|
72
81
|
"Menu": "Menu",
|
|
@@ -100,6 +109,7 @@
|
|
|
100
109
|
"Poll results": "Résultats du sondage",
|
|
101
110
|
"Question": "Question",
|
|
102
111
|
"Quote": "Citer",
|
|
112
|
+
"Reached the vote limit. Remove an existing vote first.": "La limite de votes a été atteinte. Supprimez d'abord un vote existant.",
|
|
103
113
|
"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
114
|
"Remind Me": "Me rappeler",
|
|
105
115
|
"Remove reminder": "Supprimer le rappel",
|
|
@@ -121,14 +131,20 @@
|
|
|
121
131
|
"Send Anyway": "Envoyer quand même",
|
|
122
132
|
"Send message request failed": "Échec de la demande d'envoi de message",
|
|
123
133
|
"Sending...": "Envoi en cours...",
|
|
134
|
+
"Share": "Partager",
|
|
135
|
+
"Share Location": "Partager l'emplacement",
|
|
136
|
+
"Share live location for": "Partager l'emplacement en direct pendant",
|
|
137
|
+
"Shared live location": "Emplacement en direct partagé",
|
|
124
138
|
"Show all": "Tout afficher",
|
|
125
139
|
"Shuffle": "Mélanger",
|
|
126
140
|
"Slow Mode ON": "Mode lent activé",
|
|
127
141
|
"Some of the files will not be accepted": "Certains fichiers ne seront pas acceptés",
|
|
128
142
|
"Start typing to search": "Commencez à taper pour rechercher",
|
|
143
|
+
"Stop sharing": "Arrêter de partager",
|
|
129
144
|
"Submit": "Envoyer",
|
|
130
145
|
"Suggest an option": "Suggérer une option",
|
|
131
146
|
"Thinking...": "Réflexion...",
|
|
147
|
+
"This field cannot be empty or contain only spaces": "Ce champ ne peut pas être vide ou contenir uniquement des espaces",
|
|
132
148
|
"This message did not meet our content guidelines": "Ce message ne respecte pas nos directives de contenu",
|
|
133
149
|
"This message was deleted...": "Ce message a été supprimé...",
|
|
134
150
|
"Thread": "Fil de discussion",
|
|
@@ -171,12 +187,14 @@
|
|
|
171
187
|
"aria/Menu": "Menu",
|
|
172
188
|
"aria/Message Options": "Options du message",
|
|
173
189
|
"aria/Open Attachment Selector": "Ouvrir le sélecteur de pièces jointes",
|
|
190
|
+
"aria/Open Menu": "Ouvrir le menu",
|
|
174
191
|
"aria/Open Message Actions Menu": "Ouvrir le menu des actions du message",
|
|
175
192
|
"aria/Open Reaction Selector": "Ouvrir le sélecteur de réactions",
|
|
176
193
|
"aria/Open Thread": "Ouvrir le fil",
|
|
177
194
|
"aria/Reaction list": "Liste des réactions",
|
|
178
195
|
"aria/Remind Me Options": "Options de rappel",
|
|
179
196
|
"aria/Remove attachment": "Supprimer la pièce jointe",
|
|
197
|
+
"aria/Remove location attachment": "Supprimer la pièce jointe d'emplacement",
|
|
180
198
|
"aria/Retry upload": "Réessayer le téléchargement",
|
|
181
199
|
"aria/Search results": "Résultats de recherche",
|
|
182
200
|
"aria/Search results header filter button": "Bouton de filtre d'en-tête des résultats de recherche",
|
|
@@ -186,6 +204,7 @@
|
|
|
186
204
|
"ban-command-description": "Bannir un utilisateur",
|
|
187
205
|
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
188
206
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
207
|
+
"duration/Share Location": "{{ milliseconds | durationFormatter }}",
|
|
189
208
|
"giphy-command-args": "[texte]",
|
|
190
209
|
"giphy-command-description": "Poster un GIF aléatoire dans le canal",
|
|
191
210
|
"live": "en direct",
|
|
@@ -204,6 +223,7 @@
|
|
|
204
223
|
"size limit": "limite de taille",
|
|
205
224
|
"this content could not be displayed": "ce contenu n'a pas pu être affiché",
|
|
206
225
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
226
|
+
"timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
207
227
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
208
228
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
209
229
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -238,5 +258,6 @@
|
|
|
238
258
|
"{{count}} votes_other": "{{count}} votes",
|
|
239
259
|
"🏙 Attachment...": "🏙 Pièce jointe...",
|
|
240
260
|
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} a créé : {{ pollName}}",
|
|
241
|
-
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} a voté : {{pollOptionText}}"
|
|
261
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} a voté : {{pollOptionText}}",
|
|
262
|
+
"📍Shared location": "📍Emplacement partagé"
|
|
242
263
|
}
|
package/dist/i18n/hi.json
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"Anonymous poll": "गुमनाम मतदान",
|
|
15
15
|
"Archive": "आर्काइव",
|
|
16
16
|
"Ask a question": "एक प्रश्न पूछें",
|
|
17
|
+
"Attach": "संलग्न करें",
|
|
17
18
|
"Attach files": "फाइल्स अटैच करे",
|
|
18
19
|
"Attachment upload blocked due to {{reason}}": "{{reason}} के कारण अटैचमेंट अपलोड ब्लॉक किया गया",
|
|
19
20
|
"Attachment upload failed due to {{reason}}": "{{reason}} के कारण अटैचमेंट अपलोड विफल रहा",
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
"Connection failure, reconnecting now...": "कनेक्शन विफल रहा, अब पुनः कनेक्ट हो रहा है ...",
|
|
27
28
|
"Create": "बनाएँ",
|
|
28
29
|
"Create poll": "मतदान बनाएँ",
|
|
30
|
+
"Current location": "वर्तमान स्थान",
|
|
29
31
|
"Delete": "डिलीट",
|
|
30
32
|
"Delivered": "पहुंच गया",
|
|
31
33
|
"Download attachment {{ name }}": "अनुलग्नक {{ name }} डाउनलोड करें",
|
|
@@ -62,12 +64,19 @@
|
|
|
62
64
|
"Failed to jump to the first unread message": "पहले अपठित संदेश पर जाने में विफल",
|
|
63
65
|
"Failed to mark channel as read": "चैनल को पढ़ा हुआ चिह्नित करने में विफल।",
|
|
64
66
|
"Failed to play the recording": "रेकॉर्डिंग प्ले करने में विफल",
|
|
67
|
+
"Failed to retrieve location": "स्थान प्राप्त करने में विफल",
|
|
68
|
+
"Failed to share location": "स्थान साझा करने में विफल",
|
|
65
69
|
"File": "फ़ाइल",
|
|
66
70
|
"File is too large: {{ size }}, maximum upload size is {{ limit }}": "फ़ाइल बहुत बड़ी है: {{ size }}, अधिकतम अपलोड साइज़ {{ limit }} है",
|
|
67
71
|
"Flag": "फ्लैग करे",
|
|
68
72
|
"Generating...": "बना रहा है...",
|
|
69
73
|
"Latest Messages": "नवीनतम संदेश",
|
|
74
|
+
"Live for {{duration}}": "{{duration}} के लिए लाइव",
|
|
75
|
+
"Live location": "लाइव स्थान",
|
|
76
|
+
"Live until {{ timestamp }}": "{{ timestamp }} तक लाइव",
|
|
70
77
|
"Load more": "और लोड करें",
|
|
78
|
+
"Location": "स्थान",
|
|
79
|
+
"Location sharing ended": "स्थान साझा करना समाप्त",
|
|
71
80
|
"Mark as unread": "अपठित चिह्नित करें",
|
|
72
81
|
"Maximum number of votes (from 2 to 10)": "अधिकतम वोटों की संख्या (2 से 10)",
|
|
73
82
|
"Menu": "मेन्यू",
|
|
@@ -101,6 +110,7 @@
|
|
|
101
110
|
"Poll results": "मतदान परिणाम",
|
|
102
111
|
"Question": "प्रश्न",
|
|
103
112
|
"Quote": "उद्धरण",
|
|
113
|
+
"Reached the vote limit. Remove an existing vote first.": "मतदान सीमा तक पहुंच गया। पहले एक मौजूदा वोट हटाएं।",
|
|
104
114
|
"Recording format is not supported and cannot be reproduced": "रेकॉर्डिंग फ़ॉर्मेट समर्थित नहीं है और पुनः उत्पन्न नहीं किया जा सकता",
|
|
105
115
|
"Remind Me": "मुझे याद दिलाएं",
|
|
106
116
|
"Remove reminder": "रिमाइंडर हटाएं",
|
|
@@ -120,14 +130,20 @@
|
|
|
120
130
|
"Send Anyway": "वैसे भी भेजें",
|
|
121
131
|
"Send message request failed": "संदेश भेजने का अनुरोध विफल रहा",
|
|
122
132
|
"Sending...": "भेजा जा रहा है",
|
|
133
|
+
"Share": "साझा करें",
|
|
134
|
+
"Share Location": "स्थान साझा करें",
|
|
135
|
+
"Share live location for": "लाइव स्थान साझा करें",
|
|
136
|
+
"Shared live location": "साझा किया गया लाइव स्थान",
|
|
123
137
|
"Show all": "सभी दिखाएँ",
|
|
124
138
|
"Shuffle": "मिश्रित करें",
|
|
125
139
|
"Slow Mode ON": "स्लो मोड ऑन",
|
|
126
140
|
"Some of the files will not be accepted": "कुछ फ़ाइलें स्वीकार नहीं की जाएंगी",
|
|
127
141
|
"Start typing to search": "खोजने के लिए टाइप करना शुरू करें",
|
|
142
|
+
"Stop sharing": "साझा करना बंद करें",
|
|
128
143
|
"Submit": "जमा करें",
|
|
129
144
|
"Suggest an option": "एक विकल्प सुझाव दें",
|
|
130
145
|
"Thinking...": "सोच रहा है...",
|
|
146
|
+
"This field cannot be empty or contain only spaces": "यह फ़ील्ड खाली नहीं हो सकता या केवल रिक्त स्थान नहीं रख सकता",
|
|
131
147
|
"This message did not meet our content guidelines": "यह संदेश हमारे सामग्री दिशानिर्देशों के अनुरूप नहीं था",
|
|
132
148
|
"This message was deleted...": "मैसेज हटा दिया गया",
|
|
133
149
|
"Thread": "रिप्लाई थ्रेड",
|
|
@@ -169,12 +185,14 @@
|
|
|
169
185
|
"aria/Menu": "मेन्यू",
|
|
170
186
|
"aria/Message Options": "संदेश विकल्प",
|
|
171
187
|
"aria/Open Attachment Selector": "अटैचमेंट चयनकर्ता खोलें",
|
|
188
|
+
"aria/Open Menu": "मेन्यू खोलें",
|
|
172
189
|
"aria/Open Message Actions Menu": "संदेश क्रिया मेन्यू खोलें",
|
|
173
190
|
"aria/Open Reaction Selector": "प्रतिक्रिया चयनकर्ता खोलें",
|
|
174
191
|
"aria/Open Thread": "थ्रेड खोलें",
|
|
175
192
|
"aria/Reaction list": "प्रतिक्रिया सूची",
|
|
176
193
|
"aria/Remind Me Options": "रिमाइंडर विकल्प",
|
|
177
194
|
"aria/Remove attachment": "संलग्नक हटाएं",
|
|
195
|
+
"aria/Remove location attachment": "स्थान संलग्नक हटाएं",
|
|
178
196
|
"aria/Retry upload": "अपलोड पुनः प्रयास करें",
|
|
179
197
|
"aria/Search results": "खोज परिणाम",
|
|
180
198
|
"aria/Search results header filter button": "खोज परिणाम हेडर फ़िल्टर बटन",
|
|
@@ -184,6 +202,7 @@
|
|
|
184
202
|
"ban-command-description": "एक उपयोगकर्ता को प्रतिषेधित करें",
|
|
185
203
|
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
186
204
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
205
|
+
"duration/Share Location": "{{ milliseconds | durationFormatter }}",
|
|
187
206
|
"giphy-command-args": "[पाठ]",
|
|
188
207
|
"giphy-command-description": "चैनल पर एक क्रॉफिल जीआइएफ पोस्ट करें",
|
|
189
208
|
"live": "लाइव",
|
|
@@ -200,6 +219,7 @@
|
|
|
200
219
|
"size limit": "आकार सीमा",
|
|
201
220
|
"this content could not be displayed": "यह कॉन्टेंट लोड नहीं हो पाया",
|
|
202
221
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
222
|
+
"timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
203
223
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
204
224
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
205
225
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -231,5 +251,6 @@
|
|
|
231
251
|
"{{count}} votes_other": "{{count}} वोट",
|
|
232
252
|
"🏙 Attachment...": "🏙 अटैचमेंट",
|
|
233
253
|
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} ने बनाया: {{ pollName}}",
|
|
234
|
-
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} ने वोट दिया: {{pollOptionText}}"
|
|
254
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} ने वोट दिया: {{pollOptionText}}",
|
|
255
|
+
"📍Shared location": "📍साझा किया गया स्थान"
|
|
235
256
|
}
|