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.
Files changed (87) hide show
  1. package/dist/components/Attachment/Attachment.d.ts +5 -3
  2. package/dist/components/Attachment/Attachment.js +12 -5
  3. package/dist/components/Attachment/AttachmentContainer.d.ts +4 -3
  4. package/dist/components/Attachment/AttachmentContainer.js +5 -1
  5. package/dist/components/Attachment/Geolocation.d.ts +13 -0
  6. package/dist/components/Attachment/Geolocation.js +34 -0
  7. package/dist/components/Attachment/icons.d.ts +2 -0
  8. package/dist/components/Attachment/icons.js +5 -0
  9. package/dist/components/Attachment/index.d.ts +3 -1
  10. package/dist/components/Attachment/index.js +3 -1
  11. package/dist/components/Attachment/utils.d.ts +4 -1
  12. package/dist/components/Channel/Channel.d.ts +1 -1
  13. package/dist/components/Channel/Channel.js +2 -0
  14. package/dist/components/ChannelPreview/utils.js +3 -0
  15. package/dist/components/Chat/hooks/useChat.js +1 -1
  16. package/dist/components/Dialog/DialogAnchor.d.ts +3 -2
  17. package/dist/components/Dialog/DialogAnchor.js +7 -2
  18. package/dist/components/Form/Dropdown.d.ts +14 -0
  19. package/dist/components/Form/Dropdown.js +49 -0
  20. package/dist/components/Form/SwitchField.js +3 -1
  21. package/dist/components/Location/ShareLocationDialog.d.ts +18 -0
  22. package/dist/components/Location/ShareLocationDialog.js +139 -0
  23. package/dist/components/Location/hooks/useLiveLocationSharingManager.d.ts +18 -0
  24. package/dist/components/Location/hooks/useLiveLocationSharingManager.js +57 -0
  25. package/dist/components/Location/index.d.ts +1 -0
  26. package/dist/components/Location/index.js +1 -0
  27. package/dist/components/Message/MessageSimple.js +6 -1
  28. package/dist/components/Message/index.d.ts +3 -1
  29. package/dist/components/Message/index.js +3 -1
  30. package/dist/components/MessageInput/AttachmentPreviewList/AttachmentPreviewList.d.ts +3 -1
  31. package/dist/components/MessageInput/AttachmentPreviewList/AttachmentPreviewList.js +35 -26
  32. package/dist/components/MessageInput/AttachmentPreviewList/GeolocationPreview.d.ts +13 -0
  33. package/dist/components/MessageInput/AttachmentPreviewList/GeolocationPreview.js +25 -0
  34. package/dist/components/MessageInput/AttachmentSelector.d.ts +2 -1
  35. package/dist/components/MessageInput/AttachmentSelector.js +34 -12
  36. package/dist/components/MessageInput/MessageInput.d.ts +3 -1
  37. package/dist/components/MessageInput/MessageInput.js +7 -3
  38. package/dist/components/MessageInput/hooks/index.d.ts +1 -0
  39. package/dist/components/MessageInput/hooks/index.js +1 -0
  40. package/dist/components/MessageInput/hooks/useAttachmentsForPreview.d.ts +17 -0
  41. package/dist/components/MessageInput/hooks/useAttachmentsForPreview.js +22 -0
  42. package/dist/components/Poll/PollActions/AddCommentForm.js +8 -0
  43. package/dist/components/Poll/PollActions/SuggestPollOptionForm.js +6 -3
  44. package/dist/components/TextareaComposer/SuggestionList/SuggestionListItem.js +4 -1
  45. package/dist/components/index.d.ts +2 -1
  46. package/dist/components/index.js +2 -0
  47. package/dist/context/ComponentContext.d.ts +3 -0
  48. package/dist/css/v2/index.css +1 -1
  49. package/dist/css/v2/index.layout.css +1 -1
  50. package/dist/experimental/index.browser.cjs +11 -0
  51. package/dist/experimental/index.browser.cjs.map +2 -2
  52. package/dist/experimental/index.node.cjs +11 -0
  53. package/dist/experimental/index.node.cjs.map +2 -2
  54. package/dist/i18n/Streami18n.d.ts +20 -0
  55. package/dist/i18n/de.json +21 -1
  56. package/dist/i18n/en.json +21 -1
  57. package/dist/i18n/es.json +21 -1
  58. package/dist/i18n/fr.json +21 -1
  59. package/dist/i18n/hi.json +21 -1
  60. package/dist/i18n/it.json +21 -1
  61. package/dist/i18n/ja.json +21 -1
  62. package/dist/i18n/ko.json +21 -1
  63. package/dist/i18n/nl.json +21 -1
  64. package/dist/i18n/pt.json +21 -1
  65. package/dist/i18n/ru.json +21 -1
  66. package/dist/i18n/tr.json +21 -1
  67. package/dist/index.browser.cjs +1914 -1064
  68. package/dist/index.browser.cjs.map +4 -4
  69. package/dist/index.node.cjs +1926 -1064
  70. package/dist/index.node.cjs.map +4 -4
  71. package/dist/scss/v2/AttachmentList/AttachmentList-layout.scss +50 -0
  72. package/dist/scss/v2/AttachmentList/AttachmentList-theme.scss +56 -0
  73. package/dist/scss/v2/AttachmentPreviewList/AttachmentPreviewList-layout.scss +3 -0
  74. package/dist/scss/v2/AttachmentPreviewList/AttachmentPreviewList-theme.scss +11 -0
  75. package/dist/scss/v2/Dialog/Dialog-layout.scss +1 -2
  76. package/dist/scss/v2/Form/Form-layout.scss +40 -0
  77. package/dist/scss/v2/Form/Form-theme.scss +62 -0
  78. package/dist/scss/v2/Location/Location-layout.scss +52 -0
  79. package/dist/scss/v2/Location/Location-theme.scss +32 -0
  80. package/dist/scss/v2/MessageInput/MessageInput-theme.scss +7 -0
  81. package/dist/scss/v2/Modal/Modal-layout.scss +2 -0
  82. package/dist/scss/v2/Poll/Poll-layout.scss +0 -35
  83. package/dist/scss/v2/Poll/Poll-theme.scss +0 -28
  84. package/dist/scss/v2/_icons.scss +1 -0
  85. package/dist/scss/v2/index.layout.scss +1 -0
  86. package/dist/scss/v2/index.scss +1 -0
  87. package/package.json +4 -4
package/dist/i18n/it.json CHANGED
@@ -14,6 +14,7 @@
14
14
  "Anonymous poll": "Sondaggio anonimo",
15
15
  "Archive": "Archivia",
16
16
  "Ask a question": "Fai una domanda",
17
+ "Attach": "Allega",
17
18
  "Attach files": "Allega file",
18
19
  "Attachment upload blocked due to {{reason}}": "Caricamento allegato bloccato a causa di {{reason}}",
19
20
  "Attachment upload failed due to {{reason}}": "Caricamento allegato fallito a causa di {{reason}}",
@@ -26,6 +27,7 @@
26
27
  "Connection failure, reconnecting now...": "Errore di connessione, riconnessione in corso...",
27
28
  "Create": "Crea",
28
29
  "Create poll": "Crea sondaggio",
30
+ "Current location": "Posizione attuale",
29
31
  "Delete": "Elimina",
30
32
  "Delivered": "Consegnato",
31
33
  "Download attachment {{ name }}": "Scarica l'allegato {{ name }}",
@@ -61,12 +63,19 @@
61
63
  "Failed to jump to the first unread message": "Impossibile passare al primo messaggio non letto",
62
64
  "Failed to mark channel as read": "Impossibile contrassegnare il canale come letto",
63
65
  "Failed to play the recording": "Impossibile riprodurre la registrazione",
66
+ "Failed to retrieve location": "Impossibile recuperare la posizione",
67
+ "Failed to share location": "Impossibile condividere la posizione",
64
68
  "File": "File",
65
69
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "Il file è troppo grande: {{ size }}, la dimensione massima di caricamento è {{ limit }}",
66
70
  "Flag": "Segnala",
67
71
  "Generating...": "Generando...",
68
72
  "Latest Messages": "Ultimi messaggi",
73
+ "Live for {{duration}}": "Live per {{duration}}",
74
+ "Live location": "Posizione live",
75
+ "Live until {{ timestamp }}": "Live fino a {{ timestamp }}",
69
76
  "Load more": "Carica di più",
77
+ "Location": "Posizione",
78
+ "Location sharing ended": "Condivisione posizione terminata",
70
79
  "Mark as unread": "Contrassegna come non letto",
71
80
  "Maximum number of votes (from 2 to 10)": "Numero massimo di voti (da 2 a 10)",
72
81
  "Menu": "Menù",
@@ -121,14 +130,20 @@
121
130
  "Send Anyway": "Invia comunque",
122
131
  "Send message request failed": "Richiesta di invio messaggio non riuscita",
123
132
  "Sending...": "Invio in corso...",
133
+ "Share": "Condividi",
134
+ "Share Location": "Condividi posizione",
135
+ "Share live location for": "Condividi posizione live per",
136
+ "Shared live location": "Posizione live condivisa",
124
137
  "Show all": "Mostra tutto",
125
138
  "Shuffle": "Mescolare",
126
139
  "Slow Mode ON": "Modalità lenta attivata",
127
140
  "Some of the files will not be accepted": "Alcuni dei file non saranno accettati",
128
141
  "Start typing to search": "Inizia a digitare per cercare",
142
+ "Stop sharing": "Ferma condivisione",
129
143
  "Submit": "Invia",
130
144
  "Suggest an option": "Suggerisci un'opzione",
131
145
  "Thinking...": "Pensando...",
146
+ "This field cannot be empty or contain only spaces": "Questo campo non può essere vuoto o contenere solo spazi",
132
147
  "This message did not meet our content guidelines": "Questo messaggio non soddisfa le nostre linee guida sui contenuti",
133
148
  "This message was deleted...": "Questo messaggio è stato cancellato...",
134
149
  "Thread": "Discussione",
@@ -171,12 +186,14 @@
171
186
  "aria/Menu": "Menu",
172
187
  "aria/Message Options": "Opzioni di messaggio",
173
188
  "aria/Open Attachment Selector": "Apri selettore allegati",
189
+ "aria/Open Menu": "Apri menu",
174
190
  "aria/Open Message Actions Menu": "Apri il menu delle azioni di messaggio",
175
191
  "aria/Open Reaction Selector": "Apri il selettore di reazione",
176
192
  "aria/Open Thread": "Apri discussione",
177
193
  "aria/Reaction list": "Elenco delle reazioni",
178
194
  "aria/Remind Me Options": "Opzioni promemoria",
179
195
  "aria/Remove attachment": "Rimuovi allegato",
196
+ "aria/Remove location attachment": "Rimuovi allegato posizione",
180
197
  "aria/Retry upload": "Riprova caricamento",
181
198
  "aria/Search results": "Risultati della ricerca",
182
199
  "aria/Search results header filter button": "Pulsante filtro intestazione risultati ricerca",
@@ -186,6 +203,7 @@
186
203
  "ban-command-description": "Vietare un utente",
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": "[testo]",
190
208
  "giphy-command-description": "Pubblica un gif casuale sul canale",
191
209
  "live": "live",
@@ -204,6 +222,7 @@
204
222
  "size limit": "limite di dimensione",
205
223
  "this content could not be displayed": "questo contenuto non può essere mostrato",
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}} voti",
239
258
  "🏙 Attachment...": "🏙 Allegato...",
240
259
  "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} ha creato: {{ pollName}}",
241
- "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} ha votato: {{pollOptionText}}"
260
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} ha votato: {{pollOptionText}}",
261
+ "📍Shared location": "📍Posizione condivisa"
242
262
  }
package/dist/i18n/ja.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 }} をダウンロード",
@@ -61,12 +63,19 @@
61
63
  "Failed to jump to the first unread message": "最初の未読メッセージにジャンプできませんでした",
62
64
  "Failed to mark channel as read": "チャンネルを既読にすることができませんでした",
63
65
  "Failed to play the recording": "録音の再生に失敗しました",
66
+ "Failed to retrieve location": "位置情報の取得に失敗しました",
67
+ "Failed to share location": "位置情報の共有に失敗しました",
64
68
  "File": "ファイル",
65
69
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "ファイルが大きすぎます:{{ size }}、最大アップロードサイズは{{ limit }}です",
66
70
  "Flag": "フラグ",
67
71
  "Generating...": "生成中...",
68
72
  "Latest Messages": "最新のメッセージ",
73
+ "Live for {{duration}}": "{{duration}}間ライブ",
74
+ "Live location": "ライブ位置情報",
75
+ "Live until {{ timestamp }}": "{{ timestamp }}までライブ",
69
76
  "Load more": "もっと読み込む",
77
+ "Location": "位置情報",
78
+ "Location sharing ended": "位置情報の共有が終了しました",
70
79
  "Mark as unread": "未読としてマーク",
71
80
  "Maximum number of votes (from 2 to 10)": "最大投票数(2から10まで)",
72
81
  "Menu": "メニュー",
@@ -117,14 +126,20 @@
117
126
  "Send Anyway": "とにかく送信する",
118
127
  "Send message request failed": "メッセージ送信リクエストが失敗しました",
119
128
  "Sending...": "送信中...",
129
+ "Share": "共有",
130
+ "Share Location": "位置情報を共有",
131
+ "Share live location for": "ライブ位置情報を共有",
132
+ "Shared live location": "共有されたライブ位置情報",
120
133
  "Show all": "すべて表示",
121
134
  "Shuffle": "シャッフル",
122
135
  "Slow Mode ON": "スローモードオン",
123
136
  "Some of the files will not be accepted": "一部のファイルは受け付けられません",
124
137
  "Start typing to search": "検索するには入力を開始してください",
138
+ "Stop sharing": "共有を停止",
125
139
  "Submit": "送信",
126
140
  "Suggest an option": "オプションを提案",
127
141
  "Thinking...": "考え中...",
142
+ "This field cannot be empty or contain only spaces": "このフィールドは空にすることはできません。また、空白文字のみを含むこともできません",
128
143
  "This message did not meet our content guidelines": "このメッセージはコンテンツガイドラインに適合していません",
129
144
  "This message was deleted...": "このメッセージは削除されました...",
130
145
  "Thread": "スレッド",
@@ -165,12 +180,14 @@
165
180
  "aria/Menu": "メニュー",
166
181
  "aria/Message Options": "メッセージオプション",
167
182
  "aria/Open Attachment Selector": "添付ファイル選択を開く",
183
+ "aria/Open Menu": "メニューを開く",
168
184
  "aria/Open Message Actions Menu": "メッセージアクションメニューを開く",
169
185
  "aria/Open Reaction Selector": "リアクションセレクターを開く",
170
186
  "aria/Open Thread": "スレッドを開く",
171
187
  "aria/Reaction list": "リアクション一覧",
172
188
  "aria/Remind Me Options": "リマインダーオプション",
173
189
  "aria/Remove attachment": "添付ファイルを削除",
190
+ "aria/Remove location attachment": "位置情報の添付ファイルを削除",
174
191
  "aria/Retry upload": "アップロードを再試行",
175
192
  "aria/Search results": "検索結果",
176
193
  "aria/Search results header filter button": "検索結果ヘッダーフィルターボタン",
@@ -180,6 +197,7 @@
180
197
  "ban-command-description": "ユーザーを禁止する",
181
198
  "duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
182
199
  "duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
200
+ "duration/Share Location": "{{ milliseconds | durationFormatter }}",
183
201
  "giphy-command-args": "[テキスト]",
184
202
  "giphy-command-description": "チャンネルにランダムなGIFを投稿する",
185
203
  "live": "ライブ",
@@ -196,6 +214,7 @@
196
214
  "size limit": "サイズ制限",
197
215
  "this content could not be displayed": "このコンテンツは表示できませんでした",
198
216
  "timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
217
+ "timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
199
218
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
200
219
  "timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
201
220
  "timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -224,5 +243,6 @@
224
243
  "{{count}} votes_other": "{{count}} 票",
225
244
  "🏙 Attachment...": "🏙 アタッチメント...",
226
245
  "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} が作成: {{ pollName}}",
227
- "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} が投票: {{pollOptionText}}"
246
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} が投票: {{pollOptionText}}",
247
+ "📍Shared location": "📍共有された位置情報"
228
248
  }
package/dist/i18n/ko.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 }} 다운로드",
@@ -61,12 +63,19 @@
61
63
  "Failed to jump to the first unread message": "첫 번째 읽지 않은 메시지로 이동하지 못했습니다",
62
64
  "Failed to mark channel as read": "채널을 읽음으로 표시하는 데 실패했습니다",
63
65
  "Failed to play the recording": "녹음을 재생하지 못했습니다",
66
+ "Failed to retrieve location": "위치를 가져오지 못했습니다",
67
+ "Failed to share location": "위치를 공유하지 못했습니다",
64
68
  "File": "파일",
65
69
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "파일이 너무 큽니다: {{ size }}, 최대 업로드 크기는 {{ limit }}입니다",
66
70
  "Flag": "플래그",
67
71
  "Generating...": "생성 중...",
68
72
  "Latest Messages": "최신 메시지",
73
+ "Live for {{duration}}": "{{duration}} 동안 라이브",
74
+ "Live location": "라이브 위치",
75
+ "Live until {{ timestamp }}": "{{ timestamp }}까지 라이브",
69
76
  "Load more": "더 불러오기",
77
+ "Location": "위치",
78
+ "Location sharing ended": "위치 공유가 종료되었습니다",
70
79
  "Mark as unread": "읽지 않음으로 표시",
71
80
  "Maximum number of votes (from 2 to 10)": "최대 투표 수 (2에서 10까지)",
72
81
  "Menu": "메뉴",
@@ -117,14 +126,20 @@
117
126
  "Send Anyway": "어쨌든 보내기",
118
127
  "Send message request failed": "메시지 보내기 요청 실패",
119
128
  "Sending...": "배상중...",
129
+ "Share": "공유",
130
+ "Share Location": "위치 공유",
131
+ "Share live location for": "라이브 위치 공유",
132
+ "Shared live location": "공유된 라이브 위치",
120
133
  "Show all": "모두 보기",
121
134
  "Shuffle": "셔플",
122
135
  "Slow Mode ON": "슬로우 모드 켜짐",
123
136
  "Some of the files will not be accepted": "일부 파일은 허용되지 않을 수 있습니다",
124
137
  "Start typing to search": "검색하려면 입력을 시작하세요",
138
+ "Stop sharing": "공유 중지",
125
139
  "Submit": "제출",
126
140
  "Suggest an option": "옵션 제안",
127
141
  "Thinking...": "생각 중...",
142
+ "This field cannot be empty or contain only spaces": "이 필드는 비워둘 수 없으며 공백만 포함할 수도 없습니다",
128
143
  "This message did not meet our content guidelines": "이 메시지는 콘텐츠 가이드라인을 충족하지 않습니다.",
129
144
  "This message was deleted...": "이 메시지는 삭제되었습니다...",
130
145
  "Thread": "스레드",
@@ -165,12 +180,14 @@
165
180
  "aria/Menu": "메뉴",
166
181
  "aria/Message Options": "메시지 옵션",
167
182
  "aria/Open Attachment Selector": "첨부 파일 선택기 열기",
183
+ "aria/Open Menu": "메뉴 열기",
168
184
  "aria/Open Message Actions Menu": "메시지 액션 메뉴 열기",
169
185
  "aria/Open Reaction Selector": "반응 선택기 열기",
170
186
  "aria/Open Thread": "스레드 열기",
171
187
  "aria/Reaction list": "반응 목록",
172
188
  "aria/Remind Me Options": "알림 옵션",
173
189
  "aria/Remove attachment": "첨부 파일 제거",
190
+ "aria/Remove location attachment": "위치 첨부 파일 제거",
174
191
  "aria/Retry upload": "업로드 다시 시도",
175
192
  "aria/Search results": "검색 결과",
176
193
  "aria/Search results header filter button": "검색 결과 헤더 필터 버튼",
@@ -180,6 +197,7 @@
180
197
  "ban-command-description": "사용자를 차단",
181
198
  "duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
182
199
  "duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
200
+ "duration/Share Location": "{{ milliseconds | durationFormatter }}",
183
201
  "giphy-command-args": "[텍스트]",
184
202
  "giphy-command-description": "채널에 무작위 GIF 게시",
185
203
  "live": "라이브",
@@ -196,6 +214,7 @@
196
214
  "size limit": "크기 제한",
197
215
  "this content could not be displayed": "이 콘텐츠를 표시할 수 없습니다",
198
216
  "timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
217
+ "timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
199
218
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
200
219
  "timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
201
220
  "timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -224,5 +243,6 @@
224
243
  "{{count}} votes_other": "{{count}} 투표",
225
244
  "🏙 Attachment...": "🏙 부착...",
226
245
  "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}}이(가) 생성함: {{ pollName}}",
227
- "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}}이(가) 투표함: {{pollOptionText}}"
246
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}}이(가) 투표함: {{pollOptionText}}",
247
+ "📍Shared location": "📍공유된 위치"
228
248
  }
package/dist/i18n/nl.json CHANGED
@@ -14,6 +14,7 @@
14
14
  "Anonymous poll": "Anonieme peiling",
15
15
  "Archive": "Archief",
16
16
  "Ask a question": "Stel een vraag",
17
+ "Attach": "Bijvoegen",
17
18
  "Attach files": "Bijlage toevoegen",
18
19
  "Attachment upload blocked due to {{reason}}": "Bijlage upload geblokkeerd vanwege {{reason}}",
19
20
  "Attachment upload failed due to {{reason}}": "Bijlage upload mislukt vanwege {{reason}}",
@@ -26,6 +27,7 @@
26
27
  "Connection failure, reconnecting now...": "Verbindingsfout, opnieuw verbinden...",
27
28
  "Create": "Maak",
28
29
  "Create poll": "Maak peiling",
30
+ "Current location": "Huidige locatie",
29
31
  "Delete": "Verwijder",
30
32
  "Delivered": "Afgeleverd",
31
33
  "Download attachment {{ name }}": "Bijlage {{ name }} downloaden",
@@ -61,12 +63,19 @@
61
63
  "Failed to jump to the first unread message": "Niet gelukt om naar het eerste ongelezen bericht te springen",
62
64
  "Failed to mark channel as read": "Kanaal kon niet als gelezen worden gemarkeerd",
63
65
  "Failed to play the recording": "Kan de opname niet afspelen",
66
+ "Failed to retrieve location": "Locatie kon niet worden opgehaald",
67
+ "Failed to share location": "Locatie kon niet worden gedeeld",
64
68
  "File": "Bestand",
65
69
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "Bestand is te groot: {{ size }}, maximale uploadgrootte is {{ limit }}",
66
70
  "Flag": "Markeer",
67
71
  "Generating...": "Genereren...",
68
72
  "Latest Messages": "Laatste berichten",
73
+ "Live for {{duration}}": "Live voor {{duration}}",
74
+ "Live location": "Live locatie",
75
+ "Live until {{ timestamp }}": "Live tot {{ timestamp }}",
69
76
  "Load more": "Meer laden",
77
+ "Location": "Locatie",
78
+ "Location sharing ended": "Locatie delen beëindigd",
70
79
  "Mark as unread": "Markeren als ongelezen",
71
80
  "Maximum number of votes (from 2 to 10)": "Maximaal aantal stemmen (van 2 tot 10)",
72
81
  "Menu": "Menu",
@@ -119,14 +128,20 @@
119
128
  "Send Anyway": "Toch versturen",
120
129
  "Send message request failed": "Verzoek om bericht te verzenden mislukt",
121
130
  "Sending...": "Aan het verzenden...",
131
+ "Share": "Delen",
132
+ "Share Location": "Locatie delen",
133
+ "Share live location for": "Live locatie delen voor",
134
+ "Shared live location": "Gedeelde live locatie",
122
135
  "Show all": "Toon alles",
123
136
  "Shuffle": "Schudden",
124
137
  "Slow Mode ON": "Langzame modus aan",
125
138
  "Some of the files will not be accepted": "Sommige bestanden zullen niet worden geaccepteerd",
126
139
  "Start typing to search": "Begin met typen om te zoeken",
140
+ "Stop sharing": "Delen stoppen",
127
141
  "Submit": "Versturen",
128
142
  "Suggest an option": "Stel een optie voor",
129
143
  "Thinking...": "Denken...",
144
+ "This field cannot be empty or contain only spaces": "Dit veld mag niet leeg zijn of alleen spaties bevatten",
130
145
  "This message did not meet our content guidelines": "Dit bericht voldeed niet aan onze inhoudsrichtlijnen",
131
146
  "This message was deleted...": "Dit bericht was verwijderd",
132
147
  "Thread": "Draadje",
@@ -168,12 +183,14 @@
168
183
  "aria/Menu": "Menu",
169
184
  "aria/Message Options": "Berichtopties",
170
185
  "aria/Open Attachment Selector": "Open bijlage selector",
186
+ "aria/Open Menu": "Menu openen",
171
187
  "aria/Open Message Actions Menu": "Menu voor berichtacties openen",
172
188
  "aria/Open Reaction Selector": "Reactiekiezer openen",
173
189
  "aria/Open Thread": "Draad openen",
174
190
  "aria/Reaction list": "Reactielijst",
175
191
  "aria/Remind Me Options": "Herinneringsopties",
176
192
  "aria/Remove attachment": "Bijlage verwijderen",
193
+ "aria/Remove location attachment": "Locatie bijlage verwijderen",
177
194
  "aria/Retry upload": "Upload opnieuw proberen",
178
195
  "aria/Search results": "Zoekresultaten",
179
196
  "aria/Search results header filter button": "Zoekresultaten header filter knop",
@@ -183,6 +200,7 @@
183
200
  "ban-command-description": "Een gebruiker 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": "[tekst]",
187
205
  "giphy-command-description": "Plaats een willekeurige gif in het kanaal",
188
206
  "live": "live",
@@ -199,6 +217,7 @@
199
217
  "size limit": "grootte limiet",
200
218
  "this content could not be displayed": "Deze inhoud kan niet weergegeven worden",
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}} stemmen",
231
250
  "🏙 Attachment...": "🏙 Bijlage...",
232
251
  "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} heeft gemaakt: {{ pollName}}",
233
- "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} heeft gestemd: {{pollOptionText}}"
252
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} heeft gestemd: {{pollOptionText}}",
253
+ "📍Shared location": "📍Gedeelde locatie"
234
254
  }
package/dist/i18n/pt.json CHANGED
@@ -14,6 +14,7 @@
14
14
  "Anonymous poll": "Enquete anônima",
15
15
  "Archive": "Arquivar",
16
16
  "Ask a question": "Faça uma pergunta",
17
+ "Attach": "Anexar",
17
18
  "Attach files": "Anexar arquivos",
18
19
  "Attachment upload blocked due to {{reason}}": "Upload de anexo bloqueado devido a {{reason}}",
19
20
  "Attachment upload failed due to {{reason}}": "Upload de anexo falhou devido a {{reason}}",
@@ -26,6 +27,7 @@
26
27
  "Connection failure, reconnecting now...": "Falha de conexão, reconectando agora...",
27
28
  "Create": "Criar",
28
29
  "Create poll": "Criar enquete",
30
+ "Current location": "Localização atual",
29
31
  "Delete": "Excluir",
30
32
  "Delivered": "Entregue",
31
33
  "Download attachment {{ name }}": "Baixar anexo {{ name }}",
@@ -61,12 +63,19 @@
61
63
  "Failed to jump to the first unread message": "Falha ao pular para a primeira mensagem não lida",
62
64
  "Failed to mark channel as read": "Falha ao marcar o canal como lido",
63
65
  "Failed to play the recording": "Falha ao reproduzir a gravação",
66
+ "Failed to retrieve location": "Falha ao obter localização",
67
+ "Failed to share location": "Falha ao compartilhar localização",
64
68
  "File": "Arquivo",
65
69
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "O arquivo é muito grande: {{ size }}, o tamanho máximo de upload é {{ limit }}",
66
70
  "Flag": "Reportar",
67
71
  "Generating...": "Gerando...",
68
72
  "Latest Messages": "Mensagens mais recentes",
73
+ "Live for {{duration}}": "Ao vivo por {{duration}}",
74
+ "Live location": "Localização ao vivo",
75
+ "Live until {{ timestamp }}": "Ao vivo até {{ timestamp }}",
69
76
  "Load more": "Carregar mais",
77
+ "Location": "Localização",
78
+ "Location sharing ended": "Compartilhamento de localização encerrado",
70
79
  "Mark as unread": "Marcar como não lida",
71
80
  "Maximum number of votes (from 2 to 10)": "Número máximo de votos (de 2 a 10)",
72
81
  "Menu": "Menu",
@@ -121,14 +130,20 @@
121
130
  "Send Anyway": "Enviar de qualquer forma",
122
131
  "Send message request failed": "O pedido de envio da mensagem falhou",
123
132
  "Sending...": "Enviando...",
133
+ "Share": "Compartilhar",
134
+ "Share Location": "Compartilhar localização",
135
+ "Share live location for": "Compartilhar localização ao vivo por",
136
+ "Shared live location": "Localização ao vivo compartilhada",
124
137
  "Show all": "Mostrar tudo",
125
138
  "Shuffle": "Embaralhar",
126
139
  "Slow Mode ON": "Modo lento LIGADO",
127
140
  "Some of the files will not be accepted": "Alguns arquivos não serão aceitos",
128
141
  "Start typing to search": "Comece a digitar para pesquisar",
142
+ "Stop sharing": "Parar de compartilhar",
129
143
  "Submit": "Enviar",
130
144
  "Suggest an option": "Sugerir uma opção",
131
145
  "Thinking...": "Pensando...",
146
+ "This field cannot be empty or contain only spaces": "Este campo não pode estar vazio ou conter apenas espaços",
132
147
  "This message did not meet our content guidelines": "Esta mensagem não corresponde às nossas diretrizes de conteúdo",
133
148
  "This message was deleted...": "Esta mensagem foi excluída...",
134
149
  "Thread": "Fio",
@@ -171,12 +186,14 @@
171
186
  "aria/Menu": "Menu",
172
187
  "aria/Message Options": "Opções de mensagem",
173
188
  "aria/Open Attachment Selector": "Abrir seletor de anexos",
189
+ "aria/Open Menu": "Abrir menu",
174
190
  "aria/Open Message Actions Menu": "Abrir menu de ações de mensagem",
175
191
  "aria/Open Reaction Selector": "Abrir seletor de reações",
176
192
  "aria/Open Thread": "Abrir tópico",
177
193
  "aria/Reaction list": "Lista de reações",
178
194
  "aria/Remind Me Options": "Opções de lembrete",
179
195
  "aria/Remove attachment": "Remover anexo",
196
+ "aria/Remove location attachment": "Remover anexo de localização",
180
197
  "aria/Retry upload": "Tentar upload novamente",
181
198
  "aria/Search results": "Resultados da pesquisa",
182
199
  "aria/Search results header filter button": "Botão de filtro do cabeçalho dos resultados da pesquisa",
@@ -186,6 +203,7 @@
186
203
  "ban-command-description": "Banir um usuário",
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": "Postar um gif aleatório no canal",
191
209
  "live": "ao vivo",
@@ -204,6 +222,7 @@
204
222
  "size limit": "limite de tamanho",
205
223
  "this content could not be displayed": "este conteúdo não pôde ser exibido",
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...": "🏙 Anexo...",
240
259
  "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} criou: {{ pollName}}",
241
- "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} votou: {{pollOptionText}}"
260
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} votou: {{pollOptionText}}",
261
+ "📍Shared location": "📍Localização compartilhada"
242
262
  }
package/dist/i18n/ru.json CHANGED
@@ -14,6 +14,7 @@
14
14
  "Anonymous poll": "Анонимный опрос",
15
15
  "Archive": "Aрхивировать",
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 }}",
@@ -61,12 +63,19 @@
61
63
  "Failed to jump to the first unread message": "Не удалось перейти к первому непрочитанному сообщению",
62
64
  "Failed to mark channel as read": "Не удалось пометить канал как прочитанный",
63
65
  "Failed to play the recording": "Не удалось воспроизвести запись",
66
+ "Failed to retrieve location": "Не удалось получить местоположение",
67
+ "Failed to share location": "Не удалось поделиться местоположением",
64
68
  "File": "Файл",
65
69
  "File is too large: {{ size }}, maximum upload size is {{ limit }}": "Файл слишком большой: {{ size }}, максимальный размер загрузки составляет {{ limit }}",
66
70
  "Flag": "Пожаловаться",
67
71
  "Generating...": "Генерирую...",
68
72
  "Latest Messages": "Последние сообщения",
73
+ "Live for {{duration}}": "В прямом эфире {{duration}}",
74
+ "Live location": "Местоположение в прямом эфире",
75
+ "Live until {{ timestamp }}": "В прямом эфире до {{ timestamp }}",
69
76
  "Load more": "Загрузить больше",
77
+ "Location": "Местоположение",
78
+ "Location sharing ended": "Обмен местоположением завершен",
70
79
  "Mark as unread": "Отметить как непрочитанное",
71
80
  "Maximum number of votes (from 2 to 10)": "Максимальное количество голосов (от 2 до 10)",
72
81
  "Menu": "Меню",
@@ -123,14 +132,20 @@
123
132
  "Send Anyway": "Мне всё равно, отправить",
124
133
  "Send message request failed": "Не удалось отправить запрос на отправку сообщения",
125
134
  "Sending...": "Отправка...",
135
+ "Share": "Поделиться",
136
+ "Share Location": "Поделиться местоположением",
137
+ "Share live location for": "Поделиться местоположением в прямом эфире на",
138
+ "Shared live location": "Общее местоположение в прямом эфире",
126
139
  "Show all": "Показать все",
127
140
  "Shuffle": "Перемешать",
128
141
  "Slow Mode ON": "Медленный режим включен",
129
142
  "Some of the files will not be accepted": "Некоторые файлы не будут приняты",
130
143
  "Start typing to search": "Начните вводить для поиска",
144
+ "Stop sharing": "Прекратить делиться",
131
145
  "Submit": "Отправить",
132
146
  "Suggest an option": "Предложить вариант",
133
147
  "Thinking...": "Думаю...",
148
+ "This field cannot be empty or contain only spaces": "Это поле не может быть пустым или содержать только пробелы",
134
149
  "This message did not meet our content guidelines": "Сообщение не соответствует правилам",
135
150
  "This message was deleted...": "Сообщение было удалено...",
136
151
  "Thread": "Ветка",
@@ -174,12 +189,14 @@
174
189
  "aria/Menu": "Меню",
175
190
  "aria/Message Options": "Параметры сообщения",
176
191
  "aria/Open Attachment Selector": "Открыть выбор вложений",
192
+ "aria/Open Menu": "Открыть меню",
177
193
  "aria/Open Message Actions Menu": "Открыть меню действий с сообщениями",
178
194
  "aria/Open Reaction Selector": "Открыть селектор реакций",
179
195
  "aria/Open Thread": "Открыть тему",
180
196
  "aria/Reaction list": "Список реакций",
181
197
  "aria/Remind Me Options": "Параметры напоминания",
182
198
  "aria/Remove attachment": "Удалить вложение",
199
+ "aria/Remove location attachment": "Удалить вложение местоположения",
183
200
  "aria/Retry upload": "Повторить загрузку",
184
201
  "aria/Search results": "Результаты поиска",
185
202
  "aria/Search results header filter button": "Кнопка фильтра заголовка результатов поиска",
@@ -189,6 +206,7 @@
189
206
  "ban-command-description": "Заблокировать пользователя",
190
207
  "duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
191
208
  "duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
209
+ "duration/Share Location": "{{ milliseconds | durationFormatter }}",
192
210
  "giphy-command-args": "[текст]",
193
211
  "giphy-command-description": "Опубликовать случайную GIF-анимацию в канале",
194
212
  "live": "В прямом эфире",
@@ -209,6 +227,7 @@
209
227
  "size limit": "ограничение размера",
210
228
  "this content could not be displayed": "Этот контент не может быть отображен в данный момент",
211
229
  "timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
230
+ "timestamp/LiveLocation": "{{ timestamp | timestampFormatter(calendar: true) }}",
212
231
  "timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
213
232
  "timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
214
233
  "timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
@@ -246,5 +265,6 @@
246
265
  "{{count}} votes_other": "{{count}} голосов",
247
266
  "🏙 Attachment...": "🏙 Вложение...",
248
267
  "📊 {{createdBy}} created: {{ pollName}}": "📊 {{createdBy}} создал(а): {{ pollName}}",
249
- "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} проголосовал(а): {{pollOptionText}}"
268
+ "📊 {{votedBy}} voted: {{pollOptionText}}": "📊 {{votedBy}} проголосовал(а): {{pollOptionText}}",
269
+ "📍Shared location": "📍Общее местоположение"
250
270
  }