stream-chat-react 13.2.3 → 13.3.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/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/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/Poll/PollActions/AddCommentForm.js +8 -0
- package/dist/components/Poll/PollActions/SuggestPollOptionForm.js +6 -3
- 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 +20 -0
- package/dist/i18n/de.json +21 -1
- package/dist/i18n/en.json +21 -1
- package/dist/i18n/es.json +21 -1
- package/dist/i18n/fr.json +21 -1
- package/dist/i18n/hi.json +21 -1
- package/dist/i18n/it.json +21 -1
- package/dist/i18n/ja.json +21 -1
- package/dist/i18n/ko.json +21 -1
- package/dist/i18n/nl.json +21 -1
- package/dist/i18n/pt.json +21 -1
- package/dist/i18n/ru.json +21 -1
- package/dist/i18n/tr.json +21 -1
- package/dist/index.browser.cjs +1914 -1064
- package/dist/index.browser.cjs.map +4 -4
- package/dist/index.node.cjs +1926 -1064
- 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 +4 -4
|
@@ -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;
|
|
@@ -255,14 +264,20 @@ export declare class Streami18n {
|
|
|
255
264
|
"Send Anyway": string;
|
|
256
265
|
"Send message request failed": string;
|
|
257
266
|
"Sending...": string;
|
|
267
|
+
Share: string;
|
|
268
|
+
"Share Location": string;
|
|
269
|
+
"Share live location for": string;
|
|
270
|
+
"Shared live location": string;
|
|
258
271
|
"Show all": string;
|
|
259
272
|
Shuffle: string;
|
|
260
273
|
"Slow Mode ON": string;
|
|
261
274
|
"Some of the files will not be accepted": string;
|
|
262
275
|
"Start typing to search": string;
|
|
276
|
+
"Stop sharing": string;
|
|
263
277
|
Submit: string;
|
|
264
278
|
"Suggest an option": string;
|
|
265
279
|
"Thinking...": string;
|
|
280
|
+
"This field cannot be empty or contain only spaces": string;
|
|
266
281
|
"This message did not meet our content guidelines": string;
|
|
267
282
|
"This message was deleted...": string;
|
|
268
283
|
Thread: string;
|
|
@@ -304,12 +319,14 @@ export declare class Streami18n {
|
|
|
304
319
|
"aria/Menu": string;
|
|
305
320
|
"aria/Message Options": string;
|
|
306
321
|
"aria/Open Attachment Selector": string;
|
|
322
|
+
"aria/Open Menu": string;
|
|
307
323
|
"aria/Open Message Actions Menu": string;
|
|
308
324
|
"aria/Open Reaction Selector": string;
|
|
309
325
|
"aria/Open Thread": string;
|
|
310
326
|
"aria/Reaction list": string;
|
|
311
327
|
"aria/Remind Me Options": string;
|
|
312
328
|
"aria/Remove attachment": string;
|
|
329
|
+
"aria/Remove location attachment": string;
|
|
313
330
|
"aria/Retry upload": string;
|
|
314
331
|
"aria/Search results": string;
|
|
315
332
|
"aria/Search results header filter button": string;
|
|
@@ -317,6 +334,7 @@ export declare class Streami18n {
|
|
|
317
334
|
"aria/Stop AI Generation": string;
|
|
318
335
|
"duration/Message reminder": string;
|
|
319
336
|
"duration/Remind Me": string;
|
|
337
|
+
"duration/Share Location": string;
|
|
320
338
|
live: string;
|
|
321
339
|
"network error": string;
|
|
322
340
|
replyCount_one: string;
|
|
@@ -329,6 +347,7 @@ export declare class Streami18n {
|
|
|
329
347
|
"size limit": string;
|
|
330
348
|
"this content could not be displayed": string;
|
|
331
349
|
"timestamp/DateSeparator": string;
|
|
350
|
+
"timestamp/LiveLocation": string;
|
|
332
351
|
"timestamp/MessageTimestamp": string;
|
|
333
352
|
"timestamp/PollVote": string;
|
|
334
353
|
"timestamp/PollVoteTooltip": string;
|
|
@@ -357,6 +376,7 @@ export declare class Streami18n {
|
|
|
357
376
|
"\uD83C\uDFD9 Attachment...": string;
|
|
358
377
|
"\uD83D\uDCCA {{createdBy}} created: {{ pollName}}": string;
|
|
359
378
|
"\uD83D\uDCCA {{votedBy}} voted: {{pollOptionText}}": string;
|
|
379
|
+
"\uD83D\uDCCDShared location": string;
|
|
360
380
|
} | UnknownType;
|
|
361
381
|
};
|
|
362
382
|
};
|
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ü",
|
|
@@ -119,14 +128,20 @@
|
|
|
119
128
|
"Send Anyway": "Trotzdem senden",
|
|
120
129
|
"Send message request failed": "Senden der Nachrichtenanfrage fehlgeschlagen",
|
|
121
130
|
"Sending...": "Senden...",
|
|
131
|
+
"Share": "Teilen",
|
|
132
|
+
"Share Location": "Standort teilen",
|
|
133
|
+
"Share live location for": "Live-Standort teilen für",
|
|
134
|
+
"Shared live location": "Geteilter Live-Standort",
|
|
122
135
|
"Show all": "Alle anzeigen",
|
|
123
136
|
"Shuffle": "Mischen",
|
|
124
137
|
"Slow Mode ON": "Langsamer Modus EIN",
|
|
125
138
|
"Some of the files will not be accepted": "Einige der Dateien werden nicht akzeptiert",
|
|
126
139
|
"Start typing to search": "Tippen Sie, um zu suchen",
|
|
140
|
+
"Stop sharing": "Teilen beenden",
|
|
127
141
|
"Submit": "Absenden",
|
|
128
142
|
"Suggest an option": "Eine Option vorschlagen",
|
|
129
143
|
"Thinking...": "Denken...",
|
|
144
|
+
"This field cannot be empty or contain only spaces": "Dieses Feld darf nicht leer sein oder nur Leerzeichen enthalten",
|
|
130
145
|
"This message did not meet our content guidelines": "Diese Nachricht entsprach nicht unseren Inhaltsrichtlinien",
|
|
131
146
|
"This message was deleted...": "Diese Nachricht wurde gelöscht...",
|
|
132
147
|
"Thread": "Thread",
|
|
@@ -168,12 +183,14 @@
|
|
|
168
183
|
"aria/Menu": "Menü",
|
|
169
184
|
"aria/Message Options": "Nachrichtenoptionen",
|
|
170
185
|
"aria/Open Attachment Selector": "Anhang-Auswahl öffnen",
|
|
186
|
+
"aria/Open Menu": "Menü öffnen",
|
|
171
187
|
"aria/Open Message Actions Menu": "Nachrichtenaktionsmenü öffnen",
|
|
172
188
|
"aria/Open Reaction Selector": "Reaktionsauswahl öffnen",
|
|
173
189
|
"aria/Open Thread": "Thread öffnen",
|
|
174
190
|
"aria/Reaction list": "Reaktionsliste",
|
|
175
191
|
"aria/Remind Me Options": "Erinnerungsoptionen",
|
|
176
192
|
"aria/Remove attachment": "Anhang entfernen",
|
|
193
|
+
"aria/Remove location attachment": "Standortanhang entfernen",
|
|
177
194
|
"aria/Retry upload": "Upload erneut versuchen",
|
|
178
195
|
"aria/Search results": "Suchergebnisse",
|
|
179
196
|
"aria/Search results header filter button": "Suchergebnisse-Kopfzeilen-Filterbutton",
|
|
@@ -183,6 +200,7 @@
|
|
|
183
200
|
"ban-command-description": "Einen Benutzer verbannen",
|
|
184
201
|
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
185
202
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
203
|
+
"duration/Share Location": "{{ milliseconds | durationFormatter }}",
|
|
186
204
|
"giphy-command-args": "[Text]",
|
|
187
205
|
"giphy-command-description": "Poste ein zufälliges Gif in den Kanal",
|
|
188
206
|
"live": "live",
|
|
@@ -199,6 +217,7 @@
|
|
|
199
217
|
"size limit": "Größenbeschränkung",
|
|
200
218
|
"this content could not be displayed": "Dieser Inhalt konnte nicht angezeigt werden",
|
|
201
219
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
220
|
+
"timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
202
221
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
203
222
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
204
223
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -230,5 +249,6 @@
|
|
|
230
249
|
"{{count}} votes_other": "{{count}} Stimmen",
|
|
231
250
|
"🏙 Attachment...": "🏙 Anhang...",
|
|
232
251
|
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} hat erstellt: {{ pollName}}",
|
|
233
|
-
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} hat abgestimmt: {{pollOptionText}}"
|
|
252
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} hat abgestimmt: {{pollOptionText}}",
|
|
253
|
+
"📍Shared location": "📍Geteilter Standort"
|
|
234
254
|
}
|
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",
|
|
@@ -119,14 +128,20 @@
|
|
|
119
128
|
"Send Anyway": "Send Anyway",
|
|
120
129
|
"Send message request failed": "Send message request failed",
|
|
121
130
|
"Sending...": "Sending...",
|
|
131
|
+
"Share": "Share",
|
|
132
|
+
"Share Location": "Share Location",
|
|
133
|
+
"Share live location for": "Share live location for",
|
|
134
|
+
"Shared live location": "Shared live location",
|
|
122
135
|
"Show all": "Show all",
|
|
123
136
|
"Shuffle": "Shuffle",
|
|
124
137
|
"Slow Mode ON": "Slow Mode ON",
|
|
125
138
|
"Some of the files will not be accepted": "Some of the files will not be accepted",
|
|
126
139
|
"Start typing to search": "Start typing to search",
|
|
140
|
+
"Stop sharing": "Stop sharing",
|
|
127
141
|
"Submit": "Submit",
|
|
128
142
|
"Suggest an option": "Suggest an option",
|
|
129
143
|
"Thinking...": "Thinking...",
|
|
144
|
+
"This field cannot be empty or contain only spaces": "This field cannot be empty or contain only spaces",
|
|
130
145
|
"This message did not meet our content guidelines": "This message did not meet our content guidelines",
|
|
131
146
|
"This message was deleted...": "This message was deleted...",
|
|
132
147
|
"Thread": "Thread",
|
|
@@ -168,12 +183,14 @@
|
|
|
168
183
|
"aria/Menu": "Menu",
|
|
169
184
|
"aria/Message Options": "Message Options",
|
|
170
185
|
"aria/Open Attachment Selector": "aria/Open Attachment Selector",
|
|
186
|
+
"aria/Open Menu": "Open Menu",
|
|
171
187
|
"aria/Open Message Actions Menu": "Open Message Actions Menu",
|
|
172
188
|
"aria/Open Reaction Selector": "Open Reaction Selector",
|
|
173
189
|
"aria/Open Thread": "Open Thread",
|
|
174
190
|
"aria/Reaction list": "Reaction list",
|
|
175
191
|
"aria/Remind Me Options": "aria/Remind Me Options",
|
|
176
192
|
"aria/Remove attachment": "Remove attachment",
|
|
193
|
+
"aria/Remove location attachment": "Remove location attachment",
|
|
177
194
|
"aria/Retry upload": "Retry upload",
|
|
178
195
|
"aria/Search results": "Search results",
|
|
179
196
|
"aria/Search results header filter button": "Search results header filter button",
|
|
@@ -181,6 +198,7 @@
|
|
|
181
198
|
"aria/Stop AI Generation": "Stop AI Generation",
|
|
182
199
|
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
183
200
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
201
|
+
"duration/Share Location": "{{ milliseconds | durationFormatter }}",
|
|
184
202
|
"live": "live",
|
|
185
203
|
"network error": "network error",
|
|
186
204
|
"replyCount_one": "1 reply",
|
|
@@ -193,6 +211,7 @@
|
|
|
193
211
|
"size limit": "size limit",
|
|
194
212
|
"this content could not be displayed": "this content could not be displayed",
|
|
195
213
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
214
|
+
"timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
196
215
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
197
216
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
198
217
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -220,5 +239,6 @@
|
|
|
220
239
|
"{{count}} votes_other": "{{count}} votes",
|
|
221
240
|
"🏙 Attachment...": "🏙 Attachment...",
|
|
222
241
|
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} created: {{ pollName}}",
|
|
223
|
-
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} voted: {{pollOptionText}}"
|
|
242
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} voted: {{pollOptionText}}",
|
|
243
|
+
"📍Shared location": "📍Shared location"
|
|
224
244
|
}
|
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ú",
|
|
@@ -121,14 +130,20 @@
|
|
|
121
130
|
"Send Anyway": "Enviar de todos modos",
|
|
122
131
|
"Send message request failed": "Error al enviar la solicitud de mensaje",
|
|
123
132
|
"Sending...": "Enviando...",
|
|
133
|
+
"Share": "Compartir",
|
|
134
|
+
"Share Location": "Compartir ubicación",
|
|
135
|
+
"Share live location for": "Compartir ubicación en vivo durante",
|
|
136
|
+
"Shared live location": "Ubicación en vivo compartida",
|
|
124
137
|
"Show all": "Mostrar todo",
|
|
125
138
|
"Shuffle": "Mezclar",
|
|
126
139
|
"Slow Mode ON": "Modo lento activado",
|
|
127
140
|
"Some of the files will not be accepted": "Algunos archivos no serán aceptados",
|
|
128
141
|
"Start typing to search": "Empieza a escribir para buscar",
|
|
142
|
+
"Stop sharing": "Dejar de compartir",
|
|
129
143
|
"Submit": "Enviar",
|
|
130
144
|
"Suggest an option": "Sugerir una opción",
|
|
131
145
|
"Thinking...": "Pensando...",
|
|
146
|
+
"This field cannot be empty or contain only spaces": "Este campo no puede estar vacío o contener solo espacios",
|
|
132
147
|
"This message did not meet our content guidelines": "Este mensaje no cumple con nuestras directrices de contenido",
|
|
133
148
|
"This message was deleted...": "Este mensaje fue eliminado...",
|
|
134
149
|
"Thread": "Hilo",
|
|
@@ -171,12 +186,14 @@
|
|
|
171
186
|
"aria/Menu": "Menú",
|
|
172
187
|
"aria/Message Options": "Opciones de mensaje",
|
|
173
188
|
"aria/Open Attachment Selector": "Abrir selector de adjuntos",
|
|
189
|
+
"aria/Open Menu": "Abrir menú",
|
|
174
190
|
"aria/Open Message Actions Menu": "Abrir menú de acciones de mensaje",
|
|
175
191
|
"aria/Open Reaction Selector": "Abrir selector de reacciones",
|
|
176
192
|
"aria/Open Thread": "Abrir hilo",
|
|
177
193
|
"aria/Reaction list": "Lista de reacciones",
|
|
178
194
|
"aria/Remind Me Options": "Opciones de recordatorio",
|
|
179
195
|
"aria/Remove attachment": "Eliminar adjunto",
|
|
196
|
+
"aria/Remove location attachment": "Eliminar adjunto de ubicación",
|
|
180
197
|
"aria/Retry upload": "Reintentar carga",
|
|
181
198
|
"aria/Search results": "Resultados de búsqueda",
|
|
182
199
|
"aria/Search results header filter button": "Botón de filtro del encabezado de resultados de búsqueda",
|
|
@@ -186,6 +203,7 @@
|
|
|
186
203
|
"ban-command-description": "Prohibir a un usuario",
|
|
187
204
|
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
188
205
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
206
|
+
"duration/Share Location": "{{ milliseconds | durationFormatter }}",
|
|
189
207
|
"giphy-command-args": "[texto]",
|
|
190
208
|
"giphy-command-description": "Publicar un gif aleatorio en el canal",
|
|
191
209
|
"live": "En vivo",
|
|
@@ -204,6 +222,7 @@
|
|
|
204
222
|
"size limit": "límite de tamaño",
|
|
205
223
|
"this content could not be displayed": "Este contenido no se pudo mostrar",
|
|
206
224
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
225
|
+
"timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
207
226
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
208
227
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
209
228
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -238,5 +257,6 @@
|
|
|
238
257
|
"{{count}} votes_other": "{{count}} votos",
|
|
239
258
|
"🏙 Attachment...": "🏙 Adjunto...",
|
|
240
259
|
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} creó: {{ pollName}}",
|
|
241
|
-
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} votó: {{pollOptionText}}"
|
|
260
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} votó: {{pollOptionText}}",
|
|
261
|
+
"📍Shared location": "📍Ubicación compartida"
|
|
242
262
|
}
|
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",
|
|
@@ -121,14 +130,20 @@
|
|
|
121
130
|
"Send Anyway": "Envoyer quand même",
|
|
122
131
|
"Send message request failed": "Échec de la demande d'envoi de message",
|
|
123
132
|
"Sending...": "Envoi en cours...",
|
|
133
|
+
"Share": "Partager",
|
|
134
|
+
"Share Location": "Partager l'emplacement",
|
|
135
|
+
"Share live location for": "Partager l'emplacement en direct pendant",
|
|
136
|
+
"Shared live location": "Emplacement en direct partagé",
|
|
124
137
|
"Show all": "Tout afficher",
|
|
125
138
|
"Shuffle": "Mélanger",
|
|
126
139
|
"Slow Mode ON": "Mode lent activé",
|
|
127
140
|
"Some of the files will not be accepted": "Certains fichiers ne seront pas acceptés",
|
|
128
141
|
"Start typing to search": "Commencez à taper pour rechercher",
|
|
142
|
+
"Stop sharing": "Arrêter de partager",
|
|
129
143
|
"Submit": "Envoyer",
|
|
130
144
|
"Suggest an option": "Suggérer une option",
|
|
131
145
|
"Thinking...": "Réflexion...",
|
|
146
|
+
"This field cannot be empty or contain only spaces": "Ce champ ne peut pas être vide ou contenir uniquement des espaces",
|
|
132
147
|
"This message did not meet our content guidelines": "Ce message ne respecte pas nos directives de contenu",
|
|
133
148
|
"This message was deleted...": "Ce message a été supprimé...",
|
|
134
149
|
"Thread": "Fil de discussion",
|
|
@@ -171,12 +186,14 @@
|
|
|
171
186
|
"aria/Menu": "Menu",
|
|
172
187
|
"aria/Message Options": "Options du message",
|
|
173
188
|
"aria/Open Attachment Selector": "Ouvrir le sélecteur de pièces jointes",
|
|
189
|
+
"aria/Open Menu": "Ouvrir le menu",
|
|
174
190
|
"aria/Open Message Actions Menu": "Ouvrir le menu des actions du message",
|
|
175
191
|
"aria/Open Reaction Selector": "Ouvrir le sélecteur de réactions",
|
|
176
192
|
"aria/Open Thread": "Ouvrir le fil",
|
|
177
193
|
"aria/Reaction list": "Liste des réactions",
|
|
178
194
|
"aria/Remind Me Options": "Options de rappel",
|
|
179
195
|
"aria/Remove attachment": "Supprimer la pièce jointe",
|
|
196
|
+
"aria/Remove location attachment": "Supprimer la pièce jointe d'emplacement",
|
|
180
197
|
"aria/Retry upload": "Réessayer le téléchargement",
|
|
181
198
|
"aria/Search results": "Résultats de recherche",
|
|
182
199
|
"aria/Search results header filter button": "Bouton de filtre d'en-tête des résultats de recherche",
|
|
@@ -186,6 +203,7 @@
|
|
|
186
203
|
"ban-command-description": "Bannir un utilisateur",
|
|
187
204
|
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
188
205
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
206
|
+
"duration/Share Location": "{{ milliseconds | durationFormatter }}",
|
|
189
207
|
"giphy-command-args": "[texte]",
|
|
190
208
|
"giphy-command-description": "Poster un GIF aléatoire dans le canal",
|
|
191
209
|
"live": "en direct",
|
|
@@ -204,6 +222,7 @@
|
|
|
204
222
|
"size limit": "limite de taille",
|
|
205
223
|
"this content could not be displayed": "ce contenu n'a pas pu être affiché",
|
|
206
224
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
225
|
+
"timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
207
226
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
208
227
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
209
228
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -238,5 +257,6 @@
|
|
|
238
257
|
"{{count}} votes_other": "{{count}} votes",
|
|
239
258
|
"🏙 Attachment...": "🏙 Pièce jointe...",
|
|
240
259
|
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} a créé : {{ pollName}}",
|
|
241
|
-
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} a voté : {{pollOptionText}}"
|
|
260
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} a voté : {{pollOptionText}}",
|
|
261
|
+
"📍Shared location": "📍Emplacement partagé"
|
|
242
262
|
}
|
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": "मेन्यू",
|
|
@@ -120,14 +129,20 @@
|
|
|
120
129
|
"Send Anyway": "वैसे भी भेजें",
|
|
121
130
|
"Send message request failed": "संदेश भेजने का अनुरोध विफल रहा",
|
|
122
131
|
"Sending...": "भेजा जा रहा है",
|
|
132
|
+
"Share": "साझा करें",
|
|
133
|
+
"Share Location": "स्थान साझा करें",
|
|
134
|
+
"Share live location for": "लाइव स्थान साझा करें",
|
|
135
|
+
"Shared live location": "साझा किया गया लाइव स्थान",
|
|
123
136
|
"Show all": "सभी दिखाएँ",
|
|
124
137
|
"Shuffle": "मिश्रित करें",
|
|
125
138
|
"Slow Mode ON": "स्लो मोड ऑन",
|
|
126
139
|
"Some of the files will not be accepted": "कुछ फ़ाइलें स्वीकार नहीं की जाएंगी",
|
|
127
140
|
"Start typing to search": "खोजने के लिए टाइप करना शुरू करें",
|
|
141
|
+
"Stop sharing": "साझा करना बंद करें",
|
|
128
142
|
"Submit": "जमा करें",
|
|
129
143
|
"Suggest an option": "एक विकल्प सुझाव दें",
|
|
130
144
|
"Thinking...": "सोच रहा है...",
|
|
145
|
+
"This field cannot be empty or contain only spaces": "यह फ़ील्ड खाली नहीं हो सकता या केवल रिक्त स्थान नहीं रख सकता",
|
|
131
146
|
"This message did not meet our content guidelines": "यह संदेश हमारे सामग्री दिशानिर्देशों के अनुरूप नहीं था",
|
|
132
147
|
"This message was deleted...": "मैसेज हटा दिया गया",
|
|
133
148
|
"Thread": "रिप्लाई थ्रेड",
|
|
@@ -169,12 +184,14 @@
|
|
|
169
184
|
"aria/Menu": "मेन्यू",
|
|
170
185
|
"aria/Message Options": "संदेश विकल्प",
|
|
171
186
|
"aria/Open Attachment Selector": "अटैचमेंट चयनकर्ता खोलें",
|
|
187
|
+
"aria/Open Menu": "मेन्यू खोलें",
|
|
172
188
|
"aria/Open Message Actions Menu": "संदेश क्रिया मेन्यू खोलें",
|
|
173
189
|
"aria/Open Reaction Selector": "प्रतिक्रिया चयनकर्ता खोलें",
|
|
174
190
|
"aria/Open Thread": "थ्रेड खोलें",
|
|
175
191
|
"aria/Reaction list": "प्रतिक्रिया सूची",
|
|
176
192
|
"aria/Remind Me Options": "रिमाइंडर विकल्प",
|
|
177
193
|
"aria/Remove attachment": "संलग्नक हटाएं",
|
|
194
|
+
"aria/Remove location attachment": "स्थान संलग्नक हटाएं",
|
|
178
195
|
"aria/Retry upload": "अपलोड पुनः प्रयास करें",
|
|
179
196
|
"aria/Search results": "खोज परिणाम",
|
|
180
197
|
"aria/Search results header filter button": "खोज परिणाम हेडर फ़िल्टर बटन",
|
|
@@ -184,6 +201,7 @@
|
|
|
184
201
|
"ban-command-description": "एक उपयोगकर्ता को प्रतिषेधित करें",
|
|
185
202
|
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
186
203
|
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
204
|
+
"duration/Share Location": "{{ milliseconds | durationFormatter }}",
|
|
187
205
|
"giphy-command-args": "[पाठ]",
|
|
188
206
|
"giphy-command-description": "चैनल पर एक क्रॉफिल जीआइएफ पोस्ट करें",
|
|
189
207
|
"live": "लाइव",
|
|
@@ -200,6 +218,7 @@
|
|
|
200
218
|
"size limit": "आकार सीमा",
|
|
201
219
|
"this content could not be displayed": "यह कॉन्टेंट लोड नहीं हो पाया",
|
|
202
220
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
221
|
+
"timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
203
222
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
204
223
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
205
224
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
@@ -231,5 +250,6 @@
|
|
|
231
250
|
"{{count}} votes_other": "{{count}} वोट",
|
|
232
251
|
"🏙 Attachment...": "🏙 अटैचमेंट",
|
|
233
252
|
"📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} ने बनाया: {{ pollName}}",
|
|
234
|
-
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} ने वोट दिया: {{pollOptionText}}"
|
|
253
|
+
"📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} ने वोट दिया: {{pollOptionText}}",
|
|
254
|
+
"📍Shared location": "📍साझा किया गया स्थान"
|
|
235
255
|
}
|