stream-chat-react 13.0.5 → 13.1.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/Channel/Channel.d.ts +1 -1
- package/dist/components/Channel/Channel.js +7 -0
- package/dist/components/ChannelList/hooks/useChannelListShape.js +3 -3
- package/dist/components/Chat/hooks/useChat.js +7 -3
- package/dist/components/Dialog/ButtonWithSubmenu.d.ts +11 -0
- package/dist/components/Dialog/ButtonWithSubmenu.js +88 -0
- package/dist/components/Dialog/index.d.ts +1 -0
- package/dist/components/Dialog/index.js +1 -0
- package/dist/components/Loading/LoadingErrorIndicator.js +1 -1
- package/dist/components/Message/Message.js +3 -2
- package/dist/components/Message/MessageSimple.js +11 -4
- package/dist/components/Message/MessageThreadReplyInChannelButtonIndicator.d.ts +2 -0
- package/dist/components/Message/MessageThreadReplyInChannelButtonIndicator.js +63 -0
- package/dist/components/Message/ReminderNotification.d.ts +6 -0
- package/dist/components/Message/ReminderNotification.js +30 -0
- package/dist/components/Message/hooks/index.d.ts +1 -0
- package/dist/components/Message/hooks/index.js +1 -0
- package/dist/components/Message/hooks/useMessageReminder.d.ts +1 -0
- package/dist/components/Message/hooks/useMessageReminder.js +11 -0
- package/dist/components/Message/index.d.ts +1 -0
- package/dist/components/Message/index.js +1 -0
- package/dist/components/Message/utils.d.ts +4 -2
- package/dist/components/Message/utils.js +11 -1
- package/dist/components/MessageActions/MessageActionsBox.js +12 -6
- package/dist/components/MessageActions/RemindMeSubmenu.d.ts +6 -0
- package/dist/components/MessageActions/RemindMeSubmenu.js +18 -0
- package/dist/components/MessageInput/MessageInputFlat.js +5 -3
- package/dist/components/MessageInput/SendToChannelCheckbox.d.ts +2 -0
- package/dist/components/MessageInput/SendToChannelCheckbox.js +20 -0
- package/dist/components/MessageList/MessageListNotifications.js +8 -3
- package/dist/components/MessageList/VirtualizedMessageListComponents.d.ts +1 -1
- package/dist/components/MessageList/VirtualizedMessageListComponents.js +4 -0
- package/dist/components/Notifications/hooks/index.d.ts +1 -0
- package/dist/components/Notifications/hooks/index.js +1 -0
- package/dist/components/Notifications/hooks/useNotifications.d.ts +2 -0
- package/dist/components/Notifications/hooks/useNotifications.js +10 -0
- package/dist/components/Notifications/index.d.ts +1 -0
- package/dist/components/Notifications/index.js +1 -0
- package/dist/components/TextareaComposer/TextareaComposer.js +4 -0
- package/dist/components/Thread/LegacyThreadContext.d.ts +8 -0
- package/dist/components/Thread/LegacyThreadContext.js +3 -0
- package/dist/components/Thread/Thread.d.ts +0 -4
- package/dist/components/Thread/Thread.js +2 -3
- package/dist/components/Thread/index.d.ts +1 -0
- package/dist/components/Thread/index.js +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/context/ComponentContext.d.ts +6 -1
- package/dist/css/v2/index.css +1 -1
- package/dist/css/v2/index.layout.css +1 -1
- package/dist/experimental/MessageActions/defaults.d.ts +1 -1
- package/dist/experimental/MessageActions/defaults.js +27 -4
- package/dist/experimental/index.browser.cjs +382 -169
- package/dist/experimental/index.browser.cjs.map +4 -4
- package/dist/experimental/index.node.cjs +382 -169
- package/dist/experimental/index.node.cjs.map +4 -4
- package/dist/i18n/Streami18n.d.ts +32 -3
- package/dist/i18n/Streami18n.js +34 -5
- package/dist/i18n/TranslationBuilder/TranslationBuilder.d.ts +31 -0
- package/dist/i18n/TranslationBuilder/TranslationBuilder.js +68 -0
- package/dist/i18n/TranslationBuilder/index.d.ts +2 -0
- package/dist/i18n/TranslationBuilder/index.js +2 -0
- package/dist/i18n/TranslationBuilder/notifications/NotificationTranslationTopic.d.ts +11 -0
- package/dist/i18n/TranslationBuilder/notifications/NotificationTranslationTopic.js +27 -0
- package/dist/i18n/TranslationBuilder/notifications/attachmentUpload.d.ts +4 -0
- package/dist/i18n/TranslationBuilder/notifications/attachmentUpload.js +32 -0
- package/dist/i18n/TranslationBuilder/notifications/index.d.ts +1 -0
- package/dist/i18n/TranslationBuilder/notifications/index.js +1 -0
- package/dist/i18n/TranslationBuilder/notifications/pollComposition.d.ts +3 -0
- package/dist/i18n/TranslationBuilder/notifications/pollComposition.js +9 -0
- package/dist/i18n/TranslationBuilder/notifications/types.d.ts +4 -0
- package/dist/i18n/TranslationBuilder/notifications/types.js +1 -0
- package/dist/i18n/de.json +23 -0
- package/dist/i18n/en.json +23 -0
- package/dist/i18n/es.json +23 -0
- package/dist/i18n/fr.json +23 -0
- package/dist/i18n/hi.json +23 -0
- package/dist/i18n/index.d.ts +1 -0
- package/dist/i18n/index.js +1 -0
- package/dist/i18n/it.json +23 -0
- package/dist/i18n/ja.json +23 -0
- package/dist/i18n/ko.json +23 -0
- package/dist/i18n/nl.json +23 -0
- package/dist/i18n/pt.json +23 -0
- package/dist/i18n/ru.json +23 -0
- package/dist/i18n/tr.json +23 -0
- package/dist/i18n/types.d.ts +54 -0
- package/dist/i18n/utils.d.ts +1 -1
- package/dist/i18n/utils.js +8 -2
- package/dist/index.browser.cjs +3589 -2162
- package/dist/index.browser.cjs.map +4 -4
- package/dist/index.node.cjs +3645 -2156
- package/dist/index.node.cjs.map +4 -4
- package/dist/plugins/Emojis/index.browser.cjs +1 -2
- package/dist/plugins/Emojis/index.browser.cjs.map +3 -3
- package/dist/plugins/Emojis/index.node.cjs +1 -2
- package/dist/plugins/Emojis/index.node.cjs.map +3 -3
- package/dist/scss/v2/Message/Message-layout.scss +11 -1
- package/dist/scss/v2/Message/Message-theme.scss +31 -1
- package/dist/scss/v2/MessageActionsBox/MessageActionsBox-theme.scss +8 -0
- package/dist/scss/v2/MessageInput/MessageInput-layout.scss +19 -0
- package/dist/scss/v2/MessageInput/MessageInput-theme.scss +11 -0
- package/package.json +6 -8
package/dist/i18n/ja.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "マイクロフォンへのアクセスを許可する",
|
|
7
7
|
"Allow comments": "コメントを許可",
|
|
8
8
|
"Allow option suggestion": "オプションの提案を許可",
|
|
9
|
+
"Also send as a direct message": "ダイレクトメッセージとしても送信",
|
|
10
|
+
"Also send in channel": "チャンネルにも送信",
|
|
9
11
|
"An error has occurred during recording": "録音中にエラーが発生しました",
|
|
10
12
|
"An error has occurred during the recording processing": "録音処理中にエラーが発生しました",
|
|
11
13
|
"Anonymous": "匿名",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "アーカイブ",
|
|
14
16
|
"Ask a question": "質問する",
|
|
15
17
|
"Attach files": "ファイルを添付する",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "{{reason}}のため添付ファイルのアップロードがブロックされました",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "{{reason}}のため添付ファイルのアップロードに失敗しました",
|
|
16
20
|
"Cancel": "キャンセル",
|
|
17
21
|
"Cannot seek in the recording": "録音中にシークできません",
|
|
18
22
|
"Channel Missing": "チャネルがありません",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "添付ファイル {{ name }} をダウンロード",
|
|
28
32
|
"Drag your files here": "ここにファイルをドラッグ",
|
|
29
33
|
"Drag your files here to add to your post": "投稿に追加するためにここにファイルをドラッグ",
|
|
34
|
+
"Due since {{ dueSince }}": "{{ dueSince }}から期限切れ",
|
|
35
|
+
"Due {{ timeLeft }}": "{{ timeLeft }}に期限切れ",
|
|
30
36
|
"Edit Message": "メッセージを編集",
|
|
31
37
|
"Edit message request failed": "メッセージの編集要求が失敗しました",
|
|
32
38
|
"Edited": "編集済み",
|
|
@@ -50,6 +56,8 @@
|
|
|
50
56
|
"Error uploading image": "画像をアップロードのエラーが発生しました",
|
|
51
57
|
"Error · Unsent": "エラー・未送信",
|
|
52
58
|
"Error: {{ errorMessage }}": "エラー: {{ errorMessage }}",
|
|
59
|
+
"Failed to create the poll": "投票の作成に失敗しました",
|
|
60
|
+
"Failed to create the poll due to {{reason}}": "{{reason}} のため投票の作成に失敗しました",
|
|
53
61
|
"Failed to jump to the first unread message": "最初の未読メッセージにジャンプできませんでした",
|
|
54
62
|
"Failed to mark channel as read": "チャンネルを既読にすることができませんでした",
|
|
55
63
|
"Failed to play the recording": "録音の再生に失敗しました",
|
|
@@ -93,8 +101,12 @@
|
|
|
93
101
|
"Question": "質問",
|
|
94
102
|
"Quote": "引用",
|
|
95
103
|
"Recording format is not supported and cannot be reproduced": "録音形式はサポートされておらず、再生できません",
|
|
104
|
+
"Remind Me": "リマインダー",
|
|
105
|
+
"Remove reminder": "リマインダーを削除",
|
|
96
106
|
"Reply": "返事",
|
|
97
107
|
"Reply to Message": "メッセージに返信",
|
|
108
|
+
"Save for later": "後で保存",
|
|
109
|
+
"Saved for later": "後で保存済み",
|
|
98
110
|
"Search": "探す",
|
|
99
111
|
"Searching...": "検索中...",
|
|
100
112
|
"See all options ({{count}})_other": "すべてのオプションを見る ({{count}})",
|
|
@@ -116,6 +128,8 @@
|
|
|
116
128
|
"This message did not meet our content guidelines": "このメッセージはコンテンツガイドラインに適合していません",
|
|
117
129
|
"This message was deleted...": "このメッセージは削除されました...",
|
|
118
130
|
"Thread": "スレッド",
|
|
131
|
+
"Thread has not been found": "スレッドが見つかりませんでした",
|
|
132
|
+
"Thread reply": "スレッドの返信",
|
|
119
133
|
"To start recording, allow the camera access in your browser": "録音を開始するには、ブラウザーでカメラへのアクセスを許可してください",
|
|
120
134
|
"To start recording, allow the microphone access in your browser": "録音を開始するには、ブラウザーでマイクロフォンへのアクセスを許可してください",
|
|
121
135
|
"Type a number from 2 to 10": "2から10までの数字を入力してください",
|
|
@@ -155,6 +169,7 @@
|
|
|
155
169
|
"aria/Open Reaction Selector": "リアクションセレクターを開く",
|
|
156
170
|
"aria/Open Thread": "スレッドを開く",
|
|
157
171
|
"aria/Reaction list": "リアクション一覧",
|
|
172
|
+
"aria/Remind Me Options": "リマインダーオプション",
|
|
158
173
|
"aria/Remove attachment": "添付ファイルを削除",
|
|
159
174
|
"aria/Retry upload": "アップロードを再試行",
|
|
160
175
|
"aria/Search results": "検索結果",
|
|
@@ -163,11 +178,14 @@
|
|
|
163
178
|
"aria/Stop AI Generation": "AI生成を停止",
|
|
164
179
|
"ban-command-args": "[@ユーザ名] [テキスト]",
|
|
165
180
|
"ban-command-description": "ユーザーを禁止する",
|
|
181
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
182
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
166
183
|
"giphy-command-args": "[テキスト]",
|
|
167
184
|
"giphy-command-description": "チャンネルにランダムなGIFを投稿する",
|
|
168
185
|
"live": "ライブ",
|
|
169
186
|
"mute-command-args": "[@ユーザ名]",
|
|
170
187
|
"mute-command-description": "ユーザーをミュートする",
|
|
188
|
+
"network error": "ネットワークエラー",
|
|
171
189
|
"replyCount_one": "1件の返信",
|
|
172
190
|
"replyCount_other": "{{ count }} 返信",
|
|
173
191
|
"search-results-header-filter-source-button-label--channels": "チャンネル",
|
|
@@ -175,17 +193,22 @@
|
|
|
175
193
|
"search-results-header-filter-source-button-label--users": "ユーザー",
|
|
176
194
|
"searchResultsCount_one": "1件の結果",
|
|
177
195
|
"searchResultsCount_other": "{{ count }}件の結果",
|
|
196
|
+
"size limit": "サイズ制限",
|
|
178
197
|
"this content could not be displayed": "このコンテンツは表示できませんでした",
|
|
179
198
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
180
199
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
181
200
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
182
201
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
202
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
183
203
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
204
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
184
205
|
"unban-command-args": "[@ユーザ名]",
|
|
185
206
|
"unban-command-description": "ユーザーの禁止を解除する",
|
|
207
|
+
"unknown error": "不明なエラー",
|
|
186
208
|
"unmute-command-args": "[@ユーザ名]",
|
|
187
209
|
"unmute-command-description": "ユーザーのミュートを解除する",
|
|
188
210
|
"unreadMessagesSeparatorText_other": "未読メッセージ {{count}} 件",
|
|
211
|
+
"unsupported file type": "サポートされていないファイル形式",
|
|
189
212
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} と {{ moreCount }} 他人",
|
|
190
213
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} と {{ lastUser }}",
|
|
191
214
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} と {{ secondUser }}",
|
package/dist/i18n/ko.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "마이크로폰에 대한 액세스 허용",
|
|
7
7
|
"Allow comments": "댓글 허용",
|
|
8
8
|
"Allow option suggestion": "옵션 제안 허용",
|
|
9
|
+
"Also send as a direct message": "다이렉트 메시지로도 보내기",
|
|
10
|
+
"Also send in channel": "채널에도 보내기",
|
|
9
11
|
"An error has occurred during recording": "녹음 중 오류가 발생했습니다",
|
|
10
12
|
"An error has occurred during the recording processing": "녹음 처리 중 오류가 발생했습니다",
|
|
11
13
|
"Anonymous": "익명",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "아카이브",
|
|
14
16
|
"Ask a question": "질문하기",
|
|
15
17
|
"Attach files": "파일 첨부",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "{{reason}}로 인해 첨부 파일 업로드가 차단되었습니다",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "{{reason}}로 인해 첨부 파일 업로드가 실패했습니다",
|
|
16
20
|
"Cancel": "취소",
|
|
17
21
|
"Cannot seek in the recording": "녹음에서 찾을 수 없습니다",
|
|
18
22
|
"Channel Missing": "채널 누락",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "첨부 파일 {{ name }} 다운로드",
|
|
28
32
|
"Drag your files here": "여기로 파일을 끌어다 놓으세요",
|
|
29
33
|
"Drag your files here to add to your post": "게시물에 추가하려면 파일을 여기로 끌어다 놓으세요",
|
|
34
|
+
"Due since {{ dueSince }}": "{{ dueSince }}부터 기한",
|
|
35
|
+
"Due {{ timeLeft }}": "{{ timeLeft }}에 기한",
|
|
30
36
|
"Edit Message": "메시지 수정",
|
|
31
37
|
"Edit message request failed": "메시지 수정 요청 실패",
|
|
32
38
|
"Edited": "편집됨",
|
|
@@ -50,6 +56,8 @@
|
|
|
50
56
|
"Error uploading image": "이미지를 업로드하는 동안 오류가 발생했습니다.",
|
|
51
57
|
"Error · Unsent": "오류 · 전송되지 않음",
|
|
52
58
|
"Error: {{ errorMessage }}": "오류: {{ errorMessage }}",
|
|
59
|
+
"Failed to create the poll": "투표 생성 실패",
|
|
60
|
+
"Failed to create the poll due to {{reason}}": "{{reason}} 때문에 투표를 생성하지 못했습니다",
|
|
53
61
|
"Failed to jump to the first unread message": "첫 번째 읽지 않은 메시지로 이동하지 못했습니다",
|
|
54
62
|
"Failed to mark channel as read": "채널을 읽음으로 표시하는 데 실패했습니다",
|
|
55
63
|
"Failed to play the recording": "녹음을 재생하지 못했습니다",
|
|
@@ -93,8 +101,12 @@
|
|
|
93
101
|
"Question": "질문",
|
|
94
102
|
"Quote": "인용",
|
|
95
103
|
"Recording format is not supported and cannot be reproduced": "녹음 형식이 지원되지 않으므로 재생할 수 없습니다",
|
|
104
|
+
"Remind Me": "알림 설정",
|
|
105
|
+
"Remove reminder": "알림 제거",
|
|
96
106
|
"Reply": "답장",
|
|
97
107
|
"Reply to Message": "메시지에 답장",
|
|
108
|
+
"Save for later": "나중에 저장",
|
|
109
|
+
"Saved for later": "나중에 저장됨",
|
|
98
110
|
"Search": "찾다",
|
|
99
111
|
"Searching...": "수색...",
|
|
100
112
|
"See all options ({{count}})_other": "모든 옵션 보기 ({{count}})",
|
|
@@ -116,6 +128,8 @@
|
|
|
116
128
|
"This message did not meet our content guidelines": "이 메시지는 콘텐츠 가이드라인을 충족하지 않습니다.",
|
|
117
129
|
"This message was deleted...": "이 메시지는 삭제되었습니다...",
|
|
118
130
|
"Thread": "스레드",
|
|
131
|
+
"Thread has not been found": "스레드를 찾을 수 없습니다",
|
|
132
|
+
"Thread reply": "스레드 답장",
|
|
119
133
|
"To start recording, allow the camera access in your browser": "브라우저에서 카메라 액세스를 허용하여 녹음을 시작합니다",
|
|
120
134
|
"To start recording, allow the microphone access in your browser": "브라우저에서 마이크로폰 액세스를 허용하여 녹음을 시작합니다",
|
|
121
135
|
"Type a number from 2 to 10": "2에서 10 사이의 숫자를 입력하세요",
|
|
@@ -155,6 +169,7 @@
|
|
|
155
169
|
"aria/Open Reaction Selector": "반응 선택기 열기",
|
|
156
170
|
"aria/Open Thread": "스레드 열기",
|
|
157
171
|
"aria/Reaction list": "반응 목록",
|
|
172
|
+
"aria/Remind Me Options": "알림 옵션",
|
|
158
173
|
"aria/Remove attachment": "첨부 파일 제거",
|
|
159
174
|
"aria/Retry upload": "업로드 다시 시도",
|
|
160
175
|
"aria/Search results": "검색 결과",
|
|
@@ -163,11 +178,14 @@
|
|
|
163
178
|
"aria/Stop AI Generation": "AI 생성 중지",
|
|
164
179
|
"ban-command-args": "[@사용자이름] [텍스트]",
|
|
165
180
|
"ban-command-description": "사용자를 차단",
|
|
181
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
182
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
166
183
|
"giphy-command-args": "[텍스트]",
|
|
167
184
|
"giphy-command-description": "채널에 무작위 GIF 게시",
|
|
168
185
|
"live": "라이브",
|
|
169
186
|
"mute-command-args": "[@사용자이름]",
|
|
170
187
|
"mute-command-description": "사용자 음소거",
|
|
188
|
+
"network error": "네트워크 오류",
|
|
171
189
|
"replyCount_one": "답장 1개",
|
|
172
190
|
"replyCount_other": "{{ count }} 답장",
|
|
173
191
|
"search-results-header-filter-source-button-label--channels": "채널",
|
|
@@ -175,17 +193,22 @@
|
|
|
175
193
|
"search-results-header-filter-source-button-label--users": "사용자",
|
|
176
194
|
"searchResultsCount_one": "1개의 결과",
|
|
177
195
|
"searchResultsCount_other": "{{ count }}개 결과",
|
|
196
|
+
"size limit": "크기 제한",
|
|
178
197
|
"this content could not be displayed": "이 콘텐츠를 표시할 수 없습니다",
|
|
179
198
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
180
199
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
181
200
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
182
201
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
202
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
183
203
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
204
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
184
205
|
"unban-command-args": "[@사용자이름]",
|
|
185
206
|
"unban-command-description": "사용자 차단 해제",
|
|
207
|
+
"unknown error": "알 수 없는 오류",
|
|
186
208
|
"unmute-command-args": "[@사용자이름]",
|
|
187
209
|
"unmute-command-description": "사용자 음소거 해제",
|
|
188
210
|
"unreadMessagesSeparatorText_other": "읽지 않은 메시지 {{count}}개",
|
|
211
|
+
"unsupported file type": "지원되지 않는 파일 형식",
|
|
189
212
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} 그리고 {{ moreCount }}명 더",
|
|
190
213
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} 그리고 {{ lastUser }}",
|
|
191
214
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} 그리고 {{ secondUser }}",
|
package/dist/i18n/nl.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "Toegang tot microfoon toestaan",
|
|
7
7
|
"Allow comments": "Sta opmerkingen toe",
|
|
8
8
|
"Allow option suggestion": "Sta optie-suggesties toe",
|
|
9
|
+
"Also send as a direct message": "Ook als direct bericht versturen",
|
|
10
|
+
"Also send in channel": "Ook in kanaal versturen",
|
|
9
11
|
"An error has occurred during recording": "Er is een fout opgetreden tijdens het opnemen",
|
|
10
12
|
"An error has occurred during the recording processing": "Er is een fout opgetreden tijdens de verwerking van de opname",
|
|
11
13
|
"Anonymous": "Anoniem",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "Archief",
|
|
14
16
|
"Ask a question": "Stel een vraag",
|
|
15
17
|
"Attach files": "Bijlage toevoegen",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "Bijlage upload geblokkeerd vanwege {{reason}}",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "Bijlage upload mislukt vanwege {{reason}}",
|
|
16
20
|
"Cancel": "Annuleer",
|
|
17
21
|
"Cannot seek in the recording": "Kan niet zoeken in de opname",
|
|
18
22
|
"Channel Missing": "Kanaal niet gevonden",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "Bijlage {{ name }} downloaden",
|
|
28
32
|
"Drag your files here": "Sleep je bestanden hier naartoe",
|
|
29
33
|
"Drag your files here to add to your post": "Sleep je bestanden hier naartoe om aan je bericht toe te voegen",
|
|
34
|
+
"Due since {{ dueSince }}": "Vervallen sinds {{ dueSince }}",
|
|
35
|
+
"Due {{ timeLeft }}": "Vervallen in {{ timeLeft }}",
|
|
30
36
|
"Edit Message": "Bericht bewerken",
|
|
31
37
|
"Edit message request failed": "Verzoek om bericht bewerken mislukt",
|
|
32
38
|
"Edited": "Bewerkt",
|
|
@@ -50,6 +56,8 @@
|
|
|
50
56
|
"Error uploading image": "Fout bij uploaden afbeelding",
|
|
51
57
|
"Error · Unsent": "Fout · niet verzonden",
|
|
52
58
|
"Error: {{ errorMessage }}": "Fout: {{ errorMessage }}",
|
|
59
|
+
"Failed to create the poll": "Fout bij het maken van de peiling",
|
|
60
|
+
"Failed to create the poll due to {{reason}}": "Peiling kon niet worden aangemaakt vanwege {{reason}}",
|
|
53
61
|
"Failed to jump to the first unread message": "Niet gelukt om naar het eerste ongelezen bericht te springen",
|
|
54
62
|
"Failed to mark channel as read": "Kanaal kon niet als gelezen worden gemarkeerd",
|
|
55
63
|
"Failed to play the recording": "Kan de opname niet afspelen",
|
|
@@ -93,8 +101,12 @@
|
|
|
93
101
|
"Question": "Vraag",
|
|
94
102
|
"Quote": "Citeer",
|
|
95
103
|
"Recording format is not supported and cannot be reproduced": "Opnameformaat wordt niet ondersteund en kan niet worden gereproduceerd",
|
|
104
|
+
"Remind Me": "Herinner mij",
|
|
105
|
+
"Remove reminder": "Herinnering verwijderen",
|
|
96
106
|
"Reply": "Antwoord",
|
|
97
107
|
"Reply to Message": "Antwoord op bericht",
|
|
108
|
+
"Save for later": "Bewaren voor later",
|
|
109
|
+
"Saved for later": "Bewaard voor later",
|
|
98
110
|
"Search": "Zoeken",
|
|
99
111
|
"Searching...": "Zoeken...",
|
|
100
112
|
"See all options ({{count}})_one": "Bekijk alle opties ({{count}})",
|
|
@@ -118,6 +130,8 @@
|
|
|
118
130
|
"This message did not meet our content guidelines": "Dit bericht voldeed niet aan onze inhoudsrichtlijnen",
|
|
119
131
|
"This message was deleted...": "Dit bericht was verwijderd",
|
|
120
132
|
"Thread": "Draadje",
|
|
133
|
+
"Thread has not been found": "Draadje niet gevonden",
|
|
134
|
+
"Thread reply": "Draadje antwoord",
|
|
121
135
|
"To start recording, allow the camera access in your browser": "Om te beginnen met opnemen, sta toegang tot de camera toe in uw browser",
|
|
122
136
|
"To start recording, allow the microphone access in your browser": "Om te beginnen met opnemen, sta toegang tot de microfoon toe in uw browser",
|
|
123
137
|
"Type a number from 2 to 10": "Typ een getal van 2 tot 10",
|
|
@@ -158,6 +172,7 @@
|
|
|
158
172
|
"aria/Open Reaction Selector": "Reactiekiezer openen",
|
|
159
173
|
"aria/Open Thread": "Draad openen",
|
|
160
174
|
"aria/Reaction list": "Reactielijst",
|
|
175
|
+
"aria/Remind Me Options": "Herinneringsopties",
|
|
161
176
|
"aria/Remove attachment": "Bijlage verwijderen",
|
|
162
177
|
"aria/Retry upload": "Upload opnieuw proberen",
|
|
163
178
|
"aria/Search results": "Zoekresultaten",
|
|
@@ -166,11 +181,14 @@
|
|
|
166
181
|
"aria/Stop AI Generation": "AI-generatie stoppen",
|
|
167
182
|
"ban-command-args": "[@gebruikersnaam] [tekst]",
|
|
168
183
|
"ban-command-description": "Een gebruiker verbannen",
|
|
184
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
185
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
169
186
|
"giphy-command-args": "[tekst]",
|
|
170
187
|
"giphy-command-description": "Plaats een willekeurige gif in het kanaal",
|
|
171
188
|
"live": "live",
|
|
172
189
|
"mute-command-args": "[@gebruikersnaam]",
|
|
173
190
|
"mute-command-description": "Een gebruiker dempen",
|
|
191
|
+
"network error": "netwerkfout",
|
|
174
192
|
"replyCount_one": "1 antwoord",
|
|
175
193
|
"replyCount_other": "{{ count }} antwoorden",
|
|
176
194
|
"search-results-header-filter-source-button-label--channels": "kanalen",
|
|
@@ -178,18 +196,23 @@
|
|
|
178
196
|
"search-results-header-filter-source-button-label--users": "gebruikers",
|
|
179
197
|
"searchResultsCount_one": "1 resultaat",
|
|
180
198
|
"searchResultsCount_other": "{{ count }} resultaten",
|
|
199
|
+
"size limit": "grootte limiet",
|
|
181
200
|
"this content could not be displayed": "Deze inhoud kan niet weergegeven worden",
|
|
182
201
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
183
202
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
184
203
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
185
204
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
205
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
186
206
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
207
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
187
208
|
"unban-command-args": "[@gebruikersnaam]",
|
|
188
209
|
"unban-command-description": "Een gebruiker debannen",
|
|
210
|
+
"unknown error": "onbekende fout",
|
|
189
211
|
"unmute-command-args": "[@gebruikersnaam]",
|
|
190
212
|
"unmute-command-description": "Een gebruiker niet meer dempen",
|
|
191
213
|
"unreadMessagesSeparatorText_one": "1 ongelezen bericht",
|
|
192
214
|
"unreadMessagesSeparatorText_other": "{{count}} ongelezen berichten",
|
|
215
|
+
"unsupported file type": "niet-ondersteund bestandstype",
|
|
193
216
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} en {{ moreCount }} meer",
|
|
194
217
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} en {{ lastUser }}",
|
|
195
218
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} en {{ secondUser }}",
|
package/dist/i18n/pt.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "Permitir acesso ao microfone",
|
|
7
7
|
"Allow comments": "Permitir comentários",
|
|
8
8
|
"Allow option suggestion": "Permitir sugestão de opção",
|
|
9
|
+
"Also send as a direct message": "Também enviar como mensagem direta",
|
|
10
|
+
"Also send in channel": "Também enviar no canal",
|
|
9
11
|
"An error has occurred during recording": "Ocorreu um erro durante a gravação",
|
|
10
12
|
"An error has occurred during the recording processing": "Ocorreu um erro durante o processamento da gravação",
|
|
11
13
|
"Anonymous": "Anônimo",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "Arquivar",
|
|
14
16
|
"Ask a question": "Faça uma pergunta",
|
|
15
17
|
"Attach files": "Anexar arquivos",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "Upload de anexo bloqueado devido a {{reason}}",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "Upload de anexo falhou devido a {{reason}}",
|
|
16
20
|
"Cancel": "Cancelar",
|
|
17
21
|
"Cannot seek in the recording": "Não é possível buscar na gravação",
|
|
18
22
|
"Channel Missing": "Canal ausente",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "Baixar anexo {{ name }}",
|
|
28
32
|
"Drag your files here": "Arraste seus arquivos aqui",
|
|
29
33
|
"Drag your files here to add to your post": "Arraste seus arquivos aqui para adicionar ao seu post",
|
|
34
|
+
"Due since {{ dueSince }}": "Vencido desde {{ dueSince }}",
|
|
35
|
+
"Due {{ timeLeft }}": "Vence em {{ timeLeft }}",
|
|
30
36
|
"Edit Message": "Editar Mensagem",
|
|
31
37
|
"Edit message request failed": "O pedido de edição da mensagem falhou",
|
|
32
38
|
"Edited": "Editada",
|
|
@@ -50,6 +56,8 @@
|
|
|
50
56
|
"Error uploading image": "Erro ao carregar a imagem",
|
|
51
57
|
"Error · Unsent": "Erro · Não enviado",
|
|
52
58
|
"Error: {{ errorMessage }}": "Erro: {{ errorMessage }}",
|
|
59
|
+
"Failed to create the poll": "Falha ao criar a pesquisa",
|
|
60
|
+
"Failed to create the poll due to {{reason}}": "Falha ao criar a enquete devido a {{reason}}",
|
|
53
61
|
"Failed to jump to the first unread message": "Falha ao pular para a primeira mensagem não lida",
|
|
54
62
|
"Failed to mark channel as read": "Falha ao marcar o canal como lido",
|
|
55
63
|
"Failed to play the recording": "Falha ao reproduzir a gravação",
|
|
@@ -93,8 +101,12 @@
|
|
|
93
101
|
"Question": "Pergunta",
|
|
94
102
|
"Quote": "Citar",
|
|
95
103
|
"Recording format is not supported and cannot be reproduced": "Formato de gravação não é suportado e não pode ser reproduzido",
|
|
104
|
+
"Remind Me": "Lembrar-me",
|
|
105
|
+
"Remove reminder": "Remover lembrete",
|
|
96
106
|
"Reply": "Responder",
|
|
97
107
|
"Reply to Message": "Responder à mensagem",
|
|
108
|
+
"Save for later": "Salvar para depois",
|
|
109
|
+
"Saved for later": "Salvo para depois",
|
|
98
110
|
"Search": "Buscar",
|
|
99
111
|
"Searching...": "Buscando...",
|
|
100
112
|
"See all options ({{count}})_many": "Ver todas as opções ({{count}})",
|
|
@@ -120,6 +132,8 @@
|
|
|
120
132
|
"This message did not meet our content guidelines": "Esta mensagem não corresponde às nossas diretrizes de conteúdo",
|
|
121
133
|
"This message was deleted...": "Esta mensagem foi excluída...",
|
|
122
134
|
"Thread": "Fio",
|
|
135
|
+
"Thread has not been found": "Fio não encontrado",
|
|
136
|
+
"Thread reply": "Resposta no fio",
|
|
123
137
|
"To start recording, allow the camera access in your browser": "Para começar a gravar, permita o acesso à câmera no seu navegador",
|
|
124
138
|
"To start recording, allow the microphone access in your browser": "Para começar a gravar, permita o acesso ao microfone no seu navegador",
|
|
125
139
|
"Type a number from 2 to 10": "Digite um número de 2 a 10",
|
|
@@ -161,6 +175,7 @@
|
|
|
161
175
|
"aria/Open Reaction Selector": "Abrir seletor de reações",
|
|
162
176
|
"aria/Open Thread": "Abrir tópico",
|
|
163
177
|
"aria/Reaction list": "Lista de reações",
|
|
178
|
+
"aria/Remind Me Options": "Opções de lembrete",
|
|
164
179
|
"aria/Remove attachment": "Remover anexo",
|
|
165
180
|
"aria/Retry upload": "Tentar upload novamente",
|
|
166
181
|
"aria/Search results": "Resultados da pesquisa",
|
|
@@ -169,11 +184,14 @@
|
|
|
169
184
|
"aria/Stop AI Generation": "Parar geração de IA",
|
|
170
185
|
"ban-command-args": "[@nomedeusuário] [texto]",
|
|
171
186
|
"ban-command-description": "Banir um usuário",
|
|
187
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
188
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
172
189
|
"giphy-command-args": "[texto]",
|
|
173
190
|
"giphy-command-description": "Postar um gif aleatório no canal",
|
|
174
191
|
"live": "ao vivo",
|
|
175
192
|
"mute-command-args": "[@nomedeusuário]",
|
|
176
193
|
"mute-command-description": "Silenciar um usuário",
|
|
194
|
+
"network error": "erro de rede",
|
|
177
195
|
"replyCount_many": "{{ count }} respostas",
|
|
178
196
|
"replyCount_one": "1 resposta",
|
|
179
197
|
"replyCount_other": "{{ count }} respostas",
|
|
@@ -183,19 +201,24 @@
|
|
|
183
201
|
"searchResultsCount_many": "{{ count }} resultados",
|
|
184
202
|
"searchResultsCount_one": "1 resultado",
|
|
185
203
|
"searchResultsCount_other": "{{ count }} resultados",
|
|
204
|
+
"size limit": "limite de tamanho",
|
|
186
205
|
"this content could not be displayed": "este conteúdo não pôde ser exibido",
|
|
187
206
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
188
207
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
189
208
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
190
209
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
210
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
191
211
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
212
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
192
213
|
"unban-command-args": "[@nomedeusuário]",
|
|
193
214
|
"unban-command-description": "Desbanir um usuário",
|
|
215
|
+
"unknown error": "erro desconhecido",
|
|
194
216
|
"unmute-command-args": "[@nomedeusuário]",
|
|
195
217
|
"unmute-command-description": "Retirar o silenciamento de um usuário",
|
|
196
218
|
"unreadMessagesSeparatorText_many": "{{count}} mensagens não lidas",
|
|
197
219
|
"unreadMessagesSeparatorText_one": "1 mensagem não lida",
|
|
198
220
|
"unreadMessagesSeparatorText_other": "{{count}} mensagens não lidas",
|
|
221
|
+
"unsupported file type": "tipo de arquivo não suportado",
|
|
199
222
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} e mais {{ moreCount }}",
|
|
200
223
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} e {{ lastUser }}",
|
|
201
224
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} e {{ secondUser }}",
|
package/dist/i18n/ru.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "Разрешить доступ к микрофону",
|
|
7
7
|
"Allow comments": "Разрешить комментарии",
|
|
8
8
|
"Allow option suggestion": "Разрешить предложение вариантов",
|
|
9
|
+
"Also send as a direct message": "Также отправить как личное сообщение",
|
|
10
|
+
"Also send in channel": "Также отправить в канал",
|
|
9
11
|
"An error has occurred during recording": "Произошла ошибка во время записи",
|
|
10
12
|
"An error has occurred during the recording processing": "Произошла ошибка во время обработки записи",
|
|
11
13
|
"Anonymous": "Аноним",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "Aрхивировать",
|
|
14
16
|
"Ask a question": "Задать вопрос",
|
|
15
17
|
"Attach files": "Прикрепить файлы",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "Загрузка вложения заблокирована из-за {{reason}}",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "Загрузка вложения не удалась из-за {{reason}}",
|
|
16
20
|
"Cancel": "Отмена",
|
|
17
21
|
"Cannot seek in the recording": "Невозможно осуществить поиск в записи",
|
|
18
22
|
"Channel Missing": "Канал не найден",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "Скачать вложение {{ name }}",
|
|
28
32
|
"Drag your files here": "Перетащите ваши файлы сюда",
|
|
29
33
|
"Drag your files here to add to your post": "Перетащите ваши файлы сюда, чтобы добавить их в ваш пост",
|
|
34
|
+
"Due since {{ dueSince }}": "Просрочено с {{ dueSince }}",
|
|
35
|
+
"Due {{ timeLeft }}": "Просрочено в {{ timeLeft }}",
|
|
30
36
|
"Edit Message": "Редактировать сообщение",
|
|
31
37
|
"Edit message request failed": "Не удалось изменить запрос сообщения",
|
|
32
38
|
"Edited": "Отредактировано",
|
|
@@ -50,6 +56,8 @@
|
|
|
50
56
|
"Error uploading image": "Ошибка загрузки изображения",
|
|
51
57
|
"Error · Unsent": "Ошибка · Не отправлено",
|
|
52
58
|
"Error: {{ errorMessage }}": "Ошибка: {{ errorMessage }}",
|
|
59
|
+
"Failed to create the poll": "Не удалось создать опрос",
|
|
60
|
+
"Failed to create the poll due to {{reason}}": "Не удалось создать опрос из-за {{reason}}",
|
|
53
61
|
"Failed to jump to the first unread message": "Не удалось перейти к первому непрочитанному сообщению",
|
|
54
62
|
"Failed to mark channel as read": "Не удалось пометить канал как прочитанный",
|
|
55
63
|
"Failed to play the recording": "Не удалось воспроизвести запись",
|
|
@@ -93,8 +101,12 @@
|
|
|
93
101
|
"Question": "Вопрос",
|
|
94
102
|
"Quote": "Цитировать",
|
|
95
103
|
"Recording format is not supported and cannot be reproduced": "Формат записи не поддерживается и не может быть воспроизведен",
|
|
104
|
+
"Remind Me": "Напомнить мне",
|
|
105
|
+
"Remove reminder": "Удалить напоминание",
|
|
96
106
|
"Reply": "Ответить",
|
|
97
107
|
"Reply to Message": "Ответить на сообщение",
|
|
108
|
+
"Save for later": "Сохранить на потом",
|
|
109
|
+
"Saved for later": "Сохранено на потом",
|
|
98
110
|
"Search": "Поиск",
|
|
99
111
|
"Searching...": "Ищем...",
|
|
100
112
|
"See all options ({{count}})_few": "Посмотреть все варианты ({{count}})",
|
|
@@ -122,6 +134,8 @@
|
|
|
122
134
|
"This message did not meet our content guidelines": "Сообщение не соответствует правилам",
|
|
123
135
|
"This message was deleted...": "Сообщение было удалено...",
|
|
124
136
|
"Thread": "Ветка",
|
|
137
|
+
"Thread has not been found": "Ветка не найдена",
|
|
138
|
+
"Thread reply": "Ответ в ветке",
|
|
125
139
|
"To start recording, allow the camera access in your browser": "Для начала записи разрешите доступ к камере в вашем браузере",
|
|
126
140
|
"To start recording, allow the microphone access in your browser": "Для начала записи разрешите доступ к микрофону в вашем браузере",
|
|
127
141
|
"Type a number from 2 to 10": "Введите число от 2 до 10",
|
|
@@ -164,6 +178,7 @@
|
|
|
164
178
|
"aria/Open Reaction Selector": "Открыть селектор реакций",
|
|
165
179
|
"aria/Open Thread": "Открыть тему",
|
|
166
180
|
"aria/Reaction list": "Список реакций",
|
|
181
|
+
"aria/Remind Me Options": "Параметры напоминания",
|
|
167
182
|
"aria/Remove attachment": "Удалить вложение",
|
|
168
183
|
"aria/Retry upload": "Повторить загрузку",
|
|
169
184
|
"aria/Search results": "Результаты поиска",
|
|
@@ -172,11 +187,14 @@
|
|
|
172
187
|
"aria/Stop AI Generation": "Остановить генерацию ИИ",
|
|
173
188
|
"ban-command-args": "[@имяпользователя] [текст]",
|
|
174
189
|
"ban-command-description": "Заблокировать пользователя",
|
|
190
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
191
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
175
192
|
"giphy-command-args": "[текст]",
|
|
176
193
|
"giphy-command-description": "Опубликовать случайную GIF-анимацию в канале",
|
|
177
194
|
"live": "В прямом эфире",
|
|
178
195
|
"mute-command-args": "[@имяпользователя]",
|
|
179
196
|
"mute-command-description": "Выключить микрофон у пользователя",
|
|
197
|
+
"network error": "ошибка сети",
|
|
180
198
|
"replyCount_few": "{{ count }} ответов",
|
|
181
199
|
"replyCount_many": "{{ count }} ответов",
|
|
182
200
|
"replyCount_one": "1 ответ",
|
|
@@ -188,20 +206,25 @@
|
|
|
188
206
|
"searchResultsCount_many": "{{ count }} результатов",
|
|
189
207
|
"searchResultsCount_one": "1 результат",
|
|
190
208
|
"searchResultsCount_other": "{{ count }} результатов",
|
|
209
|
+
"size limit": "ограничение размера",
|
|
191
210
|
"this content could not be displayed": "Этот контент не может быть отображен в данный момент",
|
|
192
211
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
193
212
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
194
213
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
195
214
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
215
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
196
216
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
217
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
197
218
|
"unban-command-args": "[@имяпользователя]",
|
|
198
219
|
"unban-command-description": "Разблокировать пользователя",
|
|
220
|
+
"unknown error": "неизвестная ошибка",
|
|
199
221
|
"unmute-command-args": "[@имяпользователя]",
|
|
200
222
|
"unmute-command-description": "Включить микрофон у пользователя",
|
|
201
223
|
"unreadMessagesSeparatorText_few": "1 непрочитанное сообщения",
|
|
202
224
|
"unreadMessagesSeparatorText_many": "{{count}} непрочитанных сообщений",
|
|
203
225
|
"unreadMessagesSeparatorText_one": "1 непрочитанное сообщение",
|
|
204
226
|
"unreadMessagesSeparatorText_other": "{{count}} непрочитанных сообщений",
|
|
227
|
+
"unsupported file type": "неподдерживаемый тип файла",
|
|
205
228
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} и {{ moreCount }} еще",
|
|
206
229
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} и {{ lastUser }}",
|
|
207
230
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} и {{ secondUser }}",
|
package/dist/i18n/tr.json
CHANGED
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"Allow access to microphone": "Mikrofona erişime izin ver",
|
|
7
7
|
"Allow comments": "Yorumlara izin ver",
|
|
8
8
|
"Allow option suggestion": "Seçenek önerisine izin ver",
|
|
9
|
+
"Also send as a direct message": "Ayrıca doğrudan mesaj olarak gönder",
|
|
10
|
+
"Also send in channel": "Ayrıca kanala gönder",
|
|
9
11
|
"An error has occurred during recording": "Kayıt sırasında bir hata oluştu",
|
|
10
12
|
"An error has occurred during the recording processing": "Kayıt işlemi sırasında bir hata oluştu",
|
|
11
13
|
"Anonymous": "Anonim",
|
|
@@ -13,6 +15,8 @@
|
|
|
13
15
|
"Archive": "Arşivle",
|
|
14
16
|
"Ask a question": "Bir soru sor",
|
|
15
17
|
"Attach files": "Dosya ekle",
|
|
18
|
+
"Attachment upload blocked due to {{reason}}": "{{reason}} nedeniyle ek yükleme engellendi",
|
|
19
|
+
"Attachment upload failed due to {{reason}}": "{{reason}} nedeniyle ek yükleme başarısız oldu",
|
|
16
20
|
"Cancel": "İptal",
|
|
17
21
|
"Cannot seek in the recording": "Kayıtta arama yapılamıyor",
|
|
18
22
|
"Channel Missing": "Kanal bulunamıyor",
|
|
@@ -27,6 +31,8 @@
|
|
|
27
31
|
"Download attachment {{ name }}": "Ek {{ name }}'i indir",
|
|
28
32
|
"Drag your files here": "Dosyalarınızı buraya sürükleyin",
|
|
29
33
|
"Drag your files here to add to your post": "Gönderinize eklemek için dosyalarınızı buraya sürükleyin",
|
|
34
|
+
"Due since {{ dueSince }}": "{{ dueSince }}'den beri süresi dolmuş",
|
|
35
|
+
"Due {{ timeLeft }}": "{{ timeLeft }} içinde süresi dolacak",
|
|
30
36
|
"Edit Message": "Mesajı Düzenle",
|
|
31
37
|
"Edit message request failed": "Mesaj düzenleme isteği başarısız oldu",
|
|
32
38
|
"Edited": "Düzenlendi",
|
|
@@ -50,6 +56,8 @@
|
|
|
50
56
|
"Error uploading image": "Resmi yüklerken hata",
|
|
51
57
|
"Error · Unsent": "Hata · Gönderilemedi",
|
|
52
58
|
"Error: {{ errorMessage }}": "Hata: {{ errorMessage }}",
|
|
59
|
+
"Failed to create the poll": "Anket oluşturulurken hata oluştu",
|
|
60
|
+
"Failed to create the poll due to {{reason}}": "{{reason}} nedeniyle anket oluşturulamadı",
|
|
53
61
|
"Failed to jump to the first unread message": "İlk okunmamış mesaja atlamada hata oluştu",
|
|
54
62
|
"Failed to mark channel as read": "Kanalı okundu olarak işaretleme başarısız oldu",
|
|
55
63
|
"Failed to play the recording": "Kayıt oynatılamadı",
|
|
@@ -93,8 +101,12 @@
|
|
|
93
101
|
"Question": "Soru",
|
|
94
102
|
"Quote": "Alıntı",
|
|
95
103
|
"Recording format is not supported and cannot be reproduced": "Kayıt formatı desteklenmiyor ve çoğaltılamıyor",
|
|
104
|
+
"Remind Me": "Hatırlat",
|
|
105
|
+
"Remove reminder": "Hatırlatıcıyı kaldır",
|
|
96
106
|
"Reply": "Cevapla",
|
|
97
107
|
"Reply to Message": "Mesaja Cevapla",
|
|
108
|
+
"Save for later": "Daha sonra kaydet",
|
|
109
|
+
"Saved for later": "Daha sonra kaydedildi",
|
|
98
110
|
"Search": "Arama",
|
|
99
111
|
"Searching...": "Aranıyor...",
|
|
100
112
|
"See all options ({{count}})_one": "Tüm seçenekleri göster ({{count}})",
|
|
@@ -118,6 +130,8 @@
|
|
|
118
130
|
"This message did not meet our content guidelines": "Bu mesaj içerik yönergelerimize uygun değil",
|
|
119
131
|
"This message was deleted...": "Bu mesaj silindi...",
|
|
120
132
|
"Thread": "Konu",
|
|
133
|
+
"Thread has not been found": "Konu bulunamadı",
|
|
134
|
+
"Thread reply": "Konu yanıtı",
|
|
121
135
|
"To start recording, allow the camera access in your browser": "Kayıt yapmaya başlamak için tarayıcınızda kameraya erişime izin verin",
|
|
122
136
|
"To start recording, allow the microphone access in your browser": "Kayıt yapmaya başlamak için tarayıcınızda mikrofona erişime izin verin",
|
|
123
137
|
"Type a number from 2 to 10": "2 ile 10 arasında bir sayı yazın",
|
|
@@ -158,6 +172,7 @@
|
|
|
158
172
|
"aria/Open Reaction Selector": "Tepki Seçiciyi Aç",
|
|
159
173
|
"aria/Open Thread": "Konuyu Aç",
|
|
160
174
|
"aria/Reaction list": "Tepki listesi",
|
|
175
|
+
"aria/Remind Me Options": "Hatırlatma seçenekleri",
|
|
161
176
|
"aria/Remove attachment": "Eki kaldır",
|
|
162
177
|
"aria/Retry upload": "Yüklemeyi Tekrar Dene",
|
|
163
178
|
"aria/Search results": "Arama sonuçları",
|
|
@@ -166,11 +181,14 @@
|
|
|
166
181
|
"aria/Stop AI Generation": "Yapay Zeka Üretimini Durdur",
|
|
167
182
|
"ban-command-args": "[@kullanıcıadı] [metin]",
|
|
168
183
|
"ban-command-description": "Bir kullanıcıyı yasakla",
|
|
184
|
+
"duration/Message reminder": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
185
|
+
"duration/Remind Me": "{{ milliseconds | durationFormatter(withSuffix: true) }}",
|
|
169
186
|
"giphy-command-args": "[metin]",
|
|
170
187
|
"giphy-command-description": "Rastgele bir gif'i kanala gönder",
|
|
171
188
|
"live": "canlı",
|
|
172
189
|
"mute-command-args": "[@kullanıcıadı]",
|
|
173
190
|
"mute-command-description": "Bir kullanıcının sesini kapat",
|
|
191
|
+
"network error": "ağ hatası",
|
|
174
192
|
"replyCount_one": "1 cevap",
|
|
175
193
|
"replyCount_other": "{{ count }} cevap",
|
|
176
194
|
"search-results-header-filter-source-button-label--channels": "kanallar",
|
|
@@ -178,18 +196,23 @@
|
|
|
178
196
|
"search-results-header-filter-source-button-label--users": "kullanıcılar",
|
|
179
197
|
"searchResultsCount_one": "1 sonuç",
|
|
180
198
|
"searchResultsCount_other": "{{ count }} sonuç",
|
|
199
|
+
"size limit": "boyut sınırı",
|
|
181
200
|
"this content could not be displayed": "bu içerik gösterilemiyor",
|
|
182
201
|
"timestamp/DateSeparator": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
183
202
|
"timestamp/MessageTimestamp": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
184
203
|
"timestamp/PollVote": "{{ timestamp | timestampFormatter(format: MMM D [at] HH:mm) }}",
|
|
185
204
|
"timestamp/PollVoteTooltip": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
205
|
+
"timestamp/ReminderNotification": "{{ timestamp | timestampFormatter(calendar: true) }}",
|
|
186
206
|
"timestamp/SystemMessage": "{{ timestamp | timestampFormatter(format: dddd L) }}",
|
|
207
|
+
"translationBuilderTopic/notification": "{{value, notification}}",
|
|
187
208
|
"unban-command-args": "[@kullanıcıadı]",
|
|
188
209
|
"unban-command-description": "Bir kullanıcının yasağını kaldır",
|
|
210
|
+
"unknown error": "bilinmeyen hata",
|
|
189
211
|
"unmute-command-args": "[@kullanıcıadı]",
|
|
190
212
|
"unmute-command-description": "Bir kullanıcının sesini aç",
|
|
191
213
|
"unreadMessagesSeparatorText_one": "1 okunmamış mesaj",
|
|
192
214
|
"unreadMessagesSeparatorText_other": "{{count}} okunmamış mesaj",
|
|
215
|
+
"unsupported file type": "desteklenmeyen dosya türü",
|
|
193
216
|
"{{ commaSeparatedUsers }} and {{ moreCount }} more": "{{ commaSeparatedUsers }} ve {{ moreCount }} daha",
|
|
194
217
|
"{{ commaSeparatedUsers }}, and {{ lastUser }}": "{{ commaSeparatedUsers }} ve {{ lastUser }}",
|
|
195
218
|
"{{ firstUser }} and {{ secondUser }}": "{{ firstUser }} ve {{ secondUser }}",
|