diff --git a/backend/open_webui/main.py b/backend/open_webui/main.py index 013bf463b7..82eed2f4d6 100644 --- a/backend/open_webui/main.py +++ b/backend/open_webui/main.py @@ -1344,9 +1344,7 @@ async def chat_completion( user_message = metadata.get('user_message') or {} selected_chat_models = user_message.get('models') if isinstance(user_message, dict) else None if not isinstance(selected_chat_models, list) or not selected_chat_models: - selected_chat_models = [ - entry.get('model_id') for entry in message_ids if entry.get('model_id') - ] + selected_chat_models = [entry.get('model_id') for entry in message_ids if entry.get('model_id')] # Persist chat-level fields the frontend used to save on every message. # The old frontend saveChatHandler did this on every message; diff --git a/backend/open_webui/migrations/versions/b10670c03dd5_update_user_table.py b/backend/open_webui/migrations/versions/b10670c03dd5_update_user_table.py index 34e0e27068..c3965dbd7c 100644 --- a/backend/open_webui/migrations/versions/b10670c03dd5_update_user_table.py +++ b/backend/open_webui/migrations/versions/b10670c03dd5_update_user_table.py @@ -89,9 +89,7 @@ def _convert_column_to_json(table: str, column: str): parsed = None conn.execute( - sa.update( - sa.table(table, sa.column('id'), sa.column(f'{column}_json', sa.JSON)) - ) + sa.update(sa.table(table, sa.column('id'), sa.column(f'{column}_json', sa.JSON))) .where(sa.column('id') == uid) .values({f'{column}_json': parsed}) ) @@ -122,9 +120,7 @@ def _convert_column_to_text(table: str, column: str): for uid, raw in rows: conn.execute( - sa.update( - sa.table(table, sa.column('id'), sa.column(f'{column}_text', sa.Text)) - ) + sa.update(sa.table(table, sa.column('id'), sa.column(f'{column}_text', sa.Text))) .where(sa.column('id') == uid) .values({f'{column}_text': json.dumps(raw) if raw is not None else None}) ) diff --git a/backend/open_webui/routers/audio.py b/backend/open_webui/routers/audio.py index f062b51a37..47dec5fa4c 100644 --- a/backend/open_webui/routers/audio.py +++ b/backend/open_webui/routers/audio.py @@ -648,9 +648,7 @@ async def _transcribe_openai(request, file_path, filename, languages, file_dir, session = await get_session() api_key = await Config.get('audio.stt.openai.api_key') api_base_url = await Config.get('audio.stt.openai.api_base_url') - request_format = ( - await Config.get('audio.stt.openai.api_request_format') or 'multipart' - ).lower() + request_format = (await Config.get('audio.stt.openai.api_request_format') or 'multipart').lower() headers = {'Authorization': f'Bearer {api_key}'} if user and ENABLE_FORWARD_USER_INFO_HEADERS: diff --git a/backend/open_webui/utils/middleware.py b/backend/open_webui/utils/middleware.py index 13597731b4..b507aa66c5 100644 --- a/backend/open_webui/utils/middleware.py +++ b/backend/open_webui/utils/middleware.py @@ -3471,7 +3471,6 @@ async def non_streaming_chat_response_handler(response, ctx): content = choices[0].get('message', {}).get('content') if choices else '' if choices and (content or response_output): - if content or response_output: await event_emitter( { @@ -4307,11 +4306,7 @@ async def streaming_chat_response_handler(response, ctx): if reasoning_content or reasoning_details: reasoning_item = ( next( - ( - item - for item in reversed(output) - if item.get('type') == 'reasoning' - ), + (item for item in reversed(output) if item.get('type') == 'reasoning'), None, ) if reasoning_details and not reasoning_content diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index a12c7cf811..3cd0e744ce 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -1309,6 +1309,7 @@ "Jina API Key": "", "join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "معاينة JSON", "JSON Spec": "", "July": "يوليو", @@ -1441,6 +1442,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1520,6 +1522,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1909,6 +1912,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2422,7 +2426,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "جاري التحميل", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index dcbabc2e38..ffae9d056f 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -1309,6 +1309,7 @@ "Jina API Key": "مفتاح API لـ Jina", "join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "معاينة JSON", "JSON Spec": "", "July": "يوليو", @@ -1441,6 +1442,7 @@ "Memory added successfully": "تم إضافة الذاكرة بنجاح", "Memory cleared successfully": "تم مسح الذاكرة بنجاح", "Memory deleted successfully": "تم حذف الذاكرة بنجاح", + "Memory System Context": "", "Memory updated successfully": "تم تحديث الذاكرة بنجاح", "Merge Accounts by Email": "", "Merge Responses": "دمج الردود", @@ -1520,6 +1522,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1909,6 +1912,7 @@ "Reply in Thread": "الرد داخل سلسلة الرسائل", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2422,7 +2426,6 @@ "Upload Pipeline": "رفع خط المعالجة", "Upload profile image": "", "Upload Progress": "جاري التحميل", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/az-AZ/translation.json b/src/lib/i18n/locales/az-AZ/translation.json index 518049bbee..34ec85c068 100644 --- a/src/lib/i18n/locales/az-AZ/translation.json +++ b/src/lib/i18n/locales/az-AZ/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API Açarı", "join our Discord for help.": "kömək üçün Discord kanalımıza qoşulun.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON Önizləmə", "JSON Spec": "JSON Spesifikasiyası", "July": "İyul", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Yaddaş uğurla əlavə edildi", "Memory cleared successfully": "Yaddaş uğurla təmizləndi", "Memory deleted successfully": "Yaddaş uğurla silindi", + "Memory System Context": "", "Memory updated successfully": "Yaddaş uğurla yeniləndi", "Merge Accounts by Email": "", "Merge Responses": "Cavabları birləşdir", @@ -1492,6 +1494,7 @@ "More Options": "Daha Çox Seçim", "Move": "Köçür", "Moved {{name}}": "{{name}} köçürüldü", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "Mənim Terminalım", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Mövzu daxilində cavabla", "Reply to thread...": "Mövzuya cavab yaz...", "Replying to {{NAME}}": "{{NAME}} adlı istifadəçiyə cavab verilir", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "tələb olunur", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Pipeline yüklə", "Upload profile image": "Profil şəklini yüklə", "Upload Progress": "Yükləmə vəziyyəti", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Yükləmə vəziyyəti: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Yüklənmiş fayllar və ya şəkillər", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "Yüklənir...", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 0312e685f6..cd644ff9b0 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "API ключ за Jina", "join our Discord for help.": "свържете се с нашия Discord за помощ.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON Преглед", "JSON Spec": "", "July": "Юли", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Паметта е добавена успешно", "Memory cleared successfully": "Паметта е изчистена успешно", "Memory deleted successfully": "Паметта е изтрита успешно", + "Memory System Context": "", "Memory updated successfully": "Паметта е актуализирана успешно", "Merge Accounts by Email": "", "Merge Responses": "Обединяване на отговори", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Отговори в тред", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Качване на конвейер", "Upload profile image": "", "Upload Progress": "Прогрес на качването", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index 4b94fc6a54..98f1831cfd 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "", "join our Discord for help.": "সাহায্যের জন্য আমাদের Discord-এ যুক্ত হোন", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON প্রিভিউ", "JSON Spec": "", "July": "জুলাই", @@ -1413,6 +1414,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "আপলোড হচ্ছে", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index 02d33df7f5..9899481cd9 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -1274,6 +1274,7 @@ "Jina API Key": "Jina API ལྡེ་མིག", "join our Discord for help.": "རོགས་རམ་ཆེད་དུ་ང་ཚོའི་ Discord ལ་མཉམ་ཞུགས་བྱེད་པ།", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON སྔོན་ལྟ།", "JSON Spec": "", "July": "ཟླ་བ་བདུན་པ།", @@ -1406,6 +1407,7 @@ "Memory added successfully": "དྲན་ཤེས་ལེགས་པར་བསྣན་ཟིན།", "Memory cleared successfully": "དྲན་ཤེས་ལེགས་པར་གཙང་སེལ་བྱས་ཟིན།", "Memory deleted successfully": "དྲན་ཤེས་ལེགས་པར་བསུབས་ཟིན།", + "Memory System Context": "", "Memory updated successfully": "དྲན་ཤེས་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།", "Merge Accounts by Email": "", "Merge Responses": "ལན་ཟླ་སྒྲིལ།", @@ -1485,6 +1487,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1864,6 +1867,7 @@ "Reply in Thread": "བརྗོད་གཞིའི་ནང་ལན་འདེབས།", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2367,7 +2371,6 @@ "Upload Pipeline": "རྒྱུ་ལམ་སྤར་བ།", "Upload profile image": "", "Upload Progress": "སྤར་བའི་འཕེལ་རིམ།", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/bs-BA/translation.json b/src/lib/i18n/locales/bs-BA/translation.json index 5a770cfec0..5ebdbce809 100644 --- a/src/lib/i18n/locales/bs-BA/translation.json +++ b/src/lib/i18n/locales/bs-BA/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "", "join our Discord for help.": "pridružite se našem Discordu za pomoć.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON pretpregled", "JSON Spec": "", "July": "Juli", @@ -1420,6 +1421,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1499,6 +1501,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1882,6 +1885,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Prijenos kanala", "Upload profile image": "", "Upload Progress": "Napredak učitavanja", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index 4295f6fcab..e0f4908999 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "Clau API de Jina", "join our Discord for help.": "uneix-te al nostre Discord per obtenir ajuda.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Vista prèvia del document JSON", "JSON Spec": "Especificacions del JSON", "July": "Juliol", @@ -1420,6 +1421,7 @@ "Memory added successfully": "Memòria afegida correctament", "Memory cleared successfully": "Memòria eliminada correctament", "Memory deleted successfully": "Memòria eliminada correctament", + "Memory System Context": "", "Memory updated successfully": "Memòria actualitzada correctament", "Merge Accounts by Email": "Combina els comptes per correu electrònic", "Merge Responses": "Fusionar les respostes", @@ -1499,6 +1501,7 @@ "More Options": "Més opcions", "Move": "Moure", "Moved {{name}}": "S'ha mogut {{name}}", + "Multipart Upload": "", "Mute": "Silencia", "Muted": "Silenciat", "My Terminal": "El meu terminal", @@ -1882,6 +1885,7 @@ "Reply in Thread": "Respondre al fil", "Reply to thread...": "Respondre al fil...", "Replying to {{NAME}}": "Responent a {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "Demana als usuaris que confirmin abans d'utilitzar la cerca web.", "required": "necessari", "Reranking Batch Size": "Mida del lot de reclassificació", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Pujar una Pipeline", "Upload profile image": "Pujar imatge de perfil", "Upload Progress": "Progrés de càrrega", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progrés de la pujada: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Arxius o imatges pujats", "Uploading {{current}}/{{total}}: {{file}}": "Pujant {{current}}/{{total}}: {{arxiu}}", "Uploading...": "Pujant...", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index 1386149546..1499581685 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "", "join our Discord for help.": "Apil sa among Discord alang sa tabang.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "", "JSON Spec": "", "July": "", @@ -1413,6 +1414,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "Pag-uswag sa Pag-upload", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index c418e4b0a3..f828b4f968 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -1295,6 +1295,7 @@ "Jina API Key": "API klíč pro Jina", "join our Discord for help.": "připojte se na náš Discord pro pomoc.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Náhled JSON", "JSON Spec": "", "July": "Červenec", @@ -1427,6 +1428,7 @@ "Memory added successfully": "Vzpomínka byla úspěšně přidána.", "Memory cleared successfully": "Paměť byla úspěšně vymazána.", "Memory deleted successfully": "Vzpomínka byla úspěšně smazána", + "Memory System Context": "", "Memory updated successfully": "Vzpomínka byla úspěšně aktualizována", "Merge Accounts by Email": "", "Merge Responses": "Sloučit odpovědi", @@ -1506,6 +1508,7 @@ "More Options": "Další možnosti", "Move": "Přesunout", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1891,6 +1894,7 @@ "Reply in Thread": "Odpovědět ve vlákně", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2400,7 +2404,6 @@ "Upload Pipeline": "Nahrát pipeline", "Upload profile image": "", "Upload Progress": "Průběh nahrávání", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Průběh nahrávání: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 020b4c1bd4..972c00bbca 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API-nøgle", "join our Discord for help.": "tilslut dig vores Discord for at få hjælp.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON-forhåndsvisning", "JSON Spec": "JSON spec", "July": "Juli", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Hukommelse tilføjet.", "Memory cleared successfully": "Hukommelse ryddet.", "Memory deleted successfully": "Hukommelse slettet.", + "Memory System Context": "", "Memory updated successfully": "Hukommelse opdateret.", "Merge Accounts by Email": "", "Merge Responses": "Flet svar", @@ -1492,6 +1494,7 @@ "More Options": "Flere muligheder", "Move": "Flyt", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Svar i tråd", "Reply to thread...": "Svar på tråd...", "Replying to {{NAME}}": "Svarer {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "påkrævet", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Upload pipeline", "Upload profile image": "", "Upload Progress": "Uploadfremdrift", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Uploadfremdrift: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index 1dbc3562b0..cc21b20fbf 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina-API-Schlüssel", "join our Discord for help.": "Treten Sie unserem Discord bei, um Hilfe zu erhalten.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON-Vorschau", "JSON Spec": "JSON-Spezifikation", "July": "Juli", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Erinnerung erfolgreich hinzugefügt", "Memory cleared successfully": "Erinnerungen erfolgreich gelöscht", "Memory deleted successfully": "Erinnerung erfolgreich gelöscht", + "Memory System Context": "", "Memory updated successfully": "Erinnerung erfolgreich aktualisiert", "Merge Accounts by Email": "Konten anhand der E-Mail-Adresse zusammenführen", "Merge Responses": "Antworten zusammenführen", @@ -1492,6 +1494,7 @@ "More Options": "Mehr Optionen", "Move": "Verschieben", "Moved {{name}}": "{{name}} verschoben", + "Multipart Upload": "", "Mute": "Stummschalten", "Muted": "Stumm", "My Terminal": "Meine Terminals", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Im Thread antworten", "Reply to thread...": "Im Thread antworten...", "Replying to {{NAME}}": "Antwort an {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "Benutzer müssen vor der Nutzung der Websuche bestätigen.", "required": "erforderlich", "Reranking Batch Size": "Reranking-Batch-Größe", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Pipeline hochladen", "Upload profile image": "Profilbild hochladen", "Upload Progress": "Upload-Fortschritt", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Fortschritt: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Hochgeladene Dateien oder Bilder", "Uploading {{current}}/{{total}}: {{file}}": "Wird hochgeladen {{current}}/{{total}}: {{file}}", "Uploading...": "Lade hoch...", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index b24f749f08..aa3aaa9329 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "", "join our Discord for help.": "join our Discord for help.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "", "JSON Spec": "", "July": "", @@ -1413,6 +1414,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "Upload Progress much progress", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index b5fab9536f..6a31b03f72 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Κλειδί API Jina", "join our Discord for help.": "συμμετέχετε στο Discord μας για βοήθεια.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Προεπισκόπηση JSON", "JSON Spec": "Προδιαγραφή JSON", "July": "Ιούλιος", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Η μνήμη προστέθηκε με επιτυχία", "Memory cleared successfully": "Η μνήμη καθαρίστηκε με επιτυχία", "Memory deleted successfully": "Η μνήμη διαγράφηκε με επιτυχία", + "Memory System Context": "", "Memory updated successfully": "Η μνήμη ενημερώθηκε με επιτυχία", "Merge Accounts by Email": "", "Merge Responses": "Συγχώνευση Απαντήσεων", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "Μετακίνηση", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Απάντηση στο Νήμα Συζήτησης", "Reply to thread...": "Απάντηση στο νήμα συζήτησης...", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "απαιτείται", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Ανέβασμα Pipeline", "Upload profile image": "", "Upload Progress": "Πρόοδος Ανεβάσματος", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index 999dd8a5e9..7c07701ef1 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "", "join our Discord for help.": "", "JSON": "", + "JSON Base64": "", "JSON Preview": "", "JSON Spec": "", "July": "", @@ -1413,6 +1414,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index 4accabe7b4..5351f84f03 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "", "join our Discord for help.": "", "JSON": "", + "JSON Base64": "", "JSON Preview": "", "JSON Spec": "", "July": "", @@ -1413,6 +1414,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index bc53b50c05..1aef653c07 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "Clave API de Jina", "join our Discord for help.": "unete a nuestro Discord para ayuda.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Prevista del JSON", "JSON Spec": "Especif. JSON", "July": "Julio", @@ -1420,6 +1421,7 @@ "Memory added successfully": "Memoria añadida correctamente", "Memory cleared successfully": "Memoria liberada correctamente", "Memory deleted successfully": "Memoria borrada correctamente", + "Memory System Context": "", "Memory updated successfully": "Memoria actualizada correctamente", "Merge Accounts by Email": "", "Merge Responses": "Fusionar Respuestas", @@ -1499,6 +1501,7 @@ "More Options": "Más Opciones", "Move": "Mover", "Moved {{name}}": "Movido {{name}}:", + "Multipart Upload": "", "Mute": "Silenciar", "Muted": "Silenciado", "My Terminal": "Mi Terminal", @@ -1882,6 +1885,7 @@ "Reply in Thread": "Responder en Hilo", "Reply to thread...": "Responder al hilo...", "Replying to {{NAME}}": "Responder a {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "requerido", "Reranking Batch Size": "Tamaño del lote de Reclasificación", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Subir Tubería", "Upload profile image": "Subir imagen del perfil", "Upload Progress": "Progreso de la Subida", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progreso de la Subida: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Archivos o imágenes subidos", "Uploading {{current}}/{{total}}: {{file}}": "Subiendo {{current}}/{{total}}: {{file}}", "Uploading...": "Subiendo...", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index 2787fee63e..508f728ffd 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API võti", "join our Discord for help.": "liituge abi saamiseks meie Discordiga.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON eelvaade", "JSON Spec": "JSON spetsifikatsioon", "July": "Juuli", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Mälu edukalt lisatud", "Memory cleared successfully": "Mälu edukalt tühjendatud", "Memory deleted successfully": "Mälu edukalt kustutatud", + "Memory System Context": "", "Memory updated successfully": "Mälu edukalt uuendatud", "Merge Accounts by Email": "", "Merge Responses": "Ühenda vastused", @@ -1492,6 +1494,7 @@ "More Options": "Rohkem valikuid", "Move": "Teisalda", "Moved {{name}}": "Teisaldatud {{name}}", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "Minu terminal", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Vasta lõimes", "Reply to thread...": "Vasta lõimele...", "Replying to {{NAME}}": "Vastamine kasutajale {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "nõutav", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Laadi torustik üles", "Upload profile image": "Laadi üles profiilipilt", "Upload Progress": "Üleslaadimise progress", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Üleslaadimise edenemine: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Üleslaaditud failid või pildid", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "Üleslaadimine...", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index 72c2350c0f..82fd119c74 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API Gakoa", "join our Discord for help.": "batu gure Discord-era laguntzarako.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON Aurrebista", "JSON Spec": "", "July": "Uztaila", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Memoria ongi gehitu da", "Memory cleared successfully": "Memoria ongi garbitu da", "Memory deleted successfully": "Memoria ongi ezabatu da", + "Memory System Context": "", "Memory updated successfully": "Memoria ongi eguneratu da", "Merge Accounts by Email": "", "Merge Responses": "Batu erantzunak", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Kargatu Pipeline-a", "Upload profile image": "", "Upload Progress": "Kargaren aurrerapena", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index 033267c9be..aba343a91e 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "کلید API جینا", "join our Discord for help.": "برای کمک به دیسکورد ما بپیوندید.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "پیش نمایش JSON", "JSON Spec": "مشخصات JSON", "July": "ژوئن", @@ -1413,6 +1414,7 @@ "Memory added successfully": "حافظه با موفقیت اضافه شد", "Memory cleared successfully": "حافظه با موفقیت پاک شد", "Memory deleted successfully": "حافظه با موفقیت حذف شد", + "Memory System Context": "", "Memory updated successfully": "حافظه با موفقیت به\u200cروز شد", "Merge Accounts by Email": "", "Merge Responses": "ادغام پاسخ\u200cها", @@ -1492,6 +1494,7 @@ "More Options": "گزینه\u200cهای بیشتر", "Move": "انتقال", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "پاسخ در رشته", "Reply to thread...": "پاسخ به رشته...", "Replying to {{NAME}}": "در حال پاسخ به {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "مورد نیاز", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "خط تولید آپلود", "Upload profile image": "", "Upload Progress": "پیشرفت آپلود", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "پیشرفت آپلود: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}٪)", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index ceba7b4570..e1e5099555 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API -avain", "join our Discord for help.": "liity Discordiimme saadaksesi apua.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON-esikatselu", "JSON Spec": "JSON Spec", "July": "heinäkuu", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Muisti lisätty onnistuneesti", "Memory cleared successfully": "Muisti tyhjennetty onnistuneesti", "Memory deleted successfully": "Muisti poistettu onnistuneesti", + "Memory System Context": "", "Memory updated successfully": "Muisti päivitetty onnistuneesti", "Merge Accounts by Email": "", "Merge Responses": "Yhdistä vastaukset", @@ -1492,6 +1494,7 @@ "More Options": "Lisää vaihtoehtoja", "Move": "Siirrä", "Moved {{name}}": "Siirretty {{name}}", + "Multipart Upload": "", "Mute": "Mykistä", "Muted": "Mykistetty", "My Terminal": "Minun pääte", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Vastaa ketjussa", "Reply to thread...": "Vastaa ketjussa...", "Replying to {{NAME}}": "Vastaa {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "vaaditaan", "Reranking Batch Size": "Uudelleenpisteytyksen eräkoko", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Lataa putki", "Upload profile image": "Lataa profiilikuva", "Upload Progress": "Latauksen edistyminen", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Latauksen edistyminen: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Ladatut tiedostot tai kuvat", "Uploading {{current}}/{{total}}: {{file}}": "Ladataan {{current}}/{{total}}: {{file}}", "Uploading...": "Ladataan...", diff --git a/src/lib/i18n/locales/fil-PH/translation.json b/src/lib/i18n/locales/fil-PH/translation.json index cf4161c8dd..0269d73712 100644 --- a/src/lib/i18n/locales/fil-PH/translation.json +++ b/src/lib/i18n/locales/fil-PH/translation.json @@ -1282,6 +1282,7 @@ "Jina API Key": "", "join our Discord for help.": "", "JSON": "", + "JSON Base64": "", "JSON Preview": "", "JSON Spec": "", "July": "Hulyo", @@ -1414,6 +1415,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1493,6 +1495,7 @@ "More Options": "Higit pang Mga Opsyon", "Move": "Ilipat", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1874,6 +1877,7 @@ "Reply in Thread": "Sumagot sa Thread", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2381,7 +2385,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index ecff2af148..88146ac243 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "Clé API Jina", "join our Discord for help.": "Rejoignez notre Discord pour obtenir de l'aide.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Aperçu JSON", "JSON Spec": "", "July": "Juillet", @@ -1420,6 +1421,7 @@ "Memory added successfully": "Souvenir ajoutée avec succès", "Memory cleared successfully": "La mémoire a été effacée avec succès", "Memory deleted successfully": "Le souvenir a été supprimé avec succès", + "Memory System Context": "", "Memory updated successfully": "Le souvenir a été mis à jour avec succès", "Merge Accounts by Email": "", "Merge Responses": "Fusionner les réponses", @@ -1499,6 +1501,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1882,6 +1885,7 @@ "Reply in Thread": "Répondre dans le fil de discussion", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Pipeline de téléchargement", "Upload profile image": "", "Upload Progress": "Progression de l'envoi", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index 332fa63548..831cc229d5 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "Clé API Jina", "join our Discord for help.": "Rejoignez notre Discord pour obtenir de l'aide.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Aperçu JSON", "JSON Spec": "Spécification JSON", "July": "Juillet", @@ -1420,6 +1421,7 @@ "Memory added successfully": "Souvenir ajouté avec succès", "Memory cleared successfully": "Souvenir effacé avec succès", "Memory deleted successfully": "Souvenir supprimé avec succès", + "Memory System Context": "", "Memory updated successfully": "Souvenir mis à jour avec succès", "Merge Accounts by Email": "", "Merge Responses": "Fusionner les réponses", @@ -1499,6 +1501,7 @@ "More Options": "Plus d'options", "Move": "Déplacer", "Moved {{name}}": "{{name}} déplacé", + "Multipart Upload": "", "Mute": "Désactiver le son", "Muted": "Son désactivé", "My Terminal": "Mon terminal", @@ -1882,6 +1885,7 @@ "Reply in Thread": "Répondre dans le fil de discussion", "Reply to thread...": "Répondre au fil de discussion...", "Replying to {{NAME}}": "En réponse à {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "requis", "Reranking Batch Size": "", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Pipeline de téléchargement", "Upload profile image": "Téléverser une image de profil", "Upload Progress": "Progression de l'envoi", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progression du téléchargement\u00a0: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Les fichiers ou images téléversés", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "Téléversement en cours...", diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index 9c7cd51f42..bf9d338734 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "chave API de Jina", "join our Discord for help.": "Únase o noso Discord para obter axuda.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Vista previa de JSON", "JSON Spec": "", "July": "Xullo", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Memoria añadida correctamente", "Memory cleared successfully": "Memoria liberada correctamente", "Memory deleted successfully": "Memoria borrada correctamente", + "Memory System Context": "", "Memory updated successfully": "Memoria actualizada correctamente", "Merge Accounts by Email": "", "Merge Responses": "Fusionar Respuestas", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Responder no hilo", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Subir Pipeline", "Upload profile image": "", "Upload Progress": "Progreso de carga", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index 94522437f6..6816864663 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "", "join our Discord for help.": "הצטרף ל-Discord שלנו לעזרה.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "תצוגה מקדימה של JSON", "JSON Spec": "", "July": "יולי", @@ -1420,6 +1421,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1499,6 +1501,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1882,6 +1885,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "תקדמות העלאה", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 06a8e5545f..fcdba9d91e 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "", "join our Discord for help.": "मदद के लिए हमारे डिस्कोर्ड में शामिल हों।", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON पूर्वावलोकन", "JSON Spec": "", "July": "जुलाई", @@ -1413,6 +1414,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "प्रगति अपलोड करें", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index 8268bf43aa..da773e3976 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "", "join our Discord for help.": "pridružite se našem Discordu za pomoć.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON pretpregled", "JSON Spec": "", "July": "Srpanj", @@ -1420,6 +1421,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1499,6 +1501,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1882,6 +1885,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Prijenos kanala", "Upload profile image": "", "Upload Progress": "Napredak učitavanja", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 4bb548330e..9c50633c98 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API kulcs", "join our Discord for help.": "Csatlakozz a Discord szerverünkhöz segítségért.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON előnézet", "JSON Spec": "", "July": "Július", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Memória sikeresen hozzáadva", "Memory cleared successfully": "Memória sikeresen törölve", "Memory deleted successfully": "Memória sikeresen törölve", + "Memory System Context": "", "Memory updated successfully": "Memória sikeresen frissítve", "Merge Accounts by Email": "", "Merge Responses": "Válaszok egyesítése", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Válasz szálban", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Folyamat feltöltése", "Upload profile image": "", "Upload Progress": "Feltöltési folyamat", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 2332a3b4f4..e2eb58cd52 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -1274,6 +1274,7 @@ "Jina API Key": "", "join our Discord for help.": "bergabunglah dengan Discord kami untuk mendapatkan bantuan.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Pratinjau JSON", "JSON Spec": "", "July": "Juli", @@ -1406,6 +1407,7 @@ "Memory added successfully": "Memori berhasil ditambahkan", "Memory cleared successfully": "Memori berhasil dihapus", "Memory deleted successfully": "Memori berhasil dihapus", + "Memory System Context": "", "Memory updated successfully": "Memori berhasil diperbarui", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1485,6 +1487,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1864,6 +1867,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2367,7 +2371,6 @@ "Upload Pipeline": "Unggah Pipeline", "Upload profile image": "", "Upload Progress": "Kemajuan Unggah", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index 14499f41fb..e86d7e84dd 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API Eochair", "join our Discord for help.": "bí inár Discord chun cabhair a fháil.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Réamhamharc JSON", "JSON Spec": "Sonraíocht JSON", "July": "Iúil", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Cuireadh cuimhne leis go", "Memory cleared successfully": "Cuimhne glanta go rathúil", "Memory deleted successfully": "Cuimhne scriosta go rathúil", + "Memory System Context": "", "Memory updated successfully": "Cuimhne nuashonraithe", "Merge Accounts by Email": "", "Merge Responses": "Cumaisc Freagraí", @@ -1492,6 +1494,7 @@ "More Options": "Tuilleadh Roghanna", "Move": "Bog", "Moved {{name}}": "Bogadh {{name}}", + "Multipart Upload": "", "Mute": "Balbhaigh", "Muted": "Balbhaithe", "My Terminal": "Mo Teirminéal", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Freagra i Snáithe", "Reply to thread...": "Freagra ar an snáithe...", "Replying to {{NAME}}": "Ag freagairt do {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "riachtanach", "Reranking Batch Size": "Méid an Bhaisc Athrangaithe", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Uaslódáil píblíne", "Upload profile image": "Uaslódáil íomhá próifíle", "Upload Progress": "Dul Chun Cinn an Uaslódála", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Dul Chun Cinn Uaslódála: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Comhaid nó íomhánna uaslódáilte", "Uploading {{current}}/{{total}}: {{file}}": "Ag uaslódáil {{current}}/{{total}}: {{file}}", "Uploading...": "Ag uaslódáil...", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 6fe79657b1..8d9998840f 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "Chiave API Jina", "join our Discord for help.": "unisciti al nostro Discord per ricevere aiuto.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Anteprima JSON", "JSON Spec": "", "July": "Luglio", @@ -1420,6 +1421,7 @@ "Memory added successfully": "Memoria aggiunta con successo", "Memory cleared successfully": "Memoria cancellata con successo", "Memory deleted successfully": "Memoria eliminata con successo", + "Memory System Context": "", "Memory updated successfully": "Memoria aggiornata con successo", "Merge Accounts by Email": "", "Merge Responses": "Unisci Risposte", @@ -1499,6 +1501,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1882,6 +1885,7 @@ "Reply in Thread": "Rispondi nel thread", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Carica Pipeline", "Upload profile image": "", "Upload Progress": "Avanzamento Caricamento", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index 28d85c798c..53e2ec4e4d 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -1274,6 +1274,7 @@ "Jina API Key": "Jina APIキー", "join our Discord for help.": "ヘルプについては、Discord に参加してください。", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON プレビュー", "JSON Spec": "", "July": "7月", @@ -1406,6 +1407,7 @@ "Memory added successfully": "メモリに追加されました。", "Memory cleared successfully": "メモリをクリアしました。", "Memory deleted successfully": "メモリを削除しました。", + "Memory System Context": "", "Memory updated successfully": "メモリアップデート成功", "Merge Accounts by Email": "", "Merge Responses": "応答を統合", @@ -1485,6 +1487,7 @@ "More Options": "詳細オプション", "Move": "移動", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1864,6 +1867,7 @@ "Reply in Thread": "スレッドで返信", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2367,7 +2371,6 @@ "Upload Pipeline": "パイプラインをアップロード", "Upload profile image": "", "Upload Progress": "アップロードの進行状況", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "アップロード状況: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index e78587a669..8a2fa8607f 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API-ის გასაღები", "join our Discord for help.": "დახმარებისთვის შემოდით ჩვენს Discord-ზე.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON გადახედვა", "JSON Spec": "JSON-ის სპეციფიკაცია", "July": "ივლისი", @@ -1413,6 +1414,7 @@ "Memory added successfully": "მოგონება წარმატებით დაემატა", "Memory cleared successfully": "მოგონება წარმატებით გასუფთავდა", "Memory deleted successfully": "მოგონება წარმატებით წაიშალა", + "Memory System Context": "", "Memory updated successfully": "მოგონება წარმატებით განახლდა", "Merge Accounts by Email": "", "Merge Responses": "პასუხების შერწყმა", @@ -1492,6 +1494,7 @@ "More Options": "მეტი პარამეტრები", "Move": "გადატანა", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "ნაკადში პასუხი", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "აუცილებელია", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "ფაიფლაინის ატვირთვა", "Upload profile image": "", "Upload Progress": "ატვირთვის მიმდინარეობა", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/kab-DZ/translation.json b/src/lib/i18n/locales/kab-DZ/translation.json index 2d0ac3dcd6..05857de18f 100644 --- a/src/lib/i18n/locales/kab-DZ/translation.json +++ b/src/lib/i18n/locales/kab-DZ/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Tasarut API n Jina", "join our Discord for help.": "nadi-d ɣef tallalt-nneɣ.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Taskant JSON", "JSON Spec": "", "July": "Yulyu", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Asmekti yettwarna akken iwata", "Memory cleared successfully": "Tettwasfeḍ tkatut akken iwata", "Memory deleted successfully": "Asmekti yettwakkes akken iwata", + "Memory System Context": "", "Memory updated successfully": "Takatut tettwaleqqem akken iwata", "Merge Accounts by Email": "", "Merge Responses": "Smezdi tiririyin", @@ -1492,6 +1494,7 @@ "More Options": "Ugar n textiṛiyin", "Move": "Senkez", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Err deg udiwenni", "Reply to thread...": "Err i udiwenni…", "Replying to {{NAME}}": "Tiririt i {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "yettwasra", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Aselda n uɛebbi", "Upload profile image": "", "Upload Progress": "", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Tikli n uɛebbi: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index 523292663e..eef74e2c2e 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -1275,6 +1275,7 @@ "Jina API Key": "Jina API 키", "join our Discord for help.": "도움말을 보려면 Discord에 가입하세요.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON 미리 보기", "JSON Spec": "JSON 스펙", "July": "7월", @@ -1407,6 +1408,7 @@ "Memory added successfully": "성공적으로 메모리가 추가되었습니다", "Memory cleared successfully": "성공적으로 메모리가 정리되었습니다", "Memory deleted successfully": "성공적으로 메모리가 삭제되었습니다", + "Memory System Context": "", "Memory updated successfully": "성공적으로 메모리가 업데이트되었습니다", "Merge Accounts by Email": "", "Merge Responses": "응답들 결합하기", @@ -1486,6 +1488,7 @@ "More Options": "추가 설정", "Move": "이동", "Moved {{name}}": "{{name}} 이동됨", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "내 터미널", @@ -1865,6 +1868,7 @@ "Reply in Thread": "스레드로 답장하기", "Reply to thread...": "스레드로 답장하기...", "Replying to {{NAME}}": "{{NAME}}에게 답장하는 중", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "필수", "Reranking Batch Size": "리랭킹 배치 사이즈", @@ -2370,7 +2374,6 @@ "Upload Pipeline": "업로드 파이프라인", "Upload profile image": "프로필 이미지 업로드", "Upload Progress": "업로드 진행 상황", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "업로드 진행 상황: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "업로드된 파일 또는 이미지", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "업로드 중...", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index 2e551e8465..18d315c932 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -1295,6 +1295,7 @@ "Jina API Key": "", "join our Discord for help.": "prisijunkite prie mūsų Discord.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON peržiūra", "JSON Spec": "", "July": "liepa", @@ -1427,6 +1428,7 @@ "Memory added successfully": "Atmintis pridėta sėkmingai", "Memory cleared successfully": "Atmintis ištrinta sėkmingai", "Memory deleted successfully": "Atmintis ištrinta sėkmingai", + "Memory System Context": "", "Memory updated successfully": "Atmintis atnaujinta sėkmingai", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1506,6 +1508,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1891,6 +1894,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2400,7 +2404,6 @@ "Upload Pipeline": "Atnaujinti procesą", "Upload profile image": "", "Upload Progress": "Įkėlimo progresas", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/lv-LV/translation.json b/src/lib/i18n/locales/lv-LV/translation.json index 422b2bdff6..be97ac5375 100644 --- a/src/lib/i18n/locales/lv-LV/translation.json +++ b/src/lib/i18n/locales/lv-LV/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "Jina API atslēga", "join our Discord for help.": "pievienojieties mūsu Discord, lai saņemtu palīdzību.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON priekšskatījums", "JSON Spec": "JSON specifikācija", "July": "Jūlijs", @@ -1420,6 +1421,7 @@ "Memory added successfully": "Atmiņa veiksmīgi pievienota", "Memory cleared successfully": "Atmiņa veiksmīgi notīrīta", "Memory deleted successfully": "Atmiņa veiksmīgi dzēsta", + "Memory System Context": "", "Memory updated successfully": "Atmiņa veiksmīgi atjaunināta", "Merge Accounts by Email": "", "Merge Responses": "Apvienot atbildes", @@ -1499,6 +1501,7 @@ "More Options": "Vairāk opciju", "Move": "Pārvietot", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1882,6 +1885,7 @@ "Reply in Thread": "Atbildēt pavedienā", "Reply to thread...": "Atbildēt pavedienā...", "Replying to {{NAME}}": "Atbild {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "nepieciešams", "Reranking Batch Size": "", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Augšupielādēt plūsmu", "Upload profile image": "", "Upload Progress": "Augšupielādes progress", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Augšupielādes progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Augšupielādēti faili vai attēli", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 59bb1ea08b..d20a031341 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -1274,6 +1274,7 @@ "Jina API Key": "Kunci API Jina", "join our Discord for help.": "sertai Discord kami untuk mendapatkan bantuan.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Pratonton JSON", "JSON Spec": "Spesifikasi JSON", "July": "Julai", @@ -1406,6 +1407,7 @@ "Memory added successfully": "Ingatan berjaya ditambah", "Memory cleared successfully": "Ingatan berjaya dikosongkan", "Memory deleted successfully": "Ingatan berjaya dipadamkan", + "Memory System Context": "", "Memory updated successfully": "Ingatan berjaya dikemas kini", "Merge Accounts by Email": "", "Merge Responses": "Gabungkan Respons", @@ -1485,6 +1487,7 @@ "More Options": "Pilihan Lanjutan", "Move": "Pindah", "Moved {{name}}": "{{name}} telah dipindahkan", + "Multipart Upload": "", "Mute": "Redam", "Muted": "Diredamkan", "My Terminal": "Terminal Saya", @@ -1864,6 +1867,7 @@ "Reply in Thread": "Balas dalam Benang", "Reply to thread...": "Balas ke benang...", "Replying to {{NAME}}": "Membalas kepada {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "diperlukan", "Reranking Batch Size": "Saiz Kelompok Penyusunan Semula", @@ -2367,7 +2371,6 @@ "Upload Pipeline": "Muat Naik Pipeline", "Upload profile image": "Muat Naik Imej Profil", "Upload Progress": "Kemajuan Muat Naik", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Kemajuan Muat Naik: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Fail atau imej yang dimuat naik", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "Memuat naik...", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index 64d84c4a4e..a5bcf48ed9 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "API-nøkkel for Jina", "join our Discord for help.": "bli med i Discord-fellesskapet vårt for å få hjelp.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Forhåndsvisning av JSON", "JSON Spec": "", "July": "juli", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Minne lagt til", "Memory cleared successfully": "Minne tømt", "Memory deleted successfully": "Minne slettet", + "Memory System Context": "", "Memory updated successfully": "Minne oppdatert", "Merge Accounts by Email": "", "Merge Responses": "Flette svar", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Svar i tråd", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Last opp pipeline", "Upload profile image": "", "Upload Progress": "Opplastingsfremdrift", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index 40b3a283bd..d9ce7eddac 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API-sleutel", "join our Discord for help.": "word lid van onze Discord voor hulp.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON-voorbeeld", "JSON Spec": "JSON-specificatie", "July": "juli", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Geheugen succesvol toegevoegd", "Memory cleared successfully": "Geheugen succesvol vrijgemaakt", "Memory deleted successfully": "Geheugen succesvol verwijderd", + "Memory System Context": "", "Memory updated successfully": "Geheugen succesvol bijgewerkt", "Merge Accounts by Email": "", "Merge Responses": "Voeg antwoorden samen", @@ -1492,6 +1494,7 @@ "More Options": "Meer opties", "Move": "Verplaatsen", "Moved {{name}}": "{{name}} verplaatst", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "Mijn terminal", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Antwoord in draad", "Reply to thread...": "Reageren op draad...", "Replying to {{NAME}}": "Reageren op {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "vereist", "Reranking Batch Size": "Batchgrootte voor herordenen", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Upload Pijpleiding", "Upload profile image": "Profielafbeelding uploaden", "Upload Progress": "Upload Voortgang", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Uploadvoortgang: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Geüploade bestanden of afbeeldingen", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "Aan het uploaden...", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index 9812ab378d..fc1bb16f15 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "", "join our Discord for help.": "ਮਦਦ ਲਈ ਸਾਡੇ ਡਿਸਕੋਰਡ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਵੋ।", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON ਪੂਰਵ-ਦਰਸ਼ਨ", "JSON Spec": "", "July": "ਜੁਲਾਈ", @@ -1413,6 +1414,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "ਅਪਲੋਡ ਪ੍ਰਗਤੀ", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index 54d662cc12..a6bb1ce806 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -1295,6 +1295,7 @@ "Jina API Key": "Klucz API Jina", "join our Discord for help.": "dołącz do Discorda po pomoc.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Podgląd JSON", "JSON Spec": "Specyfikacja JSON", "July": "Lipiec", @@ -1427,6 +1428,7 @@ "Memory added successfully": "Wpis pamięci dodany pomyślnie", "Memory cleared successfully": "Pamięć wyczyszczona pomyślnie", "Memory deleted successfully": "Wpis pamięci usunięty pomyślnie", + "Memory System Context": "", "Memory updated successfully": "Wpis pamięci zaktualizowany pomyślnie", "Merge Accounts by Email": "", "Merge Responses": "Połącz odpowiedzi", @@ -1506,6 +1508,7 @@ "More Options": "Więcej opcji", "Move": "Przenieś", "Moved {{name}}": "Przeniesiono {{name}}", + "Multipart Upload": "", "Mute": "Wycisz", "Muted": "Wyciszony", "My Terminal": "Mój terminal", @@ -1891,6 +1894,7 @@ "Reply in Thread": "Odpowiedz w wątku", "Reply to thread...": "Odpowiedz w wątku...", "Replying to {{NAME}}": "Odpowiedź do {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "wymagane", "Reranking Batch Size": "Rozmiar partii reranking", @@ -2400,7 +2404,6 @@ "Upload Pipeline": "Prześlij Pipeline", "Upload profile image": "Prześlij zdjęcie profilowe", "Upload Progress": "Postęp przesyłania", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Postęp: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Przesłane pliki lub obrazy", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "Przesyłanie...", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index d387319cd6..f879f61e15 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "Chave de API Jina", "join our Discord for help.": "junte-se ao nosso Discord para obter ajuda.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Pré-visualização JSON", "JSON Spec": "Especificação JSON", "July": "Julho", @@ -1420,6 +1421,7 @@ "Memory added successfully": "Memória adicionada com sucesso", "Memory cleared successfully": "Memória limpa com sucesso", "Memory deleted successfully": "Memória excluída com sucesso", + "Memory System Context": "", "Memory updated successfully": "Memória atualizada com sucesso", "Merge Accounts by Email": "Mesclar Contas por Email", "Merge Responses": "Mesclar respostas", @@ -1499,6 +1501,7 @@ "More Options": "Mais opções", "Move": "Mover", "Moved {{name}}": "{{name}} movido", + "Multipart Upload": "", "Mute": "Silenciar", "Muted": "Silenciado", "My Terminal": "Meu Terminal", @@ -1882,6 +1885,7 @@ "Reply in Thread": "Responder no tópico", "Reply to thread...": "Responder ao tópico...", "Replying to {{NAME}}": "Respondendo para {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "Exigir que os usuários confirmem antes de usar a Pesquisa na Web.", "required": "obrigatório", "Reranking Batch Size": "Tamanho do lote de reclassificação", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Fazer upload de Pipeline", "Upload profile image": "Enviar imagem de perfil", "Upload Progress": "Progresso do Upload", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progresso do upload: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Arquivos ou imagens carregados", "Uploading {{current}}/{{total}}: {{file}}": "Enviando {{current}}/{{total}}: {{file}}", "Uploading...": "Enviando...", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index d3c0d17d1b..12420f837a 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "Chave da API do Jina", "join our Discord for help.": "junte-se ao nosso Discord para obter ajuda.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Pré-visualização JSON", "JSON Spec": "Especificação JSON", "July": "Julho", @@ -1420,6 +1421,7 @@ "Memory added successfully": "Memória adicionada com sucesso", "Memory cleared successfully": "Memória limpa com sucesso", "Memory deleted successfully": "Memória eliminada com sucesso", + "Memory System Context": "", "Memory updated successfully": "Memória atualizada com sucesso", "Merge Accounts by Email": "", "Merge Responses": "Fundir Respostas", @@ -1499,6 +1501,7 @@ "More Options": "Mais Opções", "Move": "Mover", "Moved {{name}}": "Movido {{name}}", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "Meu Terminal", @@ -1882,6 +1885,7 @@ "Reply in Thread": "Responder no Tópico", "Reply to thread...": "Responder ao tópico...", "Replying to {{NAME}}": "A responder a {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "obrigatório", "Reranking Batch Size": "", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Carregar Pipeline", "Upload profile image": "Carregar imagem de perfil", "Upload Progress": "Progresso do Carregamento", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progresso do Carregamento: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Ficheiros ou imagens carregados", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "A carregar...", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 43305713de..74f795cc07 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "", "join our Discord for help.": "alătură-te Discord-ului nostru pentru ajutor.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Previzualizare JSON", "JSON Spec": "", "July": "Iulie", @@ -1420,6 +1421,7 @@ "Memory added successfully": "Memoria a fost adăugată cu succes", "Memory cleared successfully": "Memoria a fost ștearsă cu succes", "Memory deleted successfully": "Memoria a fost ștearsă cu succes", + "Memory System Context": "", "Memory updated successfully": "Memoria a fost actualizată cu succes", "Merge Accounts by Email": "", "Merge Responses": "Combină răspunsurile", @@ -1499,6 +1501,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1882,6 +1885,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Încarcă Conducta", "Upload profile image": "", "Upload Progress": "Progres Încărcare", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index 5b2c64928f..bd52cf1949 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -1295,6 +1295,7 @@ "Jina API Key": "Ключ API для Jina", "join our Discord for help.": "присоединяйтесь к нашему Discord для помощи.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Предварительный просмотр JSON", "JSON Spec": "JSON-спецификация", "July": "Июль", @@ -1427,6 +1428,7 @@ "Memory added successfully": "Воспоминание успешно добавлено", "Memory cleared successfully": "Воспоминания успешно очищены", "Memory deleted successfully": "Воспоминание успешно удалено", + "Memory System Context": "", "Memory updated successfully": "Воспоминание успешно обновлено", "Merge Accounts by Email": "", "Merge Responses": "Объединить ответы", @@ -1506,6 +1508,7 @@ "More Options": "Больше опций", "Move": "Переместить", "Moved {{name}}": "Перемещено: {{name}}", + "Multipart Upload": "", "Mute": "Выключить микрофон", "Muted": "Микрофон выключен", "My Terminal": "Мой терминал", @@ -1891,6 +1894,7 @@ "Reply in Thread": "Ответить в обсуждении", "Reply to thread...": "Ответить в обсуждении...", "Replying to {{NAME}}": "Ответ для {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "обязательно", "Reranking Batch Size": "Размер пакета реранжирования", @@ -2400,7 +2404,6 @@ "Upload Pipeline": "Загрузить конвейер", "Upload profile image": "Загрузить аватар", "Upload Progress": "Прогресс загрузки", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Прогресс загрузки: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Загруженные файлы или изображения", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "Загрузка...", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 1f6aea91cc..41d8dd9da2 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -1295,6 +1295,7 @@ "Jina API Key": "", "join our Discord for help.": "pripojte sa k nášmu Discordu pre pomoc.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Náhľad JSON", "JSON Spec": "", "July": "Júl", @@ -1427,6 +1428,7 @@ "Memory added successfully": "Pamäť bola úspešne pridaná.", "Memory cleared successfully": "Pamäť bola úspešne vymazaná.", "Memory deleted successfully": "Pamäť bola úspešne vymazaná", + "Memory System Context": "", "Memory updated successfully": "Pamäť úspešne aktualizovaná", "Merge Accounts by Email": "", "Merge Responses": "Zlúčiť odpovede", @@ -1506,6 +1508,7 @@ "More Options": "", "Move": "Presunúť", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1891,6 +1894,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2400,7 +2404,6 @@ "Upload Pipeline": "Nahrať pipeline", "Upload profile image": "", "Upload Progress": "Priebeh nahrávania", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index 209d20add0..5caebe9536 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -1288,6 +1288,7 @@ "Jina API Key": "", "join our Discord for help.": "придружите се нашем Дискорду за помоћ.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "ЈСОН Преглед", "JSON Spec": "", "July": "Јул", @@ -1420,6 +1421,7 @@ "Memory added successfully": "Сећање успешно додато", "Memory cleared successfully": "Сећање успешно очишћено", "Memory deleted successfully": "Сећање успешно обрисано", + "Memory System Context": "", "Memory updated successfully": "Сећање успешно измењено", "Merge Accounts by Email": "", "Merge Responses": "Спој одговоре", @@ -1499,6 +1501,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1882,6 +1885,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2389,7 +2393,6 @@ "Upload Pipeline": "Цевовод отпремања", "Upload profile image": "", "Upload Progress": "Напредак отпремања", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 14a54d5673..3528172978 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API-nyckel", "join our Discord for help.": "gå med i vår Discord för hjälp.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Förhandsversion av JSON", "JSON Spec": "JSON-specifikation", "July": "juli", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Minnet har lagts till", "Memory cleared successfully": "Minnet har rensats", "Memory deleted successfully": "Minnet har tagits bort", + "Memory System Context": "", "Memory updated successfully": "Minnet har uppdaterats", "Merge Accounts by Email": "", "Merge Responses": "Sammanslå svar (med AI)", @@ -1492,6 +1494,7 @@ "More Options": "Fler alternativ", "Move": "Flytta", "Moved {{name}}": "Flyttat {{name}}", + "Multipart Upload": "", "Mute": "Stäng av ljud", "Muted": "Tystad", "My Terminal": "Min terminal", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Svara i tråd", "Reply to thread...": "Svara i tråd...", "Replying to {{NAME}}": "Svarar {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "obligatoriskt", "Reranking Batch Size": "Batchstorlek för omrankning", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Ladda upp rörledning", "Upload profile image": "Ladda upp profilbild", "Upload Progress": "Uppladdningsframsteg", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Uppladdningsstatus: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Uppladdade filer eller bilder", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "Uppladdning...", diff --git a/src/lib/i18n/locales/ta-IN/translation.json b/src/lib/i18n/locales/ta-IN/translation.json index cd282f698d..77e2072ced 100644 --- a/src/lib/i18n/locales/ta-IN/translation.json +++ b/src/lib/i18n/locales/ta-IN/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "ஜினா API கீ", "join our Discord for help.": "உதவிக்கு எங்கள் டிஸ்கார்டில் சேரவும்.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON முன்னோட்டம்", "JSON Spec": "JSON விவரக்குறிப்பு", "July": "ஜூலை", @@ -1413,6 +1414,7 @@ "Memory added successfully": "நினைவகம் வெற்றிகரமாக சேர்க்கப்பட்டது", "Memory cleared successfully": "நினைவகம் வெற்றிகரமாக அழிக்கப்பட்டது", "Memory deleted successfully": "நினைவகம் வெற்றிகரமாக நீக்கப்பட்டது", + "Memory System Context": "", "Memory updated successfully": "நினைவகம் வெற்றிகரமாக புதுப்பிக்கப்பட்டது", "Merge Accounts by Email": "", "Merge Responses": "பதில்களை ஒன்றிணைக்கவும்", @@ -1492,6 +1494,7 @@ "More Options": "மேலும் விருப்பங்கள்", "Move": "நகர்த்தவும்", "Moved {{name}}": "{{name}} நகர்த்தப்பட்டது", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "என் டெர்மினல்", @@ -1873,6 +1876,7 @@ "Reply in Thread": "த்ரெட்டில் பதிலளிக்கவும்", "Reply to thread...": "திரிக்கு பதில்...", "Replying to {{NAME}}": "{{NAME}} க்கு பதிலளிக்கிறது", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "தேவை", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "பைப்லைனை பதிவேற்றவும்", "Upload profile image": "சுயவிவரப் படத்தைப் பதிவேற்றவும்", "Upload Progress": "பதிவேற்ற முன்னேற்றம்", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "பதிவேற்ற முன்னேற்றம்: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "பதிவேற்றப்பட்ட கோப்புகள் அல்லது படங்கள்", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "பதிவேற்றுகிறது...", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index 5990dc46c6..e82cb03497 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -1274,6 +1274,7 @@ "Jina API Key": "API Key ของ Jina", "join our Discord for help.": "เข้าร่วม Discord ของเราเพื่อขอความช่วยเหลือ", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "ดูตัวอย่าง JSON", "JSON Spec": "สเปก JSON", "July": "กรกฎาคม", @@ -1406,6 +1407,7 @@ "Memory added successfully": "เพิ่มความจำสำเร็จ", "Memory cleared successfully": "ล้างความจำสำเร็จแล้ว", "Memory deleted successfully": "ลบความจำสำเร็จ", + "Memory System Context": "", "Memory updated successfully": "อัปเดตความจำสำเร็จแล้ว", "Merge Accounts by Email": "", "Merge Responses": "รวมคำตอบ", @@ -1485,6 +1487,7 @@ "More Options": "ตัวเลือกเพิ่มเติม", "Move": "ย้าย", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1864,6 +1867,7 @@ "Reply in Thread": "ตอบกลับในเธรด", "Reply to thread...": "ตอบกลับเธรด...", "Replying to {{NAME}}": "กำลังตอบกลับ {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "จำเป็น", "Reranking Batch Size": "", @@ -2367,7 +2371,6 @@ "Upload Pipeline": "อัปโหลด Pipeline", "Upload profile image": "", "Upload Progress": "ความคืบหน้าการอัปโหลด", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "ความคืบหน้าการอัปโหลด: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index 3c17bc9434..00e8bbfa40 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "", "join our Discord for help.": "", "JSON": "", + "JSON Base64": "", "JSON Preview": "", "JSON Spec": "", "July": "Iýul", @@ -1413,6 +1414,7 @@ "Memory added successfully": "", "Memory cleared successfully": "", "Memory deleted successfully": "", + "Memory System Context": "", "Memory updated successfully": "", "Merge Accounts by Email": "", "Merge Responses": "", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "", "Upload profile image": "", "Upload Progress": "", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 7646548902..f1bf2751c1 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API Anahtarı", "join our Discord for help.": "yardım için Discord'umuza katılın.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON Önizlemesi", "JSON Spec": "JSON Belirtimi", "July": "Temmuz", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Bellek başarıyla eklendi", "Memory cleared successfully": "Bellek başarıyla temizlendi", "Memory deleted successfully": "Bellek başarıyla silindi", + "Memory System Context": "", "Memory updated successfully": "Bellek başarıyla güncellendi", "Merge Accounts by Email": "", "Merge Responses": "Yanıtları Birleştir", @@ -1492,6 +1494,7 @@ "More Options": "Diğer Seçenekler", "Move": "Taşı", "Moved {{name}}": "{{name}} taşındı", + "Multipart Upload": "", "Mute": "Sessize Al", "Muted": "Sessize Alındı", "My Terminal": "Terminalim", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Konuya Yanıtla", "Reply to thread...": "Konuya yanıt ver...", "Replying to {{NAME}}": "{{NAME}} kullanıcısına yanıt veriliyor", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "gerekli", "Reranking Batch Size": "Yeniden Sıralama Toplu İş Boyutu", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Pipeline Yükle", "Upload profile image": "Profil resmi yükle", "Upload Progress": "Yükleme İlerlemesi", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Yükleme İlerlemesi: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "Yüklenen dosyalar veya görüntüler", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "Yükleniyor...", diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index 9207733d04..31703c3a37 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API ئاچقۇچى", "join our Discord for help.": "ياردەم ئۈچۈن Discord غا قوشۇلىڭ.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON ئالدىن كۆرۈش", "JSON Spec": "", "July": "ئىيۇل", @@ -1413,6 +1414,7 @@ "Memory added successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك قوشۇلدى", "Memory cleared successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك تازىلاندى", "Memory deleted successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى", + "Memory System Context": "", "Memory updated successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك يېڭىلاندى", "Merge Accounts by Email": "", "Merge Responses": "ئىنكاسلارنى بىرلەشتۈرۈش", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "تارماقتا ئىنكاس قايتۇرۇش", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "جەريان چىقىرىش", "Upload profile image": "", "Upload Progress": "چىقىرىش جەريانى", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index 9280e3ef16..c9f573e1ab 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -1295,6 +1295,7 @@ "Jina API Key": "Ключ API для Jina", "join our Discord for help.": "приєднуйтеся до нашого Discord для допомоги.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Перегляд JSON", "JSON Spec": "", "July": "Липень", @@ -1427,6 +1428,7 @@ "Memory added successfully": "Пам'ять додано успішно", "Memory cleared successfully": "Пам'ять успішно очищено", "Memory deleted successfully": "Пам'ять успішно видалено", + "Memory System Context": "", "Memory updated successfully": "Пам'ять успішно оновлено", "Merge Accounts by Email": "", "Merge Responses": "Об'єднати відповіді", @@ -1506,6 +1508,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1891,6 +1894,7 @@ "Reply in Thread": "Відповісти в потоці", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2400,7 +2404,6 @@ "Upload Pipeline": "Завантажити конвеєр", "Upload profile image": "", "Upload Progress": "Прогрес завантаження", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index 5c826f7dbe..3a99e5de6e 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "", "join our Discord for help.": "مدد کے لئے ہمارے ڈسکارڈ میں شامل ہوں", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON پیش منظر", "JSON Spec": "", "July": "جولائی", @@ -1413,6 +1414,7 @@ "Memory added successfully": "میموری کامیابی سے شامل کر دی گئی", "Memory cleared successfully": "یادداشت کامیابی سے صاف ہوگئی", "Memory deleted successfully": "میموری کامیابی سے حذف ہوگئی", + "Memory System Context": "", "Memory updated successfully": "حافظہ کامیابی سے اپ ڈیٹ کر دیا گیا", "Merge Accounts by Email": "", "Merge Responses": "جوابات کو یکجا کریں", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "اپ لوڈ پائپ لائن", "Upload profile image": "", "Upload Progress": "اپ لوڈ کی پیش رفت", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index 8c1dbca8b6..dc2943316f 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Жина АПИ калити", "join our Discord for help.": "ёрдам учун Дисcордимизга қўшилинг.", "JSON": "ЖСОН", + "JSON Base64": "", "JSON Preview": "ЖСОН кўриб чиқиш", "JSON Spec": "", "July": "июл", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Хотира муваффақиятли қўшилди", "Memory cleared successfully": "Хотира муваффақиятли тозаланди", "Memory deleted successfully": "Хотира муваффақиятли ўчирилди", + "Memory System Context": "", "Memory updated successfully": "Хотира муваффақиятли янгиланди", "Merge Accounts by Email": "", "Merge Responses": "Жавобларни бирлаштириш", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Мавзуда жавоб беринг", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Қувур линиясини юклаш", "Upload profile image": "", "Upload Progress": "Юклаш жараёни", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index 7834f77560..381a309940 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -1281,6 +1281,7 @@ "Jina API Key": "Jina API kaliti", "join our Discord for help.": "yordam uchun Discordimizga qo'shiling.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON ko'rib chiqish", "JSON Spec": "", "July": "iyul", @@ -1413,6 +1414,7 @@ "Memory added successfully": "Xotira muvaffaqiyatli qo'shildi", "Memory cleared successfully": "Xotira muvaffaqiyatli tozalandi", "Memory deleted successfully": "Xotira muvaffaqiyatli oʻchirildi", + "Memory System Context": "", "Memory updated successfully": "Xotira muvaffaqiyatli yangilandi", "Merge Accounts by Email": "", "Merge Responses": "Javoblarni birlashtirish", @@ -1492,6 +1494,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1873,6 +1876,7 @@ "Reply in Thread": "Mavzuda javob bering", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2378,7 +2382,6 @@ "Upload Pipeline": "Quvur liniyasini yuklash", "Upload profile image": "", "Upload Progress": "Yuklash jarayoni", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index d86bf590da..d5ba32adc0 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -1274,6 +1274,7 @@ "Jina API Key": "Khóa API Jina", "join our Discord for help.": "tham gia Discord của chúng tôi để được trợ giúp.", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "Xem trước JSON", "JSON Spec": "", "July": "Tháng 7", @@ -1406,6 +1407,7 @@ "Memory added successfully": "Memory đã được thêm thành công", "Memory cleared successfully": "Memory đã bị xóa", "Memory deleted successfully": "Memory đã bị loại bỏ", + "Memory System Context": "", "Memory updated successfully": "Memory đã cập nhật thành công", "Merge Accounts by Email": "", "Merge Responses": "Hợp nhất các phản hồi", @@ -1485,6 +1487,7 @@ "More Options": "", "Move": "", "Moved {{name}}": "", + "Multipart Upload": "", "Mute": "", "Muted": "", "My Terminal": "", @@ -1864,6 +1867,7 @@ "Reply in Thread": "Trả lời trong Luồng", "Reply to thread...": "", "Replying to {{NAME}}": "", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "", "Reranking Batch Size": "", @@ -2367,7 +2371,6 @@ "Upload Pipeline": "Tải lên Pipeline", "Upload profile image": "", "Upload Progress": "Tiến trình tải tệp lên hệ thống", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", "Uploaded files or images": "", "Uploading {{current}}/{{total}}: {{file}}": "", "Uploading...": "", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index 555388c1f6..06089e08f8 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -1274,6 +1274,7 @@ "Jina API Key": "Jina 接口密钥", "join our Discord for help.": "加入我们的 Discord 寻求帮助", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON 预览", "JSON Spec": "以 JSON 格式定义的接口规范", "July": "七月", @@ -1406,6 +1407,7 @@ "Memory added successfully": "记忆添加成功", "Memory cleared successfully": "记忆清除成功", "Memory deleted successfully": "记忆删除成功", + "Memory System Context": "", "Memory updated successfully": "记忆更新成功", "Merge Accounts by Email": "", "Merge Responses": "合并回答", @@ -1485,6 +1487,7 @@ "More Options": "更多选项", "Move": "移动", "Moved {{name}}": "移动“{{name}}”成功", + "Multipart Upload": "", "Mute": "静音", "Muted": "已静音", "My Terminal": "我的终端", @@ -1864,6 +1867,7 @@ "Reply in Thread": "回复主题", "Reply to thread...": "回复主题...", "Replying to {{NAME}}": "回复 {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "必填", "Reranking Batch Size": "重排序批次大小", @@ -2367,7 +2371,6 @@ "Upload Pipeline": "上传 Pipeline", "Upload profile image": "上传头像", "Upload Progress": "上传进度", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "上传进度:{{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "上传的文件或图片", "Uploading {{current}}/{{total}}: {{file}}": "正在上传 {{current}}/{{total}}:{{file}}", "Uploading...": "正在上传中…", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index 7c41aef63b..c7642ec6a2 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -1274,6 +1274,7 @@ "Jina API Key": "Jina API 金鑰", "join our Discord for help.": "加入我們的 Discord 以取得協助。", "JSON": "JSON", + "JSON Base64": "", "JSON Preview": "JSON 預覽", "JSON Spec": "以 JSON 格式定義的介面規範", "July": "7 月", @@ -1406,6 +1407,7 @@ "Memory added successfully": "成功新增記憶", "Memory cleared successfully": "成功清除記憶", "Memory deleted successfully": "成功刪除記憶", + "Memory System Context": "", "Memory updated successfully": "成功更新記憶", "Merge Accounts by Email": "", "Merge Responses": "合併回應", @@ -1485,6 +1487,7 @@ "More Options": "更多選項", "Move": "移動", "Moved {{name}}": "已移動 {{name}}", + "Multipart Upload": "", "Mute": "靜音", "Muted": "已靜音", "My Terminal": "我的終端", @@ -1864,6 +1867,7 @@ "Reply in Thread": "在討論串中回覆", "Reply to thread...": "回覆討論串...", "Replying to {{NAME}}": "回覆 {{NAME}}", + "Request Format": "", "Require users to confirm before using Web Search.": "", "required": "必填", "Reranking Batch Size": "重排序批次大小", @@ -2367,7 +2371,6 @@ "Upload Pipeline": "上傳管線", "Upload profile image": "上傳頭像", "Upload Progress": "上傳進度", - "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "上傳進度:{{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", "Uploaded files or images": "上傳的檔案或圖片", "Uploading {{current}}/{{total}}: {{file}}": "正在上傳 {{current}}/{{total}}:{{file}}", "Uploading...": "上傳中…",