From 2bd7db12a29cd2ed986b1fcacd3390caaf7d0fae Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Fri, 16 May 2025 21:05:52 +0400 Subject: [PATCH] enh: ALLOWED_FILE_EXTENSIONS ui --- backend/open_webui/config.py | 10 +++++-- backend/open_webui/routers/files.py | 4 +++ backend/open_webui/routers/retrieval.py | 8 +++++ .../admin/Settings/Documents.svelte | 29 ++++++++++++++++++- src/lib/i18n/locales/ar-BH/translation.json | 4 +++ src/lib/i18n/locales/ar/translation.json | 4 +++ src/lib/i18n/locales/bg-BG/translation.json | 4 +++ src/lib/i18n/locales/bn-BD/translation.json | 4 +++ src/lib/i18n/locales/bo-TB/translation.json | 4 +++ src/lib/i18n/locales/ca-ES/translation.json | 4 +++ src/lib/i18n/locales/ceb-PH/translation.json | 4 +++ src/lib/i18n/locales/cs-CZ/translation.json | 4 +++ src/lib/i18n/locales/da-DK/translation.json | 4 +++ src/lib/i18n/locales/de-DE/translation.json | 4 +++ src/lib/i18n/locales/dg-DG/translation.json | 4 +++ src/lib/i18n/locales/el-GR/translation.json | 4 +++ src/lib/i18n/locales/en-GB/translation.json | 4 +++ src/lib/i18n/locales/en-US/translation.json | 4 +++ src/lib/i18n/locales/es-ES/translation.json | 4 +++ src/lib/i18n/locales/et-EE/translation.json | 4 +++ src/lib/i18n/locales/eu-ES/translation.json | 4 +++ src/lib/i18n/locales/fa-IR/translation.json | 4 +++ src/lib/i18n/locales/fi-FI/translation.json | 4 +++ src/lib/i18n/locales/fr-CA/translation.json | 4 +++ src/lib/i18n/locales/fr-FR/translation.json | 4 +++ src/lib/i18n/locales/he-IL/translation.json | 4 +++ src/lib/i18n/locales/hi-IN/translation.json | 4 +++ src/lib/i18n/locales/hr-HR/translation.json | 4 +++ src/lib/i18n/locales/hu-HU/translation.json | 4 +++ src/lib/i18n/locales/id-ID/translation.json | 4 +++ src/lib/i18n/locales/ie-GA/translation.json | 4 +++ src/lib/i18n/locales/it-IT/translation.json | 4 +++ src/lib/i18n/locales/ja-JP/translation.json | 4 +++ src/lib/i18n/locales/ka-GE/translation.json | 4 +++ src/lib/i18n/locales/ko-KR/translation.json | 4 +++ src/lib/i18n/locales/lt-LT/translation.json | 4 +++ src/lib/i18n/locales/ms-MY/translation.json | 4 +++ src/lib/i18n/locales/nb-NO/translation.json | 4 +++ src/lib/i18n/locales/nl-NL/translation.json | 4 +++ src/lib/i18n/locales/pa-IN/translation.json | 4 +++ src/lib/i18n/locales/pl-PL/translation.json | 4 +++ src/lib/i18n/locales/pt-BR/translation.json | 4 +++ src/lib/i18n/locales/pt-PT/translation.json | 4 +++ src/lib/i18n/locales/ro-RO/translation.json | 4 +++ src/lib/i18n/locales/ru-RU/translation.json | 4 +++ src/lib/i18n/locales/sk-SK/translation.json | 4 +++ src/lib/i18n/locales/sr-RS/translation.json | 4 +++ src/lib/i18n/locales/sv-SE/translation.json | 4 +++ src/lib/i18n/locales/th-TH/translation.json | 4 +++ src/lib/i18n/locales/tk-TW/translation.json | 4 +++ src/lib/i18n/locales/tr-TR/translation.json | 4 +++ src/lib/i18n/locales/uk-UA/translation.json | 4 +++ src/lib/i18n/locales/ur-PK/translation.json | 4 +++ src/lib/i18n/locales/vi-VN/translation.json | 4 +++ src/lib/i18n/locales/zh-CN/translation.json | 4 +++ src/lib/i18n/locales/zh-TW/translation.json | 4 +++ 56 files changed, 256 insertions(+), 3 deletions(-) diff --git a/backend/open_webui/config.py b/backend/open_webui/config.py index 25f0e6897..b1955b056 100644 --- a/backend/open_webui/config.py +++ b/backend/open_webui/config.py @@ -1751,7 +1751,9 @@ QDRANT_API_KEY = os.environ.get("QDRANT_API_KEY", None) QDRANT_ON_DISK = os.environ.get("QDRANT_ON_DISK", "false").lower() == "true" QDRANT_PREFER_GRPC = os.environ.get("QDRANT_PREFER_GRPC", "False").lower() == "true" QDRANT_GRPC_PORT = int(os.environ.get("QDRANT_GRPC_PORT", "6334")) -ENABLE_QDRANT_MULTITENANCY_MODE = os.environ.get("ENABLE_QDRANT_MULTITENANCY_MODE", "false").lower() == "true" +ENABLE_QDRANT_MULTITENANCY_MODE = ( + os.environ.get("ENABLE_QDRANT_MULTITENANCY_MODE", "false").lower() == "true" +) # OpenSearch OPENSEARCH_URI = os.environ.get("OPENSEARCH_URI", "https://localhost:9200") @@ -1962,7 +1964,11 @@ RAG_FILE_MAX_SIZE = PersistentConfig( RAG_ALLOWED_FILE_EXTENSIONS = PersistentConfig( "RAG_ALLOWED_FILE_EXTENSIONS", "rag.file.allowed_extensions", - os.environ.get("RAG_ALLOWED_FILE_EXTENSIONS", "").split(","), + [ + ext.strip() + for ext in os.environ.get("RAG_ALLOWED_FILE_EXTENSIONS", "").split(",") + if ext.strip() + ], ) RAG_EMBEDDING_ENGINE = PersistentConfig( diff --git a/backend/open_webui/routers/files.py b/backend/open_webui/routers/files.py index ec76d7e63..4ba57f56b 100644 --- a/backend/open_webui/routers/files.py +++ b/backend/open_webui/routers/files.py @@ -97,6 +97,10 @@ def upload_file( file_extension = os.path.splitext(filename)[1] if request.app.state.config.ALLOWED_FILE_EXTENSIONS: + request.app.state.config.ALLOWED_FILE_EXTENSIONS = [ + ext for ext in request.app.state.config.ALLOWED_FILE_EXTENSIONS if ext + ] + if file_extension not in request.app.state.config.ALLOWED_FILE_EXTENSIONS: raise HTTPException( status_code=status.HTTP_400_BAD_REQUEST, diff --git a/backend/open_webui/routers/retrieval.py b/backend/open_webui/routers/retrieval.py index 1d0af3029..5cb47373f 100644 --- a/backend/open_webui/routers/retrieval.py +++ b/backend/open_webui/routers/retrieval.py @@ -374,6 +374,7 @@ async def get_rag_config(request: Request, user=Depends(get_admin_user)): # File upload settings "FILE_MAX_SIZE": request.app.state.config.FILE_MAX_SIZE, "FILE_MAX_COUNT": request.app.state.config.FILE_MAX_COUNT, + "ALLOWED_FILE_EXTENSIONS": request.app.state.config.ALLOWED_FILE_EXTENSIONS, # Integration settings "ENABLE_GOOGLE_DRIVE_INTEGRATION": request.app.state.config.ENABLE_GOOGLE_DRIVE_INTEGRATION, "ENABLE_ONEDRIVE_INTEGRATION": request.app.state.config.ENABLE_ONEDRIVE_INTEGRATION, @@ -521,6 +522,7 @@ class ConfigForm(BaseModel): # File upload settings FILE_MAX_SIZE: Optional[int] = None FILE_MAX_COUNT: Optional[int] = None + ALLOWED_FILE_EXTENSIONS: Optional[List[str]] = None # Integration settings ENABLE_GOOGLE_DRIVE_INTEGRATION: Optional[bool] = None @@ -712,6 +714,11 @@ async def update_rag_config( if form_data.FILE_MAX_COUNT is not None else request.app.state.config.FILE_MAX_COUNT ) + request.app.state.config.ALLOWED_FILE_EXTENSIONS = ( + form_data.ALLOWED_FILE_EXTENSIONS + if form_data.ALLOWED_FILE_EXTENSIONS is not None + else request.app.state.config.ALLOWED_FILE_EXTENSIONS + ) # Integration settings request.app.state.config.ENABLE_GOOGLE_DRIVE_INTEGRATION = ( @@ -855,6 +862,7 @@ async def update_rag_config( # File upload settings "FILE_MAX_SIZE": request.app.state.config.FILE_MAX_SIZE, "FILE_MAX_COUNT": request.app.state.config.FILE_MAX_COUNT, + "ALLOWED_FILE_EXTENSIONS": request.app.state.config.ALLOWED_FILE_EXTENSIONS, # Integration settings "ENABLE_GOOGLE_DRIVE_INTEGRATION": request.app.state.config.ENABLE_GOOGLE_DRIVE_INTEGRATION, "ENABLE_ONEDRIVE_INTEGRATION": request.app.state.config.ENABLE_ONEDRIVE_INTEGRATION, diff --git a/src/lib/components/admin/Settings/Documents.svelte b/src/lib/components/admin/Settings/Documents.svelte index 3a3c361cf..d1ba533c0 100644 --- a/src/lib/components/admin/Settings/Documents.svelte +++ b/src/lib/components/admin/Settings/Documents.svelte @@ -170,6 +170,10 @@ await embeddingModelUpdateHandler(); } + RAGConfig.ALLOWED_FILE_EXTENSIONS = RAGConfig.ALLOWED_FILE_EXTENSIONS.split(',') + .map((ext) => ext.trim()) + .filter((ext) => ext !== ''); + const res = await updateRAGConfig(localStorage.token, RAGConfig); dispatch('save'); }; @@ -192,7 +196,10 @@ onMount(async () => { await setEmbeddingConfig(); - RAGConfig = await getRAGConfig(localStorage.token); + const config = await getRAGConfig(localStorage.token); + config.ALLOWED_FILE_EXTENSIONS = config.ALLOWED_FILE_EXTENSIONS.join(', '); + + RAGConfig = config; }); @@ -792,6 +799,26 @@
+
+
{$i18n.t('Allowed File Extensions')}
+
+ + + +
+
+
{$i18n.t('Max Upload Size')}
diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index 83ec1f638..0c1dd7a8f 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "هل تملك حساب ؟", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "أخفاء", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "كيف استطيع مساعدتك اليوم؟", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index ef894323e..8a727be93 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "السماح بتحديد موقع المستخدم", "Allow Voice Interruption in Call": "السماح بانقطاع الصوت أثناء المكالمة", "Allowed Endpoints": "النقاط النهائية المسموح بها", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "هل لديك حساب بالفعل؟", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "بديل للـ top_p، ويهدف إلى ضمان توازن بين الجودة والتنوع. تمثل المعلمة p الحد الأدنى لاحتمالية اعتبار الرمز مقارنة باحتمالية الرمز الأكثر احتمالاً. على سبيل المثال، مع p=0.05 والرمز الأكثر احتمالاً لديه احتمال 0.9، يتم ترشيح القيم الأقل من 0.045.", "Always": "دائمًا", @@ -374,6 +376,7 @@ "e.g. My Tools": "مثال: أدواتي", "e.g. my_filter": "مثال: my_filter", "e.g. my_tools": "مثال: my_tools", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "مثال: أدوات لتنفيذ عمليات متنوعة", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "اللون السداسي - اتركه فارغًا لاستخدام اللون الافتراضي", "Hide": "أخفاء", "Hide Model": "", + "High Contrast Mode": "", "Home": "الصفحة الرئيسية", "Host": "المضيف", "How can I help you today?": "كيف استطيع مساعدتك اليوم؟", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 74c071de1..69e290dc7 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Разреши местоположението на потребителя", "Allow Voice Interruption in Call": "Разреши прекъсване на гласа по време на разговор", "Allowed Endpoints": "Разрешени крайни точки", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Вече имате акаунт?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "Винаги", @@ -374,6 +376,7 @@ "e.g. My Tools": "напр. Моите инструменти", "e.g. my_filter": "напр. моят_филтър", "e.g. my_tools": "напр. моите_инструменти", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "напр. Инструменти за извършване на различни операции", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hex цвят - Оставете празно за цвят по подразбиране", "Hide": "Скрий", "Hide Model": "", + "High Contrast Mode": "", "Home": "Начало", "Host": "Хост", "How can I help you today?": "Как мога да ви помогна днес?", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index ec52a0f3e..e12651f76 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "আগে থেকেই একাউন্ট আছে?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "লুকান", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index aea792245..16f4afeb3 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "བེད་སྤྱོད་མཁན་གནས་ཡུལ་ལ་གནང་བ་སྤྲོད་པ།", "Allow Voice Interruption in Call": "སྐད་འབོད་ནང་གི་སྐད་ཆའི་བར་ཆད་ལ་གནང་བ་སྤྲོད་པ།", "Allowed Endpoints": "གནང་བ་ཐོབ་པའི་མཇུག་མཐུད།", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "རྩིས་ཁྲ་ཡོད་ཟིན་ནམ།", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "top_p ཡི་ཚབ་བྱེད། སྤུས་ཚད་དང་སྣ་ཚོགས་ཀྱི་དོ་མཉམ་འགན་ལེན་བྱ་རྒྱུར་དམིགས་པ། ཞུགས་གྲངས་ p ཡིས་མཚོན་བྱེད་ནི། ཆེས་འབྱུང་སྲིད་པའི་ཊོཀ་ཀེན་གྱི་ཆགས་ཚུལ་དང་བསྡུར་ན། བསམ་ཞིབ་བྱེད་དགོས་པའི་ཊོཀ་ཀེན་གྱི་ཆགས་ཚུལ་ཉུང་ཤོས་ཡིན། དཔེར་ན། p=0.05 དང་ཆེས་འབྱུང་སྲིད་པའི་ཊོཀ་ཀེན་གྱི་ཆགས་ཚུལ་ 0.9 ཡིན་ན། 0.045 ལས་ཆུང་བའི་རིན་ཐང་ཅན་གྱི་ལོ་ཇི་ཁེ་སི་དག་ཕྱིར་འཚག་བྱེད་ངེས།", "Always": "རྟག་ཏུ།", @@ -374,6 +376,7 @@ "e.g. My Tools": "དཔེར་ན། ངའི་ལག་ཆ།", "e.g. my_filter": "དཔེར་ན། my_filter", "e.g. my_tools": "དཔེར་ན། my_tools", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "དཔེར་ན། ལས་ཀ་སྣ་ཚོགས་སྒྲུབ་བྱེད་ཀྱི་ལག་ཆ།", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hex ཚོན་མདོག - སྔོན་སྒྲིག་ཚོན་མདོག་གི་ཆེད་དུ་སྟོང་པ་བཞག་པ།", "Hide": "སྦ་བ།", "Hide Model": "དཔེ་དབྱིབས་སྦ་བ།", + "High Contrast Mode": "", "Home": "གཙོ་ངོས།", "Host": "Host", "How can I help you today?": "དེ་རིང་ངས་ཁྱེད་ལ་རོགས་པ་ཅི་ཞིག་བྱེད་ཐུབ་བམ།", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index 4968cecac..b39464414 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Permetre la ubicació de l'usuari", "Allow Voice Interruption in Call": "Permetre la interrupció de la veu en una trucada", "Allowed Endpoints": "Punts d'accés permesos", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Ja tens un compte?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Alternativa al top_p, i pretén garantir un equilibri de qualitat i varietat. El paràmetre p representa la probabilitat mínima que es consideri un token, en relació amb la probabilitat del token més probable. Per exemple, amb p=0,05 i el token més probable amb una probabilitat de 0,9, es filtren els logits amb un valor inferior a 0,045.", "Always": "Sempre", @@ -374,6 +376,7 @@ "e.g. My Tools": "p. ex. Les meves eines", "e.g. my_filter": "p. ex. els_meus_filtres", "e.g. my_tools": "p. ex. les_meves_eines", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions", "e.g., 3, 4, 5 (leave blank for default)": "p. ex. 3, 4, 5 (deixa-ho en blanc per utilitzar el per defecte)", "e.g., en-US,ja-JP (leave blank for auto-detect)": "p. ex. en-US, ja-JP, ca-ES (deixa-ho en blanc per detecció automàtica)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Color hexadecimal - Deixar buit per a color per defecte", "Hide": "Amaga", "Hide Model": "Amagar el model", + "High Contrast Mode": "", "Home": "Inici", "Host": "Servidor", "How can I help you today?": "Com et puc ajudar avui?", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index f0b0589db..4477de603 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Naa na kay account ?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Tagoa", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Unsaon nako pagtabang kanimo karon?", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index f55917969..42c0ad320 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Povolit uživatelskou polohu", "Allow Voice Interruption in Call": "Povolit přerušení hlasu při hovoru", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Už máte účet?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Schovej", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Jak vám mohu dnes pomoci?", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 4d983cc0c..ef889bd6e 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Tillad bruger-lokation", "Allow Voice Interruption in Call": "Tillad afbrydelser i stemme i opkald", "Allowed Endpoints": "Tilladte endpoints", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Har du allerede en profil?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "Altid", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hex farve - Lad stå tomt for standard farve", "Hide": "Skjul", "Hide Model": "Skjul model", + "High Contrast Mode": "", "Home": "Hjem", "Host": "Vært", "How can I help you today?": "Hvordan kan jeg hjælpe dig i dag?", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index eab3fe3c4..2f7d7b1e6 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Standort freigeben", "Allow Voice Interruption in Call": "Unterbrechung durch Stimme im Anruf zulassen", "Allowed Endpoints": "Erlaubte Endpunkte", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Haben Sie bereits einen Account?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "Immer", @@ -374,6 +376,7 @@ "e.g. My Tools": "z. B. Meine Werkzeuge", "e.g. my_filter": "z. B. mein_filter", "e.g. my_tools": "z. B. meine_werkzeuge", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "z. B. en-US,de-DE (freilassen für automatische Erkennung)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hex-Farbe - Leer lassen für Standardfarbe", "Hide": "Verbergen", "Hide Model": "Modell verstecken", + "High Contrast Mode": "", "Home": "", "Host": "Host", "How can I help you today?": "Wie kann ich Ihnen heute helfen?", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index c4b528155..d110e0491 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Such account exists?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Hide", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "How can I halp u today?", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index b5ea13133..4941e702c 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Επιτρέπεται η Τοποθεσία Χρήστη", "Allow Voice Interruption in Call": "Επιτρέπεται η Παύση Φωνής στην Κλήση", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Έχετε ήδη λογαριασμό;", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "π.χ. Τα Εργαλεία Μου", "e.g. my_filter": "π.χ. my_filter", "e.g. my_tools": "π.χ. my_tools", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Χρώμα Hex - Αφήστε κενό για προεπιλεγμένο χρώμα", "Hide": "Απόκρυψη", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "Διακομιστής", "How can I help you today?": "Πώς μπορώ να σας βοηθήσω σήμερα;", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index 755530b33..c3ec0ae47 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index 755530b33..c3ec0ae47 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index 874be9c20..9d0c8951b 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Permitir Ubicación de Usuario", "Allow Voice Interruption in Call": "Permitir Interrupción de Voz en Llamada", "Allowed Endpoints": "Endpoints Permitidos", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "¿Ya tienes una cuenta?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Alternativa a top_p, como objetivo garantizar un equilibrio entre calidad y variedad. El parámetro p representa la mínima probabilidad para que un token sea considerado, relativo a la probabilidad del token más probable. Por ejemplo, con p=0.05 y la probabilidad del token más probable de 0.9, los resultados (logits) con un valor inferior a 0.045 son descartados.", "Always": "Siempre", @@ -374,6 +376,7 @@ "e.g. My Tools": "p.ej. Mis Herramientas", "e.g. my_filter": "p.ej. mi_filtro", "e.g. my_tools": "p.ej. mis_herramientas", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "p.ej. Herramientas para realizar varias operaciones", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "p. ej., en-US,ja-JP (dejar en blanco para detectar automáticamente)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Color Hex - Deja vacío para el color predeterminado", "Hide": "Esconder", "Hide Model": "Ocultar Modelo", + "High Contrast Mode": "", "Home": "Inicio", "Host": "Host", "How can I help you today?": "¿Cómo puedo ayudarte hoy?", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index 5455060dd..72ecd8bba 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Luba kasutaja asukoht", "Allow Voice Interruption in Call": "Luba hääle katkestamine kõnes", "Allowed Endpoints": "Lubatud lõpp-punktid", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Kas teil on juba konto?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Alternatiiv top_p-le ja eesmärk on tagada kvaliteedi ja mitmekesisuse tasakaal. Parameeter p esindab minimaalset tõenäosust tokeni arvesse võtmiseks, võrreldes kõige tõenäolisema tokeni tõenäosusega. Näiteks p=0.05 korral, kui kõige tõenäolisema tokeni tõenäosus on 0.9, filtreeritakse välja logitid väärtusega alla 0.045.", "Always": "Alati", @@ -374,6 +376,7 @@ "e.g. My Tools": "nt Minu Tööriistad", "e.g. my_filter": "nt minu_filter", "e.g. my_tools": "nt minu_toriistad", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "nt tööriistad mitmesuguste operatsioonide teostamiseks", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hex värv - jätke tühjaks vaikevärvi jaoks", "Hide": "Peida", "Hide Model": "", + "High Contrast Mode": "", "Home": "Avaleht", "Host": "Host", "How can I help you today?": "Kuidas saan teid täna aidata?", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index c8e14c215..f345f2d83 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Baimendu Erabiltzailearen Kokapena", "Allow Voice Interruption in Call": "Baimendu Ahots Etena Deietan", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Baduzu kontu bat?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "adib. Nire Tresnak", "e.g. my_filter": "adib. nire_iragazkia", "e.g. my_tools": "adib. nire_tresnak", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hex Kolorea - Utzi hutsik kolore lehenetsia erabiltzeko", "Hide": "Ezkutatu", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "Ostalaria", "How can I help you today?": "Zertan lagun zaitzaket gaur?", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index 6e21b52f3..934ea68cf 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "اجازهٔ موقعیت مکانی کاربر", "Allow Voice Interruption in Call": "اجازه قطع صدا در تماس", "Allowed Endpoints": "نقاط پایانی مجاز", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "از قبل حساب کاربری دارید؟", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "جایگزینی برای top_p و هدف آن اطمینان از تعادل کیفیت و تنوع است. پارامتر p نشان\u200cدهنده حداقل احتمال برای در نظر گرفتن یک توکن نسبت به احتمال محتمل\u200cترین توکن است. به عنوان مثال، با p=0.05 و محتمل\u200cترین توکن با احتمال 0.9، لاگیت\u200cهای با مقدار کمتر از 0.045 فیلتر می\u200cشوند.", "Always": "همیشه", @@ -374,6 +376,7 @@ "e.g. My Tools": "مثلا ابزارهای من", "e.g. my_filter": "مثلا my_filter", "e.g. my_tools": "مثلا my_tools", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "مثلا ابزارهایی برای انجام عملیات مختلف", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "مثلا en-US,ja-JP (برای تشخیص خودکار خالی بگذارید)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "رنگ هگز - برای رنگ پیش\u200cفرض خالی بگذارید", "Hide": "پنهان\u200cسازی", "Hide Model": "پنهان کردن مدل", + "High Contrast Mode": "", "Home": "خانه", "Host": "میزبان", "How can I help you today?": "امروز چطور می توانم کمک تان کنم؟", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index e1181e056..cac937d6c 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Salli käyttäjän sijainti", "Allow Voice Interruption in Call": "Salli äänen keskeytys puhelussa", "Allowed Endpoints": "Hyväksytyt päätepisteet", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Onko sinulla jo tili?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "Aina", @@ -374,6 +376,7 @@ "e.g. My Tools": "esim. Omat työkalut", "e.g. my_filter": "esim. oma_suodatin", "e.g. my_tools": "esim. omat_työkalut", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen", "e.g., 3, 4, 5 (leave blank for default)": "esim. 3, 4, 5 (jätä tyhjäksi, jos haluat oletusarvon)", "e.g., en-US,ja-JP (leave blank for auto-detect)": "esim. en-US,ja-JP (Tyhjäksi jättämällä, automaattinen tunnistus)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Heksadesimaaliväri - Jätä tyhjäksi, jos haluat oletusvärin", "Hide": "Piilota", "Hide Model": "Piilota malli", + "High Contrast Mode": "", "Home": "Koti", "Host": "Palvelin", "How can I help you today?": "Miten voin auttaa sinua tänään?", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index 56fef1b82..ee9cc080a 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Autoriser l'emplacement de l'utilisateur", "Allow Voice Interruption in Call": "Autoriser l'interruption vocale pendant un appel", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Avez-vous déjà un compte ?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Cacher", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index 8bc7fed40..884107b3c 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Autoriser l'emplacement de l'utilisateur", "Allow Voice Interruption in Call": "Autoriser l'interruption vocale pendant un appel", "Allowed Endpoints": "Points de terminaison autorisés", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Avez-vous déjà un compte ?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "par ex. Mes Outils", "e.g. my_filter": "par ex. mon_filtre", "e.g. my_tools": "par ex. mes_outils", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "par ex., en-US, ja-JP (laisser vide pour détection automatique)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Couleur Hex - Laissez vide pour la couleur par défaut", "Hide": "Cacher", "Hide Model": "Cache le Model", + "High Contrast Mode": "", "Home": "Home", "Host": "Hôte", "How can I help you today?": "Comment puis-je vous aider aujourd'hui ?", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index 19f60c4a3..06c0f253a 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "כבר יש לך חשבון?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "הסתר", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "כיצד אוכל לעזור לך היום?", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 716a26224..7e684e22e 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "क्या आपके पास पहले से एक खाता मौजूद है?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "छुपाएं", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "आज मैं आपकी कैसे मदद कर सकता हूँ?", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index 066bf92cb..2734d0026 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Već imate račun?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Sakrij", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Kako vam mogu pomoći danas?", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 62599fd0c..c76a0c18c 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Felhasználói helyzet engedélyezése", "Allow Voice Interruption in Call": "Hang megszakítás engedélyezése hívás közben", "Allowed Endpoints": "Engedélyezett végpontok", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Már van fiókod?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Alternatíva a top_p helyett, célja a minőség és változatosság egyensúlyának biztosítása. A p paraméter a token figyelembevételének minimális valószínűségét jelzi a legvalószínűbb token valószínűségéhez képest. Például, ha p=0,05 és a legvalószínűbb token valószínűsége 0,9, a 0,045-nél kisebb értékű logitok kiszűrésre kerülnek.", "Always": "Mindig", @@ -374,6 +376,7 @@ "e.g. My Tools": "pl. Az én eszközeim", "e.g. my_filter": "pl. az_en_szűrőm", "e.g. my_tools": "pl. az_en_eszkozeim", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "pl. Eszközök különböző műveletek elvégzéséhez", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hexa szín - Hagyd üresen az alapértelmezett színhez", "Hide": "Elrejtés", "Hide Model": "Modell elrejtése", + "High Contrast Mode": "", "Home": "Kezdőlap", "Host": "Hoszt", "How can I help you today?": "Hogyan segíthetek ma?", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 44d858a08..9a3e08de2 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Izinkan Lokasi Pengguna", "Allow Voice Interruption in Call": "Izinkan Gangguan Suara dalam Panggilan", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Sudah memiliki akun?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Sembunyikan", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Ada yang bisa saya bantu hari ini?", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index 7b8728a97..2f7e6f0d4 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Ceadaigh Suíomh Úsáideora", "Allow Voice Interruption in Call": "Ceadaigh Briseadh Guth i nGlao", "Allowed Endpoints": "Críochphointí Ceadaithe", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Tá cuntas agat cheana féin?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Rogha eile seachas an top_p, agus tá sé mar aidhm aige cothromaíocht cáilíochta agus éagsúlachta a chinntiú. Léiríonn an paraiméadar p an dóchúlacht íosta go mbreithneofar comhartha, i gcoibhneas le dóchúlacht an chomhartha is dóichí. Mar shampla, le p=0.05 agus dóchúlacht 0.9 ag an comhartha is dóichí, déantar logits le luach níos lú ná 0.045 a scagadh amach.", "Always": "I gcónaí", @@ -374,6 +376,7 @@ "e.g. My Tools": "m.sh. Mo Uirlisí", "e.g. my_filter": "m.sh. mo_scagaire", "e.g. my_tools": "m.sh. mo_uirlisí", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "m.sh., en-US, ja-JP (fág bán le haghaidh uathbhraite)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Dath Heics - Fág folamh don dath réamhshocraithe", "Hide": "Folaigh", "Hide Model": "Folaigh Múnla", + "High Contrast Mode": "", "Home": "Baile", "Host": "Óstach", "How can I help you today?": "Conas is féidir liom cabhrú leat inniu?", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 3197755b6..3411b4368 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Consenti posizione utente", "Allow Voice Interruption in Call": "Consenti interruzione vocale in chiamata", "Allowed Endpoints": "Endpoint consentiti", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Hai già un account?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Alternativa al top_p e mira a garantire un equilibrio tra qualità e varietà. Il parametro p rappresenta la probabilità minima affinché un token venga considerato, rispetto alla probabilità del token più probabile. Ad esempio, con p=0.05 e il token più probabile con una probabilità di 0.9, i logits con un valore inferiore a 0.045 vengono filtrati.", "Always": "Sempre", @@ -374,6 +376,7 @@ "e.g. My Tools": "ad esempio i miei strumenti", "e.g. my_filter": "ad esempio il mio_filtro", "e.g. my_tools": "ad esempio i miei_strumenti", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "ad esempio strumenti per eseguire varie operazioni", "e.g., 3, 4, 5 (leave blank for default)": "ad esempio, 3, 4, 5 (lascia vuoto per predefinito)", "e.g., en-US,ja-JP (leave blank for auto-detect)": "ad esempio, en-US,ja-JP (lascia vuoto per auto-rilevamento)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Colore esadecimale - Lascia vuoto per il colore predefinito", "Hide": "Nascondi", "Hide Model": "Nascondi modello", + "High Contrast Mode": "", "Home": "Home", "Host": "Host", "How can I help you today?": "Come posso aiutarti oggi?", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index 592b7e3af..bb90c884c 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "ユーザーロケーションの許可", "Allow Voice Interruption in Call": "通話中に音声の割り込みを許可", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "すでにアカウントをお持ちですか?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "常に", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "デフォルトの色を使用する場合は空のままにしてください", "Hide": "非表示", "Hide Model": "モデルを非表示", + "High Contrast Mode": "", "Home": "ホーム", "Host": "ホスト", "How can I help you today?": "今日はどのようにお手伝いしましょうか?", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index 55ae9e241..51bc05f32 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "მომხმარებლის მდებარეობის დაშვება", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "დაშვებული ბოლოწერტილები", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "უკვე გაქვთ ანგარიში?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "ყოველთვის", @@ -374,6 +376,7 @@ "e.g. My Tools": "მაგ: ჩემი ხელსაწყოები", "e.g. my_filter": "მაგ: ჩემი_ფილტრი", "e.g. my_tools": "მაგ: ჩემი_ხელსაწყოები", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "დამალვა", "Hide Model": "", + "High Contrast Mode": "", "Home": "მთავარი", "Host": "ჰოსტი", "How can I help you today?": "რით შემიძლია დაგეხმაროთ დღეს?", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index fdc123b3e..ff3edeb13 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "사용자 위치 활용 허용", "Allow Voice Interruption in Call": "음성 기능에서 음성 방해 허용", "Allowed Endpoints": "허용 엔드포인트", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "이미 계정이 있으신가요?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "top_p의 대안으로, 품질과 다양성 간의 균형을 보장하는 것을 목표로 합니다. 매개변수 p는 가장 가능성이 높은 토큰의 확률 대비 고려될 토큰의 최소 확률을 나타냅니다. 예를 들어, p=0.05이고 가장 가능성이 높은 토큰의 확률이 0.9인 경우, 값이 0.045보다 작은 로짓은 필터링됩니다.", "Always": "항상", @@ -374,6 +376,7 @@ "e.g. My Tools": "예: 내 도구", "e.g. my_filter": "예: my_filter", "e.g. my_tools": "예: my_tools", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "예: 다양한 작업을 수행하는 도구", "e.g., 3, 4, 5 (leave blank for default)": "예: 3, 4, 5 (기본값을 위해 비워 두세요)", "e.g., en-US,ja-JP (leave blank for auto-detect)": "예: en-US, ja-JP (자동 감지를 위해 비워 두세요)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hex 색상 - 기본 색상의 경우 빈 상태로 유지", "Hide": "숨기기", "Hide Model": "모델 숨기기", + "High Contrast Mode": "", "Home": "홈", "Host": "호스트", "How can I help you today?": "오늘 어떻게 도와드릴까요?", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index d20684b29..f26c49a84 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Leisti naudotojo vietos matymą", "Allow Voice Interruption in Call": "Leisti pertraukimą skambučio metu", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Ar jau turite paskyrą?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Paslėpti", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Kuo galėčiau Jums padėti ?", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 109711274..25a9d7d91 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Benarkan Lokasi Pengguna", "Allow Voice Interruption in Call": "Benarkan gangguan suara dalam panggilan", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Telah mempunyai akaun?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Sembunyi", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Bagaimana saya boleh membantu anda hari ini?", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index 07bfdd6e5..526eba9c3 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Aktiver stedstjenester", "Allow Voice Interruption in Call": "Muliggjør taleavbrytelse i samtaler", "Allowed Endpoints": "Tillatte endepunkter", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Har du allerede en konto?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "Alltid", @@ -374,6 +376,7 @@ "e.g. My Tools": "f.eks. Mine verktøy", "e.g. my_filter": "f.eks. mitt_filter", "e.g. my_tools": "f.eks. mine_verktøy", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "f.eks. Verktøy for å gjøre ulike handlinger", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hex-farge – la stå tom for standard farge", "Hide": "Skjul", "Hide Model": "", + "High Contrast Mode": "", "Home": "Hjem", "Host": "Host", "How can I help you today?": "Hva kan jeg hjelpe deg med i dag?", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index 345759b5c..cf8b8440a 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Gebruikerslocatie toestaan", "Allow Voice Interruption in Call": "Stemonderbreking tijdens gesprek toestaan", "Allowed Endpoints": "Endpoints toestaan", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Heb je al een account?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Alternatief voor top_p, en streeft naar een evenwicht tussen kwaliteit en variatie. De parameter p vertegenwoordigt de minimumwaarschijnlijkheid dat een token in aanmerking wordt genomen, in verhouding tot de waarschijnlijkheid van het meest waarschijnlijke token. Bijvoorbeeld, met p=0,05 en het meest waarschijnlijke token met een waarschijnlijkheid van 0,9, worden logits met een waarde kleiner dan 0,045 uitgefilterd.", "Always": "Altijd", @@ -374,6 +376,7 @@ "e.g. My Tools": "bijv. Mijn gereedschappen", "e.g. my_filter": "bijv. mijn_filter", "e.g. my_tools": "bijv. mijn_gereedschappen", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hex-kleur - laat leeg voor standaardkleur", "Hide": "Verberg", "Hide Model": "Verberg model", + "High Contrast Mode": "", "Home": "Thuis", "Host": "Host", "How can I help you today?": "Hoe kan ik je vandaag helpen?", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index e856035f4..e57e5c5f3 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "ਪਹਿਲਾਂ ਹੀ ਖਾਤਾ ਹੈ?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "ਲੁਕਾਓ", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "ਮੈਂ ਅੱਜ ਤੁਹਾਡੀ ਕਿਵੇਂ ਮਦਦ ਕਰ ਸਕਦਾ ਹਾਂ?", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index 8fc6f4ccb..79fc444ee 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Zezwól na lokalizację użytkownika", "Allow Voice Interruption in Call": "Zezwól na przerwanie połączenia głosowego", "Allowed Endpoints": "Dozwolone punkty końcowe", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Czy masz już konto?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "Zawsze", @@ -374,6 +376,7 @@ "e.g. My Tools": "np. Moje narzędzia", "e.g. my_filter": "np. moj_filtr", "e.g. my_tools": "np. moje_narzędzia", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "np. Narzędzia do wykonywania różnych operacji", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Kolor heksadecymalny - pozostaw puste dla domyślnego koloru", "Hide": "Ukryj", "Hide Model": "", + "High Contrast Mode": "", "Home": "Dom", "Host": "Serwer", "How can I help you today?": "Jak mogę Ci dzisiaj pomóc?", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index bb4eb24f3..a7c3a5f0c 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Permitir Localização do Usuário", "Allow Voice Interruption in Call": "Permitir Interrupção de Voz na Chamada", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Já tem uma conta?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "Exemplo: Minhas Ferramentas", "e.g. my_filter": "Exemplo: my_filter", "e.g. my_tools": "Exemplo: my_tools", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Cor Hexadecimal - Deixe em branco para a cor padrão", "Hide": "Ocultar", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "Servidor", "How can I help you today?": "Como posso ajudar você hoje?", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index 0d5537dda..29607a0a5 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Já tem uma conta?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Ocultar", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Como posso ajudá-lo hoje?", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index c08474c6f..b5df5a998 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Permite localizarea utilizatorului", "Allow Voice Interruption in Call": "Permite intreruperea vocii în apel", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Deja ai un cont?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "Întotdeauna", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Ascunde", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Cum te pot ajuta astăzi?", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index ef9e445aa..c0fb18203 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Разрешить доступ к местоположению пользователя", "Allow Voice Interruption in Call": "Разрешить прерывание голоса во время вызова", "Allowed Endpoints": "Разрешенные энд-поинты", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "У вас уже есть учетная запись?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Альтернатива top_p и направлена на обеспечение баланса качества и разнообразия. Параметр p представляет минимальную вероятность того, что токен будет рассмотрен, по сравнению с вероятностью наиболее вероятного токена. Например, при p=0,05 и наиболее вероятном значении токена, имеющем вероятность 0,9, логиты со значением менее 0,045 отфильтровываются.", "Always": "Всегда", @@ -374,6 +376,7 @@ "e.g. My Tools": "например, мой инструмент", "e.g. my_filter": "например, мой_фильтр", "e.g. my_tools": "например, мой_инструмент", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "например, инструменты для выполнения различных операций", "e.g., 3, 4, 5 (leave blank for default)": "например, 3, 4, 5 (оставьте поле пустым по умолчанию)", "e.g., en-US,ja-JP (leave blank for auto-detect)": "например, en-US,ja-JP (оставьте поле пустым для автоматического определения)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Цвет Hex - оставьте пустым значение цвета по умолчанию", "Hide": "Скрыть", "Hide Model": "Скрыть модель", + "High Contrast Mode": "", "Home": "Домой", "Host": "Хост", "How can I help you today?": "Чем я могу помочь вам сегодня?", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 8b23b11f6..5008324f4 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Povoliť užívateľskú polohu", "Allow Voice Interruption in Call": "Povoliť prerušenie hlasu počas hovoru", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Už máte účet?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Skryť", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Ako vám môžem dnes pomôcť?", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index 39caa3c42..790e0ba5d 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Дозволи корисничку локацију", "Allow Voice Interruption in Call": "Дозволи прекид гласа у позиву", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Већ имате налог?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Хекс боја (празно за подразумевано)", "Hide": "Сакриј", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "Домаћин", "How can I help you today?": "Како могу да вам помогнем данас?", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 9265bd166..6f302b12a 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Tillåt användarplats", "Allow Voice Interruption in Call": "Tillåt röstavbrott under samtal", "Allowed Endpoints": "Tillåtna Endpoints", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Har du redan ett konto?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "Alltid", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Dölj", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "Hur kan jag hjälpa dig idag?", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index b8ccf9685..836a8cf99 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "อนุญาตตำแหน่งผู้ใช้", "Allow Voice Interruption in Call": "อนุญาตการแทรกเสียงในสาย", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "มีบัญชีอยู่แล้ว?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "ซ่อน", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "วันนี้ฉันจะช่วยอะไรคุณได้บ้าง?", diff --git a/src/lib/i18n/locales/tk-TW/translation.json b/src/lib/i18n/locales/tk-TW/translation.json index 524cdf2cc..7e4fb8789 100644 --- a/src/lib/i18n/locales/tk-TW/translation.json +++ b/src/lib/i18n/locales/tk-TW/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "", "Allow Voice Interruption in Call": "", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 8e8e1d204..7df6a548f 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Kullanıcı Konumuna İzin Ver", "Allow Voice Interruption in Call": "Aramada Ses Kesintisine İzin Ver", "Allowed Endpoints": "İzin Verilen Uç Noktalar", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Zaten bir hesabınız mı var?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "Daima", @@ -374,6 +376,7 @@ "e.g. My Tools": "örn. Benim Araçlarım", "e.g. my_filter": "örn. benim_filtrem", "e.g. my_tools": "örn. benim_araçlarım", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": " örn.Çeşitli işlemleri gerçekleştirmek için araçlar", "e.g., 3, 4, 5 (leave blank for default)": "örn. 3, 4, 5 (öntanımlı değer için boş bırakın)", "e.g., en-US,ja-JP (leave blank for auto-detect)": "örn. en-US, ja-JP (otomatik tanıma için boş bırakın)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "Gizle", "Hide Model": "Modeli Gizle", + "High Contrast Mode": "", "Home": "", "Host": "Ana bilgisayar", "How can I help you today?": "Bugün size nasıl yardımcı olabilirim?", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index a23306dcd..23587fbc2 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Доступ до місцезнаходження", "Allow Voice Interruption in Call": "Дозволити переривання голосу під час виклику", "Allowed Endpoints": "Дозволені кінцеві точки", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Вже є обліковий запис?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Альтернатива top_p, що спрямована на забезпечення балансу між якістю та різноманітністю. Параметр p представляє мінімальну ймовірність для врахування токена відносно ймовірності найбільш ймовірного токена. Наприклад, при p=0.05 і ймовірності найбільш ймовірного токена 0.9, логіти зі значенням менше 0.045 відфільтровуються.", "Always": "Завжди", @@ -374,6 +376,7 @@ "e.g. My Tools": "напр., Мої інструменти", "e.g. my_filter": "напр., my_filter", "e.g. my_tools": "напр., my_tools", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "напр., Інструменти для виконання різних операцій", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Шістнадцятковий колір — залиште порожнім для кольору за замовчуванням", "Hide": "Приховати", "Hide Model": "Приховати модель", + "High Contrast Mode": "", "Home": "Головна", "Host": "Хост", "How can I help you today?": "Чим я можу допомогти вам сьогодні?", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index 19eb2d18a..5821934ae 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "صارف کی مقام کی اجازت دیں", "Allow Voice Interruption in Call": "کال میں آواز کی مداخلت کی اجازت دیں", "Allowed Endpoints": "", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "کیا پہلے سے اکاؤنٹ موجود ہے؟", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "", "Always": "", @@ -374,6 +376,7 @@ "e.g. My Tools": "", "e.g. my_filter": "", "e.g. my_tools": "", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "", "Hide": "چھپائیں", "Hide Model": "", + "High Contrast Mode": "", "Home": "", "Host": "", "How can I help you today?": "میں آج آپ کی کس طرح مدد کر سکتا ہوں؟", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index ea2ee9e42..4339b004f 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "Cho phép sử dụng vị trí người dùng", "Allow Voice Interruption in Call": "Cho phép gián đoạn giọng nói trong cuộc gọi", "Allowed Endpoints": "Các Endpoint được phép", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "Bạn đã có tài khoản?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "Thay thế cho top_p, nhằm đảm bảo cân bằng giữa chất lượng và sự đa dạng. Tham số p đại diện cho xác suất tối thiểu để một token được xem xét, tương đối so với xác suất của token có khả năng cao nhất. Ví dụ: với p=0.05 và token có khả năng cao nhất có xác suất 0.9, các logit có giá trị nhỏ hơn 0.045 sẽ bị lọc ra.", "Always": "Luôn luôn", @@ -374,6 +376,7 @@ "e.g. My Tools": "vd: Công cụ của tôi", "e.g. my_filter": "vd: bo_loc_cua_toi", "e.g. my_tools": "vd: cong_cu_cua_toi", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "vd: Các công cụ để thực hiện các hoạt động khác nhau", "e.g., 3, 4, 5 (leave blank for default)": "", "e.g., en-US,ja-JP (leave blank for auto-detect)": "", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Màu Hex - Để trống để dùng màu mặc định", "Hide": "Ẩn", "Hide Model": "Ẩn Mô hình", + "High Contrast Mode": "", "Home": "Trang chủ", "Host": "Host", "How can I help you today?": "Tôi có thể giúp gì cho bạn hôm nay?", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index 8e665dc3f..e7647edab 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "允许获取您的位置", "Allow Voice Interruption in Call": "允许通话中的打断语音", "Allowed Endpoints": "允许的 API 端点", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "已经拥有账号了?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "top_p 的替代方法,旨在确保质量和多样性之间的平衡。参数 p 表示相对于最可能令牌的概率,一个令牌被考虑的最小概率。例如,当 p=0.05 且最可能的令牌概率为 0.9 时,概率值小于 0.045 的词元将被过滤掉。", "Always": "保持", @@ -374,6 +376,7 @@ "e.g. My Tools": "例如:我的工具", "e.g. my_filter": "例如:my_filter", "e.g. my_tools": "例如:my_tools", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "例如:用于执行各种操作的工具", "e.g., 3, 4, 5 (leave blank for default)": "例如:3、4、5(留空为默认值)", "e.g., en-US,ja-JP (leave blank for auto-detect)": "例如,'en-US,ja-JP'(留空以便自动检测)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "十六进制颜色代码 - 留空使用默认颜色", "Hide": "隐藏", "Hide Model": "隐藏模型", + "High Contrast Mode": "", "Home": "主页", "Host": "主机", "How can I help you today?": "有什么我能帮您的吗?", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index d31a8e54c..39f782763 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -74,6 +74,8 @@ "Allow User Location": "允許使用者位置", "Allow Voice Interruption in Call": "允許在通話中打斷語音", "Allowed Endpoints": "允許的端點", + "Allowed File Extensions": "", + "Allowed file extensions for upload. Separate multiple extensions with commas. Leave empty for all file types.": "", "Already have an account?": "已經有帳號了嗎?", "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out.": "top_p 的替代方案,用於確保品質與多樣性之間的平衡。參數 p 代表一個 token 被考慮的最低機率,相對於最有可能 token 的機率。例如,當 p=0.05 且最有可能 token 的機率為 0.9 時,機率小於 0.045 的 logits 將被過濾掉。", "Always": "總是", @@ -374,6 +376,7 @@ "e.g. My Tools": "例如:我的工具", "e.g. my_filter": "例如:my_filter", "e.g. my_tools": "例如:my_tools", + "e.g. pdf, docx, txt": "", "e.g. Tools for performing various operations": "例如:用於執行各種操作的工具", "e.g., 3, 4, 5 (leave blank for default)": "例如:3、4、5(留空使用預設值)", "e.g., en-US,ja-JP (leave blank for auto-detect)": "例如:en-US, ja-JP(留空以自動偵測)", @@ -638,6 +641,7 @@ "Hex Color - Leave empty for default color": "Hex 顔色 —— 留空以使用預設顔色", "Hide": "隱藏", "Hide Model": "隱藏模型", + "High Contrast Mode": "", "Home": "首頁", "Host": "主機", "How can I help you today?": "今天我能為您做些什麼?",