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

+ 2 - 2
backend/open_webui/utils/misc.py

@@ -217,10 +217,10 @@ def openai_chat_chunk_message_template(
 
 
 
 
 def openai_chat_completion_message_template(
 def openai_chat_completion_message_template(
-    model: str, 
+    model: str,
     message: Optional[str] = None,
     message: Optional[str] = None,
     tool_calls: Optional[list[dict]] = None,
     tool_calls: Optional[list[dict]] = None,
-    usage: Optional[dict] = None
+    usage: Optional[dict] = None,
 ) -> dict:
 ) -> dict:
     template = openai_chat_message_template(model)
     template = openai_chat_message_template(model)
     template["object"] = "chat.completion"
     template["object"] = "chat.completion"

+ 5 - 2
backend/open_webui/utils/response.py

@@ -16,13 +16,14 @@ def convert_ollama_tool_call_to_openai(tool_calls: dict) -> dict:
             "function": {
             "function": {
                 "name": tool_call.get("function", {}).get("name", ""),
                 "name": tool_call.get("function", {}).get("name", ""),
                 "arguments": json.dumps(
                 "arguments": json.dumps(
-                    tool_call.get('function', {}).get('arguments', {})
+                    tool_call.get("function", {}).get("arguments", {})
                 ),
                 ),
             },
             },
         }
         }
         openai_tool_calls.append(openai_tool_call)
         openai_tool_calls.append(openai_tool_call)
     return openai_tool_calls
     return openai_tool_calls
 
 
+
 def convert_response_ollama_to_openai(ollama_response: dict) -> dict:
 def convert_response_ollama_to_openai(ollama_response: dict) -> dict:
     model = ollama_response.get("model", "ollama")
     model = ollama_response.get("model", "ollama")
     message_content = ollama_response.get("message", {}).get("content", "")
     message_content = ollama_response.get("message", {}).get("content", "")
@@ -73,7 +74,9 @@ def convert_response_ollama_to_openai(ollama_response: dict) -> dict:
         ),
         ),
     }
     }
 
 
-    response = openai_chat_completion_message_template(model, message_content, openai_tool_calls, usage)
+    response = openai_chat_completion_message_template(
+        model, message_content, openai_tool_calls, usage
+    )
     return response
     return response
 
 
 
 

+ 1 - 1
src/lib/components/chat/Settings/Connections.svelte

@@ -130,7 +130,7 @@
 							{$i18n.t('Connect to your own OpenAI compatible API endpoints.')}
 							{$i18n.t('Connect to your own OpenAI compatible API endpoints.')}
 							<br />
 							<br />
 							{$i18n.t(
 							{$i18n.t(
-								'Ensure that CORS is properly configured to allow requests from Open WebUI.'
+								'CORS must be properly configured by the provider to allow requests from Open WebUI.'
 							)}
 							)}
 						</div>
 						</div>
 					</div>
 					</div>

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

@@ -220,6 +220,7 @@
 	"Copy Link": "أنسخ الرابط",
 	"Copy Link": "أنسخ الرابط",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح",
 	"Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "إنشاء نموذج",
 	"Create a model": "إنشاء نموذج",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "تمكين بحث الويب",
 	"Enable Web Search": "تمكين بحث الويب",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
 	"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
 	"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
 	"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Копиране на връзка",
 	"Copy Link": "Копиране на връзка",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Копирането в клипборда беше успешно!",
 	"Copying to clipboard was successful!": "Копирането в клипборда беше успешно!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Създаване на модел",
 	"Create a model": "Създаване на модел",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Разрешаване на търсене в уеб",
 	"Enable Web Search": "Разрешаване на търсене в уеб",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
 	"Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
 	"Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
 	"Enter a detail about yourself for your LLMs to recall": "Въведете подробности за себе си, за да се herinnerат вашите LLMs",
 	"Enter a detail about yourself for your LLMs to recall": "Въведете подробности за себе си, за да се herinnerат вашите LLMs",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "লিংক কপি করুন",
 	"Copy Link": "লিংক কপি করুন",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "ক্লিপবোর্ডে কপি করা সফল হয়েছে",
 	"Copying to clipboard was successful!": "ক্লিপবোর্ডে কপি করা সফল হয়েছে",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "একটি মডেল তৈরি করুন",
 	"Create a model": "একটি মডেল তৈরি করুন",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "ওয়েব অনুসন্ধান সক্ষম করুন",
 	"Enable Web Search": "ওয়েব অনুসন্ধান সক্ষম করুন",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
 	"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
 	"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
 	"Enter a detail about yourself for your LLMs to recall": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন",
 	"Enter a detail about yourself for your LLMs to recall": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Copiar l'enllaç",
 	"Copy Link": "Copiar l'enllaç",
 	"Copy to clipboard": "Copiar al porta-retalls",
 	"Copy to clipboard": "Copiar al porta-retalls",
 	"Copying to clipboard was successful!": "La còpia al porta-retalls s'ha realitzat correctament",
 	"Copying to clipboard was successful!": "La còpia al porta-retalls s'ha realitzat correctament",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Crear",
 	"Create": "Crear",
 	"Create a knowledge base": "Crear una base de coneixement",
 	"Create a knowledge base": "Crear una base de coneixement",
 	"Create a model": "Crear un model",
 	"Create a model": "Crear un model",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Activar la cerca web",
 	"Enable Web Search": "Activar la cerca web",
 	"Enabled": "Habilitat",
 	"Enabled": "Habilitat",
 	"Engine": "Motor",
 	"Engine": "Motor",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
 	"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
 	"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
 	"Enter a detail about yourself for your LLMs to recall": "Introdueix un detall sobre tu què els teus models de llenguatge puguin recordar",
 	"Enter a detail about yourself for your LLMs to recall": "Introdueix un detall sobre tu què els teus models de llenguatge puguin recordar",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "",
 	"Copy Link": "",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Ang pagkopya sa clipboard malampuson!",
 	"Copying to clipboard was successful!": "Ang pagkopya sa clipboard malampuson!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "",
 	"Create a model": "",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "",
 	"Enable Web Search": "",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
 	"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter a detail about yourself for your LLMs to recall": "",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopírovat odkaz",
 	"Copy Link": "Kopírovat odkaz",
 	"Copy to clipboard": "Kopírovat do schránky",
 	"Copy to clipboard": "Kopírovat do schránky",
 	"Copying to clipboard was successful!": "Kopírování do schránky bylo úspěšné!",
 	"Copying to clipboard was successful!": "Kopírování do schránky bylo úspěšné!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Vytvořit",
 	"Create": "Vytvořit",
 	"Create a knowledge base": "Vytvořit knowledge base",
 	"Create a knowledge base": "Vytvořit knowledge base",
 	"Create a model": "Vytvořte model",
 	"Create a model": "Vytvořte model",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Povolit webové vyhledávání",
 	"Enable Web Search": "Povolit webové vyhledávání",
 	"Enabled": "Povoleno",
 	"Enabled": "Povoleno",
 	"Engine": "Engine",
 	"Engine": "Engine",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Zadejte zprávu {{role}} sem",
 	"Enter {{role}} message here": "Zadejte zprávu {{role}} sem",
 	"Enter a detail about yourself for your LLMs to recall": "Zadejte podrobnost o sobě, kterou si vaše LLM mají pamatovat.",
 	"Enter a detail about yourself for your LLMs to recall": "Zadejte podrobnost o sobě, kterou si vaše LLM mají pamatovat.",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopier link",
 	"Copy Link": "Kopier link",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Kopieret til udklipsholder!",
 	"Copying to clipboard was successful!": "Kopieret til udklipsholder!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Lav en model",
 	"Create a model": "Lav en model",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Aktiver websøgning",
 	"Enable Web Search": "Aktiver websøgning",
 	"Enabled": "Aktiveret",
 	"Enabled": "Aktiveret",
 	"Engine": "engine",
 	"Engine": "engine",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner in denne rækkefølge: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner in denne rækkefølge: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Indtast {{role}} besked her",
 	"Enter {{role}} message here": "Indtast {{role}} besked her",
 	"Enter a detail about yourself for your LLMs to recall": "Indtast en detalje om dig selv, som dine LLMs kan huske",
 	"Enter a detail about yourself for your LLMs to recall": "Indtast en detalje om dig selv, som dine LLMs kan huske",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Link kopieren",
 	"Copy Link": "Link kopieren",
 	"Copy to clipboard": "In die Zwischenablage kopieren",
 	"Copy to clipboard": "In die Zwischenablage kopieren",
 	"Copying to clipboard was successful!": "Das Kopieren in die Zwischenablage war erfolgreich!",
 	"Copying to clipboard was successful!": "Das Kopieren in die Zwischenablage war erfolgreich!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Erstellen",
 	"Create": "Erstellen",
 	"Create a knowledge base": "Wissensspeicher erstellen",
 	"Create a knowledge base": "Wissensspeicher erstellen",
 	"Create a model": "Modell erstellen",
 	"Create a model": "Modell erstellen",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Websuche aktivieren",
 	"Enable Web Search": "Websuche aktivieren",
 	"Enabled": "Aktiviert",
 	"Enabled": "Aktiviert",
 	"Engine": "Engine",
 	"Engine": "Engine",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
 	"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
 	"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
 	"Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen",
 	"Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "",
 	"Copy Link": "",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Copying to clipboard was success! Very success!",
 	"Copying to clipboard was successful!": "Copying to clipboard was success! Very success!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "",
 	"Create a model": "",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "",
 	"Enable Web Search": "",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Enter {{role}} message here": "Enter {{role}} bork here",
 	"Enter {{role}} message here": "Enter {{role}} bork here",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter a detail about yourself for your LLMs to recall": "",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Αντιγραφή Συνδέσμου",
 	"Copy Link": "Αντιγραφή Συνδέσμου",
 	"Copy to clipboard": "Αντιγραφή στο πρόχειρο",
 	"Copy to clipboard": "Αντιγραφή στο πρόχειρο",
 	"Copying to clipboard was successful!": "Η αντιγραφή στο πρόχειρο ήταν επιτυχής!",
 	"Copying to clipboard was successful!": "Η αντιγραφή στο πρόχειρο ήταν επιτυχής!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Δημιουργία",
 	"Create": "Δημιουργία",
 	"Create a knowledge base": "Δημιουργία βάσης γνώσης",
 	"Create a knowledge base": "Δημιουργία βάσης γνώσης",
 	"Create a model": "Δημιουργία μοντέλου",
 	"Create a model": "Δημιουργία μοντέλου",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Ενεργοποίηση Αναζήτησης στο Διαδίκτυο",
 	"Enable Web Search": "Ενεργοποίηση Αναζήτησης στο Διαδίκτυο",
 	"Enabled": "Ενεργοποιημένο",
 	"Enabled": "Ενεργοποιημένο",
 	"Engine": "Μηχανή",
 	"Engine": "Μηχανή",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.",
 	"Enter {{role}} message here": "Εισάγετε το μήνυμα {{role}} εδώ",
 	"Enter {{role}} message here": "Εισάγετε το μήνυμα {{role}} εδώ",
 	"Enter a detail about yourself for your LLMs to recall": "Εισάγετε μια λεπτομέρεια για τον εαυτό σας ώστε τα LLMs να την ανακαλούν",
 	"Enter a detail about yourself for your LLMs to recall": "Εισάγετε μια λεπτομέρεια για τον εαυτό σας ώστε τα LLMs να την ανακαλούν",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "",
 	"Copy Link": "",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "",
 	"Copying to clipboard was successful!": "",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "",
 	"Create a model": "",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "",
 	"Enable Web Search": "",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Enter {{role}} message here": "",
 	"Enter {{role}} message here": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter a detail about yourself for your LLMs to recall": "",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "",
 	"Copy Link": "",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "",
 	"Copying to clipboard was successful!": "",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "",
 	"Create a model": "",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "",
 	"Enable Web Search": "",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Enter {{role}} message here": "",
 	"Enter {{role}} message here": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter a detail about yourself for your LLMs to recall": "",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Copiar enlace",
 	"Copy Link": "Copiar enlace",
 	"Copy to clipboard": "Copiado a portapapeles",
 	"Copy to clipboard": "Copiado a portapapeles",
 	"Copying to clipboard was successful!": "¡La copia al portapapeles se ha realizado correctamente!",
 	"Copying to clipboard was successful!": "¡La copia al portapapeles se ha realizado correctamente!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Crear",
 	"Create": "Crear",
 	"Create a knowledge base": "Crear base de conocimiento",
 	"Create a knowledge base": "Crear base de conocimiento",
 	"Create a model": "Crear un modelo",
 	"Create a model": "Crear un modelo",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Habilitar la búsqueda web",
 	"Enable Web Search": "Habilitar la búsqueda web",
 	"Enabled": "Activado",
 	"Enabled": "Activado",
 	"Engine": "Motor",
 	"Engine": "Motor",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
 	"Enter {{role}} message here": "Ingrese el mensaje {{role}} aquí",
 	"Enter {{role}} message here": "Ingrese el mensaje {{role}} aquí",
 	"Enter a detail about yourself for your LLMs to recall": "Ingrese un detalle sobre usted para que sus LLMs recuerden",
 	"Enter a detail about yourself for your LLMs to recall": "Ingrese un detalle sobre usted para que sus LLMs recuerden",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopiatu Esteka",
 	"Copy Link": "Kopiatu Esteka",
 	"Copy to clipboard": "Kopiatu arbelera",
 	"Copy to clipboard": "Kopiatu arbelera",
 	"Copying to clipboard was successful!": "Arbelera kopiatzea arrakastatsua izan da!",
 	"Copying to clipboard was successful!": "Arbelera kopiatzea arrakastatsua izan da!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Sortu",
 	"Create": "Sortu",
 	"Create a knowledge base": "Sortu ezagutza-base bat",
 	"Create a knowledge base": "Sortu ezagutza-base bat",
 	"Create a model": "Sortu eredu bat",
 	"Create a model": "Sortu eredu bat",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Gaitu Web Bilaketa",
 	"Enable Web Search": "Gaitu Web Bilaketa",
 	"Enabled": "Gaituta",
 	"Enabled": "Gaituta",
 	"Engine": "Motorea",
 	"Engine": "Motorea",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.",
 	"Enter {{role}} message here": "Sartu {{role}} mezua hemen",
 	"Enter {{role}} message here": "Sartu {{role}} mezua hemen",
 	"Enter a detail about yourself for your LLMs to recall": "Sartu zure buruari buruzko xehetasun bat LLMek gogoratzeko",
 	"Enter a detail about yourself for your LLMs to recall": "Sartu zure buruari buruzko xehetasun bat LLMek gogoratzeko",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "کپی لینک",
 	"Copy Link": "کپی لینک",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "کپی کردن در کلیپ بورد با موفقیت انجام شد!",
 	"Copying to clipboard was successful!": "کپی کردن در کلیپ بورد با موفقیت انجام شد!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "ایجاد یک مدل",
 	"Create a model": "ایجاد یک مدل",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "فعالسازی جستجوی وب",
 	"Enable Web Search": "فعالسازی جستجوی وب",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
 	"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
 	"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
 	"Enter a detail about yourself for your LLMs to recall": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید",
 	"Enter a detail about yourself for your LLMs to recall": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopioi linkki",
 	"Copy Link": "Kopioi linkki",
 	"Copy to clipboard": "Kopioi leikepöydälle",
 	"Copy to clipboard": "Kopioi leikepöydälle",
 	"Copying to clipboard was successful!": "Kopioiminen leikepöydälle onnistui!",
 	"Copying to clipboard was successful!": "Kopioiminen leikepöydälle onnistui!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Luo",
 	"Create": "Luo",
 	"Create a knowledge base": "Luo tietokanta",
 	"Create a knowledge base": "Luo tietokanta",
 	"Create a model": "Luo malli",
 	"Create a model": "Luo malli",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Ota verkkohaku käyttöön",
 	"Enable Web Search": "Ota verkkohaku käyttöön",
 	"Enabled": "Käytössä",
 	"Enabled": "Käytössä",
 	"Engine": "Moottori",
 	"Engine": "Moottori",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
 	"Enter {{role}} message here": "Kirjoita {{role}}-viesti tähän",
 	"Enter {{role}} message here": "Kirjoita {{role}}-viesti tähän",
 	"Enter a detail about yourself for your LLMs to recall": "Kirjoita yksityiskohta itsestäsi, jonka LLM-ohjelmat voivat muistaa",
 	"Enter a detail about yourself for your LLMs to recall": "Kirjoita yksityiskohta itsestäsi, jonka LLM-ohjelmat voivat muistaa",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Copier le lien",
 	"Copy Link": "Copier le lien",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
 	"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Créer un modèle",
 	"Create a model": "Créer un modèle",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Activer la recherche sur le Web",
 	"Enable Web Search": "Activer la recherche sur le Web",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "Moteur",
 	"Engine": "Moteur",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Entrez le message {{role}} ici",
 	"Enter {{role}} message here": "Entrez le message {{role}} ici",
 	"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
 	"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Copier le lien",
 	"Copy Link": "Copier le lien",
 	"Copy to clipboard": "Copier dans le presse-papiers",
 	"Copy to clipboard": "Copier dans le presse-papiers",
 	"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
 	"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Créer",
 	"Create": "Créer",
 	"Create a knowledge base": "Créer une base de connaissances",
 	"Create a knowledge base": "Créer une base de connaissances",
 	"Create a model": "Créer un modèle",
 	"Create a model": "Créer un modèle",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Activer la recherche Web",
 	"Enable Web Search": "Activer la recherche Web",
 	"Enabled": "Activé",
 	"Enabled": "Activé",
 	"Engine": "Moteur",
 	"Engine": "Moteur",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Entrez le message {{role}} ici",
 	"Enter {{role}} message here": "Entrez le message {{role}} ici",
 	"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
 	"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "העתק קישור",
 	"Copy Link": "העתק קישור",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "ההעתקה ללוח הייתה מוצלחת!",
 	"Copying to clipboard was successful!": "ההעתקה ללוח הייתה מוצלחת!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "יצירת מודל",
 	"Create a model": "יצירת מודל",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "הפיכת חיפוש באינטרנט לזמין",
 	"Enable Web Search": "הפיכת חיפוש באינטרנט לזמין",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
 	"Enter {{role}} message here": "הזן הודעת {{role}} כאן",
 	"Enter {{role}} message here": "הזן הודעת {{role}} כאן",
 	"Enter a detail about yourself for your LLMs to recall": "הזן פרטים על עצמך כדי שLLMs יזכור",
 	"Enter a detail about yourself for your LLMs to recall": "הזן פרטים על עצמך כדי שLLMs יזכור",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "लिंक को कॉपी करें",
 	"Copy Link": "लिंक को कॉपी करें",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "क्लिपबोर्ड पर कॉपी बनाना सफल रहा!",
 	"Copying to clipboard was successful!": "क्लिपबोर्ड पर कॉपी बनाना सफल रहा!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "एक मॉडल बनाएं",
 	"Create a model": "एक मॉडल बनाएं",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "वेब खोज सक्षम करें",
 	"Enable Web Search": "वेब खोज सक्षम करें",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
 	"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
 	"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
 	"Enter a detail about yourself for your LLMs to recall": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें",
 	"Enter a detail about yourself for your LLMs to recall": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopiraj vezu",
 	"Copy Link": "Kopiraj vezu",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Kopiranje u međuspremnik je uspješno!",
 	"Copying to clipboard was successful!": "Kopiranje u međuspremnik je uspješno!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Izradite model",
 	"Create a model": "Izradite model",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Omogući pretraživanje weba",
 	"Enable Web Search": "Omogući pretraživanje weba",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
 	"Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
 	"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",
 	"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Link másolása",
 	"Copy Link": "Link másolása",
 	"Copy to clipboard": "Másolás a vágólapra",
 	"Copy to clipboard": "Másolás a vágólapra",
 	"Copying to clipboard was successful!": "Sikeres másolás a vágólapra!",
 	"Copying to clipboard was successful!": "Sikeres másolás a vágólapra!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Modell létrehozása",
 	"Create a model": "Modell létrehozása",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Webes keresés engedélyezése",
 	"Enable Web Search": "Webes keresés engedélyezése",
 	"Enabled": "Engedélyezve",
 	"Enabled": "Engedélyezve",
 	"Engine": "Motor",
 	"Engine": "Motor",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.",
 	"Enter {{role}} message here": "Írd ide a {{role}} üzenetet",
 	"Enter {{role}} message here": "Írd ide a {{role}} üzenetet",
 	"Enter a detail about yourself for your LLMs to recall": "Adj meg egy részletet magadról, amit az LLM-ek megjegyezhetnek",
 	"Enter a detail about yourself for your LLMs to recall": "Adj meg egy részletet magadról, amit az LLM-ek megjegyezhetnek",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Salin Tautan",
 	"Copy Link": "Salin Tautan",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Penyalinan ke papan klip berhasil!",
 	"Copying to clipboard was successful!": "Penyalinan ke papan klip berhasil!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Buat model",
 	"Create a model": "Buat model",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Aktifkan Pencarian Web",
 	"Enable Web Search": "Aktifkan Pencarian Web",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.",
 	"Enter {{role}} message here": "Masukkan pesan {{role}} di sini",
 	"Enter {{role}} message here": "Masukkan pesan {{role}} di sini",
 	"Enter a detail about yourself for your LLMs to recall": "Masukkan detail tentang diri Anda untuk diingat oleh LLM Anda",
 	"Enter a detail about yourself for your LLMs to recall": "Masukkan detail tentang diri Anda untuk diingat oleh LLM Anda",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Cóipeáil Nasc",
 	"Copy Link": "Cóipeáil Nasc",
 	"Copy to clipboard": "Cóipeáil chuig an ngearrthaisce",
 	"Copy to clipboard": "Cóipeáil chuig an ngearrthaisce",
 	"Copying to clipboard was successful!": "D'éirigh le cóipeáil chuig an ngearrthaisce!",
 	"Copying to clipboard was successful!": "D'éirigh le cóipeáil chuig an ngearrthaisce!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Cruthaigh",
 	"Create": "Cruthaigh",
 	"Create a knowledge base": "Cruthaigh bonn eolais",
 	"Create a knowledge base": "Cruthaigh bonn eolais",
 	"Create a model": "Cruthaigh múnla",
 	"Create a model": "Cruthaigh múnla",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Cumasaigh Cuardach Gréasáin",
 	"Enable Web Search": "Cumasaigh Cuardach Gréasáin",
 	"Enabled": "Cumasaithe",
 	"Enabled": "Cumasaithe",
 	"Engine": "Inneall",
 	"Engine": "Inneall",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
 	"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
 	"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
 	"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",
 	"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Copia link",
 	"Copy Link": "Copia link",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Copia negli appunti riuscita!",
 	"Copying to clipboard was successful!": "Copia negli appunti riuscita!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Creare un modello",
 	"Create a model": "Creare un modello",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Abilita ricerca Web",
 	"Enable Web Search": "Abilita ricerca Web",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.",
 	"Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui",
 	"Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui",
 	"Enter a detail about yourself for your LLMs to recall": "Inserisci un dettaglio su di te per che i LLM possano ricordare",
 	"Enter a detail about yourself for your LLMs to recall": "Inserisci un dettaglio su di te per che i LLM possano ricordare",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "リンクをコピー",
 	"Copy Link": "リンクをコピー",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "クリップボードへのコピーが成功しました!",
 	"Copying to clipboard was successful!": "クリップボードへのコピーが成功しました!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "モデルを作成する",
 	"Create a model": "モデルを作成する",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "ウェブ検索を有効にする",
 	"Enable Web Search": "ウェブ検索を有効にする",
 	"Enabled": "有効",
 	"Enabled": "有効",
 	"Engine": "エンジン",
 	"Engine": "エンジン",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルに4つの列が含まれていることを確認してください: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルに4つの列が含まれていることを確認してください: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "{{role}} メッセージをここに入力してください",
 	"Enter {{role}} message here": "{{role}} メッセージをここに入力してください",
 	"Enter a detail about yourself for your LLMs to recall": "LLM が記憶するために、自分についての詳細を入力してください",
 	"Enter a detail about yourself for your LLMs to recall": "LLM が記憶するために、自分についての詳細を入力してください",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "კოპირება",
 	"Copy Link": "კოპირება",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "კლავიატურაზე კოპირება წარმატებით დასრულდა",
 	"Copying to clipboard was successful!": "კლავიატურაზე კოპირება წარმატებით დასრულდა",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "შექმენით მოდელი",
 	"Create a model": "შექმენით მოდელი",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "ვებ ძიების ჩართვა",
 	"Enable Web Search": "ვებ ძიების ჩართვა",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "გთხოვთ, უზრუნველყოთ, რომთქვევის CSV-ფაილი შეიცავს 4 ველი, ჩაწერილი ორივე ველი უდრის პირველი ველით.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "გთხოვთ, უზრუნველყოთ, რომთქვევის CSV-ფაილი შეიცავს 4 ველი, ჩაწერილი ორივე ველი უდრის პირველი ველით.",
 	"Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ",
 	"Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ",
 	"Enter a detail about yourself for your LLMs to recall": "შეიყვანე დეტალი ჩემთათვის, რომ ჩვენი LLMs-ს შეიძლოს აღაქვს",
 	"Enter a detail about yourself for your LLMs to recall": "შეიყვანე დეტალი ჩემთათვის, რომ ჩვენი LLMs-ს შეიძლოს აღაქვს",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "링크 복사",
 	"Copy Link": "링크 복사",
 	"Copy to clipboard": "클립보드에 복사",
 	"Copy to clipboard": "클립보드에 복사",
 	"Copying to clipboard was successful!": "성공적으로 클립보드에 복사되었습니다!",
 	"Copying to clipboard was successful!": "성공적으로 클립보드에 복사되었습니다!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "생성",
 	"Create": "생성",
 	"Create a knowledge base": "지식 기반 생성",
 	"Create a knowledge base": "지식 기반 생성",
 	"Create a model": "모델 생성",
 	"Create a model": "모델 생성",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "웹 검색 활성화",
 	"Enable Web Search": "웹 검색 활성화",
 	"Enabled": "활성화됨",
 	"Enabled": "활성화됨",
 	"Engine": "엔진",
 	"Engine": "엔진",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.",
 	"Enter {{role}} message here": "여기에 {{role}} 메시지 입력",
 	"Enter {{role}} message here": "여기에 {{role}} 메시지 입력",
 	"Enter a detail about yourself for your LLMs to recall": "자신에 대한 세부사항을 입력하여 LLM들이 기억할 수 있도록 하세요.",
 	"Enter a detail about yourself for your LLMs to recall": "자신에 대한 세부사항을 입력하여 LLM들이 기억할 수 있도록 하세요.",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopijuoti nuorodą",
 	"Copy Link": "Kopijuoti nuorodą",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
 	"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Sukurti modelį",
 	"Create a model": "Sukurti modelį",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Leisti paiešką internete",
 	"Enable Web Search": "Leisti paiešką internete",
 	"Enabled": "Leisti",
 	"Enabled": "Leisti",
 	"Engine": "Variklis",
 	"Engine": "Variklis",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Įveskite {{role}} žinutę čia",
 	"Enter {{role}} message here": "Įveskite {{role}} žinutę čia",
 	"Enter a detail about yourself for your LLMs to recall": "Įveskite informaciją apie save jūsų modelio atminčiai",
 	"Enter a detail about yourself for your LLMs to recall": "Įveskite informaciją apie save jūsų modelio atminčiai",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Salin Pautan",
 	"Copy Link": "Salin Pautan",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Menyalin ke papan klip berjaya!",
 	"Copying to clipboard was successful!": "Menyalin ke papan klip berjaya!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Cipta model",
 	"Create a model": "Cipta model",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Benarkan Carian Web",
 	"Enable Web Search": "Benarkan Carian Web",
 	"Enabled": "Dibenarkan",
 	"Enabled": "Dibenarkan",
 	"Engine": "Enjin",
 	"Engine": "Enjin",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.",
 	"Enter {{role}} message here": "Masukkan mesej {{role}} di sini",
 	"Enter {{role}} message here": "Masukkan mesej {{role}} di sini",
 	"Enter a detail about yourself for your LLMs to recall": "Masukkan butiran tentang diri anda untuk diingati oleh LLM anda",
 	"Enter a detail about yourself for your LLMs to recall": "Masukkan butiran tentang diri anda untuk diingati oleh LLM anda",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopier lenke",
 	"Copy Link": "Kopier lenke",
 	"Copy to clipboard": "Kopier til utklippstavle",
 	"Copy to clipboard": "Kopier til utklippstavle",
 	"Copying to clipboard was successful!": "Kopiert til utklippstavlen!",
 	"Copying to clipboard was successful!": "Kopiert til utklippstavlen!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Opprett",
 	"Create": "Opprett",
 	"Create a knowledge base": "Opprett en kunnskapsbase",
 	"Create a knowledge base": "Opprett en kunnskapsbase",
 	"Create a model": "Opprett en modell",
 	"Create a model": "Opprett en modell",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Aktiver websøk",
 	"Enable Web Search": "Aktiver websøk",
 	"Enabled": "Aktivert",
 	"Enabled": "Aktivert",
 	"Engine": "Motor",
 	"Engine": "Motor",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.",
 	"Enter {{role}} message here": "Skriv inn {{role}} melding her",
 	"Enter {{role}} message here": "Skriv inn {{role}} melding her",
 	"Enter a detail about yourself for your LLMs to recall": "Skriv inn en detalj om deg selv som språkmodellene dine kan huske",
 	"Enter a detail about yourself for your LLMs to recall": "Skriv inn en detalj om deg selv som språkmodellene dine kan huske",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopieer link",
 	"Copy Link": "Kopieer link",
 	"Copy to clipboard": "Kopier naar klembord",
 	"Copy to clipboard": "Kopier naar klembord",
 	"Copying to clipboard was successful!": "Kopiëren naar klembord was succesvol!",
 	"Copying to clipboard was successful!": "Kopiëren naar klembord was succesvol!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Aanmaken",
 	"Create": "Aanmaken",
 	"Create a knowledge base": "Maak een kennisbasis aan",
 	"Create a knowledge base": "Maak een kennisbasis aan",
 	"Create a model": "Een model maken",
 	"Create a model": "Een model maken",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Zoeken op het web inschakelen",
 	"Enable Web Search": "Zoeken op het web inschakelen",
 	"Enabled": "Ingeschakeld",
 	"Enabled": "Ingeschakeld",
 	"Engine": "Engine",
 	"Engine": "Engine",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.",
 	"Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
 	"Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
 	"Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",
 	"Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
 	"Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰਨਾ ਸਫਲ ਰਿਹਾ!",
 	"Copying to clipboard was successful!": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰਨਾ ਸਫਲ ਰਿਹਾ!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "ਇੱਕ ਮਾਡਲ ਬਣਾਓ",
 	"Create a model": "ਇੱਕ ਮਾਡਲ ਬਣਾਓ",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "ਵੈੱਬ ਖੋਜ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enable Web Search": "ਵੈੱਬ ਖੋਜ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।",
 	"Enter {{role}} message here": "{{role}} ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
 	"Enter {{role}} message here": "{{role}} ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
 	"Enter a detail about yourself for your LLMs to recall": "ਤੁਹਾਡੇ LLMs ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
 	"Enter a detail about yourself for your LLMs to recall": "ਤੁਹਾਡੇ LLMs ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopiuj link",
 	"Copy Link": "Kopiuj link",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Kopiowanie do schowka zakończone powodzeniem!",
 	"Copying to clipboard was successful!": "Kopiowanie do schowka zakończone powodzeniem!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Tworzenie modelu",
 	"Create a model": "Tworzenie modelu",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Włączanie wyszukiwania w Internecie",
 	"Enable Web Search": "Włączanie wyszukiwania w Internecie",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera 4 kolumny w następującym porządku: Nazwa, Email, Hasło, Rola.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera 4 kolumny w następującym porządku: Nazwa, Email, Hasło, Rola.",
 	"Enter {{role}} message here": "Wprowadź wiadomość {{role}} tutaj",
 	"Enter {{role}} message here": "Wprowadź wiadomość {{role}} tutaj",
 	"Enter a detail about yourself for your LLMs to recall": "Wprowadź szczegóły o sobie, aby LLMs mogli pamiętać",
 	"Enter a detail about yourself for your LLMs to recall": "Wprowadź szczegóły o sobie, aby LLMs mogli pamiętać",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Copiar Link",
 	"Copy Link": "Copiar Link",
 	"Copy to clipboard": "Copiar para a área de transferência",
 	"Copy to clipboard": "Copiar para a área de transferência",
 	"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
 	"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Criar",
 	"Create": "Criar",
 	"Create a knowledge base": "Criar uma base de conhecimento",
 	"Create a knowledge base": "Criar uma base de conhecimento",
 	"Create a model": "Criar um modelo",
 	"Create a model": "Criar um modelo",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Ativar Pesquisa na Web",
 	"Enable Web Search": "Ativar Pesquisa na Web",
 	"Enabled": "Ativado",
 	"Enabled": "Ativado",
 	"Engine": "Motor",
 	"Engine": "Motor",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
 	"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
 	"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
 	"Enter a detail about yourself for your LLMs to recall": "Digite um detalhe sobre você para seus LLMs lembrarem",
 	"Enter a detail about yourself for your LLMs to recall": "Digite um detalhe sobre você para seus LLMs lembrarem",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Copiar link",
 	"Copy Link": "Copiar link",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
 	"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Criar um modelo",
 	"Create a model": "Criar um modelo",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Ativar pesquisa na Web",
 	"Enable Web Search": "Ativar pesquisa na Web",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.",
 	"Enter {{role}} message here": "Escreva a mensagem de {{role}} aqui",
 	"Enter {{role}} message here": "Escreva a mensagem de {{role}} aqui",
 	"Enter a detail about yourself for your LLMs to recall": "Escreva um detalhe sobre você para que os seus LLMs possam lembrar-se",
 	"Enter a detail about yourself for your LLMs to recall": "Escreva um detalhe sobre você para que os seus LLMs possam lembrar-se",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Copiază Link",
 	"Copy Link": "Copiază Link",
 	"Copy to clipboard": "Copiază în clipboard",
 	"Copy to clipboard": "Copiază în clipboard",
 	"Copying to clipboard was successful!": "Copierea în clipboard a fost realizată cu succes!",
 	"Copying to clipboard was successful!": "Copierea în clipboard a fost realizată cu succes!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Creează un model",
 	"Create a model": "Creează un model",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Activează Căutarea pe Web",
 	"Enable Web Search": "Activează Căutarea pe Web",
 	"Enabled": "Activat",
 	"Enabled": "Activat",
 	"Engine": "Motor",
 	"Engine": "Motor",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.",
 	"Enter {{role}} message here": "Introduceți mesajul pentru {{role}} aici",
 	"Enter {{role}} message here": "Introduceți mesajul pentru {{role}} aici",
 	"Enter a detail about yourself for your LLMs to recall": "Introduceți un detaliu despre dvs. pe care LLM-urile să-l rețină",
 	"Enter a detail about yourself for your LLMs to recall": "Introduceți un detaliu despre dvs. pe care LLM-urile să-l rețină",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Копировать ссылку",
 	"Copy Link": "Копировать ссылку",
 	"Copy to clipboard": "Скопировать в буфер обмена",
 	"Copy to clipboard": "Скопировать в буфер обмена",
 	"Copying to clipboard was successful!": "Копирование в буфер обмена прошло успешно!",
 	"Copying to clipboard was successful!": "Копирование в буфер обмена прошло успешно!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Создать",
 	"Create": "Создать",
 	"Create a knowledge base": "Создайте базу знаний",
 	"Create a knowledge base": "Создайте базу знаний",
 	"Create a model": "Создание модели",
 	"Create a model": "Создание модели",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Включить поиск в Интернете",
 	"Enable Web Search": "Включить поиск в Интернете",
 	"Enabled": "Включено",
 	"Enabled": "Включено",
 	"Engine": "Движок",
 	"Engine": "Движок",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.",
 	"Enter {{role}} message here": "Введите сообщение {{role}} здесь",
 	"Enter {{role}} message here": "Введите сообщение {{role}} здесь",
 	"Enter a detail about yourself for your LLMs to recall": "Введите детали о себе, чтобы LLMs могли запомнить",
 	"Enter a detail about yourself for your LLMs to recall": "Введите детали о себе, чтобы LLMs могли запомнить",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopírovať odkaz",
 	"Copy Link": "Kopírovať odkaz",
 	"Copy to clipboard": "Kopírovať do schránky",
 	"Copy to clipboard": "Kopírovať do schránky",
 	"Copying to clipboard was successful!": "Kopírovanie do schránky bolo úspešné!",
 	"Copying to clipboard was successful!": "Kopírovanie do schránky bolo úspešné!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Vytvoriť",
 	"Create": "Vytvoriť",
 	"Create a knowledge base": "Vytvoriť knowledge base",
 	"Create a knowledge base": "Vytvoriť knowledge base",
 	"Create a model": "Vytvoriť model",
 	"Create a model": "Vytvoriť model",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Povoliť webové vyhľadávanie",
 	"Enable Web Search": "Povoliť webové vyhľadávanie",
 	"Enabled": "Povolené",
 	"Enabled": "Povolené",
 	"Engine": "Engine",
 	"Engine": "Engine",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Zadajte správu {{role}} sem",
 	"Enter {{role}} message here": "Zadajte správu {{role}} sem",
 	"Enter a detail about yourself for your LLMs to recall": "Zadajte podrobnosť o sebe, ktorú si vaše LLM majú zapamätať.",
 	"Enter a detail about yourself for your LLMs to recall": "Zadajte podrobnosť o sebe, ktorú si vaše LLM majú zapamätať.",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Копирај везу",
 	"Copy Link": "Копирај везу",
 	"Copy to clipboard": "Копирај у оставу",
 	"Copy to clipboard": "Копирај у оставу",
 	"Copying to clipboard was successful!": "Успешно копирање у оставу!",
 	"Copying to clipboard was successful!": "Успешно копирање у оставу!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Направи",
 	"Create": "Направи",
 	"Create a knowledge base": "Направи базу знања",
 	"Create a knowledge base": "Направи базу знања",
 	"Create a model": "Креирање модела",
 	"Create a model": "Креирање модела",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Омогући Wеб претрагу",
 	"Enable Web Search": "Омогући Wеб претрагу",
 	"Enabled": "Омогућено",
 	"Enabled": "Омогућено",
 	"Engine": "Мотор",
 	"Engine": "Мотор",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.",
 	"Enter {{role}} message here": "Унесите {{role}} поруку овде",
 	"Enter {{role}} message here": "Унесите {{role}} поруку овде",
 	"Enter a detail about yourself for your LLMs to recall": "Унесите детаље за себе да ће LLMs преузимати",
 	"Enter a detail about yourself for your LLMs to recall": "Унесите детаље за себе да ће LLMs преузимати",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Kopiera länk",
 	"Copy Link": "Kopiera länk",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Kopiering till urklipp lyckades!",
 	"Copying to clipboard was successful!": "Kopiering till urklipp lyckades!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Skapa en modell",
 	"Create a model": "Skapa en modell",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Aktivera webbsökning",
 	"Enable Web Search": "Aktivera webbsökning",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Skriv {{role}} meddelande här",
 	"Enter {{role}} message here": "Skriv {{role}} meddelande här",
 	"Enter a detail about yourself for your LLMs to recall": "Skriv en detalj om dig själv för att dina LLMs ska komma ihåg",
 	"Enter a detail about yourself for your LLMs to recall": "Skriv en detalj om dig själv för att dina LLMs ska komma ihåg",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "คัดลอกลิงก์",
 	"Copy Link": "คัดลอกลิงก์",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "คัดลอกไปยังคลิปบอร์ดสำเร็จแล้ว!",
 	"Copying to clipboard was successful!": "คัดลอกไปยังคลิปบอร์ดสำเร็จแล้ว!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "สร้างโมเดล",
 	"Create a model": "สร้างโมเดล",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "เปิดใช้งานการค้นหาเว็บ",
 	"Enable Web Search": "เปิดใช้งานการค้นหาเว็บ",
 	"Enabled": "เปิดใช้งาน",
 	"Enabled": "เปิดใช้งาน",
 	"Engine": "เครื่องยนต์",
 	"Engine": "เครื่องยนต์",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท",
 	"Enter {{role}} message here": "ใส่ข้อความ {{role}} ที่นี่",
 	"Enter {{role}} message here": "ใส่ข้อความ {{role}} ที่นี่",
 	"Enter a detail about yourself for your LLMs to recall": "ใส่รายละเอียดเกี่ยวกับตัวคุณสำหรับ LLMs ของคุณให้จดจำ",
 	"Enter a detail about yourself for your LLMs to recall": "ใส่รายละเอียดเกี่ยวกับตัวคุณสำหรับ LLMs ของคุณให้จดจำ",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "",
 	"Copy Link": "",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "",
 	"Copying to clipboard was successful!": "",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "",
 	"Create a model": "",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "",
 	"Enable Web Search": "",
 	"Enabled": "",
 	"Enabled": "",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
 	"Enter {{role}} message here": "",
 	"Enter {{role}} message here": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter a detail about yourself for your LLMs to recall": "",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Bağlantıyı Kopyala",
 	"Copy Link": "Bağlantıyı Kopyala",
 	"Copy to clipboard": "Panoya kopyala",
 	"Copy to clipboard": "Panoya kopyala",
 	"Copying to clipboard was successful!": "Panoya kopyalama başarılı!",
 	"Copying to clipboard was successful!": "Panoya kopyalama başarılı!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Oluştur",
 	"Create": "Oluştur",
 	"Create a knowledge base": "Bir bilgi tabanı oluştur",
 	"Create a knowledge base": "Bir bilgi tabanı oluştur",
 	"Create a model": "Bir model oluştur",
 	"Create a model": "Bir model oluştur",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Web Aramasını Etkinleştir",
 	"Enable Web Search": "Web Aramasını Etkinleştir",
 	"Enabled": "Etkin",
 	"Enabled": "Etkin",
 	"Engine": "Motor",
 	"Engine": "Motor",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.",
 	"Enter {{role}} message here": "Buraya {{role}} mesajını girin",
 	"Enter {{role}} message here": "Buraya {{role}} mesajını girin",
 	"Enter a detail about yourself for your LLMs to recall": "LLM'lerinizin hatırlaması için kendiniz hakkında bir bilgi girin",
 	"Enter a detail about yourself for your LLMs to recall": "LLM'lerinizin hatırlaması için kendiniz hakkında bir bilgi girin",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Копіювати посилання",
 	"Copy Link": "Копіювати посилання",
 	"Copy to clipboard": "Копіювати в буфер обміну",
 	"Copy to clipboard": "Копіювати в буфер обміну",
 	"Copying to clipboard was successful!": "Копіювання в буфер обміну виконано успішно!",
 	"Copying to clipboard was successful!": "Копіювання в буфер обміну виконано успішно!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "Створити",
 	"Create": "Створити",
 	"Create a knowledge base": "Створити базу знань",
 	"Create a knowledge base": "Створити базу знань",
 	"Create a model": "Створити модель",
 	"Create a model": "Створити модель",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Увімкнути веб-пошук",
 	"Enable Web Search": "Увімкнути веб-пошук",
 	"Enabled": "Увімкнено",
 	"Enabled": "Увімкнено",
 	"Engine": "Рушій",
 	"Engine": "Рушій",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.",
 	"Enter {{role}} message here": "Введіть повідомлення {{role}} тут",
 	"Enter {{role}} message here": "Введіть повідомлення {{role}} тут",
 	"Enter a detail about yourself for your LLMs to recall": "Введіть відомості про себе для запам'ятовування вашими LLM.",
 	"Enter a detail about yourself for your LLMs to recall": "Введіть відомості про себе для запам'ятовування вашими LLM.",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "لنک کاپی کریں",
 	"Copy Link": "لنک کاپی کریں",
 	"Copy to clipboard": "کلپ بورڈ پر کاپی کریں",
 	"Copy to clipboard": "کلپ بورڈ پر کاپی کریں",
 	"Copying to clipboard was successful!": "کلپ بورڈ میں کاپی کامیاب ہوئی!",
 	"Copying to clipboard was successful!": "کلپ بورڈ میں کاپی کامیاب ہوئی!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "ماڈل بنائیں",
 	"Create a model": "ماڈل بنائیں",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "ویب تلاش فعال کریں",
 	"Enable Web Search": "ویب تلاش فعال کریں",
 	"Enabled": "فعال کردیا گیا ہے",
 	"Enabled": "فعال کردیا گیا ہے",
 	"Engine": "انجن",
 	"Engine": "انجن",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار",
 	"Enter {{role}} message here": "یہاں {{کردار}} پیغام درج کریں",
 	"Enter {{role}} message here": "یہاں {{کردار}} پیغام درج کریں",
 	"Enter a detail about yourself for your LLMs to recall": "اپنی ذات کے بارے میں کوئی تفصیل درج کریں تاکہ آپ کے LLMs اسے یاد رکھ سکیں",
 	"Enter a detail about yourself for your LLMs to recall": "اپنی ذات کے بارے میں کوئی تفصیل درج کریں تاکہ آپ کے LLMs اسے یاد رکھ سکیں",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "Sao chép link",
 	"Copy Link": "Sao chép link",
 	"Copy to clipboard": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Sao chép vào clipboard thành công!",
 	"Copying to clipboard was successful!": "Sao chép vào clipboard thành công!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "",
 	"Create": "",
 	"Create a knowledge base": "",
 	"Create a knowledge base": "",
 	"Create a model": "Tạo model",
 	"Create a model": "Tạo model",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "Cho phép tìm kiếm Web",
 	"Enable Web Search": "Cho phép tìm kiếm Web",
 	"Enabled": "Đã bật",
 	"Enabled": "Đã bật",
 	"Engine": "",
 	"Engine": "",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.",
 	"Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây",
 	"Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây",
 	"Enter a detail about yourself for your LLMs to recall": "Nhập chi tiết về bản thân của bạn để LLMs có thể nhớ",
 	"Enter a detail about yourself for your LLMs to recall": "Nhập chi tiết về bản thân của bạn để LLMs có thể nhớ",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "复制链接",
 	"Copy Link": "复制链接",
 	"Copy to clipboard": "复制到剪贴板",
 	"Copy to clipboard": "复制到剪贴板",
 	"Copying to clipboard was successful!": "成功复制到剪贴板!",
 	"Copying to clipboard was successful!": "成功复制到剪贴板!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "创建",
 	"Create": "创建",
 	"Create a knowledge base": "创建知识库",
 	"Create a knowledge base": "创建知识库",
 	"Create a model": "创建一个模型",
 	"Create a model": "创建一个模型",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "启用联网搜索",
 	"Enable Web Search": "启用联网搜索",
 	"Enabled": "启用",
 	"Enabled": "启用",
 	"Engine": "引擎",
 	"Engine": "引擎",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列: 姓名、电子邮箱、密码、角色。",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列: 姓名、电子邮箱、密码、角色。",
 	"Enter {{role}} message here": "在此处输入 {{role}} 的对话内容",
 	"Enter {{role}} message here": "在此处输入 {{role}} 的对话内容",
 	"Enter a detail about yourself for your LLMs to recall": "输入一个关于你自己的详细信息,方便你的大语言模型记住这些内容",
 	"Enter a detail about yourself for your LLMs to recall": "输入一个关于你自己的详细信息,方便你的大语言模型记住这些内容",

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

@@ -220,6 +220,7 @@
 	"Copy Link": "複製連結",
 	"Copy Link": "複製連結",
 	"Copy to clipboard": "複製到剪貼簿",
 	"Copy to clipboard": "複製到剪貼簿",
 	"Copying to clipboard was successful!": "成功複製到剪貼簿!",
 	"Copying to clipboard was successful!": "成功複製到剪貼簿!",
+	"CORS must be properly configured by the provider to allow requests from Open WebUI.": "",
 	"Create": "建立",
 	"Create": "建立",
 	"Create a knowledge base": "建立知識",
 	"Create a knowledge base": "建立知識",
 	"Create a model": "建立模型",
 	"Create a model": "建立模型",
@@ -345,7 +346,6 @@
 	"Enable Web Search": "啟用網頁搜尋",
 	"Enable Web Search": "啟用網頁搜尋",
 	"Enabled": "已啟用",
 	"Enabled": "已啟用",
 	"Engine": "引擎",
 	"Engine": "引擎",
-	"Ensure that CORS is properly configured to allow requests from Open WebUI.": "",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
 	"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
 	"Enter {{role}} message here": "在此輸入 {{role}} 訊息",
 	"Enter {{role}} message here": "在此輸入 {{role}} 訊息",
 	"Enter a detail about yourself for your LLMs to recall": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來",
 	"Enter a detail about yourself for your LLMs to recall": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來",