stream-chat-react 12.11.1 → 12.12.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 +41 -26
- package/dist/components/Channel/channelState.d.ts +1 -1
- package/dist/components/Channel/channelState.js +2 -1
- package/dist/components/ChannelList/ChannelList.js +15 -9
- package/dist/components/ChannelPreview/ChannelPreview.d.ts +2 -2
- package/dist/components/ChannelPreview/ChannelPreview.js +3 -4
- package/dist/components/ChannelPreview/ChannelPreviewMessenger.d.ts +1 -1
- package/dist/components/ChannelSearch/SearchBar.js +7 -8
- package/dist/components/ChannelSearch/SearchResults.js +8 -7
- package/dist/components/Chat/Chat.d.ts +5 -2
- package/dist/components/Chat/Chat.js +12 -2
- package/dist/components/Chat/hooks/useChat.js +1 -1
- package/dist/components/Chat/hooks/useCreateChatContext.js +3 -1
- package/dist/components/InfiniteScrollPaginator/InfiniteScroll.d.ts +1 -1
- package/dist/components/InfiniteScrollPaginator/InfiniteScroll.js +1 -1
- package/dist/components/InfiniteScrollPaginator/InfiniteScrollPaginator.d.ts +1 -0
- package/dist/components/InfiniteScrollPaginator/InfiniteScrollPaginator.js +8 -2
- package/dist/components/MediaRecorder/classes/MediaRecorderController.d.ts +6 -1
- package/dist/components/MediaRecorder/classes/MediaRecorderController.js +6 -8
- package/dist/components/Message/renderText/renderText.d.ts +3 -3
- package/dist/components/Message/renderText/renderText.js +3 -3
- package/dist/context/ChatContext.d.ts +3 -1
- package/dist/context/ComponentContext.d.ts +23 -0
- package/dist/experimental/Search/Search.d.ts +12 -0
- package/dist/experimental/Search/Search.js +25 -0
- package/dist/experimental/Search/SearchBar/SearchBar.d.ts +2 -0
- package/dist/experimental/Search/SearchBar/SearchBar.js +56 -0
- package/dist/experimental/Search/SearchBar/index.d.ts +1 -0
- package/dist/experimental/Search/SearchBar/index.js +1 -0
- package/dist/experimental/Search/SearchContext.d.ts +23 -0
- package/dist/experimental/Search/SearchContext.js +10 -0
- package/dist/experimental/Search/SearchResults/SearchResultItem.d.ts +19 -0
- package/dist/experimental/Search/SearchResults/SearchResultItem.js +62 -0
- package/dist/experimental/Search/SearchResults/SearchResults.d.ts +3 -0
- package/dist/experimental/Search/SearchResults/SearchResults.js +21 -0
- package/dist/experimental/Search/SearchResults/SearchResultsHeader.d.ts +3 -0
- package/dist/experimental/Search/SearchResults/SearchResultsHeader.js +31 -0
- package/dist/experimental/Search/SearchResults/SearchResultsPresearch.d.ts +6 -0
- package/dist/experimental/Search/SearchResults/SearchResultsPresearch.js +6 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultList.d.ts +9 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultList.js +22 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultListFooter.d.ts +3 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultListFooter.js +16 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResults.d.ts +7 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResults.js +21 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsEmpty.d.ts +2 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsEmpty.js +6 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsHeader.d.ts +1 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsHeader.js +1 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsLoadingIndicator.d.ts +2 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsLoadingIndicator.js +8 -0
- package/dist/experimental/Search/SearchResults/index.d.ts +9 -0
- package/dist/experimental/Search/SearchResults/index.js +9 -0
- package/dist/experimental/Search/SearchSourceResultsContext.d.ts +13 -0
- package/dist/experimental/Search/SearchSourceResultsContext.js +10 -0
- package/dist/experimental/Search/hooks/index.d.ts +2 -0
- package/dist/experimental/Search/hooks/index.js +2 -0
- package/dist/experimental/Search/hooks/useSearchFocusedMessage.d.ts +2 -0
- package/dist/experimental/Search/hooks/useSearchFocusedMessage.js +8 -0
- package/dist/experimental/Search/hooks/useSearchQueriesInProgress.d.ts +6 -0
- package/dist/experimental/Search/hooks/useSearchQueriesInProgress.js +22 -0
- package/dist/experimental/Search/index.d.ts +5 -0
- package/dist/experimental/Search/index.js +5 -0
- package/dist/experimental/index.browser.cjs +11286 -301
- package/dist/experimental/index.browser.cjs.map +4 -4
- package/dist/experimental/index.d.ts +1 -0
- package/dist/experimental/index.js +1 -0
- package/dist/experimental/index.node.cjs +13176 -301
- package/dist/experimental/index.node.cjs.map +4 -4
- package/dist/i18n/Streami18n.d.ts +7 -0
- package/dist/i18n/de.json +7 -0
- package/dist/i18n/en.json +7 -0
- package/dist/i18n/es.json +7 -0
- package/dist/i18n/fr.json +8 -1
- package/dist/i18n/hi.json +7 -0
- package/dist/i18n/it.json +7 -0
- package/dist/i18n/ja.json +7 -0
- package/dist/i18n/ko.json +7 -0
- package/dist/i18n/nl.json +7 -0
- package/dist/i18n/pt.json +8 -1
- package/dist/i18n/ru.json +7 -0
- package/dist/i18n/tr.json +7 -0
- package/dist/index.browser.cjs +15820 -14852
- package/dist/index.browser.cjs.map +4 -4
- package/dist/index.node.cjs +17734 -16888
- package/dist/index.node.cjs.map +4 -4
- package/package.json +6 -7
|
@@ -131,6 +131,7 @@ export declare class Streami18n {
|
|
|
131
131
|
[key: string]: {
|
|
132
132
|
"Add a comment": string;
|
|
133
133
|
"Add an option": string;
|
|
134
|
+
"All results loaded": string;
|
|
134
135
|
"Allow access to camera": string;
|
|
135
136
|
"Allow access to microphone": string;
|
|
136
137
|
"Allow comments": string;
|
|
@@ -238,6 +239,7 @@ export declare class Streami18n {
|
|
|
238
239
|
Shuffle: string;
|
|
239
240
|
"Slow Mode ON": string;
|
|
240
241
|
"Some of the files will not be accepted": string;
|
|
242
|
+
"Start typing to search": string;
|
|
241
243
|
Submit: string;
|
|
242
244
|
"Suggest an option": string;
|
|
243
245
|
"Thinking...": string;
|
|
@@ -286,11 +288,16 @@ export declare class Streami18n {
|
|
|
286
288
|
"aria/Reaction list": string;
|
|
287
289
|
"aria/Remove attachment": string;
|
|
288
290
|
"aria/Retry upload": string;
|
|
291
|
+
"aria/Search results": string;
|
|
292
|
+
"aria/Search results header filter button": string;
|
|
289
293
|
"aria/Send": string;
|
|
290
294
|
"aria/Stop AI Generation": string;
|
|
291
295
|
live: string;
|
|
292
296
|
replyCount_one: string;
|
|
293
297
|
replyCount_other: string;
|
|
298
|
+
"search-results-header-filter-source-button-label--channels": string;
|
|
299
|
+
"search-results-header-filter-source-button-label--messages": string;
|
|
300
|
+
"search-results-header-filter-source-button-label--users": string;
|
|
294
301
|
searchResultsCount_one: string;
|
|
295
302
|
searchResultsCount_other: string;
|
|
296
303
|
"this content could not be displayed": string;
|
package/dist/i18n/de.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "Einen Kommentar hinzufügen",
|
|
3
3
|
"Add an option": "Eine Option hinzufügen",
|
|
4
|
+
"All results loaded": "Alle Ergebnisse geladen",
|
|
4
5
|
"Allow access to camera": "Zugriff auf Kamera erlauben",
|
|
5
6
|
"Allow access to microphone": "Zugriff auf Mikrofon erlauben",
|
|
6
7
|
"Allow comments": "Kommentare erlauben",
|
|
@@ -108,6 +109,7 @@
|
|
|
108
109
|
"Shuffle": "Mischen",
|
|
109
110
|
"Slow Mode ON": "Langsamer Modus EIN",
|
|
110
111
|
"Some of the files will not be accepted": "Einige der Dateien werden nicht akzeptiert",
|
|
112
|
+
"Start typing to search": "Tippen Sie, um zu suchen",
|
|
111
113
|
"Submit": "Absenden",
|
|
112
114
|
"Suggest an option": "Eine Option vorschlagen",
|
|
113
115
|
"Thinking...": "Denken...",
|
|
@@ -156,6 +158,8 @@
|
|
|
156
158
|
"aria/Reaction list": "Reaktionsliste",
|
|
157
159
|
"aria/Remove attachment": "Anhang entfernen",
|
|
158
160
|
"aria/Retry upload": "Upload erneut versuchen",
|
|
161
|
+
"aria/Search results": "Suchergebnisse",
|
|
162
|
+
"aria/Search results header filter button": "Suchergebnisse-Kopfzeilen-Filterbutton",
|
|
159
163
|
"aria/Send": "Senden",
|
|
160
164
|
"aria/Stop AI Generation": "KI-Generierung stoppen",
|
|
161
165
|
"ban-command-args": "[@Benutzername] [Text]",
|
|
@@ -167,6 +171,9 @@
|
|
|
167
171
|
"mute-command-description": "Stummschalten eines Benutzers",
|
|
168
172
|
"replyCount_one": "1 Antwort",
|
|
169
173
|
"replyCount_other": "{{ count }} Antworten",
|
|
174
|
+
"search-results-header-filter-source-button-label--channels": "Kanäle",
|
|
175
|
+
"search-results-header-filter-source-button-label--messages": "Nachrichten",
|
|
176
|
+
"search-results-header-filter-source-button-label--users": "Benutzer",
|
|
170
177
|
"searchResultsCount_one": "1 Ergebnis",
|
|
171
178
|
"searchResultsCount_other": "{{ count }} Ergebnisse",
|
|
172
179
|
"this content could not be displayed": "Dieser Inhalt konnte nicht angezeigt werden",
|
package/dist/i18n/en.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "Add a comment",
|
|
3
3
|
"Add an option": "Add an option",
|
|
4
|
+
"All results loaded": "All results loaded",
|
|
4
5
|
"Allow access to camera": "Allow access to camera",
|
|
5
6
|
"Allow access to microphone": "Allow access to microphone",
|
|
6
7
|
"Allow comments": "Allow comments",
|
|
@@ -108,6 +109,7 @@
|
|
|
108
109
|
"Shuffle": "Shuffle",
|
|
109
110
|
"Slow Mode ON": "Slow Mode ON",
|
|
110
111
|
"Some of the files will not be accepted": "Some of the files will not be accepted",
|
|
112
|
+
"Start typing to search": "Start typing to search",
|
|
111
113
|
"Submit": "Submit",
|
|
112
114
|
"Suggest an option": "Suggest an option",
|
|
113
115
|
"Thinking...": "Thinking...",
|
|
@@ -156,11 +158,16 @@
|
|
|
156
158
|
"aria/Reaction list": "Reaction list",
|
|
157
159
|
"aria/Remove attachment": "Remove attachment",
|
|
158
160
|
"aria/Retry upload": "Retry upload",
|
|
161
|
+
"aria/Search results": "Search results",
|
|
162
|
+
"aria/Search results header filter button": "Search results header filter button",
|
|
159
163
|
"aria/Send": "Send",
|
|
160
164
|
"aria/Stop AI Generation": "Stop AI Generation",
|
|
161
165
|
"live": "live",
|
|
162
166
|
"replyCount_one": "1 reply",
|
|
163
167
|
"replyCount_other": "{{ count }} replies",
|
|
168
|
+
"search-results-header-filter-source-button-label--channels": "channels",
|
|
169
|
+
"search-results-header-filter-source-button-label--messages": "messages",
|
|
170
|
+
"search-results-header-filter-source-button-label--users": "users",
|
|
164
171
|
"searchResultsCount_one": "1 result",
|
|
165
172
|
"searchResultsCount_other": "{{ count }} results",
|
|
166
173
|
"this content could not be displayed": "this content could not be displayed",
|
package/dist/i18n/es.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "Agregar un comentario",
|
|
3
3
|
"Add an option": "Agregar una opción",
|
|
4
|
+
"All results loaded": "Todos los resultados cargados",
|
|
4
5
|
"Allow access to camera": "Permitir acceso a la cámara",
|
|
5
6
|
"Allow access to microphone": "Permitir acceso al micrófono",
|
|
6
7
|
"Allow comments": "Permitir comentarios",
|
|
@@ -110,6 +111,7 @@
|
|
|
110
111
|
"Shuffle": "Mezclar",
|
|
111
112
|
"Slow Mode ON": "Modo lento activado",
|
|
112
113
|
"Some of the files will not be accepted": "Algunos archivos no serán aceptados",
|
|
114
|
+
"Start typing to search": "Empieza a escribir para buscar",
|
|
113
115
|
"Submit": "Enviar",
|
|
114
116
|
"Suggest an option": "Sugerir una opción",
|
|
115
117
|
"Thinking...": "Pensando...",
|
|
@@ -159,6 +161,8 @@
|
|
|
159
161
|
"aria/Reaction list": "Lista de reacciones",
|
|
160
162
|
"aria/Remove attachment": "Eliminar adjunto",
|
|
161
163
|
"aria/Retry upload": "Reintentar carga",
|
|
164
|
+
"aria/Search results": "Resultados de búsqueda",
|
|
165
|
+
"aria/Search results header filter button": "Botón de filtro del encabezado de resultados de búsqueda",
|
|
162
166
|
"aria/Send": "Enviar",
|
|
163
167
|
"aria/Stop AI Generation": "Detener generación de IA",
|
|
164
168
|
"ban-command-args": "[@usuario] [texto]",
|
|
@@ -171,6 +175,9 @@
|
|
|
171
175
|
"replyCount_many": "{{ count }} respuestas",
|
|
172
176
|
"replyCount_one": "1 respuesta",
|
|
173
177
|
"replyCount_other": "{{ count }} respuestas",
|
|
178
|
+
"search-results-header-filter-source-button-label--channels": "canales",
|
|
179
|
+
"search-results-header-filter-source-button-label--messages": "mensajes",
|
|
180
|
+
"search-results-header-filter-source-button-label--users": "usuarios",
|
|
174
181
|
"searchResultsCount_many": "{{ count }} resultados",
|
|
175
182
|
"searchResultsCount_one": "1 resultado",
|
|
176
183
|
"searchResultsCount_other": "{{ count }} resultados",
|
package/dist/i18n/fr.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "Ajouter un commentaire",
|
|
3
3
|
"Add an option": "Ajouter une option",
|
|
4
|
+
"All results loaded": "Tous les résultats sont chargés",
|
|
4
5
|
"Allow access to camera": "Autoriser l'accès à la caméra",
|
|
5
6
|
"Allow access to microphone": "Autoriser l'accès au microphone",
|
|
6
7
|
"Allow comments": "Autoriser les commentaires",
|
|
@@ -43,7 +44,7 @@
|
|
|
43
44
|
"Error removing message pin": "Erreur lors du retrait de l'épinglage du message",
|
|
44
45
|
"Error reproducing the recording": "Erreur lors de la reproduction de l'enregistrement",
|
|
45
46
|
"Error starting recording": "Erreur lors du démarrage de l'enregistrement",
|
|
46
|
-
"Error unmuting a user ...": "Erreur lors du démarrage de la sourdine d'un utilisateur...",
|
|
47
|
+
"Error unmuting a user ...": "Erreur lors du démarrage de la sourdine d'un utilisateur ...",
|
|
47
48
|
"Error uploading attachment": "Erreur lors du téléchargement de la pièce jointe",
|
|
48
49
|
"Error uploading file": "Erreur lors du téléchargement du fichier",
|
|
49
50
|
"Error uploading image": "Erreur lors de l'envoi de l'image",
|
|
@@ -110,6 +111,7 @@
|
|
|
110
111
|
"Shuffle": "Mélanger",
|
|
111
112
|
"Slow Mode ON": "Mode lent activé",
|
|
112
113
|
"Some of the files will not be accepted": "Certains fichiers ne seront pas acceptés",
|
|
114
|
+
"Start typing to search": "Commencez à taper pour rechercher",
|
|
113
115
|
"Submit": "Envoyer",
|
|
114
116
|
"Suggest an option": "Suggérer une option",
|
|
115
117
|
"Thinking...": "Réflexion...",
|
|
@@ -159,6 +161,8 @@
|
|
|
159
161
|
"aria/Reaction list": "Liste des réactions",
|
|
160
162
|
"aria/Remove attachment": "Supprimer la pièce jointe",
|
|
161
163
|
"aria/Retry upload": "Réessayer le téléchargement",
|
|
164
|
+
"aria/Search results": "Résultats de recherche",
|
|
165
|
+
"aria/Search results header filter button": "Bouton de filtre d'en-tête des résultats de recherche",
|
|
162
166
|
"aria/Send": "Envoyer",
|
|
163
167
|
"aria/Stop AI Generation": "Arrêter la génération d'IA",
|
|
164
168
|
"ban-command-args": "[@nomdutilisateur] [texte]",
|
|
@@ -171,6 +175,9 @@
|
|
|
171
175
|
"replyCount_many": "{{ count }} réponses",
|
|
172
176
|
"replyCount_one": "1 réponse",
|
|
173
177
|
"replyCount_other": "{{ count }} réponses",
|
|
178
|
+
"search-results-header-filter-source-button-label--channels": "canaux",
|
|
179
|
+
"search-results-header-filter-source-button-label--messages": "messages",
|
|
180
|
+
"search-results-header-filter-source-button-label--users": "utilisateurs",
|
|
174
181
|
"searchResultsCount_many": "{{ count }} résultats",
|
|
175
182
|
"searchResultsCount_one": "1 résultat",
|
|
176
183
|
"searchResultsCount_other": "{{ count }} résultats",
|
package/dist/i18n/hi.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "एक टिप्पणी जोड़ें",
|
|
3
3
|
"Add an option": "एक विकल्प जोड़ें",
|
|
4
|
+
"All results loaded": "सभी परिणाम लोड हो गए",
|
|
4
5
|
"Allow access to camera": "कैमरा तक पहुँच दें",
|
|
5
6
|
"Allow access to microphone": "माइक्रोफ़ोन तक पहुँच दें",
|
|
6
7
|
"Allow comments": "टिप्पणियाँ की अनुमति दें",
|
|
@@ -109,6 +110,7 @@
|
|
|
109
110
|
"Shuffle": "मिश्रित करें",
|
|
110
111
|
"Slow Mode ON": "स्लो मोड ऑन",
|
|
111
112
|
"Some of the files will not be accepted": "कुछ फ़ाइलें स्वीकार नहीं की जाएंगी",
|
|
113
|
+
"Start typing to search": "खोजने के लिए टाइप करना शुरू करें",
|
|
112
114
|
"Submit": "जमा करें",
|
|
113
115
|
"Suggest an option": "एक विकल्प सुझाव दें",
|
|
114
116
|
"Thinking...": "सोच रहा है...",
|
|
@@ -157,6 +159,8 @@
|
|
|
157
159
|
"aria/Reaction list": "प्रतिक्रिया सूची",
|
|
158
160
|
"aria/Remove attachment": "संलग्नक हटाएं",
|
|
159
161
|
"aria/Retry upload": "अपलोड पुनः प्रयास करें",
|
|
162
|
+
"aria/Search results": "खोज परिणाम",
|
|
163
|
+
"aria/Search results header filter button": "खोज परिणाम हेडर फ़िल्टर बटन",
|
|
160
164
|
"aria/Send": "भेजें",
|
|
161
165
|
"aria/Stop AI Generation": "एआई जनरेशन रोकें",
|
|
162
166
|
"ban-command-args": "[@उपयोगकर्तनाम] [पाठ]",
|
|
@@ -168,6 +172,9 @@
|
|
|
168
172
|
"mute-command-description": "एक उपयोगकर्ता को म्यूट करें",
|
|
169
173
|
"replyCount_one": "1 रिप्लाई",
|
|
170
174
|
"replyCount_other": "{{ count }} रिप्लाई",
|
|
175
|
+
"search-results-header-filter-source-button-label--channels": "चैनल्स",
|
|
176
|
+
"search-results-header-filter-source-button-label--messages": "संदेश",
|
|
177
|
+
"search-results-header-filter-source-button-label--users": "उपयोगकर्ता",
|
|
171
178
|
"searchResultsCount_one": "1 परिणाम",
|
|
172
179
|
"searchResultsCount_other": "{{ count }} परिणाम",
|
|
173
180
|
"this content could not be displayed": "यह कॉन्टेंट लोड नहीं हो पाया",
|
package/dist/i18n/it.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "Aggiungi un commento",
|
|
3
3
|
"Add an option": "Aggiungi un'opzione",
|
|
4
|
+
"All results loaded": "Tutti i risultati caricati",
|
|
4
5
|
"Allow access to camera": "Consenti l'accesso alla fotocamera",
|
|
5
6
|
"Allow access to microphone": "Consenti l'accesso al microfono",
|
|
6
7
|
"Allow comments": "Consenti i commenti",
|
|
@@ -110,6 +111,7 @@
|
|
|
110
111
|
"Shuffle": "Mescolare",
|
|
111
112
|
"Slow Mode ON": "Modalità lenta attivata",
|
|
112
113
|
"Some of the files will not be accepted": "Alcuni dei file non saranno accettati",
|
|
114
|
+
"Start typing to search": "Inizia a digitare per cercare",
|
|
113
115
|
"Submit": "Invia",
|
|
114
116
|
"Suggest an option": "Suggerisci un'opzione",
|
|
115
117
|
"Thinking...": "Pensando...",
|
|
@@ -159,6 +161,8 @@
|
|
|
159
161
|
"aria/Reaction list": "Elenco delle reazioni",
|
|
160
162
|
"aria/Remove attachment": "Rimuovi allegato",
|
|
161
163
|
"aria/Retry upload": "Riprova caricamento",
|
|
164
|
+
"aria/Search results": "Risultati della ricerca",
|
|
165
|
+
"aria/Search results header filter button": "Pulsante filtro intestazione risultati ricerca",
|
|
162
166
|
"aria/Send": "Invia",
|
|
163
167
|
"aria/Stop AI Generation": "Interrompi generazione IA",
|
|
164
168
|
"ban-command-args": "[@nomeutente] [testo]",
|
|
@@ -171,6 +175,9 @@
|
|
|
171
175
|
"replyCount_many": "{{ count }} risposte",
|
|
172
176
|
"replyCount_one": "Una risposta",
|
|
173
177
|
"replyCount_other": "{{ count }} risposte",
|
|
178
|
+
"search-results-header-filter-source-button-label--channels": "canali",
|
|
179
|
+
"search-results-header-filter-source-button-label--messages": "messaggi",
|
|
180
|
+
"search-results-header-filter-source-button-label--users": "utenti",
|
|
174
181
|
"searchResultsCount_many": "{{ count }} risultati",
|
|
175
182
|
"searchResultsCount_one": "1 risultato",
|
|
176
183
|
"searchResultsCount_other": "{{ count }} risultati",
|
package/dist/i18n/ja.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "コメントを追加",
|
|
3
3
|
"Add an option": "オプションを追加",
|
|
4
|
+
"All results loaded": "すべての結果が読み込まれました",
|
|
4
5
|
"Allow access to camera": "カメラへのアクセスを許可する",
|
|
5
6
|
"Allow access to microphone": "マイクロフォンへのアクセスを許可する",
|
|
6
7
|
"Allow comments": "コメントを許可",
|
|
@@ -106,6 +107,7 @@
|
|
|
106
107
|
"Shuffle": "シャッフル",
|
|
107
108
|
"Slow Mode ON": "スローモードオン",
|
|
108
109
|
"Some of the files will not be accepted": "一部のファイルは受け付けられません",
|
|
110
|
+
"Start typing to search": "検索するには入力を開始してください",
|
|
109
111
|
"Submit": "送信",
|
|
110
112
|
"Suggest an option": "オプションを提案",
|
|
111
113
|
"Thinking...": "考え中...",
|
|
@@ -153,6 +155,8 @@
|
|
|
153
155
|
"aria/Reaction list": "リアクション一覧",
|
|
154
156
|
"aria/Remove attachment": "添付ファイルを削除",
|
|
155
157
|
"aria/Retry upload": "アップロードを再試行",
|
|
158
|
+
"aria/Search results": "検索結果",
|
|
159
|
+
"aria/Search results header filter button": "検索結果ヘッダーフィルターボタン",
|
|
156
160
|
"aria/Send": "送信",
|
|
157
161
|
"aria/Stop AI Generation": "AI生成を停止",
|
|
158
162
|
"ban-command-args": "[@ユーザ名] [テキスト]",
|
|
@@ -164,6 +168,9 @@
|
|
|
164
168
|
"mute-command-description": "ユーザーをミュートする",
|
|
165
169
|
"replyCount_one": "1件の返信",
|
|
166
170
|
"replyCount_other": "{{ count }} 返信",
|
|
171
|
+
"search-results-header-filter-source-button-label--channels": "チャンネル",
|
|
172
|
+
"search-results-header-filter-source-button-label--messages": "メッセージ",
|
|
173
|
+
"search-results-header-filter-source-button-label--users": "ユーザー",
|
|
167
174
|
"searchResultsCount_one": "1件の結果",
|
|
168
175
|
"searchResultsCount_other": "{{ count }}件の結果",
|
|
169
176
|
"this content could not be displayed": "このコンテンツは表示できませんでした",
|
package/dist/i18n/ko.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "댓글 추가",
|
|
3
3
|
"Add an option": "옵션 추가",
|
|
4
|
+
"All results loaded": "모든 결과가 로드되었습니다",
|
|
4
5
|
"Allow access to camera": "카메라에 대한 액세스 허용",
|
|
5
6
|
"Allow access to microphone": "마이크로폰에 대한 액세스 허용",
|
|
6
7
|
"Allow comments": "댓글 허용",
|
|
@@ -106,6 +107,7 @@
|
|
|
106
107
|
"Shuffle": "셔플",
|
|
107
108
|
"Slow Mode ON": "슬로우 모드 켜짐",
|
|
108
109
|
"Some of the files will not be accepted": "일부 파일은 허용되지 않을 수 있습니다",
|
|
110
|
+
"Start typing to search": "검색하려면 입력을 시작하세요",
|
|
109
111
|
"Submit": "제출",
|
|
110
112
|
"Suggest an option": "옵션 제안",
|
|
111
113
|
"Thinking...": "생각 중...",
|
|
@@ -153,6 +155,8 @@
|
|
|
153
155
|
"aria/Reaction list": "반응 목록",
|
|
154
156
|
"aria/Remove attachment": "첨부 파일 제거",
|
|
155
157
|
"aria/Retry upload": "업로드 다시 시도",
|
|
158
|
+
"aria/Search results": "검색 결과",
|
|
159
|
+
"aria/Search results header filter button": "검색 결과 헤더 필터 버튼",
|
|
156
160
|
"aria/Send": "보내기",
|
|
157
161
|
"aria/Stop AI Generation": "AI 생성 중지",
|
|
158
162
|
"ban-command-args": "[@사용자이름] [텍스트]",
|
|
@@ -164,6 +168,9 @@
|
|
|
164
168
|
"mute-command-description": "사용자 음소거",
|
|
165
169
|
"replyCount_one": "답장 1개",
|
|
166
170
|
"replyCount_other": "{{ count }} 답장",
|
|
171
|
+
"search-results-header-filter-source-button-label--channels": "채널",
|
|
172
|
+
"search-results-header-filter-source-button-label--messages": "메시지",
|
|
173
|
+
"search-results-header-filter-source-button-label--users": "사용자",
|
|
167
174
|
"searchResultsCount_one": "1개의 결과",
|
|
168
175
|
"searchResultsCount_other": "{{ count }}개 결과",
|
|
169
176
|
"this content could not be displayed": "이 콘텐츠를 표시할 수 없습니다",
|
package/dist/i18n/nl.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "Voeg een opmerking toe",
|
|
3
3
|
"Add an option": "Voeg een optie toe",
|
|
4
|
+
"All results loaded": "Alle resultaten geladen",
|
|
4
5
|
"Allow access to camera": "Toegang tot camera toestaan",
|
|
5
6
|
"Allow access to microphone": "Toegang tot microfoon toestaan",
|
|
6
7
|
"Allow comments": "Sta opmerkingen toe",
|
|
@@ -108,6 +109,7 @@
|
|
|
108
109
|
"Shuffle": "Schudden",
|
|
109
110
|
"Slow Mode ON": "Langzame modus aan",
|
|
110
111
|
"Some of the files will not be accepted": "Sommige bestanden zullen niet worden geaccepteerd",
|
|
112
|
+
"Start typing to search": "Begin met typen om te zoeken",
|
|
111
113
|
"Submit": "Versturen",
|
|
112
114
|
"Suggest an option": "Stel een optie voor",
|
|
113
115
|
"Thinking...": "Denken...",
|
|
@@ -156,6 +158,8 @@
|
|
|
156
158
|
"aria/Reaction list": "Reactielijst",
|
|
157
159
|
"aria/Remove attachment": "Bijlage verwijderen",
|
|
158
160
|
"aria/Retry upload": "Upload opnieuw proberen",
|
|
161
|
+
"aria/Search results": "Zoekresultaten",
|
|
162
|
+
"aria/Search results header filter button": "Zoekresultaten header filter knop",
|
|
159
163
|
"aria/Send": "Verzenden",
|
|
160
164
|
"aria/Stop AI Generation": "AI-generatie stoppen",
|
|
161
165
|
"ban-command-args": "[@gebruikersnaam] [tekst]",
|
|
@@ -167,6 +171,9 @@
|
|
|
167
171
|
"mute-command-description": "Een gebruiker dempen",
|
|
168
172
|
"replyCount_one": "1 antwoord",
|
|
169
173
|
"replyCount_other": "{{ count }} antwoorden",
|
|
174
|
+
"search-results-header-filter-source-button-label--channels": "kanalen",
|
|
175
|
+
"search-results-header-filter-source-button-label--messages": "berichten",
|
|
176
|
+
"search-results-header-filter-source-button-label--users": "gebruikers",
|
|
170
177
|
"searchResultsCount_one": "1 resultaat",
|
|
171
178
|
"searchResultsCount_other": "{{ count }} resultaten",
|
|
172
179
|
"this content could not be displayed": "Deze inhoud kan niet weergegeven worden",
|
package/dist/i18n/pt.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "Adicionar um comentário",
|
|
3
3
|
"Add an option": "Adicionar uma opção",
|
|
4
|
+
"All results loaded": "Todos os resultados carregados",
|
|
4
5
|
"Allow access to camera": "Permitir acesso à câmera",
|
|
5
6
|
"Allow access to microphone": "Permitir acesso ao microfone",
|
|
6
7
|
"Allow comments": "Permitir comentários",
|
|
@@ -110,6 +111,7 @@
|
|
|
110
111
|
"Shuffle": "Embaralhar",
|
|
111
112
|
"Slow Mode ON": "Modo lento LIGADO",
|
|
112
113
|
"Some of the files will not be accepted": "Alguns arquivos não serão aceitos",
|
|
114
|
+
"Start typing to search": "Comece a digitar para pesquisar",
|
|
113
115
|
"Submit": "Enviar",
|
|
114
116
|
"Suggest an option": "Sugerir uma opção",
|
|
115
117
|
"Thinking...": "Pensando...",
|
|
@@ -130,7 +132,7 @@
|
|
|
130
132
|
"User uploaded content": "Conteúdo enviado pelo usuário",
|
|
131
133
|
"View results": "Ver resultados",
|
|
132
134
|
"View {{count}} comments_many": "Ver {{count}} comentários",
|
|
133
|
-
"View {{count}} comments_one": "Ver {{count}}
|
|
135
|
+
"View {{count}} comments_one": "Ver {{count}} comentário",
|
|
134
136
|
"View {{count}} comments_other": "Ver {{count}} comentários",
|
|
135
137
|
"Voice message": "Mensagem de voz",
|
|
136
138
|
"Vote ended": "Votação encerrada",
|
|
@@ -159,6 +161,8 @@
|
|
|
159
161
|
"aria/Reaction list": "Lista de reações",
|
|
160
162
|
"aria/Remove attachment": "Remover anexo",
|
|
161
163
|
"aria/Retry upload": "Tentar upload novamente",
|
|
164
|
+
"aria/Search results": "Resultados da pesquisa",
|
|
165
|
+
"aria/Search results header filter button": "Botão de filtro do cabeçalho dos resultados da pesquisa",
|
|
162
166
|
"aria/Send": "Enviar",
|
|
163
167
|
"aria/Stop AI Generation": "Parar geração de IA",
|
|
164
168
|
"ban-command-args": "[@nomedeusuário] [texto]",
|
|
@@ -171,6 +175,9 @@
|
|
|
171
175
|
"replyCount_many": "{{ count }} respostas",
|
|
172
176
|
"replyCount_one": "1 resposta",
|
|
173
177
|
"replyCount_other": "{{ count }} respostas",
|
|
178
|
+
"search-results-header-filter-source-button-label--channels": "canais",
|
|
179
|
+
"search-results-header-filter-source-button-label--messages": "mensagens",
|
|
180
|
+
"search-results-header-filter-source-button-label--users": "usuários",
|
|
174
181
|
"searchResultsCount_many": "{{ count }} resultados",
|
|
175
182
|
"searchResultsCount_one": "1 resultado",
|
|
176
183
|
"searchResultsCount_other": "{{ count }} resultados",
|
package/dist/i18n/ru.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "Добавить комментарий",
|
|
3
3
|
"Add an option": "Добавить вариант",
|
|
4
|
+
"All results loaded": "Все результаты загружены",
|
|
4
5
|
"Allow access to camera": "Разрешить доступ к камере",
|
|
5
6
|
"Allow access to microphone": "Разрешить доступ к микрофону",
|
|
6
7
|
"Allow comments": "Разрешить комментарии",
|
|
@@ -112,6 +113,7 @@
|
|
|
112
113
|
"Shuffle": "Перемешать",
|
|
113
114
|
"Slow Mode ON": "Медленный режим включен",
|
|
114
115
|
"Some of the files will not be accepted": "Некоторые файлы не будут приняты",
|
|
116
|
+
"Start typing to search": "Начните вводить для поиска",
|
|
115
117
|
"Submit": "Отправить",
|
|
116
118
|
"Suggest an option": "Предложить вариант",
|
|
117
119
|
"Thinking...": "Думаю...",
|
|
@@ -162,6 +164,8 @@
|
|
|
162
164
|
"aria/Reaction list": "Список реакций",
|
|
163
165
|
"aria/Remove attachment": "Удалить вложение",
|
|
164
166
|
"aria/Retry upload": "Повторить загрузку",
|
|
167
|
+
"aria/Search results": "Результаты поиска",
|
|
168
|
+
"aria/Search results header filter button": "Кнопка фильтра заголовка результатов поиска",
|
|
165
169
|
"aria/Send": "Отправить",
|
|
166
170
|
"aria/Stop AI Generation": "Остановить генерацию ИИ",
|
|
167
171
|
"ban-command-args": "[@имяпользователя] [текст]",
|
|
@@ -175,6 +179,9 @@
|
|
|
175
179
|
"replyCount_many": "{{ count }} ответов",
|
|
176
180
|
"replyCount_one": "1 ответ",
|
|
177
181
|
"replyCount_other": "{{ count }} ответов",
|
|
182
|
+
"search-results-header-filter-source-button-label--channels": "каналы",
|
|
183
|
+
"search-results-header-filter-source-button-label--messages": "сообщения",
|
|
184
|
+
"search-results-header-filter-source-button-label--users": "пользователи",
|
|
178
185
|
"searchResultsCount_few": "{{ count }} результата",
|
|
179
186
|
"searchResultsCount_many": "{{ count }} результатов",
|
|
180
187
|
"searchResultsCount_one": "1 результат",
|
package/dist/i18n/tr.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"Add a comment": "Yorum ekle",
|
|
3
3
|
"Add an option": "Bir seçenek ekle",
|
|
4
|
+
"All results loaded": "Tüm sonuçlar yüklendi",
|
|
4
5
|
"Allow access to camera": "Kameraya erişime izin ver",
|
|
5
6
|
"Allow access to microphone": "Mikrofona erişime izin ver",
|
|
6
7
|
"Allow comments": "Yorumlara izin ver",
|
|
@@ -108,6 +109,7 @@
|
|
|
108
109
|
"Shuffle": "Karıştır",
|
|
109
110
|
"Slow Mode ON": "Yavaş Mod Açık",
|
|
110
111
|
"Some of the files will not be accepted": "Bazı dosyalar kabul edilmeyecek",
|
|
112
|
+
"Start typing to search": "Aramak için yazmaya başlayın",
|
|
111
113
|
"Submit": "Gönder",
|
|
112
114
|
"Suggest an option": "Bir seçenek önerin",
|
|
113
115
|
"Thinking...": "Düşünüyor...",
|
|
@@ -156,6 +158,8 @@
|
|
|
156
158
|
"aria/Reaction list": "Tepki listesi",
|
|
157
159
|
"aria/Remove attachment": "Eki kaldır",
|
|
158
160
|
"aria/Retry upload": "Yüklemeyi Tekrar Dene",
|
|
161
|
+
"aria/Search results": "Arama sonuçları",
|
|
162
|
+
"aria/Search results header filter button": "Arama sonuçları başlık filtre düğmesi",
|
|
159
163
|
"aria/Send": "Gönder",
|
|
160
164
|
"aria/Stop AI Generation": "Yapay Zeka Üretimini Durdur",
|
|
161
165
|
"ban-command-args": "[@kullanıcıadı] [metin]",
|
|
@@ -167,6 +171,9 @@
|
|
|
167
171
|
"mute-command-description": "Bir kullanıcının sesini kapat",
|
|
168
172
|
"replyCount_one": "1 cevap",
|
|
169
173
|
"replyCount_other": "{{ count }} cevap",
|
|
174
|
+
"search-results-header-filter-source-button-label--channels": "kanallar",
|
|
175
|
+
"search-results-header-filter-source-button-label--messages": "mesajlar",
|
|
176
|
+
"search-results-header-filter-source-button-label--users": "kullanıcılar",
|
|
170
177
|
"searchResultsCount_one": "1 sonuç",
|
|
171
178
|
"searchResultsCount_other": "{{ count }} sonuç",
|
|
172
179
|
"this content could not be displayed": "bu içerik gösterilemiyor",
|