1
0
Timothy Jaeryang Baek 2 сар өмнө
parent
commit
304aed0f13
54 өөрчлөгдсөн 351 нэмэгдсэн , 88 устгасан
  1. 2 6
      backend/open_webui/routers/retrieval.py
  2. 2 2
      backend/open_webui/routers/tasks.py
  3. 2 2
      package-lock.json
  4. 1 1
      package.json
  5. 1 3
      src/lib/components/admin/Settings/Interface.svelte
  6. 7 2
      src/lib/i18n/locales/ar-BH/translation.json
  7. 7 2
      src/lib/i18n/locales/bg-BG/translation.json
  8. 7 2
      src/lib/i18n/locales/bn-BD/translation.json
  9. 7 0
      src/lib/i18n/locales/ca-ES/translation.json
  10. 7 2
      src/lib/i18n/locales/ceb-PH/translation.json
  11. 7 2
      src/lib/i18n/locales/cs-CZ/translation.json
  12. 7 2
      src/lib/i18n/locales/da-DK/translation.json
  13. 7 0
      src/lib/i18n/locales/de-DE/translation.json
  14. 7 2
      src/lib/i18n/locales/dg-DG/translation.json
  15. 7 2
      src/lib/i18n/locales/el-GR/translation.json
  16. 7 2
      src/lib/i18n/locales/en-GB/translation.json
  17. 7 2
      src/lib/i18n/locales/en-US/translation.json
  18. 7 0
      src/lib/i18n/locales/es-ES/translation.json
  19. 7 2
      src/lib/i18n/locales/eu-ES/translation.json
  20. 7 2
      src/lib/i18n/locales/fa-IR/translation.json
  21. 7 0
      src/lib/i18n/locales/fi-FI/translation.json
  22. 7 2
      src/lib/i18n/locales/fr-CA/translation.json
  23. 7 0
      src/lib/i18n/locales/fr-FR/translation.json
  24. 7 2
      src/lib/i18n/locales/he-IL/translation.json
  25. 7 2
      src/lib/i18n/locales/hi-IN/translation.json
  26. 7 2
      src/lib/i18n/locales/hr-HR/translation.json
  27. 7 2
      src/lib/i18n/locales/hu-HU/translation.json
  28. 7 2
      src/lib/i18n/locales/id-ID/translation.json
  29. 7 0
      src/lib/i18n/locales/ie-GA/translation.json
  30. 7 2
      src/lib/i18n/locales/it-IT/translation.json
  31. 7 2
      src/lib/i18n/locales/ja-JP/translation.json
  32. 7 2
      src/lib/i18n/locales/ka-GE/translation.json
  33. 7 1
      src/lib/i18n/locales/ko-KR/translation.json
  34. 7 2
      src/lib/i18n/locales/lt-LT/translation.json
  35. 7 2
      src/lib/i18n/locales/ms-MY/translation.json
  36. 7 1
      src/lib/i18n/locales/nb-NO/translation.json
  37. 7 2
      src/lib/i18n/locales/nl-NL/translation.json
  38. 7 2
      src/lib/i18n/locales/pa-IN/translation.json
  39. 7 2
      src/lib/i18n/locales/pl-PL/translation.json
  40. 7 2
      src/lib/i18n/locales/pt-BR/translation.json
  41. 7 2
      src/lib/i18n/locales/pt-PT/translation.json
  42. 7 2
      src/lib/i18n/locales/ro-RO/translation.json
  43. 7 1
      src/lib/i18n/locales/ru-RU/translation.json
  44. 7 2
      src/lib/i18n/locales/sk-SK/translation.json
  45. 7 1
      src/lib/i18n/locales/sr-RS/translation.json
  46. 7 2
      src/lib/i18n/locales/sv-SE/translation.json
  47. 7 2
      src/lib/i18n/locales/th-TH/translation.json
  48. 7 2
      src/lib/i18n/locales/tk-TW/translation.json
  49. 7 0
      src/lib/i18n/locales/tr-TR/translation.json
  50. 7 0
      src/lib/i18n/locales/uk-UA/translation.json
  51. 7 2
      src/lib/i18n/locales/ur-PK/translation.json
  52. 7 2
      src/lib/i18n/locales/vi-VN/translation.json
  53. 7 0
      src/lib/i18n/locales/zh-CN/translation.json
  54. 7 0
      src/lib/i18n/locales/zh-TW/translation.json

+ 2 - 6
backend/open_webui/routers/retrieval.py

@@ -550,12 +550,8 @@ async def update_rag_config(
             form_data.web.search.searchapi_engine
             form_data.web.search.searchapi_engine
         )
         )
 
 
-        request.app.state.config.SERPAPI_API_KEY = (
-            form_data.web.search.serpapi_api_key
-        )
-        request.app.state.config.SERPAPI_ENGINE = (
-            form_data.web.search.serpapi_engine
-        )
+        request.app.state.config.SERPAPI_API_KEY = form_data.web.search.serpapi_api_key
+        request.app.state.config.SERPAPI_ENGINE = form_data.web.search.serpapi_engine
 
 
         request.app.state.config.JINA_API_KEY = form_data.web.search.jina_api_key
         request.app.state.config.JINA_API_KEY = form_data.web.search.jina_api_key
         request.app.state.config.BING_SEARCH_V7_ENDPOINT = (
         request.app.state.config.BING_SEARCH_V7_ENDPOINT = (

+ 2 - 2
backend/open_webui/routers/tasks.py

@@ -125,7 +125,7 @@ async def update_task_config(
     return {
     return {
         "TASK_MODEL": request.app.state.config.TASK_MODEL,
         "TASK_MODEL": request.app.state.config.TASK_MODEL,
         "TASK_MODEL_EXTERNAL": request.app.state.config.TASK_MODEL_EXTERNAL,
         "TASK_MODEL_EXTERNAL": request.app.state.config.TASK_MODEL_EXTERNAL,
-        "ENABLE_TITLE_GENERATION": request.app.state.config.ENABLE_TITLE_GENERATION, 
+        "ENABLE_TITLE_GENERATION": request.app.state.config.ENABLE_TITLE_GENERATION,
         "TITLE_GENERATION_PROMPT_TEMPLATE": request.app.state.config.TITLE_GENERATION_PROMPT_TEMPLATE,
         "TITLE_GENERATION_PROMPT_TEMPLATE": request.app.state.config.TITLE_GENERATION_PROMPT_TEMPLATE,
         "IMAGE_PROMPT_GENERATION_PROMPT_TEMPLATE": request.app.state.config.IMAGE_PROMPT_GENERATION_PROMPT_TEMPLATE,
         "IMAGE_PROMPT_GENERATION_PROMPT_TEMPLATE": request.app.state.config.IMAGE_PROMPT_GENERATION_PROMPT_TEMPLATE,
         "ENABLE_AUTOCOMPLETE_GENERATION": request.app.state.config.ENABLE_AUTOCOMPLETE_GENERATION,
         "ENABLE_AUTOCOMPLETE_GENERATION": request.app.state.config.ENABLE_AUTOCOMPLETE_GENERATION,
@@ -149,7 +149,7 @@ async def generate_title(
             status_code=status.HTTP_200_OK,
             status_code=status.HTTP_200_OK,
             content={"detail": "Title generation is disabled"},
             content={"detail": "Title generation is disabled"},
         )
         )
-        
+
     if getattr(request.state, "direct", False) and hasattr(request.state, "model"):
     if getattr(request.state, "direct", False) and hasattr(request.state, "model"):
         models = {
         models = {
             request.state.model["id"]: request.state.model,
             request.state.model["id"]: request.state.model,

+ 2 - 2
package-lock.json

@@ -1,12 +1,12 @@
 {
 {
 	"name": "open-webui",
 	"name": "open-webui",
-	"version": "0.5.11",
+	"version": "0.5.12",
 	"lockfileVersion": 3,
 	"lockfileVersion": 3,
 	"requires": true,
 	"requires": true,
 	"packages": {
 	"packages": {
 		"": {
 		"": {
 			"name": "open-webui",
 			"name": "open-webui",
-			"version": "0.5.11",
+			"version": "0.5.12",
 			"dependencies": {
 			"dependencies": {
 				"@codemirror/lang-javascript": "^6.2.2",
 				"@codemirror/lang-javascript": "^6.2.2",
 				"@codemirror/lang-python": "^6.1.6",
 				"@codemirror/lang-python": "^6.1.6",

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
 {
 	"name": "open-webui",
 	"name": "open-webui",
-	"version": "0.5.11",
+	"version": "0.5.12",
 	"private": true,
 	"private": true,
 	"scripts": {
 	"scripts": {
 		"dev": "npm run pyodide:fetch && vite dev --host",
 		"dev": "npm run pyodide:fetch && vite dev --host",

+ 1 - 3
src/lib/components/admin/Settings/Interface.svelte

@@ -134,9 +134,7 @@
 						{$i18n.t('Title Generation')}
 						{$i18n.t('Title Generation')}
 					</div>
 					</div>
 
 
-					<Tooltip content={$i18n.t('Enable title generation for chat messages')}>
-						<Switch bind:state={taskConfig.ENABLE_TITLE_GENERATION} />
-					</Tooltip>
+					<Switch bind:state={taskConfig.ENABLE_TITLE_GENERATION} />
 				</div>
 				</div>
 
 
 				{#if taskConfig.ENABLE_TITLE_GENERATION}
 				{#if taskConfig.ENABLE_TITLE_GENERATION}

+ 7 - 2
src/lib/i18n/locales/ar-BH/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
 	"Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "تجاوز التحقق من SSL للموقع",
 	"Bypass SSL verification for Websites": "تجاوز التحقق من SSL للموقع",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "تمكين مشاركة المجتمع",
 	"Enable Community Sharing": "تمكين مشاركة المجتمع",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "أدخل عنوان URL لاستعلام Searxng",
 	"Enter Searxng Query URL": "أدخل عنوان URL لاستعلام Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "أدخل مفتاح واجهة برمجة تطبيقات Serper",
 	"Enter Serper API Key": "أدخل مفتاح واجهة برمجة تطبيقات Serper",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "أدخل مفتاح واجهة برمجة تطبيقات Serpstack",
 	"Enter Serpstack API Key": "أدخل مفتاح واجهة برمجة تطبيقات Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "أخفاء",
 	"Hide": "أخفاء",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
 	"How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "يُرجى إدخال طلبك هنا.",
 	"Send message": "يُرجى إدخال طلبك هنا.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "سبتمبر",
 	"September": "سبتمبر",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "مفتاح واجهة برمجة تطبيقات سيربر",
 	"Serper API Key": "مفتاح واجهة برمجة تطبيقات سيربر",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "مفتاح واجهة برمجة تطبيقات Serpstack",
 	"Serpstack API Key": "مفتاح واجهة برمجة تطبيقات Serpstack",
@@ -929,7 +934,6 @@
 	"System": "النظام",
 	"System": "النظام",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "محادثة النظام",
 	"System Prompt": "محادثة النظام",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "(e.g. Tell me a fun fact) العناون",
 	"Title (e.g. Tell me a fun fact)": "(e.g. Tell me a fun fact) العناون",
 	"Title Auto-Generation": "توليد تلقائي للعنوان",
 	"Title Auto-Generation": "توليد تلقائي للعنوان",
 	"Title cannot be an empty string.": "العنوان مطلوب",
 	"Title cannot be an empty string.": "العنوان مطلوب",
+	"Title Generation": "",
 	"Title Generation Prompt": "موجه إنشاء العنوان",
 	"Title Generation Prompt": "موجه إنشاء العنوان",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "للوصول إلى أسماء الموديلات المتاحة للتنزيل،",
 	"To access the available model names for downloading,": "للوصول إلى أسماء الموديلات المتاحة للتنزيل،",

+ 7 - 2
src/lib/i18n/locales/bg-BG/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Смел ключ за API за търсене",
 	"Brave Search API Key": "Смел ключ за API за търсене",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Изключване на SSL проверката за сайтове",
 	"Bypass SSL verification for Websites": "Изключване на SSL проверката за сайтове",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Модел за вграждане е настроен на \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Модел за вграждане е настроен на \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Разрешаване на споделяне в общност",
 	"Enable Community Sharing": "Разрешаване на споделяне в общност",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Въведете URL адреса на заявката на Searxng",
 	"Enter Searxng Query URL": "Въведете URL адреса на заявката на Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Въведете Serper API ключ",
 	"Enter Serper API Key": "Въведете Serper API ключ",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Въведете Serpstack API ключ",
 	"Enter Serpstack API Key": "Въведете Serpstack API ключ",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Скрий",
 	"Hide": "Скрий",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Как мога да ви помогна днес?",
 	"How can I help you today?": "Как мога да ви помогна днес?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Изпращане на съобщение",
 	"Send message": "Изпращане на съобщение",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "Септември",
 	"September": "Септември",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API ключ",
 	"Serper API Key": "Serper API ключ",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "Serpstack API ключ",
 	"Serpstack API Key": "Serpstack API ключ",
@@ -929,7 +934,6 @@
 	"System": "Система",
 	"System": "Система",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Системен Промпт",
 	"System Prompt": "Системен Промпт",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Заглавие (напр. Моля, кажете ми нещо забавно)",
 	"Title (e.g. Tell me a fun fact)": "Заглавие (напр. Моля, кажете ми нещо забавно)",
 	"Title Auto-Generation": "Автоматично Генериране на Заглавие",
 	"Title Auto-Generation": "Автоматично Генериране на Заглавие",
 	"Title cannot be an empty string.": "Заглавието не може да бъде празно.",
 	"Title cannot be an empty string.": "Заглавието не може да бъде празно.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Промпт за Генериране на Заглавие",
 	"Title Generation Prompt": "Промпт за Генериране на Заглавие",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "За да получите достъп до наличните имена на модели за изтегляне,",
 	"To access the available model names for downloading,": "За да получите достъп до наличните имена на модели за изтегляне,",

+ 7 - 2
src/lib/i18n/locales/bn-BD/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
 	"Brave Search API Key": "সাহসী অনুসন্ধান API কী",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "ওয়েবসাইটের জন্য SSL যাচাই বাতিল করুন",
 	"Bypass SSL verification for Websites": "ওয়েবসাইটের জন্য SSL যাচাই বাতিল করুন",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "ইমেজ ইমেবডিং মডেল সেট করা হয়েছে - \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "ইমেজ ইমেবডিং মডেল সেট করা হয়েছে - \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
 	"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Searxng ক্যোয়ারী URL লিখুন",
 	"Enter Searxng Query URL": "Searxng ক্যোয়ারী URL লিখুন",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Serper API কী লিখুন",
 	"Enter Serper API Key": "Serper API কী লিখুন",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Serpstack API কী লিখুন",
 	"Enter Serpstack API Key": "Serpstack API কী লিখুন",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "লুকান",
 	"Hide": "লুকান",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?",
 	"How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "মেসেজ পাঠান",
 	"Send message": "মেসেজ পাঠান",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "সেপ্টেম্বর",
 	"September": "সেপ্টেম্বর",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API Key",
 	"Serper API Key": "Serper API Key",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "Serpstack API Key",
 	"Serpstack API Key": "Serpstack API Key",
@@ -929,7 +934,6 @@
 	"System": "সিস্টেম",
 	"System": "সিস্টেম",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "সিস্টেম প্রম্পট",
 	"System Prompt": "সিস্টেম প্রম্পট",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "শিরোনাম (একটি উপস্থিতি বিবরণ জানান)",
 	"Title (e.g. Tell me a fun fact)": "শিরোনাম (একটি উপস্থিতি বিবরণ জানান)",
 	"Title Auto-Generation": "স্বয়ংক্রিয় শিরোনামগঠন",
 	"Title Auto-Generation": "স্বয়ংক্রিয় শিরোনামগঠন",
 	"Title cannot be an empty string.": "শিরোনাম অবশ্যই একটি পাশাপাশি শব্দ হতে হবে।",
 	"Title cannot be an empty string.": "শিরোনাম অবশ্যই একটি পাশাপাশি শব্দ হতে হবে।",
+	"Title Generation": "",
 	"Title Generation Prompt": "শিরোনামগঠন প্রম্পট",
 	"Title Generation Prompt": "শিরোনামগঠন প্রম্পট",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "ডাউনলোডের জন্য এভেইলএবল মডেলের নামগুলো এক্সেস করতে,",
 	"To access the available model names for downloading,": "ডাউনলোডের জন্য এভেইলএবল মডেলের নামগুলো এক্সেস করতে,",

+ 7 - 0
src/lib/i18n/locales/ca-ES/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Clau API de Brave Search",
 	"Brave Search API Key": "Clau API de Brave Search",
 	"By {{name}}": "Per {{name}}",
 	"By {{name}}": "Per {{name}}",
 	"Bypass SSL verification for Websites": "Desactivar la verificació SSL per a l'accés a Internet",
 	"Bypass SSL verification for Websites": "Desactivar la verificació SSL per a l'accés a Internet",
+	"Calendar": "",
 	"Call": "Trucada",
 	"Call": "Trucada",
 	"Call feature is not supported when using Web STT engine": "La funció de trucada no s'admet quan s'utilitza el motor Web STT",
 	"Call feature is not supported when using Web STT engine": "La funció de trucada no s'admet quan s'utilitza el motor Web STT",
 	"Camera": "Càmera",
 	"Camera": "Càmera",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "Introdueix el motor SearchApi",
 	"Enter SearchApi Engine": "Introdueix el motor SearchApi",
 	"Enter Searxng Query URL": "Introdueix l'URL de consulta de Searxng",
 	"Enter Searxng Query URL": "Introdueix l'URL de consulta de Searxng",
 	"Enter Seed": "Introdueix la llavor",
 	"Enter Seed": "Introdueix la llavor",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Introdueix la clau API Serper",
 	"Enter Serper API Key": "Introdueix la clau API Serper",
 	"Enter Serply API Key": "Introdueix la clau API Serply",
 	"Enter Serply API Key": "Introdueix la clau API Serply",
 	"Enter Serpstack API Key": "Introdueix la clau API Serpstack",
 	"Enter Serpstack API Key": "Introdueix la clau API Serpstack",
@@ -513,6 +516,7 @@
 	"Hex Color": "Color hexadecimal",
 	"Hex Color": "Color hexadecimal",
 	"Hex Color - Leave empty for default color": "Color hexadecimal - Deixar buit per a color per defecte",
 	"Hex Color - Leave empty for default color": "Color hexadecimal - Deixar buit per a color per defecte",
 	"Hide": "Amaga",
 	"Hide": "Amaga",
+	"Home": "",
 	"Host": "Servidor",
 	"Host": "Servidor",
 	"How can I help you today?": "Com et puc ajudar avui?",
 	"How can I help you today?": "Com et puc ajudar avui?",
 	"How would you rate this response?": "Com avaluaries aquesta resposta?",
 	"How would you rate this response?": "Com avaluaries aquesta resposta?",
@@ -866,6 +870,8 @@
 	"Send message": "Enviar missatge",
 	"Send message": "Enviar missatge",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Envia `stream_options: { include_usage: true }` a la sol·licitud.\nEls proveïdors compatibles retornaran la informació d'ús del token a la resposta quan s'estableixi.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Envia `stream_options: { include_usage: true }` a la sol·licitud.\nEls proveïdors compatibles retornaran la informació d'ús del token a la resposta quan s'estableixi.",
 	"September": "Setembre",
 	"September": "Setembre",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Clau API de Serper",
 	"Serper API Key": "Clau API de Serper",
 	"Serply API Key": "Clau API de Serply",
 	"Serply API Key": "Clau API de Serply",
 	"Serpstack API Key": "Clau API de Serpstack",
 	"Serpstack API Key": "Clau API de Serpstack",
@@ -978,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Títol (p. ex. Digues-me quelcom divertit)",
 	"Title (e.g. Tell me a fun fact)": "Títol (p. ex. Digues-me quelcom divertit)",
 	"Title Auto-Generation": "Generació automàtica de títol",
 	"Title Auto-Generation": "Generació automàtica de títol",
 	"Title cannot be an empty string.": "El títol no pot ser una cadena buida.",
 	"Title cannot be an empty string.": "El títol no pot ser una cadena buida.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Indicació de generació de títol",
 	"Title Generation Prompt": "Indicació de generació de títol",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Per accedir als noms dels models disponibles per descarregar,",
 	"To access the available model names for downloading,": "Per accedir als noms dels models disponibles per descarregar,",

+ 7 - 2
src/lib/i18n/locales/ceb-PH/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "",
 	"Enter Searxng Query URL": "",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "",
 	"Enter Serper API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "",
 	"Enter Serpstack API Key": "",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Tagoa",
 	"Hide": "Tagoa",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Unsaon nako pagtabang kanimo karon?",
 	"How can I help you today?": "Unsaon nako pagtabang kanimo karon?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Magpadala ug mensahe",
 	"Send message": "Magpadala ug mensahe",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "",
 	"September": "",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "",
 	"Serper API Key": "",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "",
 	"Serpstack API Key": "",
@@ -929,7 +934,6 @@
 	"System": "Sistema",
 	"System": "Sistema",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Madasig nga Sistema",
 	"System Prompt": "Madasig nga Sistema",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "",
 	"Title (e.g. Tell me a fun fact)": "",
 	"Title Auto-Generation": "Awtomatikong paghimo sa titulo",
 	"Title Auto-Generation": "Awtomatikong paghimo sa titulo",
 	"Title cannot be an empty string.": "",
 	"Title cannot be an empty string.": "",
+	"Title Generation": "",
 	"Title Generation Prompt": "Madasig nga henerasyon sa titulo",
 	"Title Generation Prompt": "Madasig nga henerasyon sa titulo",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Aron ma-access ang mga ngalan sa modelo nga ma-download,",
 	"To access the available model names for downloading,": "Aron ma-access ang mga ngalan sa modelo nga ma-download,",

+ 7 - 2
src/lib/i18n/locales/cs-CZ/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Klíč API pro Brave Search",
 	"Brave Search API Key": "Klíč API pro Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Obcházení ověření SSL pro webové stránky",
 	"Bypass SSL verification for Websites": "Obcházení ověření SSL pro webové stránky",
+	"Calendar": "",
 	"Call": "Volání",
 	"Call": "Volání",
 	"Call feature is not supported when using Web STT engine": "Funkce pro volání není podporována při použití Web STT engine.",
 	"Call feature is not supported when using Web STT engine": "Funkce pro volání není podporována při použití Web STT engine.",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Model vkládání nastaven na \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Model vkládání nastaven na \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Povolit sdílení komunity",
 	"Enable Community Sharing": "Povolit sdílení komunity",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "Zadejte vyhledávací stroj SearchApi",
 	"Enter SearchApi Engine": "Zadejte vyhledávací stroj SearchApi",
 	"Enter Searxng Query URL": "Zadejte URL dotazu Searxng",
 	"Enter Searxng Query URL": "Zadejte URL dotazu Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Zadejte Serper API klíč",
 	"Enter Serper API Key": "Zadejte Serper API klíč",
 	"Enter Serply API Key": "Zadejte API klíč pro Serply",
 	"Enter Serply API Key": "Zadejte API klíč pro Serply",
 	"Enter Serpstack API Key": "Zadejte klíč API pro Serpstack",
 	"Enter Serpstack API Key": "Zadejte klíč API pro Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Schovej",
 	"Hide": "Schovej",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Jak vám mohu dnes pomoci?",
 	"How can I help you today?": "Jak vám mohu dnes pomoci?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Odeslat zprávu",
 	"Send message": "Odeslat zprávu",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Odešle `stream_options: { include_usage: true }` v žádosti. Podporovaní poskytovatelé vrátí informace o využití tokenů v odpovědi, když je tato možnost nastavena.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Odešle `stream_options: { include_usage: true }` v žádosti. Podporovaní poskytovatelé vrátí informace o využití tokenů v odpovědi, když je tato možnost nastavena.",
 	"September": "Září",
 	"September": "Září",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Klíč API pro Serper",
 	"Serper API Key": "Klíč API pro Serper",
 	"Serply API Key": "Serply API klíč",
 	"Serply API Key": "Serply API klíč",
 	"Serpstack API Key": "Klíč API pro Serpstack",
 	"Serpstack API Key": "Klíč API pro Serpstack",
@@ -929,7 +934,6 @@
 	"System": "System",
 	"System": "System",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Systémový prompt",
 	"System Prompt": "Systémový prompt",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "Prompt pro generování značek",
 	"Tags Generation Prompt": "Prompt pro generování značek",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Název (např. Řekni mi zajímavost)",
 	"Title (e.g. Tell me a fun fact)": "Název (např. Řekni mi zajímavost)",
 	"Title Auto-Generation": "Automatické generování názvu",
 	"Title Auto-Generation": "Automatické generování názvu",
 	"Title cannot be an empty string.": "Název nemůže být prázdným řetězcem.",
 	"Title cannot be an empty string.": "Název nemůže být prázdným řetězcem.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Generování názvu promptu",
 	"Title Generation Prompt": "Generování názvu promptu",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Pro získání dostupných názvů modelů ke stažení,",
 	"To access the available model names for downloading,": "Pro získání dostupných názvů modelů ke stažení,",

+ 7 - 2
src/lib/i18n/locales/da-DK/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search API nøgle",
 	"Brave Search API Key": "Brave Search API nøgle",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Forbigå SSL verifikation på websider",
 	"Bypass SSL verification for Websites": "Forbigå SSL verifikation på websider",
+	"Calendar": "",
 	"Call": "Opkald",
 	"Call": "Opkald",
 	"Call feature is not supported when using Web STT engine": "Opkaldsfunktion er ikke understøttet for Web STT engine",
 	"Call feature is not supported when using Web STT engine": "Opkaldsfunktion er ikke understøttet for Web STT engine",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model sat til \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model sat til \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Aktiver deling til Community",
 	"Enable Community Sharing": "Aktiver deling til Community",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "Indtast SearchApi-engine",
 	"Enter SearchApi Engine": "Indtast SearchApi-engine",
 	"Enter Searxng Query URL": "Indtast Searxng-forespørgsels-URL",
 	"Enter Searxng Query URL": "Indtast Searxng-forespørgsels-URL",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Indtast Serper API-nøgle",
 	"Enter Serper API Key": "Indtast Serper API-nøgle",
 	"Enter Serply API Key": "Indtast Serply API-nøgle",
 	"Enter Serply API Key": "Indtast Serply API-nøgle",
 	"Enter Serpstack API Key": "Indtast Serpstack API-nøgle",
 	"Enter Serpstack API Key": "Indtast Serpstack API-nøgle",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Skjul",
 	"Hide": "Skjul",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Hvordan kan jeg hjælpe dig i dag?",
 	"How can I help you today?": "Hvordan kan jeg hjælpe dig i dag?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Send besked",
 	"Send message": "Send besked",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Sender `stream_options: { include_usage: true }` i forespørgslen.\nUnderstøttede udbydere vil returnere tokenforbrugsinformation i svaret, når det er indstillet.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Sender `stream_options: { include_usage: true }` i forespørgslen.\nUnderstøttede udbydere vil returnere tokenforbrugsinformation i svaret, når det er indstillet.",
 	"September": "September",
 	"September": "September",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API-nøgle",
 	"Serper API Key": "Serper API-nøgle",
 	"Serply API Key": "Serply API-nøgle",
 	"Serply API Key": "Serply API-nøgle",
 	"Serpstack API Key": "Serpstack API-nøgle",
 	"Serpstack API Key": "Serpstack API-nøgle",
@@ -929,7 +934,6 @@
 	"System": "System",
 	"System": "System",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Systemprompt",
 	"System Prompt": "Systemprompt",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Titel (f.eks. Fortæl mig en sjov kendsgerning)",
 	"Title (e.g. Tell me a fun fact)": "Titel (f.eks. Fortæl mig en sjov kendsgerning)",
 	"Title Auto-Generation": "Automatisk titelgenerering",
 	"Title Auto-Generation": "Automatisk titelgenerering",
 	"Title cannot be an empty string.": "Titel kan ikke være en tom streng.",
 	"Title cannot be an empty string.": "Titel kan ikke være en tom streng.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt til titelgenerering",
 	"Title Generation Prompt": "Prompt til titelgenerering",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "For at få adgang til de tilgængelige modelnavne til download,",
 	"To access the available model names for downloading,": "For at få adgang til de tilgængelige modelnavne til download,",

+ 7 - 0
src/lib/i18n/locales/de-DE/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search API-Schlüssel",
 	"Brave Search API Key": "Brave Search API-Schlüssel",
 	"By {{name}}": "Von {{name}}",
 	"By {{name}}": "Von {{name}}",
 	"Bypass SSL verification for Websites": "SSL-Überprüfung für Webseiten umgehen",
 	"Bypass SSL verification for Websites": "SSL-Überprüfung für Webseiten umgehen",
+	"Calendar": "",
 	"Call": "Anrufen",
 	"Call": "Anrufen",
 	"Call feature is not supported when using Web STT engine": "Die Anruffunktion wird nicht unterstützt, wenn die Web-STT-Engine verwendet wird.",
 	"Call feature is not supported when using Web STT engine": "Die Anruffunktion wird nicht unterstützt, wenn die Web-STT-Engine verwendet wird.",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "Geben Sie die SearchApi-Engine ein",
 	"Enter SearchApi Engine": "Geben Sie die SearchApi-Engine ein",
 	"Enter Searxng Query URL": "Geben Sie die Searxng-Abfrage-URL ein",
 	"Enter Searxng Query URL": "Geben Sie die Searxng-Abfrage-URL ein",
 	"Enter Seed": "Geben Sie den Seed ein",
 	"Enter Seed": "Geben Sie den Seed ein",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Geben Sie den Serper-API-Schlüssel ein",
 	"Enter Serper API Key": "Geben Sie den Serper-API-Schlüssel ein",
 	"Enter Serply API Key": "Geben Sie den",
 	"Enter Serply API Key": "Geben Sie den",
 	"Enter Serpstack API Key": "Geben Sie den Serpstack-API-Schlüssel ein",
 	"Enter Serpstack API Key": "Geben Sie den Serpstack-API-Schlüssel ein",
@@ -513,6 +516,7 @@
 	"Hex Color": "Hex-Farbe",
 	"Hex Color": "Hex-Farbe",
 	"Hex Color - Leave empty for default color": "Hex-Farbe - Leer lassen für Standardfarbe",
 	"Hex Color - Leave empty for default color": "Hex-Farbe - Leer lassen für Standardfarbe",
 	"Hide": "Verbergen",
 	"Hide": "Verbergen",
+	"Home": "",
 	"Host": "Host",
 	"Host": "Host",
 	"How can I help you today?": "Wie kann ich Ihnen heute helfen?",
 	"How can I help you today?": "Wie kann ich Ihnen heute helfen?",
 	"How would you rate this response?": "Wie würden Sie diese Antwort bewerten?",
 	"How would you rate this response?": "Wie würden Sie diese Antwort bewerten?",
@@ -866,6 +870,8 @@
 	"Send message": "Nachricht senden",
 	"Send message": "Nachricht senden",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Sendet `stream_options: { include_usage: true }` in der Anfrage.\nUnterstützte Anbieter geben Token-Nutzungsinformationen in der Antwort zurück, wenn dies festgelegt ist.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Sendet `stream_options: { include_usage: true }` in der Anfrage.\nUnterstützte Anbieter geben Token-Nutzungsinformationen in der Antwort zurück, wenn dies festgelegt ist.",
 	"September": "September",
 	"September": "September",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper-API-Schlüssel",
 	"Serper API Key": "Serper-API-Schlüssel",
 	"Serply API Key": "Serply-API-Schlüssel",
 	"Serply API Key": "Serply-API-Schlüssel",
 	"Serpstack API Key": "Serpstack-API-Schlüssel",
 	"Serpstack API Key": "Serpstack-API-Schlüssel",
@@ -978,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Titel (z. B. Erzähl mir einen lustigen Fakt)",
 	"Title (e.g. Tell me a fun fact)": "Titel (z. B. Erzähl mir einen lustigen Fakt)",
 	"Title Auto-Generation": "Unterhaltungstitel automatisch generieren",
 	"Title Auto-Generation": "Unterhaltungstitel automatisch generieren",
 	"Title cannot be an empty string.": "Titel darf nicht leer sein.",
 	"Title cannot be an empty string.": "Titel darf nicht leer sein.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt für Titelgenerierung",
 	"Title Generation Prompt": "Prompt für Titelgenerierung",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zuzugreifen,",
 	"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zuzugreifen,",

+ 7 - 2
src/lib/i18n/locales/dg-DG/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "",
 	"Enter Searxng Query URL": "",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "",
 	"Enter Serper API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "",
 	"Enter Serpstack API Key": "",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Hide",
 	"Hide": "Hide",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "How can I halp u today?",
 	"How can I help you today?": "How can I halp u today?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Send message very send",
 	"Send message": "Send message very send",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "",
 	"September": "",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "",
 	"Serper API Key": "",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "",
 	"Serpstack API Key": "",
@@ -929,7 +934,6 @@
 	"System": "System very system",
 	"System": "System very system",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "System Prompt much prompt",
 	"System Prompt": "System Prompt much prompt",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "",
 	"Title (e.g. Tell me a fun fact)": "",
 	"Title Auto-Generation": "Title Auto-Generation much auto-gen",
 	"Title Auto-Generation": "Title Auto-Generation much auto-gen",
 	"Title cannot be an empty string.": "",
 	"Title cannot be an empty string.": "",
+	"Title Generation": "",
 	"Title Generation Prompt": "Title Generation Prompt very prompt",
 	"Title Generation Prompt": "Title Generation Prompt very prompt",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "To access the available model names for downloading, much access",
 	"To access the available model names for downloading,": "To access the available model names for downloading, much access",

+ 7 - 2
src/lib/i18n/locales/el-GR/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Κλειδί API Brave Search",
 	"Brave Search API Key": "Κλειδί API Brave Search",
 	"By {{name}}": "Από {{name}}",
 	"By {{name}}": "Από {{name}}",
 	"Bypass SSL verification for Websites": "Παράκαμψη επαλήθευσης SSL για Ιστότοπους",
 	"Bypass SSL verification for Websites": "Παράκαμψη επαλήθευσης SSL για Ιστότοπους",
+	"Calendar": "",
 	"Call": "Κλήση",
 	"Call": "Κλήση",
 	"Call feature is not supported when using Web STT engine": "Η λειτουργία κλήσης δεν υποστηρίζεται όταν χρησιμοποιείται η μηχανή Web STT",
 	"Call feature is not supported when using Web STT engine": "Η λειτουργία κλήσης δεν υποστηρίζεται όταν χρησιμοποιείται η μηχανή Web STT",
 	"Camera": "Κάμερα",
 	"Camera": "Κάμερα",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Το μοντέλο ενσωμάτωσης έχει οριστεί σε \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Το μοντέλο ενσωμάτωσης έχει οριστεί σε \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Ενεργοποίηση Κοινοτικής Κοινής Χρήσης",
 	"Enable Community Sharing": "Ενεργοποίηση Κοινοτικής Κοινής Χρήσης",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "Εισάγετε τη Μηχανή SearchApi",
 	"Enter SearchApi Engine": "Εισάγετε τη Μηχανή SearchApi",
 	"Enter Searxng Query URL": "Εισάγετε το URL Ερώτησης Searxng",
 	"Enter Searxng Query URL": "Εισάγετε το URL Ερώτησης Searxng",
 	"Enter Seed": "Εισάγετε το Seed",
 	"Enter Seed": "Εισάγετε το Seed",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Εισάγετε το Κλειδί API Serper",
 	"Enter Serper API Key": "Εισάγετε το Κλειδί API Serper",
 	"Enter Serply API Key": "Εισάγετε το Κλειδί API Serply",
 	"Enter Serply API Key": "Εισάγετε το Κλειδί API Serply",
 	"Enter Serpstack API Key": "Εισάγετε το Κλειδί API Serpstack",
 	"Enter Serpstack API Key": "Εισάγετε το Κλειδί API Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "Χρώμα Hex",
 	"Hex Color": "Χρώμα Hex",
 	"Hex Color - Leave empty for default color": "Χρώμα Hex - Αφήστε κενό για προεπιλεγμένο χρώμα",
 	"Hex Color - Leave empty for default color": "Χρώμα Hex - Αφήστε κενό για προεπιλεγμένο χρώμα",
 	"Hide": "Απόκρυψη",
 	"Hide": "Απόκρυψη",
+	"Home": "",
 	"Host": "Διακομιστής",
 	"Host": "Διακομιστής",
 	"How can I help you today?": "Πώς μπορώ να σας βοηθήσω σήμερα;",
 	"How can I help you today?": "Πώς μπορώ να σας βοηθήσω σήμερα;",
 	"How would you rate this response?": "Πώς θα βαθμολογούσατε αυτή την απάντηση;",
 	"How would you rate this response?": "Πώς θα βαθμολογούσατε αυτή την απάντηση;",
@@ -867,6 +870,8 @@
 	"Send message": "Αποστολή μηνύματος",
 	"Send message": "Αποστολή μηνύματος",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Στέλνει `stream_options: { include_usage: true }` στο αίτημα.\nΟι υποστηριζόμενοι πάροχοι θα επιστρέψουν πληροφορίες χρήσης token στην απάντηση όταν ρυθμιστεί.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Στέλνει `stream_options: { include_usage: true }` στο αίτημα.\nΟι υποστηριζόμενοι πάροχοι θα επιστρέψουν πληροφορίες χρήσης token στην απάντηση όταν ρυθμιστεί.",
 	"September": "Σεπτέμβριος",
 	"September": "Σεπτέμβριος",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Κλειδί API Serper",
 	"Serper API Key": "Κλειδί API Serper",
 	"Serply API Key": "Κλειδί API Serply",
 	"Serply API Key": "Κλειδί API Serply",
 	"Serpstack API Key": "Κλειδί API Serpstack",
 	"Serpstack API Key": "Κλειδί API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "Σύστημα",
 	"System": "Σύστημα",
 	"System Instructions": "Οδηγίες Συστήματος",
 	"System Instructions": "Οδηγίες Συστήματος",
 	"System Prompt": "Προτροπή Συστήματος",
 	"System Prompt": "Προτροπή Συστήματος",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "Προτροπή Γενιάς Ετικετών",
 	"Tags Generation Prompt": "Προτροπή Γενιάς Ετικετών",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Η δειγματοληψία Tail free χρησιμοποιείται για να μειώσει την επίδραση των λιγότερο πιθανών tokens από την έξοδο. Μια υψηλότερη τιμή (π.χ., 2.0) θα μειώσει την επίδραση περισσότερο, ενώ μια τιμή 1.0 απενεργοποιεί αυτή τη ρύθμιση. (προεπιλογή: 1)",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Η δειγματοληψία Tail free χρησιμοποιείται για να μειώσει την επίδραση των λιγότερο πιθανών tokens από την έξοδο. Μια υψηλότερη τιμή (π.χ., 2.0) θα μειώσει την επίδραση περισσότερο, ενώ μια τιμή 1.0 απενεργοποιεί αυτή τη ρύθμιση. (προεπιλογή: 1)",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Τίτλος (π.χ. Πες μου ένα διασκεδαστικό γεγονός)",
 	"Title (e.g. Tell me a fun fact)": "Τίτλος (π.χ. Πες μου ένα διασκεδαστικό γεγονός)",
 	"Title Auto-Generation": "Αυτόματη Γενιά Τίτλων",
 	"Title Auto-Generation": "Αυτόματη Γενιά Τίτλων",
 	"Title cannot be an empty string.": "Ο τίτλος δεν μπορεί να είναι κενή συμβολοσειρά.",
 	"Title cannot be an empty string.": "Ο τίτλος δεν μπορεί να είναι κενή συμβολοσειρά.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Προτροπή Δημιουργίας Τίτλου",
 	"Title Generation Prompt": "Προτροπή Δημιουργίας Τίτλου",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Για να αποκτήσετε πρόσβαση στα διαθέσιμα ονόματα μοντέλων για λήψη,",
 	"To access the available model names for downloading,": "Για να αποκτήσετε πρόσβαση στα διαθέσιμα ονόματα μοντέλων για λήψη,",

+ 7 - 2
src/lib/i18n/locales/en-GB/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "",
 	"Enter Searxng Query URL": "",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "",
 	"Enter Serper API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "",
 	"Enter Serpstack API Key": "",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "",
 	"Hide": "",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "",
 	"How can I help you today?": "",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "",
 	"Send message": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "",
 	"September": "",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "",
 	"Serper API Key": "",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "",
 	"Serpstack API Key": "",
@@ -929,7 +934,6 @@
 	"System": "",
 	"System": "",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "",
 	"System Prompt": "",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "",
 	"Title (e.g. Tell me a fun fact)": "",
 	"Title Auto-Generation": "",
 	"Title Auto-Generation": "",
 	"Title cannot be an empty string.": "",
 	"Title cannot be an empty string.": "",
+	"Title Generation": "",
 	"Title Generation Prompt": "",
 	"Title Generation Prompt": "",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "",
 	"To access the available model names for downloading,": "",

+ 7 - 2
src/lib/i18n/locales/en-US/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "",
 	"Enter Searxng Query URL": "",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "",
 	"Enter Serper API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "",
 	"Enter Serpstack API Key": "",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "",
 	"Hide": "",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "",
 	"How can I help you today?": "",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "",
 	"Send message": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "",
 	"September": "",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "",
 	"Serper API Key": "",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "",
 	"Serpstack API Key": "",
@@ -929,7 +934,6 @@
 	"System": "",
 	"System": "",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "",
 	"System Prompt": "",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "",
 	"Title (e.g. Tell me a fun fact)": "",
 	"Title Auto-Generation": "",
 	"Title Auto-Generation": "",
 	"Title cannot be an empty string.": "",
 	"Title cannot be an empty string.": "",
+	"Title Generation": "",
 	"Title Generation Prompt": "",
 	"Title Generation Prompt": "",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "",
 	"To access the available model names for downloading,": "",

+ 7 - 0
src/lib/i18n/locales/es-ES/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Clave de API de Brave Search",
 	"Brave Search API Key": "Clave de API de Brave Search",
 	"By {{name}}": "Por {{name}}",
 	"By {{name}}": "Por {{name}}",
 	"Bypass SSL verification for Websites": "Desactivar la verificación SSL para sitios web",
 	"Bypass SSL verification for Websites": "Desactivar la verificación SSL para sitios web",
+	"Calendar": "",
 	"Call": "Llamada",
 	"Call": "Llamada",
 	"Call feature is not supported when using Web STT engine": "La funcionalidad de llamada no puede usarse junto con el motor de STT Web",
 	"Call feature is not supported when using Web STT engine": "La funcionalidad de llamada no puede usarse junto con el motor de STT Web",
 	"Camera": "Cámara",
 	"Camera": "Cámara",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "Ingrese el motor de SearchApi",
 	"Enter SearchApi Engine": "Ingrese el motor de SearchApi",
 	"Enter Searxng Query URL": "Introduzca la URL de consulta de Searxng",
 	"Enter Searxng Query URL": "Introduzca la URL de consulta de Searxng",
 	"Enter Seed": "Ingrese la semilla",
 	"Enter Seed": "Ingrese la semilla",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Ingrese la clave API de Serper",
 	"Enter Serper API Key": "Ingrese la clave API de Serper",
 	"Enter Serply API Key": "Ingrese la clave API de Serply",
 	"Enter Serply API Key": "Ingrese la clave API de Serply",
 	"Enter Serpstack API Key": "Ingrese la clave API de Serpstack",
 	"Enter Serpstack API Key": "Ingrese la clave API de Serpstack",
@@ -513,6 +516,7 @@
 	"Hex Color": "Color Hex",
 	"Hex Color": "Color Hex",
 	"Hex Color - Leave empty for default color": "Color Hex - Deja vacío para el color predeterminado",
 	"Hex Color - Leave empty for default color": "Color Hex - Deja vacío para el color predeterminado",
 	"Hide": "Esconder",
 	"Hide": "Esconder",
+	"Home": "",
 	"Host": "Host",
 	"Host": "Host",
 	"How can I help you today?": "¿Cómo puedo ayudarte hoy?",
 	"How can I help you today?": "¿Cómo puedo ayudarte hoy?",
 	"How would you rate this response?": "¿Cómo calificarías esta respuesta?",
 	"How would you rate this response?": "¿Cómo calificarías esta respuesta?",
@@ -866,6 +870,8 @@
 	"Send message": "Enviar Mensaje",
 	"Send message": "Enviar Mensaje",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Envia `stream_options: { include_usage: true }` en la solicitud.\nLos proveedores admitidos devolverán información de uso del token en la respuesta cuando se establezca.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Envia `stream_options: { include_usage: true }` en la solicitud.\nLos proveedores admitidos devolverán información de uso del token en la respuesta cuando se establezca.",
 	"September": "Septiembre",
 	"September": "Septiembre",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Clave API de Serper",
 	"Serper API Key": "Clave API de Serper",
 	"Serply API Key": "Clave API de Serply",
 	"Serply API Key": "Clave API de Serply",
 	"Serpstack API Key": "Clave API de Serpstack",
 	"Serpstack API Key": "Clave API de Serpstack",
@@ -978,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Título (por ejemplo, cuéntame una curiosidad)",
 	"Title (e.g. Tell me a fun fact)": "Título (por ejemplo, cuéntame una curiosidad)",
 	"Title Auto-Generation": "Generación automática de títulos",
 	"Title Auto-Generation": "Generación automática de títulos",
 	"Title cannot be an empty string.": "El título no puede ser una cadena vacía.",
 	"Title cannot be an empty string.": "El título no puede ser una cadena vacía.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt de generación de título",
 	"Title Generation Prompt": "Prompt de generación de título",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Para acceder a los nombres de modelos disponibles para descargar,",
 	"To access the available model names for downloading,": "Para acceder a los nombres de modelos disponibles para descargar,",

+ 7 - 2
src/lib/i18n/locales/eu-ES/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Bilaketa API Gakoa",
 	"Brave Search API Key": "Brave Bilaketa API Gakoa",
 	"By {{name}}": "{{name}}-k",
 	"By {{name}}": "{{name}}-k",
 	"Bypass SSL verification for Websites": "Saihestu SSL egiaztapena Webguneentzat",
 	"Bypass SSL verification for Websites": "Saihestu SSL egiaztapena Webguneentzat",
+	"Calendar": "",
 	"Call": "Deia",
 	"Call": "Deia",
 	"Call feature is not supported when using Web STT engine": "Dei funtzioa ez da onartzen Web STT motorra erabiltzean",
 	"Call feature is not supported when using Web STT engine": "Dei funtzioa ez da onartzen Web STT motorra erabiltzean",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding eredua \"{{embedding_model}}\"-ra ezarri da",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding eredua \"{{embedding_model}}\"-ra ezarri da",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Gaitu Komunitatearen Partekatzea",
 	"Enable Community Sharing": "Gaitu Komunitatearen Partekatzea",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "Sartu SearchApi Motorea",
 	"Enter SearchApi Engine": "Sartu SearchApi Motorea",
 	"Enter Searxng Query URL": "Sartu Searxng Kontsulta URLa",
 	"Enter Searxng Query URL": "Sartu Searxng Kontsulta URLa",
 	"Enter Seed": "Sartu Hazia",
 	"Enter Seed": "Sartu Hazia",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Sartu Serper API Gakoa",
 	"Enter Serper API Key": "Sartu Serper API Gakoa",
 	"Enter Serply API Key": "Sartu Serply API Gakoa",
 	"Enter Serply API Key": "Sartu Serply API Gakoa",
 	"Enter Serpstack API Key": "Sartu Serpstack API Gakoa",
 	"Enter Serpstack API Key": "Sartu Serpstack API Gakoa",
@@ -514,6 +516,7 @@
 	"Hex Color": "Hex Kolorea",
 	"Hex Color": "Hex Kolorea",
 	"Hex Color - Leave empty for default color": "Hex Kolorea - Utzi hutsik kolore lehenetsia erabiltzeko",
 	"Hex Color - Leave empty for default color": "Hex Kolorea - Utzi hutsik kolore lehenetsia erabiltzeko",
 	"Hide": "Ezkutatu",
 	"Hide": "Ezkutatu",
+	"Home": "",
 	"Host": "Ostalaria",
 	"Host": "Ostalaria",
 	"How can I help you today?": "Zertan lagun zaitzaket gaur?",
 	"How can I help you today?": "Zertan lagun zaitzaket gaur?",
 	"How would you rate this response?": "Nola baloratuko zenuke erantzun hau?",
 	"How would you rate this response?": "Nola baloratuko zenuke erantzun hau?",
@@ -867,6 +870,8 @@
 	"Send message": "Bidali mezua",
 	"Send message": "Bidali mezua",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Bidaltzen du `stream_options: { include_usage: true }` eskaeran.\nOnartutako hornitzaileek token erabileraren informazioa itzuliko dute erantzunean ezarrita dagoenean.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Bidaltzen du `stream_options: { include_usage: true }` eskaeran.\nOnartutako hornitzaileek token erabileraren informazioa itzuliko dute erantzunean ezarrita dagoenean.",
 	"September": "Iraila",
 	"September": "Iraila",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API gakoa",
 	"Serper API Key": "Serper API gakoa",
 	"Serply API Key": "Serply API gakoa",
 	"Serply API Key": "Serply API gakoa",
 	"Serpstack API Key": "Serpstack API gakoa",
 	"Serpstack API Key": "Serpstack API gakoa",
@@ -929,7 +934,6 @@
 	"System": "Sistema",
 	"System": "Sistema",
 	"System Instructions": "Sistema jarraibideak",
 	"System Instructions": "Sistema jarraibideak",
 	"System Prompt": "Sistema prompta",
 	"System Prompt": "Sistema prompta",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "Etiketa sortzeko prompta",
 	"Tags Generation Prompt": "Etiketa sortzeko prompta",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Isats-libre laginketa erabiltzen da irteran probabilitate txikiagoko tokenen eragina murrizteko. Balio altuago batek (adib., 2.0) eragina gehiago murriztuko du, 1.0 balioak ezarpen hau desgaitzen duen bitartean. (lehenetsia: 1)",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Isats-libre laginketa erabiltzen da irteran probabilitate txikiagoko tokenen eragina murrizteko. Balio altuago batek (adib., 2.0) eragina gehiago murriztuko du, 1.0 balioak ezarpen hau desgaitzen duen bitartean. (lehenetsia: 1)",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Izenburua (adib. Kontatu datu dibertigarri bat)",
 	"Title (e.g. Tell me a fun fact)": "Izenburua (adib. Kontatu datu dibertigarri bat)",
 	"Title Auto-Generation": "Izenburuen sorrera automatikoa",
 	"Title Auto-Generation": "Izenburuen sorrera automatikoa",
 	"Title cannot be an empty string.": "Izenburua ezin da kate hutsa izan.",
 	"Title cannot be an empty string.": "Izenburua ezin da kate hutsa izan.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Izenburua sortzeko prompta",
 	"Title Generation Prompt": "Izenburua sortzeko prompta",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Deskargatzeko eskuragarri dauden modelo izenak atzitzeko,",
 	"To access the available model names for downloading,": "Deskargatzeko eskuragarri dauden modelo izenak atzitzeko,",

+ 7 - 2
src/lib/i18n/locales/fa-IR/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "کلید API جستجوی شجاع",
 	"Brave Search API Key": "کلید API جستجوی شجاع",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "عبور از تأیید SSL برای وب سایت ها",
 	"Bypass SSL verification for Websites": "عبور از تأیید SSL برای وب سایت ها",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "دوربین",
 	"Camera": "دوربین",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "مدل پیدائش را به \"{{embedding_model}}\" تنظیم کنید",
 	"Embedding model set to \"{{embedding_model}}\"": "مدل پیدائش را به \"{{embedding_model}}\" تنظیم کنید",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "فعالسازی اشتراک انجمن",
 	"Enable Community Sharing": "فعالسازی اشتراک انجمن",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "نشانی وب پرسوجوی Searxng را وارد کنید",
 	"Enter Searxng Query URL": "نشانی وب پرسوجوی Searxng را وارد کنید",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "کلید API Serper را وارد کنید",
 	"Enter Serper API Key": "کلید API Serper را وارد کنید",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "کلید API Serpstack را وارد کنید",
 	"Enter Serpstack API Key": "کلید API Serpstack را وارد کنید",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "پنهان\u200cسازی",
 	"Hide": "پنهان\u200cسازی",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟",
 	"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "ارسال پیام",
 	"Send message": "ارسال پیام",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "سپتامبر",
 	"September": "سپتامبر",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "کلید API Serper",
 	"Serper API Key": "کلید API Serper",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "کلید API Serpstack",
 	"Serpstack API Key": "کلید API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "سیستم",
 	"System": "سیستم",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "پرامپت سیستم",
 	"System Prompt": "پرامپت سیستم",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "عنوان (برای مثال: به من بگوید چیزی که دوست دارید)",
 	"Title (e.g. Tell me a fun fact)": "عنوان (برای مثال: به من بگوید چیزی که دوست دارید)",
 	"Title Auto-Generation": "تولید خودکار عنوان",
 	"Title Auto-Generation": "تولید خودکار عنوان",
 	"Title cannot be an empty string.": "عنوان نمی تواند یک رشته خالی باشد.",
 	"Title cannot be an empty string.": "عنوان نمی تواند یک رشته خالی باشد.",
+	"Title Generation": "",
 	"Title Generation Prompt": "پرامپت تولید عنوان",
 	"Title Generation Prompt": "پرامپت تولید عنوان",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "برای دسترسی به نام مدل های موجود برای دانلود،",
 	"To access the available model names for downloading,": "برای دسترسی به نام مدل های موجود برای دانلود،",

+ 7 - 0
src/lib/i18n/locales/fi-FI/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search API -avain",
 	"Brave Search API Key": "Brave Search API -avain",
 	"By {{name}}": "Tekijä {{name}}",
 	"By {{name}}": "Tekijä {{name}}",
 	"Bypass SSL verification for Websites": "Ohita SSL-varmennus verkkosivustoille",
 	"Bypass SSL verification for Websites": "Ohita SSL-varmennus verkkosivustoille",
+	"Calendar": "",
 	"Call": "Soitto",
 	"Call": "Soitto",
 	"Call feature is not supported when using Web STT engine": "Soittotoimintoa ei tueta käytettäessä web-puheentunnistusmoottoria",
 	"Call feature is not supported when using Web STT engine": "Soittotoimintoa ei tueta käytettäessä web-puheentunnistusmoottoria",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "Kirjoita SearchApi-moottori",
 	"Enter SearchApi Engine": "Kirjoita SearchApi-moottori",
 	"Enter Searxng Query URL": "Kirjoita Searxng-kyselyn URL-osoite",
 	"Enter Searxng Query URL": "Kirjoita Searxng-kyselyn URL-osoite",
 	"Enter Seed": "Kirjoita siemenluku",
 	"Enter Seed": "Kirjoita siemenluku",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Kirjoita Serper API -avain",
 	"Enter Serper API Key": "Kirjoita Serper API -avain",
 	"Enter Serply API Key": "Kirjoita Serply API -avain",
 	"Enter Serply API Key": "Kirjoita Serply API -avain",
 	"Enter Serpstack API Key": "Kirjoita Serpstack API -avain",
 	"Enter Serpstack API Key": "Kirjoita Serpstack API -avain",
@@ -513,6 +516,7 @@
 	"Hex Color": "Heksadesimaaliväri",
 	"Hex Color": "Heksadesimaaliväri",
 	"Hex Color - Leave empty for default color": "Heksadesimaaliväri - Jätä tyhjäksi, jos haluat oletusvärin",
 	"Hex Color - Leave empty for default color": "Heksadesimaaliväri - Jätä tyhjäksi, jos haluat oletusvärin",
 	"Hide": "Piilota",
 	"Hide": "Piilota",
+	"Home": "",
 	"Host": "Palvelin",
 	"Host": "Palvelin",
 	"How can I help you today?": "Miten voin auttaa sinua tänään?",
 	"How can I help you today?": "Miten voin auttaa sinua tänään?",
 	"How would you rate this response?": "Kuinka arvioisit tätä vastausta?",
 	"How would you rate this response?": "Kuinka arvioisit tätä vastausta?",
@@ -866,6 +870,8 @@
 	"Send message": "Lähetä viesti",
 	"Send message": "Lähetä viesti",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Lähettää `stream_options: { include_usage: true }` pyynnössä.\nTuetut tarjoajat palauttavat tokenkäyttötiedot vastauksessa, kun se on asetettu.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Lähettää `stream_options: { include_usage: true }` pyynnössä.\nTuetut tarjoajat palauttavat tokenkäyttötiedot vastauksessa, kun se on asetettu.",
 	"September": "syyskuu",
 	"September": "syyskuu",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API -avain",
 	"Serper API Key": "Serper API -avain",
 	"Serply API Key": "Serply API -avain",
 	"Serply API Key": "Serply API -avain",
 	"Serpstack API Key": "Serpstack API -avain",
 	"Serpstack API Key": "Serpstack API -avain",
@@ -978,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Otsikko (esim. Kerro hauska fakta)",
 	"Title (e.g. Tell me a fun fact)": "Otsikko (esim. Kerro hauska fakta)",
 	"Title Auto-Generation": "Otsikon automaattinen luonti",
 	"Title Auto-Generation": "Otsikon automaattinen luonti",
 	"Title cannot be an empty string.": "Otsikko ei voi olla tyhjä merkkijono.",
 	"Title cannot be an empty string.": "Otsikko ei voi olla tyhjä merkkijono.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Otsikon luontikehote",
 	"Title Generation Prompt": "Otsikon luontikehote",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Päästäksesi käsiksi ladattavissa oleviin mallinimiin,",
 	"To access the available model names for downloading,": "Päästäksesi käsiksi ladattavissa oleviin mallinimiin,",

+ 7 - 2
src/lib/i18n/locales/fr-CA/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Clé API Brave Search",
 	"Brave Search API Key": "Clé API Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Bypasser la vérification SSL pour les sites web",
 	"Bypass SSL verification for Websites": "Bypasser la vérification SSL pour les sites web",
+	"Calendar": "",
 	"Call": "Appeler",
 	"Call": "Appeler",
 	"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
 	"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
 	"Camera": "Appareil photo",
 	"Camera": "Appareil photo",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Modèle d'encodage défini sur « {{embedding_model}} »",
 	"Embedding model set to \"{{embedding_model}}\"": "Modèle d'encodage défini sur « {{embedding_model}} »",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Activer le partage communautaire",
 	"Enable Community Sharing": "Activer le partage communautaire",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Entrez l'URL de la requête Searxng",
 	"Enter Searxng Query URL": "Entrez l'URL de la requête Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Entrez la clé API Serper",
 	"Enter Serper API Key": "Entrez la clé API Serper",
 	"Enter Serply API Key": "Entrez la clé API Serply",
 	"Enter Serply API Key": "Entrez la clé API Serply",
 	"Enter Serpstack API Key": "Entrez la clé API Serpstack",
 	"Enter Serpstack API Key": "Entrez la clé API Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Cacher",
 	"Hide": "Cacher",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
 	"How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Envoyer un message",
 	"Send message": "Envoyer un message",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "Septembre",
 	"September": "Septembre",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Clé API Serper",
 	"Serper API Key": "Clé API Serper",
 	"Serply API Key": "Clé API Serply",
 	"Serply API Key": "Clé API Serply",
 	"Serpstack API Key": "Clé API Serpstack",
 	"Serpstack API Key": "Clé API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "Système",
 	"System": "Système",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Prompt du système",
 	"System Prompt": "Prompt du système",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Titre (par ex. raconte-moi un fait amusant)",
 	"Title (e.g. Tell me a fun fact)": "Titre (par ex. raconte-moi un fait amusant)",
 	"Title Auto-Generation": "Génération automatique de titres",
 	"Title Auto-Generation": "Génération automatique de titres",
 	"Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.",
 	"Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt de génération de titre",
 	"Title Generation Prompt": "Prompt de génération de titre",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Pour accéder aux noms des modèles disponibles en téléchargement,",
 	"To access the available model names for downloading,": "Pour accéder aux noms des modèles disponibles en téléchargement,",

+ 7 - 0
src/lib/i18n/locales/fr-FR/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Clé API Brave Search",
 	"Brave Search API Key": "Clé API Brave Search",
 	"By {{name}}": "Par {{name}}",
 	"By {{name}}": "Par {{name}}",
 	"Bypass SSL verification for Websites": "Bypasser la vérification SSL pour les sites web",
 	"Bypass SSL verification for Websites": "Bypasser la vérification SSL pour les sites web",
+	"Calendar": "",
 	"Call": "Appeler",
 	"Call": "Appeler",
 	"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
 	"Call feature is not supported when using Web STT engine": "La fonction d'appel n'est pas prise en charge lors de l'utilisation du moteur Web STT",
 	"Camera": "Appareil photo",
 	"Camera": "Appareil photo",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "Entrez le moteur de recherche SearchApi",
 	"Enter SearchApi Engine": "Entrez le moteur de recherche SearchApi",
 	"Enter Searxng Query URL": "Entrez l'URL de la requête Searxng",
 	"Enter Searxng Query URL": "Entrez l'URL de la requête Searxng",
 	"Enter Seed": "Entrez Seed",
 	"Enter Seed": "Entrez Seed",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Entrez la clé API Serper",
 	"Enter Serper API Key": "Entrez la clé API Serper",
 	"Enter Serply API Key": "Entrez la clé API Serply",
 	"Enter Serply API Key": "Entrez la clé API Serply",
 	"Enter Serpstack API Key": "Entrez la clé API Serpstack",
 	"Enter Serpstack API Key": "Entrez la clé API Serpstack",
@@ -513,6 +516,7 @@
 	"Hex Color": "Couleur Hex",
 	"Hex Color": "Couleur Hex",
 	"Hex Color - Leave empty for default color": "Couleur Hex - Laissez vide pour la couleur par défaut",
 	"Hex Color - Leave empty for default color": "Couleur Hex - Laissez vide pour la couleur par défaut",
 	"Hide": "Cacher",
 	"Hide": "Cacher",
+	"Home": "",
 	"Host": "Hôte",
 	"Host": "Hôte",
 	"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
 	"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
 	"How would you rate this response?": "Comment évalueriez-vous cette réponse ?",
 	"How would you rate this response?": "Comment évalueriez-vous cette réponse ?",
@@ -866,6 +870,8 @@
 	"Send message": "Envoyer un message",
 	"Send message": "Envoyer un message",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Envoie `stream_options: { include_usage: true }` dans la requête.\nLes fournisseurs pris en charge renverront des informations sur l'utilisation des tokens dans la réponse lorsque cette option est activée.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Envoie `stream_options: { include_usage: true }` dans la requête.\nLes fournisseurs pris en charge renverront des informations sur l'utilisation des tokens dans la réponse lorsque cette option est activée.",
 	"September": "Septembre",
 	"September": "Septembre",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Clé API Serper",
 	"Serper API Key": "Clé API Serper",
 	"Serply API Key": "Clé API Serply",
 	"Serply API Key": "Clé API Serply",
 	"Serpstack API Key": "Clé API Serpstack",
 	"Serpstack API Key": "Clé API Serpstack",
@@ -978,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Titre (par ex. raconte-moi un fait amusant)",
 	"Title (e.g. Tell me a fun fact)": "Titre (par ex. raconte-moi un fait amusant)",
 	"Title Auto-Generation": "Génération automatique des titres",
 	"Title Auto-Generation": "Génération automatique des titres",
 	"Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.",
 	"Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt de génération de titre",
 	"Title Generation Prompt": "Prompt de génération de titre",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Pour accéder aux noms des modèles disponibles,",
 	"To access the available model names for downloading,": "Pour accéder aux noms des modèles disponibles,",

+ 7 - 2
src/lib/i18n/locales/he-IL/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "מפתח API של חיפוש אמיץ",
 	"Brave Search API Key": "מפתח API של חיפוש אמיץ",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "עקוף אימות SSL עבור אתרים",
 	"Bypass SSL verification for Websites": "עקוף אימות SSL עבור אתרים",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "מודל ההטמעה הוגדר ל-\"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "מודל ההטמעה הוגדר ל-\"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
 	"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "הזן כתובת URL של שאילתת Searxng",
 	"Enter Searxng Query URL": "הזן כתובת URL של שאילתת Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "הזן מפתח API של Serper",
 	"Enter Serper API Key": "הזן מפתח API של Serper",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "הזן מפתח API של Serpstack",
 	"Enter Serpstack API Key": "הזן מפתח API של Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "הסתר",
 	"Hide": "הסתר",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "כיצד אוכל לעזור לך היום?",
 	"How can I help you today?": "כיצד אוכל לעזור לך היום?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "שלח הודעה",
 	"Send message": "שלח הודעה",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "ספטמבר",
 	"September": "ספטמבר",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "מפתח Serper API",
 	"Serper API Key": "מפתח Serper API",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "מפתח API של Serpstack",
 	"Serpstack API Key": "מפתח API של Serpstack",
@@ -929,7 +934,6 @@
 	"System": "מערכת",
 	"System": "מערכת",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "תגובת מערכת",
 	"System Prompt": "תגובת מערכת",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "שם (לדוגמה: תרגום)",
 	"Title (e.g. Tell me a fun fact)": "שם (לדוגמה: תרגום)",
 	"Title Auto-Generation": "יצירת שם אוטומטית",
 	"Title Auto-Generation": "יצירת שם אוטומטית",
 	"Title cannot be an empty string.": "שם לא יכול להיות מחרוזת ריקה.",
 	"Title cannot be an empty string.": "שם לא יכול להיות מחרוזת ריקה.",
+	"Title Generation": "",
 	"Title Generation Prompt": "שאלה ליצירת שם",
 	"Title Generation Prompt": "שאלה ליצירת שם",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "כדי לגשת לשמות הדגמים הזמינים להורדה,",
 	"To access the available model names for downloading,": "כדי לגשת לשמות הדגמים הזמינים להורדה,",

+ 7 - 2
src/lib/i18n/locales/hi-IN/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
 	"Brave Search API Key": "Brave सर्च एपीआई कुंजी",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "वेबसाइटों के लिए SSL सुनिश्चिती को छोड़ें",
 	"Bypass SSL verification for Websites": "वेबसाइटों के लिए SSL सुनिश्चिती को छोड़ें",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "एम्बेडिंग मॉडल को \"{{embedding_model}}\" पर सेट किया गया",
 	"Embedding model set to \"{{embedding_model}}\"": "एम्बेडिंग मॉडल को \"{{embedding_model}}\" पर सेट किया गया",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "समुदाय साझाकरण सक्षम करें",
 	"Enable Community Sharing": "समुदाय साझाकरण सक्षम करें",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Searxng क्वेरी URL दर्ज करें",
 	"Enter Searxng Query URL": "Searxng क्वेरी URL दर्ज करें",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Serper API कुंजी दर्ज करें",
 	"Enter Serper API Key": "Serper API कुंजी दर्ज करें",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "सर्पस्टैक एपीआई कुंजी दर्ज करें",
 	"Enter Serpstack API Key": "सर्पस्टैक एपीआई कुंजी दर्ज करें",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "छुपाएं",
 	"Hide": "छुपाएं",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "आज मैं आपकी कैसे मदद कर सकता हूँ?",
 	"How can I help you today?": "आज मैं आपकी कैसे मदद कर सकता हूँ?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "मेसेज भेजें",
 	"Send message": "मेसेज भेजें",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "सितंबर",
 	"September": "सितंबर",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API कुंजी",
 	"Serper API Key": "Serper API कुंजी",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "सर्पस्टैक एपीआई कुंजी",
 	"Serpstack API Key": "सर्पस्टैक एपीआई कुंजी",
@@ -929,7 +934,6 @@
 	"System": "सिस्टम",
 	"System": "सिस्टम",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "सिस्टम प्रॉम्प्ट",
 	"System Prompt": "सिस्टम प्रॉम्प्ट",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "शीर्षक (उदा. मुझे एक मज़ेदार तथ्य बताएं)",
 	"Title (e.g. Tell me a fun fact)": "शीर्षक (उदा. मुझे एक मज़ेदार तथ्य बताएं)",
 	"Title Auto-Generation": "शीर्षक ऑटो-जेनरेशन",
 	"Title Auto-Generation": "शीर्षक ऑटो-जेनरेशन",
 	"Title cannot be an empty string.": "शीर्षक नहीं खाली पाठ हो सकता है.",
 	"Title cannot be an empty string.": "शीर्षक नहीं खाली पाठ हो सकता है.",
+	"Title Generation": "",
 	"Title Generation Prompt": "शीर्षक जनरेशन प्रॉम्प्ट",
 	"Title Generation Prompt": "शीर्षक जनरेशन प्रॉम्प्ट",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "डाउनलोड करने के लिए उपलब्ध मॉडल नामों तक पहुंचने के लिए,",
 	"To access the available model names for downloading,": "डाउनलोड करने के लिए उपलब्ध मॉडल नामों तक पहुंचने के लिए,",

+ 7 - 2
src/lib/i18n/locales/hr-HR/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave tražilica - API ključ",
 	"Brave Search API Key": "Brave tražilica - API ključ",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Zaobiđi SSL provjeru za web stranice",
 	"Bypass SSL verification for Websites": "Zaobiđi SSL provjeru za web stranice",
+	"Calendar": "",
 	"Call": "Poziv",
 	"Call": "Poziv",
 	"Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam",
 	"Call feature is not supported when using Web STT engine": "Značajka poziva nije podržana kada se koristi Web STT mehanizam",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Omogući zajedničko korištenje zajednice",
 	"Enable Community Sharing": "Omogući zajedničko korištenje zajednice",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Unesite URL upita Searxng",
 	"Enter Searxng Query URL": "Unesite URL upita Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Unesite Serper API ključ",
 	"Enter Serper API Key": "Unesite Serper API ključ",
 	"Enter Serply API Key": "Unesite Serply API ključ",
 	"Enter Serply API Key": "Unesite Serply API ključ",
 	"Enter Serpstack API Key": "Unesite Serpstack API ključ",
 	"Enter Serpstack API Key": "Unesite Serpstack API ključ",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Sakrij",
 	"Hide": "Sakrij",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Kako vam mogu pomoći danas?",
 	"How can I help you today?": "Kako vam mogu pomoći danas?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Pošalji poruku",
 	"Send message": "Pošalji poruku",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "Rujan",
 	"September": "Rujan",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API ključ",
 	"Serper API Key": "Serper API ključ",
 	"Serply API Key": "Serply API ključ",
 	"Serply API Key": "Serply API ključ",
 	"Serpstack API Key": "Serpstack API API ključ",
 	"Serpstack API Key": "Serpstack API API ključ",
@@ -929,7 +934,6 @@
 	"System": "Sustav",
 	"System": "Sustav",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Sistemski prompt",
 	"System Prompt": "Sistemski prompt",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Naslov (npr. Reci mi zanimljivost)",
 	"Title (e.g. Tell me a fun fact)": "Naslov (npr. Reci mi zanimljivost)",
 	"Title Auto-Generation": "Automatsko generiranje naslova",
 	"Title Auto-Generation": "Automatsko generiranje naslova",
 	"Title cannot be an empty string.": "Naslov ne može biti prazni niz.",
 	"Title cannot be an empty string.": "Naslov ne može biti prazni niz.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt za generiranje naslova",
 	"Title Generation Prompt": "Prompt za generiranje naslova",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Za pristup dostupnim nazivima modela za preuzimanje,",
 	"To access the available model names for downloading,": "Za pristup dostupnim nazivima modela za preuzimanje,",

+ 7 - 2
src/lib/i18n/locales/hu-HU/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search API kulcs",
 	"Brave Search API Key": "Brave Search API kulcs",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "SSL ellenőrzés kihagyása weboldalakhoz",
 	"Bypass SSL verification for Websites": "SSL ellenőrzés kihagyása weboldalakhoz",
+	"Calendar": "",
 	"Call": "Hívás",
 	"Call": "Hívás",
 	"Call feature is not supported when using Web STT engine": "A hívás funkció nem támogatott Web STT motor használatakor",
 	"Call feature is not supported when using Web STT engine": "A hívás funkció nem támogatott Web STT motor használatakor",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Beágyazási modell beállítva: \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Beágyazási modell beállítva: \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Közösségi megosztás engedélyezése",
 	"Enable Community Sharing": "Közösségi megosztás engedélyezése",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "Add meg a SearchApi motort",
 	"Enter SearchApi Engine": "Add meg a SearchApi motort",
 	"Enter Searxng Query URL": "Add meg a Searxng lekérdezési URL-t",
 	"Enter Searxng Query URL": "Add meg a Searxng lekérdezési URL-t",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Add meg a Serper API kulcsot",
 	"Enter Serper API Key": "Add meg a Serper API kulcsot",
 	"Enter Serply API Key": "Add meg a Serply API kulcsot",
 	"Enter Serply API Key": "Add meg a Serply API kulcsot",
 	"Enter Serpstack API Key": "Add meg a Serpstack API kulcsot",
 	"Enter Serpstack API Key": "Add meg a Serpstack API kulcsot",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Elrejtés",
 	"Hide": "Elrejtés",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Hogyan segíthetek ma?",
 	"How can I help you today?": "Hogyan segíthetek ma?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Üzenet küldése",
 	"Send message": "Üzenet küldése",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "A kérésben elküldi a `stream_options: { include_usage: true }` opciót.\nA támogatott szolgáltatók token használati információt küldenek vissza a válaszban, ha be van állítva.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "A kérésben elküldi a `stream_options: { include_usage: true }` opciót.\nA támogatott szolgáltatók token használati információt küldenek vissza a válaszban, ha be van állítva.",
 	"September": "Szeptember",
 	"September": "Szeptember",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API kulcs",
 	"Serper API Key": "Serper API kulcs",
 	"Serply API Key": "Serply API kulcs",
 	"Serply API Key": "Serply API kulcs",
 	"Serpstack API Key": "Serpstack API kulcs",
 	"Serpstack API Key": "Serpstack API kulcs",
@@ -929,7 +934,6 @@
 	"System": "Rendszer",
 	"System": "Rendszer",
 	"System Instructions": "Rendszer utasítások",
 	"System Instructions": "Rendszer utasítások",
 	"System Prompt": "Rendszer prompt",
 	"System Prompt": "Rendszer prompt",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "Címke generálási prompt",
 	"Tags Generation Prompt": "Címke generálási prompt",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Cím (pl. Mondj egy érdekes tényt)",
 	"Title (e.g. Tell me a fun fact)": "Cím (pl. Mondj egy érdekes tényt)",
 	"Title Auto-Generation": "Cím automatikus generálása",
 	"Title Auto-Generation": "Cím automatikus generálása",
 	"Title cannot be an empty string.": "A cím nem lehet üres karakterlánc.",
 	"Title cannot be an empty string.": "A cím nem lehet üres karakterlánc.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Cím generálási prompt",
 	"Title Generation Prompt": "Cím generálási prompt",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "A letölthető modellek nevének eléréséhez,",
 	"To access the available model names for downloading,": "A letölthető modellek nevének eléréséhez,",

+ 7 - 2
src/lib/i18n/locales/id-ID/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Kunci API Pencarian Berani",
 	"Brave Search API Key": "Kunci API Pencarian Berani",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Lewati verifikasi SSL untuk Situs Web",
 	"Bypass SSL verification for Websites": "Lewati verifikasi SSL untuk Situs Web",
+	"Calendar": "",
 	"Call": "Panggilan",
 	"Call": "Panggilan",
 	"Call feature is not supported when using Web STT engine": "Fitur panggilan tidak didukung saat menggunakan mesin Web STT",
 	"Call feature is not supported when using Web STT engine": "Fitur panggilan tidak didukung saat menggunakan mesin Web STT",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Model penyematan diatur ke \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Model penyematan diatur ke \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Aktifkan Berbagi Komunitas",
 	"Enable Community Sharing": "Aktifkan Berbagi Komunitas",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Masukkan URL Kueri Searxng",
 	"Enter Searxng Query URL": "Masukkan URL Kueri Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Masukkan Kunci API Serper",
 	"Enter Serper API Key": "Masukkan Kunci API Serper",
 	"Enter Serply API Key": "Masukkan Kunci API Serply",
 	"Enter Serply API Key": "Masukkan Kunci API Serply",
 	"Enter Serpstack API Key": "Masukkan Kunci API Serpstack",
 	"Enter Serpstack API Key": "Masukkan Kunci API Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Sembunyikan",
 	"Hide": "Sembunyikan",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Ada yang bisa saya bantu hari ini?",
 	"How can I help you today?": "Ada yang bisa saya bantu hari ini?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Kirim pesan",
 	"Send message": "Kirim pesan",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "September",
 	"September": "September",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Kunci API Serper",
 	"Serper API Key": "Kunci API Serper",
 	"Serply API Key": "Kunci API Serply",
 	"Serply API Key": "Kunci API Serply",
 	"Serpstack API Key": "Kunci API Serpstack",
 	"Serpstack API Key": "Kunci API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "Sistem",
 	"System": "Sistem",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Permintaan Sistem",
 	"System Prompt": "Permintaan Sistem",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Judul (misalnya, Ceritakan sebuah fakta menarik)",
 	"Title (e.g. Tell me a fun fact)": "Judul (misalnya, Ceritakan sebuah fakta menarik)",
 	"Title Auto-Generation": "Pembuatan Judul Secara Otomatis",
 	"Title Auto-Generation": "Pembuatan Judul Secara Otomatis",
 	"Title cannot be an empty string.": "Judul tidak boleh berupa string kosong.",
 	"Title cannot be an empty string.": "Judul tidak boleh berupa string kosong.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Perintah Pembuatan Judul",
 	"Title Generation Prompt": "Perintah Pembuatan Judul",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Untuk mengakses nama model yang tersedia untuk diunduh,",
 	"To access the available model names for downloading,": "Untuk mengakses nama model yang tersedia untuk diunduh,",

+ 7 - 0
src/lib/i18n/locales/ie-GA/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Eochair API Cuardaigh Brave",
 	"Brave Search API Key": "Eochair API Cuardaigh Brave",
 	"By {{name}}": "Le {{name}}",
 	"By {{name}}": "Le {{name}}",
 	"Bypass SSL verification for Websites": "Seachbhachtar fíorú SSL do Láithreáin",
 	"Bypass SSL verification for Websites": "Seachbhachtar fíorú SSL do Láithreáin",
+	"Calendar": "",
 	"Call": "Glaoigh",
 	"Call": "Glaoigh",
 	"Call feature is not supported when using Web STT engine": "Ní thacaítear le gné glaonna agus inneall Web STT á úsáid",
 	"Call feature is not supported when using Web STT engine": "Ní thacaítear le gné glaonna agus inneall Web STT á úsáid",
 	"Camera": "Ceamara",
 	"Camera": "Ceamara",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "Cuir isteach Inneall SearchAPI",
 	"Enter SearchApi Engine": "Cuir isteach Inneall SearchAPI",
 	"Enter Searxng Query URL": "Cuir isteach URL Ceist Searxng",
 	"Enter Searxng Query URL": "Cuir isteach URL Ceist Searxng",
 	"Enter Seed": "Cuir isteach Síl",
 	"Enter Seed": "Cuir isteach Síl",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Cuir isteach Eochair API Serper",
 	"Enter Serper API Key": "Cuir isteach Eochair API Serper",
 	"Enter Serply API Key": "Cuir isteach Eochair API Serply",
 	"Enter Serply API Key": "Cuir isteach Eochair API Serply",
 	"Enter Serpstack API Key": "Cuir isteach Eochair API Serpstack",
 	"Enter Serpstack API Key": "Cuir isteach Eochair API Serpstack",
@@ -513,6 +516,7 @@
 	"Hex Color": "Dath Heics",
 	"Hex Color": "Dath Heics",
 	"Hex Color - Leave empty for default color": "Dath Heics - Fág folamh don dath réamhshocraithe",
 	"Hex Color - Leave empty for default color": "Dath Heics - Fág folamh don dath réamhshocraithe",
 	"Hide": "Folaigh",
 	"Hide": "Folaigh",
+	"Home": "",
 	"Host": "Óstach",
 	"Host": "Óstach",
 	"How can I help you today?": "Conas is féidir liom cabhrú leat inniu?",
 	"How can I help you today?": "Conas is féidir liom cabhrú leat inniu?",
 	"How would you rate this response?": "Cad é mar a mheasfá an freagra seo?",
 	"How would you rate this response?": "Cad é mar a mheasfá an freagra seo?",
@@ -866,6 +870,8 @@
 	"Send message": "Seol teachtaireacht",
 	"Send message": "Seol teachtaireacht",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Seolann `stream_options: { include_usage: true }` san iarratas.\nTabharfaidh soláthraithe a fhaigheann tacaíocht faisnéis úsáide chomharthaí ar ais sa fhreagra nuair a bheidh sé socraithe.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Seolann `stream_options: { include_usage: true }` san iarratas.\nTabharfaidh soláthraithe a fhaigheann tacaíocht faisnéis úsáide chomharthaí ar ais sa fhreagra nuair a bheidh sé socraithe.",
 	"September": "Meán Fómhair",
 	"September": "Meán Fómhair",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API Eochair",
 	"Serper API Key": "Serper API Eochair",
 	"Serply API Key": "Eochair API Serply",
 	"Serply API Key": "Eochair API Serply",
 	"Serpstack API Key": "Eochair API Serpstack",
 	"Serpstack API Key": "Eochair API Serpstack",
@@ -978,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Teideal (m.sh. inis dom fíric spraíúil)",
 	"Title (e.g. Tell me a fun fact)": "Teideal (m.sh. inis dom fíric spraíúil)",
 	"Title Auto-Generation": "Teideal Auto-Generation",
 	"Title Auto-Generation": "Teideal Auto-Generation",
 	"Title cannot be an empty string.": "Ní féidir leis an teideal a bheith ina teaghrán folamh.",
 	"Title cannot be an empty string.": "Ní féidir leis an teideal a bheith ina teaghrán folamh.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Leid Giniúint Teideal",
 	"Title Generation Prompt": "Leid Giniúint Teideal",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Chun teacht ar na hainmneacha múnla atá ar fáil le híoslódáil,",
 	"To access the available model names for downloading,": "Chun teacht ar na hainmneacha múnla atá ar fáil le híoslódáil,",

+ 7 - 2
src/lib/i18n/locales/it-IT/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Chiave API di ricerca Brave",
 	"Brave Search API Key": "Chiave API di ricerca Brave",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Aggira la verifica SSL per i siti web",
 	"Bypass SSL verification for Websites": "Aggira la verifica SSL per i siti web",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Modello di embedding impostato su \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Modello di embedding impostato su \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Abilita la condivisione della community",
 	"Enable Community Sharing": "Abilita la condivisione della community",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Immettere l'URL della query Searxng",
 	"Enter Searxng Query URL": "Immettere l'URL della query Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Inserisci la chiave API Serper",
 	"Enter Serper API Key": "Inserisci la chiave API Serper",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Inserisci la chiave API Serpstack",
 	"Enter Serpstack API Key": "Inserisci la chiave API Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Nascondi",
 	"Hide": "Nascondi",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Come posso aiutarti oggi?",
 	"How can I help you today?": "Come posso aiutarti oggi?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Invia messaggio",
 	"Send message": "Invia messaggio",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "Settembre",
 	"September": "Settembre",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Chiave API Serper",
 	"Serper API Key": "Chiave API Serper",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "Chiave API Serpstack",
 	"Serpstack API Key": "Chiave API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "Sistema",
 	"System": "Sistema",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Prompt di sistema",
 	"System Prompt": "Prompt di sistema",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Titolo (ad esempio Dimmi un fatto divertente)",
 	"Title (e.g. Tell me a fun fact)": "Titolo (ad esempio Dimmi un fatto divertente)",
 	"Title Auto-Generation": "Generazione automatica del titolo",
 	"Title Auto-Generation": "Generazione automatica del titolo",
 	"Title cannot be an empty string.": "Il titolo non può essere una stringa vuota.",
 	"Title cannot be an empty string.": "Il titolo non può essere una stringa vuota.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt di generazione del titolo",
 	"Title Generation Prompt": "Prompt di generazione del titolo",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Per accedere ai nomi dei modelli disponibili per il download,",
 	"To access the available model names for downloading,": "Per accedere ai nomi dei modelli disponibili per il download,",

+ 7 - 2
src/lib/i18n/locales/ja-JP/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search APIキー",
 	"Brave Search API Key": "Brave Search APIキー",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "SSL 検証をバイパスする",
 	"Bypass SSL verification for Websites": "SSL 検証をバイパスする",
+	"Calendar": "",
 	"Call": "コール",
 	"Call": "コール",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "カメラ",
 	"Camera": "カメラ",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "埋め込みモデルを\"{{embedding_model}}\"に設定しました",
 	"Embedding model set to \"{{embedding_model}}\"": "埋め込みモデルを\"{{embedding_model}}\"に設定しました",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "コミュニティ共有を有効にする",
 	"Enable Community Sharing": "コミュニティ共有を有効にする",
 	"Enable Google Drive": "Google Driveの有効化",
 	"Enable Google Drive": "Google Driveの有効化",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "SearchApi Engineを入力してください。",
 	"Enter SearchApi Engine": "SearchApi Engineを入力してください。",
 	"Enter Searxng Query URL": "SearxngクエリURLを入力",
 	"Enter Searxng Query URL": "SearxngクエリURLを入力",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Serper APIキーの入力",
 	"Enter Serper API Key": "Serper APIキーの入力",
 	"Enter Serply API Key": "Serply API Keyを入力してください。",
 	"Enter Serply API Key": "Serply API Keyを入力してください。",
 	"Enter Serpstack API Key": "Serpstack APIキーの入力",
 	"Enter Serpstack API Key": "Serpstack APIキーの入力",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "非表示",
 	"Hide": "非表示",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "今日はどのようにお手伝いしましょうか?",
 	"How can I help you today?": "今日はどのようにお手伝いしましょうか?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "メッセージを送信",
 	"Send message": "メッセージを送信",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "9月",
 	"September": "9月",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper APIキー",
 	"Serper API Key": "Serper APIキー",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "Serpstack APIキー",
 	"Serpstack API Key": "Serpstack APIキー",
@@ -929,7 +934,6 @@
 	"System": "システム",
 	"System": "システム",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "システムプロンプト",
 	"System Prompt": "システムプロンプト",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "タイトル (例: 楽しい事を教えて)",
 	"Title (e.g. Tell me a fun fact)": "タイトル (例: 楽しい事を教えて)",
 	"Title Auto-Generation": "タイトル自動生成",
 	"Title Auto-Generation": "タイトル自動生成",
 	"Title cannot be an empty string.": "タイトルは空文字列にできません。",
 	"Title cannot be an empty string.": "タイトルは空文字列にできません。",
+	"Title Generation": "",
 	"Title Generation Prompt": "タイトル生成プロンプト",
 	"Title Generation Prompt": "タイトル生成プロンプト",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "ダウンロード可能なモデル名にアクセスするには、",
 	"To access the available model names for downloading,": "ダウンロード可能なモデル名にアクセスするには、",

+ 7 - 2
src/lib/i18n/locales/ka-GE/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search API გასაღები",
 	"Brave Search API Key": "Brave Search API გასაღები",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "SSL-ის ვერიფიკაციის გააუქმება ვებსაიტებზე",
 	"Bypass SSL verification for Websites": "SSL-ის ვერიფიკაციის გააუქმება ვებსაიტებზე",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "ჩასმის ძირითადი პროგრამა ჩართულია \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "ჩასმის ძირითადი პროგრამა ჩართულია \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "საზოგადოების გაზიარების ჩართვა",
 	"Enable Community Sharing": "საზოგადოების გაზიარების ჩართვა",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "შეიყვანეთ Searxng Query URL",
 	"Enter Searxng Query URL": "შეიყვანეთ Searxng Query URL",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "შეიყვანეთ Serper API Key",
 	"Enter Serper API Key": "შეიყვანეთ Serper API Key",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "შეიყვანეთ Serpstack API Key",
 	"Enter Serpstack API Key": "შეიყვანეთ Serpstack API Key",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "დამალვა",
 	"Hide": "დამალვა",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "როგორ შემიძლია დაგეხმარო დღეს?",
 	"How can I help you today?": "როგორ შემიძლია დაგეხმარო დღეს?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "შეტყობინების გაგზავნა",
 	"Send message": "შეტყობინების გაგზავნა",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "სექტემბერი",
 	"September": "სექტემბერი",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API Key",
 	"Serper API Key": "Serper API Key",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "Serpstack API Key",
 	"Serpstack API Key": "Serpstack API Key",
@@ -929,7 +934,6 @@
 	"System": "სისტემა",
 	"System": "სისტემა",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "სისტემური მოთხოვნა",
 	"System Prompt": "სისტემური მოთხოვნა",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "სათაური (მაგ. გაიხსნე რაღაც ხარისხი)",
 	"Title (e.g. Tell me a fun fact)": "სათაური (მაგ. გაიხსნე რაღაც ხარისხი)",
 	"Title Auto-Generation": "სათაურის ავტო-გენერაცია",
 	"Title Auto-Generation": "სათაურის ავტო-გენერაცია",
 	"Title cannot be an empty string.": "სათაური ცარიელი ველი ვერ უნდა იყოს.",
 	"Title cannot be an empty string.": "სათაური ცარიელი ველი ვერ უნდა იყოს.",
+	"Title Generation": "",
 	"Title Generation Prompt": "სათაურის გენერაციის მოთხოვნა ",
 	"Title Generation Prompt": "სათაურის გენერაციის მოთხოვნა ",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "ჩამოტვირთვისთვის ხელმისაწვდომი მოდელების სახელებზე წვდომისთვის",
 	"To access the available model names for downloading,": "ჩამოტვირთვისთვის ხელმისაწვდომი მოდელების სახელებზე წვდომისთვის",

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

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search API 키",
 	"Brave Search API Key": "Brave Search API 키",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "웹 사이트에 대한 SSL 검증 무시: ",
 	"Bypass SSL verification for Websites": "웹 사이트에 대한 SSL 검증 무시: ",
+	"Calendar": "",
 	"Call": "음성 기능",
 	"Call": "음성 기능",
 	"Call feature is not supported when using Web STT engine": "웹 STT 엔진 사용 시, 음성 기능은 지원되지 않습니다.",
 	"Call feature is not supported when using Web STT engine": "웹 STT 엔진 사용 시, 음성 기능은 지원되지 않습니다.",
 	"Camera": "카메라",
 	"Camera": "카메라",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "임베딩 모델을 \"{{embedding_model}}\"로 설정함",
 	"Embedding model set to \"{{embedding_model}}\"": "임베딩 모델을 \"{{embedding_model}}\"로 설정함",
 	"Enable API Key": "API 키 활성화",
 	"Enable API Key": "API 키 활성화",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "커뮤니티 공유 활성화",
 	"Enable Community Sharing": "커뮤니티 공유 활성화",
 	"Enable Google Drive": "Google Drive 활성화",
 	"Enable Google Drive": "Google Drive 활성화",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "SearchApi 엔진 입력",
 	"Enter SearchApi Engine": "SearchApi 엔진 입력",
 	"Enter Searxng Query URL": "Searxng 쿼리 URL 입력",
 	"Enter Searxng Query URL": "Searxng 쿼리 URL 입력",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Serper API 키 입력",
 	"Enter Serper API Key": "Serper API 키 입력",
 	"Enter Serply API Key": "Serply API 키 입력",
 	"Enter Serply API Key": "Serply API 키 입력",
 	"Enter Serpstack API Key": "Serpstack API 키 입력",
 	"Enter Serpstack API Key": "Serpstack API 키 입력",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "숨기기",
 	"Hide": "숨기기",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "오늘 어떻게 도와드릴까요?",
 	"How can I help you today?": "오늘 어떻게 도와드릴까요?",
 	"How would you rate this response?": "이 응답을 어떻게 평가하시겠어요?",
 	"How would you rate this response?": "이 응답을 어떻게 평가하시겠어요?",
@@ -867,6 +870,8 @@
 	"Send message": "메시지 보내기",
 	"Send message": "메시지 보내기",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "'stream_options: { include_usage: true }' 요청 보내기 \n지원되는 제공자가 토큰 사용 정보를 응답할 예정입니다",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "'stream_options: { include_usage: true }' 요청 보내기 \n지원되는 제공자가 토큰 사용 정보를 응답할 예정입니다",
 	"September": "9월",
 	"September": "9월",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API 키",
 	"Serper API Key": "Serper API 키",
 	"Serply API Key": "Serply API 키",
 	"Serply API Key": "Serply API 키",
 	"Serpstack API Key": "Serpstack API 키",
 	"Serpstack API Key": "Serpstack API 키",
@@ -979,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "제목 (예: 재미있는 사실을 알려주세요)",
 	"Title (e.g. Tell me a fun fact)": "제목 (예: 재미있는 사실을 알려주세요)",
 	"Title Auto-Generation": "제목 자동 생성",
 	"Title Auto-Generation": "제목 자동 생성",
 	"Title cannot be an empty string.": "제목은 빈 문자열일 수 없습니다.",
 	"Title cannot be an empty string.": "제목은 빈 문자열일 수 없습니다.",
+	"Title Generation": "",
 	"Title Generation Prompt": "제목 생성 프롬프트",
 	"Title Generation Prompt": "제목 생성 프롬프트",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "다운로드 가능한 모델명을 확인하려면,",
 	"To access the available model names for downloading,": "다운로드 가능한 모델명을 확인하려면,",

+ 7 - 2
src/lib/i18n/locales/lt-LT/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search API raktas",
 	"Brave Search API Key": "Brave Search API raktas",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Išvengti SSL patikros puslapiams",
 	"Bypass SSL verification for Websites": "Išvengti SSL patikros puslapiams",
+	"Calendar": "",
 	"Call": "Skambinti",
 	"Call": "Skambinti",
 	"Call feature is not supported when using Web STT engine": "Skambučio funkcionalumas neleidžiamas naudojant Web STT variklį",
 	"Call feature is not supported when using Web STT engine": "Skambučio funkcionalumas neleidžiamas naudojant Web STT variklį",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding modelis nustatytas kaip\"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding modelis nustatytas kaip\"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Leisti dalinimąsi su bendruomene",
 	"Enable Community Sharing": "Leisti dalinimąsi su bendruomene",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Įveskite Searxng Query nuorodą",
 	"Enter Searxng Query URL": "Įveskite Searxng Query nuorodą",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Įveskite Serper API raktą",
 	"Enter Serper API Key": "Įveskite Serper API raktą",
 	"Enter Serply API Key": "Įveskite Serply API raktą",
 	"Enter Serply API Key": "Įveskite Serply API raktą",
 	"Enter Serpstack API Key": "Įveskite Serpstack API raktą",
 	"Enter Serpstack API Key": "Įveskite Serpstack API raktą",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Paslėpti",
 	"Hide": "Paslėpti",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Kuo galėčiau Jums padėti ?",
 	"How can I help you today?": "Kuo galėčiau Jums padėti ?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Siųsti žinutę",
 	"Send message": "Siųsti žinutę",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "rugsėjis",
 	"September": "rugsėjis",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API raktas",
 	"Serper API Key": "Serper API raktas",
 	"Serply API Key": "Serply API raktas",
 	"Serply API Key": "Serply API raktas",
 	"Serpstack API Key": "Serpstach API raktas",
 	"Serpstack API Key": "Serpstach API raktas",
@@ -929,7 +934,6 @@
 	"System": "Sistema",
 	"System": "Sistema",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Sistemos užklausa",
 	"System Prompt": "Sistemos užklausa",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Pavadinimas",
 	"Title (e.g. Tell me a fun fact)": "Pavadinimas",
 	"Title Auto-Generation": "Automatinis pavadinimų generavimas",
 	"Title Auto-Generation": "Automatinis pavadinimų generavimas",
 	"Title cannot be an empty string.": "Pavadinimas negali būti tuščias",
 	"Title cannot be an empty string.": "Pavadinimas negali būti tuščias",
+	"Title Generation": "",
 	"Title Generation Prompt": "Pavadinimo generavimo užklausa",
 	"Title Generation Prompt": "Pavadinimo generavimo užklausa",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Tam, kad prieiti prie galimų parsisiųsti modelių",
 	"To access the available model names for downloading,": "Tam, kad prieiti prie galimų parsisiųsti modelių",

+ 7 - 2
src/lib/i18n/locales/ms-MY/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Kunci API Carian Brave",
 	"Brave Search API Key": "Kunci API Carian Brave",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Pintas pengesahan SSL untuk Laman Web",
 	"Bypass SSL verification for Websites": "Pintas pengesahan SSL untuk Laman Web",
+	"Calendar": "",
 	"Call": "Hubungi",
 	"Call": "Hubungi",
 	"Call feature is not supported when using Web STT engine": "Ciri panggilan tidak disokong apabila menggunakan enjin Web STT",
 	"Call feature is not supported when using Web STT engine": "Ciri panggilan tidak disokong apabila menggunakan enjin Web STT",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Model Benamkan ditetapkan kepada \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Model Benamkan ditetapkan kepada \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Benarkan Perkongsian Komuniti",
 	"Enable Community Sharing": "Benarkan Perkongsian Komuniti",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Masukkan URL 'Searxng Query'",
 	"Enter Searxng Query URL": "Masukkan URL 'Searxng Query'",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Masukkan Kunci API Serper",
 	"Enter Serper API Key": "Masukkan Kunci API Serper",
 	"Enter Serply API Key": "Masukkan Kunci API Serply",
 	"Enter Serply API Key": "Masukkan Kunci API Serply",
 	"Enter Serpstack API Key": "Masukkan Kunci API Serpstack",
 	"Enter Serpstack API Key": "Masukkan Kunci API Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Sembunyi",
 	"Hide": "Sembunyi",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Bagaimana saya boleh membantu anda hari ini?",
 	"How can I help you today?": "Bagaimana saya boleh membantu anda hari ini?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Hantar pesanan",
 	"Send message": "Hantar pesanan",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "September",
 	"September": "September",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Kunci API Serper",
 	"Serper API Key": "Kunci API Serper",
 	"Serply API Key": "Kunci API Serply",
 	"Serply API Key": "Kunci API Serply",
 	"Serpstack API Key": "Kunci API Serpstack",
 	"Serpstack API Key": "Kunci API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "Sistem",
 	"System": "Sistem",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Gesaan Sistem",
 	"System Prompt": "Gesaan Sistem",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Tajuk (cth Beritahu saya fakta yang menyeronokkan)",
 	"Title (e.g. Tell me a fun fact)": "Tajuk (cth Beritahu saya fakta yang menyeronokkan)",
 	"Title Auto-Generation": "Penjanaan Auto Tajuk",
 	"Title Auto-Generation": "Penjanaan Auto Tajuk",
 	"Title cannot be an empty string.": "Tajuk tidak boleh menjadi rentetan kosong",
 	"Title cannot be an empty string.": "Tajuk tidak boleh menjadi rentetan kosong",
+	"Title Generation": "",
 	"Title Generation Prompt": "Gesaan Penjanaan Tajuk",
 	"Title Generation Prompt": "Gesaan Penjanaan Tajuk",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Untuk mengakses nama model yang tersedia untuk dimuat turun,",
 	"To access the available model names for downloading,": "Untuk mengakses nama model yang tersedia untuk dimuat turun,",

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

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "API-nøkkel for Brave Search",
 	"Brave Search API Key": "API-nøkkel for Brave Search",
 	"By {{name}}": "Etter {{name}}",
 	"By {{name}}": "Etter {{name}}",
 	"Bypass SSL verification for Websites": "Omgå SSL-verifisering for nettsteder",
 	"Bypass SSL verification for Websites": "Omgå SSL-verifisering for nettsteder",
+	"Calendar": "",
 	"Call": "Ring",
 	"Call": "Ring",
 	"Call feature is not supported when using Web STT engine": "Ringefunksjonen støttes ikke når du bruker Web STT-motoren",
 	"Call feature is not supported when using Web STT engine": "Ringefunksjonen støttes ikke når du bruker Web STT-motoren",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "Angi motor for SearchApi",
 	"Enter SearchApi Engine": "Angi motor for SearchApi",
 	"Enter Searxng Query URL": "Angi spørrings-URL for Searxng",
 	"Enter Searxng Query URL": "Angi spørrings-URL for Searxng",
 	"Enter Seed": "Angi Seed",
 	"Enter Seed": "Angi Seed",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Angi API-nøkkel for Serper",
 	"Enter Serper API Key": "Angi API-nøkkel for Serper",
 	"Enter Serply API Key": "Angi API-nøkkel for Serply",
 	"Enter Serply API Key": "Angi API-nøkkel for Serply",
 	"Enter Serpstack API Key": "Angi API-nøkkel for Serpstack",
 	"Enter Serpstack API Key": "Angi API-nøkkel for Serpstack",
@@ -513,6 +516,7 @@
 	"Hex Color": "Hex-farge",
 	"Hex Color": "Hex-farge",
 	"Hex Color - Leave empty for default color": "Hex-farge – la stå tom for standard farge",
 	"Hex Color - Leave empty for default color": "Hex-farge – la stå tom for standard farge",
 	"Hide": "Skjul",
 	"Hide": "Skjul",
+	"Home": "",
 	"Host": "Host",
 	"Host": "Host",
 	"How can I help you today?": "Hva kan jeg hjelpe deg med i dag?",
 	"How can I help you today?": "Hva kan jeg hjelpe deg med i dag?",
 	"How would you rate this response?": "Hvordan vurderer du dette svaret?",
 	"How would you rate this response?": "Hvordan vurderer du dette svaret?",
@@ -866,6 +870,8 @@
 	"Send message": "Send melding",
 	"Send message": "Send melding",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Sender `stream_options: { include_usage: true }` i forespørselen.\nStøttede leverandører returnerer informasjon i svaret om bruk av token når denne parameteren er angitt.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Sender `stream_options: { include_usage: true }` i forespørselen.\nStøttede leverandører returnerer informasjon i svaret om bruk av token når denne parameteren er angitt.",
 	"September": "september",
 	"September": "september",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "API-nøkkel for Serper",
 	"Serper API Key": "API-nøkkel for Serper",
 	"Serply API Key": "API-nøkkel for Serply",
 	"Serply API Key": "API-nøkkel for Serply",
 	"Serpstack API Key": "API-nøkkel for Serpstack",
 	"Serpstack API Key": "API-nøkkel for Serpstack",
@@ -928,7 +934,6 @@
 	"System": "System",
 	"System": "System",
 	"System Instructions": "Systeminstruksjoner",
 	"System Instructions": "Systeminstruksjoner",
 	"System Prompt": "Systemledetekst",
 	"System Prompt": "Systemledetekst",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "Ledetekst for genering av etikett",
 	"Tags Generation Prompt": "Ledetekst for genering av etikett",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Tail free sampling brukes til å redusere innvirkningen av mindre sannsynlige tokens fra utdataene. En høyere verdi (f.eks. 2,0) vil redusere effekten mer, mens en verdi på 1,0 deaktiverer denne innstillingen. (standard: 1)",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Tail free sampling brukes til å redusere innvirkningen av mindre sannsynlige tokens fra utdataene. En høyere verdi (f.eks. 2,0) vil redusere effekten mer, mens en verdi på 1,0 deaktiverer denne innstillingen. (standard: 1)",
@@ -979,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Tittel (f.eks. Fortell meg noe morsomt)",
 	"Title (e.g. Tell me a fun fact)": "Tittel (f.eks. Fortell meg noe morsomt)",
 	"Title Auto-Generation": "Automatisk tittelgenerering",
 	"Title Auto-Generation": "Automatisk tittelgenerering",
 	"Title cannot be an empty string.": "Tittel kan ikke være en tom streng.",
 	"Title cannot be an empty string.": "Tittel kan ikke være en tom streng.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Ledetekst for tittelgenerering",
 	"Title Generation Prompt": "Ledetekst for tittelgenerering",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Hvis du vil ha tilgang til modellnavn tilgjengelige for nedlasting,",
 	"To access the available model names for downloading,": "Hvis du vil ha tilgang til modellnavn tilgjengelige for nedlasting,",

+ 7 - 2
src/lib/i18n/locales/nl-NL/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search API-sleutel",
 	"Brave Search API Key": "Brave Search API-sleutel",
 	"By {{name}}": "Op {{name}}",
 	"By {{name}}": "Op {{name}}",
 	"Bypass SSL verification for Websites": "SSL-verificatie omzeilen voor websites",
 	"Bypass SSL verification for Websites": "SSL-verificatie omzeilen voor websites",
+	"Calendar": "",
 	"Call": "Oproep",
 	"Call": "Oproep",
 	"Call feature is not supported when using Web STT engine": "Belfunctie wordt niet ondersteund bij gebruik van de Web STT engine",
 	"Call feature is not supported when using Web STT engine": "Belfunctie wordt niet ondersteund bij gebruik van de Web STT engine",
 	"Camera": "Camera",
 	"Camera": "Camera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Delen via de community inschakelen",
 	"Enable Community Sharing": "Delen via de community inschakelen",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "Voer SearchApi-Engine in",
 	"Enter SearchApi Engine": "Voer SearchApi-Engine in",
 	"Enter Searxng Query URL": "Voer de URL van de Searxng-query in",
 	"Enter Searxng Query URL": "Voer de URL van de Searxng-query in",
 	"Enter Seed": "Voer Seed in",
 	"Enter Seed": "Voer Seed in",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Voer de Serper API-sleutel in",
 	"Enter Serper API Key": "Voer de Serper API-sleutel in",
 	"Enter Serply API Key": "Voer Serply API-sleutel in",
 	"Enter Serply API Key": "Voer Serply API-sleutel in",
 	"Enter Serpstack API Key": "Voer de Serpstack API-sleutel in",
 	"Enter Serpstack API Key": "Voer de Serpstack API-sleutel in",
@@ -514,6 +516,7 @@
 	"Hex Color": "Hex-kleur",
 	"Hex Color": "Hex-kleur",
 	"Hex Color - Leave empty for default color": "Hex-kleur - laat leeg voor standaardkleur",
 	"Hex Color - Leave empty for default color": "Hex-kleur - laat leeg voor standaardkleur",
 	"Hide": "Verberg",
 	"Hide": "Verberg",
+	"Home": "",
 	"Host": "Host",
 	"Host": "Host",
 	"How can I help you today?": "Hoe kan ik je vandaag helpen?",
 	"How can I help you today?": "Hoe kan ik je vandaag helpen?",
 	"How would you rate this response?": "Hoe zou je dit antwoord beoordelen?",
 	"How would you rate this response?": "Hoe zou je dit antwoord beoordelen?",
@@ -867,6 +870,8 @@
 	"Send message": "Stuur bericht",
 	"Send message": "Stuur bericht",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Stuurt `stream_options: { include_usage: true }` in het verzoek. \nOndersteunde providers zullen informatie over tokengebruik in het antwoord terugsturen als dit aan staat.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Stuurt `stream_options: { include_usage: true }` in het verzoek. \nOndersteunde providers zullen informatie over tokengebruik in het antwoord terugsturen als dit aan staat.",
 	"September": "September",
 	"September": "September",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API-sleutel",
 	"Serper API Key": "Serper API-sleutel",
 	"Serply API Key": "Serply API-sleutel",
 	"Serply API Key": "Serply API-sleutel",
 	"Serpstack API Key": "Serpstack API-sleutel",
 	"Serpstack API Key": "Serpstack API-sleutel",
@@ -929,7 +934,6 @@
 	"System": "Systeem",
 	"System": "Systeem",
 	"System Instructions": "Systeem instructies",
 	"System Instructions": "Systeem instructies",
 	"System Prompt": "Systeem prompt",
 	"System Prompt": "Systeem prompt",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "Prompt voor taggeneratie",
 	"Tags Generation Prompt": "Prompt voor taggeneratie",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Tail free sampling wordt gebruikt om de impact van minder waarschijnlijke tokens uit de uitvoer te verminderen. Een hogere waarde (bv. 2,0) zal de impact meer verminderen, terwijl een waarde van 1,0 deze instelling uitschakelt. (standaard: 1)",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "Tail free sampling wordt gebruikt om de impact van minder waarschijnlijke tokens uit de uitvoer te verminderen. Een hogere waarde (bv. 2,0) zal de impact meer verminderen, terwijl een waarde van 1,0 deze instelling uitschakelt. (standaard: 1)",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Titel (bv. Vertel me een leuke gebeurtenis)",
 	"Title (e.g. Tell me a fun fact)": "Titel (bv. Vertel me een leuke gebeurtenis)",
 	"Title Auto-Generation": "Titel Auto-Generatie",
 	"Title Auto-Generation": "Titel Auto-Generatie",
 	"Title cannot be an empty string.": "Titel kan niet leeg zijn.",
 	"Title cannot be an empty string.": "Titel kan niet leeg zijn.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Titel Generatie Prompt",
 	"Title Generation Prompt": "Titel Generatie Prompt",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Om de beschikbare modelnamen voor downloaden te openen,",
 	"To access the available model names for downloading,": "Om de beschikbare modelnamen voor downloaden te openen,",

+ 7 - 2
src/lib/i18n/locales/pa-IN/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
 	"Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "ਵੈਬਸਾਈਟਾਂ ਲਈ SSL ਪ੍ਰਮਾਣਿਕਤਾ ਨੂੰ ਬਾਈਪਾਸ ਕਰੋ",
 	"Bypass SSL verification for Websites": "ਵੈਬਸਾਈਟਾਂ ਲਈ SSL ਪ੍ਰਮਾਣਿਕਤਾ ਨੂੰ ਬਾਈਪਾਸ ਕਰੋ",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਨੂੰ \"{{embedding_model}}\" 'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ",
 	"Embedding model set to \"{{embedding_model}}\"": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਨੂੰ \"{{embedding_model}}\" 'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "ਕਮਿਊਨਿਟੀ ਸ਼ੇਅਰਿੰਗ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enable Community Sharing": "ਕਮਿਊਨਿਟੀ ਸ਼ੇਅਰਿੰਗ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Searxng Query URL ਦਾਖਲ ਕਰੋ",
 	"Enter Searxng Query URL": "Searxng Query URL ਦਾਖਲ ਕਰੋ",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Serper API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
 	"Enter Serper API Key": "Serper API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Serpstack API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
 	"Enter Serpstack API Key": "Serpstack API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "ਲੁਕਾਓ",
 	"Hide": "ਲੁਕਾਓ",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "ਮੈਂ ਅੱਜ ਤੁਹਾਡੀ ਕਿਵੇਂ ਮਦਦ ਕਰ ਸਕਦਾ ਹਾਂ?",
 	"How can I help you today?": "ਮੈਂ ਅੱਜ ਤੁਹਾਡੀ ਕਿਵੇਂ ਮਦਦ ਕਰ ਸਕਦਾ ਹਾਂ?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "ਸੁਨੇਹਾ ਭੇਜੋ",
 	"Send message": "ਸੁਨੇਹਾ ਭੇਜੋ",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "ਸਤੰਬਰ",
 	"September": "ਸਤੰਬਰ",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API ਕੁੰਜੀ",
 	"Serper API Key": "Serper API ਕੁੰਜੀ",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "Serpstack API ਕੁੰਜੀ",
 	"Serpstack API Key": "Serpstack API ਕੁੰਜੀ",
@@ -929,7 +934,6 @@
 	"System": "ਸਿਸਟਮ",
 	"System": "ਸਿਸਟਮ",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "ਸਿਸਟਮ ਪ੍ਰੰਪਟ",
 	"System Prompt": "ਸਿਸਟਮ ਪ੍ਰੰਪਟ",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "ਸਿਰਲੇਖ (ਉਦਾਹਰਣ ਲਈ ਮੈਨੂੰ ਇੱਕ ਮਜ਼ੇਦਾਰ ਤੱਥ ਦੱਸੋ)",
 	"Title (e.g. Tell me a fun fact)": "ਸਿਰਲੇਖ (ਉਦਾਹਰਣ ਲਈ ਮੈਨੂੰ ਇੱਕ ਮਜ਼ੇਦਾਰ ਤੱਥ ਦੱਸੋ)",
 	"Title Auto-Generation": "ਸਿਰਲੇਖ ਆਟੋ-ਜਨਰੇਸ਼ਨ",
 	"Title Auto-Generation": "ਸਿਰਲੇਖ ਆਟੋ-ਜਨਰੇਸ਼ਨ",
 	"Title cannot be an empty string.": "ਸਿਰਲੇਖ ਖਾਲੀ ਸਤਰ ਨਹੀਂ ਹੋ ਸਕਦਾ।",
 	"Title cannot be an empty string.": "ਸਿਰਲੇਖ ਖਾਲੀ ਸਤਰ ਨਹੀਂ ਹੋ ਸਕਦਾ।",
+	"Title Generation": "",
 	"Title Generation Prompt": "ਸਿਰਲੇਖ ਜਨਰੇਸ਼ਨ ਪ੍ਰੰਪਟ",
 	"Title Generation Prompt": "ਸਿਰਲੇਖ ਜਨਰੇਸ਼ਨ ਪ੍ਰੰਪਟ",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਉਪਲਬਧ ਮਾਡਲ ਨਾਮਾਂ ਤੱਕ ਪਹੁੰਚਣ ਲਈ,",
 	"To access the available model names for downloading,": "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਉਪਲਬਧ ਮਾਡਲ ਨਾਮਾਂ ਤੱਕ ਪਹੁੰਚਣ ਲਈ,",

+ 7 - 2
src/lib/i18n/locales/pl-PL/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Klucz API wyszukiwania Brave",
 	"Brave Search API Key": "Klucz API wyszukiwania Brave",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Pomiń weryfikację SSL dla stron webowych",
 	"Bypass SSL verification for Websites": "Pomiń weryfikację SSL dla stron webowych",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Model osadzania ustawiono na \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Model osadzania ustawiono na \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Włączanie udostępniania społecznościowego",
 	"Enable Community Sharing": "Włączanie udostępniania społecznościowego",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Wprowadź adres URL zapytania Searxng",
 	"Enter Searxng Query URL": "Wprowadź adres URL zapytania Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Wprowadź klucz API Serper",
 	"Enter Serper API Key": "Wprowadź klucz API Serper",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Wprowadź klucz API Serpstack",
 	"Enter Serpstack API Key": "Wprowadź klucz API Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Ukryj",
 	"Hide": "Ukryj",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Jak mogę Ci dzisiaj pomóc?",
 	"How can I help you today?": "Jak mogę Ci dzisiaj pomóc?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Wyślij wiadomość",
 	"Send message": "Wyślij wiadomość",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "Wrzesień",
 	"September": "Wrzesień",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Klucz API Serper",
 	"Serper API Key": "Klucz API Serper",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "Klucz API Serpstack",
 	"Serpstack API Key": "Klucz API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "System",
 	"System": "System",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Prompt systemowy",
 	"System Prompt": "Prompt systemowy",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Tytuł (np. Powiedz mi jakiś zabawny fakt)",
 	"Title (e.g. Tell me a fun fact)": "Tytuł (np. Powiedz mi jakiś zabawny fakt)",
 	"Title Auto-Generation": "Automatyczne generowanie tytułu",
 	"Title Auto-Generation": "Automatyczne generowanie tytułu",
 	"Title cannot be an empty string.": "Tytuł nie może być pusty",
 	"Title cannot be an empty string.": "Tytuł nie może być pusty",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt generowania tytułu",
 	"Title Generation Prompt": "Prompt generowania tytułu",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Aby uzyskać dostęp do dostępnych nazw modeli do pobrania,",
 	"To access the available model names for downloading,": "Aby uzyskać dostęp do dostępnych nazw modeli do pobrania,",

+ 7 - 2
src/lib/i18n/locales/pt-BR/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Chave API do Brave Search",
 	"Brave Search API Key": "Chave API do Brave Search",
 	"By {{name}}": "Por {{name}}",
 	"By {{name}}": "Por {{name}}",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para Sites",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para Sites",
+	"Calendar": "",
 	"Call": "Chamada",
 	"Call": "Chamada",
 	"Call feature is not supported when using Web STT engine": "O recurso de chamada não é suportado ao usar o mecanismo Web STT",
 	"Call feature is not supported when using Web STT engine": "O recurso de chamada não é suportado ao usar o mecanismo Web STT",
 	"Camera": "Câmera",
 	"Camera": "Câmera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
 	"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "Digite o Motor do SearchApi",
 	"Enter SearchApi Engine": "Digite o Motor do SearchApi",
 	"Enter Searxng Query URL": "Digite a URL de Consulta do Searxng",
 	"Enter Searxng Query URL": "Digite a URL de Consulta do Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Digite a Chave API do Serper",
 	"Enter Serper API Key": "Digite a Chave API do Serper",
 	"Enter Serply API Key": "Digite a Chave API do Serply",
 	"Enter Serply API Key": "Digite a Chave API do Serply",
 	"Enter Serpstack API Key": "Digite a Chave API do Serpstack",
 	"Enter Serpstack API Key": "Digite a Chave API do Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "Cor hexadecimal",
 	"Hex Color": "Cor hexadecimal",
 	"Hex Color - Leave empty for default color": "Cor Hexadecimal - Deixe em branco para a cor padrão",
 	"Hex Color - Leave empty for default color": "Cor Hexadecimal - Deixe em branco para a cor padrão",
 	"Hide": "Ocultar",
 	"Hide": "Ocultar",
+	"Home": "",
 	"Host": "Servidor",
 	"Host": "Servidor",
 	"How can I help you today?": "Como posso ajudar você hoje?",
 	"How can I help you today?": "Como posso ajudar você hoje?",
 	"How would you rate this response?": "Como você avalia essa resposta?",
 	"How would you rate this response?": "Como você avalia essa resposta?",
@@ -867,6 +870,8 @@
 	"Send message": "Enviar mensagem",
 	"Send message": "Enviar mensagem",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Envia `stream_options: { include_usage: true }` na solicitação. Provedores compatíveis retornarão informações sobre o uso de tokens na resposta quando configurado.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Envia `stream_options: { include_usage: true }` na solicitação. Provedores compatíveis retornarão informações sobre o uso de tokens na resposta quando configurado.",
 	"September": "Setembro",
 	"September": "Setembro",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Chave da API Serper",
 	"Serper API Key": "Chave da API Serper",
 	"Serply API Key": "Chave da API Serply",
 	"Serply API Key": "Chave da API Serply",
 	"Serpstack API Key": "Chave da API Serpstack",
 	"Serpstack API Key": "Chave da API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "Sistema",
 	"System": "Sistema",
 	"System Instructions": "Instruções do sistema",
 	"System Instructions": "Instruções do sistema",
 	"System Prompt": "Prompt do Sistema",
 	"System Prompt": "Prompt do Sistema",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "Prompt para geração de Tags",
 	"Tags Generation Prompt": "Prompt para geração de Tags",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "A amostragem *tail free* é usada para reduzir o impacto de tokens menos prováveis na saída. Um valor mais alto (por exemplo, 2,0) reduzirá mais o impacto, enquanto um valor de 1,0 desativa essa configuração. (Padrão: 1)",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "A amostragem *tail free* é usada para reduzir o impacto de tokens menos prováveis na saída. Um valor mais alto (por exemplo, 2,0) reduzirá mais o impacto, enquanto um valor de 1,0 desativa essa configuração. (Padrão: 1)",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Título (por exemplo, Conte-me um fato divertido)",
 	"Title (e.g. Tell me a fun fact)": "Título (por exemplo, Conte-me um fato divertido)",
 	"Title Auto-Generation": "Geração Automática de Título",
 	"Title Auto-Generation": "Geração Automática de Título",
 	"Title cannot be an empty string.": "O Título não pode ser uma string vazia.",
 	"Title cannot be an empty string.": "O Título não pode ser uma string vazia.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt de Geração de Título",
 	"Title Generation Prompt": "Prompt de Geração de Título",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Para acessar os nomes de modelos disponíveis para download,",
 	"To access the available model names for downloading,": "Para acessar os nomes de modelos disponíveis para download,",

+ 7 - 2
src/lib/i18n/locales/pt-PT/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Chave da API de Pesquisa Brave",
 	"Brave Search API Key": "Chave da API de Pesquisa Brave",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para sites",
 	"Bypass SSL verification for Websites": "Ignorar verificação SSL para sites",
+	"Calendar": "",
 	"Call": "Chamar",
 	"Call": "Chamar",
 	"Call feature is not supported when using Web STT engine": "A funcionalide de Chamar não é suportada quando usa um motor Web STT",
 	"Call feature is not supported when using Web STT engine": "A funcionalide de Chamar não é suportada quando usa um motor Web STT",
 	"Camera": "Camera",
 	"Camera": "Camera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding definido como \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding definido como \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Active a Partilha da Comunidade",
 	"Enable Community Sharing": "Active a Partilha da Comunidade",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Escreva o URL da Pesquisa Searxng",
 	"Enter Searxng Query URL": "Escreva o URL da Pesquisa Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Escreva a chave da API Serper",
 	"Enter Serper API Key": "Escreva a chave da API Serper",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Escreva a chave da API Serpstack",
 	"Enter Serpstack API Key": "Escreva a chave da API Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Ocultar",
 	"Hide": "Ocultar",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Como posso ajudá-lo hoje?",
 	"How can I help you today?": "Como posso ajudá-lo hoje?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Enviar mensagem",
 	"Send message": "Enviar mensagem",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "Setembro",
 	"September": "Setembro",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Chave API Serper",
 	"Serper API Key": "Chave API Serper",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "Chave da API Serpstack",
 	"Serpstack API Key": "Chave da API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "Sistema",
 	"System": "Sistema",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Prompt do Sistema",
 	"System Prompt": "Prompt do Sistema",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Título (ex.: Diz-me um facto divertido)",
 	"Title (e.g. Tell me a fun fact)": "Título (ex.: Diz-me um facto divertido)",
 	"Title Auto-Generation": "Geração Automática de Título",
 	"Title Auto-Generation": "Geração Automática de Título",
 	"Title cannot be an empty string.": "Título não pode ser uma string vazia.",
 	"Title cannot be an empty string.": "Título não pode ser uma string vazia.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt de Geração de Título",
 	"Title Generation Prompt": "Prompt de Geração de Título",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Para aceder aos nomes de modelo disponíveis para descarregar,",
 	"To access the available model names for downloading,": "Para aceder aos nomes de modelo disponíveis para descarregar,",

+ 7 - 2
src/lib/i18n/locales/ro-RO/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Cheie API Brave Search",
 	"Brave Search API Key": "Cheie API Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Ocolește verificarea SSL pentru site-uri web",
 	"Bypass SSL verification for Websites": "Ocolește verificarea SSL pentru site-uri web",
+	"Calendar": "",
 	"Call": "Apel",
 	"Call": "Apel",
 	"Call feature is not supported when using Web STT engine": "Funcția de apel nu este suportată când se utilizează motorul Web STT",
 	"Call feature is not supported when using Web STT engine": "Funcția de apel nu este suportată când se utilizează motorul Web STT",
 	"Camera": "Cameră",
 	"Camera": "Cameră",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Modelul de încapsulare setat la \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelul de încapsulare setat la \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Activează Partajarea Comunitară",
 	"Enable Community Sharing": "Activează Partajarea Comunitară",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "Introduceți motorul SearchApi",
 	"Enter SearchApi Engine": "Introduceți motorul SearchApi",
 	"Enter Searxng Query URL": "Introduceți URL-ul Interogării Searxng",
 	"Enter Searxng Query URL": "Introduceți URL-ul Interogării Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Introduceți Cheia API Serper",
 	"Enter Serper API Key": "Introduceți Cheia API Serper",
 	"Enter Serply API Key": "Introduceți Cheia API Serply",
 	"Enter Serply API Key": "Introduceți Cheia API Serply",
 	"Enter Serpstack API Key": "Introduceți Cheia API Serpstack",
 	"Enter Serpstack API Key": "Introduceți Cheia API Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Ascunde",
 	"Hide": "Ascunde",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Cum te pot ajuta astăzi?",
 	"How can I help you today?": "Cum te pot ajuta astăzi?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Trimite mesajul",
 	"Send message": "Trimite mesajul",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Trimite `stream_options: { include_usage: true }` în cerere. Furnizorii care suportă această opțiune vor returna informații despre utilizarea token-urilor în răspuns când este setată.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Trimite `stream_options: { include_usage: true }` în cerere. Furnizorii care suportă această opțiune vor returna informații despre utilizarea token-urilor în răspuns când este setată.",
 	"September": "Septembrie",
 	"September": "Septembrie",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Cheie API Serper",
 	"Serper API Key": "Cheie API Serper",
 	"Serply API Key": "Cheie API Serply",
 	"Serply API Key": "Cheie API Serply",
 	"Serpstack API Key": "Cheie API Serpstack",
 	"Serpstack API Key": "Cheie API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "Sistem",
 	"System": "Sistem",
 	"System Instructions": "Instrucțiuni pentru sistem",
 	"System Instructions": "Instrucțiuni pentru sistem",
 	"System Prompt": "Prompt de Sistem",
 	"System Prompt": "Prompt de Sistem",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "Generarea de Etichete Prompt",
 	"Tags Generation Prompt": "Generarea de Etichete Prompt",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Titlu (de ex. Spune-mi un fapt amuzant)",
 	"Title (e.g. Tell me a fun fact)": "Titlu (de ex. Spune-mi un fapt amuzant)",
 	"Title Auto-Generation": "Generare Automată a Titlului",
 	"Title Auto-Generation": "Generare Automată a Titlului",
 	"Title cannot be an empty string.": "Titlul nu poate fi un șir gol.",
 	"Title cannot be an empty string.": "Titlul nu poate fi un șir gol.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt de Generare a Titlului",
 	"Title Generation Prompt": "Prompt de Generare a Titlului",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Pentru a accesa numele modelelor disponibile pentru descărcare,",
 	"To access the available model names for downloading,": "Pentru a accesa numele modelelor disponibile pentru descărcare,",

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

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Ключ API поиска Brave",
 	"Brave Search API Key": "Ключ API поиска Brave",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Обход проверки SSL для веб-сайтов",
 	"Bypass SSL verification for Websites": "Обход проверки SSL для веб-сайтов",
+	"Calendar": "",
 	"Call": "Вызов",
 	"Call": "Вызов",
 	"Call feature is not supported when using Web STT engine": "Функция вызова не поддерживается при использовании Web STT (распознавание речи) движка",
 	"Call feature is not supported when using Web STT engine": "Функция вызова не поддерживается при использовании Web STT (распознавание речи) движка",
 	"Camera": "Камера",
 	"Camera": "Камера",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "Введите SearchApi движок",
 	"Enter SearchApi Engine": "Введите SearchApi движок",
 	"Enter Searxng Query URL": "Введите URL-адрес запроса Searxng",
 	"Enter Searxng Query URL": "Введите URL-адрес запроса Searxng",
 	"Enter Seed": "Введите Seed",
 	"Enter Seed": "Введите Seed",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Введите ключ API Serper",
 	"Enter Serper API Key": "Введите ключ API Serper",
 	"Enter Serply API Key": "Введите ключ API Serply",
 	"Enter Serply API Key": "Введите ключ API Serply",
 	"Enter Serpstack API Key": "Введите ключ API Serpstack",
 	"Enter Serpstack API Key": "Введите ключ API Serpstack",
@@ -513,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Скрыть",
 	"Hide": "Скрыть",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Чем я могу помочь вам сегодня?",
 	"How can I help you today?": "Чем я могу помочь вам сегодня?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -866,6 +870,8 @@
 	"Send message": "Отправить сообщение",
 	"Send message": "Отправить сообщение",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Отправляет в запросе \"stream_options: { include_usage: true }\".\nПоддерживаемые провайдеры будут возвращать информацию об использовании токена в ответе, когда это будет установлено.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Отправляет в запросе \"stream_options: { include_usage: true }\".\nПоддерживаемые провайдеры будут возвращать информацию об использовании токена в ответе, когда это будет установлено.",
 	"September": "Сентябрь",
 	"September": "Сентябрь",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Ключ API Serper",
 	"Serper API Key": "Ключ API Serper",
 	"Serply API Key": "Ключ API Serply",
 	"Serply API Key": "Ключ API Serply",
 	"Serpstack API Key": "Ключ API Serpstack",
 	"Serpstack API Key": "Ключ API Serpstack",
@@ -928,7 +934,6 @@
 	"System": "Система",
 	"System": "Система",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Системный промпт",
 	"System Prompt": "Системный промпт",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -979,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Заголовок (например, Расскажи мне интересный факт)",
 	"Title (e.g. Tell me a fun fact)": "Заголовок (например, Расскажи мне интересный факт)",
 	"Title Auto-Generation": "Автогенерация заголовка",
 	"Title Auto-Generation": "Автогенерация заголовка",
 	"Title cannot be an empty string.": "Заголовок не может быть пустой строкой.",
 	"Title cannot be an empty string.": "Заголовок не может быть пустой строкой.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Промпт для генерации заголовка",
 	"Title Generation Prompt": "Промпт для генерации заголовка",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Чтобы получить доступ к доступным для загрузки именам моделей,",
 	"To access the available model names for downloading,": "Чтобы получить доступ к доступным для загрузки именам моделей,",

+ 7 - 2
src/lib/i18n/locales/sk-SK/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "API kľúč pre Brave Search",
 	"Brave Search API Key": "API kľúč pre Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Obísť overenie SSL pre webové stránky",
 	"Bypass SSL verification for Websites": "Obísť overenie SSL pre webové stránky",
+	"Calendar": "",
 	"Call": "Volanie",
 	"Call": "Volanie",
 	"Call feature is not supported when using Web STT engine": "Funkcia volania nie je podporovaná pri použití Web STT engine.",
 	"Call feature is not supported when using Web STT engine": "Funkcia volania nie je podporovaná pri použití Web STT engine.",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Model vkladania nastavený na \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Model vkladania nastavený na \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Povoliť zdieľanie komunity",
 	"Enable Community Sharing": "Povoliť zdieľanie komunity",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "Zadajte vyhľadávací engine SearchApi",
 	"Enter SearchApi Engine": "Zadajte vyhľadávací engine SearchApi",
 	"Enter Searxng Query URL": "Zadajte URL dopytu Searxng",
 	"Enter Searxng Query URL": "Zadajte URL dopytu Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Zadajte Serper API kľúč",
 	"Enter Serper API Key": "Zadajte Serper API kľúč",
 	"Enter Serply API Key": "Zadajte API kľúč pre Serply",
 	"Enter Serply API Key": "Zadajte API kľúč pre Serply",
 	"Enter Serpstack API Key": "Zadajte kľúč API pre Serpstack",
 	"Enter Serpstack API Key": "Zadajte kľúč API pre Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Skryť",
 	"Hide": "Skryť",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Ako vám môžem dnes pomôcť?",
 	"How can I help you today?": "Ako vám môžem dnes pomôcť?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Odoslať správu",
 	"Send message": "Odoslať správu",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Odošle `stream_options: { include_usage: true }` v žiadosti. Podporovaní poskytovatelia vrátia informácie o využití tokenov v odpovedi, keď je táto možnosť nastavená.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Odošle `stream_options: { include_usage: true }` v žiadosti. Podporovaní poskytovatelia vrátia informácie o využití tokenov v odpovedi, keď je táto možnosť nastavená.",
 	"September": "September",
 	"September": "September",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Kľúč API pre Serper",
 	"Serper API Key": "Kľúč API pre Serper",
 	"Serply API Key": "Serply API kľúč",
 	"Serply API Key": "Serply API kľúč",
 	"Serpstack API Key": "Kľúč API pre Serpstack",
 	"Serpstack API Key": "Kľúč API pre Serpstack",
@@ -929,7 +934,6 @@
 	"System": "Systém",
 	"System": "Systém",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Systémový prompt",
 	"System Prompt": "Systémový prompt",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "Prompt na generovanie značiek",
 	"Tags Generation Prompt": "Prompt na generovanie značiek",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Názov (napr. Povedz mi zaujímavosť)",
 	"Title (e.g. Tell me a fun fact)": "Názov (napr. Povedz mi zaujímavosť)",
 	"Title Auto-Generation": "Automatické generovanie názvu",
 	"Title Auto-Generation": "Automatické generovanie názvu",
 	"Title cannot be an empty string.": "Názov nemôže byť prázdny reťazec.",
 	"Title cannot be an empty string.": "Názov nemôže byť prázdny reťazec.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Generovanie názvu promptu",
 	"Title Generation Prompt": "Generovanie názvu promptu",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Pre získanie dostupných názvov modelov na stiahnutie,",
 	"To access the available model names for downloading,": "Pre získanie dostupných názvov modelov na stiahnutie,",

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

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Апи кључ за храбру претрагу",
 	"Brave Search API Key": "Апи кључ за храбру претрагу",
 	"By {{name}}": "Од {{name}}",
 	"By {{name}}": "Од {{name}}",
 	"Bypass SSL verification for Websites": "Заобиђи SSL потврђивање за веб странице",
 	"Bypass SSL verification for Websites": "Заобиђи SSL потврђивање за веб странице",
+	"Calendar": "",
 	"Call": "Позив",
 	"Call": "Позив",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "Камера",
 	"Camera": "Камера",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Модел уградње подешен на \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Модел уградње подешен на \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Омогући дељење заједнице",
 	"Enable Community Sharing": "Омогући дељење заједнице",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Унесите УРЛ адресу Сеарxнг упита",
 	"Enter Searxng Query URL": "Унесите УРЛ адресу Сеарxнг упита",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Унесите Серпер АПИ кључ",
 	"Enter Serper API Key": "Унесите Серпер АПИ кључ",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Унесите Серпстацк АПИ кључ",
 	"Enter Serpstack API Key": "Унесите Серпстацк АПИ кључ",
@@ -514,6 +516,7 @@
 	"Hex Color": "Хекс боја",
 	"Hex Color": "Хекс боја",
 	"Hex Color - Leave empty for default color": "Хекс боја (празно за подразумевано)",
 	"Hex Color - Leave empty for default color": "Хекс боја (празно за подразумевано)",
 	"Hide": "Сакриј",
 	"Hide": "Сакриј",
+	"Home": "",
 	"Host": "Домаћин",
 	"Host": "Домаћин",
 	"How can I help you today?": "Како могу да вам помогнем данас?",
 	"How can I help you today?": "Како могу да вам помогнем данас?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Пошаљи поруку",
 	"Send message": "Пошаљи поруку",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "Септембар",
 	"September": "Септембар",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Серпер АПИ кључ",
 	"Serper API Key": "Серпер АПИ кључ",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "Серпстацк АПИ кључ",
 	"Serpstack API Key": "Серпстацк АПИ кључ",
@@ -979,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Наслов (нпр. „реци ми занимљивост“)",
 	"Title (e.g. Tell me a fun fact)": "Наслов (нпр. „реци ми занимљивост“)",
 	"Title Auto-Generation": "Самостално стварање наслова",
 	"Title Auto-Generation": "Самостално стварање наслова",
 	"Title cannot be an empty string.": "Наслов не може бити празан низ.",
 	"Title cannot be an empty string.": "Наслов не може бити празан низ.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Упит за стварање наслова",
 	"Title Generation Prompt": "Упит за стварање наслова",
 	"TLS": "ТЛС",
 	"TLS": "ТЛС",
 	"To access the available model names for downloading,": "Да бисте приступили доступним именима модела за преузимање,",
 	"To access the available model names for downloading,": "Да бисте приступили доступним именима модела за преузимање,",

+ 7 - 2
src/lib/i18n/locales/sv-SE/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "API-nyckel för Brave Search",
 	"Brave Search API Key": "API-nyckel för Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Kringgå SSL-verifiering för webbplatser",
 	"Bypass SSL verification for Websites": "Kringgå SSL-verifiering för webbplatser",
+	"Calendar": "",
 	"Call": "Samtal",
 	"Call": "Samtal",
 	"Call feature is not supported when using Web STT engine": "Samtalsfunktionen är inte kompatibel med Web Tal-till-text motor",
 	"Call feature is not supported when using Web STT engine": "Samtalsfunktionen är inte kompatibel med Web Tal-till-text motor",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Inbäddningsmodell inställd på \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Inbäddningsmodell inställd på \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Aktivera community-delning",
 	"Enable Community Sharing": "Aktivera community-delning",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Ange Searxng Query URL",
 	"Enter Searxng Query URL": "Ange Searxng Query URL",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Ange Serper API-nyckel",
 	"Enter Serper API Key": "Ange Serper API-nyckel",
 	"Enter Serply API Key": "Ange Serply API-nyckel",
 	"Enter Serply API Key": "Ange Serply API-nyckel",
 	"Enter Serpstack API Key": "Ange Serpstack API-nyckel",
 	"Enter Serpstack API Key": "Ange Serpstack API-nyckel",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Dölj",
 	"Hide": "Dölj",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Hur kan jag hjälpa dig idag?",
 	"How can I help you today?": "Hur kan jag hjälpa dig idag?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Skicka meddelande",
 	"Send message": "Skicka meddelande",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "september",
 	"September": "september",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API-nyckel",
 	"Serper API Key": "Serper API-nyckel",
 	"Serply API Key": "Serply API-nyckel",
 	"Serply API Key": "Serply API-nyckel",
 	"Serpstack API Key": "Serpstack API-nyckel",
 	"Serpstack API Key": "Serpstack API-nyckel",
@@ -929,7 +934,6 @@
 	"System": "System",
 	"System": "System",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Systeminstruktion",
 	"System Prompt": "Systeminstruktion",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Titel (t.ex. Berätta en kuriosa)",
 	"Title (e.g. Tell me a fun fact)": "Titel (t.ex. Berätta en kuriosa)",
 	"Title Auto-Generation": "Automatisk generering av titel",
 	"Title Auto-Generation": "Automatisk generering av titel",
 	"Title cannot be an empty string.": "Titeln får inte vara en tom sträng.",
 	"Title cannot be an empty string.": "Titeln får inte vara en tom sträng.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Instruktion för titelgenerering",
 	"Title Generation Prompt": "Instruktion för titelgenerering",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "För att komma åt de tillgängliga modellnamnen för nedladdning,",
 	"To access the available model names for downloading,": "För att komma åt de tillgängliga modellnamnen för nedladdning,",

+ 7 - 2
src/lib/i18n/locales/th-TH/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "คีย์ API ของ Brave Search",
 	"Brave Search API Key": "คีย์ API ของ Brave Search",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "ข้ามการตรวจสอบ SSL สำหรับเว็บไซต์",
 	"Bypass SSL verification for Websites": "ข้ามการตรวจสอบ SSL สำหรับเว็บไซต์",
+	"Calendar": "",
 	"Call": "โทร",
 	"Call": "โทร",
 	"Call feature is not supported when using Web STT engine": "ไม่รองรับฟีเจอร์การโทรเมื่อใช้เครื่องยนต์ Web STT",
 	"Call feature is not supported when using Web STT engine": "ไม่รองรับฟีเจอร์การโทรเมื่อใช้เครื่องยนต์ Web STT",
 	"Camera": "กล้อง",
 	"Camera": "กล้อง",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดลการฝังเป็น \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดลการฝังเป็น \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน",
 	"Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "ใส URL การค้นหาของ Searxng",
 	"Enter Searxng Query URL": "ใส URL การค้นหาของ Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "ใส่คีย์ API ของ Serper",
 	"Enter Serper API Key": "ใส่คีย์ API ของ Serper",
 	"Enter Serply API Key": "ใส่คีย์ API ของ Serply",
 	"Enter Serply API Key": "ใส่คีย์ API ของ Serply",
 	"Enter Serpstack API Key": "ใส่คีย์ API ของ Serpstack",
 	"Enter Serpstack API Key": "ใส่คีย์ API ของ Serpstack",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "ซ่อน",
 	"Hide": "ซ่อน",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "วันนี้ฉันจะช่วยอะไรคุณได้บ้าง?",
 	"How can I help you today?": "วันนี้ฉันจะช่วยอะไรคุณได้บ้าง?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "ส่งข้อความ",
 	"Send message": "ส่งข้อความ",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "กันยายน",
 	"September": "กันยายน",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "คีย์ API ของ Serper",
 	"Serper API Key": "คีย์ API ของ Serper",
 	"Serply API Key": "คีย์ API ของ Serply",
 	"Serply API Key": "คีย์ API ของ Serply",
 	"Serpstack API Key": "คีย์ API ของ Serpstack",
 	"Serpstack API Key": "คีย์ API ของ Serpstack",
@@ -929,7 +934,6 @@
 	"System": "ระบบ",
 	"System": "ระบบ",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "ระบบพรอมต์",
 	"System Prompt": "ระบบพรอมต์",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "ชื่อเรื่อง (เช่น บอกข้อเท็จจริงที่น่าสนุก)",
 	"Title (e.g. Tell me a fun fact)": "ชื่อเรื่อง (เช่น บอกข้อเท็จจริงที่น่าสนุก)",
 	"Title Auto-Generation": "การสร้างชื่ออัตโนมัติ",
 	"Title Auto-Generation": "การสร้างชื่ออัตโนมัติ",
 	"Title cannot be an empty string.": "ชื่อเรื่องไม่สามารถเป็นสตริงว่างได้",
 	"Title cannot be an empty string.": "ชื่อเรื่องไม่สามารถเป็นสตริงว่างได้",
+	"Title Generation": "",
 	"Title Generation Prompt": "พรอมต์การสร้างชื่อเรื่อง",
 	"Title Generation Prompt": "พรอมต์การสร้างชื่อเรื่อง",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "ในการเข้าถึงชื่อโมเดลที่มีให้ดาวน์โหลด",
 	"To access the available model names for downloading,": "ในการเข้าถึงชื่อโมเดลที่มีให้ดาวน์โหลด",

+ 7 - 2
src/lib/i18n/locales/tk-TW/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "",
 	"Brave Search API Key": "",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "",
 	"Bypass SSL verification for Websites": "",
+	"Calendar": "",
 	"Call": "",
 	"Call": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Call feature is not supported when using Web STT engine": "",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "",
 	"Enable Community Sharing": "",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "",
 	"Enter Searxng Query URL": "",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "",
 	"Enter Serper API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "",
 	"Enter Serpstack API Key": "",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "",
 	"Hide": "",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "",
 	"How can I help you today?": "",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "",
 	"Send message": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "",
 	"September": "",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "",
 	"Serper API Key": "",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "",
 	"Serpstack API Key": "",
@@ -929,7 +934,6 @@
 	"System": "",
 	"System": "",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "",
 	"System Prompt": "",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "",
 	"Title (e.g. Tell me a fun fact)": "",
 	"Title Auto-Generation": "",
 	"Title Auto-Generation": "",
 	"Title cannot be an empty string.": "",
 	"Title cannot be an empty string.": "",
+	"Title Generation": "",
 	"Title Generation Prompt": "",
 	"Title Generation Prompt": "",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "",
 	"To access the available model names for downloading,": "",

+ 7 - 0
src/lib/i18n/locales/tr-TR/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search API Anahtarı",
 	"Brave Search API Key": "Brave Search API Anahtarı",
 	"By {{name}}": "{{name}} Tarafından",
 	"By {{name}}": "{{name}} Tarafından",
 	"Bypass SSL verification for Websites": "Web Siteleri için SSL doğrulamasını atlayın",
 	"Bypass SSL verification for Websites": "Web Siteleri için SSL doğrulamasını atlayın",
+	"Calendar": "",
 	"Call": "Arama",
 	"Call": "Arama",
 	"Call feature is not supported when using Web STT engine": "Web STT motoru kullanılırken arama özelliği desteklenmiyor",
 	"Call feature is not supported when using Web STT engine": "Web STT motoru kullanılırken arama özelliği desteklenmiyor",
 	"Camera": "Kamera",
 	"Camera": "Kamera",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "Arama-API Motorunu Girin",
 	"Enter SearchApi Engine": "Arama-API Motorunu Girin",
 	"Enter Searxng Query URL": "Searxng Sorgu URL'sini girin",
 	"Enter Searxng Query URL": "Searxng Sorgu URL'sini girin",
 	"Enter Seed": " Tohum(seed) Girin",
 	"Enter Seed": " Tohum(seed) Girin",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Serper API Anahtarını Girin",
 	"Enter Serper API Key": "Serper API Anahtarını Girin",
 	"Enter Serply API Key": "Serply API Anahtarını Girin",
 	"Enter Serply API Key": "Serply API Anahtarını Girin",
 	"Enter Serpstack API Key": "Serpstack API Anahtarını Girin",
 	"Enter Serpstack API Key": "Serpstack API Anahtarını Girin",
@@ -513,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Gizle",
 	"Hide": "Gizle",
+	"Home": "",
 	"Host": "Ana bilgisayar",
 	"Host": "Ana bilgisayar",
 	"How can I help you today?": "Bugün size nasıl yardımcı olabilirim?",
 	"How can I help you today?": "Bugün size nasıl yardımcı olabilirim?",
 	"How would you rate this response?": "Bu yanıtı nasıl değerlendirirsiniz?",
 	"How would you rate this response?": "Bu yanıtı nasıl değerlendirirsiniz?",
@@ -866,6 +870,8 @@
 	"Send message": "Mesaj gönder",
 	"Send message": "Mesaj gönder",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "İsteğe `stream_options: { include_usage: true }` gönderir.\nDesteklenen sağlayıcılar, ayarlandığında yanıtta token kullanım bilgilerini döndürecektir.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "İsteğe `stream_options: { include_usage: true }` gönderir.\nDesteklenen sağlayıcılar, ayarlandığında yanıtta token kullanım bilgilerini döndürecektir.",
 	"September": "Eylül",
 	"September": "Eylül",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API Anahtarı",
 	"Serper API Key": "Serper API Anahtarı",
 	"Serply API Key": "Serply API Anahtarı",
 	"Serply API Key": "Serply API Anahtarı",
 	"Serpstack API Key": "Serpstack API Anahtarı",
 	"Serpstack API Key": "Serpstack API Anahtarı",
@@ -978,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Başlık (e.g. Bana ilginç bir bilgi ver)",
 	"Title (e.g. Tell me a fun fact)": "Başlık (e.g. Bana ilginç bir bilgi ver)",
 	"Title Auto-Generation": "Otomatik Başlık Oluşturma",
 	"Title Auto-Generation": "Otomatik Başlık Oluşturma",
 	"Title cannot be an empty string.": "Başlık boş bir dize olamaz.",
 	"Title cannot be an empty string.": "Başlık boş bir dize olamaz.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Başlık Oluşturma Promptu",
 	"Title Generation Prompt": "Başlık Oluşturma Promptu",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "İndirilebilir mevcut model adlarına erişmek için,",
 	"To access the available model names for downloading,": "İndirilebilir mevcut model adlarına erişmek için,",

+ 7 - 0
src/lib/i18n/locales/uk-UA/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Ключ API пошуку Brave",
 	"Brave Search API Key": "Ключ API пошуку Brave",
 	"By {{name}}": "Від {{name}}",
 	"By {{name}}": "Від {{name}}",
 	"Bypass SSL verification for Websites": "Обхід SSL-перевірки для веб-сайтів",
 	"Bypass SSL verification for Websites": "Обхід SSL-перевірки для веб-сайтів",
+	"Calendar": "",
 	"Call": "Виклик",
 	"Call": "Виклик",
 	"Call feature is not supported when using Web STT engine": "Функція виклику не підтримується при використанні Web STT (розпізнавання мовлення) рушія",
 	"Call feature is not supported when using Web STT engine": "Функція виклику не підтримується при використанні Web STT (розпізнавання мовлення) рушія",
 	"Camera": "Камера",
 	"Camera": "Камера",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "Введіть SearchApi рушія",
 	"Enter SearchApi Engine": "Введіть SearchApi рушія",
 	"Enter Searxng Query URL": "Введіть URL-адресу запиту Searxng",
 	"Enter Searxng Query URL": "Введіть URL-адресу запиту Searxng",
 	"Enter Seed": "Введіть насіння",
 	"Enter Seed": "Введіть насіння",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Введіть ключ API Serper",
 	"Enter Serper API Key": "Введіть ключ API Serper",
 	"Enter Serply API Key": "Введіть ключ API Serply",
 	"Enter Serply API Key": "Введіть ключ API Serply",
 	"Enter Serpstack API Key": "Введіть ключ API Serpstack",
 	"Enter Serpstack API Key": "Введіть ключ API Serpstack",
@@ -513,6 +516,7 @@
 	"Hex Color": "Шістнадцятковий колір",
 	"Hex Color": "Шістнадцятковий колір",
 	"Hex Color - Leave empty for default color": "Шістнадцятковий колір — залиште порожнім для кольору за замовчуванням",
 	"Hex Color - Leave empty for default color": "Шістнадцятковий колір — залиште порожнім для кольору за замовчуванням",
 	"Hide": "Приховати",
 	"Hide": "Приховати",
+	"Home": "",
 	"Host": "Хост",
 	"Host": "Хост",
 	"How can I help you today?": "Чим я можу допомогти вам сьогодні?",
 	"How can I help you today?": "Чим я можу допомогти вам сьогодні?",
 	"How would you rate this response?": "Як би ви оцінили цю відповідь?",
 	"How would you rate this response?": "Як би ви оцінили цю відповідь?",
@@ -866,6 +870,8 @@
 	"Send message": "Надіслати повідомлення",
 	"Send message": "Надіслати повідомлення",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Відправляє `stream_options: { include_usage: true }` у запиті.\nПідтримувані постачальники повернуть інформацію про використання токену у відповіді, якщо вона встановлена.",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Відправляє `stream_options: { include_usage: true }` у запиті.\nПідтримувані постачальники повернуть інформацію про використання токену у відповіді, якщо вона встановлена.",
 	"September": "Вересень",
 	"September": "Вересень",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Ключ API Serper",
 	"Serper API Key": "Ключ API Serper",
 	"Serply API Key": "Ключ API Serply",
 	"Serply API Key": "Ключ API Serply",
 	"Serpstack API Key": "Ключ API Serpstack",
 	"Serpstack API Key": "Ключ API Serpstack",
@@ -978,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Заголовок (напр., Розкажіть мені цікавий факт)",
 	"Title (e.g. Tell me a fun fact)": "Заголовок (напр., Розкажіть мені цікавий факт)",
 	"Title Auto-Generation": "Автогенерація заголовків",
 	"Title Auto-Generation": "Автогенерація заголовків",
 	"Title cannot be an empty string.": "Заголовок не може бути порожнім рядком.",
 	"Title cannot be an empty string.": "Заголовок не може бути порожнім рядком.",
+	"Title Generation": "",
 	"Title Generation Prompt": "Промт для генерування заголовків",
 	"Title Generation Prompt": "Промт для генерування заголовків",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "Щоб отримати доступ до назв доступних для завантаження моделей,",
 	"To access the available model names for downloading,": "Щоб отримати доступ до назв доступних для завантаження моделей,",

+ 7 - 2
src/lib/i18n/locales/ur-PK/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "بریو سرچ API کلید",
 	"Brave Search API Key": "بریو سرچ API کلید",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "ویب سائٹس کے لیے SSL تصدیق کو نظر انداز کریں",
 	"Bypass SSL verification for Websites": "ویب سائٹس کے لیے SSL تصدیق کو نظر انداز کریں",
+	"Calendar": "",
 	"Call": "کال کریں",
 	"Call": "کال کریں",
 	"Call feature is not supported when using Web STT engine": "کال کی خصوصیت ویب STT انجن استعمال کرتے وقت معاونت یافتہ نہیں ہے",
 	"Call feature is not supported when using Web STT engine": "کال کی خصوصیت ویب STT انجن استعمال کرتے وقت معاونت یافتہ نہیں ہے",
 	"Camera": "کیمرہ",
 	"Camera": "کیمرہ",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "ایمبیڈنگ ماڈل \"{{embedding_model}}\" پر سیٹ کیا گیا ہے",
 	"Embedding model set to \"{{embedding_model}}\"": "ایمبیڈنگ ماڈل \"{{embedding_model}}\" پر سیٹ کیا گیا ہے",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "کمیونٹی شیئرنگ فعال کریں",
 	"Enable Community Sharing": "کمیونٹی شیئرنگ فعال کریں",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "تلاش انجن درج کریں",
 	"Enter SearchApi Engine": "تلاش انجن درج کریں",
 	"Enter Searxng Query URL": "سیرنگ استفسار یو آر ایل درج کریں",
 	"Enter Searxng Query URL": "سیرنگ استفسار یو آر ایل درج کریں",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "سرپر API کلید داخل کریں",
 	"Enter Serper API Key": "سرپر API کلید داخل کریں",
 	"Enter Serply API Key": "سیرپلی API کلید درج کریں",
 	"Enter Serply API Key": "سیرپلی API کلید درج کریں",
 	"Enter Serpstack API Key": "سرپ اسٹیک API کلید درج کریں",
 	"Enter Serpstack API Key": "سرپ اسٹیک API کلید درج کریں",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "چھپائیں",
 	"Hide": "چھپائیں",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "میں آج آپ کی کس طرح مدد کر سکتا ہوں؟",
 	"How can I help you today?": "میں آج آپ کی کس طرح مدد کر سکتا ہوں؟",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "پیغام بھیجیں",
 	"Send message": "پیغام بھیجیں",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "درخواست میں `stream_options: { include_usage: true }` بھیجتا ہے\nمعاون فراہم کنندگان، جب سیٹ کیا جاتا ہے تو، جواب میں ٹوکن کے استعمال کی معلومات واپس کر دیں گے",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "درخواست میں `stream_options: { include_usage: true }` بھیجتا ہے\nمعاون فراہم کنندگان، جب سیٹ کیا جاتا ہے تو، جواب میں ٹوکن کے استعمال کی معلومات واپس کر دیں گے",
 	"September": "ستمبر",
 	"September": "ستمبر",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "سرپر API کلید",
 	"Serper API Key": "سرپر API کلید",
 	"Serply API Key": "سرپلی API کی کلید",
 	"Serply API Key": "سرپلی API کی کلید",
 	"Serpstack API Key": "سرپ اسٹیک اے پی آئی کلید",
 	"Serpstack API Key": "سرپ اسٹیک اے پی آئی کلید",
@@ -929,7 +934,6 @@
 	"System": "سسٹم",
 	"System": "سسٹم",
 	"System Instructions": "نظام کی ہدایات",
 	"System Instructions": "نظام کی ہدایات",
 	"System Prompt": "سسٹم پرومپٹ",
 	"System Prompt": "سسٹم پرومپٹ",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "پرمپٹ کے لیے ٹیگز بنائیں",
 	"Tags Generation Prompt": "پرمپٹ کے لیے ٹیگز بنائیں",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "عنوان (مثال کے طور پر، مجھے ایک دلچسپ حقیقت بتائیں)",
 	"Title (e.g. Tell me a fun fact)": "عنوان (مثال کے طور پر، مجھے ایک دلچسپ حقیقت بتائیں)",
 	"Title Auto-Generation": "خودکار عنوان تخلیق",
 	"Title Auto-Generation": "خودکار عنوان تخلیق",
 	"Title cannot be an empty string.": "عنوان خالی اسٹرنگ نہیں ہو سکتا",
 	"Title cannot be an empty string.": "عنوان خالی اسٹرنگ نہیں ہو سکتا",
+	"Title Generation": "",
 	"Title Generation Prompt": "سرخی بنانے کی ہدایت",
 	"Title Generation Prompt": "سرخی بنانے کی ہدایت",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "ڈاؤن لوڈ کرنے کے لئے دستیاب ماڈل کے ناموں تک رسائی حاصل کرنے کے لئے،",
 	"To access the available model names for downloading,": "ڈاؤن لوڈ کرنے کے لئے دستیاب ماڈل کے ناموں تک رسائی حاصل کرنے کے لئے،",

+ 7 - 2
src/lib/i18n/locales/vi-VN/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
 	"Brave Search API Key": "Khóa API tìm kiếm dũng cảm",
 	"By {{name}}": "",
 	"By {{name}}": "",
 	"Bypass SSL verification for Websites": "Bỏ qua xác thực SSL cho các trang web",
 	"Bypass SSL verification for Websites": "Bỏ qua xác thực SSL cho các trang web",
+	"Calendar": "",
 	"Call": "Gọi",
 	"Call": "Gọi",
 	"Call feature is not supported when using Web STT engine": "Tính năng gọi điện không được hỗ trợ khi sử dụng công cụ Web STT",
 	"Call feature is not supported when using Web STT engine": "Tính năng gọi điện không được hỗ trợ khi sử dụng công cụ Web STT",
 	"Camera": "",
 	"Camera": "",
@@ -335,7 +336,6 @@
 	"Embedding model set to \"{{embedding_model}}\"": "Mô hình embedding đã được thiết lập thành \"{{embedding_model}}\"",
 	"Embedding model set to \"{{embedding_model}}\"": "Mô hình embedding đã được thiết lập thành \"{{embedding_model}}\"",
 	"Enable API Key": "",
 	"Enable API Key": "",
 	"Enable autocomplete generation for chat messages": "",
 	"Enable autocomplete generation for chat messages": "",
-	"Enable title generation for chat messages": "",
 	"Enable Code Interpreter": "",
 	"Enable Code Interpreter": "",
 	"Enable Community Sharing": "Cho phép Chia sẻ Cộng đồng",
 	"Enable Community Sharing": "Cho phép Chia sẻ Cộng đồng",
 	"Enable Google Drive": "",
 	"Enable Google Drive": "",
@@ -387,6 +387,8 @@
 	"Enter SearchApi Engine": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Nhập Query URL cho Searxng",
 	"Enter Searxng Query URL": "Nhập Query URL cho Searxng",
 	"Enter Seed": "",
 	"Enter Seed": "",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "Nhập Serper API Key",
 	"Enter Serper API Key": "Nhập Serper API Key",
 	"Enter Serply API Key": "Nhập Serply API Key",
 	"Enter Serply API Key": "Nhập Serply API Key",
 	"Enter Serpstack API Key": "Nhập Serpstack API Key",
 	"Enter Serpstack API Key": "Nhập Serpstack API Key",
@@ -514,6 +516,7 @@
 	"Hex Color": "",
 	"Hex Color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hex Color - Leave empty for default color": "",
 	"Hide": "Ẩn",
 	"Hide": "Ẩn",
+	"Home": "",
 	"Host": "",
 	"Host": "",
 	"How can I help you today?": "Tôi có thể giúp gì cho bạn hôm nay?",
 	"How can I help you today?": "Tôi có thể giúp gì cho bạn hôm nay?",
 	"How would you rate this response?": "",
 	"How would you rate this response?": "",
@@ -867,6 +870,8 @@
 	"Send message": "Gửi yêu cầu",
 	"Send message": "Gửi yêu cầu",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "",
 	"September": "Tháng 9",
 	"September": "Tháng 9",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Khóa API Serper",
 	"Serper API Key": "Khóa API Serper",
 	"Serply API Key": "",
 	"Serply API Key": "",
 	"Serpstack API Key": "Khóa API Serpstack",
 	"Serpstack API Key": "Khóa API Serpstack",
@@ -929,7 +934,6 @@
 	"System": "Hệ thống",
 	"System": "Hệ thống",
 	"System Instructions": "",
 	"System Instructions": "",
 	"System Prompt": "Prompt Hệ thống (System Prompt)",
 	"System Prompt": "Prompt Hệ thống (System Prompt)",
-	"Title Generation": "",
 	"Tags Generation": "",
 	"Tags Generation": "",
 	"Tags Generation Prompt": "",
 	"Tags Generation Prompt": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
@@ -980,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "Tiêu đề (ví dụ: Hãy kể cho tôi một sự thật thú vị về...)",
 	"Title (e.g. Tell me a fun fact)": "Tiêu đề (ví dụ: Hãy kể cho tôi một sự thật thú vị về...)",
 	"Title Auto-Generation": "Tự động Tạo Tiêu đề",
 	"Title Auto-Generation": "Tự động Tạo Tiêu đề",
 	"Title cannot be an empty string.": "Tiêu đề không được phép bỏ trống",
 	"Title cannot be an empty string.": "Tiêu đề không được phép bỏ trống",
+	"Title Generation": "",
 	"Title Generation Prompt": "Prompt tạo tiêu đề",
 	"Title Generation Prompt": "Prompt tạo tiêu đề",
 	"TLS": "",
 	"TLS": "",
 	"To access the available model names for downloading,": "Để truy cập các tên mô hình có sẵn để tải xuống,",
 	"To access the available model names for downloading,": "Để truy cập các tên mô hình có sẵn để tải xuống,",

+ 7 - 0
src/lib/i18n/locales/zh-CN/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave Search API 密钥",
 	"Brave Search API Key": "Brave Search API 密钥",
 	"By {{name}}": "由 {{name}} 提供",
 	"By {{name}}": "由 {{name}} 提供",
 	"Bypass SSL verification for Websites": "绕过网站的 SSL 验证",
 	"Bypass SSL verification for Websites": "绕过网站的 SSL 验证",
+	"Calendar": "",
 	"Call": "呼叫",
 	"Call": "呼叫",
 	"Call feature is not supported when using Web STT engine": "使用 Web 语音转文字引擎时不支持呼叫功能。",
 	"Call feature is not supported when using Web STT engine": "使用 Web 语音转文字引擎时不支持呼叫功能。",
 	"Camera": "摄像头",
 	"Camera": "摄像头",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "输入 SearchApi 引擎",
 	"Enter SearchApi Engine": "输入 SearchApi 引擎",
 	"Enter Searxng Query URL": "输入 Searxng 查询地址",
 	"Enter Searxng Query URL": "输入 Searxng 查询地址",
 	"Enter Seed": "输入 Seed",
 	"Enter Seed": "输入 Seed",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "输入 Serper API 密钥",
 	"Enter Serper API Key": "输入 Serper API 密钥",
 	"Enter Serply API Key": "输入 Serply API 密钥",
 	"Enter Serply API Key": "输入 Serply API 密钥",
 	"Enter Serpstack API Key": "输入 Serpstack API 密钥",
 	"Enter Serpstack API Key": "输入 Serpstack API 密钥",
@@ -513,6 +516,7 @@
 	"Hex Color": "十六进制颜色代码",
 	"Hex Color": "十六进制颜色代码",
 	"Hex Color - Leave empty for default color": "十六进制颜色代码 - 留空使用默认颜色",
 	"Hex Color - Leave empty for default color": "十六进制颜色代码 - 留空使用默认颜色",
 	"Hide": "隐藏",
 	"Hide": "隐藏",
+	"Home": "",
 	"Host": "主机",
 	"Host": "主机",
 	"How can I help you today?": "有什么我能帮您的吗?",
 	"How can I help you today?": "有什么我能帮您的吗?",
 	"How would you rate this response?": "您如何评价这个回应?",
 	"How would you rate this response?": "您如何评价这个回应?",
@@ -866,6 +870,8 @@
 	"Send message": "发送消息",
 	"Send message": "发送消息",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "在请求中发送 `stream_options: { include_usage: true }`。设置后,支持的供应商会在响应中返回 Token 使用信息。",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "在请求中发送 `stream_options: { include_usage: true }`。设置后,支持的供应商会在响应中返回 Token 使用信息。",
 	"September": "九月",
 	"September": "九月",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API 密钥",
 	"Serper API Key": "Serper API 密钥",
 	"Serply API Key": "Serply API 密钥",
 	"Serply API Key": "Serply API 密钥",
 	"Serpstack API Key": "Serpstack API 密钥",
 	"Serpstack API Key": "Serpstack API 密钥",
@@ -978,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "标题(例如 给我讲一个有趣的事实)",
 	"Title (e.g. Tell me a fun fact)": "标题(例如 给我讲一个有趣的事实)",
 	"Title Auto-Generation": "自动生成标题",
 	"Title Auto-Generation": "自动生成标题",
 	"Title cannot be an empty string.": "标题不能为空。",
 	"Title cannot be an empty string.": "标题不能为空。",
+	"Title Generation": "",
 	"Title Generation Prompt": "用于自动生成标题的提示词",
 	"Title Generation Prompt": "用于自动生成标题的提示词",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "要访问可下载的模型名称,",
 	"To access the available model names for downloading,": "要访问可下载的模型名称,",

+ 7 - 0
src/lib/i18n/locales/zh-TW/translation.json

@@ -126,6 +126,7 @@
 	"Brave Search API Key": "Brave 搜尋 API 金鑰",
 	"Brave Search API Key": "Brave 搜尋 API 金鑰",
 	"By {{name}}": "由 {{name}} 製作",
 	"By {{name}}": "由 {{name}} 製作",
 	"Bypass SSL verification for Websites": "略過網站的 SSL 驗證",
 	"Bypass SSL verification for Websites": "略過網站的 SSL 驗證",
+	"Calendar": "",
 	"Call": "通話",
 	"Call": "通話",
 	"Call feature is not supported when using Web STT engine": "使用網頁語音辨識 (Web STT) 引擎時不支援通話功能",
 	"Call feature is not supported when using Web STT engine": "使用網頁語音辨識 (Web STT) 引擎時不支援通話功能",
 	"Camera": "相機",
 	"Camera": "相機",
@@ -386,6 +387,8 @@
 	"Enter SearchApi Engine": "輸入 SearchApi 引擎",
 	"Enter SearchApi Engine": "輸入 SearchApi 引擎",
 	"Enter Searxng Query URL": "輸入 SearXNG 查詢 URL",
 	"Enter Searxng Query URL": "輸入 SearXNG 查詢 URL",
 	"Enter Seed": "輸入種子值",
 	"Enter Seed": "輸入種子值",
+	"Enter SerpApi API Key": "",
+	"Enter SerpApi Engine": "",
 	"Enter Serper API Key": "輸入 Serper API 金鑰",
 	"Enter Serper API Key": "輸入 Serper API 金鑰",
 	"Enter Serply API Key": "輸入 Serply API 金鑰",
 	"Enter Serply API Key": "輸入 Serply API 金鑰",
 	"Enter Serpstack API Key": "輸入 Serpstack API 金鑰",
 	"Enter Serpstack API Key": "輸入 Serpstack API 金鑰",
@@ -513,6 +516,7 @@
 	"Hex Color": "Hex 顔色",
 	"Hex Color": "Hex 顔色",
 	"Hex Color - Leave empty for default color": "Hex 顔色 —— 留空以使用預設顔色",
 	"Hex Color - Leave empty for default color": "Hex 顔色 —— 留空以使用預設顔色",
 	"Hide": "隱藏",
 	"Hide": "隱藏",
+	"Home": "",
 	"Host": "主機",
 	"Host": "主機",
 	"How can I help you today?": "今天我能為您做些什麼?",
 	"How can I help you today?": "今天我能為您做些什麼?",
 	"How would you rate this response?": "您如何評價此回應?",
 	"How would you rate this response?": "您如何評價此回應?",
@@ -866,6 +870,8 @@
 	"Send message": "傳送訊息",
 	"Send message": "傳送訊息",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "在請求中傳送 `stream_options: { include_usage: true }`。\n設定後,支援的提供者將在回應中回傳權杖使用資訊。",
 	"Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "在請求中傳送 `stream_options: { include_usage: true }`。\n設定後,支援的提供者將在回應中回傳權杖使用資訊。",
 	"September": "9 月",
 	"September": "9 月",
+	"SerpApi API Key": "",
+	"SerpApi Engine": "",
 	"Serper API Key": "Serper API 金鑰",
 	"Serper API Key": "Serper API 金鑰",
 	"Serply API Key": "Serply API 金鑰",
 	"Serply API Key": "Serply API 金鑰",
 	"Serpstack API Key": "Serpstack API 金鑰",
 	"Serpstack API Key": "Serpstack API 金鑰",
@@ -978,6 +984,7 @@
 	"Title (e.g. Tell me a fun fact)": "標題(例如:告訴我一個有趣的事實)",
 	"Title (e.g. Tell me a fun fact)": "標題(例如:告訴我一個有趣的事實)",
 	"Title Auto-Generation": "自動產生標題",
 	"Title Auto-Generation": "自動產生標題",
 	"Title cannot be an empty string.": "標題不能是空字串。",
 	"Title cannot be an empty string.": "標題不能是空字串。",
+	"Title Generation": "",
 	"Title Generation Prompt": "自動產生標題的提示詞",
 	"Title Generation Prompt": "自動產生標題的提示詞",
 	"TLS": "TLS",
 	"TLS": "TLS",
 	"To access the available model names for downloading,": "若要存取可供下載的模型名稱,",
 	"To access the available model names for downloading,": "若要存取可供下載的模型名稱,",