stream-chat-react 13.6.1 → 13.6.3
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.js +1 -2
- package/dist/components/Chat/hooks/useChat.js +1 -1
- package/dist/components/Loading/index.d.ts +1 -0
- package/dist/components/Loading/index.js +1 -0
- package/dist/components/TextareaComposer/TextareaComposer.js +11 -1
- package/dist/i18n/Streami18n.d.ts +3 -0
- package/dist/i18n/de.json +3 -0
- package/dist/i18n/en.json +3 -0
- package/dist/i18n/es.json +3 -0
- package/dist/i18n/fr.json +3 -0
- package/dist/i18n/hi.json +3 -0
- package/dist/i18n/it.json +3 -0
- package/dist/i18n/ja.json +3 -0
- package/dist/i18n/ko.json +3 -0
- package/dist/i18n/nl.json +3 -0
- package/dist/i18n/pt.json +3 -0
- package/dist/i18n/ru.json +3 -0
- package/dist/i18n/tr.json +3 -0
- package/dist/index.browser.cjs +1274 -1235
- package/dist/index.browser.cjs.map +4 -4
- package/dist/index.node.cjs +1275 -1235
- package/dist/index.node.cjs.map +4 -4
- package/package.json +1 -1
- /package/dist/components/{Channel → Loading}/LoadingChannel.d.ts +0 -0
- /package/dist/components/{Channel → Loading}/LoadingChannel.js +0 -0
|
@@ -10,8 +10,7 @@ import { useCreateTypingContext } from './hooks/useCreateTypingContext';
|
|
|
10
10
|
import { useEditMessageHandler } from './hooks/useEditMessageHandler';
|
|
11
11
|
import { useIsMounted } from './hooks/useIsMounted';
|
|
12
12
|
import { useMentionsHandlers } from './hooks/useMentionsHandlers';
|
|
13
|
-
import { LoadingErrorIndicator as DefaultLoadingErrorIndicator } from '../Loading';
|
|
14
|
-
import { LoadingChannel as DefaultLoadingIndicator } from './LoadingChannel';
|
|
13
|
+
import { LoadingErrorIndicator as DefaultLoadingErrorIndicator, LoadingChannel as DefaultLoadingIndicator, } from '../Loading';
|
|
15
14
|
import { ChannelActionProvider, ChannelStateProvider, TypingProvider, useChatContext, useTranslationContext, WithComponents, } from '../../context';
|
|
16
15
|
import { CHANNEL_CONTAINER_ID } from './constants';
|
|
17
16
|
import { DEFAULT_HIGHLIGHT_DURATION, DEFAULT_INITIAL_CHANNEL_PAGE_SIZE, DEFAULT_JUMP_TO_PAGE_SIZE, DEFAULT_NEXT_CHANNEL_PAGE_SIZE, DEFAULT_THREAD_PAGE_SIZE, } from '../../constants/limits';
|
|
@@ -24,7 +24,7 @@ export const useChat = ({ client, defaultLanguage = 'en', i18nInstance, initialN
|
|
|
24
24
|
useEffect(() => {
|
|
25
25
|
if (!client)
|
|
26
26
|
return;
|
|
27
|
-
const version = "13.6.
|
|
27
|
+
const version = "13.6.3";
|
|
28
28
|
const userAgent = client.getUserAgent();
|
|
29
29
|
if (!userAgent.includes('stream-chat-react')) {
|
|
30
30
|
// result looks like: 'stream-chat-react-2.3.2-stream-chat-javascript-client-browser-2.2.2'
|
|
@@ -160,6 +160,16 @@ export const TextareaComposer = ({ className, closeSuggestionsOnClickOutside, co
|
|
|
160
160
|
const textarea = textareaRef.current;
|
|
161
161
|
if (!textarea || isComposing)
|
|
162
162
|
return;
|
|
163
|
+
/**
|
|
164
|
+
* The textarea value has to be overridden outside the render cycle so that the events like compositionend can be triggered.
|
|
165
|
+
* If we have overridden the value during the component rendering, the compositionend event would not be triggered, and
|
|
166
|
+
* it would not be possible to type composed characters (ô).
|
|
167
|
+
* On the other hand, just removing the value override via prop (value={text}) would not allow us to change the text based on
|
|
168
|
+
* middleware results (e.g. replace characters with emojis)
|
|
169
|
+
*/
|
|
170
|
+
if (textarea.value !== text) {
|
|
171
|
+
textarea.value = text;
|
|
172
|
+
}
|
|
163
173
|
const length = textarea.value.length;
|
|
164
174
|
const start = Math.max(0, Math.min(selection.start, length));
|
|
165
175
|
const end = Math.max(start, Math.min(selection.end, length));
|
|
@@ -172,6 +182,6 @@ export const TextareaComposer = ({ className, closeSuggestionsOnClickOutside, co
|
|
|
172
182
|
}), ref: containerRef },
|
|
173
183
|
React.createElement(Textarea, { ...additionalTextareaProps, ...restTextareaProps, "aria-label": cooldownRemaining ? t('Slow Mode ON') : placeholder, className: clsx('rta__textarea', 'str-chat__textarea__textarea str-chat__message-textarea', className), "data-testid": 'message-input', disabled: !enabled || !!cooldownRemaining, maxRows: maxRows, minRows: minRows, onBlur: onBlur, onChange: changeHandler, onCompositionEnd: onCompositionEnd, onCompositionStart: onCompositionStart, onKeyDown: keyDownHandler, onPaste: onPaste, onScroll: scrollHandler, onSelect: setSelection, placeholder: placeholder || t('Type your message'), ref: (ref) => {
|
|
174
184
|
textareaRef.current = ref;
|
|
175
|
-
}
|
|
185
|
+
} }),
|
|
176
186
|
!isComposing && (React.createElement(AutocompleteSuggestionList, { className: listClassName, closeOnClickOutside: closeSuggestionsOnClickOutside, focusedItemIndex: focusedItemIndex, setFocusedItemIndex: setFocusedItemIndex }))));
|
|
177
187
|
};
|
|
@@ -178,6 +178,7 @@ export declare class Streami18n {
|
|
|
178
178
|
"Empty message...": string;
|
|
179
179
|
End: string;
|
|
180
180
|
"End vote": string;
|
|
181
|
+
"Enforce unique vote is enabled": string;
|
|
181
182
|
"Error adding flag": string;
|
|
182
183
|
"Error connecting to chat, refresh the page to try again.": string;
|
|
183
184
|
"Error deleting message": string;
|
|
@@ -235,6 +236,7 @@ export declare class Streami18n {
|
|
|
235
236
|
"Only numbers are allowed": string;
|
|
236
237
|
"Open emoji picker": string;
|
|
237
238
|
"Option already exists": string;
|
|
239
|
+
"Option is empty": string;
|
|
238
240
|
Options: string;
|
|
239
241
|
"People matching": string;
|
|
240
242
|
Pin: string;
|
|
@@ -244,6 +246,7 @@ export declare class Streami18n {
|
|
|
244
246
|
"Poll options": string;
|
|
245
247
|
"Poll results": string;
|
|
246
248
|
Question: string;
|
|
249
|
+
"Question is required": string;
|
|
247
250
|
Quote: string;
|
|
248
251
|
"Reached the vote limit. Remove an existing vote first.": string;
|
|
249
252
|
"Recording format is not supported and cannot be reproduced": string;
|
package/dist/i18n/de.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "Leere Nachricht...",
|
|
43
43
|
"End": "Beenden",
|
|
44
44
|
"End vote": "Abstimmung beenden",
|
|
45
|
+
"Enforce unique vote is enabled": "Eindeutige Abstimmung ist aktiviert",
|
|
45
46
|
"Error adding flag": "Fehler beim Hinzufügen des Flags",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "Verbindungsfehler zum Chat, aktualisieren Sie die Seite, um es erneut zu versuchen.",
|
|
47
48
|
"Error deleting message": "Fehler beim Löschen der Nachricht",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "Nur Zahlen sind erlaubt",
|
|
100
101
|
"Open emoji picker": "Emoji-Auswahl öffnen",
|
|
101
102
|
"Option already exists": "Option existiert bereits",
|
|
103
|
+
"Option is empty": "Option ist leer",
|
|
102
104
|
"Options": "Optionen",
|
|
103
105
|
"People matching": "Passende Personen",
|
|
104
106
|
"Pin": "Anheften",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "Umfrageoptionen",
|
|
109
111
|
"Poll results": "Umfrageergebnisse",
|
|
110
112
|
"Question": "Frage",
|
|
113
|
+
"Question is required": "Frage ist erforderlich",
|
|
111
114
|
"Quote": "Zitieren",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "Das Abstimmungslimit wurde erreicht. Entfernen Sie zuerst eine bestehende Stimme.",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "Aufnahmeformat wird nicht unterstützt und kann nicht wiedergegeben werden",
|
package/dist/i18n/en.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "Empty message...",
|
|
43
43
|
"End": "End",
|
|
44
44
|
"End vote": "End vote",
|
|
45
|
+
"Enforce unique vote is enabled": "Enforce unique vote is enabled",
|
|
45
46
|
"Error adding flag": "Error adding flag",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "Error connecting to chat, refresh the page to try again.",
|
|
47
48
|
"Error deleting message": "Error deleting message",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "Only numbers are allowed",
|
|
100
101
|
"Open emoji picker": "Open emoji picker",
|
|
101
102
|
"Option already exists": "Option already exists",
|
|
103
|
+
"Option is empty": "Option is empty",
|
|
102
104
|
"Options": "Options",
|
|
103
105
|
"People matching": "People matching",
|
|
104
106
|
"Pin": "Pin",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "Poll options",
|
|
109
111
|
"Poll results": "Poll results",
|
|
110
112
|
"Question": "Question",
|
|
113
|
+
"Question is required": "Question is required",
|
|
111
114
|
"Quote": "Quote",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "Reached the vote limit. Remove an existing vote first.",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "Recording format is not supported and cannot be reproduced",
|
package/dist/i18n/es.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "Mensaje vacío...",
|
|
43
43
|
"End": "Final",
|
|
44
44
|
"End vote": "Finalizar votación",
|
|
45
|
+
"Enforce unique vote is enabled": "El voto único está habilitado",
|
|
45
46
|
"Error adding flag": "Error al agregar la bandera",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "Error al conectarse al chat, actualice la página para volver a intentarlo.",
|
|
47
48
|
"Error deleting message": "Error al eliminar el mensaje",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "Solo se permiten números",
|
|
100
101
|
"Open emoji picker": "Abrir el selector de emojis",
|
|
101
102
|
"Option already exists": "La opción ya existe",
|
|
103
|
+
"Option is empty": "La opción está vacía",
|
|
102
104
|
"Options": "Opciones",
|
|
103
105
|
"People matching": "Personas que coinciden",
|
|
104
106
|
"Pin": "Fijar",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "Opciones de la encuesta",
|
|
109
111
|
"Poll results": "Resultados de la encuesta",
|
|
110
112
|
"Question": "Pregunta",
|
|
113
|
+
"Question is required": "La pregunta es obligatoria",
|
|
111
114
|
"Quote": "Citar",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "Se ha alcanzado el límite de votos. Elimina un voto existente primero.",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "El formato de grabación no es compatible y no se puede reproducir",
|
package/dist/i18n/fr.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "Message vide...",
|
|
43
43
|
"End": "Fin",
|
|
44
44
|
"End vote": "Fin du vote",
|
|
45
|
+
"Enforce unique vote is enabled": "Le vote unique est activé",
|
|
45
46
|
"Error adding flag": "Erreur lors de l'ajout du signalement",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "Erreur de connexion au chat, rafraîchissez la page pour réessayer.",
|
|
47
48
|
"Error deleting message": "Erreur lors de la suppression du message",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "Seuls les chiffres sont autorisés",
|
|
100
101
|
"Open emoji picker": "Ouvrir le sélecteur d'émojis",
|
|
101
102
|
"Option already exists": "L'option existe déjà",
|
|
103
|
+
"Option is empty": "L'option est vide",
|
|
102
104
|
"Options": "Options",
|
|
103
105
|
"People matching": "Correspondance de personnes",
|
|
104
106
|
"Pin": "Épingler",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "Options du sondage",
|
|
109
111
|
"Poll results": "Résultats du sondage",
|
|
110
112
|
"Question": "Question",
|
|
113
|
+
"Question is required": "La question est obligatoire",
|
|
111
114
|
"Quote": "Citer",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "La limite de votes a été atteinte. Supprimez d'abord un vote existant.",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "Le format d'enregistrement n'est pas pris en charge et ne peut pas être reproduit",
|
package/dist/i18n/hi.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "खाली संदेश ...",
|
|
43
43
|
"End": "समाप्त",
|
|
44
44
|
"End vote": "मत समाप्त करें",
|
|
45
|
+
"Enforce unique vote is enabled": "अनोखा वोट सक्षम है",
|
|
45
46
|
"Error adding flag": "ध्वज जोड़ने में त्रुटि",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "चैट से कनेक्ट करने में त्रुटि, पेज को रिफ्रेश करें",
|
|
47
48
|
"Error deleting message": "संदेश हटाने में त्रुटि",
|
|
@@ -100,6 +101,7 @@
|
|
|
100
101
|
"Only numbers are allowed": "केवल संख्याएँ अनुमत हैं",
|
|
101
102
|
"Open emoji picker": "इमोजी पिकर खोलिये",
|
|
102
103
|
"Option already exists": "विकल्प पहले से मौजूद है",
|
|
104
|
+
"Option is empty": "विकल्प खाली है",
|
|
103
105
|
"Options": "विकल्प",
|
|
104
106
|
"People matching": "मेल खाते लोग",
|
|
105
107
|
"Pin": "पिन",
|
|
@@ -109,6 +111,7 @@
|
|
|
109
111
|
"Poll options": "मतदान विकल्प",
|
|
110
112
|
"Poll results": "मतदान परिणाम",
|
|
111
113
|
"Question": "प्रश्न",
|
|
114
|
+
"Question is required": "प्रश्न आवश्यक है",
|
|
112
115
|
"Quote": "उद्धरण",
|
|
113
116
|
"Reached the vote limit. Remove an existing vote first.": "मतदान सीमा तक पहुंच गया। पहले एक मौजूदा वोट हटाएं।",
|
|
114
117
|
"Recording format is not supported and cannot be reproduced": "रेकॉर्डिंग फ़ॉर्मेट समर्थित नहीं है और पुनः उत्पन्न नहीं किया जा सकता",
|
package/dist/i18n/it.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "Messaggio vuoto...",
|
|
43
43
|
"End": "Fine",
|
|
44
44
|
"End vote": "Termina il voto",
|
|
45
|
+
"Enforce unique vote is enabled": "Il voto unico è abilitato",
|
|
45
46
|
"Error adding flag": "Errore durante l'aggiunta del flag",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "Errore di connessione alla chat, aggiorna la pagina per riprovare.",
|
|
47
48
|
"Error deleting message": "Errore durante l'eliminazione del messaggio",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "Sono consentiti solo numeri",
|
|
100
101
|
"Open emoji picker": "Apri il selettore di emoji",
|
|
101
102
|
"Option already exists": "L'opzione esiste già",
|
|
103
|
+
"Option is empty": "L'opzione è vuota",
|
|
102
104
|
"Options": "Opzioni",
|
|
103
105
|
"People matching": "Persone che corrispondono",
|
|
104
106
|
"Pin": "Pin",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "Opzioni del sondaggio",
|
|
109
111
|
"Poll results": "Risultati del sondaggio",
|
|
110
112
|
"Question": "Domanda",
|
|
113
|
+
"Question is required": "La domanda è obbligatoria",
|
|
111
114
|
"Quote": "Citazione",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "Raggiunto il limite di voti. Rimuovi prima un voto esistente.",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "Il formato di registrazione non è supportato e non può essere riprodotto",
|
package/dist/i18n/ja.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "空のメッセージ...",
|
|
43
43
|
"End": "終了",
|
|
44
44
|
"End vote": "投票を終了",
|
|
45
|
+
"Enforce unique vote is enabled": "一意の投票が有効になっています",
|
|
45
46
|
"Error adding flag": "フラグを追加のエラーが発生しました",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "チャットへの接続ができませんでした。ページを更新してください。",
|
|
47
48
|
"Error deleting message": "メッセージを削除するエラーが発生しました",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "数字のみ許可されています",
|
|
100
101
|
"Open emoji picker": "絵文字ピッカーを開く",
|
|
101
102
|
"Option already exists": "オプションは既に存在します",
|
|
103
|
+
"Option is empty": "オプションが空です",
|
|
102
104
|
"Options": "オプション",
|
|
103
105
|
"People matching": "一致する人",
|
|
104
106
|
"Pin": "ピン",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "投票オプション",
|
|
109
111
|
"Poll results": "投票結果",
|
|
110
112
|
"Question": "質問",
|
|
113
|
+
"Question is required": "質問は必須です",
|
|
111
114
|
"Quote": "引用",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "投票制限に達しました。既存の投票を先に削除してください。",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "録音形式はサポートされておらず、再生できません",
|
package/dist/i18n/ko.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "빈 메시지...",
|
|
43
43
|
"End": "종료",
|
|
44
44
|
"End vote": "투표 종료",
|
|
45
|
+
"Enforce unique vote is enabled": "고유 투표가 활성화되었습니다",
|
|
45
46
|
"Error adding flag": "플래그를 추가하는 동안 오류가 발생했습니다.",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "채팅에 연결하는 동안 오류가 발생했습니다. 페이지를 새로고침하여 다시 시도하세요.",
|
|
47
48
|
"Error deleting message": "메시지를 삭제하는 중에 오류가 발생했습니다.",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "숫자만 입력 가능합니다",
|
|
100
101
|
"Open emoji picker": "이모지 선택기 열기",
|
|
101
102
|
"Option already exists": "옵션이 이미 존재합니다",
|
|
103
|
+
"Option is empty": "옵션이 비어 있습니다",
|
|
102
104
|
"Options": "옵션",
|
|
103
105
|
"People matching": "일치하는 사람",
|
|
104
106
|
"Pin": "핀",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "투표 옵션",
|
|
109
111
|
"Poll results": "투표 결과",
|
|
110
112
|
"Question": "질문",
|
|
113
|
+
"Question is required": "질문이 필요합니다",
|
|
111
114
|
"Quote": "인용",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "투표 한도에 도달했습니다. 기존 투표를 먼저 제거하세요.",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "녹음 형식이 지원되지 않으므로 재생할 수 없습니다",
|
package/dist/i18n/nl.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "Leeg bericht...",
|
|
43
43
|
"End": "Einde",
|
|
44
44
|
"End vote": "Einde stem",
|
|
45
|
+
"Enforce unique vote is enabled": "Unieke stem is ingeschakeld",
|
|
45
46
|
"Error adding flag": "Fout bij toevoegen van vlag",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "Fout bij het verbinden, ververs de pagina om nogmaals te proberen",
|
|
47
48
|
"Error deleting message": "Fout bij verwijderen van bericht",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "Alleen nummers zijn toegestaan",
|
|
100
101
|
"Open emoji picker": "Emoji-kiezer openen",
|
|
101
102
|
"Option already exists": "Optie bestaat al",
|
|
103
|
+
"Option is empty": "Optie is leeg",
|
|
102
104
|
"Options": "Opties",
|
|
103
105
|
"People matching": "Mensen die matchen",
|
|
104
106
|
"Pin": "Pin",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "Peiling opties",
|
|
109
111
|
"Poll results": "Peiling resultaten",
|
|
110
112
|
"Question": "Vraag",
|
|
113
|
+
"Question is required": "Vraag is verplicht",
|
|
111
114
|
"Quote": "Citeer",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "Stemlimiet bereikt. Verwijder eerst een bestaande stem.",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "Opnameformaat wordt niet ondersteund en kan niet worden gereproduceerd",
|
package/dist/i18n/pt.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "Mensagem vazia...",
|
|
43
43
|
"End": "Fim",
|
|
44
44
|
"End vote": "Encerrar votação",
|
|
45
|
+
"Enforce unique vote is enabled": "Voto único está habilitado",
|
|
45
46
|
"Error adding flag": "Erro ao reportar",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "Erro ao conectar ao bate-papo, atualize a página para tentar novamente.",
|
|
47
48
|
"Error deleting message": "Erro ao deletar mensagem",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "Apenas números são permitidos",
|
|
100
101
|
"Open emoji picker": "Abrir seletor de emoji",
|
|
101
102
|
"Option already exists": "Opção já existe",
|
|
103
|
+
"Option is empty": "A opção está vazia",
|
|
102
104
|
"Options": "Opções",
|
|
103
105
|
"People matching": "Pessoas correspondentes",
|
|
104
106
|
"Pin": "Fixar",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "Opções da pesquisa",
|
|
109
111
|
"Poll results": "Resultados da pesquisa",
|
|
110
112
|
"Question": "Pergunta",
|
|
113
|
+
"Question is required": "A pergunta é obrigatória",
|
|
111
114
|
"Quote": "Citar",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "Limite de votos atingido. Remova um voto existente primeiro.",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "Formato de gravação não é suportado e não pode ser reproduzido",
|
package/dist/i18n/ru.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "Пустое сообщение...",
|
|
43
43
|
"End": "Конец",
|
|
44
44
|
"End vote": "Закончить голосование",
|
|
45
|
+
"Enforce unique vote is enabled": "Уникальное голосование включено",
|
|
45
46
|
"Error adding flag": "Ошибка добавления флага",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "Ошибка подключения к чату, обновите страницу чтобы попробовать снова.",
|
|
47
48
|
"Error deleting message": "Ошибка при удалении сообщения",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "Разрешены только цифры",
|
|
100
101
|
"Open emoji picker": "Открыть выбор смайлов",
|
|
101
102
|
"Option already exists": "Вариант уже существует",
|
|
103
|
+
"Option is empty": "Вариант пуст",
|
|
102
104
|
"Options": "Варианты",
|
|
103
105
|
"People matching": "Совпадающие люди",
|
|
104
106
|
"Pin": "Закрепить",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "Опции опроса",
|
|
109
111
|
"Poll results": "Результаты опроса",
|
|
110
112
|
"Question": "Вопрос",
|
|
113
|
+
"Question is required": "Вопрос обязателен",
|
|
111
114
|
"Quote": "Цитировать",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "Достигнут лимит голосов. Сначала удалите существующий голос.",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "Формат записи не поддерживается и не может быть воспроизведен",
|
package/dist/i18n/tr.json
CHANGED
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"Empty message...": "Boş mesaj...",
|
|
43
43
|
"End": "Son",
|
|
44
44
|
"End vote": "Oyu bitir",
|
|
45
|
+
"Enforce unique vote is enabled": "Benzersiz oy etkinleştirildi",
|
|
45
46
|
"Error adding flag": "Bayrak eklenirken hata oluştu",
|
|
46
47
|
"Error connecting to chat, refresh the page to try again.": "Bağlantı hatası, sayfayı yenileyip tekrar deneyin.",
|
|
47
48
|
"Error deleting message": "Mesaj silinirken hata oluştu",
|
|
@@ -99,6 +100,7 @@
|
|
|
99
100
|
"Only numbers are allowed": "Sadece sayılar kullanılabilir",
|
|
100
101
|
"Open emoji picker": "Emoji klavyesini aç",
|
|
101
102
|
"Option already exists": "Seçenek zaten mevcut",
|
|
103
|
+
"Option is empty": "Seçenek boş",
|
|
102
104
|
"Options": "Seçenekler",
|
|
103
105
|
"People matching": "Eşleşen kişiler",
|
|
104
106
|
"Pin": "Sabitle",
|
|
@@ -108,6 +110,7 @@
|
|
|
108
110
|
"Poll options": "Anket seçenekleri",
|
|
109
111
|
"Poll results": "Anket sonuçları",
|
|
110
112
|
"Question": "Soru",
|
|
113
|
+
"Question is required": "Soru gereklidir",
|
|
111
114
|
"Quote": "Alıntı",
|
|
112
115
|
"Reached the vote limit. Remove an existing vote first.": "Oylama sınırına ulaşıldı. Önce mevcut bir oyu kaldırın.",
|
|
113
116
|
"Recording format is not supported and cannot be reproduced": "Kayıt formatı desteklenmiyor ve çoğaltılamıyor",
|