Timothy Jaeryang Baek 2 miesięcy temu
rodzic
commit
81f8187e57
63 zmienionych plików z 748 dodań i 60 usunięć
  1. 11 0
      backend/open_webui/config.py
  2. 6 2
      src/lib/components/chat/Chat.svelte
  3. 1 1
      src/lib/components/chat/Settings/Personalization/ManageModal.svelte
  4. 1 1
      src/lib/components/chat/SettingsModal.svelte
  5. 2 0
      src/lib/components/common/Modal.svelte
  6. 13 1
      src/lib/i18n/locales/ar-BH/translation.json
  7. 13 1
      src/lib/i18n/locales/ar/translation.json
  8. 13 1
      src/lib/i18n/locales/bg-BG/translation.json
  9. 13 1
      src/lib/i18n/locales/bn-BD/translation.json
  10. 13 1
      src/lib/i18n/locales/bo-TB/translation.json
  11. 13 1
      src/lib/i18n/locales/ca-ES/translation.json
  12. 13 1
      src/lib/i18n/locales/ceb-PH/translation.json
  13. 13 1
      src/lib/i18n/locales/cs-CZ/translation.json
  14. 13 1
      src/lib/i18n/locales/da-DK/translation.json
  15. 13 1
      src/lib/i18n/locales/de-DE/translation.json
  16. 13 1
      src/lib/i18n/locales/dg-DG/translation.json
  17. 13 1
      src/lib/i18n/locales/el-GR/translation.json
  18. 13 1
      src/lib/i18n/locales/en-GB/translation.json
  19. 11 1
      src/lib/i18n/locales/en-US/translation.json
  20. 13 1
      src/lib/i18n/locales/es-ES/translation.json
  21. 13 1
      src/lib/i18n/locales/et-EE/translation.json
  22. 13 1
      src/lib/i18n/locales/eu-ES/translation.json
  23. 13 1
      src/lib/i18n/locales/fa-IR/translation.json
  24. 13 1
      src/lib/i18n/locales/fi-FI/translation.json
  25. 13 1
      src/lib/i18n/locales/fr-CA/translation.json
  26. 13 1
      src/lib/i18n/locales/fr-FR/translation.json
  27. 13 1
      src/lib/i18n/locales/gl-ES/translation.json
  28. 13 1
      src/lib/i18n/locales/he-IL/translation.json
  29. 13 1
      src/lib/i18n/locales/hi-IN/translation.json
  30. 13 1
      src/lib/i18n/locales/hr-HR/translation.json
  31. 13 1
      src/lib/i18n/locales/hu-HU/translation.json
  32. 13 1
      src/lib/i18n/locales/id-ID/translation.json
  33. 13 1
      src/lib/i18n/locales/ie-GA/translation.json
  34. 13 1
      src/lib/i18n/locales/it-IT/translation.json
  35. 13 1
      src/lib/i18n/locales/ja-JP/translation.json
  36. 13 1
      src/lib/i18n/locales/ka-GE/translation.json
  37. 13 1
      src/lib/i18n/locales/ko-KR/translation.json
  38. 13 1
      src/lib/i18n/locales/lt-LT/translation.json
  39. 13 1
      src/lib/i18n/locales/ms-MY/translation.json
  40. 13 1
      src/lib/i18n/locales/nb-NO/translation.json
  41. 13 1
      src/lib/i18n/locales/nl-NL/translation.json
  42. 13 1
      src/lib/i18n/locales/pa-IN/translation.json
  43. 13 1
      src/lib/i18n/locales/pl-PL/translation.json
  44. 13 1
      src/lib/i18n/locales/pt-BR/translation.json
  45. 13 1
      src/lib/i18n/locales/pt-PT/translation.json
  46. 13 1
      src/lib/i18n/locales/ro-RO/translation.json
  47. 13 1
      src/lib/i18n/locales/ru-RU/translation.json
  48. 13 1
      src/lib/i18n/locales/sk-SK/translation.json
  49. 13 1
      src/lib/i18n/locales/sr-RS/translation.json
  50. 13 1
      src/lib/i18n/locales/sv-SE/translation.json
  51. 13 1
      src/lib/i18n/locales/th-TH/translation.json
  52. 13 1
      src/lib/i18n/locales/tk-TM/translation.json
  53. 13 1
      src/lib/i18n/locales/tr-TR/translation.json
  54. 13 1
      src/lib/i18n/locales/ug-CN/translation.json
  55. 13 1
      src/lib/i18n/locales/uk-UA/translation.json
  56. 13 1
      src/lib/i18n/locales/ur-PK/translation.json
  57. 13 1
      src/lib/i18n/locales/uz-Cyrl-UZ/translation.json
  58. 13 1
      src/lib/i18n/locales/uz-Latn-Uz/translation.json
  59. 13 1
      src/lib/i18n/locales/vi-VN/translation.json
  60. 13 1
      src/lib/i18n/locales/zh-CN/translation.json
  61. 13 1
      src/lib/i18n/locales/zh-TW/translation.json
  62. BIN
      static/static/logo.png
  63. 1 0
      static/static/user-import.csv

+ 11 - 0
backend/open_webui/config.py

@@ -689,6 +689,17 @@ load_oauth_providers()
 
 STATIC_DIR = Path(os.getenv("STATIC_DIR", OPEN_WEBUI_DIR / "static")).resolve()
 
+try:
+    if STATIC_DIR.exists():
+        for item in STATIC_DIR.iterdir():
+            if item.is_file() or item.is_symlink():
+                try:
+                    item.unlink()
+                except Exception as e:
+                    pass
+except Exception as e:
+    pass
+
 for file_path in (FRONTEND_BUILD_DIR / "static").glob("**/*"):
     if file_path.is_file():
         target_path = STATIC_DIR / file_path.relative_to(

+ 6 - 2
src/lib/components/chat/Chat.svelte

@@ -2168,7 +2168,9 @@
 									bind:atSelectedModel
 									bind:showCommands
 									toolServers={$toolServers}
-									transparentBackground={$settings?.backgroundImageUrl ?? false}
+									transparentBackground={$settings?.backgroundImageUrl ??
+										$config?.license_metadata?.background_image_url ??
+										false}
 									{stopResponse}
 									{createMessagePair}
 									onChange={(input) => {
@@ -2228,7 +2230,9 @@
 									bind:webSearchEnabled
 									bind:atSelectedModel
 									bind:showCommands
-									transparentBackground={$settings?.backgroundImageUrl ?? false}
+									transparentBackground={$settings?.backgroundImageUrl ??
+										$config?.license_metadata?.background_image_url ??
+										false}
 									toolServers={$toolServers}
 									{stopResponse}
 									{createMessagePair}

+ 1 - 1
src/lib/components/chat/Settings/Personalization/ManageModal.svelte

@@ -50,7 +50,7 @@
 	}
 </script>
 
-<Modal size="xl" bind:show>
+<Modal size="lg" bind:show>
 	<div>
 		<div class=" flex justify-between dark:text-gray-300 px-5 pt-4 pb-1">
 			<div class=" text-lg font-medium self-center">{$i18n.t('Memory')}</div>

+ 1 - 1
src/lib/components/chat/SettingsModal.svelte

@@ -537,7 +537,7 @@
 	}
 </script>
 
-<Modal size="xl" bind:show>
+<Modal size="lg" bind:show>
 	<div class="text-gray-700 dark:text-gray-100">
 		<div class=" flex justify-between dark:text-gray-300 px-5 pt-4 pb-1">
 			<div class=" text-lg font-medium self-center">{$i18n.t('Settings')}</div>

+ 2 - 0
src/lib/components/common/Modal.svelte

@@ -34,6 +34,8 @@
 			return 'w-[84rem]';
 		} else if (size === '3xl') {
 			return 'w-[100rem]';
+		} else {
+			return 'w-[56rem]';
 		}
 	};
 

+ 13 - 1
src/lib/i18n/locales/ar-BH/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "إنشاء حساب",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "عمل مفتاح جديد",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "إدخال الأوامر",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "التثبيت من عنوان URL لجيثب",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT تجريبي",
 	"JWT Token": "JWT Token",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "اختصارات لوحة المفاتيح",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "فاتح",
 	"Listening...": "",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "ما الجديد",
 	"Seed": "Seed",
 	"Select a base model": "حدد نموذجا أساسيا",
+	"Select a conversation to preview": "",
 	"Select a engine": "",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "المستخدمين",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "يستخدم",
 	"Valid time units:": "وحدات زمنية صالحة:",

+ 13 - 1
src/lib/i18n/locales/ar/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "إنشاء حساب",
 	"Create Admin Account": "إنشاء حساب مسؤول",
 	"Create Channel": "إنشاء قناة",
+	"Create Folder": "",
 	"Create Group": "إنشاء مجموعة",
 	"Create Knowledge": "إنشاء معرفة",
 	"Create new key": "إنشاء مفتاح جديد",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "مثال: أدوات لتنفيذ عمليات متنوعة",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "فشل في إضافة الملف.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "فشل في جلب النماذج",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "فشل في قراءة محتويات الحافظة",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "إدخال الأوامر",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "التثبيت من عنوان URL لجيثب",
 	"Instant Auto-Send After Voice Transcription": "إرسال تلقائي فوري بعد تحويل الصوت إلى نص",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT تجريبي",
 	"JWT Token": "JWT Token",
 	"Kagi Search API Key": "مفتاح API لـ Kagi Search",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "المفتاح",
 	"Keyboard shortcuts": "اختصارات لوحة المفاتيح",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "اتركه فارغًا لاستخدام التوجيه الافتراضي، أو أدخل توجيهًا مخصصًا",
 	"Leave model field empty to use the default model.": "اترك حقل النموذج فارغًا لاستخدام النموذج الافتراضي.",
 	"License": "الترخيص",
+	"Lift List": "",
 	"Light": "فاتح",
 	"Listening...": "جارٍ الاستماع...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "قناة جديدة",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "ما الجديد",
 	"Seed": "Seed",
 	"Select a base model": "حدد نموذجا أساسيا",
+	"Select a conversation to preview": "",
 	"Select a engine": "اختر محركًا",
 	"Select a function": "اختر وظيفة",
 	"Select a group": "اختر مجموعة",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "سجّل في {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "جارٍ تسجيل الدخول إلى {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "اكشف الأسرار",
 	"Unpin": "إزالة التثبيت",
 	"Unravel secrets": "فكّ الأسرار",
+	"Unsupported file type.": "",
 	"Untagged": "بدون وسوم",
 	"Untitled": "",
 	"Update": "تحديث",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "اسم المستخدم",
 	"Users": "المستخدمين",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "يتم استخدام نموذج الساحة الافتراضي مع جميع النماذج. اضغط على زر + لإضافة نماذج مخصصة.",
 	"Utilize": "يستخدم",
 	"Valid time units:": "وحدات زمنية صالحة:",

+ 13 - 1
src/lib/i18n/locales/bg-BG/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Създаване на Акаунт",
 	"Create Admin Account": "Създаване на администраторски акаунт",
 	"Create Channel": "Създаване на канал",
+	"Create Folder": "",
 	"Create Group": "Създаване на група",
 	"Create Knowledge": "Създаване на знания",
 	"Create new key": "Създаване на нов ключ",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "напр. Инструменти за извършване на различни операции",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Неуспешно добавяне на файл.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Неуспешно извличане на модели",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Грешка при четене на съдържанието от клипборда",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Въведете команди",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Инсталиране от URL адреса на Github",
 	"Instant Auto-Send After Voice Transcription": "Незабавно автоматично изпращане след гласова транскрипция",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT изтичане",
 	"JWT Token": "JWT токен",
 	"Kagi Search API Key": "API ключ за Kagi Search",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Ключ",
 	"Keyboard shortcuts": "Клавиши за бърз достъп",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Оставете празно, за да използвате промпта по подразбиране, или въведете персонализиран промпт",
 	"Leave model field empty to use the default model.": "Оставете полето за модел празно, за да използвате модела по подразбиране.",
 	"License": "Лиценз",
+	"Lift List": "",
 	"Light": "Светъл",
 	"Listening...": "Слушане...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "нов-канал",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "Без съдържание",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Виж какво е новото",
 	"Seed": "Начално число",
 	"Select a base model": "Изберете базов модел",
+	"Select a conversation to preview": "",
 	"Select a engine": "Изберете двигател",
 	"Select a function": "Изберете функция",
 	"Select a group": "Изберете група",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Регистрирайте се в {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Вписване в {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Разкрий мистерии",
 	"Unpin": "Откачи",
 	"Unravel secrets": "Разгадай тайни",
+	"Unsupported file type.": "",
 	"Untagged": "Без етикет",
 	"Untitled": "Неозаглавен",
 	"Update": "Актуализиране",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Потребителско име",
 	"Users": "Потребители",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Използване на стандартния арена модел с всички модели. Кликнете бутона плюс, за да добавите персонализирани модели.",
 	"Utilize": "Използване на",
 	"Valid time units:": "Валидни единици за време:",

+ 13 - 1
src/lib/i18n/locales/bn-BD/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "একাউন্ট তৈরি করুন",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "একটি নতুন কী তৈরি করুন",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "ক্লিপবোর্ডের বিষয়বস্তু পড়া সম্ভব হয়নি",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "ইনপুট কমান্ডস",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Github URL থেকে ইনস্টল করুন",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT-র মেয়াদ",
 	"JWT Token": "JWT টোকেন",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "কিবোর্ড শর্টকাটসমূহ",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "লাইট",
 	"Listening...": "",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "নতুন কী আছে দেখুন",
 	"Seed": "সীড",
 	"Select a base model": "একটি বেস মডেল নির্বাচন করুন",
+	"Select a conversation to preview": "",
 	"Select a engine": "",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "ব্যাবহারকারীগণ",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "ইউটিলাইজ",
 	"Valid time units:": "সময়ের গ্রহণযোগ্য এককসমূহ:",

+ 13 - 1
src/lib/i18n/locales/bo-TB/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "རྩིས་ཁྲ་གསར་བཟོ།",
 	"Create Admin Account": "དོ་དམ་པའི་རྩིས་ཁྲ་གསར་བཟོ།",
 	"Create Channel": "བགྲོ་གླེང་གསར་བཟོ།",
+	"Create Folder": "",
 	"Create Group": "ཚོགས་པ་གསར་བཟོ།",
 	"Create Knowledge": "ཤེས་བྱ་གསར་བཟོ།",
 	"Create new key": "ལྡེ་མིག་གསར་པ་བཟོ་བ།",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "དཔེར་ན། ལས་ཀ་སྣ་ཚོགས་སྒྲུབ་བྱེད་ཀྱི་ལག་ཆ།",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "ཡིག་ཆ་སྣོན་པར་མ་ཐུབ།",
 	"Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPI ལག་ཆའི་སར་བར་ལ་སྦྲེལ་མཐུད་བྱེད་མ་ཐུབ།",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "དཔེ་དབྱིབས་ལེན་པར་མ་ཐུབ།",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "སྦྱར་སྡེར་གྱི་ནང་དོན་ཀློག་མ་ཐུབ།",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "ནང་འཇུག་བཀའ་བརྡ།",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Github URL ནས་སྒྲིག་སྦྱོར་བྱེད་པ།",
 	"Instant Auto-Send After Voice Transcription": "སྐད་ཆ་ཡིག་འབེབས་བྱས་རྗེས་ལམ་སང་རང་འགུལ་གཏོང་བ།",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT དུས་ཚོད་རྫོགས་པ།",
 	"JWT Token": "JWT Token",
 	"Kagi Search API Key": "Kagi Search API ལྡེ་མིག",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "ལྡེ་མིག",
 	"Keyboard shortcuts": "མཐེབ་གནོན་མྱུར་ལམ།",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "སྔོན་སྒྲིག་འགུལ་སློང་བེད་སྤྱོད་གཏོང་བར་སྟོང་པ་བཞག་པའམ། ཡང་ན་སྲོལ་བཟོས་འགུལ་སློང་འཇུག་པ།",
 	"Leave model field empty to use the default model.": "སྔོན་སྒྲིག་དཔེ་དབྱིབས་བེད་སྤྱོད་གཏོང་བར་དཔེ་དབྱིབས་ཀྱི་ཁོངས་སྟོང་པ་བཞག་པ།",
 	"License": "ཆོག་མཆན།",
+	"Lift List": "",
 	"Light": "དཀར་པོ།",
 	"Listening...": "ཉན་བཞིན་པ།...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "བགྲོ་གླེང་གསར་པ།",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "གསར་པ་ཅི་ཡོད་ལྟ་བ།",
 	"Seed": "Seed",
 	"Select a base model": "གཞི་རྩའི་དཔེ་དབྱིབས་ཤིག་གདམ་པ།",
+	"Select a conversation to preview": "",
 	"Select a engine": "འཕྲུལ་འཁོར་ཞིག་གདམ་པ།",
 	"Select a function": "ལས་འགན་ཞིག་གདམ་པ།",
 	"Select a group": "ཚོགས་པ་ཞིག་གདམ་པ།",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "{{WEBUI_NAME}} ལ་ཐོ་འགོད།",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} ལ་ནང་འཛུལ་བྱེད་བཞིན་པ།",
+	"Sink List": "",
 	"sk-1234": "sk-༡༢༣༤",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "གསང་བ་གྲོལ་བ།",
 	"Unpin": "ཕྱིར་འདོན།",
 	"Unravel secrets": "གསང་བ་གྲོལ་བ།",
+	"Unsupported file type.": "",
 	"Untagged": "རྟགས་མེད།",
 	"Untitled": "",
 	"Update": "གསར་སྒྱུར།",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "བེད་སྤྱོད་མཁན་གྱི་ Webhooks",
 	"Username": "བེད་སྤྱོད་མིང་།",
 	"Users": "བེད་སྤྱོད་མཁན།",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་དང་མཉམ་དུ་སྔོན་སྒྲིག་ arena དཔེ་དབྱིབས་བེད་སྤྱོད་གཏོང་བཞིན་པ། སྲོལ་བཟོས་དཔེ་དབྱིབས་སྣོན་པར་བསྣན་རྟགས་མཐེབ་གནོན་ལ་མནན་པ།",
 	"Utilize": "བེད་སྤྱོད།",
 	"Valid time units:": "ནུས་ལྡན་དུས་ཚོད་ཀྱི་ཚན་པ།:",

+ 13 - 1
src/lib/i18n/locales/ca-ES/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Crear un compte",
 	"Create Admin Account": "Crear un compte d'Administrador",
 	"Create Channel": "Crear un canal",
+	"Create Folder": "",
 	"Create Group": "Crear grup",
 	"Create Knowledge": "Crear Coneixement",
 	"Create new key": "Crear una nova clau",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "p. ex. pdf, docx, txt",
 	"e.g. Tools for performing various operations": "p. ex. Eines per dur a terme operacions",
 	"e.g., 3, 4, 5 (leave blank for default)": "p. ex. 3, 4, 5 (deixa-ho en blanc per utilitzar el per defecte)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "p. ex. en-US, ja-JP, ca-ES (deixa-ho en blanc per detecció automàtica)",
 	"e.g., westus (leave blank for eastus)": "p. ex. westus (deixa-ho en blanc per a eastus)",
 	"e.g.) en,fr,de": "p. ex. en,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "URL d'External Web Loader",
 	"External Web Search API Key": "Clau API d'External Web Search",
 	"External Web Search URL": "URL d'External Web Search",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "No s'ha pogut afegir l'arxiu.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "No s'ha pogut connecta al servidor d'eines OpenAPI {{URL}}",
 	"Failed to copy link": "No s'ha pogut copiar l'enllaç",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "No s'han pogut obtenir els models",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "No s'ha pogut carregar el contingut del fitxer",
 	"Failed to read clipboard contents": "No s'ha pogut llegir el contingut del porta-retalls",
 	"Failed to save connections": "No s'han pogut desar les connexions",
@@ -755,6 +758,7 @@
 	"Input commands": "Entra comandes",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instal·lar des de l'URL de Github",
 	"Instant Auto-Send After Voice Transcription": "Enviament automàtic després de la transcripció de veu",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Caducitat del JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "Clau API de Kagi Search",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "Mantenir a la barra lateral",
 	"Key": "Clau",
 	"Keyboard shortcuts": "Dreceres de teclat",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Deixa-ho en blanc per utilitzar la indicació predeterminada o introdueix una indicació personalitzada",
 	"Leave model field empty to use the default model.": "Deixa el camp de model buit per utilitzar el model per defecte.",
 	"License": "Llicència",
+	"Lift List": "",
 	"Light": "Clar",
 	"Listening...": "Escoltant...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Nova eina",
 	"new-channel": "nou-canal",
 	"Next message": "Missatge següent",
+	"No chats found": "",
 	"No chats found for this user.": "No s'han trobat xats per a aquest usuari.",
 	"No chats found.": "No s'ha trobat xats.",
 	"No content": "No hi ha contingut",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Veure què hi ha de nou",
 	"Seed": "Llavor",
 	"Select a base model": "Seleccionar un model base",
+	"Select a conversation to preview": "",
 	"Select a engine": "Seleccionar un motor",
 	"Select a function": "Seleccionar una funció",
 	"Select a group": "Seleccionar un grup",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Registrar-se a {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "Millora significativament la precisió utilitzant un LLM per millorar taules, formularis, matemàtiques en línia i detecció de layout. Augmentarà la latència. Per defecte és Verdader.",
 	"Signing in to {{WEBUI_NAME}}": "Iniciant sessió a {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "Ometre la memòria cau",
 	"Skip the cache and re-run the inference. Defaults to False.": "Omet la memòria cai i torna a executar la inferència. Per defecte és Fals.",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Desbloqueja els misteris",
 	"Unpin": "Alliberar",
 	"Unravel secrets": "Descobreix els secrets",
+	"Unsupported file type.": "",
 	"Untagged": "Sense etiquetes",
 	"Untitled": "Sense títol",
 	"Update": "Actualitzar",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Webhooks d'usuari",
 	"Username": "Nom d'usuari",
 	"Users": "Usuaris",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "S'utilitza el model d'Arena predeterminat amb tots els models. Clica el botó més per afegir models personalitzats.",
 	"Utilize": "Utilitzar",
 	"Valid time units:": "Unitats de temps vàlides:",

+ 13 - 1
src/lib/i18n/locales/ceb-PH/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Paghimo og account",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Napakyas sa pagbasa sa sulod sa clipboard",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Pagsulod sa input commands",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Pag-expire sa JWT",
 	"JWT Token": "JWT token",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "Mga shortcut sa keyboard",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Kahayag",
 	"Listening...": "",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Tan-awa unsay bag-o",
 	"Seed": "Binhi",
 	"Select a base model": "",
+	"Select a conversation to preview": "",
 	"Select a engine": "",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "Mga tiggamit",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Sa paggamit",
 	"Valid time units:": "Balido nga mga yunit sa oras:",

+ 13 - 1
src/lib/i18n/locales/cs-CZ/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Vytvořit účet",
 	"Create Admin Account": "Vytvořit admin účet",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "Vytvořit skupinu",
 	"Create Knowledge": "Vytvořit knowledge",
 	"Create new key": "Vytvořit nový klíč",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Nepodařilo se přidat soubor.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Nepodařilo se přečíst obsah schránky",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Vstupní příkazy",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instalace z URL adresy Githubu",
 	"Instant Auto-Send After Voice Transcription": "Okamžité automatické odeslání po přepisu hlasu",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Vypršení JWT",
 	"JWT Token": "JWT Token (JSON Web Token)",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "Klávesové zkratky",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Nechte prázdné pro použití výchozího podnětu, nebo zadejte vlastní podnět.",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Světlo",
 	"Listening...": "Poslouchání...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Podívejte se, co je nového",
 	"Seed": "Semínko",
 	"Select a base model": "Vyberte základní model",
+	"Select a conversation to preview": "",
 	"Select a engine": "Vyberte engine",
 	"Select a function": "Vyberte funkci",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Zaregistrujte se na {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Přihlašování do {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "Odepnout",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "Nebyla označena",
 	"Untitled": "",
 	"Update": "Aktualizovat",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Uživatelské jméno",
 	"Users": "Uživatelé",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Použití výchozího modelu arény se všemi modely. Kliknutím na tlačítko plus přidejte vlastní modely.",
 	"Utilize": "Využít",
 	"Valid time units:": "Platné časové jednotky:",

+ 13 - 1
src/lib/i18n/locales/da-DK/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Opret profil",
 	"Create Admin Account": "Opret administrator profil",
 	"Create Channel": "Opret kanal",
+	"Create Folder": "",
 	"Create Group": "Opret gruppe",
 	"Create Knowledge": "Opret Viden",
 	"Create new key": "Opret en ny nøgle",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "Ekstern Web Loader URL",
 	"External Web Search API Key": "Ekstern Web Search API-nøgle",
 	"External Web Search URL": "Ekstern Web Search URL",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Kunne ikke tilføje fil.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Kunne ikke forbinde til {{URL}} OpenAPI tool server",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Kunne ikke hente modeller",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Kunne ikke indlæse filindhold.",
 	"Failed to read clipboard contents": "Kunne ikke læse indholdet af udklipsholderen",
 	"Failed to save connections": "Kunne ikke gemme forbindelser",
@@ -755,6 +758,7 @@
 	"Input commands": "Inputkommandoer",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Installer fra Github URL",
 	"Instant Auto-Send After Voice Transcription": "Øjeblikkelig automatisk afsendelse efter stemmetransskription",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT-udløb",
 	"JWT Token": "JWT-token",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Nøgle",
 	"Keyboard shortcuts": "Tastaturgenveje",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Lad stå tomt for at bruge standardprompten, eller indtast en brugerdefineret prompt",
 	"Leave model field empty to use the default model.": "",
 	"License": "Licens",
+	"Lift List": "",
 	"Light": "Lys",
 	"Listening...": "Lytter...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Nyt værktøj",
 	"new-channel": "",
 	"Next message": "Næste besked",
+	"No chats found": "",
 	"No chats found for this user.": "Ingen besked-tråde fundet for denne bruger.",
 	"No chats found.": "Ingen besked-tråde fundet.",
 	"No content": "Intet indhold",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Se, hvad der er nyt",
 	"Seed": "Seed",
 	"Select a base model": "Vælg en basemodel",
+	"Select a conversation to preview": "",
 	"Select a engine": "Vælg en engine",
 	"Select a function": "Vælg en funktion",
 	"Select a group": "Vælg en gruppe",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Tilmeld dig {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Logger ind på {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Lås op for mysterier",
 	"Unpin": "Frigør",
 	"Unravel secrets": "Afslør hemmeligheder",
+	"Unsupported file type.": "",
 	"Untagged": "Uden mærker",
 	"Untitled": "Unavngivet",
 	"Update": "Opdater",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Bruger Webhooks",
 	"Username": "Brugernavn",
 	"Users": "Brugere",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Brug den standard Arena-model med alle modeller. Klik på plusknappen for at tilføje brugerdefinerede modeller.",
 	"Utilize": "Anvend",
 	"Valid time units:": "Gyldige tidsenheder:",

+ 13 - 1
src/lib/i18n/locales/de-DE/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Konto erstellen",
 	"Create Admin Account": "Administrator-Account erstellen",
 	"Create Channel": "Kanal erstellen",
+	"Create Folder": "",
 	"Create Group": "Gruppe erstellen",
 	"Create Knowledge": "Wissen erstellen",
 	"Create new key": "Neuen Schlüssel erstellen",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "z. B. pdf, docx, txt",
 	"e.g. Tools for performing various operations": "z. B. Werkzeuge für verschiedene Operationen",
 	"e.g., 3, 4, 5 (leave blank for default)": "z. B. 3, 4, 5 (leer lassen für Standard)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "z. B. en-US,de-DE (freilassen für automatische Erkennung)",
 	"e.g., westus (leave blank for eastus)": "z. B. westus (leer lassen für eastus)",
 	"e.g.) en,fr,de": "z. B. en,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "Externer Web-Loader URL",
 	"External Web Search API Key": "Externe Websuche API-Schlüssel",
 	"External Web Search URL": "Externe Websuche URL",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Fehler beim Hinzufügen der Datei.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Verbindung zum OpenAPI-Toolserver {{URL}} fehlgeschlagen",
 	"Failed to copy link": "Fehler beim kopieren des Links",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "Fehler beim extrahieren des Inhalts aus der Datei.",
 	"Failed to fetch models": "Fehler beim Abrufen der Modelle",
 	"Failed to generate title": "Fehler beim generieren des Titels",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Fehler beim Laden des Dateiinhalts.",
 	"Failed to read clipboard contents": "Fehler beim Lesen des Inhalts der Zwischenablage.",
 	"Failed to save connections": "Verbindungen konnten nicht gespeichert werden",
@@ -755,6 +758,7 @@
 	"Input commands": "Eingabebefehle",
 	"Input Variables": "Eingabe Variablen",
 	"Insert": "Einfügen",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "Prompt als Rich Text einfügen",
 	"Install from Github URL": "Von GitHub-URL installieren",
 	"Instant Auto-Send After Voice Transcription": "Spracherkennung direkt absenden",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT-Ablauf",
 	"JWT Token": "JWT-Token",
 	"Kagi Search API Key": "Kagi Search API-Schlüssel",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "In Seitenleiste anzeigen",
 	"Key": "Schlüssel",
 	"Keyboard shortcuts": "Tastenkombinationen",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Leer lassen, um den Standardprompt zu verwenden, oder geben Sie einen benutzerdefinierten Prompt ein",
 	"Leave model field empty to use the default model.": "Leer lassen, um das Standardmodell zu verwenden.",
 	"License": "Lizenz",
+	"Lift List": "",
 	"Light": "Hell",
 	"Listening...": "Höre zu...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Neues Werkzeug",
 	"new-channel": "neuer-kanal",
 	"Next message": "Nächste Nachricht",
+	"No chats found": "",
 	"No chats found for this user.": "Keine Chats für diesen Nutzer gefunden.",
 	"No chats found.": "Keine Chats gefunden.",
 	"No content": "Kein Inhalt",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Entdecken Sie die Neuigkeiten",
 	"Seed": "Seed",
 	"Select a base model": "Wählen Sie ein Basismodell",
+	"Select a conversation to preview": "",
 	"Select a engine": "Wählen Sie eine Engine",
 	"Select a function": "Wählen Sie eine Funktion",
 	"Select a group": "Wählen Sie eine Gruppe",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Bei {{WEBUI_NAME}} registrieren",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Wird bei {{WEBUI_NAME}} angemeldet",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "Cache überspringen",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Geheimnisse entsperren",
 	"Unpin": "Lösen",
 	"Unravel secrets": "Geheimnisse lüften",
+	"Unsupported file type.": "",
 	"Untagged": "Ungetaggt",
 	"Untitled": "Unbenannt",
 	"Update": "Aktualisieren",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Benutzer Webhooks",
 	"Username": "Benutzername",
 	"Users": "Benutzer",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Verwendung des Standard-Arena-Modells mit allen Modellen. Klicken Sie auf die Plus-Schaltfläche, um benutzerdefinierte Modelle hinzuzufügen.",
 	"Utilize": "Verwenden",
 	"Valid time units:": "Gültige Zeiteinheiten:",

+ 13 - 1
src/lib/i18n/locales/dg-DG/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Create Account",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Failed to read clipboard borks",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Input commands",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT Expire",
 	"JWT Token": "JWT Borken",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "Keyboard Barkcuts",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Light",
 	"Listening...": "",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "See what's new so amaze",
 	"Seed": "Seed very plant",
 	"Select a base model": "",
+	"Select a conversation to preview": "",
 	"Select a engine": "",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "Users much users",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Utilize very use",
 	"Valid time units:": "Valid time units: much time",

+ 13 - 1
src/lib/i18n/locales/el-GR/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Δημιουργία Λογαριασμού",
 	"Create Admin Account": "Δημιουργία Λογαριασμού Διαχειριστή",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "Δημιουργία Ομάδας",
 	"Create Knowledge": "Δημιουργία Γνώσης",
 	"Create new key": "Δημιουργία νέου κλειδιού",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "π.χ. Εργαλεία για την εκτέλεση διάφορων λειτουργιών",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Αποτυχία προσθήκης αρχείου.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Αποτυχία ανάγνωσης περιεχομένων πρόχειρου",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Εισαγωγή εντολών",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Εγκατάσταση από URL Github",
 	"Instant Auto-Send After Voice Transcription": "Άμεση Αυτόματη Αποστολή μετά τη μεταγραφή φωνής",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Λήξη JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Κλειδί",
 	"Keyboard shortcuts": "Συντομεύσεις Πληκτρολογίου",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Αφήστε κενό για να χρησιμοποιήσετε την προεπιλεγμένη προτροπή, ή εισάγετε μια προσαρμοσμένη προτροπή",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Φως",
 	"Listening...": "Ακούγεται...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Δείτε τι νέο υπάρχει",
 	"Seed": "Seed",
 	"Select a base model": "Επιλέξτε ένα βασικό μοντέλο",
+	"Select a conversation to preview": "",
 	"Select a engine": "Επιλέξτε μια μηχανή",
 	"Select a function": "Επιλέξτε μια λειτουργία",
 	"Select a group": "Επιλέξτε μια ομάδα",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Εγγραφή στο {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Σύνδεση στο {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Ξεκλείδωμα μυστηρίων",
 	"Unpin": "Αφαίρεση καρφίτσματος",
 	"Unravel secrets": "Ξετυλίξτε μυστικά",
+	"Unsupported file type.": "",
 	"Untagged": "Χωρίς Ετικέτες",
 	"Untitled": "",
 	"Update": "Ενημέρωση",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Όνομα Χρήστη",
 	"Users": "Χρήστες",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Χρησιμοποιώντας το προεπιλεγμένο μοντέλο arena με όλα τα μοντέλα. Κάντε κλικ στο κουμπί συν για να προσθέσετε προσαρμοσμένα μοντέλα.",
 	"Utilize": "Αξιοποίηση",
 	"Valid time units:": "Έγκυρες μονάδες χρόνου:",

+ 13 - 1
src/lib/i18n/locales/en-GB/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "",
 	"JWT Token": "",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "",
 	"Listening...": "",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "",
 	"Seed": "",
 	"Select a base model": "",
+	"Select a conversation to preview": "",
 	"Select a engine": "",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Utilise",
 	"Valid time units:": "",

+ 11 - 1
src/lib/i18n/locales/en-US/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "",
 	"JWT Token": "",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "",
 	"Listening...": "",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "Next message",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "",
 	"Seed": "",
 	"Select a base model": "",
+	"Select a conversation to preview": "",
 	"Select a engine": "",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",

+ 13 - 1
src/lib/i18n/locales/es-ES/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Crear Cuenta",
 	"Create Admin Account": "Crear Cuenta Administrativa",
 	"Create Channel": "Crear Canal",
+	"Create Folder": "",
 	"Create Group": "Crear Grupo",
 	"Create Knowledge": "Crear Conocimiento",
 	"Create new key": "Crear Nueva Clave",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "p.ej. pdf, docx, txt ...",
 	"e.g. Tools for performing various operations": "p.ej. Herramientas para realizar diversas operaciones",
 	"e.g., 3, 4, 5 (leave blank for default)": "p.ej. , 3, 4, 5 ...",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "e.g., audio/wav,audio/mpeg,video/* (dejar en blanco para predeterminados, * para todos)",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "p.ej., en-US,ja-JP (dejar en blanco para detectar automáticamente)",
 	"e.g., westus (leave blank for eastus)": "p.ej. ,oeste (dejar vacío para este)",
 	"e.g.) en,fr,de": "p.ej. ) en,es,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "URL del Cargador Web Externo",
 	"External Web Search API Key": "Clave API del Buscador Web Externo",
 	"External Web Search URL": "URL del Buscador Web Externo",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Fallo al  añadir el archivo.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Fallo al conectar al servidor de herramientas {{URL}}",
 	"Failed to copy link": "Fallo al copiar enlace",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "Fallo al extraer el contenido del fichero.",
 	"Failed to fetch models": "Fallo al obtener los modelos",
 	"Failed to generate title": "Fallo al generar el título",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Fallo al cargar el contenido del archivo",
 	"Failed to read clipboard contents": "Fallo al leer el contenido del portapapeles",
 	"Failed to save connections": "Fallo al grabar las conexiones",
@@ -755,6 +758,7 @@
 	"Input commands": "Ingresar comandos",
 	"Input Variables": "Ingresar variables",
 	"Insert": "Insertar",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "Insertar Indicador como Texto Enriquecido",
 	"Install from Github URL": "Instalar desde la URL de Github",
 	"Instant Auto-Send After Voice Transcription": "AutoEnvio Instantaneo tras la Transcripción de Voz",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Expiración del JSON Web Token (JWT)",
 	"JWT Token": "JSON Web Token",
 	"Kagi Search API Key": "Clave API de Kagi Search",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "Mantener en Barra Lateral",
 	"Key": "Clave",
 	"Keyboard shortcuts": "Atajos de teclado",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Dejar vacío para usar el indicador predeterminado, o Ingresar un indicador personalizado",
 	"Leave model field empty to use the default model.": "Dejar vacío el campo modelo para usar el modelo predeterminado.",
 	"License": "Licencia",
+	"Lift List": "",
 	"Light": "Claro",
 	"Listening...": "Escuchando...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Nueva Herramienta",
 	"new-channel": "nuevo-canal",
 	"Next message": "Siguiente mensaje",
+	"No chats found": "",
 	"No chats found for this user.": "No se encontró ningún chat de este usuario",
 	"No chats found.": "No se encontró ningún chat",
 	"No content": "Sin contenido",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Ver las novedades",
 	"Seed": "Semilla",
 	"Select a base model": "Seleccionar un modelo base",
+	"Select a conversation to preview": "",
 	"Select a engine": "Seleccionar un motor",
 	"Select a function": "Seleccionar una función",
 	"Select a group": "Seleccionar un grupo",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Crear una Cuenta en {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "Mejora significativamente la precisión mediante el uso de un LLM para optimizar tablas, formularios, cálculos en línea y la detección de diseño. Incrementa la latencia. El valor predeterminado es 'Verdadero'",
 	"Signing in to {{WEBUI_NAME}}": "Iniciando Sesión en {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "Evitar Caché",
 	"Skip the cache and re-run the inference. Defaults to False.": "Evitar caché y reiniciar la interfaz. Valor predeterminado Falso",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Desbloquear misterios",
 	"Unpin": "Desfijar",
 	"Unravel secrets": "Desentrañar secretos",
+	"Unsupported file type.": "",
 	"Untagged": "Sin Etiqueta",
 	"Untitled": "Sin Título",
 	"Update": "Actualizar",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Usuario Webhooks",
 	"Username": "Nombre de Usuario",
 	"Users": "Usuarios",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Usando el modelo de arena predeterminado con todos los modelos. Pulsar en el botón + para agregar modelos personalizados.",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades de tiempo válidas:",

+ 13 - 1
src/lib/i18n/locales/et-EE/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Loo konto",
 	"Create Admin Account": "Loo administraatori konto",
 	"Create Channel": "Loo kanal",
+	"Create Folder": "",
 	"Create Group": "Loo grupp",
 	"Create Knowledge": "Loo teadmised",
 	"Create new key": "Loo uus võti",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "nt tööriistad mitmesuguste operatsioonide teostamiseks",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Faili lisamine ebaõnnestus.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Mudelite toomine ebaõnnestus",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Lõikelaua sisu lugemine ebaõnnestus",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Sisendkäsud",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Installige Github URL-ilt",
 	"Instant Auto-Send After Voice Transcription": "Kohene automaatne saatmine pärast hääle transkriptsiooni",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT aegumine",
 	"JWT Token": "JWT token",
 	"Kagi Search API Key": "Kagi Search API võti",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Võti",
 	"Keyboard shortcuts": "Klaviatuuri otseteed",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Jäta tühjaks, et kasutada vaikimisi vihjet, või sisesta kohandatud vihje",
 	"Leave model field empty to use the default model.": "Jäta mudeli väli tühjaks, et kasutada vaikimisi mudelit.",
 	"License": "Litsents",
+	"Lift List": "",
 	"Light": "Hele",
 	"Listening...": "Kuulamine...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "uus-kanal",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Vaata, mis on uut",
 	"Seed": "Seeme",
 	"Select a base model": "Valige baas mudel",
+	"Select a conversation to preview": "",
 	"Select a engine": "Valige mootor",
 	"Select a function": "Valige funktsioon",
 	"Select a group": "Valige grupp",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Registreeru {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Sisselogimine {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Ava mõistatused",
 	"Unpin": "Võta lahti",
 	"Unravel secrets": "Ava saladused",
+	"Unsupported file type.": "",
 	"Untagged": "Sildistamata",
 	"Untitled": "",
 	"Update": "Uuenda",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Kasutajanimi",
 	"Users": "Kasutajad",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Kasutatakse vaikimisi areena mudelit kõigi mudelitega. Kohandatud mudelite lisamiseks klõpsake plussmärgiga nuppu.",
 	"Utilize": "Kasuta",
 	"Valid time units:": "Kehtivad ajaühikud:",

+ 13 - 1
src/lib/i18n/locales/eu-ES/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Sortu Kontua",
 	"Create Admin Account": "Sortu Administratzaile Kontua",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "Sortu Taldea",
 	"Create Knowledge": "Sortu Ezagutza",
 	"Create new key": "Sortu gako berria",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "adib. Hainbat eragiketa egiteko tresnak",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Huts egin du fitxategia gehitzean.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Huts egin du arbelaren edukia irakurtzean",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Sartu komandoak",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instalatu Github URLtik",
 	"Instant Auto-Send After Voice Transcription": "Bidalketa Automatiko Berehalakoa Ahots Transkripzioaren Ondoren",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT Iraungitzea",
 	"JWT Token": "JWT Tokena",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Gakoa",
 	"Keyboard shortcuts": "Teklatuko lasterbideak",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Utzi hutsik prompt lehenetsia erabiltzeko, edo sartu prompt pertsonalizatu bat",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Argia",
 	"Listening...": "Entzuten...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Ikusi berritasunak",
 	"Seed": "Hazia",
 	"Select a base model": "Hautatu oinarrizko modeloa",
+	"Select a conversation to preview": "",
 	"Select a engine": "Hautatu motor bat",
 	"Select a function": "Hautatu funtzio bat",
 	"Select a group": "Hautatu talde bat",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Erregistratu {{WEBUI_NAME}}-n",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "{{WEBUI_NAME}}-n saioa hasten",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Askatu misterioak",
 	"Unpin": "Kendu aingura",
 	"Unravel secrets": "Askatu sekretuak",
+	"Unsupported file type.": "",
 	"Untagged": "Etiketatu gabea",
 	"Untitled": "",
 	"Update": "Eguneratu",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Erabiltzaile-izena",
 	"Users": "Erabiltzaileak",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Arena modelo lehenetsia erabiltzen modelo guztiekin. Egin klik plus botoian modelo pertsonalizatuak gehitzeko.",
 	"Utilize": "Erabili",
 	"Valid time units:": "Denbora unitate baliozkoak:",

+ 13 - 1
src/lib/i18n/locales/fa-IR/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "ساخت حساب کاربری",
 	"Create Admin Account": "ایجاد حساب مدیر",
 	"Create Channel": "ایجاد کانال",
+	"Create Folder": "",
 	"Create Group": "ایجاد گروه",
 	"Create Knowledge": "ایجاد دانش",
 	"Create new key": "ساخت کلید جدید",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "مثلا ابزارهایی برای انجام عملیات مختلف",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "مثلا en-US,ja-JP (برای تشخیص خودکار خالی بگذارید)",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "خطا در افزودن پرونده",
 	"Failed to connect to {{URL}} OpenAPI tool server": "خطا در اتصال به سرور ابزار OpenAPI {{URL}}",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "خطا در دریافت مدل\u200cها",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود",
 	"Failed to save connections": "خطا در ذخیره\u200cسازی اتصالات",
@@ -755,6 +758,7 @@
 	"Input commands": "ورودی دستورات",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "نصب از ادرس Github",
 	"Instant Auto-Send After Voice Transcription": "ارسال خودکار فوری پس از رونویسی صوتی",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT انقضای",
 	"JWT Token": "JWT توکن",
 	"Kagi Search API Key": "کلید API جستجوی کاگی",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "کلید",
 	"Keyboard shortcuts": "میانبرهای صفحه کلید",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "برای استفاده از پرامپت پیش\u200cفرض خالی بگذارید، یا یک پرامپت سفارشی وارد کنید",
 	"Leave model field empty to use the default model.": "برای استفاده از مدل پیش\u200cفرض، فیلد مدل را خالی بگذارید.",
 	"License": "مجوز",
+	"Lift List": "",
 	"Light": "روشن",
 	"Listening...": "در حال گوش دادن...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "کانال-جدید",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "ببینید موارد جدید چه بوده",
 	"Seed": "هسته",
 	"Select a base model": "انتخاب یک مدل پایه",
+	"Select a conversation to preview": "",
 	"Select a engine": "انتخاب یک موتور",
 	"Select a function": "انتخاب یک تابع",
 	"Select a group": "انتخاب یک گروه",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "ثبت نام در {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "در حال ورود به {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "رمزگشایی از اسرار",
 	"Unpin": "برداشتن پین",
 	"Unravel secrets": "کشف رازها",
+	"Unsupported file type.": "",
 	"Untagged": "بدون برچسب",
 	"Untitled": "",
 	"Update": "به\u200cروزرسانی",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "وب\u200cهوک\u200cهای کاربر",
 	"Username": "نام کاربری",
 	"Users": "کاربران",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "در حال استفاده از مدل آرنا با همهٔ مدل\u200cهای دیگر به طور پیش\u200cفرض. برای افزودن مدل\u200cهای سفارشی، روی دکمه به\u200cعلاوه کلیک کنید.",
 	"Utilize": "استفاده کنید",
 	"Valid time units:": "واحدهای زمانی معتبر:",

+ 13 - 1
src/lib/i18n/locales/fi-FI/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Luo tili",
 	"Create Admin Account": "Luo ylläpitäjätili",
 	"Create Channel": "Luo kanava",
+	"Create Folder": "",
 	"Create Group": "Luo ryhmä",
 	"Create Knowledge": "Luo tietoa",
 	"Create new key": "Luo uusi avain",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "esim. pdf, docx, txt",
 	"e.g. Tools for performing various operations": "esim. työkaluja erilaisten toimenpiteiden suorittamiseen",
 	"e.g., 3, 4, 5 (leave blank for default)": "esim. 3, 4, 5 (jätä tyhjäksi, jos haluat oletusarvon)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "esim. en-US,ja-JP (Tyhjäksi jättämällä, automaattinen tunnistus)",
 	"e.g., westus (leave blank for eastus)": "esim. westus (jätä tyhjäksi eastusta varten)",
 	"e.g.) en,fr,de": "esim.) en,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "Ulkoinen Web Loader verkko-osoite",
 	"External Web Search API Key": "Ulkoinen Web Search API-avain",
 	"External Web Search URL": "Ulkoinen Web Search verkko-osoite",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Tiedoston lisääminen epäonnistui.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Yhdistäminen {{URL}} OpenAPI työkalu palvelimeen epäonnistui",
 	"Failed to copy link": "Linkin kopioinmti epäonnistui",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Mallien hakeminen epäonnistui",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Tiedoston sisällön lataaminen epäonnistui.",
 	"Failed to read clipboard contents": "Leikepöydän sisällön lukeminen epäonnistui",
 	"Failed to save connections": "Yhteyksien tallentaminen epäonnistui",
@@ -755,6 +758,7 @@
 	"Input commands": "Syötekäskyt",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Asenna Github-URL:stä",
 	"Instant Auto-Send After Voice Transcription": "Heti automaattinen lähetys äänitunnistuksen jälkeen",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT-vanheneminen",
 	"JWT Token": "JWT-token",
 	"Kagi Search API Key": "Kagi Search API -avain",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "Pidä sivupalkissa",
 	"Key": "Avain",
 	"Keyboard shortcuts": "Pikanäppäimet",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Jätä tyhjäksi käyttääksesi oletuskehotetta tai kirjoita mukautettu kehote",
 	"Leave model field empty to use the default model.": "Jätä malli kenttä tyhjäksi käyttääksesi oletus mallia.",
 	"License": "Lisenssi",
+	"Lift List": "",
 	"Light": "Vaalea",
 	"Listening...": "Kuuntelee...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Uusi työkalu",
 	"new-channel": "uusi-kanava",
 	"Next message": "Seuraava viesti",
+	"No chats found": "",
 	"No chats found for this user.": "Käyttäjän keskusteluja ei löytynyt.",
 	"No chats found.": "Keskusteluja ei löytynyt",
 	"No content": "Ei sisältöä",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Katso, mitä uutta",
 	"Seed": "Siemenluku",
 	"Select a base model": "Valitse perusmalli",
+	"Select a conversation to preview": "",
 	"Select a engine": "Valitse moottori",
 	"Select a function": "Valitse toiminto",
 	"Select a group": "Valitse ryhmä",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Rekisteröidy palveluun {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "Parantaa merkittävästi tarkkuutta käyttämällä LLM:ää taulukoiden, lomakkeiden, matematiikan ja asettelun havaitsemisen parantamiseen. Lisää viivettä. Oletusarvo on käytössä.",
 	"Signing in to {{WEBUI_NAME}}": "Kirjaudutaan sisään palveluun {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "Ohita välimuisti",
 	"Skip the cache and re-run the inference. Defaults to False.": "Ohita välimuisti ja suorita päätelmä uudelleen. Oletusarvo ei käytössä.",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Selvitä arvoituksia",
 	"Unpin": "Irrota kiinnitys",
 	"Unravel secrets": "Avaa salaisuuksia",
+	"Unsupported file type.": "",
 	"Untagged": "Ei tageja",
 	"Untitled": "Nimetön",
 	"Update": "Päivitä",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Käyttäjän Webhook:it",
 	"Username": "Käyttäjätunnus",
 	"Users": "Käyttäjät",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Käytetään oletusarena-mallia kaikkien mallien kanssa. Napsauta plus-painiketta lisätäksesi mukautettuja malleja.",
 	"Utilize": "Hyödynnä",
 	"Valid time units:": "Kelvolliset aikayksiköt:",

+ 13 - 1
src/lib/i18n/locales/fr-CA/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Créer un compte",
 	"Create Admin Account": "Créer un compte administrateur",
 	"Create Channel": "Créer un canal",
+	"Create Folder": "",
 	"Create Group": "Créer un groupe",
 	"Create Knowledge": "Créer une connaissance",
 	"Create new key": "Créer une nouvelle clé",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "par ex. pdf, docx, txt",
 	"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
 	"e.g., 3, 4, 5 (leave blank for default)": "par ex., 3, 4, 5 (laisser vide pour par défaut)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "par ex., en-US, ja-JP (laisser vide pour détection automatique)",
 	"e.g., westus (leave blank for eastus)": "par ex., westus (laisser vide pour eastus)",
 	"e.g.) en,fr,de": "par ex., fr, en, de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "URL du chargeur Web externe",
 	"External Web Search API Key": "Clé API de la recherche Web externe",
 	"External Web Search URL": "URL de la recherche Web externe",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Échec de l'ajout du fichier.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Échec de la connexion au serveur d'outils OpenAPI {{URL}}",
 	"Failed to copy link": "Échec de la copie du lien",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Échec de la récupération des modèles",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Échec du chargement du contenu du fichier",
 	"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
 	"Failed to save connections": "Échec de la sauvegarde des connexions",
@@ -755,6 +758,7 @@
 	"Input commands": "Commandes d'entrée",
 	"Input Variables": "Variables d'entrée",
 	"Insert": "Insérer",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "Insérer le prompt en tant que texte enrichi",
 	"Install from Github URL": "Installer depuis une URL GitHub",
 	"Instant Auto-Send After Voice Transcription": "Envoi automatique après la transcription",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Expiration du token JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "Clé API Kagi Search",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "Epingler dans la barre latérale",
 	"Key": "Clé",
 	"Keyboard shortcuts": "Raccourcis clavier",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Laissez vide pour utiliser le prompt par défaut, ou entrez un prompt personnalisé",
 	"Leave model field empty to use the default model.": "Laisser le champ du modèle vide pour utiliser le modèle par défaut.",
 	"License": "Licence",
+	"Lift List": "",
 	"Light": "Clair",
 	"Listening...": "Écoute en cours...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Nouvel outil",
 	"new-channel": "nouveau-canal",
 	"Next message": "Message suivant",
+	"No chats found": "",
 	"No chats found for this user.": "Pas de conversation trouvée pour cet utilisateur.",
 	"No chats found.": "Pas de conversation trouvée.",
 	"No content": "Pas de contenu",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Découvrez les nouvelles fonctionnalités",
 	"Seed": "Seed",
 	"Select a base model": "Sélectionnez un modèle de base",
+	"Select a conversation to preview": "",
 	"Select a engine": "Sélectionnez un moteur",
 	"Select a function": "Sélectionnez une fonction",
 	"Select a group": "Sélectionner un groupe",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Inscrivez-vous à {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "Améliore considérablement la précision en utilisant un LLM pour améliorer la détection des tableaux, des formulaires, des mathématiques en ligne et de la mise en page. Augmente la latence. Par défaut à True.",
 	"Signing in to {{WEBUI_NAME}}": "Connexion à {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "Ne pas utiliser le cache",
 	"Skip the cache and re-run the inference. Defaults to False.": "Ne pas utiliser le cache et re executer l'inférence. Par defaut à False",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Déverrouiller les mystères",
 	"Unpin": "Désépingler",
 	"Unravel secrets": "Dévoiler les secrets",
+	"Unsupported file type.": "",
 	"Untagged": "Pas de tag",
 	"Untitled": "Sans titre",
 	"Update": "Mise à jour",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Webhooks utilisateur",
 	"Username": "Nom d'utilisateur",
 	"Users": "Utilisateurs",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Utilisation du modèle d'arène par défaut avec tous les modèles. Cliquez sur le bouton plus pour ajouter des modèles personnalisés.",
 	"Utilize": "Utilisez",
 	"Valid time units:": "Unités de temps valides\u00a0:",

+ 13 - 1
src/lib/i18n/locales/fr-FR/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Créer un compte",
 	"Create Admin Account": "Créer un compte administrateur",
 	"Create Channel": "Créer un canal",
+	"Create Folder": "",
 	"Create Group": "Créer un groupe",
 	"Create Knowledge": "Créer une connaissance",
 	"Create new key": "Créer une nouvelle clé",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "par ex. pdf, docx, txt",
 	"e.g. Tools for performing various operations": "par ex. Outils pour effectuer diverses opérations",
 	"e.g., 3, 4, 5 (leave blank for default)": "par ex., 3, 4, 5 (laisser vide pour par défaut)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "par ex., audio/wav,audio/mpeg,video/* (laisser vide pour détection automatique)",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "par ex., en-US, ja-JP (laisser vide pour détection automatique)",
 	"e.g., westus (leave blank for eastus)": "par ex., westus (laisser vide pour eastus)",
 	"e.g.) en,fr,de": "par ex., fr, en, de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "URL du chargeur Web externe",
 	"External Web Search API Key": "Clé API de la recherche Web externe",
 	"External Web Search URL": "URL de la recherche Web externe",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Échec de l'ajout du fichier.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Échec de la connexion au serveur d'outils OpenAPI {{URL}}",
 	"Failed to copy link": "Échec de la copie du lien",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "Échec de l'extraction du contenu du fichier",
 	"Failed to fetch models": "Échec de la récupération des modèles",
 	"Failed to generate title": "Échec de la génération du titre",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Échec du chargement du contenu du fichier",
 	"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers",
 	"Failed to save connections": "Échec de la sauvegarde des connexions",
@@ -755,6 +758,7 @@
 	"Input commands": "Commandes d'entrée",
 	"Input Variables": "Variables d'entrée",
 	"Insert": "Insérer",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "Insérer le prompt en tant que texte enrichi",
 	"Install from Github URL": "Installer depuis une URL GitHub",
 	"Instant Auto-Send After Voice Transcription": "Envoi automatique après la transcription",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Expiration du token JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "Clé API Kagi Search",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "Epingler dans la barre latérale",
 	"Key": "Clé",
 	"Keyboard shortcuts": "Raccourcis clavier",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Laissez vide pour utiliser le prompt par défaut, ou entrez un prompt personnalisé",
 	"Leave model field empty to use the default model.": "Laisser le champ du modèle vide pour utiliser le modèle par défaut.",
 	"License": "Licence",
+	"Lift List": "",
 	"Light": "Clair",
 	"Listening...": "Écoute en cours...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Nouvel outil",
 	"new-channel": "nouveau-canal",
 	"Next message": "Message suivant",
+	"No chats found": "",
 	"No chats found for this user.": "Pas de conversation trouvée pour cet utilisateur.",
 	"No chats found.": "Pas de conversation trouvée.",
 	"No content": "Pas de contenu",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Découvrez les nouvelles fonctionnalités",
 	"Seed": "Seed",
 	"Select a base model": "Sélectionnez un modèle de base",
+	"Select a conversation to preview": "",
 	"Select a engine": "Sélectionnez un moteur",
 	"Select a function": "Sélectionnez une fonction",
 	"Select a group": "Sélectionner un groupe",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Inscrivez-vous à {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "Améliore considérablement la précision en utilisant un LLM pour améliorer la détection des tableaux, des formulaires, des mathématiques en ligne et de la mise en page. Augmente la latence. Par défaut à True.",
 	"Signing in to {{WEBUI_NAME}}": "Connexion à {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "Ne pas utiliser le cache",
 	"Skip the cache and re-run the inference. Defaults to False.": "Ne pas utiliser le cache et re executer l'inférence. Par defaut à False",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Déverrouiller les mystères",
 	"Unpin": "Désépingler",
 	"Unravel secrets": "Dévoiler les secrets",
+	"Unsupported file type.": "",
 	"Untagged": "Pas de tag",
 	"Untitled": "Sans titre",
 	"Update": "Mise à jour",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Webhooks utilisateur",
 	"Username": "Nom d'utilisateur",
 	"Users": "Utilisateurs",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Utilisation du modèle d'arène par défaut avec tous les modèles. Cliquez sur le bouton plus pour ajouter des modèles personnalisés.",
 	"Utilize": "Utilisez",
 	"Valid time units:": "Unités de temps valides\u00a0:",

+ 13 - 1
src/lib/i18n/locales/gl-ES/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Xerar unha conta",
 	"Create Admin Account": "Xerar conta administrativa",
 	"Create Channel": "Xerar Canal",
+	"Create Folder": "",
 	"Create Group": "Xerar grupo",
 	"Create Knowledge": "Xerar Conocemento",
 	"Create new key": "Xerar unha nova chave",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "p.ej. ferramentas para realizar diversas operacions",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Non pudo agregarse o Arquivo.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Non puderon obterse os modelos",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Non pudo Lerse o contido do portapapeles",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Ingresar comandos",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instalar desde a URL de Github",
 	"Instant Auto-Send After Voice Transcription": "Auto-Enviar despois da Transcripción de Voz",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Expiración do JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "chave API de Kagi Search",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Chave",
 	"Keyboard shortcuts": "Atallos de teclado",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Deixa vacío para usar o prompt predeterminado, o ingrese un prompt personalizado",
 	"Leave model field empty to use the default model.": "Deixa o campo do modelo vacío para usar o modelo predeterminado.",
 	"License": "Licencia",
+	"Lift List": "",
 	"Light": "Claro",
 	"Listening...": "Escoitando...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "novo-canal",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Ver as novedades",
 	"Seed": "Semilla",
 	"Select a base model": "Seleccionar un modelo base",
+	"Select a conversation to preview": "",
 	"Select a engine": "Busca un motor",
 	"Select a function": "Busca unha función",
 	"Select a group": "Seleccionar un grupo",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Xerar unha conta en {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Iniciando sesión en {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Desbloquear misterios",
 	"Unpin": "Desanclar",
 	"Unravel secrets": "Desentrañar secretos",
+	"Unsupported file type.": "",
 	"Untagged": "Sin etiquetar",
 	"Untitled": "",
 	"Update": "Actualizar",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Nombre de usuario",
 	"Users": "Usuarios",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Usando o modelo de arena predeterminado con todos os modelos. Haga clic no botón mais para agregar modelos personalizados.",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades válidas de tempo:",

+ 13 - 1
src/lib/i18n/locales/he-IL/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "צור חשבון",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "יצירת קבוצה",
 	"Create Knowledge": "",
 	"Create new key": "צור מפתח חדש",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "קריאת תוכן הלוח נכשלה",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "פקודות קלט",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "התקן מכתובת URL של Github",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "תפוגת JWT",
 	"JWT Token": "אסימון JWT",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "קיצורי מקלדת",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "רישיון",
+	"Lift List": "",
 	"Light": "בהיר",
 	"Listening...": "",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "כלי חדש",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "לא נמצאו צ'אטים ליוזר הזה.",
 	"No chats found.": "לא נמצאו צ'אטים",
 	"No content": "אין תוכן",
@@ -1140,6 +1147,7 @@
 	"See what's new": "ראה מה חדש",
 	"Seed": "זרע",
 	"Select a base model": "בחירת מודל בסיס",
+	"Select a conversation to preview": "",
 	"Select a engine": "",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "משתמשים",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "שימוש",
 	"Valid time units:": "יחידות זמן תקינות:",

+ 13 - 1
src/lib/i18n/locales/hi-IN/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "खाता बनाएं",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "नया क्रिप्टोग्राफिक क्षेत्र बनाएं",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "क्लिपबोर्ड सामग्री पढ़ने में विफल",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "इनपुट क命",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Github URL से इंस्टॉल करें",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT समाप्ति",
 	"JWT Token": "जट टोकन",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "कीबोर्ड शॉर्टकट",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "सुन",
 	"Listening...": "",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "देखें, क्या नया है",
 	"Seed": "सीड्\u200c",
 	"Select a base model": "एक आधार मॉडल का चयन करें",
+	"Select a conversation to preview": "",
 	"Select a engine": "",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "उपयोगकर्ताओं",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "उपयोग करें",
 	"Valid time units:": "मान्य समय इकाइयाँ:",

+ 13 - 1
src/lib/i18n/locales/hr-HR/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Stvori račun",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "Stvori novi ključ",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Neuspješno čitanje sadržaja međuspremnika",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Unos naredbi",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instaliraj s Github URL-a",
 	"Instant Auto-Send After Voice Transcription": "Trenutačno automatsko slanje nakon glasovne transkripcije",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Isticanje JWT-a",
 	"JWT Token": "JWT token",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "Tipkovnički prečaci",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Svijetlo",
 	"Listening...": "Slušam...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Pogledajte što je novo",
 	"Seed": "Sjeme",
 	"Select a base model": "Odabir osnovnog modela",
+	"Select a conversation to preview": "",
 	"Select a engine": "Odaberite pogon",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "Korisnici",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Iskoristi",
 	"Valid time units:": "Važeće vremenske jedinice:",

+ 13 - 1
src/lib/i18n/locales/hu-HU/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Fiók létrehozása",
 	"Create Admin Account": "Admin fiók létrehozása",
 	"Create Channel": "Csatorna létrehozása",
+	"Create Folder": "",
 	"Create Group": "Csoport létrehozása",
 	"Create Knowledge": "Tudás létrehozása",
 	"Create new key": "Új kulcs létrehozása",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "pl. Eszközök különböző műveletek elvégzéséhez",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Nem sikerült hozzáadni a fájlt.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Nem sikerült csatlakozni a {{URL}} OpenAPI eszköszerverhez",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Nem sikerült lekérni a modelleket",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Nem sikerült olvasni a vágólap tartalmát",
 	"Failed to save connections": "Nem sikerült menteni a kapcsolatokat",
@@ -755,6 +758,7 @@
 	"Input commands": "Beviteli parancsok",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Telepítés Github URL-ről",
 	"Instant Auto-Send After Voice Transcription": "Azonnali automatikus küldés hangfelismerés után",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT lejárat",
 	"JWT Token": "JWT token",
 	"Kagi Search API Key": "Kagi Search API kulcs",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Kulcs",
 	"Keyboard shortcuts": "Billentyűparancsok",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Hagyja üresen az alapértelmezett prompt használatához, vagy adjon meg egyéni promptot",
 	"Leave model field empty to use the default model.": "Hagyja üresen a modell mezőt az alapértelmezett modell használatához.",
 	"License": "Licenc",
+	"Lift List": "",
 	"Light": "Világos",
 	"Listening...": "Hallgatás...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "új csatorna",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Újdonságok megtekintése",
 	"Seed": "Seed",
 	"Select a base model": "Válasszon egy alapmodellt",
+	"Select a conversation to preview": "",
 	"Select a engine": "Válasszon egy motort",
 	"Select a function": "Válasszon egy funkciót",
 	"Select a group": "Válasszon egy csoportot",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Regisztráció ide: {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Bejelentkezés ide: {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Titkok feloldása",
 	"Unpin": "Rögzítés feloldása",
 	"Unravel secrets": "Titkok megfejtése",
+	"Unsupported file type.": "",
 	"Untagged": "Címkézetlen",
 	"Untitled": "",
 	"Update": "Frissítés",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Felhasználói webhookok",
 	"Username": "Felhasználónév",
 	"Users": "Felhasználók",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Az alapértelmezett aréna modell használata az összes modellel. Kattintson a plusz gombra egyéni modellek hozzáadásához.",
 	"Utilize": "Használat",
 	"Valid time units:": "Érvényes időegységek:",

+ 13 - 1
src/lib/i18n/locales/id-ID/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Buat Akun",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "Buat kunci baru",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Gagal membaca konten papan klip",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Perintah masukan",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instal dari URL Github",
 	"Instant Auto-Send After Voice Transcription": "Kirim Otomatis Instan Setelah Transkripsi Suara",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Kedaluwarsa JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "Pintasan keyboard",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Cahaya",
 	"Listening...": "Mendengarkan",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Lihat apa yang baru",
 	"Seed": "Benih",
 	"Select a base model": "Pilih model dasar",
+	"Select a conversation to preview": "",
 	"Select a engine": "Pilih mesin",
 	"Select a function": "Memilih fungsi",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "Memperbarui",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "Pengguna",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Memanfaatkan",
 	"Valid time units:": "Unit waktu yang valid:",

+ 13 - 1
src/lib/i18n/locales/ie-GA/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Cruthaigh Cuntas",
 	"Create Admin Account": "Cruthaigh Cuntas Riaracháin",
 	"Create Channel": "Cruthaigh Cainéal",
+	"Create Folder": "",
 	"Create Group": "Cruthaigh Grúpa",
 	"Create Knowledge": "Cruthaigh Eolais",
 	"Create new key": "Cruthaigh eochair nua",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "m.sh. pdf, docx, txt",
 	"e.g. Tools for performing various operations": "m.sh. Uirlisí chun oibríochtaí éagsúla a dhéanamh",
 	"e.g., 3, 4, 5 (leave blank for default)": "m.sh., 3, 4, 5 (fág bán le haghaidh réamhshocraithe)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "m.sh., en-US, ja-JP (fág bán le haghaidh uathbhraite)",
 	"e.g., westus (leave blank for eastus)": "m.sh., westus (fág bán le haghaidh eastus)",
 	"e.g.) en,fr,de": "m.sh.) en, fr, de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "URL Luchtóra Gréasáin Sheachtraigh",
 	"External Web Search API Key": "Eochair API Cuardaigh Gréasáin Sheachtrach",
 	"External Web Search URL": "URL Cuardaigh Gréasáin Sheachtrach",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Theip ar an gcomhad a chur leis.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Theip ar nascadh le {{URL}} freastalaí uirlisí OpenAPI",
 	"Failed to copy link": "Theip ar an nasc a chóipeáil",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Theip ar shamhlacha a fháil",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Theip ar lódáil ábhar an chomhaid.",
 	"Failed to read clipboard contents": "Theip ar ábhar gearrthaisce a lé",
 	"Failed to save connections": "Theip ar na naisc a shábháil",
@@ -755,6 +758,7 @@
 	"Input commands": "Orduithe ionchuir",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Suiteáil ó Github URL",
 	"Instant Auto-Send After Voice Transcription": "Seoladh Uathoibríoch Láithreach Tar éis",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Éag JWT",
 	"JWT Token": "Comhartha JWT",
 	"Kagi Search API Key": "Eochair API Chuardaigh Kagi",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "Coinnigh sa Bharra Taobh",
 	"Key": "Eochair",
 	"Keyboard shortcuts": "Aicearraí méarchlár",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Fág folamh chun an leid réamhshocraithe a úsáid, nó cuir isteach leid saincheaptha",
 	"Leave model field empty to use the default model.": "Fág réimse an mhúnla folamh chun an tsamhail réamhshocraithe a úsáid.",
 	"License": "Ceadúnas",
+	"Lift List": "",
 	"Light": "Solas",
 	"Listening...": "Éisteacht...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Uirlis Nua",
 	"new-channel": "nua-chainéil",
 	"Next message": "An chéad teachtaireacht eile",
+	"No chats found": "",
 	"No chats found for this user.": "Ní bhfuarthas aon chomhráite don úsáideoir seo.",
 	"No chats found.": "Ní bhfuarthas aon chomhráite.",
 	"No content": "Gan aon ábhar",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Féach cad atá nua",
 	"Seed": "Síol",
 	"Select a base model": "Roghnaigh múnla bonn",
+	"Select a conversation to preview": "",
 	"Select a engine": "Roghnaigh inneall",
 	"Select a function": "Roghnaigh feidhm",
 	"Select a group": "Roghnaigh grúpa",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Cláraigh le {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "Feabhsaíonn sé cruinneas go suntasach trí LLM a úsáid chun táblaí, foirmeacha, matamaitic inlíne, agus braiteadh leagan amach a fheabhsú. Méadóidh sé an mhoill. Réamhshocrú go Fíor.",
 	"Signing in to {{WEBUI_NAME}}": "Ag síniú isteach ar {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "Seachain an Taisce",
 	"Skip the cache and re-run the inference. Defaults to False.": "Seachain an taisce agus athrith an tátal. Réamhshocrú Bréagach.",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Díghlasáil rúndiamhra",
 	"Unpin": "Díphoráil",
 	"Unravel secrets": "Rúin a réiteach",
+	"Unsupported file type.": "",
 	"Untagged": "Gan chlib",
 	"Untitled": "Gan Teideal",
 	"Update": "Nuashonraigh",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Crúcaí Gréasáin Úsáideoir",
 	"Username": "Ainm Úsáideora",
 	"Users": "Úsáideoirí",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Ag baint úsáide as an múnla réimse réamhshocraithe le gach múnlaí. Cliceáil ar an gcnaipe móide chun múnlaí saincheaptha a chur leis.",
 	"Utilize": "Úsáid",
 	"Valid time units:": "Aonaid ama bailí:",

+ 13 - 1
src/lib/i18n/locales/it-IT/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Crea account",
 	"Create Admin Account": "Crea account amministratore",
 	"Create Channel": "Crea canale",
+	"Create Folder": "",
 	"Create Group": "Crea gruppo",
 	"Create Knowledge": "Crea conoscenza",
 	"Create new key": "Crea nuova chiave",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "ad esempio pdf, docx, txt",
 	"e.g. Tools for performing various operations": "ad esempio strumenti per eseguire varie operazioni",
 	"e.g., 3, 4, 5 (leave blank for default)": "ad esempio, 3, 4, 5 (lascia vuoto per predefinito)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "ad esempio, en-US,ja-JP (lascia vuoto per auto-rilevamento)",
 	"e.g., westus (leave blank for eastus)": "ad esempio, westus (lascia vuoto per est)",
 	"e.g.) en,fr,de": "ad esempio ) en,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "URL del web loader esterno",
 	"External Web Search API Key": "Chiave API di ricerca web esterna",
 	"External Web Search URL": "URL di ricerca web esterna",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Impossibile aggiungere il file.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Impossibile connettersi al server dello strumento OpenAPI {{URL}}",
 	"Failed to copy link": "Impossibile copiare il link",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Impossibile recuperare i modelli",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Impossibile caricare il contenuto del file.",
 	"Failed to read clipboard contents": "Impossibile leggere il contenuto degli appunti",
 	"Failed to save connections": "Impossibile salvare le connessioni",
@@ -755,6 +758,7 @@
 	"Input commands": "Comandi di input",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Eseguire l'installazione dall'URL di Github",
 	"Instant Auto-Send After Voice Transcription": "Invio automatico istantaneo dopo la trascrizione vocale",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Scadenza JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "Chiave API di ricerca Kagi",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "Mantieni nella barra laterale",
 	"Key": "Chiave",
 	"Keyboard shortcuts": "Scorciatoie da tastiera",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Lascia vuoto per utilizzare il prompt predefinito o inserisci un prompt personalizzato",
 	"Leave model field empty to use the default model.": "Lascia vuoto il campo modello per utilizzare il modello predefinito.",
 	"License": "Licenza",
+	"Lift List": "",
 	"Light": "Chiaro",
 	"Listening...": "In ascolto...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Nuovo strumento",
 	"new-channel": "nuovo-canale",
 	"Next message": "Messaggio successivo",
+	"No chats found": "",
 	"No chats found for this user.": "Nessuna chat trovata per questo utente.",
 	"No chats found.": "Nessuna chat trovata.",
 	"No content": "Nessun contenuto",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Guarda le novità",
 	"Seed": "Seme",
 	"Select a base model": "Selezionare un modello di base",
+	"Select a conversation to preview": "",
 	"Select a engine": "Seleziona un motore",
 	"Select a function": "Seleziona una funzione",
 	"Select a group": "Seleziona un gruppo",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Registrati a {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Accedi a {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "Salta cache",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Sblocca misteri",
 	"Unpin": "Rimuovi fissato",
 	"Unravel secrets": "Svela segreti",
+	"Unsupported file type.": "",
 	"Untagged": "Non taggato",
 	"Untitled": "Senza titolo",
 	"Update": "Aggiorna",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Webhook Utente",
 	"Username": "Nome Utente",
 	"Users": "Utenti",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Utilizzando il modello di arena predefinito con tutti i modelli. Fai clic sul pulsante più per aggiungere modelli personalizzati.",
 	"Utilize": "Utilizza",
 	"Valid time units:": "Unità di tempo valide:",

+ 13 - 1
src/lib/i18n/locales/ja-JP/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "アカウントを作成",
 	"Create Admin Account": "管理者アカウントを作成",
 	"Create Channel": "チャンネルを作成",
+	"Create Folder": "",
 	"Create Group": "グループを作成",
 	"Create Knowledge": "ナレッジベース作成",
 	"Create new key": "新しいキーを作成",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "External Web Loader URL",
 	"External Web Search API Key": "External Web Search APIキー",
 	"External Web Search URL": "External Web Search URL",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "ファイルの追加に失敗しました。",
 	"Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPIツールサーバーへの接続に失敗しました。",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "モデルの取得に失敗しました。",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "ファイルの内容を読み込めませんでした。",
 	"Failed to read clipboard contents": "クリップボードの内容を読み取れませんでした",
 	"Failed to save connections": "接続の保存に失敗しました。",
@@ -755,6 +758,7 @@
 	"Input commands": "入力コマンド",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Github URLからインストール",
 	"Instant Auto-Send After Voice Transcription": "音声文字変換後に即時自動送信",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT 有効期限",
 	"JWT Token": "JWT トークン",
 	"Kagi Search API Key": "Kagi Search APIキー",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "キー",
 	"Keyboard shortcuts": "キーボードショートカット",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "カスタムプロンプトを入力。空欄ならデフォルトプロンプト",
 	"Leave model field empty to use the default model.": "モデルフィールドを空欄にしてデフォルトモデルを使用",
 	"License": "ライセンス",
+	"Lift List": "",
 	"Light": "ライト",
 	"Listening...": "聞いています...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "新しいチャンネル",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "内容がありません",
@@ -1140,6 +1147,7 @@
 	"See what's new": "新機能を見る",
 	"Seed": "シード",
 	"Select a base model": "基本モデルの選択",
+	"Select a conversation to preview": "",
 	"Select a engine": "エンジンの選択",
 	"Select a function": "Functionの選択",
 	"Select a group": "グループの選択",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "{{WEBUI_NAME}}にサインアップ",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "{{WEBUI_NAME}}にサインイン",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "ピン留め解除",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "タイトルなし",
 	"Update": "更新",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "ユーザー名",
 	"Users": "ユーザー",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "活用",
 	"Valid time units:": "有効な時間単位:",

+ 13 - 1
src/lib/i18n/locales/ka-GE/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "ანგარიშის შექმნა",
 	"Create Admin Account": "",
 	"Create Channel": "არხის შექმნა",
+	"Create Folder": "",
 	"Create Group": "ჯგუფის შექმნა",
 	"Create Knowledge": "",
 	"Create new key": "ახალი გასაღების შექმნა",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "ფაილის დამატების შეცდომა.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "ბუფერის შემცველობის წაკითხვა ჩავარდა",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "შეიყვანეთ ბრძანებები",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "დაყენება Github-ის ბმულიდან",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT-ის ვადა",
 	"JWT Token": "JWT ტოკენი",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "გასაღები",
 	"Keyboard shortcuts": "კლავიატურის მალსახმობები",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "ლიცენზია",
+	"Lift List": "",
 	"Light": "ღია",
 	"Listening...": "",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "new-channel",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "ნახეთ, რა არის ახალი",
 	"Seed": "თესლი",
 	"Select a base model": "აირჩიეთ საბაზისო მოდელი",
+	"Select a conversation to preview": "",
 	"Select a engine": "აირჩიეთ ძრავა",
 	"Select a function": "აირჩიეთ ფუნქცია",
 	"Select a group": "აირჩიეთ ჯგუფი",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "ჩამოხსნა",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "ჭდის გარეშე",
 	"Untitled": "",
 	"Update": "განახლება",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "მომხმარებლის სახელი",
 	"Users": "მომხმარებლები",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "გამოყენება",
 	"Valid time units:": "სწორი დროის ერთეულები:",

+ 13 - 1
src/lib/i18n/locales/ko-KR/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "계정 생성",
 	"Create Admin Account": "관리자 계정 생성",
 	"Create Channel": "채널 생성",
+	"Create Folder": "",
 	"Create Group": "그룹 생성",
 	"Create Knowledge": "지식 생성",
 	"Create new key": "새로운 키 생성",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "예: 다양한 작업을 수행하는 도구",
 	"e.g., 3, 4, 5 (leave blank for default)": "예: 3, 4, 5 (기본값을 위해 비워 두세요)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "예: en-US, ja-JP (자동 감지를 위해 비워 두세요)",
 	"e.g., westus (leave blank for eastus)": "예: westus (eastus를 위해 비워 두세요)",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "외부 웹 로더 URL",
 	"External Web Search API Key": "외부 웹 검색 API 키",
 	"External Web Search URL": "외부 웹 검색 URL",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "파일추가에 실패했습니다",
 	"Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPI 도구 서버 연결 실패",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "모델 가져오기 실패",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "파일 내용 로드 실패.",
 	"Failed to read clipboard contents": "클립보드 내용 가져오기를 실패하였습니다.",
 	"Failed to save connections": "연결 저장 실패",
@@ -755,6 +758,7 @@
 	"Input commands": "명령어 입력",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Github URL에서 설치",
 	"Instant Auto-Send After Voice Transcription": "음성 변환 후 즉시 자동 전송",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT 만료",
 	"JWT Token": "JWT 토큰",
 	"Kagi Search API Key": "Kagi Search API 키",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "키",
 	"Keyboard shortcuts": "키보드 단축키",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "기본 프롬프트를 사용하기 위해 빈칸으로 남겨두거나, 커스텀 프롬프트를 입력하세요",
 	"Leave model field empty to use the default model.": "기본 모델을 사용하려면 모델 필드를 비워 두세요.",
 	"License": "라이선스",
+	"Lift List": "",
 	"Light": "라이트",
 	"Listening...": "듣는 중...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "새 채널",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "내용 없음",
@@ -1140,6 +1147,7 @@
 	"See what's new": "새로운 기능 보기",
 	"Seed": "시드",
 	"Select a base model": "기본 모델 선택",
+	"Select a conversation to preview": "",
 	"Select a engine": "엔진 선택",
 	"Select a function": "함수 선택",
 	"Select a group": "그룹 선택",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "{{WEBUI_NAME}}로 가입",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "{{WEBUI_NAME}}로 가입중",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "캐시 무시",
 	"Skip the cache and re-run the inference. Defaults to False.": "캐시를 무시하고 추론을 다시 실행합니다. 기본값은 False입니다.",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "미스터리 풀기",
 	"Unpin": "고정 해제",
 	"Unravel secrets": "비밀 풀기",
+	"Unsupported file type.": "",
 	"Untagged": "태그 해제",
 	"Untitled": "",
 	"Update": "업데이트",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "사용자 웹훅",
 	"Username": "사용자 이름",
 	"Users": "사용자",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "모든 모델은 기본 아레나 모델을 사용중입니다. 플러스 버튼을 눌러 커스텀 모델을 추가하세요.",
 	"Utilize": "활용",
 	"Valid time units:": "유효 시간 단위:",

+ 13 - 1
src/lib/i18n/locales/lt-LT/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Créer un compte",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "Sukurti naują raktą",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Nepavyko perskaityti kopijuoklės",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Įvesties komandos",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instaliuoti Github nuorodą",
 	"Instant Auto-Send After Voice Transcription": "Siųsti iškart po balso transkripcijos",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT išėjimas iš galiojimo",
 	"JWT Token": "JWT žetonas",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "Klaviatūros trumpiniai",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Šviesus",
 	"Listening...": "Klausoma...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Žiūrėti naujoves",
 	"Seed": "Sėkla",
 	"Select a base model": "Pasirinkite bazinį modelį",
+	"Select a conversation to preview": "",
 	"Select a engine": "Pasirinkite variklį",
 	"Select a function": "Pasirinkite funkciją",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "Atsemigti",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "Atnaujinti",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "Naudotojai",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Naudoti",
 	"Valid time units:": "Teisingūs laiko vienetai :",

+ 13 - 1
src/lib/i18n/locales/ms-MY/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Cipta Akaun",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "Cipta kekunci baharu",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Gagal membaca konten papan klip",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Masukkan Arahan",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Pasang daripada URL Github",
 	"Instant Auto-Send After Voice Transcription": "Hantar Secara Automatik Dengan Segera Selepas Transkripsi Suara",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Tempoh Tamat JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "Pintasan papan kekunci",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Cerah",
 	"Listening...": "Mendengar...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Lihat apa yang terbaru",
 	"Seed": "Benih",
 	"Select a base model": "Pilih model asas",
+	"Select a conversation to preview": "",
 	"Select a engine": "Pilih enjin",
 	"Select a function": "Pilih fungsi",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "Nyahsematkan",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "Kemaskini",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "Pengguna",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Gunakan",
 	"Valid time units:": "Unit masa yang sah:",

+ 13 - 1
src/lib/i18n/locales/nb-NO/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Opprett konto",
 	"Create Admin Account": "Opprett administratorkonto",
 	"Create Channel": "Opprett kanal",
+	"Create Folder": "",
 	"Create Group": "Opprett gruppe",
 	"Create Knowledge": "Opprett kunnskap",
 	"Create new key": "Lag ny nøkkel",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "f.eks. Verktøy for å gjøre ulike handlinger",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Kan ikke legge til filen.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Kan ikke hente modeller",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Kan ikke lese utklippstavlens innhold",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Inntast kommandoer",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Installer fra GitHub-URL",
 	"Instant Auto-Send After Voice Transcription": "Øyeblikkelig automatisk sending etter taletranskripsjon",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT-utløp",
 	"JWT Token": "JWT-token",
 	"Kagi Search API Key": "API-nøkkel for Kagi Search",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Nøkkel",
 	"Keyboard shortcuts": "Hurtigtaster",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "La stå tomt for å bruke standard ledetekst, eller angi en tilpasset ledetekst",
 	"Leave model field empty to use the default model.": "La modellfeltet stå tomt for å bruke standard modell.",
 	"License": "Lisens",
+	"Lift List": "",
 	"Light": "Lys",
 	"Listening...": "Lytter ...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "ny-kanal",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Se hva som er nytt",
 	"Seed": "Seed",
 	"Select a base model": "Velg en grunnmodell",
+	"Select a conversation to preview": "",
 	"Select a engine": "Velg en motor",
 	"Select a function": "Velg en funksjon",
 	"Select a group": "Velg en gruppe",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Registrer deg for {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Logger på {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Lås opp mysterier",
 	"Unpin": "Løsne",
 	"Unravel secrets": "Avslør hemmeligheter",
+	"Unsupported file type.": "",
 	"Untagged": "Ikke merket",
 	"Untitled": "",
 	"Update": "Oppdater",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Brukernavn",
 	"Users": "Brukere",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Bruker standard Arena-modellen med alle modeller. Klikk på plussknappen for å legge til egne modeller.",
 	"Utilize": "Bruk",
 	"Valid time units:": "Gyldige tidsenheter:",

+ 13 - 1
src/lib/i18n/locales/nl-NL/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Maak account",
 	"Create Admin Account": "Maak admin-account",
 	"Create Channel": "Maak kanaal",
+	"Create Folder": "",
 	"Create Group": "Maak groep",
 	"Create Knowledge": "Creër kennis",
 	"Create new key": "Maak nieuwe sleutel",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Het is niet gelukt om het bestand toe te voegen.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Kan geen verbinding maken met {{URL}} OpenAPI gereedschapserver",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Kan modellen niet ophalen",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Kan klembord inhoud niet lezen",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Voer commando's in",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Installeren vanaf Github-URL",
 	"Instant Auto-Send After Voice Transcription": "Direct automatisch verzenden na spraaktranscriptie",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT Expiration",
 	"JWT Token": "JWT Token",
 	"Kagi Search API Key": "Kagi Search API-sleutel",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Sleutel",
 	"Keyboard shortcuts": "Toetsenbord snelkoppelingen",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Laat leeg om de standaard prompt te gebruiken, of selecteer een aangepaste prompt",
 	"Leave model field empty to use the default model.": "Laat modelveld leeg om het standaardmodel te gebruiken.",
 	"License": "Licentie",
+	"Lift List": "",
 	"Light": "Licht",
 	"Listening...": "Aan het luisteren...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "nieuw-kanaal",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Zie wat er nieuw is",
 	"Seed": "Seed",
 	"Select a base model": "Selecteer een basismodel",
+	"Select a conversation to preview": "",
 	"Select a engine": "Selecteer een engine",
 	"Select a function": "Selecteer een functie",
 	"Select a group": "Selecteer een groep",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Meld je aan bij {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Aan het inloggen bij {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Ontsleutel mysteries",
 	"Unpin": "Losmaken",
 	"Unravel secrets": "Ontrafel geheimen",
+	"Unsupported file type.": "",
 	"Untagged": "Ongemarkeerd",
 	"Untitled": "",
 	"Update": "Bijwerken",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Gebruiker-webhooks",
 	"Username": "Gebruikersnaam",
 	"Users": "Gebruikers",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Het standaard arena-model gebruiken met alle modellen. Klik op de plusknop om aangepaste modellen toe te voegen.",
 	"Utilize": "Utilize",
 	"Valid time units:": "Geldige tijdseenheden:",

+ 13 - 1
src/lib/i18n/locales/pa-IN/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "ਖਾਤਾ ਬਣਾਓ",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "ਨਵੀਂ ਕੁੰਜੀ ਬਣਾਓ",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਪੜ੍ਹਣ ਵਿੱਚ ਅਸਫਲ",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Github URL ਤੋਂ ਇੰਸਟਾਲ ਕਰੋ",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT ਮਿਆਦ ਖਤਮ",
 	"JWT Token": "JWT ਟੋਕਨ",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "ਕੀਬੋਰਡ ਸ਼ਾਰਟਕਟ",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "ਹਲਕਾ",
 	"Listening...": "",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "ਨਵਾਂ ਕੀ ਹੈ ਵੇਖੋ",
 	"Seed": "ਬੀਜ",
 	"Select a base model": "ਆਧਾਰ ਮਾਡਲ ਚੁਣੋ",
+	"Select a conversation to preview": "",
 	"Select a engine": "",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "ਉਪਭੋਗਤਾ",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "ਵਰਤੋਂ",
 	"Valid time units:": "ਵੈਧ ਸਮਾਂ ਇਕਾਈਆਂ:",

+ 13 - 1
src/lib/i18n/locales/pl-PL/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Utwórz konto",
 	"Create Admin Account": "Utwórz konto administratora",
 	"Create Channel": "Utwórz kanał",
+	"Create Folder": "",
 	"Create Group": "Utwórz grupę",
 	"Create Knowledge": "Utwórz wiedzę",
 	"Create new key": "Utwórz nowy klucz",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "np. Narzędzia do wykonywania różnych operacji",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Nie udało się dodać pliku.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "Nie udało się skopiować linku",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Nie udało się pobrać modeli",
 	"Failed to generate title": "Nie udało się wygenerować tytułu",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Nie udało się załadować zawartości pliku.",
 	"Failed to read clipboard contents": "Nie udało się odczytać zawartości schowka",
 	"Failed to save connections": "Nie udałio się zapisać połączeń",
@@ -755,6 +758,7 @@
 	"Input commands": "Wprowadź polecenia",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instalacja z adresu URL serwisu Github",
 	"Instant Auto-Send After Voice Transcription": "Automatyczne natychmiastowe wysyłanie po transkrypcji głosowej",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Termin ważności JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "Klucz API Kagi Search",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Klucz",
 	"Keyboard shortcuts": "Skróty klawiszowe",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Pozostaw puste, aby użyć domyślnego promptu, lub wprowadź niestandardowy prompt",
 	"Leave model field empty to use the default model.": "Pozostaw pole modelu puste, aby użyć domyślnego modelu.",
 	"License": "Licencja",
+	"Lift List": "",
 	"Light": "Jasny",
 	"Listening...": "Słuchanie...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Nowe narzędzie",
 	"new-channel": "nowy-kanał",
 	"Next message": "Następna wiadomość",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Sprawdź nowości",
 	"Seed": "Seed",
 	"Select a base model": "Wybór modelu bazowego",
+	"Select a conversation to preview": "",
 	"Select a engine": "Wybierz silnik",
 	"Select a function": "Wybierz funkcję",
 	"Select a group": "Wybierz grupę",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Zarejestruj się w {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Logowanie do {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Rozwiązywanie zagadek",
 	"Unpin": "Odpiąć",
 	"Unravel secrets": "Odkryj tajemnice",
+	"Unsupported file type.": "",
 	"Untagged": "Nie otagowane",
 	"Untitled": "",
 	"Update": "Aktualizacja",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Webhooki użytkownika",
 	"Username": "Nazwa użytkownika",
 	"Users": "Użytkownicy",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Korzystanie z domyślnego modelu areny ze wszystkimi modelami. Kliknij przycisk plus, aby dodać niestandardowe modele.",
 	"Utilize": "Wykorzystaj",
 	"Valid time units:": "Dozwolone jednostki czasu:",

+ 13 - 1
src/lib/i18n/locales/pt-BR/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Criar Conta",
 	"Create Admin Account": "Criar Conta de Admin",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "Criar Grupo",
 	"Create Knowledge": "Criar Conhecimento",
 	"Create new key": "Criar nova chave",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "Exemplo: Ferramentas para executar operações diversas",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Falha ao adicionar arquivo.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Comandos de entrada",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instalar da URL do Github",
 	"Instant Auto-Send After Voice Transcription": "Envio Automático Instantâneo Após Transcrição de Voz",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Expiração do JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Chave",
 	"Keyboard shortcuts": "Atalhos de Teclado",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Deixe vazio para usar o prompt padrão, ou insira um prompt personalizado",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Claro",
 	"Listening...": "Escutando...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Veja o que há de novo",
 	"Seed": "Seed",
 	"Select a base model": "Selecione um modelo base",
+	"Select a conversation to preview": "",
 	"Select a engine": "Selecione um motor",
 	"Select a function": "Selecione uma função",
 	"Select a group": "Selecionar grupo",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Inscreva-se em {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Fazendo login em {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Desvendar mistérios",
 	"Unpin": "Desfixar",
 	"Unravel secrets": "Desvendar segredos",
+	"Unsupported file type.": "",
 	"Untagged": "Sem tag",
 	"Untitled": "",
 	"Update": "Atualizar",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Nome do Usuário",
 	"Users": "Usuários",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Usando a arena de modelos padrão para todos os modelos. Clique no botão mais para adicionar modelos personalizados.",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades de tempo válidas:",

+ 13 - 1
src/lib/i18n/locales/pt-PT/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Criar Conta",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "Criar nova chave",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Falha ao ler o conteúdo da área de transferência",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Comandos de entrada",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instalar a partir do URL do Github",
 	"Instant Auto-Send After Voice Transcription": "Enviar automaticamente depois da transcrição da voz",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Expiração JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "Atalhos de teclado",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Claro",
 	"Listening...": "A escutar...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Veja o que há de novo",
 	"Seed": "Semente",
 	"Select a base model": "Selecione um modelo base",
+	"Select a conversation to preview": "",
 	"Select a engine": "Selecione um motor",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "Utilizadores",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades de tempo válidas:",

+ 13 - 1
src/lib/i18n/locales/ro-RO/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Creează Cont",
 	"Create Admin Account": "",
 	"Create Channel": "Creează canal",
+	"Create Folder": "",
 	"Create Group": "Creează grup",
 	"Create Knowledge": "Creează cunoștințe",
 	"Create new key": "Creează cheie nouă",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Eșec la adăugarea fișierului.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Citirea conținutului clipboard-ului a eșuat",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Comenzi de intrare",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Instalează de la URL-ul Github",
 	"Instant Auto-Send After Voice Transcription": "Trimitere Automată Instantanee După Transcrierea Vocii",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Expirarea JWT",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "Scurtături de la Tastatură",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Lăsați gol pentru a utiliza promptul implicit sau introduceți un prompt personalizat",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Luminos",
 	"Listening...": "Ascult...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Vezi ce e nou",
 	"Seed": "",
 	"Select a base model": "Selectează un model de bază",
+	"Select a conversation to preview": "",
 	"Select a engine": "Selectează un motor",
 	"Select a function": "Selectează o funcție",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Înregistrează-te la {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Autentificare în {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "Anulează Fixarea",
 	"Unravel secrets": "Dezvăluie secretele",
+	"Unsupported file type.": "",
 	"Untagged": "Netichetat",
 	"Untitled": "",
 	"Update": "Actualizează",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "Utilizatori",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Folosind modelul implicit de arenă cu toate modelele. Faceți clic pe butonul plus pentru a adăuga modele personalizate.",
 	"Utilize": "Utilizează",
 	"Valid time units:": "Unități de timp valide:",

+ 13 - 1
src/lib/i18n/locales/ru-RU/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Создать аккаунт",
 	"Create Admin Account": "Создать аккаунт Администратора",
 	"Create Channel": "Создать канал",
+	"Create Folder": "",
 	"Create Group": "Создать группу",
 	"Create Knowledge": "Создать знание",
 	"Create new key": "Создать новый ключ",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "например, pdf, docx, txt",
 	"e.g. Tools for performing various operations": "например, инструменты для выполнения различных операций",
 	"e.g., 3, 4, 5 (leave blank for default)": "например, 3, 4, 5 (оставьте поле пустым по умолчанию)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "например, en-US,ja-JP (оставьте поле пустым для автоматического определения)",
 	"e.g., westus (leave blank for eastus)": "например, западный (оставьте пустым для восточного)",
 	"e.g.) en,fr,de": "например) en,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "URL-адрес внешнего веб-загрузчика",
 	"External Web Search API Key": "Внешний ключ API веб-поиска",
 	"External Web Search URL": "URL-адрес внешнего веб-поиска",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Не удалось добавить файл.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Не удалось подключиться к серверу инструмента OpenAI {{URL}}",
 	"Failed to copy link": "Не удалось скопировать ссылку",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Не удалось получить модели",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Не удалось загрузить содержимое файла.",
 	"Failed to read clipboard contents": "Не удалось прочитать содержимое буфера обмена",
 	"Failed to save connections": "Не удалось сохранить подключения",
@@ -755,6 +758,7 @@
 	"Input commands": "Введите команды",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Установка с URL-адреса Github",
 	"Instant Auto-Send After Voice Transcription": "Мгновенная автоматическая отправка после расшифровки голоса",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Истечение срока JWT",
 	"JWT Token": "Токен JWT",
 	"Kagi Search API Key": "API ключ поиска Kagi",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "Оставить на боковой панели",
 	"Key": "Ключ",
 	"Keyboard shortcuts": "Горячие клавиши",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Оставьте пустым, чтобы использовать промпт по умолчанию, или введите пользовательский промпт",
 	"Leave model field empty to use the default model.": "Оставьте поле model пустым, чтобы использовать модель по умолчанию.",
 	"License": "Лицензия",
+	"Lift List": "",
 	"Light": "Светлый",
 	"Listening...": "Слушаю...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "Новый инструмент",
 	"new-channel": "",
 	"Next message": "Следующее сообщение",
+	"No chats found": "",
 	"No chats found for this user.": "Для этого пользователя не найдено ни одного чата.",
 	"No chats found.": "Не найдено ни одного чата",
 	"No content": "Нет контента",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Посмотреть, что нового",
 	"Seed": "",
 	"Select a base model": "Выберите базовую модель",
+	"Select a conversation to preview": "",
 	"Select a engine": "Выберите движок",
 	"Select a function": "Выберите функцию",
 	"Select a group": "Выбрать группу",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Регистрация в {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "Значительно повышает точность за счет использования LLM для улучшения работы с таблицами, формами, встроенной математикой и распознавания макета. Увеличивает задержку. По умолчанию установлено значение Вкл.",
 	"Signing in to {{WEBUI_NAME}}": "Зарегистрироваться в {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "Пропустить кэширование",
 	"Skip the cache and re-run the inference. Defaults to False.": "Пропустить кэширование и перезапустить вывод. По умолчанию установлено значение Выкл.",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Разблокируйте тайны",
 	"Unpin": "Открепить",
 	"Unravel secrets": "Разгадать секреты",
+	"Unsupported file type.": "",
 	"Untagged": "Без тегов",
 	"Untitled": "Без заголовка",
 	"Update": "Обновить",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Пользовательские веб-хуки",
 	"Username": "Имя пользователя",
 	"Users": "Пользователи",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Использование модели арены по умолчанию со всеми моделями. Нажмите кнопку «плюс», чтобы добавить пользовательские модели.",
 	"Utilize": "Используйте",
 	"Valid time units:": "Допустимые единицы времени:",

+ 13 - 1
src/lib/i18n/locales/sk-SK/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Vytvoriť účet",
 	"Create Admin Account": "Vytvoriť admin účet",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "Vytvoriť skupinu",
 	"Create Knowledge": "Vytvoriť knowledge",
 	"Create new key": "Vytvoriť nový kľúč",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Nepodarilo sa pridať súbor.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Nepodarilo sa prečítať obsah schránky",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Vstupné príkazy",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Inštalácia z URL adresy Githubu",
 	"Instant Auto-Send After Voice Transcription": "Okamžité automatické odoslanie po prepisu hlasu",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Vypršanie platnosti JWT (JSON Web Token)",
 	"JWT Token": "JWT Token (JSON Web Token)",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "Klávesové skratky",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Nechajte prázdne pre použitie predvoleného podnetu, alebo zadajte vlastný podnet.",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Svetlo",
 	"Listening...": "Počúvanie...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Pozrite sa, čo je nové",
 	"Seed": "Semienko",
 	"Select a base model": "Vyberte základný model",
+	"Select a conversation to preview": "",
 	"Select a engine": "Vyberte engine",
 	"Select a function": "Vyberte funkciu",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Zaregistrujte sa na {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Prihlasovanie do {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "Odopnúť",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "Nebola označená",
 	"Untitled": "",
 	"Update": "Aktualizovať",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Používateľské meno",
 	"Users": "Používatelia",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Používanie predvoleného modelu arény so všetkými modelmi. Kliknutím na tlačidlo plus pridajte vlastné modely.",
 	"Utilize": "Využiť",
 	"Valid time units:": "Platné časové jednotky:",

+ 13 - 1
src/lib/i18n/locales/sr-RS/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Направи налог",
 	"Create Admin Account": "Направи админ налог",
 	"Create Channel": "Направи канал",
+	"Create Folder": "",
 	"Create Group": "Направи групу",
 	"Create Knowledge": "Направи знање",
 	"Create new key": "Направи нови кључ",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Неуспешно читање садржаја оставе",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Унеси наредбе",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Инсталирај из Гитхуб УРЛ адресе",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Истек JWT-а",
 	"JWT Token": "JWT жетон",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Кључ",
 	"Keyboard shortcuts": "Пречице на тастатури",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "Светла",
 	"Listening...": "Слушам...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Погледај шта је ново",
 	"Seed": "Семе",
 	"Select a base model": "Избор основног модела",
+	"Select a conversation to preview": "",
 	"Select a engine": "Изабери мотор",
 	"Select a function": "Изабери функцију",
 	"Select a group": "Изабери групу",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Реши мистерије",
 	"Unpin": "Откачи",
 	"Unravel secrets": "Разоткриј тајне",
+	"Unsupported file type.": "",
 	"Untagged": "Неозначено",
 	"Untitled": "",
 	"Update": "Ажурирај",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Корисничко име",
 	"Users": "Корисници",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Искористи",
 	"Valid time units:": "Важеће временске јединице:",

+ 13 - 1
src/lib/i18n/locales/sv-SE/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Skapa konto",
 	"Create Admin Account": "Skapa administratörskonto",
 	"Create Channel": "Skapa kanal",
+	"Create Folder": "",
 	"Create Group": "Skapa grupp",
 	"Create Knowledge": "Skapa kunskap",
 	"Create new key": "Skapa ny nyckel",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "t.ex. pdf, docx, txt",
 	"e.g. Tools for performing various operations": "t.ex. Verktyg för att utföra olika operationer",
 	"e.g., 3, 4, 5 (leave blank for default)": "t.ex., 3, 4, 5 (lämna tomt för standard)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "t.ex., en-US,ja-JP (lämna tomt för automatisk detektering)",
 	"e.g., westus (leave blank for eastus)": "t.ex., westus (lämna tomt för eastus)",
 	"e.g.) en,fr,de": "t.ex.) en,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "Extern webbinläsare URL",
 	"External Web Search API Key": "Extern webbsökning API-nyckel",
 	"External Web Search URL": "Extern webbsökning URL",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Misslyckades med att lägga till fil.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Misslyckades med att ansluta till {{URL}} OpenAPI-verktygsserver",
 	"Failed to copy link": "Misslyckades med att kopiera länk",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Misslyckades med att hämta modeller",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Misslyckades med att läsa in filinnehåll.",
 	"Failed to read clipboard contents": "Misslyckades med att läsa urklippsinnehåll",
 	"Failed to save connections": "Misslyckades med att spara anslutningar",
@@ -755,6 +758,7 @@
 	"Input commands": "Indatakommandon",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Installera från Github-URL",
 	"Instant Auto-Send After Voice Transcription": "Skicka automatiskt efter rösttranskribering",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT-utgångsdatum",
 	"JWT Token": "JWT-token",
 	"Kagi Search API Key": "Kagi Search API-nyckel",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "Behåll i sidofältet",
 	"Key": "Nyckel",
 	"Keyboard shortcuts": "Tangentbordsgenvägar",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Lämna tomt för att använda standardprompten, eller ange en anpassad prompt",
 	"Leave model field empty to use the default model.": "Lämna modellfältet tomt för att använda standardmodellen.",
 	"License": "Licens",
+	"Lift List": "",
 	"Light": "Ljus",
 	"Listening...": "Lyssnar...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Nytt verktyg",
 	"new-channel": "ny-kanal",
 	"Next message": "Nästa meddelande",
+	"No chats found": "",
 	"No chats found for this user.": "Inga chattar hittades för den här användaren.",
 	"No chats found.": "Inga chattar hittades.",
 	"No content": "Inget innehåll",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Se vad som är nytt",
 	"Seed": "Seed",
 	"Select a base model": "Välj en basmodell",
+	"Select a conversation to preview": "",
 	"Select a engine": "Välj en motor",
 	"Select a function": "Välj en funktion",
 	"Select a group": "Välj en grupp",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Registrera dig på {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "Förbättrar noggrannheten avsevärt genom att använda en LLM för att förbättra tabeller, formulär, inline-matematik och layoutdetektering. Ökar latensen. Standardvärdet är True.",
 	"Signing in to {{WEBUI_NAME}}": "Loggar in på {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "Hoppa över cache",
 	"Skip the cache and re-run the inference. Defaults to False.": "Hoppa över cacheminnet och kör inferensen igen. Standardvärdet är False.",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Lås upp mysterier",
 	"Unpin": "Ta bort fästning",
 	"Unravel secrets": "Avslöja hemligheter",
+	"Unsupported file type.": "",
 	"Untagged": "Otaggad",
 	"Untitled": "Namnlös",
 	"Update": "Uppdatera",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Användar-webhooks",
 	"Username": "Användarnamn",
 	"Users": "Användare",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Använda standardmodellen för arenan med alla modeller. Klicka på plusknappen för att lägga till anpassade modeller",
 	"Utilize": "Använd",
 	"Valid time units:": "Giltiga tidsenheter:",

+ 13 - 1
src/lib/i18n/locales/th-TH/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "สร้างบัญชี",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "สร้างคีย์ใหม่",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "อ่านเนื้อหาคลิปบอร์ดล้มเหลว",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "คำสั่งป้อนข้อมูล",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "ติดตั้งจาก URL ของ Github",
 	"Instant Auto-Send After Voice Transcription": "ส่งอัตโนมัติทันทีหลังจากการถอดเสียง",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "การหมดอายุของ JWT",
 	"JWT Token": "โทเค็น JWT",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "ทางลัดแป้นพิมพ์",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "แสง",
 	"Listening...": "กำลังฟัง...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "ดูสิ่งที่ใหม่",
 	"Seed": "Seed",
 	"Select a base model": "เลือกโมเดลฐาน",
+	"Select a conversation to preview": "",
 	"Select a engine": "เลือกเอนจิน",
 	"Select a function": "เลือกฟังก์ชัน",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "ยกเลิกการปักหมุด",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "อัปเดต",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "ผู้ใช้",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "ใช้โมเดล Arena กับโมเดลทั้งหมด คลิกปุ่มบวกเพื่อเพิ่มโมเดลที่กำหนดเอง",
 	"Utilize": "ใช้",
 	"Valid time units:": "หน่วยเวลาใช้ได้:",

+ 13 - 1
src/lib/i18n/locales/tk-TM/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Hasap döret",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "",
 	"Create new key": "Täze açar döret",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "",
 	"Instant Auto-Send After Voice Transcription": "",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "",
 	"JWT Token": "",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Açar",
 	"Keyboard shortcuts": "",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "",
 	"Leave model field empty to use the default model.": "",
 	"License": "Rugsat",
+	"Lift List": "",
 	"Light": "Açyk",
 	"Listening...": "",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "",
 	"Seed": "",
 	"Select a base model": "",
+	"Select a conversation to preview": "",
 	"Select a engine": "",
 	"Select a function": "",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "",
 	"Untitled": "",
 	"Update": "Täzeläň",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Ulanyjy Ady",
 	"Users": "Ulanyjylar",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "",
 	"Valid time units:": "",

+ 13 - 1
src/lib/i18n/locales/tr-TR/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Hesap Oluştur",
 	"Create Admin Account": "Yönetici Hesabı Oluştur",
 	"Create Channel": "Kanal Oluştur",
+	"Create Folder": "",
 	"Create Group": "Grup Oluştur",
 	"Create Knowledge": "Bilgi Oluştur",
 	"Create new key": "Yeni anahtar oluştur",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": " örn.Çeşitli işlemleri gerçekleştirmek için araçlar",
 	"e.g., 3, 4, 5 (leave blank for default)": "örn. 3, 4, 5 (öntanımlı değer için boş bırakın)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "örn. en-US, ja-JP (otomatik tanıma için boş bırakın)",
 	"e.g., westus (leave blank for eastus)": "ö",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Dosya eklenemedi.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Pano içeriği okunamadı",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Giriş komutları",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Github URL'sinden yükleyin",
 	"Instant Auto-Send After Voice Transcription": "Ses Transkripsiyonundan Sonra Anında Otomatik Gönder",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT Bitişi",
 	"JWT Token": "JWT Token",
 	"Kagi Search API Key": "Kagi Arama API Anahtarı",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Anahtar",
 	"Keyboard shortcuts": "Klavye kısayolları",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Varsayılan promptu kullanmak için boş bırakın veya özel bir prompt girin",
 	"Leave model field empty to use the default model.": "",
 	"License": "Lisans",
+	"Lift List": "",
 	"Light": "Açık",
 	"Listening...": "Dinleniyor...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "yeni-kanal",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "İçerik yok",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Yeniliklere göz atın",
 	"Seed": "Seed",
 	"Select a base model": "Bir temel model seç",
+	"Select a conversation to preview": "",
 	"Select a engine": "Bir motor seç",
 	"Select a function": "Bir fonksiyon seç",
 	"Select a group": "Bir grup seç",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "{{WEBUI_NAME}}'e kaydol",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "{{WEBUI_NAME}}'e giriş yapılıyor",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "Sabitlemeyi Kaldır",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "Etiketsiz",
 	"Untitled": "Başlıksız",
 	"Update": "Güncelle",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "Kullanıcı Adı",
 	"Users": "Kullanıcılar",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Tüm modellerle varsayılan arena modelini kullanıyor. Özel modeller eklemek için artı düğmesine tıklayın.",
 	"Utilize": "Kullan",
 	"Valid time units:": "Geçerli zaman birimleri:",

+ 13 - 1
src/lib/i18n/locales/ug-CN/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "ھېساب قۇرۇش",
 	"Create Admin Account": "باشقۇرغۇچى ھېساباتى قۇرۇش",
 	"Create Channel": "قانال قۇرۇش",
+	"Create Folder": "",
 	"Create Group": "گۇرۇپپا قۇرۇش",
 	"Create Knowledge": "بىلىم قۇرۇش",
 	"Create new key": "يېڭى ئاچقۇچ قۇرۇش",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "مەسىلەن: pdf, docx, txt",
 	"e.g. Tools for performing various operations": "مەسىلەن: ھەر خىل مەشغۇلات قوراللىرى",
 	"e.g., 3, 4, 5 (leave blank for default)": "مەسىلەن: 3، 4، 5 (كۆڭۈلدىكى ئۈچۈن بوش قالدۇرۇڭ)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "مەسىلەن: en-US, ja-JP (ئاپتوماتىك بايقىتىش ئۈچۈن بوش قالدۇرۇڭ)",
 	"e.g., westus (leave blank for eastus)": "مەسىلەن: westus (eastus ئۈچۈن بوش قالدۇرۇڭ)",
 	"e.g.) en,fr,de": "مەسىلەن: en,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "سىرتقى تور يۈكلىگۈچ URL",
 	"External Web Search API Key": "سىرتقى تور ئىزدەش API ئاچقۇچى",
 	"External Web Search URL": "سىرتقى تور ئىزدەش URL",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "ھۆججەت قوشۇش مەغلۇپ بولدى.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPI قورال مۇلازىمېتىرىغا ئۇلىنىش مەغلۇپ بولدى",
 	"Failed to copy link": "ئۇلانما كۆچۈرۈش مەغلۇپ بولدى",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "مودېللارنى ئېلىش مەغلۇپ بولدى",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "ھۆججەت مەزمۇنى يۈكلەش مەغلۇپ بولدى.",
 	"Failed to read clipboard contents": "چاپلاش تاختىسى مەزمۇنىنى ئوقۇش مەغلۇپ بولدى",
 	"Failed to save connections": "ئۇلىنىشلارنى ساقلاش مەغلۇپ بولدى",
@@ -755,6 +758,7 @@
 	"Input commands": "بۇيرۇق كىرگۈزۈش",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Github URL دىن ئورنىتىش",
 	"Instant Auto-Send After Voice Transcription": "ئاۋازنى تېكستكە ئايلاندۇرغاندىن كېيىن ئۆزلۈكىدىن يوللاش",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT كۈچكە ئىگە ۋاقتى",
 	"JWT Token": "JWT Token",
 	"Kagi Search API Key": "Kagi ئىزدەش API ئاچقۇچى",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "يانتاختىدا ساقلا",
 	"Key": "ئاچقۇچ",
 	"Keyboard shortcuts": "تىزلەتمىلەر",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "كۆڭۈلدىكى تۈرتكە ئۈچۈن بوش قالدۇرۇڭ ياكى ئۆزلۈك تۈرتكە كىرگۈزۈڭ",
 	"Leave model field empty to use the default model.": "كۆڭۈلدىكى مودېل ئۈچۈن مودېل رايونىنى بوش قالدۇرۇڭ.",
 	"License": "كېنىشكا",
+	"Lift List": "",
 	"Light": "نۇر",
 	"Listening...": "ئاڭلاۋاتىدۇ...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "يېڭى قورال",
 	"new-channel": "يېڭى-قانال",
 	"Next message": "كېيىنكى ئۇچۇر",
+	"No chats found": "",
 	"No chats found for this user.": "بۇ ئىشلەتكۈچىدە سۆھبەت تېپىلمىدى.",
 	"No chats found.": "سۆھبەت تېپىلمىدى.",
 	"No content": "مەزمۇن يوق",
@@ -1140,6 +1147,7 @@
 	"See what's new": "يېڭىلىقلارنى كۆرۈش",
 	"Seed": "ئۇرۇق",
 	"Select a base model": "ئاساسىي مودېل تاللاڭ",
+	"Select a conversation to preview": "",
 	"Select a engine": "ماتور تاللاڭ",
 	"Select a function": "فۇنكسىيە تاللاڭ",
 	"Select a group": "گۇرۇپپا تاللاڭ",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "{{WEBUI_NAME}} غا تىزىملىتىش",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "LLM ئارقىلىق جەدۋەل، ماتېماتىكا ۋە تۈزۈلۈش بايقىتىشنىڭ توغىرىقى ئاشىدۇ. ئىنتايىن ۋاقىت تەلەپ قىلىدۇ. كۆڭۈلدىكىچە قوزغىتىلغان.",
 	"Signing in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} غا كىرىۋاتىدۇ",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "غەملەكتىن ئۆتۈپ كېتىش",
 	"Skip the cache and re-run the inference. Defaults to False.": "غەملەكتىن ئۆتۈپ، يەكۈننى قايتا ئىجرا قىلىش. كۆڭۈلدىكىچە چەكلەنگەن",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "سىرلارنى ئاچ",
 	"Unpin": "مۇقىملانمىغان قىلىش",
 	"Unravel secrets": "سىرنى ئاچ",
+	"Unsupported file type.": "",
 	"Untagged": "تەغسىز",
 	"Untitled": "تېماسىز",
 	"Update": "يېڭىلاش",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "ئىشلەتكۈچى Webhookلىرى",
 	"Username": "ئىشلەتكۈچى نامى",
 	"Users": "ئىشلەتكۈچىلەر",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "بارلىق مودېللاردا كۆڭۈلدىكى arena مودېلى ئىشلىتىلىدۇ. ئۆزلۈك مودېل قوشۇش ئۈچۈن قوشۇش كۇنۇپكىسىنى چېكىڭ.",
 	"Utilize": "ئىشلىتىش",
 	"Valid time units:": "توغرا ۋاقىت بىرلىكلىرى:",

+ 13 - 1
src/lib/i18n/locales/uk-UA/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Створити обліковий запис",
 	"Create Admin Account": "Створити обліковий запис адміністратора",
 	"Create Channel": "Створити канал",
+	"Create Folder": "",
 	"Create Group": "Створити групу",
 	"Create Knowledge": "Створити знання",
 	"Create new key": "Створити новий ключ",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "напр., Інструменти для виконання різних операцій",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Не вдалося додати файл.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Не вдалося підключитися до серверу інструментів OpenAPI {{URL}}",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Не вдалося отримати моделі",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Не вдалося прочитати вміст буфера обміну",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "Команди вводу",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Встановіть з URL-адреси Github",
 	"Instant Auto-Send After Voice Transcription": "Миттєва автоматична відправка після транскрипції голосу",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "Термін дії JWT",
 	"JWT Token": "Токен JWT",
 	"Kagi Search API Key": "Kagi Search API ключ",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Ключ",
 	"Keyboard shortcuts": "Клавіатурні скорочення",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Залиште порожнім для використання стандартного запиту, або введіть власний запит",
 	"Leave model field empty to use the default model.": "Залиште поле моделі порожнім, щоб використовувати модель за замовчуванням.",
 	"License": "Ліцензія",
+	"Lift List": "",
 	"Light": "Світла",
 	"Listening...": "Слухаю...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "новий-канал",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Подивіться, що нового",
 	"Seed": "Сід",
 	"Select a base model": "Обрати базову модель",
+	"Select a conversation to preview": "",
 	"Select a engine": "Оберіть рушій",
 	"Select a function": "Оберіть функцію",
 	"Select a group": "Вибрати групу",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Зареєструватися в {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Увійти в {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Розкрийте таємниці",
 	"Unpin": "Відчепити",
 	"Unravel secrets": "Розплутуйте секрети",
+	"Unsupported file type.": "",
 	"Untagged": "Без тегів",
 	"Untitled": "",
 	"Update": "Оновлення",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Вебхуки користувача",
 	"Username": "Ім'я користувача",
 	"Users": "Користувачі",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Використовуючи модель арени за замовчуванням з усіма моделями. Натисніть кнопку плюс, щоб додати користувацькі моделі.",
 	"Utilize": "Використовувати",
 	"Valid time units:": "Дійсні одиниці часу:",

+ 13 - 1
src/lib/i18n/locales/ur-PK/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "اکاؤنٹ بنائیں",
 	"Create Admin Account": "",
 	"Create Channel": "",
+	"Create Folder": "",
 	"Create Group": "",
 	"Create Knowledge": "علم بنائیں",
 	"Create new key": "نیا کلید بنائیں",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "فائل شامل کرنے میں ناکام",
 	"Failed to connect to {{URL}} OpenAPI tool server": "",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "کلپ بورڈ مواد کو پڑھنے میں ناکام",
 	"Failed to save connections": "",
@@ -755,6 +758,7 @@
 	"Input commands": "کمانڈز داخل کریں",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "گِٹ حب یو آر ایل سے انسٹال کریں",
 	"Instant Auto-Send After Voice Transcription": "آواز کی نقل کے بعد فوری خودکار بھیجنا",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT کی میعاد ختم ہونا",
 	"JWT Token": "JWT ٹوکن",
 	"Kagi Search API Key": "",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "",
 	"Keyboard shortcuts": "کی بورڈ شارٹ کٹس",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "خالی چھوڑیں تاکہ ڈیفالٹ پرامپٹ استعمال ہو، یا ایک حسب ضرورت پرامپٹ درج کریں",
 	"Leave model field empty to use the default model.": "",
 	"License": "",
+	"Lift List": "",
 	"Light": "روشنی",
 	"Listening...": "سن رہے ہیں...",
 	"Llama.cpp": "",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "نیا کیا ہے دیکھیں",
 	"Seed": "بیج",
 	"Select a base model": "ایک بنیادی ماڈل منتخب کریں",
+	"Select a conversation to preview": "",
 	"Select a engine": "ایک انجن منتخب کریں",
 	"Select a function": "ایک فنکشن منتخب کریں",
 	"Select a group": "",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "{{WEBUI_NAME}} میں سائن اپ کریں",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} میں سائن اِن کر رہے ہیں",
+	"Sink List": "",
 	"sk-1234": "",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "",
 	"Unpin": "ان پن کریں",
 	"Unravel secrets": "",
+	"Unsupported file type.": "",
 	"Untagged": "غیر مہر شدہ",
 	"Untitled": "",
 	"Update": "اپ ڈیٹ کریں",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "",
 	"Username": "",
 	"Users": "صارفین",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "تمام ماڈلز کے ساتھ ڈیفالٹ ارینا ماڈل استعمال کریں حسب ضرورت ماڈلز شامل کرنے کے لیے پلس بٹن پر کلک کریں",
 	"Utilize": "استعمال کریں",
 	"Valid time units:": "درست وقت کی اکائیاں:",

+ 13 - 1
src/lib/i18n/locales/uz-Cyrl-UZ/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Ҳисоб яратиш",
 	"Create Admin Account": "Администратор ҳисобини яратинг",
 	"Create Channel": "Канал яратиш",
+	"Create Folder": "",
 	"Create Group": "Гуруҳ яратиш",
 	"Create Knowledge": "Билим яратиш",
 	"Create new key": "Янги калит яратинг",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "масалан, pdf, docx, txt",
 	"e.g. Tools for performing various operations": "масалан. Ҳар хил операцияларни бажариш учун асбоблар",
 	"e.g., 3, 4, 5 (leave blank for default)": "масалан, 3, 4, 5 (сукут бўйича бўш қолдиринг)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "масалан, en-US,ja-JP (автоматик аниқлаш учун бўш қолдиринг)",
 	"e.g., westus (leave blank for eastus)": "масалан, westus (eastus учун бўш қолдиринг)",
 	"e.g.) en,fr,de": "масалан) en,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "Ташқи веб юкловчи УРЛ манзили",
 	"External Web Search API Key": "Ташқи веб-қидирув АПИ калити",
 	"External Web Search URL": "Ташқи веб-қидирув УРЛ манзили",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Файл қўшиб бўлмади.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "{{УРЛ}} ОпенАПИ асбоб серверига уланиб бўлмади",
 	"Failed to copy link": "Ҳаволани нусхалаб бўлмади",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Моделларни олиб бўлмади",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Файл таркибини юклаб бўлмади.",
 	"Failed to read clipboard contents": "Буфер таркибини ўқиб бўлмади",
 	"Failed to save connections": "Уланишлар сақланмади",
@@ -755,6 +758,7 @@
 	"Input commands": "Кириш буйруқлари",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Гитҳуб УРЛ манзилидан ўрнатинг",
 	"Instant Auto-Send After Voice Transcription": "Овозли транскрипсиядан кейин дарҳол автоматик юбориш",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "ЖWТ муддати",
 	"JWT Token": "ЖWТ токени",
 	"Kagi Search API Key": "Каги қидирув АПИ калити",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Калит",
 	"Keyboard shortcuts": "Клавиатура ёрлиқлари",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Стандарт таклифдан фойдаланиш учун бўш қолдиринг ёки махсус таклифни киритинг",
 	"Leave model field empty to use the default model.": "Стандарт моделдан фойдаланиш учун модел майдонини бўш қолдиринг.",
 	"License": "Литсензия",
+	"Lift List": "",
 	"Light": "Нур",
 	"Listening...": "Тингланмоқда...",
 	"Llama.cpp": "Ллама.cпп",
@@ -902,6 +908,7 @@
 	"New Tool": "Янги восита",
 	"new-channel": "янги канал",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "Бу фойдаланувчи учун ҳеч қандай чат топилмади.",
 	"No chats found.": "Ҳеч қандай чат топилмади.",
 	"No content": "Контент йўқ",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Нима янгиликлар борлигини кўринг",
 	"Seed": "Дастлабки маълумот",
 	"Select a base model": "Асосий моделни танланг",
+	"Select a conversation to preview": "",
 	"Select a engine": "Двигателни танланг",
 	"Select a function": "Функцияни танланг",
 	"Select a group": "Гуруҳни танланг",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "{{WEBUI_NAME}} тармоғида рўйхатдан ўтинг",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "Жадваллар, шакллар, инлине математика ва тартибни аниқлашни яхшилаш учун ЛЛМ ёрдамида аниқликни сезиларли даражада яхшилайди. Кечикиш вақтини оширади. Стандартлар рост.",
 	"Signing in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} ҳисобига кириш",
+	"Sink List": "",
 	"sk-1234": "ск-1234",
 	"Skip Cache": "Кешни ўтказиб юбориш",
 	"Skip the cache and re-run the inference. Defaults to False.": "Кешни ўтказиб юборинг ва хулосани қайта ишга туширинг. Бирламчи параметрлар Фалсе.",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Сирларни очинг",
 	"Unpin": "Ечиш",
 	"Unravel secrets": "Сирларни очинг",
+	"Unsupported file type.": "",
 	"Untagged": "Белгиланмаган",
 	"Untitled": "Сарлавҳасиз",
 	"Update": "Янгилаш",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Фойдаланувчи веб-ҳуклари",
 	"Username": "Фойдаланувчи номи",
 	"Users": "Фойдаланувчилар",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Барча моделлар билан стандарт арена моделидан фойдаланиш. Махсус моделларни қўшиш учун ортиқча тугмасини босинг.",
 	"Utilize": "Фойдаланиш",
 	"Valid time units:": "Яроқли вақт бирликлари:",

+ 13 - 1
src/lib/i18n/locales/uz-Latn-Uz/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Hisob yaratish",
 	"Create Admin Account": "Administrator hisobini yarating",
 	"Create Channel": "Kanal yaratish",
+	"Create Folder": "",
 	"Create Group": "Guruh yaratish",
 	"Create Knowledge": "Bilim yaratish",
 	"Create new key": "Yangi kalit yarating",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "masalan. pdf, docx, txt",
 	"e.g. Tools for performing various operations": "masalan. Har xil operatsiyalarni bajarish uchun asboblar",
 	"e.g., 3, 4, 5 (leave blank for default)": "masalan, 3, 4, 5 (sukut boʻyicha boʻsh qoldiring)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "masalan, en-US,ja-JP (avtomatik aniqlash uchun boʻsh qoldiring)",
 	"e.g., westus (leave blank for eastus)": "masalan, westus (estus uchun bo'sh qoldiring)",
 	"e.g.) en,fr,de": "masalan) en,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "Tashqi veb yuklovchi URL manzili",
 	"External Web Search API Key": "Tashqi veb-qidiruv API kaliti",
 	"External Web Search URL": "Tashqi veb-qidiruv URL manzili",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Fayl qo‘shib bo‘lmadi.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "{{URL}} OpenAPI asbob serveriga ulanib boʻlmadi",
 	"Failed to copy link": "Havolani nusxalab bo‘lmadi",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Modellarni olib bo‘lmadi",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "Fayl tarkibini yuklab bo‘lmadi.",
 	"Failed to read clipboard contents": "Bufer tarkibini o‘qib bo‘lmadi",
 	"Failed to save connections": "Ulanishlar saqlanmadi",
@@ -755,6 +758,7 @@
 	"Input commands": "Kirish buyruqlari",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Github URL manzilidan oʻrnating",
 	"Instant Auto-Send After Voice Transcription": "Ovozli transkripsiyadan keyin darhol avtomatik yuborish",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT muddati",
 	"JWT Token": "JWT tokeni",
 	"Kagi Search API Key": "Kagi qidiruv API kaliti",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Kalit",
 	"Keyboard shortcuts": "Klaviatura yorliqlari",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Standart taklifdan foydalanish uchun boʻsh qoldiring yoki maxsus taklifni kiriting",
 	"Leave model field empty to use the default model.": "Standart modeldan foydalanish uchun model maydonini bo'sh qoldiring.",
 	"License": "Litsenziya",
+	"Lift List": "",
 	"Light": "Nur",
 	"Listening...": "Tinglanmoqda...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "Yangi vosita",
 	"new-channel": "yangi kanal",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "Bu foydalanuvchi uchun hech qanday chat topilmadi.",
 	"No chats found.": "Hech qanday chat topilmadi.",
 	"No content": "Kontent yo'q",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Nima yangiliklar borligini ko'ring",
 	"Seed": "Urug'",
 	"Select a base model": "Asosiy modelni tanlang",
+	"Select a conversation to preview": "",
 	"Select a engine": "Dvigatelni tanlang",
 	"Select a function": "Funktsiyani tanlang",
 	"Select a group": "Guruhni tanlang",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "{{WEBUI_NAME}} tarmog‘ida ro‘yxatdan o‘ting",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "Jadvallar, shakllar, inline matematika va tartibni aniqlashni yaxshilash uchun LLM yordamida aniqlikni sezilarli darajada yaxshilaydi. Kechikish vaqtini oshiradi. Standartlar rost.",
 	"Signing in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} hisobiga kirish",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "Keshni o'tkazib yuborish",
 	"Skip the cache and re-run the inference. Defaults to False.": "Keshni o'tkazib yuboring va xulosani qayta ishga tushiring. Birlamchi parametrlar False.",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Sirlarni oching",
 	"Unpin": "Yechish",
 	"Unravel secrets": "Sirlarni oching",
+	"Unsupported file type.": "",
 	"Untagged": "Belgilanmagan",
 	"Untitled": "Sarlavhasiz",
 	"Update": "Yangilash",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Foydalanuvchi veb-huklari",
 	"Username": "Foydalanuvchi nomi",
 	"Users": "Foydalanuvchilar",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Barcha modellar bilan standart arena modelidan foydalanish. Maxsus modellarni qo'shish uchun ortiqcha tugmasini bosing.",
 	"Utilize": "Foydalanish",
 	"Valid time units:": "Yaroqli vaqt birliklari:",

+ 13 - 1
src/lib/i18n/locales/vi-VN/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "Tạo Tài khoản",
 	"Create Admin Account": "Tạo Tài khoản Quản trị",
 	"Create Channel": "Tạo Kênh",
+	"Create Folder": "",
 	"Create Group": "Tạo Nhóm",
 	"Create Knowledge": "Tạo Kiến thức",
 	"Create new key": "Tạo key mới",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "",
 	"e.g. Tools for performing various operations": "vd: Các công cụ để thực hiện các hoạt động khác nhau",
 	"e.g., 3, 4, 5 (leave blank for default)": "",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "",
 	"e.g., westus (leave blank for eastus)": "",
 	"e.g.) en,fr,de": "",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "",
 	"External Web Search API Key": "",
 	"External Web Search URL": "",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "Không thể thêm tệp.",
 	"Failed to connect to {{URL}} OpenAPI tool server": "Không thể kết nối đến máy chủ công cụ OpenAPI {{URL}}",
 	"Failed to copy link": "",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "Không thể lấy danh sách mô hình",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "",
 	"Failed to read clipboard contents": "Không thể đọc nội dung clipboard",
 	"Failed to save connections": "Không thể lưu các kết nối",
@@ -755,6 +758,7 @@
 	"Input commands": "Nhập các câu lệnh",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "Cài đặt từ URL Github",
 	"Instant Auto-Send After Voice Transcription": "Tự động gửi ngay lập tức sau khi phiên dịch giọng nói",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT Hết hạn",
 	"JWT Token": "Token JWT",
 	"Kagi Search API Key": "Khóa API Kagi Search",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "",
 	"Key": "Khóa",
 	"Keyboard shortcuts": "Phím tắt",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "Để trống để sử dụng prompt mặc định, hoặc nhập prompt tùy chỉnh",
 	"Leave model field empty to use the default model.": "Để trống trường mô hình để sử dụng mô hình mặc định.",
 	"License": "Giấy phép",
+	"Lift List": "",
 	"Light": "Sáng",
 	"Listening...": "Đang nghe...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "",
 	"new-channel": "kênh-mới",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "",
 	"No chats found.": "",
 	"No content": "",
@@ -1140,6 +1147,7 @@
 	"See what's new": "Xem những cập nhật mới",
 	"Seed": "Seed",
 	"Select a base model": "Chọn một base model",
+	"Select a conversation to preview": "",
 	"Select a engine": "Chọn dịch vụ",
 	"Select a function": "Chọn function",
 	"Select a group": "Chọn một nhóm",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "Đăng ký {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "",
 	"Signing in to {{WEBUI_NAME}}": "Đang đăng nhập vào {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "",
 	"Skip the cache and re-run the inference. Defaults to False.": "",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "Mở khóa những bí ẩn",
 	"Unpin": "Bỏ ghim",
 	"Unravel secrets": "Làm sáng tỏ những bí mật",
+	"Unsupported file type.": "",
 	"Untagged": "Chưa gắn thẻ",
 	"Untitled": "",
 	"Update": "Cập nhật",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "Webhook Người dùng",
 	"Username": "Tên đăng nhập",
 	"Users": "Người sử dụng",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Sử dụng mô hình arena mặc định với tất cả các mô hình. Nhấp vào nút dấu cộng để thêm các mô hình tùy chỉnh.",
 	"Utilize": "Sử dụng",
 	"Valid time units:": "Đơn vị thời gian hợp lệ:",

+ 13 - 1
src/lib/i18n/locales/zh-CN/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "创建账号",
 	"Create Admin Account": "创建管理员账号",
 	"Create Channel": "创建频道",
+	"Create Folder": "",
 	"Create Group": "创建权限组",
 	"Create Knowledge": "创建知识",
 	"Create new key": "创建新密钥",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "例如:pdf,docx,txt",
 	"e.g. Tools for performing various operations": "例如:用于执行各种操作的工具",
 	"e.g., 3, 4, 5 (leave blank for default)": "例如:3,4,5(留空使用默认值)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "例如:audio/wav,audio/mpeg,video/*(留空使用默认值,* 表示全部)",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "例如:en-US,ja-JP(留空则自动检测)",
 	"e.g., westus (leave blank for eastus)": "例如:westus(留空则默认为eastus)",
 	"e.g.) en,fr,de": "例如:en,fr,de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "外部网页加载器 URL",
 	"External Web Search API Key": "外部联网搜索 API 密钥",
 	"External Web Search URL": "外部联网搜索 URL",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "添加文件失败",
 	"Failed to connect to {{URL}} OpenAPI tool server": "连接到 {{URL}} OpenAPI 工具服务器失败",
 	"Failed to copy link": "复制链接失败",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "文件内容提取失败",
 	"Failed to fetch models": "获取模型失败",
 	"Failed to generate title": "生成标题失败",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "文件内容加载失败",
 	"Failed to read clipboard contents": "读取剪贴板内容失败",
 	"Failed to save connections": "保存连接失败",
@@ -755,6 +758,7 @@
 	"Input commands": "输入命令",
 	"Input Variables": "插入变量",
 	"Insert": "插入",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "以富文本格式插入提示词",
 	"Install from Github URL": "从 Github URL 安装",
 	"Instant Auto-Send After Voice Transcription": "语音转录文字后即时自动发送",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT 过期",
 	"JWT Token": "JWT 令牌",
 	"Kagi Search API Key": "Kagi 搜索 API 密钥",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "保留在侧边栏",
 	"Key": "密匙",
 	"Keyboard shortcuts": "键盘快捷键",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "留空以使用默认提示词,或输入自定义提示词",
 	"Leave model field empty to use the default model.": "将模型字段留空以使用默认模型",
 	"License": "授权",
+	"Lift List": "",
 	"Light": "浅色",
 	"Listening...": "正在倾听...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "新工具",
 	"new-channel": "新频道",
 	"Next message": "下一条消息",
+	"No chats found": "",
 	"No chats found for this user.": "未找到此用户的对话记录",
 	"No chats found.": "未找到对话记录",
 	"No content": "没有内容",
@@ -1140,6 +1147,7 @@
 	"See what's new": "查阅最新更新内容",
 	"Seed": "种子 (Seed)",
 	"Select a base model": "选择一个基础模型",
+	"Select a conversation to preview": "",
 	"Select a engine": "选择一个搜索引擎",
 	"Select a function": "选择一个函数",
 	"Select a group": "选择一个权限组",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "注册 {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "通过使用大语言模型(LLM)增强表格、表单、行内公式和版面检测的处理能力,可显著提高准确性。但会增加延迟。默认为启用",
 	"Signing in to {{WEBUI_NAME}}": "正在登录 {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "跳过缓存",
 	"Skip the cache and re-run the inference. Defaults to False.": "跳过缓存并重新执行推理。默认为关闭",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "揭开神秘面纱",
 	"Unpin": "取消置顶",
 	"Unravel secrets": "解开秘密",
+	"Unsupported file type.": "",
 	"Untagged": "无标签",
 	"Untitled": "无标题",
 	"Update": "更新",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "用户 Webhook",
 	"Username": "用户名",
 	"Users": "用户",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "竞技场模型默认使用所有模型。点击加号按钮添加自定义模型",
 	"Utilize": "利用",
 	"Valid time units:": "有效时间单位:",

+ 13 - 1
src/lib/i18n/locales/zh-TW/translation.json

@@ -290,6 +290,7 @@
 	"Create Account": "建立帳號",
 	"Create Admin Account": "建立管理員賬號",
 	"Create Channel": "建立頻道",
+	"Create Folder": "",
 	"Create Group": "建立群組",
 	"Create Knowledge": "建立知識",
 	"Create new key": "建立新的金鑰",
@@ -413,7 +414,7 @@
 	"e.g. pdf, docx, txt": "例如:pdf, docx, txt",
 	"e.g. Tools for performing various operations": "例如:用於執行各種操作的工具",
 	"e.g., 3, 4, 5 (leave blank for default)": "例如:3、4、5(留空使用預設值)",
-	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults, * for all)": "",
+	"e.g., audio/wav,audio/mpeg,video/* (leave blank for defaults)": "",
 	"e.g., en-US,ja-JP (leave blank for auto-detect)": "例如:en-US, ja-JP(留空以自動偵測)",
 	"e.g., westus (leave blank for eastus)": "例如:westus(留空則使用 eastus)",
 	"e.g.) en,fr,de": "例如:en, fr, de",
@@ -601,6 +602,7 @@
 	"External Web Loader URL": "外部網頁載入器 URL",
 	"External Web Search API Key": "外部網路搜尋 API 金鑰",
 	"External Web Search URL": "外部網路搜尋 URL",
+	"Fade Effect for Streaming Text": "",
 	"Failed to add file.": "新增檔案失敗。",
 	"Failed to connect to {{URL}} OpenAPI tool server": "無法連線至 {{URL}} OpenAPI 工具伺服器",
 	"Failed to copy link": "複製連結失敗",
@@ -610,6 +612,7 @@
 	"Failed to extract content from the file.": "",
 	"Failed to fetch models": "取得模型失敗",
 	"Failed to generate title": "",
+	"Failed to load chat preview": "",
 	"Failed to load file content.": "載入檔案內容失敗。",
 	"Failed to read clipboard contents": "讀取剪貼簿內容失敗",
 	"Failed to save connections": "儲存連線失敗",
@@ -755,6 +758,7 @@
 	"Input commands": "輸入命令",
 	"Input Variables": "",
 	"Insert": "",
+	"Insert Follow-Up Prompt to Input": "",
 	"Insert Prompt as Rich Text": "",
 	"Install from Github URL": "從 GitHub URL 安裝",
 	"Instant Auto-Send After Voice Transcription": "語音轉錄後立即自動傳送",
@@ -778,6 +782,7 @@
 	"JWT Expiration": "JWT 過期時間",
 	"JWT Token": "JWT Token",
 	"Kagi Search API Key": "Kagi 搜尋 API 金鑰",
+	"Keep Follow-Up Prompts in Chat": "",
 	"Keep in Sidebar": "保留在側邊欄",
 	"Key": "金鑰",
 	"Keyboard shortcuts": "鍵盤快捷鍵",
@@ -812,6 +817,7 @@
 	"Leave empty to use the default prompt, or enter a custom prompt": "留空以使用預設提示詞,或輸入自訂提示詞",
 	"Leave model field empty to use the default model.": "留空模型欄位以使用預設模型。",
 	"License": "授權",
+	"Lift List": "",
 	"Light": "淺色",
 	"Listening...": "正在聆聽...",
 	"Llama.cpp": "Llama.cpp",
@@ -902,6 +908,7 @@
 	"New Tool": "新增工具",
 	"new-channel": "new-channel",
 	"Next message": "",
+	"No chats found": "",
 	"No chats found for this user.": "未找到此使用者的對話記錄。",
 	"No chats found.": "未找到對話記錄。",
 	"No content": "無內容",
@@ -1140,6 +1147,7 @@
 	"See what's new": "檢視新功能",
 	"Seed": "種子值",
 	"Select a base model": "選擇基礎模型",
+	"Select a conversation to preview": "",
 	"Select a engine": "選擇引擎",
 	"Select a function": "選擇函式",
 	"Select a group": "選擇群組",
@@ -1210,6 +1218,7 @@
 	"Sign up to {{WEBUI_NAME}}": "註冊 {{WEBUI_NAME}}",
 	"Significantly improves accuracy by using an LLM to enhance tables, forms, inline math, and layout detection. Will increase latency. Defaults to True.": "透過 LLM 顯著提升表格、表單、行內數學公式與版面偵測的準確度,但會增加延遲時間。預設為 True。",
 	"Signing in to {{WEBUI_NAME}}": "正在登入 {{WEBUI_NAME}}",
+	"Sink List": "",
 	"sk-1234": "sk-1234",
 	"Skip Cache": "略過快取",
 	"Skip the cache and re-run the inference. Defaults to False.": "略過快取並重新執行推理。預設為 False。",
@@ -1361,6 +1370,7 @@
 	"Unlock mysteries": "解鎖謎題",
 	"Unpin": "取消釘選",
 	"Unravel secrets": "揭開秘密",
+	"Unsupported file type.": "",
 	"Untagged": "取消標簽的",
 	"Untitled": "未命名",
 	"Update": "更新",
@@ -1396,6 +1406,8 @@
 	"User Webhooks": "使用者 Webhooks",
 	"Username": "使用者名稱",
 	"Users": "使用者",
+	"Using Entire Document": "",
+	"Using Focused Retrieval": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "正在使用預設競技場模型與所有模型。點選加號按鈕以新增自訂模型。",
 	"Utilize": "使用",
 	"Valid time units:": "有效的時間單位:",

BIN
static/static/logo.png


+ 1 - 0
static/static/user-import.csv

@@ -0,0 +1 @@
+Name,Email,Password,Role