Browse Source

chore: format

Timothy Jaeryang Baek 2 months ago
parent
commit
70b8199030
60 changed files with 426 additions and 230 deletions
  1. 13 6
      backend/open_webui/env.py
  2. 2 2
      src/lib/components/admin/Users/UserList.svelte
  3. 2 2
      src/lib/components/admin/Users/UserList/EditUserModal.svelte
  4. 2 2
      src/lib/components/admin/Users/UserList/UserChatsModal.svelte
  5. 4 8
      src/lib/components/channel/Messages/Message.svelte
  6. 2 2
      src/lib/components/chat/Messages/MultiResponseMessages.svelte
  7. 2 2
      src/lib/components/chat/Messages/UserMessage.svelte
  8. 2 2
      src/lib/components/chat/Settings/Personalization/ManageModal.svelte
  9. 2 2
      src/lib/components/layout/Sidebar/ArchivedChatsModal.svelte
  10. 1 4
      src/lib/components/workspace/Models/ModelEditor.svelte
  11. 8 4
      src/lib/i18n/locales/ar-BH/translation.json
  12. 8 4
      src/lib/i18n/locales/bg-BG/translation.json
  13. 8 4
      src/lib/i18n/locales/bn-BD/translation.json
  14. 8 4
      src/lib/i18n/locales/ca-ES/translation.json
  15. 8 4
      src/lib/i18n/locales/ceb-PH/translation.json
  16. 8 4
      src/lib/i18n/locales/cs-CZ/translation.json
  17. 8 4
      src/lib/i18n/locales/da-DK/translation.json
  18. 8 4
      src/lib/i18n/locales/de-DE/translation.json
  19. 8 4
      src/lib/i18n/locales/dg-DG/translation.json
  20. 8 4
      src/lib/i18n/locales/el-GR/translation.json
  21. 8 4
      src/lib/i18n/locales/en-GB/translation.json
  22. 8 4
      src/lib/i18n/locales/en-US/translation.json
  23. 8 4
      src/lib/i18n/locales/es-ES/translation.json
  24. 8 4
      src/lib/i18n/locales/eu-ES/translation.json
  25. 8 4
      src/lib/i18n/locales/fa-IR/translation.json
  26. 8 4
      src/lib/i18n/locales/fi-FI/translation.json
  27. 8 4
      src/lib/i18n/locales/fr-CA/translation.json
  28. 8 4
      src/lib/i18n/locales/fr-FR/translation.json
  29. 8 4
      src/lib/i18n/locales/he-IL/translation.json
  30. 8 4
      src/lib/i18n/locales/hi-IN/translation.json
  31. 8 4
      src/lib/i18n/locales/hr-HR/translation.json
  32. 8 4
      src/lib/i18n/locales/hu-HU/translation.json
  33. 8 4
      src/lib/i18n/locales/id-ID/translation.json
  34. 8 4
      src/lib/i18n/locales/ie-GA/translation.json
  35. 8 4
      src/lib/i18n/locales/it-IT/translation.json
  36. 8 4
      src/lib/i18n/locales/ja-JP/translation.json
  37. 8 4
      src/lib/i18n/locales/ka-GE/translation.json
  38. 8 4
      src/lib/i18n/locales/ko-KR/translation.json
  39. 8 4
      src/lib/i18n/locales/lt-LT/translation.json
  40. 8 4
      src/lib/i18n/locales/ms-MY/translation.json
  41. 8 4
      src/lib/i18n/locales/nb-NO/translation.json
  42. 8 4
      src/lib/i18n/locales/nl-NL/translation.json
  43. 8 4
      src/lib/i18n/locales/pa-IN/translation.json
  44. 8 4
      src/lib/i18n/locales/pl-PL/translation.json
  45. 8 4
      src/lib/i18n/locales/pt-BR/translation.json
  46. 8 4
      src/lib/i18n/locales/pt-PT/translation.json
  47. 8 4
      src/lib/i18n/locales/ro-RO/translation.json
  48. 8 4
      src/lib/i18n/locales/ru-RU/translation.json
  49. 8 4
      src/lib/i18n/locales/sk-SK/translation.json
  50. 8 4
      src/lib/i18n/locales/sr-RS/translation.json
  51. 8 4
      src/lib/i18n/locales/sv-SE/translation.json
  52. 8 4
      src/lib/i18n/locales/th-TH/translation.json
  53. 8 4
      src/lib/i18n/locales/tk-TW/translation.json
  54. 8 4
      src/lib/i18n/locales/tr-TR/translation.json
  55. 8 4
      src/lib/i18n/locales/uk-UA/translation.json
  56. 8 4
      src/lib/i18n/locales/ur-PK/translation.json
  57. 8 4
      src/lib/i18n/locales/vi-VN/translation.json
  58. 8 4
      src/lib/i18n/locales/zh-CN/translation.json
  59. 8 4
      src/lib/i18n/locales/zh-TW/translation.json
  60. 2 2
      src/routes/s/[id]/+page.svelte

+ 13 - 6
backend/open_webui/env.py

@@ -358,14 +358,21 @@ WEBUI_SECRET_KEY = os.environ.get(
 
 
 WEBUI_SESSION_COOKIE_SAME_SITE = os.environ.get("WEBUI_SESSION_COOKIE_SAME_SITE", "lax")
 WEBUI_SESSION_COOKIE_SAME_SITE = os.environ.get("WEBUI_SESSION_COOKIE_SAME_SITE", "lax")
 
 
-WEBUI_SESSION_COOKIE_SECURE = os.environ.get("WEBUI_SESSION_COOKIE_SECURE", "false").lower() == "true"
+WEBUI_SESSION_COOKIE_SECURE = (
+    os.environ.get("WEBUI_SESSION_COOKIE_SECURE", "false").lower() == "true"
+)
 
 
-WEBUI_AUTH_COOKIE_SAME_SITE = os.environ.get("WEBUI_AUTH_COOKIE_SAME_SITE", WEBUI_SESSION_COOKIE_SAME_SITE)
+WEBUI_AUTH_COOKIE_SAME_SITE = os.environ.get(
+    "WEBUI_AUTH_COOKIE_SAME_SITE", WEBUI_SESSION_COOKIE_SAME_SITE
+)
 
 
-WEBUI_AUTH_COOKIE_SECURE = os.environ.get(
-    "WEBUI_AUTH_COOKIE_SECURE", 
-    os.environ.get("WEBUI_SESSION_COOKIE_SECURE", "false")
-).lower() == "true"
+WEBUI_AUTH_COOKIE_SECURE = (
+    os.environ.get(
+        "WEBUI_AUTH_COOKIE_SECURE",
+        os.environ.get("WEBUI_SESSION_COOKIE_SECURE", "false"),
+    ).lower()
+    == "true"
+)
 
 
 if WEBUI_AUTH and WEBUI_SECRET_KEY == "":
 if WEBUI_AUTH and WEBUI_SECRET_KEY == "":
     raise ValueError(ERROR_MESSAGES.ENV_VAR_NOT_FOUND)
     raise ValueError(ERROR_MESSAGES.ENV_VAR_NOT_FOUND)

+ 2 - 2
src/lib/components/admin/Users/UserList.svelte

@@ -6,9 +6,9 @@
 
 
 	import dayjs from 'dayjs';
 	import dayjs from 'dayjs';
 	import relativeTime from 'dayjs/plugin/relativeTime';
 	import relativeTime from 'dayjs/plugin/relativeTime';
-    import localizedFormat from 'dayjs/plugin/localizedFormat';
+	import localizedFormat from 'dayjs/plugin/localizedFormat';
 	dayjs.extend(relativeTime);
 	dayjs.extend(relativeTime);
-    dayjs.extend(localizedFormat);
+	dayjs.extend(localizedFormat);
 
 
 	import { toast } from 'svelte-sonner';
 	import { toast } from 'svelte-sonner';
 
 

+ 2 - 2
src/lib/components/admin/Users/UserList/EditUserModal.svelte

@@ -7,11 +7,11 @@
 	import { updateUserById } from '$lib/apis/users';
 	import { updateUserById } from '$lib/apis/users';
 
 
 	import Modal from '$lib/components/common/Modal.svelte';
 	import Modal from '$lib/components/common/Modal.svelte';
-    import localizedFormat from 'dayjs/plugin/localizedFormat';
+	import localizedFormat from 'dayjs/plugin/localizedFormat';
 
 
 	const i18n = getContext('i18n');
 	const i18n = getContext('i18n');
 	const dispatch = createEventDispatcher();
 	const dispatch = createEventDispatcher();
-    dayjs.extend(localizedFormat);
+	dayjs.extend(localizedFormat);
 
 
 	export let show = false;
 	export let show = false;
 	export let selectedUser;
 	export let selectedUser;

+ 2 - 2
src/lib/components/admin/Users/UserList/UserChatsModal.svelte

@@ -2,10 +2,10 @@
 	import { toast } from 'svelte-sonner';
 	import { toast } from 'svelte-sonner';
 	import dayjs from 'dayjs';
 	import dayjs from 'dayjs';
 	import { getContext, createEventDispatcher } from 'svelte';
 	import { getContext, createEventDispatcher } from 'svelte';
-    import localizedFormat from 'dayjs/plugin/localizedFormat';
+	import localizedFormat from 'dayjs/plugin/localizedFormat';
 
 
 	const dispatch = createEventDispatcher();
 	const dispatch = createEventDispatcher();
-    dayjs.extend(localizedFormat);
+	dayjs.extend(localizedFormat);
 
 
 	import { getChatListByUserId, deleteChatById, getArchivedChatList } from '$lib/apis/chats';
 	import { getChatListByUserId, deleteChatById, getArchivedChatList } from '$lib/apis/chats';
 
 

+ 4 - 8
src/lib/components/channel/Messages/Message.svelte

@@ -3,12 +3,12 @@
 	import relativeTime from 'dayjs/plugin/relativeTime';
 	import relativeTime from 'dayjs/plugin/relativeTime';
 	import isToday from 'dayjs/plugin/isToday';
 	import isToday from 'dayjs/plugin/isToday';
 	import isYesterday from 'dayjs/plugin/isYesterday';
 	import isYesterday from 'dayjs/plugin/isYesterday';
-    import localizedFormat from 'dayjs/plugin/localizedFormat';
+	import localizedFormat from 'dayjs/plugin/localizedFormat';
 
 
 	dayjs.extend(relativeTime);
 	dayjs.extend(relativeTime);
 	dayjs.extend(isToday);
 	dayjs.extend(isToday);
 	dayjs.extend(isYesterday);
 	dayjs.extend(isYesterday);
-    dayjs.extend(localizedFormat);
+	dayjs.extend(localizedFormat);
 
 
 	import { getContext, onMount } from 'svelte';
 	import { getContext, onMount } from 'svelte';
 	const i18n = getContext<Writable<i18nType>>('i18n');
 	const i18n = getContext<Writable<i18nType>>('i18n');
@@ -155,9 +155,7 @@
 						<div
 						<div
 							class="mt-1.5 flex flex-shrink-0 items-center text-xs self-center invisible group-hover:visible text-gray-500 font-medium first-letter:capitalize"
 							class="mt-1.5 flex flex-shrink-0 items-center text-xs self-center invisible group-hover:visible text-gray-500 font-medium first-letter:capitalize"
 						>
 						>
-							<Tooltip
-								content={dayjs(message.created_at / 1000000).format('LLLL')}
-							>
+							<Tooltip content={dayjs(message.created_at / 1000000).format('LLLL')}>
 								{dayjs(message.created_at / 1000000).format('LT')}
 								{dayjs(message.created_at / 1000000).format('LT')}
 							</Tooltip>
 							</Tooltip>
 						</div>
 						</div>
@@ -176,9 +174,7 @@
 							<div
 							<div
 								class=" self-center text-xs invisible group-hover:visible text-gray-400 font-medium first-letter:capitalize ml-0.5 translate-y-[1px]"
 								class=" self-center text-xs invisible group-hover:visible text-gray-400 font-medium first-letter:capitalize ml-0.5 translate-y-[1px]"
 							>
 							>
-								<Tooltip
-									content={dayjs(message.created_at / 1000000).format('LLLL')}
-								>
+								<Tooltip content={dayjs(message.created_at / 1000000).format('LLLL')}>
 									<span class="line-clamp-1">{formatDate(message.created_at / 1000000)}</span>
 									<span class="line-clamp-1">{formatDate(message.created_at / 1000000)}</span>
 								</Tooltip>
 								</Tooltip>
 							</div>
 							</div>

+ 2 - 2
src/lib/components/chat/Messages/MultiResponseMessages.svelte

@@ -16,9 +16,9 @@
 	import Markdown from './Markdown.svelte';
 	import Markdown from './Markdown.svelte';
 	import Name from './Name.svelte';
 	import Name from './Name.svelte';
 	import Skeleton from './Skeleton.svelte';
 	import Skeleton from './Skeleton.svelte';
-    import localizedFormat from 'dayjs/plugin/localizedFormat';
+	import localizedFormat from 'dayjs/plugin/localizedFormat';
 	const i18n = getContext('i18n');
 	const i18n = getContext('i18n');
-    dayjs.extend(localizedFormat);
+	dayjs.extend(localizedFormat);
 
 
 	export let chatId;
 	export let chatId;
 	export let history;
 	export let history;

+ 2 - 2
src/lib/components/chat/Messages/UserMessage.svelte

@@ -13,10 +13,10 @@
 	import FileItem from '$lib/components/common/FileItem.svelte';
 	import FileItem from '$lib/components/common/FileItem.svelte';
 	import Markdown from './Markdown.svelte';
 	import Markdown from './Markdown.svelte';
 	import Image from '$lib/components/common/Image.svelte';
 	import Image from '$lib/components/common/Image.svelte';
-    import localizedFormat from 'dayjs/plugin/localizedFormat';
+	import localizedFormat from 'dayjs/plugin/localizedFormat';
 
 
 	const i18n = getContext('i18n');
 	const i18n = getContext('i18n');
-    dayjs.extend(localizedFormat);
+	dayjs.extend(localizedFormat);
 
 
 	export let user;
 	export let user;
 
 

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

@@ -11,10 +11,10 @@
 	import Tooltip from '$lib/components/common/Tooltip.svelte';
 	import Tooltip from '$lib/components/common/Tooltip.svelte';
 	import { error } from '@sveltejs/kit';
 	import { error } from '@sveltejs/kit';
 	import EditMemoryModal from './EditMemoryModal.svelte';
 	import EditMemoryModal from './EditMemoryModal.svelte';
-    import localizedFormat from 'dayjs/plugin/localizedFormat';
+	import localizedFormat from 'dayjs/plugin/localizedFormat';
 
 
 	const i18n = getContext('i18n');
 	const i18n = getContext('i18n');
-    dayjs.extend(localizedFormat);
+	dayjs.extend(localizedFormat);
 
 
 	export let show = false;
 	export let show = false;
 
 

+ 2 - 2
src/lib/components/layout/Sidebar/ArchivedChatsModal.svelte

@@ -4,9 +4,9 @@
 	import { toast } from 'svelte-sonner';
 	import { toast } from 'svelte-sonner';
 	import dayjs from 'dayjs';
 	import dayjs from 'dayjs';
 	import { getContext, createEventDispatcher } from 'svelte';
 	import { getContext, createEventDispatcher } from 'svelte';
-    import localizedFormat from 'dayjs/plugin/localizedFormat';
+	import localizedFormat from 'dayjs/plugin/localizedFormat';
 
 
-    dayjs.extend(localizedFormat);
+	dayjs.extend(localizedFormat);
 
 
 	const dispatch = createEventDispatcher();
 	const dispatch = createEventDispatcher();
 
 

+ 1 - 4
src/lib/components/workspace/Models/ModelEditor.svelte

@@ -531,10 +531,7 @@
 
 
 					<div class="my-2">
 					<div class="my-2">
 						<div class="px-3 py-2 bg-gray-50 dark:bg-gray-950 rounded-lg">
 						<div class="px-3 py-2 bg-gray-50 dark:bg-gray-950 rounded-lg">
-							<AccessControl 
-							bind:accessControl 
-							accessRoles={['read', 'write']}
-							/>
+							<AccessControl bind:accessControl accessRoles={['read', 'write']} />
 						</div>
 						</div>
 					</div>
 					</div>
 
 

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "مساعد",
 	"an assistant": "مساعد",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "و",
 	"and": "و",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "و أنشئ رابط مشترك جديد.",
 	"and create a new shared link.": "و أنشئ رابط مشترك جديد.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "استنساخ",
 	"Clone": "استنساخ",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "أغلق",
 	"Close": "أغلق",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "مجموعة",
 	"Collection": "مجموعة",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "الساعة:الدقائق صباحا/مساء",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "ليس لديه محادثات.",
 	"has no conversations.": "ليس لديه محادثات.",
 	"Hello, {{name}}": " {{name}} مرحبا",
 	"Hello, {{name}}": " {{name}} مرحبا",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "تم تحميل النموذج '{{modelName}}' بنجاح",
 	"Model '{{modelName}}' has been successfully downloaded.": "تم تحميل النموذج '{{modelName}}' بنجاح",
 	"Model '{{modelTag}}' is already in queue for downloading.": "النموذج '{{modelTag}}' موجود بالفعل في قائمة الانتظار للتحميل",
 	"Model '{{modelTag}}' is already in queue for downloading.": "النموذج '{{modelTag}}' موجود بالفعل في قائمة الانتظار للتحميل",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "موقف ايجابي",
 	"Positive attitude": "موقف ايجابي",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "لا تملك محادثات محفوظه",
 	"You have no archived conversations.": "لا تملك محادثات محفوظه",
 	"You have shared this chat": "تم مشاركة هذه المحادثة",
 	"You have shared this chat": "تم مشاركة هذه المحادثة",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "асистент",
 	"an assistant": "асистент",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "и",
 	"and": "и",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "и създай нов общ линк.",
 	"and create a new shared link.": "и създай нов общ линк.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Клонинг",
 	"Clone": "Клонинг",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Затвори",
 	"Close": "Затвори",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Колекция",
 	"Collection": "Колекция",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "няма разговори.",
 	"has no conversations.": "няма разговори.",
 	"Hello, {{name}}": "Здравей, {{name}}",
 	"Hello, {{name}}": "Здравей, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Моделът '{{modelName}}' беше успешно свален.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Моделът '{{modelName}}' беше успешно свален.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Моделът '{{modelTag}}' е вече в очакване за сваляне.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Моделът '{{modelTag}}' е вече в очакване за сваляне.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Позитивна ативност",
 	"Positive attitude": "Позитивна ативност",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Нямате архивирани разговори.",
 	"You have no archived conversations.": "Нямате архивирани разговори.",
 	"You have shared this chat": "Вие сте споделели този чат",
 	"You have shared this chat": "Вие сте споделели този чат",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "একটা এসিস্ট্যান্ট",
 	"an assistant": "একটা এসিস্ট্যান্ট",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "এবং",
 	"and": "এবং",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "এবং একটি নতুন শেয়ারে লিংক তৈরি করুন.",
 	"and create a new shared link.": "এবং একটি নতুন শেয়ারে লিংক তৈরি করুন.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "ক্লোন",
 	"Clone": "ক্লোন",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "বন্ধ",
 	"Close": "বন্ধ",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "সংগ্রহ",
 	"Collection": "সংগ্রহ",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "কোন কনভার্সেশন আছে না।",
 	"has no conversations.": "কোন কনভার্সেশন আছে না।",
 	"Hello, {{name}}": "হ্যালো, {{name}}",
 	"Hello, {{name}}": "হ্যালো, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' মডেল সফলভাবে ডাউনলোড হয়েছে।",
 	"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' মডেল সফলভাবে ডাউনলোড হয়েছে।",
 	"Model '{{modelTag}}' is already in queue for downloading.": "{{modelTag}} ডাউনলোডের জন্য আগে থেকেই অপেক্ষমান আছে।",
 	"Model '{{modelTag}}' is already in queue for downloading.": "{{modelTag}} ডাউনলোডের জন্য আগে থেকেই অপেক্ষমান আছে।",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "পজিটিভ আক্রমণ",
 	"Positive attitude": "পজিটিভ আক্রমণ",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "আপনার কোনও আর্কাইভ করা কথোপকথন নেই।",
 	"You have no archived conversations.": "আপনার কোনও আর্কাইভ করা কথোপকথন নেই।",
 	"You have shared this chat": "আপনি এই চ্যাটটি শেয়ার করেছেন",
 	"You have shared this chat": "আপনি এই চ্যাটটি শেয়ার করেছেন",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa al top_p, i pretén garantir un equilibri de qualitat i varietat. El paràmetre p representa la probabilitat mínima que es consideri un token, en relació amb la probabilitat del token més probable. Per exemple, amb p=0,05 i el token més probable amb una probabilitat de 0,9, es filtren els logits amb un valor inferior a 0,045. (Per defecte: 0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa al top_p, i pretén garantir un equilibri de qualitat i varietat. El paràmetre p representa la probabilitat mínima que es consideri un token, en relació amb la probabilitat del token més probable. Per exemple, amb p=0,05 i el token més probable amb una probabilitat de 0,9, es filtren els logits amb un valor inferior a 0,045. (Per defecte: 0.0)",
 	"Amazing": "Al·lucinant",
 	"Amazing": "Al·lucinant",
 	"an assistant": "un assistent",
 	"an assistant": "un assistent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "i",
 	"and": "i",
 	"and {{COUNT}} more": "i {{COUNT}} més",
 	"and {{COUNT}} more": "i {{COUNT}} més",
 	"and create a new shared link.": "i crear un nou enllaç compartit.",
 	"and create a new shared link.": "i crear un nou enllaç compartit.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permís d'escriptura al porta-retalls denegat. Comprova els ajustos de navegador per donar l'accés necessari.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permís d'escriptura al porta-retalls denegat. Comprova els ajustos de navegador per donar l'accés necessari.",
 	"Clone": "Clonar",
 	"Clone": "Clonar",
 	"Clone Chat": "Clonar el xat",
 	"Clone Chat": "Clonar el xat",
+	"Clone of {{TITLE}}": "",
 	"Close": "Tancar",
 	"Close": "Tancar",
 	"Code execution": "Execució de codi",
 	"Code execution": "Execució de codi",
 	"Code formatted successfully": "Codi formatat correctament",
 	"Code formatted successfully": "Codi formatat correctament",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Col·lecció",
 	"Collection": "Col·lecció",
 	"Color": "Color",
 	"Color": "Color",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Nom del grup",
 	"Group Name": "Nom del grup",
 	"Group updated successfully": "Grup actualitzat correctament",
 	"Group updated successfully": "Grup actualitzat correctament",
 	"Groups": "Grups",
 	"Groups": "Grups",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Retorn hàptic",
 	"Haptic Feedback": "Retorn hàptic",
 	"has no conversations.": "no té converses.",
 	"has no conversations.": "no té converses.",
 	"Hello, {{name}}": "Hola, {{name}}",
 	"Hello, {{name}}": "Hola, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Eta de Mirostat",
 	"Mirostat Eta": "Eta de Mirostat",
 	"Mirostat Tau": "Tau de Mirostat",
 	"Mirostat Tau": "Tau de Mirostat",
-	"MMMM DD, YYYY": "DD de MMMM, YYYY",
-	"MMMM DD, YYYY HH:mm": "DD de MMMM, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "DD de MMMM, YYYY HH:mm:ss, A",
 	"Model": "Model",
 	"Model": "Model",
 	"Model '{{modelName}}' has been successfully downloaded.": "El model '{{modelName}}' s'ha descarregat correctament.",
 	"Model '{{modelName}}' has been successfully downloaded.": "El model '{{modelName}}' s'ha descarregat correctament.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "El model '{{modelTag}}' ja està en cua per ser descarregat.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "El model '{{modelTag}}' ja està en cua per ser descarregat.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Si us plau, entra una indicació",
 	"Please enter a prompt": "Si us plau, entra una indicació",
 	"Please fill in all fields.": "Emplena tots els camps, si us plau.",
 	"Please fill in all fields.": "Emplena tots els camps, si us plau.",
 	"Please select a model first.": "Si us plau, selecciona un model primer",
 	"Please select a model first.": "Si us plau, selecciona un model primer",
+	"Please select a model.": "",
 	"Please select a reason": "Si us plau, selecciona una raó",
 	"Please select a reason": "Si us plau, selecciona una raó",
 	"Port": "Port",
 	"Port": "Port",
 	"Positive attitude": "Actitud positiva",
 	"Positive attitude": "Actitud positiva",
@@ -971,6 +973,7 @@
 	"Tools": "Eines",
 	"Tools": "Eines",
 	"Tools Access": "Accés a les eines",
 	"Tools Access": "Accés a les eines",
 	"Tools are a function calling system with arbitrary code execution": "Les eines són un sistema de crida a funcions amb execució de codi arbitrari",
 	"Tools are a function calling system with arbitrary code execution": "Les eines són un sistema de crida a funcions amb execució de codi arbitrari",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari",
 	"Tools have a function calling system that allows arbitrary code execution": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari",
 	"Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Les eines disposen d'un sistema de crida a funcions que permet execució de codi arbitrari.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Pots personalitzar les teves interaccions amb els models de llenguatge afegint memòries mitjançant el botó 'Gestiona' que hi ha a continuació, fent-les més útils i adaptades a tu.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Pots personalitzar les teves interaccions amb els models de llenguatge afegint memòries mitjançant el botó 'Gestiona' que hi ha a continuació, fent-les més útils i adaptades a tu.",
 	"You cannot upload an empty file.": "No es pot pujar un ariux buit.",
 	"You cannot upload an empty file.": "No es pot pujar un ariux buit.",
 	"You do not have permission to access this feature.": "No tens permís per accedir a aquesta funcionalitat",
 	"You do not have permission to access this feature.": "No tens permís per accedir a aquesta funcionalitat",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "No tens permisos per pujar arxius.",
 	"You do not have permission to upload files.": "No tens permisos per pujar arxius.",
 	"You have no archived conversations.": "No tens converses arxivades.",
 	"You have no archived conversations.": "No tens converses arxivades.",
 	"You have shared this chat": "Has compartit aquest xat",
 	"You have shared this chat": "Has compartit aquest xat",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "usa ka katabang",
 	"an assistant": "usa ka katabang",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "Ug",
 	"and": "Ug",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "",
 	"and create a new shared link.": "",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Clone": "",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Suod nga",
 	"Close": "Suod nga",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Koleksyon",
 	"Collection": "Koleksyon",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "",
 	"ComfyUI": "",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "",
 	"has no conversations.": "",
 	"Hello, {{name}}": "Maayong buntag, {{name}}",
 	"Hello, {{name}}": "Maayong buntag, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Ang modelo'{{modelName}}' malampuson nga na-download.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Ang modelo'{{modelName}}' malampuson nga na-download.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Ang modelo'{{modelTag}}' naa na sa pila para ma-download.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Ang modelo'{{modelTag}}' naa na sa pila para ma-download.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "",
 	"Positive attitude": "",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "asistent",
 	"an assistant": "asistent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "a",
 	"and": "a",
 	"and {{COUNT}} more": "a {{COUNT}} další/ch",
 	"and {{COUNT}} more": "a {{COUNT}} další/ch",
 	"and create a new shared link.": "a vytvořit nový sdílený odkaz.",
 	"and create a new shared link.": "a vytvořit nový sdílený odkaz.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Přístup k zápisu do schránky byl zamítnut. Prosím, zkontrolujte nastavení svého prohlížeče a udělte potřebný přístup.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Přístup k zápisu do schránky byl zamítnut. Prosím, zkontrolujte nastavení svého prohlížeče a udělte potřebný přístup.",
 	"Clone": "Klonovat",
 	"Clone": "Klonovat",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Zavřít",
 	"Close": "Zavřít",
 	"Code execution": "Provádění kódu",
 	"Code execution": "Provádění kódu",
 	"Code formatted successfully": "Kód byl úspěšně naformátován.",
 	"Code formatted successfully": "Kód byl úspěšně naformátován.",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "",
 	"Collection": "",
 	"Color": "Barva",
 	"Color": "Barva",
 	"ComfyUI": "ComfyUI.",
 	"ComfyUI": "ComfyUI.",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "hh:mm dop./odp.",
 	"Haptic Feedback": "Haptická zpětná vazba",
 	"Haptic Feedback": "Haptická zpětná vazba",
 	"has no conversations.": "nemá žádné konverzace.",
 	"has no conversations.": "nemá žádné konverzace.",
 	"Hello, {{name}}": "Ahoj, {{name}}",
 	"Hello, {{name}}": "Ahoj, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, RRRR",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, RRRR HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "Model",
 	"Model": "Model",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model „{{modelName}}“ byl úspěšně stažen.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model „{{modelName}}“ byl úspěšně stažen.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je již zařazen do fronty pro stahování.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je již zařazen do fronty pro stahování.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Prosím, zadejte zadání.",
 	"Please enter a prompt": "Prosím, zadejte zadání.",
 	"Please fill in all fields.": "Prosím, vyplňte všechna pole.",
 	"Please fill in all fields.": "Prosím, vyplňte všechna pole.",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Prosím vyberte důvod",
 	"Please select a reason": "Prosím vyberte důvod",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Pozitivní přístup",
 	"Positive attitude": "Pozitivní přístup",
@@ -971,6 +973,7 @@
 	"Tools": "Nástroje",
 	"Tools": "Nástroje",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "Nástroje jsou systémem pro volání funkcí s vykonáváním libovolného kódu.",
 	"Tools are a function calling system with arbitrary code execution": "Nástroje jsou systémem pro volání funkcí s vykonáváním libovolného kódu.",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Nástroje mají systém volání funkcí, který umožňuje libovolné spouštění kódu.",
 	"Tools have a function calling system that allows arbitrary code execution": "Nástroje mají systém volání funkcí, který umožňuje libovolné spouštění kódu.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Nástroje mají systém volání funkcí, který umožňuje spuštění libovolného kódu.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Nástroje mají systém volání funkcí, který umožňuje spuštění libovolného kódu.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Můžete personalizovat své interakce s LLM pomocí přidávání vzpomínek prostřednictvím tlačítka 'Spravovat' níže, což je učiní pro vás užitečnějšími a lépe přizpůsobenými.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Můžete personalizovat své interakce s LLM pomocí přidávání vzpomínek prostřednictvím tlačítka 'Spravovat' níže, což je učiní pro vás užitečnějšími a lépe přizpůsobenými.",
 	"You cannot upload an empty file.": "Nemůžete nahrát prázdný soubor.",
 	"You cannot upload an empty file.": "Nemůžete nahrát prázdný soubor.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nemáte žádné archivované konverzace.",
 	"You have no archived conversations.": "Nemáte žádné archivované konverzace.",
 	"You have shared this chat": "Sdíleli jste tento chat.",
 	"You have shared this chat": "Sdíleli jste tento chat.",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "en assistent",
 	"an assistant": "en assistent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "og",
 	"and": "og",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "og lav et nyt link til deling",
 	"and create a new shared link.": "og lav et nyt link til deling",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Skriveadgang til udklipsholderen ikke tilladt. Tjek venligst indstillingerne i din browser for at give adgang.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Skriveadgang til udklipsholderen ikke tilladt. Tjek venligst indstillingerne i din browser for at give adgang.",
 	"Clone": "Klon",
 	"Clone": "Klon",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Luk",
 	"Close": "Luk",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "Kode formateret korrekt",
 	"Code formatted successfully": "Kode formateret korrekt",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Samling",
 	"Collection": "Samling",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Haptisk feedback",
 	"Haptic Feedback": "Haptisk feedback",
 	"has no conversations.": "har ingen samtaler.",
 	"has no conversations.": "har ingen samtaler.",
 	"Hello, {{name}}": "Hej {{name}}",
 	"Hello, {{name}}": "Hej {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' er blevet downloadet.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' er blevet downloadet.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' er allerede i kø til download.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' er allerede i kø til download.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "Udfyld alle felter.",
 	"Please fill in all fields.": "Udfyld alle felter.",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Vælg en årsag",
 	"Please select a reason": "Vælg en årsag",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Positiv holdning",
 	"Positive attitude": "Positiv holdning",
@@ -971,6 +973,7 @@
 	"Tools": "Værktøjer",
 	"Tools": "Værktøjer",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "Værktøjer er et funktionkaldssystem med vilkårlig kodeudførelse",
 	"Tools are a function calling system with arbitrary code execution": "Værktøjer er et funktionkaldssystem med vilkårlig kodeudførelse",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse",
 	"Tools have a function calling system that allows arbitrary code execution": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse",
 	"Tools have a function calling system that allows arbitrary code execution.": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Værktøjer har et funktionkaldssystem, der tillader vilkårlig kodeudførelse.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan personliggøre dine interaktioner med LLM'er ved at tilføje minder via knappen 'Administrer' nedenfor, hvilket gør dem mere nyttige og skræddersyet til dig.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan personliggøre dine interaktioner med LLM'er ved at tilføje minder via knappen 'Administrer' nedenfor, hvilket gør dem mere nyttige og skræddersyet til dig.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Du har ingen arkiverede samtaler.",
 	"You have no archived conversations.": "Du har ingen arkiverede samtaler.",
 	"You have shared this chat": "Du har delt denne chat",
 	"You have shared this chat": "Du har delt denne chat",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternative zu top_p und zielt darauf ab, ein Gleichgewicht zwischen Qualität und Vielfalt zu gewährleisten. Der Parameter p repräsentiert die Mindestwahrscheinlichkeit für ein Token, um berücksichtigt zu werden, relativ zur Wahrscheinlichkeit des wahrscheinlichsten Tokens. Zum Beispiel, bei p=0.05 und das wahrscheinlichste Token hat eine Wahrscheinlichkeit von 0.9, werden Logits mit einem Wert von weniger als 0.045 herausgefiltert. (Standard: 0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternative zu top_p und zielt darauf ab, ein Gleichgewicht zwischen Qualität und Vielfalt zu gewährleisten. Der Parameter p repräsentiert die Mindestwahrscheinlichkeit für ein Token, um berücksichtigt zu werden, relativ zur Wahrscheinlichkeit des wahrscheinlichsten Tokens. Zum Beispiel, bei p=0.05 und das wahrscheinlichste Token hat eine Wahrscheinlichkeit von 0.9, werden Logits mit einem Wert von weniger als 0.045 herausgefiltert. (Standard: 0.0)",
 	"Amazing": "Fantastisch",
 	"Amazing": "Fantastisch",
 	"an assistant": "ein Assistent",
 	"an assistant": "ein Assistent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "und",
 	"and": "und",
 	"and {{COUNT}} more": "und {{COUNT}} mehr",
 	"and {{COUNT}} more": "und {{COUNT}} mehr",
 	"and create a new shared link.": "und erstellen Sie einen neuen freigegebenen Link.",
 	"and create a new shared link.": "und erstellen Sie einen neuen freigegebenen Link.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Schreibberechtigung für die Zwischenablage verweigert. Bitte überprüfen Sie Ihre Browsereinstellungen, um den erforderlichen Zugriff zu erlauben.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Schreibberechtigung für die Zwischenablage verweigert. Bitte überprüfen Sie Ihre Browsereinstellungen, um den erforderlichen Zugriff zu erlauben.",
 	"Clone": "Klonen",
 	"Clone": "Klonen",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Schließen",
 	"Close": "Schließen",
 	"Code execution": "Codeausführung",
 	"Code execution": "Codeausführung",
 	"Code formatted successfully": "Code erfolgreich formatiert",
 	"Code formatted successfully": "Code erfolgreich formatiert",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Kollektion",
 	"Collection": "Kollektion",
 	"Color": "Farbe",
 	"Color": "Farbe",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Gruppenname",
 	"Group Name": "Gruppenname",
 	"Group updated successfully": "Gruppe erfolgreich aktualisiert",
 	"Group updated successfully": "Gruppe erfolgreich aktualisiert",
 	"Groups": "Gruppen",
 	"Groups": "Gruppen",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Haptisches Feedback",
 	"Haptic Feedback": "Haptisches Feedback",
 	"has no conversations.": "hat keine Unterhaltungen.",
 	"has no conversations.": "hat keine Unterhaltungen.",
 	"Hello, {{name}}": "Hallo, {{name}}",
 	"Hello, {{name}}": "Hallo, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "DD MMMM YYYY",
-	"MMMM DD, YYYY HH:mm": "DD MMMM YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "DD MMMM YYYY HH:mm A",
 	"Model": "Modell",
 	"Model": "Modell",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modell '{{modelName}}' wurde erfolgreich heruntergeladen.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modell '{{modelName}}' wurde erfolgreich heruntergeladen.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modell '{{modelTag}}' befindet sich bereits in der Warteschlange zum Herunterladen.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modell '{{modelTag}}' befindet sich bereits in der Warteschlange zum Herunterladen.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Bitte geben Sie einen Prompt ein",
 	"Please enter a prompt": "Bitte geben Sie einen Prompt ein",
 	"Please fill in all fields.": "Bitte füllen Sie alle Felder aus.",
 	"Please fill in all fields.": "Bitte füllen Sie alle Felder aus.",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Bitte wählen Sie einen Grund aus",
 	"Please select a reason": "Bitte wählen Sie einen Grund aus",
 	"Port": "Port",
 	"Port": "Port",
 	"Positive attitude": "Positive Einstellung",
 	"Positive attitude": "Positive Einstellung",
@@ -971,6 +973,7 @@
 	"Tools": "Werkzeuge",
 	"Tools": "Werkzeuge",
 	"Tools Access": "Werkzeugzugriff",
 	"Tools Access": "Werkzeugzugriff",
 	"Tools are a function calling system with arbitrary code execution": "Wekzeuge sind ein Funktionssystem mit beliebiger Codeausführung",
 	"Tools are a function calling system with arbitrary code execution": "Wekzeuge sind ein Funktionssystem mit beliebiger Codeausführung",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Werkezuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht",
 	"Tools have a function calling system that allows arbitrary code execution": "Werkezuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht",
 	"Tools have a function calling system that allows arbitrary code execution.": "Werkzeuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Werkzeuge verfügen über ein Funktionssystem, das die Ausführung beliebigen Codes ermöglicht.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Personalisieren Sie Interaktionen mit LLMs, indem Sie über die Schaltfläche \"Verwalten\" Erinnerungen hinzufügen.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Personalisieren Sie Interaktionen mit LLMs, indem Sie über die Schaltfläche \"Verwalten\" Erinnerungen hinzufügen.",
 	"You cannot upload an empty file.": "Sie können keine leere Datei hochladen.",
 	"You cannot upload an empty file.": "Sie können keine leere Datei hochladen.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "Sie haben keine Berechtigung zum Hochladen von Dateien.",
 	"You do not have permission to upload files.": "Sie haben keine Berechtigung zum Hochladen von Dateien.",
 	"You have no archived conversations.": "Du hast keine archivierten Unterhaltungen.",
 	"You have no archived conversations.": "Du hast keine archivierten Unterhaltungen.",
 	"You have shared this chat": "Sie haben diese Unterhaltung geteilt",
 	"You have shared this chat": "Sie haben diese Unterhaltung geteilt",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "such assistant",
 	"an assistant": "such assistant",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "and",
 	"and": "and",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "",
 	"and create a new shared link.": "",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Clone": "",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Close",
 	"Close": "Close",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Collection",
 	"Collection": "Collection",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "",
 	"ComfyUI": "",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "",
 	"has no conversations.": "",
 	"Hello, {{name}}": "Much helo, {{name}}",
 	"Hello, {{name}}": "Much helo, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' has been successfully downloaded.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' has been successfully downloaded.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' is already in queue for downloading.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' is already in queue for downloading.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "",
 	"Positive attitude": "",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K very top",
 	"Top K": "Top K very top",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Εναλλακτικό στο top_p, και στοχεύει στη διασφάλιση μιας ισορροπίας μεταξύ ποιότητας και ποικιλίας. Η παράμετρος p αντιπροσωπεύει την ελάχιστη πιθανότητα για ένα token να θεωρηθεί, σε σχέση με την πιθανότητα του πιο πιθανού token. Για παράδειγμα, με p=0.05 και το πιο πιθανό token να έχει πιθανότητα 0.9, τα logits με τιμή μικρότερη από 0.045 φιλτράρονται. (Προεπιλογή: 0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Εναλλακτικό στο top_p, και στοχεύει στη διασφάλιση μιας ισορροπίας μεταξύ ποιότητας και ποικιλίας. Η παράμετρος p αντιπροσωπεύει την ελάχιστη πιθανότητα για ένα token να θεωρηθεί, σε σχέση με την πιθανότητα του πιο πιθανού token. Για παράδειγμα, με p=0.05 και το πιο πιθανό token να έχει πιθανότητα 0.9, τα logits με τιμή μικρότερη από 0.045 φιλτράρονται. (Προεπιλογή: 0.0)",
 	"Amazing": "Καταπληκτικό",
 	"Amazing": "Καταπληκτικό",
 	"an assistant": "ένας βοηθός",
 	"an assistant": "ένας βοηθός",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "και",
 	"and": "και",
 	"and {{COUNT}} more": "και {{COUNT}} ακόμα",
 	"and {{COUNT}} more": "και {{COUNT}} ακόμα",
 	"and create a new shared link.": "και δημιουργήστε έναν νέο κοινόχρηστο σύνδεσμο.",
 	"and create a new shared link.": "και δημιουργήστε έναν νέο κοινόχρηστο σύνδεσμο.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Άρνηση δικαιώματος εγγραφής στο πρόχειρο. Παρακαλώ ελέγξτε τις ρυθμίσεις του περιηγητή σας για να δώσετε την απαραίτητη πρόσβαση.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Άρνηση δικαιώματος εγγραφής στο πρόχειρο. Παρακαλώ ελέγξτε τις ρυθμίσεις του περιηγητή σας για να δώσετε την απαραίτητη πρόσβαση.",
 	"Clone": "Κλώνος",
 	"Clone": "Κλώνος",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Κλείσιμο",
 	"Close": "Κλείσιμο",
 	"Code execution": "Εκτέλεση κώδικα",
 	"Code execution": "Εκτέλεση κώδικα",
 	"Code formatted successfully": "Ο κώδικας μορφοποιήθηκε επιτυχώς",
 	"Code formatted successfully": "Ο κώδικας μορφοποιήθηκε επιτυχώς",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Συλλογή",
 	"Collection": "Συλλογή",
 	"Color": "Χρώμα",
 	"Color": "Χρώμα",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Όνομα Ομάδας",
 	"Group Name": "Όνομα Ομάδας",
 	"Group updated successfully": "Η ομάδα ενημερώθηκε με επιτυχία",
 	"Group updated successfully": "Η ομάδα ενημερώθηκε με επιτυχία",
 	"Groups": "Ομάδες",
 	"Groups": "Ομάδες",
-	"h:mm a": "h:mm π.μ./μ.μ.",
 	"Haptic Feedback": "Ανατροφοδότηση Haptic",
 	"Haptic Feedback": "Ανατροφοδότηση Haptic",
 	"has no conversations.": "δεν έχει συνομιλίες.",
 	"has no conversations.": "δεν έχει συνομιλίες.",
 	"Hello, {{name}}": "Γειά σου, {{name}}",
 	"Hello, {{name}}": "Γειά σου, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "Μοντέλο",
 	"Model": "Μοντέλο",
 	"Model '{{modelName}}' has been successfully downloaded.": "Το μοντέλο '{{modelName}}' κατεβάστηκε με επιτυχία.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Το μοντέλο '{{modelName}}' κατεβάστηκε με επιτυχία.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Το μοντέλο '{{modelTag}}' βρίσκεται ήδη στην ουρά για λήψη.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Το μοντέλο '{{modelTag}}' βρίσκεται ήδη στην ουρά για λήψη.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Παρακαλώ εισάγετε μια προτροπή",
 	"Please enter a prompt": "Παρακαλώ εισάγετε μια προτροπή",
 	"Please fill in all fields.": "Παρακαλώ συμπληρώστε όλα τα πεδία.",
 	"Please fill in all fields.": "Παρακαλώ συμπληρώστε όλα τα πεδία.",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Παρακαλώ επιλέξτε έναν λόγο",
 	"Please select a reason": "Παρακαλώ επιλέξτε έναν λόγο",
 	"Port": "Θύρα",
 	"Port": "Θύρα",
 	"Positive attitude": "Θετική στάση",
 	"Positive attitude": "Θετική στάση",
@@ -971,6 +973,7 @@
 	"Tools": "Εργαλεία",
 	"Tools": "Εργαλεία",
 	"Tools Access": "Πρόσβαση Εργαλείων",
 	"Tools Access": "Πρόσβαση Εργαλείων",
 	"Tools are a function calling system with arbitrary code execution": "Τα εργαλεία είναι ένα σύστημα κλήσης λειτουργιών με αυθαίρετη εκτέλεση κώδικα",
 	"Tools are a function calling system with arbitrary code execution": "Τα εργαλεία είναι ένα σύστημα κλήσης λειτουργιών με αυθαίρετη εκτέλεση κώδικα",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα",
 	"Tools have a function calling system that allows arbitrary code execution": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα",
 	"Tools have a function calling system that allows arbitrary code execution.": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Τα εργαλεία διαθέτουν ένα σύστημα κλήσης λειτουργιών που επιτρέπει την αυθαίρετη εκτέλεση κώδικα.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Μπορείτε να προσωποποιήσετε τις αλληλεπιδράσεις σας με τα LLMs προσθέτοντας αναμνήσεις μέσω του κουμπιού 'Διαχείριση' παρακάτω, κάνοντάς τα πιο χρήσιμα και προσαρμοσμένα σε εσάς.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Μπορείτε να προσωποποιήσετε τις αλληλεπιδράσεις σας με τα LLMs προσθέτοντας αναμνήσεις μέσω του κουμπιού 'Διαχείριση' παρακάτω, κάνοντάς τα πιο χρήσιμα και προσαρμοσμένα σε εσάς.",
 	"You cannot upload an empty file.": "Δεν μπορείτε να ανεβάσετε ένα κενό αρχείο.",
 	"You cannot upload an empty file.": "Δεν μπορείτε να ανεβάσετε ένα κενό αρχείο.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "Δεν έχετε άδεια να ανεβάσετε αρχεία.",
 	"You do not have permission to upload files.": "Δεν έχετε άδεια να ανεβάσετε αρχεία.",
 	"You have no archived conversations.": "Δεν έχετε αρχειοθετημένες συνομιλίες.",
 	"You have no archived conversations.": "Δεν έχετε αρχειοθετημένες συνομιλίες.",
 	"You have shared this chat": "Έχετε μοιραστεί αυτή τη συνομιλία",
 	"You have shared this chat": "Έχετε μοιραστεί αυτή τη συνομιλία",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "",
 	"an assistant": "",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "",
 	"and": "",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "",
 	"and create a new shared link.": "",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Clone": "",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "",
 	"Close": "",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "",
 	"Collection": "",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "",
 	"ComfyUI": "",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "",
 	"has no conversations.": "",
 	"Hello, {{name}}": "",
 	"Hello, {{name}}": "",
@@ -595,9 +599,6 @@
 	"Mirostat": "",
 	"Mirostat": "",
 	"Mirostat Eta": "",
 	"Mirostat Eta": "",
 	"Mirostat Tau": "",
 	"Mirostat Tau": "",
-	"MMMM DD, YYYY": "",
-	"MMMM DD, YYYY HH:mm": "",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "",
 	"Model '{{modelTag}}' is already in queue for downloading.": "",
 	"Model '{{modelTag}}' is already in queue for downloading.": "",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "",
 	"Positive attitude": "",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "",
 	"Top K": "",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "",
 	"an assistant": "",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "",
 	"and": "",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "",
 	"and create a new shared link.": "",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Clone": "",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "",
 	"Close": "",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "",
 	"Collection": "",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "",
 	"ComfyUI": "",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "",
 	"has no conversations.": "",
 	"Hello, {{name}}": "",
 	"Hello, {{name}}": "",
@@ -595,9 +599,6 @@
 	"Mirostat": "",
 	"Mirostat": "",
 	"Mirostat Eta": "",
 	"Mirostat Eta": "",
 	"Mirostat Tau": "",
 	"Mirostat Tau": "",
-	"MMMM DD, YYYY": "",
-	"MMMM DD, YYYY HH:mm": "",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "",
 	"Model '{{modelTag}}' is already in queue for downloading.": "",
 	"Model '{{modelTag}}' is already in queue for downloading.": "",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "",
 	"Positive attitude": "",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "",
 	"Top K": "",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "un asistente",
 	"an assistant": "un asistente",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "y",
 	"and": "y",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "y crear un nuevo enlace compartido.",
 	"and create a new shared link.": "y crear un nuevo enlace compartido.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permisos de escritura del portapapeles denegados. Por favor, comprueba las configuraciones de tu navegador para otorgar el acceso necesario.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permisos de escritura del portapapeles denegados. Por favor, comprueba las configuraciones de tu navegador para otorgar el acceso necesario.",
 	"Clone": "Clonar",
 	"Clone": "Clonar",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Cerrar",
 	"Close": "Cerrar",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "Se ha formateado correctamente el código.",
 	"Code formatted successfully": "Se ha formateado correctamente el código.",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Colección",
 	"Collection": "Colección",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Retroalimentación háptica",
 	"Haptic Feedback": "Retroalimentación háptica",
 	"has no conversations.": "no tiene conversaciones.",
 	"has no conversations.": "no tiene conversaciones.",
 	"Hello, {{name}}": "Hola, {{name}}",
 	"Hello, {{name}}": "Hola, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "El modelo '{{modelName}}' se ha descargado correctamente.",
 	"Model '{{modelName}}' has been successfully downloaded.": "El modelo '{{modelName}}' se ha descargado correctamente.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "El modelo '{{modelTag}}' ya está en cola para descargar.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "El modelo '{{modelTag}}' ya está en cola para descargar.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "Por favor llene todos los campos.",
 	"Please fill in all fields.": "Por favor llene todos los campos.",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Por favor seleccione una razón",
 	"Please select a reason": "Por favor seleccione una razón",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Actitud positiva",
 	"Positive attitude": "Actitud positiva",
@@ -971,6 +973,7 @@
 	"Tools": "Herramientas",
 	"Tools": "Herramientas",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "Las herramientas son un sistema de llamada de funciones con código arbitrario",
 	"Tools are a function calling system with arbitrary code execution": "Las herramientas son un sistema de llamada de funciones con código arbitrario",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Las herramientas tienen un sistema de llamadas de funciones que permite la ejecución de código arbitrario",
 	"Tools have a function calling system that allows arbitrary code execution": "Las herramientas tienen un sistema de llamadas de funciones que permite la ejecución de código arbitrario",
 	"Tools have a function calling system that allows arbitrary code execution.": "Las herramientas tienen un sistema de llamada de funciones que permite la ejecución de código arbitrario.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Las herramientas tienen un sistema de llamada de funciones que permite la ejecución de código arbitrario.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puede personalizar sus interacciones con LLMs añadiendo memorias a través del botón 'Gestionar' debajo, haciendo que sean más útiles y personalizados para usted.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puede personalizar sus interacciones con LLMs añadiendo memorias a través del botón 'Gestionar' debajo, haciendo que sean más útiles y personalizados para usted.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "No tiene conversaciones archivadas.",
 	"You have no archived conversations.": "No tiene conversaciones archivadas.",
 	"You have shared this chat": "Usted ha compartido esta conversación",
 	"You have shared this chat": "Usted ha compartido esta conversación",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p-ren alternatiba, kalitate eta aniztasunaren arteko oreka bermatzea du helburu. p parametroak token bat kontuan hartzeko gutxieneko probabilitatea adierazten du, token probableenaren probabilitatearen arabera. Adibidez, p=0.05 balioarekin eta token probableenaren probabilitatea 0.9 denean, 0.045 baino balio txikiagoko logit-ak baztertzen dira. (Lehenetsia: 0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p-ren alternatiba, kalitate eta aniztasunaren arteko oreka bermatzea du helburu. p parametroak token bat kontuan hartzeko gutxieneko probabilitatea adierazten du, token probableenaren probabilitatearen arabera. Adibidez, p=0.05 balioarekin eta token probableenaren probabilitatea 0.9 denean, 0.045 baino balio txikiagoko logit-ak baztertzen dira. (Lehenetsia: 0.0)",
 	"Amazing": "Harrigarria",
 	"Amazing": "Harrigarria",
 	"an assistant": "laguntzaile bat",
 	"an assistant": "laguntzaile bat",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "eta",
 	"and": "eta",
 	"and {{COUNT}} more": "eta {{COUNT}} gehiago",
 	"and {{COUNT}} more": "eta {{COUNT}} gehiago",
 	"and create a new shared link.": "eta sortu partekatutako esteka berri bat.",
 	"and create a new shared link.": "eta sortu partekatutako esteka berri bat.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Arbelerako idazteko baimena ukatua. Mesedez, egiaztatu zure nabigatzailearen ezarpenak beharrezko sarbidea emateko.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Arbelerako idazteko baimena ukatua. Mesedez, egiaztatu zure nabigatzailearen ezarpenak beharrezko sarbidea emateko.",
 	"Clone": "Klonatu",
 	"Clone": "Klonatu",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Itxi",
 	"Close": "Itxi",
 	"Code execution": "Kodearen exekuzioa",
 	"Code execution": "Kodearen exekuzioa",
 	"Code formatted successfully": "Kodea ongi formateatu da",
 	"Code formatted successfully": "Kodea ongi formateatu da",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Bilduma",
 	"Collection": "Bilduma",
 	"Color": "Kolorea",
 	"Color": "Kolorea",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Taldearen Izena",
 	"Group Name": "Taldearen Izena",
 	"Group updated successfully": "Taldea ongi eguneratu da",
 	"Group updated successfully": "Taldea ongi eguneratu da",
 	"Groups": "Taldeak",
 	"Groups": "Taldeak",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Feedback Haptikoa",
 	"Haptic Feedback": "Feedback Haptikoa",
 	"has no conversations.": "ez du elkarrizketarik.",
 	"has no conversations.": "ez du elkarrizketarik.",
 	"Hello, {{name}}": "Kaixo, {{name}}",
 	"Hello, {{name}}": "Kaixo, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "YYYY-ko MMMM-ren DD",
-	"MMMM DD, YYYY HH:mm": "YYYY-ko MMMM-ren DD HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "YYYY-ko MMMM-ren DD hh:mm:ss A",
 	"Model": "Modeloa",
 	"Model": "Modeloa",
 	"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modeloa ongi deskargatu da.",
 	"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modeloa ongi deskargatu da.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' modeloa dagoeneko deskarga ilaran dago.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' modeloa dagoeneko deskarga ilaran dago.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Mesedez, sartu prompt bat",
 	"Please enter a prompt": "Mesedez, sartu prompt bat",
 	"Please fill in all fields.": "Mesedez, bete eremu guztiak.",
 	"Please fill in all fields.": "Mesedez, bete eremu guztiak.",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Mesedez, hautatu arrazoi bat",
 	"Please select a reason": "Mesedez, hautatu arrazoi bat",
 	"Port": "Ataka",
 	"Port": "Ataka",
 	"Positive attitude": "Jarrera positiboa",
 	"Positive attitude": "Jarrera positiboa",
@@ -971,6 +973,7 @@
 	"Tools": "Tresnak",
 	"Tools": "Tresnak",
 	"Tools Access": "Tresnen sarbidea",
 	"Tools Access": "Tresnen sarbidea",
 	"Tools are a function calling system with arbitrary code execution": "Tresnak kode arbitrarioa exekutatzeko funtzio deitzeko sistema bat dira",
 	"Tools are a function calling system with arbitrary code execution": "Tresnak kode arbitrarioa exekutatzeko funtzio deitzeko sistema bat dira",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute",
 	"Tools have a function calling system that allows arbitrary code execution": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute",
 	"Tools have a function calling system that allows arbitrary code execution.": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Tresnek kode arbitrarioa exekutatzeko aukera ematen duen funtzio deitzeko sistema dute.",
 	"Top K": "Goiko K",
 	"Top K": "Goiko K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "LLMekin dituzun interakzioak pertsonalizatu ditzakezu memoriak gehituz beheko 'Kudeatu' botoiaren bidez, lagungarriagoak eta zuretzat egokituagoak eginez.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "LLMekin dituzun interakzioak pertsonalizatu ditzakezu memoriak gehituz beheko 'Kudeatu' botoiaren bidez, lagungarriagoak eta zuretzat egokituagoak eginez.",
 	"You cannot upload an empty file.": "Ezin duzu fitxategi huts bat kargatu.",
 	"You cannot upload an empty file.": "Ezin duzu fitxategi huts bat kargatu.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "Ez duzu fitxategiak kargatzeko baimenik.",
 	"You do not have permission to upload files.": "Ez duzu fitxategiak kargatzeko baimenik.",
 	"You have no archived conversations.": "Ez duzu artxibatutako elkarrizketarik.",
 	"You have no archived conversations.": "Ez duzu artxibatutako elkarrizketarik.",
 	"You have shared this chat": "Txat hau partekatu duzu",
 	"You have shared this chat": "Txat hau partekatu duzu",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "یک دستیار",
 	"an assistant": "یک دستیار",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "و",
 	"and": "و",
 	"and {{COUNT}} more": "و {{COUNT}} مورد دیگر",
 	"and {{COUNT}} more": "و {{COUNT}} مورد دیگر",
 	"and create a new shared link.": "و یک پیوند اشتراک\u200cگذاری جدید ایجاد کنید.",
 	"and create a new shared link.": "و یک پیوند اشتراک\u200cگذاری جدید ایجاد کنید.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "کلون",
 	"Clone": "کلون",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "بسته",
 	"Close": "بسته",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "مجموعه",
 	"Collection": "مجموعه",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "کومیوآی",
 	"ComfyUI": "کومیوآی",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "ندارد.",
 	"has no conversations.": "ندارد.",
 	"Hello, {{name}}": "سلام، {{name}}",
 	"Hello, {{name}}": "سلام، {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "مدل '{{modelName}}' با موفقیت دانلود شد.",
 	"Model '{{modelName}}' has been successfully downloaded.": "مدل '{{modelName}}' با موفقیت دانلود شد.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "مدل '{{modelTag}}' در حال حاضر در صف برای دانلود است.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "مدل '{{modelTag}}' در حال حاضر در صف برای دانلود است.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "نظرات مثبت",
 	"Positive attitude": "نظرات مثبت",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "شما هیچ گفتگوی ذخیره شده ندارید.",
 	"You have no archived conversations.": "شما هیچ گفتگوی ذخیره شده ندارید.",
 	"You have shared this chat": "شما این گفتگو را به اشتراک گذاشته اید",
 	"You have shared this chat": "شما این گفتگو را به اشتراک گذاشته اید",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Vaihtoehto top_p:lle, jolla pyritään varmistamaan laadun ja monipuolisuuden tasapaino. Parametri p edustaa pienintä todennäköisyyttä, jolla token otetaan huomioon suhteessa todennäköisimpään tokeniin. Esimerkiksi p=0.05 ja todennäköisin token todennäköisyydellä 0.9, arvoltaan alle 0.045 olevat logit suodatetaan pois. (Oletus: 0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Vaihtoehto top_p:lle, jolla pyritään varmistamaan laadun ja monipuolisuuden tasapaino. Parametri p edustaa pienintä todennäköisyyttä, jolla token otetaan huomioon suhteessa todennäköisimpään tokeniin. Esimerkiksi p=0.05 ja todennäköisin token todennäköisyydellä 0.9, arvoltaan alle 0.045 olevat logit suodatetaan pois. (Oletus: 0.0)",
 	"Amazing": "Hämmästyttävä",
 	"Amazing": "Hämmästyttävä",
 	"an assistant": "avustaja",
 	"an assistant": "avustaja",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "ja",
 	"and": "ja",
 	"and {{COUNT}} more": "ja {{COUNT}} muuta",
 	"and {{COUNT}} more": "ja {{COUNT}} muuta",
 	"and create a new shared link.": "ja luo uusi jaettu linkki.",
 	"and create a new shared link.": "ja luo uusi jaettu linkki.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Leikepöydälle kirjoitusoikeus evätty. Tarkista selaimesi asetukset ja myönnä tarvittavat käyttöoikeudet.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Leikepöydälle kirjoitusoikeus evätty. Tarkista selaimesi asetukset ja myönnä tarvittavat käyttöoikeudet.",
 	"Clone": "Kloonaa",
 	"Clone": "Kloonaa",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Sulje",
 	"Close": "Sulje",
 	"Code execution": "Koodin suorittaminen",
 	"Code execution": "Koodin suorittaminen",
 	"Code formatted successfully": "Koodin muotoilu onnistui",
 	"Code formatted successfully": "Koodin muotoilu onnistui",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Kokoelma",
 	"Collection": "Kokoelma",
 	"Color": "Väri",
 	"Color": "Väri",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Ryhmän nimi",
 	"Group Name": "Ryhmän nimi",
 	"Group updated successfully": "Ryhmä päivitetty onnistuneesti",
 	"Group updated successfully": "Ryhmä päivitetty onnistuneesti",
 	"Groups": "Ryhmät",
 	"Groups": "Ryhmät",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Haptinen palaute",
 	"Haptic Feedback": "Haptinen palaute",
 	"has no conversations.": "ei ole keskusteluja.",
 	"has no conversations.": "ei ole keskusteluja.",
 	"Hello, {{name}}": "Hei, {{name}}",
 	"Hello, {{name}}": "Hei, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "D. MMMM YYYY",
-	"MMMM DD, YYYY HH:mm": "D. MMMM YYYY, HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "D. MMMM YYYY, hh:mm:ss a",
 	"Model": "Malli",
 	"Model": "Malli",
 	"Model '{{modelName}}' has been successfully downloaded.": "Malli '{{modelName}}' ladattiin onnistuneesti.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Malli '{{modelName}}' ladattiin onnistuneesti.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Malli '{{modelTag}}' on jo jonossa ladattavaksi.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Malli '{{modelTag}}' on jo jonossa ladattavaksi.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Kirjoita kehote",
 	"Please enter a prompt": "Kirjoita kehote",
 	"Please fill in all fields.": "Täytä kaikki kentät.",
 	"Please fill in all fields.": "Täytä kaikki kentät.",
 	"Please select a model first.": "Valitse ensin malli.",
 	"Please select a model first.": "Valitse ensin malli.",
+	"Please select a model.": "",
 	"Please select a reason": "Valitse syy",
 	"Please select a reason": "Valitse syy",
 	"Port": "Portti",
 	"Port": "Portti",
 	"Positive attitude": "Positiivinen asenne",
 	"Positive attitude": "Positiivinen asenne",
@@ -971,6 +973,7 @@
 	"Tools": "Työkalut",
 	"Tools": "Työkalut",
 	"Tools Access": "Työkalujen käyttöoikeudet",
 	"Tools Access": "Työkalujen käyttöoikeudet",
 	"Tools are a function calling system with arbitrary code execution": "Työkalut ovat toimintokutsuihin perustuva järjestelmä, joka sallii mielivaltaisen koodin suorittamisen",
 	"Tools are a function calling system with arbitrary code execution": "Työkalut ovat toimintokutsuihin perustuva järjestelmä, joka sallii mielivaltaisen koodin suorittamisen",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Työkaluilla on toimintokutsuihin perustuva järjestelmä, joka sallii mielivaltaisen koodin suorittamisen",
 	"Tools have a function calling system that allows arbitrary code execution": "Työkaluilla on toimintokutsuihin perustuva järjestelmä, joka sallii mielivaltaisen koodin suorittamisen",
 	"Tools have a function calling system that allows arbitrary code execution.": "Työkalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Työkalut sallivat mielivaltaisen koodin suorittamisen toimintokutsuilla.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Voit personoida vuorovaikutustasi LLM-ohjelmien kanssa lisäämällä muistoja 'Hallitse'-painikkeen kautta, jolloin ne ovat hyödyllisempiä ja räätälöityjä sinua varten.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Voit personoida vuorovaikutustasi LLM-ohjelmien kanssa lisäämällä muistoja 'Hallitse'-painikkeen kautta, jolloin ne ovat hyödyllisempiä ja räätälöityjä sinua varten.",
 	"You cannot upload an empty file.": "Et voi ladata tyhjää tiedostoa.",
 	"You cannot upload an empty file.": "Et voi ladata tyhjää tiedostoa.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "Sinulla ei ole lupaa ladata tiedostoja.",
 	"You do not have permission to upload files.": "Sinulla ei ole lupaa ladata tiedostoja.",
 	"You have no archived conversations.": "Sinulla ei ole arkistoituja keskusteluja.",
 	"You have no archived conversations.": "Sinulla ei ole arkistoituja keskusteluja.",
 	"You have shared this chat": "Olet jakanut tämän keskustelun",
 	"You have shared this chat": "Olet jakanut tämän keskustelun",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "un assistant",
 	"an assistant": "un assistant",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "et",
 	"and": "et",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "et créer un nouveau lien partagé.",
 	"and create a new shared link.": "et créer un nouveau lien partagé.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "L'autorisation d'écriture du presse-papier a été refusée. Veuillez vérifier les paramètres de votre navigateur pour accorder l'accès nécessaire.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "L'autorisation d'écriture du presse-papier a été refusée. Veuillez vérifier les paramètres de votre navigateur pour accorder l'accès nécessaire.",
 	"Clone": "Copie conforme",
 	"Clone": "Copie conforme",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Fermer",
 	"Close": "Fermer",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "Le code a été formaté avec succès",
 	"Code formatted successfully": "Le code a été formaté avec succès",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Collection",
 	"Collection": "Collection",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "n'a aucune conversation.",
 	"has no conversations.": "n'a aucune conversation.",
 	"Hello, {{name}}": "Bonjour, {{name}}.",
 	"Hello, {{name}}": "Bonjour, {{name}}.",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "DD MMMM YYYY",
-	"MMMM DD, YYYY HH:mm": "DD MMMM YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "DD MMMM YYYY HH:mm:ss",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Attitude positive",
 	"Positive attitude": "Attitude positive",
@@ -971,6 +973,7 @@
 	"Tools": "Outils",
 	"Tools": "Outils",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des souvenirs via le bouton 'Gérer' ci-dessous, ce qui les rendra plus utiles et adaptés à vos besoins.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des souvenirs via le bouton 'Gérer' ci-dessous, ce qui les rendra plus utiles et adaptés à vos besoins.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Vous n'avez aucune conversation archivée",
 	"You have no archived conversations.": "Vous n'avez aucune conversation archivée",
 	"You have shared this chat": "Vous avez partagé cette conversation.",
 	"You have shared this chat": "Vous avez partagé cette conversation.",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternative au top_p, visant à assurer un équilibre entre qualité et variété. Le paramètre p représente la probabilité minimale pour qu'un token soit pris en compte, par rapport à la probabilité du token le plus probable. Par exemple, avec p=0.05 et le token le plus probable ayant une probabilité de 0.9, les logits ayant une valeur inférieure à 0.045 sont filtrés. (Par défaut : 0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternative au top_p, visant à assurer un équilibre entre qualité et variété. Le paramètre p représente la probabilité minimale pour qu'un token soit pris en compte, par rapport à la probabilité du token le plus probable. Par exemple, avec p=0.05 et le token le plus probable ayant une probabilité de 0.9, les logits ayant une valeur inférieure à 0.045 sont filtrés. (Par défaut : 0.0)",
 	"Amazing": "Incroyable",
 	"Amazing": "Incroyable",
 	"an assistant": "un assistant",
 	"an assistant": "un assistant",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "et",
 	"and": "et",
 	"and {{COUNT}} more": "et {{COUNT}} autres",
 	"and {{COUNT}} more": "et {{COUNT}} autres",
 	"and create a new shared link.": "et créer un nouveau lien partagé.",
 	"and create a new shared link.": "et créer un nouveau lien partagé.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "L'autorisation d'écriture du presse-papier a été refusée. Veuillez vérifier les paramètres de votre navigateur pour accorder l'accès nécessaire.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "L'autorisation d'écriture du presse-papier a été refusée. Veuillez vérifier les paramètres de votre navigateur pour accorder l'accès nécessaire.",
 	"Clone": "Cloner",
 	"Clone": "Cloner",
 	"Clone Chat": "Dupliquer le Chat",
 	"Clone Chat": "Dupliquer le Chat",
+	"Clone of {{TITLE}}": "",
 	"Close": "Fermer",
 	"Close": "Fermer",
 	"Code execution": "Exécution de code",
 	"Code execution": "Exécution de code",
 	"Code formatted successfully": "Le code a été formaté avec succès",
 	"Code formatted successfully": "Le code a été formaté avec succès",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Collection",
 	"Collection": "Collection",
 	"Color": "Couleur",
 	"Color": "Couleur",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Nom du groupe",
 	"Group Name": "Nom du groupe",
 	"Group updated successfully": "Groupe mis à jour avec succès",
 	"Group updated successfully": "Groupe mis à jour avec succès",
 	"Groups": "Groupes",
 	"Groups": "Groupes",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Retour haptique",
 	"Haptic Feedback": "Retour haptique",
 	"has no conversations.": "n'a aucune conversation.",
 	"has no conversations.": "n'a aucune conversation.",
 	"Hello, {{name}}": "Bonjour, {{name}}.",
 	"Hello, {{name}}": "Bonjour, {{name}}.",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "DD MMMM YYYY",
-	"MMMM DD, YYYY HH:mm": "DD MMMM YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "DD MMMM YYYY HH:mm:ss",
 	"Model": "Modèle",
 	"Model": "Modèle",
 	"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Le modèle '{{modelName}}' a été téléchargé avec succès.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Le modèle '{{modelTag}}' est déjà dans la file d'attente pour le téléchargement.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Veuillez saisir un prompt",
 	"Please enter a prompt": "Veuillez saisir un prompt",
 	"Please fill in all fields.": "Veuillez remplir tous les champs.",
 	"Please fill in all fields.": "Veuillez remplir tous les champs.",
 	"Please select a model first.": "Veuillez d'abord sélectionner un modèle.",
 	"Please select a model first.": "Veuillez d'abord sélectionner un modèle.",
+	"Please select a model.": "",
 	"Please select a reason": "Veuillez sélectionner une raison",
 	"Please select a reason": "Veuillez sélectionner une raison",
 	"Port": "Port",
 	"Port": "Port",
 	"Positive attitude": "Attitude positive",
 	"Positive attitude": "Attitude positive",
@@ -971,6 +973,7 @@
 	"Tools": "Outils",
 	"Tools": "Outils",
 	"Tools Access": "Accès aux outils",
 	"Tools Access": "Accès aux outils",
 	"Tools are a function calling system with arbitrary code execution": "Les outils sont un système d'appel de fonction avec exécution de code arbitraire",
 	"Tools are a function calling system with arbitrary code execution": "Les outils sont un système d'appel de fonction avec exécution de code arbitraire",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire",
 	"Tools have a function calling system that allows arbitrary code execution": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire",
 	"Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Les outils ont un système d'appel de fonction qui permet l'exécution de code arbitraire.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des mémoires à l'aide du bouton « Gérer » ci-dessous, ce qui les rendra plus utiles et mieux adaptées à vos besoins.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des mémoires à l'aide du bouton « Gérer » ci-dessous, ce qui les rendra plus utiles et mieux adaptées à vos besoins.",
 	"You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.",
 	"You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "Vous n'avez pas la permission de télécharger des fichiers.",
 	"You do not have permission to upload files.": "Vous n'avez pas la permission de télécharger des fichiers.",
 	"You have no archived conversations.": "Vous n'avez aucune conversation archivée.",
 	"You have no archived conversations.": "Vous n'avez aucune conversation archivée.",
 	"You have shared this chat": "Vous avez partagé cette conversation.",
 	"You have shared this chat": "Vous avez partagé cette conversation.",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "עוזר",
 	"an assistant": "עוזר",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "וגם",
 	"and": "וגם",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "וצור קישור משותף חדש.",
 	"and create a new shared link.": "וצור קישור משותף חדש.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "שיבוט",
 	"Clone": "שיבוט",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "סגור",
 	"Close": "סגור",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "אוסף",
 	"Collection": "אוסף",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "אין שיחות.",
 	"has no conversations.": "אין שיחות.",
 	"Hello, {{name}}": "שלום, {{name}}",
 	"Hello, {{name}}": "שלום, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "DD בMMMM, YYYY",
-	"MMMM DD, YYYY HH:mm": "DD בMMMM, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "המודל '{{modelName}}' הורד בהצלחה.",
 	"Model '{{modelName}}' has been successfully downloaded.": "המודל '{{modelName}}' הורד בהצלחה.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "המודל '{{modelTag}}' כבר בתור להורדה.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "המודל '{{modelTag}}' כבר בתור להורדה.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "גישה חיובית",
 	"Positive attitude": "גישה חיובית",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "אין לך שיחות בארכיון.",
 	"You have no archived conversations.": "אין לך שיחות בארכיון.",
 	"You have shared this chat": "שיתפת את השיחה הזו",
 	"You have shared this chat": "שיתפת את השיחה הזו",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "एक सहायक",
 	"an assistant": "एक सहायक",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "और",
 	"and": "और",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "और एक नई साझा लिंक बनाएं.",
 	"and create a new shared link.": "और एक नई साझा लिंक बनाएं.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "क्लोन",
 	"Clone": "क्लोन",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "बंद करना",
 	"Close": "बंद करना",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "संग्रह",
 	"Collection": "संग्रह",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "कोई बातचीत नहीं है",
 	"has no conversations.": "कोई बातचीत नहीं है",
 	"Hello, {{name}}": "नमस्ते, {{name}}",
 	"Hello, {{name}}": "नमस्ते, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "मिरोस्टा",
 	"Mirostat": "मिरोस्टा",
 	"Mirostat Eta": "मिरोस्टा ईटा",
 	"Mirostat Eta": "मिरोस्टा ईटा",
 	"Mirostat Tau": "मिरोस्तात ताऊ",
 	"Mirostat Tau": "मिरोस्तात ताऊ",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "मॉडल '{{modelName}}' सफलतापूर्वक डाउनलोड हो गया है।",
 	"Model '{{modelName}}' has been successfully downloaded.": "मॉडल '{{modelName}}' सफलतापूर्वक डाउनलोड हो गया है।",
 	"Model '{{modelTag}}' is already in queue for downloading.": "मॉडल '{{modelTag}}' पहले से ही डाउनलोड करने के लिए कतार में है।",
 	"Model '{{modelTag}}' is already in queue for downloading.": "मॉडल '{{modelTag}}' पहले से ही डाउनलोड करने के लिए कतार में है।",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "सकारात्मक रवैया",
 	"Positive attitude": "सकारात्मक रवैया",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "शीर्ष  K",
 	"Top K": "शीर्ष  K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "आपको कोई अंकित चैट नहीं है।",
 	"You have no archived conversations.": "आपको कोई अंकित चैट नहीं है।",
 	"You have shared this chat": "आपने इस चैट को शेयर किया है",
 	"You have shared this chat": "आपने इस चैट को शेयर किया है",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "asistent",
 	"an assistant": "asistent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "i",
 	"and": "i",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "i stvorite novu dijeljenu vezu.",
 	"and create a new shared link.": "i stvorite novu dijeljenu vezu.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Kloniraj",
 	"Clone": "Kloniraj",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Zatvori",
 	"Close": "Zatvori",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Kolekcija",
 	"Collection": "Kolekcija",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "nema razgovora.",
 	"has no conversations.": "nema razgovora.",
 	"Hello, {{name}}": "Bok, {{name}}",
 	"Hello, {{name}}": "Bok, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' je uspješno preuzet.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' je uspješno preuzet.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je već u redu za preuzimanje.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je već u redu za preuzimanje.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Pozitivan stav",
 	"Positive attitude": "Pozitivan stav",
@@ -971,6 +973,7 @@
 	"Tools": "Alati",
 	"Tools": "Alati",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Možete personalizirati svoje interakcije s LLM-ima dodavanjem uspomena putem gumba 'Upravljanje' u nastavku, čineći ih korisnijima i prilagođenijima vama.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Možete personalizirati svoje interakcije s LLM-ima dodavanjem uspomena putem gumba 'Upravljanje' u nastavku, čineći ih korisnijima i prilagođenijima vama.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nemate arhiviranih razgovora.",
 	"You have no archived conversations.": "Nemate arhiviranih razgovora.",
 	"You have shared this chat": "Podijelili ste ovaj razgovor",
 	"You have shared this chat": "Podijelili ste ovaj razgovor",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "egy asszisztens",
 	"an assistant": "egy asszisztens",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "és",
 	"and": "és",
 	"and {{COUNT}} more": "és még {{COUNT}} db",
 	"and {{COUNT}} more": "és még {{COUNT}} db",
 	"and create a new shared link.": "és hozz létre egy új megosztott linket.",
 	"and create a new shared link.": "és hozz létre egy új megosztott linket.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Vágólap írási engedély megtagadva. Kérjük, ellenőrizd a böngésző beállításait a szükséges hozzáférés megadásához.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Vágólap írási engedély megtagadva. Kérjük, ellenőrizd a böngésző beállításait a szükséges hozzáférés megadásához.",
 	"Clone": "Klónozás",
 	"Clone": "Klónozás",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Bezárás",
 	"Close": "Bezárás",
 	"Code execution": "Kód végrehajtás",
 	"Code execution": "Kód végrehajtás",
 	"Code formatted successfully": "Kód sikeresen formázva",
 	"Code formatted successfully": "Kód sikeresen formázva",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Gyűjtemény",
 	"Collection": "Gyűjtemény",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Tapintási visszajelzés",
 	"Haptic Feedback": "Tapintási visszajelzés",
 	"has no conversations.": "nincsenek beszélgetései.",
 	"has no conversations.": "nincsenek beszélgetései.",
 	"Hello, {{name}}": "Helló, {{name}}",
 	"Hello, {{name}}": "Helló, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "YYYY. MMMM DD.",
-	"MMMM DD, YYYY HH:mm": "YYYY. MMMM DD. HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "YYYY. MMMM DD. hh:mm:ss A",
 	"Model": "Modell",
 	"Model": "Modell",
 	"Model '{{modelName}}' has been successfully downloaded.": "A '{{modelName}}' modell sikeresen letöltve.",
 	"Model '{{modelName}}' has been successfully downloaded.": "A '{{modelName}}' modell sikeresen letöltve.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "A '{{modelTag}}' modell már a letöltési sorban van.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "A '{{modelTag}}' modell már a letöltési sorban van.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Kérjük, adjon meg egy promptot",
 	"Please enter a prompt": "Kérjük, adjon meg egy promptot",
 	"Please fill in all fields.": "Kérjük, töltse ki az összes mezőt.",
 	"Please fill in all fields.": "Kérjük, töltse ki az összes mezőt.",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Kérjük, válasszon egy okot",
 	"Please select a reason": "Kérjük, válasszon egy okot",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Pozitív hozzáállás",
 	"Positive attitude": "Pozitív hozzáállás",
@@ -971,6 +973,7 @@
 	"Tools": "Eszközök",
 	"Tools": "Eszközök",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "Az eszközök olyan függvényhívó rendszert alkotnak, amely tetszőleges kód végrehajtását teszi lehetővé",
 	"Tools are a function calling system with arbitrary code execution": "Az eszközök olyan függvényhívó rendszert alkotnak, amely tetszőleges kód végrehajtását teszi lehetővé",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását",
 	"Tools have a function calling system that allows arbitrary code execution": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását",
 	"Tools have a function calling system that allows arbitrary code execution.": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Az eszközök olyan függvényhívó rendszerrel rendelkeznek, amely lehetővé teszi tetszőleges kód végrehajtását.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Az LLM-ekkel való interakcióit személyre szabhatja emlékek hozzáadásával a lenti 'Kezelés' gomb segítségével, így azok még hasznosabbak és személyre szabottabbak lesznek.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Az LLM-ekkel való interakcióit személyre szabhatja emlékek hozzáadásával a lenti 'Kezelés' gomb segítségével, így azok még hasznosabbak és személyre szabottabbak lesznek.",
 	"You cannot upload an empty file.": "Nem tölthet fel üres fájlt.",
 	"You cannot upload an empty file.": "Nem tölthet fel üres fájlt.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nincsenek archivált beszélgetései.",
 	"You have no archived conversations.": "Nincsenek archivált beszélgetései.",
 	"You have shared this chat": "Megosztotta ezt a beszélgetést",
 	"You have shared this chat": "Megosztotta ezt a beszélgetést",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "asisten",
 	"an assistant": "asisten",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "dan",
 	"and": "dan",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "dan membuat tautan bersama baru.",
 	"and create a new shared link.": "dan membuat tautan bersama baru.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Izin menulis papan klip ditolak. Periksa pengaturan peramban Anda untuk memberikan akses yang diperlukan.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Izin menulis papan klip ditolak. Periksa pengaturan peramban Anda untuk memberikan akses yang diperlukan.",
 	"Clone": "Kloning",
 	"Clone": "Kloning",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Tutup",
 	"Close": "Tutup",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "Kode berhasil diformat",
 	"Code formatted successfully": "Kode berhasil diformat",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Koleksi",
 	"Collection": "Koleksi",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "tidak memiliki percakapan.",
 	"has no conversations.": "tidak memiliki percakapan.",
 	"Hello, {{name}}": "Halo, {{name}}",
 	"Hello, {{name}}": "Halo, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH: mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY jj: mm: dd A",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' telah berhasil diunduh.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' telah berhasil diunduh.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' sudah berada dalam antrean untuk diunduh.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' sudah berada dalam antrean untuk diunduh.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Sikap positif",
 	"Positive attitude": "Sikap positif",
@@ -971,6 +973,7 @@
 	"Tools": "Alat",
 	"Tools": "Alat",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "K atas",
 	"Top K": "K atas",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda dapat mempersonalisasi interaksi Anda dengan LLM dengan menambahkan kenangan melalui tombol 'Kelola' di bawah ini, sehingga lebih bermanfaat dan disesuaikan untuk Anda.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda dapat mempersonalisasi interaksi Anda dengan LLM dengan menambahkan kenangan melalui tombol 'Kelola' di bawah ini, sehingga lebih bermanfaat dan disesuaikan untuk Anda.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Anda tidak memiliki percakapan yang diarsipkan.",
 	"You have no archived conversations.": "Anda tidak memiliki percakapan yang diarsipkan.",
 	"You have shared this chat": "Anda telah membagikan obrolan ini",
 	"You have shared this chat": "Anda telah membagikan obrolan ini",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Rogha eile seachas an top_p, agus tá sé mar aidhm aige cothromaíocht cáilíochta agus éagsúlachta a chinntiú. Léiríonn an paraiméadar p an dóchúlacht íosta go mbreithneofar comhartha, i gcoibhneas le dóchúlacht an chomhartha is dóichí. Mar shampla, le p=0.05 agus dóchúlacht 0.9 ag an comhartha is dóichí, déantar logits le luach níos lú ná 0.045 a scagadh amach. (Réamhshocrú: 0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Rogha eile seachas an top_p, agus tá sé mar aidhm aige cothromaíocht cáilíochta agus éagsúlachta a chinntiú. Léiríonn an paraiméadar p an dóchúlacht íosta go mbreithneofar comhartha, i gcoibhneas le dóchúlacht an chomhartha is dóichí. Mar shampla, le p=0.05 agus dóchúlacht 0.9 ag an comhartha is dóichí, déantar logits le luach níos lú ná 0.045 a scagadh amach. (Réamhshocrú: 0.0)",
 	"Amazing": "Iontach",
 	"Amazing": "Iontach",
 	"an assistant": "cúntóir",
 	"an assistant": "cúntóir",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "agus",
 	"and": "agus",
 	"and {{COUNT}} more": "agus {{COUNT}} eile",
 	"and {{COUNT}} more": "agus {{COUNT}} eile",
 	"and create a new shared link.": "agus cruthaigh nasc nua roinnte.",
 	"and create a new shared link.": "agus cruthaigh nasc nua roinnte.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Diúltaíodh cead scríofa an ghearrthaisce. Seiceáil socruithe do bhrabhsálaí chun an rochtain riachtanach a dheonú.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Diúltaíodh cead scríofa an ghearrthaisce. Seiceáil socruithe do bhrabhsálaí chun an rochtain riachtanach a dheonú.",
 	"Clone": "Clón",
 	"Clone": "Clón",
 	"Clone Chat": "Comhrá Clón",
 	"Clone Chat": "Comhrá Clón",
+	"Clone of {{TITLE}}": "",
 	"Close": "Dún",
 	"Close": "Dún",
 	"Code execution": "Cód a fhorghníomhú",
 	"Code execution": "Cód a fhorghníomhú",
 	"Code formatted successfully": "Cód formáidithe go rathúil",
 	"Code formatted successfully": "Cód formáidithe go rathúil",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Bailiúchán",
 	"Collection": "Bailiúchán",
 	"Color": "Dath",
 	"Color": "Dath",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Ainm an Ghrúpa",
 	"Group Name": "Ainm an Ghrúpa",
 	"Group updated successfully": "D'éirigh le nuashonrú an ghrúpa",
 	"Group updated successfully": "D'éirigh le nuashonrú an ghrúpa",
 	"Groups": "Grúpaí",
 	"Groups": "Grúpaí",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Aiseolas Haptic",
 	"Haptic Feedback": "Aiseolas Haptic",
 	"has no conversations.": "níl aon chomhráite aige.",
 	"has no conversations.": "níl aon chomhráite aige.",
 	"Hello, {{name}}": "Dia duit, {{name}}",
 	"Hello, {{name}}": "Dia duit, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM LL, BBBB",
-	"MMMM DD, YYYY HH:mm": "MMMM LL, BBBB UU:nn",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM LL, BBBB uu:nn:ss A",
 	"Model": "Múnla",
 	"Model": "Múnla",
 	"Model '{{modelName}}' has been successfully downloaded.": "Rinneadh an tsamhail '{{modelName}}' a íoslódáil go rathúil.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Rinneadh an tsamhail '{{modelName}}' a íoslódáil go rathúil.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Tá múnla ‘{{modelTag}}’ sa scuaine cheana féin le híoslódáil.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Tá múnla ‘{{modelTag}}’ sa scuaine cheana féin le híoslódáil.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Cuir isteach leid",
 	"Please enter a prompt": "Cuir isteach leid",
 	"Please fill in all fields.": "Líon isteach gach réimse le do thoil.",
 	"Please fill in all fields.": "Líon isteach gach réimse le do thoil.",
 	"Please select a model first.": "Roghnaigh munla ar dtús le do thoil.",
 	"Please select a model first.": "Roghnaigh munla ar dtús le do thoil.",
+	"Please select a model.": "",
 	"Please select a reason": "Roghnaigh cúis le do thoil",
 	"Please select a reason": "Roghnaigh cúis le do thoil",
 	"Port": "Port",
 	"Port": "Port",
 	"Positive attitude": "Dearcadh dearfach",
 	"Positive attitude": "Dearcadh dearfach",
@@ -971,6 +973,7 @@
 	"Tools": "Uirlisí",
 	"Tools": "Uirlisí",
 	"Tools Access": "Rochtain Uirlisí",
 	"Tools Access": "Rochtain Uirlisí",
 	"Tools are a function calling system with arbitrary code execution": "Is córas glaonna feidhme iad uirlisí le forghníomhú cód treallach",
 	"Tools are a function calling system with arbitrary code execution": "Is córas glaonna feidhme iad uirlisí le forghníomhú cód treallach",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach",
 	"Tools have a function calling system that allows arbitrary code execution": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach",
 	"Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Tá córas glaonna feidhme ag uirlisí a cheadaíonn forghníomhú cód treallach.",
 	"Top K": "Barr K",
 	"Top K": "Barr K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Is féidir leat do chuid idirghníomhaíochtaí le LLManna a phearsantú ach cuimhní cinn a chur leis tríd an gcnaipe 'Bainistigh' thíos, rud a fhágann go mbeidh siad níos cabhrach agus níos oiriúnaí duit.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Is féidir leat do chuid idirghníomhaíochtaí le LLManna a phearsantú ach cuimhní cinn a chur leis tríd an gcnaipe 'Bainistigh' thíos, rud a fhágann go mbeidh siad níos cabhrach agus níos oiriúnaí duit.",
 	"You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.",
 	"You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "Níl cead agat comhaid a uaslódáil.",
 	"You do not have permission to upload files.": "Níl cead agat comhaid a uaslódáil.",
 	"You have no archived conversations.": "Níl aon chomhráite cartlainne agat.",
 	"You have no archived conversations.": "Níl aon chomhráite cartlainne agat.",
 	"You have shared this chat": "Tá an comhrá seo roinnte agat",
 	"You have shared this chat": "Tá an comhrá seo roinnte agat",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "un assistente",
 	"an assistant": "un assistente",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "e",
 	"and": "e",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "e crea un nuovo link condiviso.",
 	"and create a new shared link.": "e crea un nuovo link condiviso.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Clone",
 	"Clone": "Clone",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Chiudi",
 	"Close": "Chiudi",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Collezione",
 	"Collection": "Collezione",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "non ha conversazioni.",
 	"has no conversations.": "non ha conversazioni.",
 	"Hello, {{name}}": "Ciao, {{name}}",
 	"Hello, {{name}}": "Ciao, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Il modello '{{modelName}}' è stato scaricato con successo.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Il modello '{{modelName}}' è stato scaricato con successo.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Il modello '{{modelTag}}' è già in coda per il download.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Il modello '{{modelTag}}' è già in coda per il download.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Attitudine positiva",
 	"Positive attitude": "Attitudine positiva",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Non hai conversazioni archiviate.",
 	"You have no archived conversations.": "Non hai conversazioni archiviate.",
 	"You have shared this chat": "Hai condiviso questa chat",
 	"You have shared this chat": "Hai condiviso questa chat",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "アシスタント",
 	"an assistant": "アシスタント",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "および",
 	"and": "および",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "し、新しい共有リンクを作成します。",
 	"and create a new shared link.": "し、新しい共有リンクを作成します。",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "クリップボードへの書き込み許可がありません。ブラウザ設定を確認し許可してください。",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "クリップボードへの書き込み許可がありません。ブラウザ設定を確認し許可してください。",
 	"Clone": "クローン",
 	"Clone": "クローン",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "閉じる",
 	"Close": "閉じる",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "コードフォーマットに成功しました",
 	"Code formatted successfully": "コードフォーマットに成功しました",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "コレクション",
 	"Collection": "コレクション",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "触覚フィードバック",
 	"Haptic Feedback": "触覚フィードバック",
 	"has no conversations.": "対話はありません。",
 	"has no conversations.": "対話はありません。",
 	"Hello, {{name}}": "こんにちは、{{name}} さん",
 	"Hello, {{name}}": "こんにちは、{{name}} さん",
@@ -595,9 +599,6 @@
 	"Mirostat": "ミロスタット",
 	"Mirostat": "ミロスタット",
 	"Mirostat Eta": "ミロスタット Eta",
 	"Mirostat Eta": "ミロスタット Eta",
 	"Mirostat Tau": "ミロスタット Tau",
 	"Mirostat Tau": "ミロスタット Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "モデル '{{modelName}}' が正常にダウンロードされました。",
 	"Model '{{modelName}}' has been successfully downloaded.": "モデル '{{modelName}}' が正常にダウンロードされました。",
 	"Model '{{modelTag}}' is already in queue for downloading.": "モデル '{{modelTag}}' はすでにダウンロード待ち行列に入っています。",
 	"Model '{{modelTag}}' is already in queue for downloading.": "モデル '{{modelTag}}' はすでにダウンロード待ち行列に入っています。",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "前向きな態度",
 	"Positive attitude": "前向きな態度",
@@ -971,6 +973,7 @@
 	"Tools": "ツール",
 	"Tools": "ツール",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "トップ K",
 	"Top K": "トップ K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "これまでにアーカイブされた会話はありません。",
 	"You have no archived conversations.": "これまでにアーカイブされた会話はありません。",
 	"You have shared this chat": "このチャットを共有しました",
 	"You have shared this chat": "このチャットを共有しました",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "ასისტენტი",
 	"an assistant": "ასისტენტი",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "და",
 	"and": "და",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "და შექმენით ახალი გაზიარებული ბმული.",
 	"and create a new shared link.": "და შექმენით ახალი გაზიარებული ბმული.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "კლონი",
 	"Clone": "კლონი",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "დახურვა",
 	"Close": "დახურვა",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "ნაკრები",
 	"Collection": "ნაკრები",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "არა უფლება ჩაწერა",
 	"has no conversations.": "არა უფლება ჩაწერა",
 	"Hello, {{name}}": "გამარჯობა, {{name}}",
 	"Hello, {{name}}": "გამარჯობა, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "მიროსტატი",
 	"Mirostat": "მიროსტატი",
 	"Mirostat Eta": "მიროსტატი ეტა",
 	"Mirostat Eta": "მიროსტატი ეტა",
 	"Mirostat Tau": "მიროსტატი ტაუ",
 	"Mirostat Tau": "მიროსტატი ტაუ",
-	"MMMM DD, YYYY": "თვე დღე, წელი",
-	"MMMM DD, YYYY HH:mm": "თვე დღე, წელი HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "მოდელი „{{modelName}}“ წარმატებით ჩამოიტვირთა.",
 	"Model '{{modelName}}' has been successfully downloaded.": "მოდელი „{{modelName}}“ წარმატებით ჩამოიტვირთა.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "მოდელი „{{modelTag}}“ უკვე ჩამოტვირთვის რიგშია.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "მოდელი „{{modelTag}}“ უკვე ჩამოტვირთვის რიგშია.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "პოზიტიური ანგარიში",
 	"Positive attitude": "პოზიტიური ანგარიში",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "ტოპ K",
 	"Top K": "ტოპ K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "არ ხართ არქივირებული განხილვები.",
 	"You have no archived conversations.": "არ ხართ არქივირებული განხილვები.",
 	"You have shared this chat": "ამ ჩატის გააგზავნა",
 	"You have shared this chat": "ამ ჩატის გააგზავნა",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "놀라움",
 	"Amazing": "놀라움",
 	"an assistant": "어시스턴트",
 	"an assistant": "어시스턴트",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "그리고",
 	"and": "그리고",
 	"and {{COUNT}} more": "그리고 {{COUNT}} 더",
 	"and {{COUNT}} more": "그리고 {{COUNT}} 더",
 	"and create a new shared link.": "새로운 공유 링크를 생성합니다.",
 	"and create a new shared link.": "새로운 공유 링크를 생성합니다.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "클립보드 사용 권한이 거절되었습니다. 필요한 접근을 사용하기 위해 브라우져 설정을 확인 부탁드립니다.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "클립보드 사용 권한이 거절되었습니다. 필요한 접근을 사용하기 위해 브라우져 설정을 확인 부탁드립니다.",
 	"Clone": "복제",
 	"Clone": "복제",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "닫기",
 	"Close": "닫기",
 	"Code execution": "코드 실행",
 	"Code execution": "코드 실행",
 	"Code formatted successfully": "성공적으로 코드가 생성되었습니다",
 	"Code formatted successfully": "성공적으로 코드가 생성되었습니다",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "컬렉션",
 	"Collection": "컬렉션",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "그룹 명",
 	"Group Name": "그룹 명",
 	"Group updated successfully": "성공적으로 그룹을 수정했습니다",
 	"Group updated successfully": "성공적으로 그룹을 수정했습니다",
 	"Groups": "그룹",
 	"Groups": "그룹",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "햅틱 피드백",
 	"Haptic Feedback": "햅틱 피드백",
 	"has no conversations.": "대화가 없습니다.",
 	"has no conversations.": "대화가 없습니다.",
 	"Hello, {{name}}": "안녕하세요, {{name}}",
 	"Hello, {{name}}": "안녕하세요, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "모델",
 	"Model": "모델",
 	"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' 모델이 성공적으로 다운로드되었습니다.",
 	"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' 모델이 성공적으로 다운로드되었습니다.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' 모델은 이미 다운로드 대기열에 있습니다.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' 모델은 이미 다운로드 대기열에 있습니다.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "프롬프트를 입력해주세요",
 	"Please enter a prompt": "프롬프트를 입력해주세요",
 	"Please fill in all fields.": "모두 빈칸없이 채워주세요",
 	"Please fill in all fields.": "모두 빈칸없이 채워주세요",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "이유를 선택해주세요",
 	"Please select a reason": "이유를 선택해주세요",
 	"Port": "포트",
 	"Port": "포트",
 	"Positive attitude": "긍정적인 자세",
 	"Positive attitude": "긍정적인 자세",
@@ -971,6 +973,7 @@
 	"Tools": "도구",
 	"Tools": "도구",
 	"Tools Access": "도구 접근",
 	"Tools Access": "도구 접근",
 	"Tools are a function calling system with arbitrary code execution": "도구는 임의 코드를 실행시키는 함수를 불러오는 시스템입니다",
 	"Tools are a function calling system with arbitrary code execution": "도구는 임의 코드를 실행시키는 함수를 불러오는 시스템입니다",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다",
 	"Tools have a function calling system that allows arbitrary code execution": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다",
 	"Tools have a function calling system that allows arbitrary code execution.": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다.",
 	"Tools have a function calling system that allows arbitrary code execution.": "도구에 임의 코드 실행을 허용하는 함수가 포함되어 있습니다.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "아래 '관리' 버튼으로 메모리를 추가하여 LLM들과의 상호작용을 개인화할 수 있습니다. 이를 통해 더 유용하고 맞춤화된 경험을 제공합니다.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "아래 '관리' 버튼으로 메모리를 추가하여 LLM들과의 상호작용을 개인화할 수 있습니다. 이를 통해 더 유용하고 맞춤화된 경험을 제공합니다.",
 	"You cannot upload an empty file.": "빈 파일을 업로드 할 수 없습니다",
 	"You cannot upload an empty file.": "빈 파일을 업로드 할 수 없습니다",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "채팅을 보관한 적이 없습니다.",
 	"You have no archived conversations.": "채팅을 보관한 적이 없습니다.",
 	"You have shared this chat": "이 채팅을 공유했습니다.",
 	"You have shared this chat": "이 채팅을 공유했습니다.",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "assistentas",
 	"an assistant": "assistentas",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "ir",
 	"and": "ir",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "sukurti naują dalinimosi nuorodą",
 	"and create a new shared link.": "sukurti naują dalinimosi nuorodą",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Iškarpinės naudojimas neleidžiamas naršyklės.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Iškarpinės naudojimas neleidžiamas naršyklės.",
 	"Clone": "Klonuoti",
 	"Clone": "Klonuoti",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Uždaryti",
 	"Close": "Uždaryti",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "Kodas suformatuotas sėkmingai",
 	"Code formatted successfully": "Kodas suformatuotas sėkmingai",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Kolekcija",
 	"Collection": "Kolekcija",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "valanda:mėnesis:metai",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "neturi pokalbių",
 	"has no conversations.": "neturi pokalbių",
 	"Hello, {{name}}": "Sveiki, {{name}}",
 	"Hello, {{name}}": "Sveiki, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modelis sėkmingai atsisiųstas.",
 	"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' modelis sėkmingai atsisiųstas.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modelis '{{modelTag}}' jau atsisiuntimų eilėje.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modelis '{{modelTag}}' jau atsisiuntimų eilėje.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Pozityvus elgesys",
 	"Positive attitude": "Pozityvus elgesys",
@@ -971,6 +973,7 @@
 	"Tools": "Įrankiai",
 	"Tools": "Įrankiai",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "Įrankiai gali naudoti funkcijas ir vykdyti kodą",
 	"Tools are a function calling system with arbitrary code execution": "Įrankiai gali naudoti funkcijas ir vykdyti kodą",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
 	"Tools have a function calling system that allows arbitrary code execution": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
 	"Tools have a function calling system that allows arbitrary code execution.": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
 	"Tools have a function calling system that allows arbitrary code execution.": "Įrankiai gali naudoti funkcijas ir leisti vykdyti kodą",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Galite pagerinti modelių darbą suteikdami jiems atminties funkcionalumą.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Galite pagerinti modelių darbą suteikdami jiems atminties funkcionalumą.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Jūs neturite archyvuotų pokalbių",
 	"You have no archived conversations.": "Jūs neturite archyvuotų pokalbių",
 	"You have shared this chat": "Pasidalinote šiuo pokalbiu",
 	"You have shared this chat": "Pasidalinote šiuo pokalbiu",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "seorang pembantu",
 	"an assistant": "seorang pembantu",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "dan",
 	"and": "dan",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "dan cipta pautan kongsi baharu",
 	"and create a new shared link.": "dan cipta pautan kongsi baharu",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Kebenaran untuk menulis di papan klip ditolak. Sila semak tetapan pelayan web anda untuk memberikan akses yang diperlukan",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Kebenaran untuk menulis di papan klip ditolak. Sila semak tetapan pelayan web anda untuk memberikan akses yang diperlukan",
 	"Clone": "Klon",
 	"Clone": "Klon",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Tutup",
 	"Close": "Tutup",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "Kod berjaya diformatkan",
 	"Code formatted successfully": "Kod berjaya diformatkan",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Koleksi",
 	"Collection": "Koleksi",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "tidak mempunyai perbualan.",
 	"has no conversations.": "tidak mempunyai perbualan.",
 	"Hello, {{name}}": "Hello, {{name}}",
 	"Hello, {{name}}": "Hello, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "DD MMMM YYYY",
-	"MMMM DD, YYYY HH:mm": "DD MMMM YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "DD MMMM YYYY HH:mm:ss A",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{ modelName }}' telah berjaya dimuat turun.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{ modelName }}' telah berjaya dimuat turun.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{ modelTag }}' sudah dalam baris gilir untuk dimuat turun.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{ modelTag }}' sudah dalam baris gilir untuk dimuat turun.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Sikap positif",
 	"Positive attitude": "Sikap positif",
@@ -971,6 +973,7 @@
 	"Tools": "Alatan",
 	"Tools": "Alatan",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "Alatan ialah sistem panggilan fungsi dengan pelaksanaan kod sewenang-wenangnya",
 	"Tools are a function calling system with arbitrary code execution": "Alatan ialah sistem panggilan fungsi dengan pelaksanaan kod sewenang-wenangnya",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya",
 	"Tools have a function calling system that allows arbitrary code execution": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya",
 	"Tools have a function calling system that allows arbitrary code execution.": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Alatan mempunyai sistem panggilan fungsi yang membolehkan pelaksanaan kod sewenang-wenangnya.",
 	"Top K": "'Top K'",
 	"Top K": "'Top K'",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda boleh memperibadikan interaksi anda dengan LLM dengan menambahkan memori melalui butang 'Urus' di bawah, menjadikannya lebih membantu dan disesuaikan dengan anda.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda boleh memperibadikan interaksi anda dengan LLM dengan menambahkan memori melalui butang 'Urus' di bawah, menjadikannya lebih membantu dan disesuaikan dengan anda.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Anda tidak mempunyai perbualan yang diarkibkan",
 	"You have no archived conversations.": "Anda tidak mempunyai perbualan yang diarkibkan",
 	"You have shared this chat": "Anda telah berkongsi perbualan ini",
 	"You have shared this chat": "Anda telah berkongsi perbualan ini",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativ til top_p, og har som mål å sikre en balanse mellom kvalitet og variasjon. Parameteren p representerer minimumssannsynligheten for at et token skal vurderes, i forhold til sannsynligheten for det mest sannsynlige tokenet. Hvis p for eksempel er 0,05 og det mest sannsynlige tokenet har en sannsynlighet på 0,9, filtreres logits med en verdi på mindre enn 0,045 bort. (Standard: 0,0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativ til top_p, og har som mål å sikre en balanse mellom kvalitet og variasjon. Parameteren p representerer minimumssannsynligheten for at et token skal vurderes, i forhold til sannsynligheten for det mest sannsynlige tokenet. Hvis p for eksempel er 0,05 og det mest sannsynlige tokenet har en sannsynlighet på 0,9, filtreres logits med en verdi på mindre enn 0,045 bort. (Standard: 0,0)",
 	"Amazing": "Flott",
 	"Amazing": "Flott",
 	"an assistant": "en assistent",
 	"an assistant": "en assistent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "og",
 	"and": "og",
 	"and {{COUNT}} more": "og {{COUNT}} til",
 	"and {{COUNT}} more": "og {{COUNT}} til",
 	"and create a new shared link.": "og opprett en ny delt lenke.",
 	"and create a new shared link.": "og opprett en ny delt lenke.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Skrivetilgang til utklippstavlen avslått. Kontroller nettleserinnstillingene for å gi den nødvendige tilgangen.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Skrivetilgang til utklippstavlen avslått. Kontroller nettleserinnstillingene for å gi den nødvendige tilgangen.",
 	"Clone": "Klon",
 	"Clone": "Klon",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Lukk",
 	"Close": "Lukk",
 	"Code execution": "Kodekjøring",
 	"Code execution": "Kodekjøring",
 	"Code formatted successfully": "Koden er formatert",
 	"Code formatted successfully": "Koden er formatert",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Samling",
 	"Collection": "Samling",
 	"Color": "Farge",
 	"Color": "Farge",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Navn på gruppe",
 	"Group Name": "Navn på gruppe",
 	"Group updated successfully": "Gruppe oppdatert",
 	"Group updated successfully": "Gruppe oppdatert",
 	"Groups": "Grupper",
 	"Groups": "Grupper",
-	"h:mm a": "t:mm a",
 	"Haptic Feedback": "Haptisk tilbakemelding",
 	"Haptic Feedback": "Haptisk tilbakemelding",
 	"has no conversations.": "har ingen samtaler.",
 	"has no conversations.": "har ingen samtaler.",
 	"Hello, {{name}}": "Hei, {{name}}!",
 	"Hello, {{name}}": "Hei, {{name}}!",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "DD MMMM YYYY",
-	"MMMM DD, YYYY HH:mm": "HH:mm DD MMMM YYYY",
-	"MMMM DD, YYYY hh:mm:ss A": "hh:mm:ss A DD MMMM YYYY",
 	"Model": "Modell",
 	"Model": "Modell",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modellen {{modelName}} er lastet ned.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modellen {{modelName}} er lastet ned.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modellen {{modelTag}} er allerede i nedlastingskøen.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modellen {{modelTag}} er allerede i nedlastingskøen.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Angi en ledetekst",
 	"Please enter a prompt": "Angi en ledetekst",
 	"Please fill in all fields.": "Fyll i alle felter",
 	"Please fill in all fields.": "Fyll i alle felter",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Velg en årsak",
 	"Please select a reason": "Velg en årsak",
 	"Port": "Port",
 	"Port": "Port",
 	"Positive attitude": "Positiv holdning",
 	"Positive attitude": "Positiv holdning",
@@ -971,6 +973,7 @@
 	"Tools": "Verktøy",
 	"Tools": "Verktøy",
 	"Tools Access": "Verktøyets tilgang",
 	"Tools Access": "Verktøyets tilgang",
 	"Tools are a function calling system with arbitrary code execution": "Verktøy er et funksjonskallsystem med vilkårlig kodekjøring",
 	"Tools are a function calling system with arbitrary code execution": "Verktøy er et funksjonskallsystem med vilkårlig kodekjøring",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring",
 	"Tools have a function calling system that allows arbitrary code execution": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring",
 	"Tools have a function calling system that allows arbitrary code execution.": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Verktøy inneholder et funksjonskallsystem som tillater vilkårlig kodekjøring.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan tilpasse interaksjonene dine med språkmodeller ved å legge til minner gjennom Administrer-knappen nedenfor, slik at de blir mer til nyttige og tilpasset deg.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan tilpasse interaksjonene dine med språkmodeller ved å legge til minner gjennom Administrer-knappen nedenfor, slik at de blir mer til nyttige og tilpasset deg.",
 	"You cannot upload an empty file.": "Du kan ikke laste opp en tom fil.",
 	"You cannot upload an empty file.": "Du kan ikke laste opp en tom fil.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "Du har ikke tillatelse til å laste opp filer.",
 	"You do not have permission to upload files.": "Du har ikke tillatelse til å laste opp filer.",
 	"You have no archived conversations.": "Du har ingen arkiverte samtaler.",
 	"You have no archived conversations.": "Du har ingen arkiverte samtaler.",
 	"You have shared this chat": "Du har delt denne chatten",
 	"You have shared this chat": "Du har delt denne chatten",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternatief voor de top_p, en streeft naar een evenwicht tussen kwaliteit en variatie. De parameter p vertegenwoordigt de minimumwaarschijnlijkheid dat een token in aanmerking wordt genomen, in verhouding tot de waarschijnlijkheid van het meest waarschijnlijke token. Bijvoorbeeld, met p=0.05 en de meest waarschijnlijke token met een waarschijnlijkheid van 0.9, worden logits met een waarde kleiner dan 0.045 uitgefilterd. (Standaard: 0,0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternatief voor de top_p, en streeft naar een evenwicht tussen kwaliteit en variatie. De parameter p vertegenwoordigt de minimumwaarschijnlijkheid dat een token in aanmerking wordt genomen, in verhouding tot de waarschijnlijkheid van het meest waarschijnlijke token. Bijvoorbeeld, met p=0.05 en de meest waarschijnlijke token met een waarschijnlijkheid van 0.9, worden logits met een waarde kleiner dan 0.045 uitgefilterd. (Standaard: 0,0)",
 	"Amazing": "Geweldig",
 	"Amazing": "Geweldig",
 	"an assistant": "een assistent",
 	"an assistant": "een assistent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "en",
 	"and": "en",
 	"and {{COUNT}} more": "en {{COUNT}} meer",
 	"and {{COUNT}} more": "en {{COUNT}} meer",
 	"and create a new shared link.": "en maak een nieuwe gedeelde link.",
 	"and create a new shared link.": "en maak een nieuwe gedeelde link.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Klembord schrijftoestemming geweigerd. Kijk je browserinstellingen na om de benodigde toestemming te geven.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Klembord schrijftoestemming geweigerd. Kijk je browserinstellingen na om de benodigde toestemming te geven.",
 	"Clone": "Kloon",
 	"Clone": "Kloon",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Sluiten",
 	"Close": "Sluiten",
 	"Code execution": "Code uitvoeren",
 	"Code execution": "Code uitvoeren",
 	"Code formatted successfully": "Code succesvol geformateerd",
 	"Code formatted successfully": "Code succesvol geformateerd",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Verzameling",
 	"Collection": "Verzameling",
 	"Color": "Kleur",
 	"Color": "Kleur",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Groepsnaam",
 	"Group Name": "Groepsnaam",
 	"Group updated successfully": "Groep succesvol bijgewerkt",
 	"Group updated successfully": "Groep succesvol bijgewerkt",
 	"Groups": "Groepen",
 	"Groups": "Groepen",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Haptische feedback",
 	"Haptic Feedback": "Haptische feedback",
 	"has no conversations.": "heeft geen gesprekken.",
 	"has no conversations.": "heeft geen gesprekken.",
 	"Hello, {{name}}": "Hallo, {{name}}",
 	"Hello, {{name}}": "Hallo, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "Model",
 	"Model": "Model",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' is succesvol gedownload.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' is succesvol gedownload.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' staat al in de wachtrij voor downloaden.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' staat al in de wachtrij voor downloaden.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Voer een prompt in",
 	"Please enter a prompt": "Voer een prompt in",
 	"Please fill in all fields.": "Voer alle velden in",
 	"Please fill in all fields.": "Voer alle velden in",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Voer een reden in",
 	"Please select a reason": "Voer een reden in",
 	"Port": "Poort",
 	"Port": "Poort",
 	"Positive attitude": "Positieve positie",
 	"Positive attitude": "Positieve positie",
@@ -971,6 +973,7 @@
 	"Tools": "Gereedschappen",
 	"Tools": "Gereedschappen",
 	"Tools Access": "Gereedschaptoegang",
 	"Tools Access": "Gereedschaptoegang",
 	"Tools are a function calling system with arbitrary code execution": "Gereedschappen zijn een systeem voor het aanroepen van functies met willekeurige code-uitvoering",
 	"Tools are a function calling system with arbitrary code execution": "Gereedschappen zijn een systeem voor het aanroepen van functies met willekeurige code-uitvoering",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
 	"Tools have a function calling system that allows arbitrary code execution": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
 	"Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
 	"Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Je kunt je interacties met LLM's personaliseren door herinneringen toe te voegen via de 'Beheer'-knop hieronder, waardoor ze nuttiger en voor jou op maat gemaakt worden.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Je kunt je interacties met LLM's personaliseren door herinneringen toe te voegen via de 'Beheer'-knop hieronder, waardoor ze nuttiger en voor jou op maat gemaakt worden.",
 	"You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.",
 	"You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "Je hebt geen toestemming om bestanden up te loaden",
 	"You do not have permission to upload files.": "Je hebt geen toestemming om bestanden up te loaden",
 	"You have no archived conversations.": "Je hebt geen gearchiveerde gesprekken.",
 	"You have no archived conversations.": "Je hebt geen gearchiveerde gesprekken.",
 	"You have shared this chat": "Je hebt dit gesprek gedeeld",
 	"You have shared this chat": "Je hebt dit gesprek gedeeld",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "ਇੱਕ ਸਹਾਇਕ",
 	"an assistant": "ਇੱਕ ਸਹਾਇਕ",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "ਅਤੇ",
 	"and": "ਅਤੇ",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "ਅਤੇ ਇੱਕ ਨਵਾਂ ਸਾਂਝਾ ਲਿੰਕ ਬਣਾਓ।",
 	"and create a new shared link.": "ਅਤੇ ਇੱਕ ਨਵਾਂ ਸਾਂਝਾ ਲਿੰਕ ਬਣਾਓ।",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "ਕਲੋਨ",
 	"Clone": "ਕਲੋਨ",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "ਬੰਦ ਕਰੋ",
 	"Close": "ਬੰਦ ਕਰੋ",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "ਸੰਗ੍ਰਹਿ",
 	"Collection": "ਸੰਗ੍ਰਹਿ",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ਕੰਫੀਯੂਆਈ",
 	"ComfyUI": "ਕੰਫੀਯੂਆਈ",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "ਹ:ਮਿੰਟ ਪੂਃ",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "ਕੋਈ ਗੱਲਬਾਤ ਨਹੀਂ ਹੈ।",
 	"has no conversations.": "ਕੋਈ ਗੱਲਬਾਤ ਨਹੀਂ ਹੈ।",
 	"Hello, {{name}}": "ਸਤ ਸ੍ਰੀ ਅਕਾਲ, {{name}}",
 	"Hello, {{name}}": "ਸਤ ਸ੍ਰੀ ਅਕਾਲ, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "ਮਿਰੋਸਟੈਟ",
 	"Mirostat": "ਮਿਰੋਸਟੈਟ",
 	"Mirostat Eta": "ਮਿਰੋਸਟੈਟ ਈਟਾ",
 	"Mirostat Eta": "ਮਿਰੋਸਟੈਟ ਈਟਾ",
 	"Mirostat Tau": "ਮਿਰੋਸਟੈਟ ਟਾਉ",
 	"Mirostat Tau": "ਮਿਰੋਸਟੈਟ ਟਾਉ",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "ਮਾਡਲ '{{modelName}}' ਸਫਲਤਾਪੂਰਵਕ ਡਾਊਨਲੋਡ ਕੀਤਾ ਗਿਆ ਹੈ।",
 	"Model '{{modelName}}' has been successfully downloaded.": "ਮਾਡਲ '{{modelName}}' ਸਫਲਤਾਪੂਰਵਕ ਡਾਊਨਲੋਡ ਕੀਤਾ ਗਿਆ ਹੈ।",
 	"Model '{{modelTag}}' is already in queue for downloading.": "ਮਾਡਲ '{{modelTag}}' ਪਹਿਲਾਂ ਹੀ ਡਾਊਨਲੋਡ ਲਈ ਕਤਾਰ ਵਿੱਚ ਹੈ।",
 	"Model '{{modelTag}}' is already in queue for downloading.": "ਮਾਡਲ '{{modelTag}}' ਪਹਿਲਾਂ ਹੀ ਡਾਊਨਲੋਡ ਲਈ ਕਤਾਰ ਵਿੱਚ ਹੈ।",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "ਸਕਾਰਾਤਮਕ ਰਵੱਈਆ",
 	"Positive attitude": "ਸਕਾਰਾਤਮਕ ਰਵੱਈਆ",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "ਸਿਖਰ K",
 	"Top K": "ਸਿਖਰ K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "ਤੁਹਾਡੇ ਕੋਲ ਕੋਈ ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ ਨਹੀਂ ਹਨ।",
 	"You have no archived conversations.": "ਤੁਹਾਡੇ ਕੋਲ ਕੋਈ ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ ਨਹੀਂ ਹਨ।",
 	"You have shared this chat": "ਤੁਸੀਂ ਇਹ ਗੱਲਬਾਤ ਸਾਂਝੀ ਕੀਤੀ ਹੈ",
 	"You have shared this chat": "ਤੁਸੀਂ ਇਹ ਗੱਲਬਾਤ ਸਾਂਝੀ ਕੀਤੀ ਹੈ",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "asystent",
 	"an assistant": "asystent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "i",
 	"and": "i",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "i utwórz nowy udostępniony link",
 	"and create a new shared link.": "i utwórz nowy udostępniony link",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Klon",
 	"Clone": "Klon",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Zamknij",
 	"Close": "Zamknij",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Kolekcja",
 	"Collection": "Kolekcja",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "nie ma rozmów.",
 	"has no conversations.": "nie ma rozmów.",
 	"Hello, {{name}}": "Witaj, {{name}}",
 	"Hello, {{name}}": "Witaj, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' został pomyślnie pobrany.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model '{{modelName}}' został pomyślnie pobrany.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' jest już w kolejce do pobrania.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' jest już w kolejce do pobrania.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Pozytywne podejście",
 	"Positive attitude": "Pozytywne podejście",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Najlepsze K",
 	"Top K": "Najlepsze K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nie masz zarchiwizowanych rozmów.",
 	"You have no archived conversations.": "Nie masz zarchiwizowanych rozmów.",
 	"You have shared this chat": "Udostępniłeś ten czat",
 	"You have shared this chat": "Udostępniłeś ten czat",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa ao 'top_p', e visa garantir um equilíbrio entre qualidade e variedade. O parâmetro 'p' representa a probabilidade mínima para que um token seja considerado, em relação à probabilidade do token mais provável. Por exemplo, com 'p=0.05' e o token mais provável com probabilidade de '0.9', as predições com valor inferior a '0.045' são filtrados. (Default: 0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa ao 'top_p', e visa garantir um equilíbrio entre qualidade e variedade. O parâmetro 'p' representa a probabilidade mínima para que um token seja considerado, em relação à probabilidade do token mais provável. Por exemplo, com 'p=0.05' e o token mais provável com probabilidade de '0.9', as predições com valor inferior a '0.045' são filtrados. (Default: 0.0)",
 	"Amazing": "Incrível",
 	"Amazing": "Incrível",
 	"an assistant": "um assistente",
 	"an assistant": "um assistente",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "e",
 	"and": "e",
 	"and {{COUNT}} more": "e mais {{COUNT}}",
 	"and {{COUNT}} more": "e mais {{COUNT}}",
 	"and create a new shared link.": "e criar um novo link compartilhado.",
 	"and create a new shared link.": "e criar um novo link compartilhado.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permissão de escrita na área de transferência negada. Verifique as configurações do seu navegador para conceder o acesso necessário.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permissão de escrita na área de transferência negada. Verifique as configurações do seu navegador para conceder o acesso necessário.",
 	"Clone": "Clonar",
 	"Clone": "Clonar",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Fechar",
 	"Close": "Fechar",
 	"Code execution": "Execução de código",
 	"Code execution": "Execução de código",
 	"Code formatted successfully": "Código formatado com sucesso",
 	"Code formatted successfully": "Código formatado com sucesso",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Coleção",
 	"Collection": "Coleção",
 	"Color": "Cor",
 	"Color": "Cor",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Nome do Grupo",
 	"Group Name": "Nome do Grupo",
 	"Group updated successfully": "Grupo atualizado com sucesso",
 	"Group updated successfully": "Grupo atualizado com sucesso",
 	"Groups": "Grupos",
 	"Groups": "Grupos",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "não tem conversas.",
 	"has no conversations.": "não tem conversas.",
 	"Hello, {{name}}": "Olá, {{name}}",
 	"Hello, {{name}}": "Olá, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "Modelo",
 	"Model": "Modelo",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modelo '{{modelName}}' foi baixado com sucesso.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modelo '{{modelName}}' foi baixado com sucesso.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modelo '{{modelTag}}' já está na fila para download.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modelo '{{modelTag}}' já está na fila para download.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Por favor, digite um prompt",
 	"Please enter a prompt": "Por favor, digite um prompt",
 	"Please fill in all fields.": "Por favor, preencha todos os campos.",
 	"Please fill in all fields.": "Por favor, preencha todos os campos.",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Por favor, seleccione uma razão",
 	"Please select a reason": "Por favor, seleccione uma razão",
 	"Port": "Porta",
 	"Port": "Porta",
 	"Positive attitude": "Atitude positiva",
 	"Positive attitude": "Atitude positiva",
@@ -971,6 +973,7 @@
 	"Tools": "Ferramentas",
 	"Tools": "Ferramentas",
 	"Tools Access": "Acesso as Ferramentas",
 	"Tools Access": "Acesso as Ferramentas",
 	"Tools are a function calling system with arbitrary code execution": "Ferramentas são um sistema de chamada de funções com execução de código arbitrário",
 	"Tools are a function calling system with arbitrary code execution": "Ferramentas são um sistema de chamada de funções com execução de código arbitrário",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário",
 	"Tools have a function calling system that allows arbitrary code execution": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário",
 	"Tools have a function calling system that allows arbitrary code execution.": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Ferramentas possuem um sistema de chamada de funções que permite a execução de código arbitrário.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar suas interações com LLMs adicionando memórias através do botão 'Gerenciar' abaixo, tornando-as mais úteis e adaptadas a você.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar suas interações com LLMs adicionando memórias através do botão 'Gerenciar' abaixo, tornando-as mais úteis e adaptadas a você.",
 	"You cannot upload an empty file.": "Você não pode carregar um arquivo vazio.",
 	"You cannot upload an empty file.": "Você não pode carregar um arquivo vazio.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "Você não tem permissão para fazer upload de arquivos.",
 	"You do not have permission to upload files.": "Você não tem permissão para fazer upload de arquivos.",
 	"You have no archived conversations.": "Você não tem conversas arquivadas.",
 	"You have no archived conversations.": "Você não tem conversas arquivadas.",
 	"You have shared this chat": "Você compartilhou este chat",
 	"You have shared this chat": "Você compartilhou este chat",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "um assistente",
 	"an assistant": "um assistente",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "e",
 	"and": "e",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "e criar um novo link partilhado.",
 	"and create a new shared link.": "e criar um novo link partilhado.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Clonar",
 	"Clone": "Clonar",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Fechar",
 	"Close": "Fechar",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Coleção",
 	"Collection": "Coleção",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "não possui conversas.",
 	"has no conversations.": "não possui conversas.",
 	"Hello, {{name}}": "Olá, {{name}}",
 	"Hello, {{name}}": "Olá, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "DD/MM/YYYY",
-	"MMMM DD, YYYY HH:mm": "DD/MM/YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi descarregado com sucesso.",
 	"Model '{{modelName}}' has been successfully downloaded.": "O modelo '{{modelName}}' foi descarregado com sucesso.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para descarregar.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "O modelo '{{modelTag}}' já está na fila para descarregar.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Atitude Positiva",
 	"Positive attitude": "Atitude Positiva",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar as suas interações com LLMs adicionando memórias através do botão ‘Gerir’ abaixo, tornando-as mais úteis e personalizadas para você.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar as suas interações com LLMs adicionando memórias através do botão ‘Gerir’ abaixo, tornando-as mais úteis e personalizadas para você.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Você não tem conversas arquivadas.",
 	"You have no archived conversations.": "Você não tem conversas arquivadas.",
 	"You have shared this chat": "Você partilhou esta conversa",
 	"You have shared this chat": "Você partilhou esta conversa",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "un asistent",
 	"an assistant": "un asistent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "și",
 	"and": "și",
 	"and {{COUNT}} more": "și {{COUNT}} mai multe",
 	"and {{COUNT}} more": "și {{COUNT}} mai multe",
 	"and create a new shared link.": "și creează un nou link partajat.",
 	"and create a new shared link.": "și creează un nou link partajat.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permisiunea de scriere în clipboard a fost refuzată. Vă rugăm să verificați setările browserului pentru a acorda accesul necesar.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Permisiunea de scriere în clipboard a fost refuzată. Vă rugăm să verificați setările browserului pentru a acorda accesul necesar.",
 	"Clone": "Clonează",
 	"Clone": "Clonează",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Închide",
 	"Close": "Închide",
 	"Code execution": "Executarea codului",
 	"Code execution": "Executarea codului",
 	"Code formatted successfully": "Cod formatat cu succes",
 	"Code formatted successfully": "Cod formatat cu succes",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Colecție",
 	"Collection": "Colecție",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Feedback haptic",
 	"Haptic Feedback": "Feedback haptic",
 	"has no conversations.": "nu are conversații.",
 	"has no conversations.": "nu are conversații.",
 	"Hello, {{name}}": "Salut, {{name}}",
 	"Hello, {{name}}": "Salut, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "Model",
 	"Model": "Model",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modelul '{{modelName}}' a fost descărcat cu succes.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modelul '{{modelName}}' a fost descărcat cu succes.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modelul '{{modelTag}}' este deja în coada de descărcare.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modelul '{{modelTag}}' este deja în coada de descărcare.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Te rog să introduci un mesaj",
 	"Please enter a prompt": "Te rog să introduci un mesaj",
 	"Please fill in all fields.": "Vă rugăm să completați toate câmpurile.",
 	"Please fill in all fields.": "Vă rugăm să completați toate câmpurile.",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Vă rugăm să selectați un motiv",
 	"Please select a reason": "Vă rugăm să selectați un motiv",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Atitudine pozitivă",
 	"Positive attitude": "Atitudine pozitivă",
@@ -971,6 +973,7 @@
 	"Tools": "Instrumente",
 	"Tools": "Instrumente",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "Instrumentele sunt un sistem de apelare a funcțiilor cu executare arbitrară a codului",
 	"Tools are a function calling system with arbitrary code execution": "Instrumentele sunt un sistem de apelare a funcțiilor cu executare arbitrară a codului",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului",
 	"Tools have a function calling system that allows arbitrary code execution": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului",
 	"Tools have a function calling system that allows arbitrary code execution.": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Instrumentele au un sistem de apelare a funcțiilor care permite executarea arbitrară a codului.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puteți personaliza interacțiunile dvs. cu LLM-urile adăugând amintiri prin butonul 'Gestionează' de mai jos, făcându-le mai utile și adaptate la dvs.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puteți personaliza interacțiunile dvs. cu LLM-urile adăugând amintiri prin butonul 'Gestionează' de mai jos, făcându-le mai utile și adaptate la dvs.",
 	"You cannot upload an empty file.": "Nu poți încărca un fișier gol.",
 	"You cannot upload an empty file.": "Nu poți încărca un fișier gol.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nu aveți conversații arhivate.",
 	"You have no archived conversations.": "Nu aveți conversații arhivate.",
 	"You have shared this chat": "Ați partajat această conversație",
 	"You have shared this chat": "Ați partajat această conversație",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "Удивительный",
 	"Amazing": "Удивительный",
 	"an assistant": "ассистент",
 	"an assistant": "ассистент",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "и",
 	"and": "и",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "и создайте новую общую ссылку.",
 	"and create a new shared link.": "и создайте новую общую ссылку.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "В разрешении на запись в буфер обмена отказано. Пожалуйста, проверьте настройки своего браузера, чтобы предоставить необходимый доступ.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "В разрешении на запись в буфер обмена отказано. Пожалуйста, проверьте настройки своего браузера, чтобы предоставить необходимый доступ.",
 	"Clone": "Клонировать",
 	"Clone": "Клонировать",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Закрыть",
 	"Close": "Закрыть",
 	"Code execution": "Выполнение кода",
 	"Code execution": "Выполнение кода",
 	"Code formatted successfully": "Код успешно отформатирован",
 	"Code formatted successfully": "Код успешно отформатирован",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Коллекция",
 	"Collection": "Коллекция",
 	"Color": "Цвет",
 	"Color": "Цвет",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Тактильная обратная связь",
 	"Haptic Feedback": "Тактильная обратная связь",
 	"has no conversations.": "не имеет разговоров.",
 	"has no conversations.": "не имеет разговоров.",
 	"Hello, {{name}}": "Привет, {{name}}",
 	"Hello, {{name}}": "Привет, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "DD MMMM YYYY",
-	"MMMM DD, YYYY HH:mm": "DD MMMM YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "Модель",
 	"Model": "Модель",
 	"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успешно загружена.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успешно загружена.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' уже находится в очереди на загрузку.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' уже находится в очереди на загрузку.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Пожалуйста, введите подсказку",
 	"Please enter a prompt": "Пожалуйста, введите подсказку",
 	"Please fill in all fields.": "Пожалуйста, заполните все поля.",
 	"Please fill in all fields.": "Пожалуйста, заполните все поля.",
 	"Please select a model first.": "Пожалуйста, сначала выберите модель.",
 	"Please select a model first.": "Пожалуйста, сначала выберите модель.",
+	"Please select a model.": "",
 	"Please select a reason": "Пожалуйста, выберите причину",
 	"Please select a reason": "Пожалуйста, выберите причину",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Позитивный настрой",
 	"Positive attitude": "Позитивный настрой",
@@ -971,6 +973,7 @@
 	"Tools": "Инструменты",
 	"Tools": "Инструменты",
 	"Tools Access": "Доступ к инструментам",
 	"Tools Access": "Доступ к инструментам",
 	"Tools are a function calling system with arbitrary code execution": "Инструменты - это система вызова функций с выполнением произвольного кода",
 	"Tools are a function calling system with arbitrary code execution": "Инструменты - это система вызова функций с выполнением произвольного кода",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код",
 	"Tools have a function calling system that allows arbitrary code execution": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код",
 	"Tools have a function calling system that allows arbitrary code execution.": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Инструменты имеют систему вызова функций, которая позволяет выполнять произвольный код.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Вы можете персонализировать свое взаимодействие с LLMs, добавив воспоминания с помощью кнопки \"Управлять\" ниже, что сделает их более полезными и адаптированными для вас.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Вы можете персонализировать свое взаимодействие с LLMs, добавив воспоминания с помощью кнопки \"Управлять\" ниже, что сделает их более полезными и адаптированными для вас.",
 	"You cannot upload an empty file.": "Вы не можете загрузить пустой файл.",
 	"You cannot upload an empty file.": "Вы не можете загрузить пустой файл.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "У вас нет разрешения на загрузку файлов.",
 	"You do not have permission to upload files.": "У вас нет разрешения на загрузку файлов.",
 	"You have no archived conversations.": "У вас нет архивированных бесед.",
 	"You have no archived conversations.": "У вас нет архивированных бесед.",
 	"You have shared this chat": "Вы поделились этим чатом",
 	"You have shared this chat": "Вы поделились этим чатом",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "asistent",
 	"an assistant": "asistent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "a",
 	"and": "a",
 	"and {{COUNT}} more": "a {{COUNT}} ďalšie/í",
 	"and {{COUNT}} more": "a {{COUNT}} ďalšie/í",
 	"and create a new shared link.": "a vytvoriť nový zdieľaný odkaz.",
 	"and create a new shared link.": "a vytvoriť nový zdieľaný odkaz.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Prístup na zápis do schránky bol zamietnutý. Skontrolujte nastavenia prehliadača a udeľte potrebný prístup.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Prístup na zápis do schránky bol zamietnutý. Skontrolujte nastavenia prehliadača a udeľte potrebný prístup.",
 	"Clone": "Klonovať",
 	"Clone": "Klonovať",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Zavrieť",
 	"Close": "Zavrieť",
 	"Code execution": "Vykonávanie kódu",
 	"Code execution": "Vykonávanie kódu",
 	"Code formatted successfully": "Kód bol úspešne naformátovaný.",
 	"Code formatted successfully": "Kód bol úspešne naformátovaný.",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "",
 	"Collection": "",
 	"Color": "Farba",
 	"Color": "Farba",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "hh:mm dop./odp.",
 	"Haptic Feedback": "Haptická spätná väzba",
 	"Haptic Feedback": "Haptická spätná väzba",
 	"has no conversations.": "nemá žiadne konverzácie.",
 	"has no conversations.": "nemá žiadne konverzácie.",
 	"Hello, {{name}}": "Ahoj, {{name}}",
 	"Hello, {{name}}": "Ahoj, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, RRRR",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, RRRR HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "Model",
 	"Model": "Model",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model „{{modelName}}“ bol úspešne stiahnutý.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Model „{{modelName}}“ bol úspešne stiahnutý.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je už zaradený do fronty na sťahovanie.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Model '{{modelTag}}' je už zaradený do fronty na sťahovanie.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Prosím, zadajte zadanie.",
 	"Please enter a prompt": "Prosím, zadajte zadanie.",
 	"Please fill in all fields.": "Prosím, vyplňte všetky polia.",
 	"Please fill in all fields.": "Prosím, vyplňte všetky polia.",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "Prosím vyberte dôvod",
 	"Please select a reason": "Prosím vyberte dôvod",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Pozitívny prístup",
 	"Positive attitude": "Pozitívny prístup",
@@ -971,6 +973,7 @@
 	"Tools": "Nástroje",
 	"Tools": "Nástroje",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "Nástroje sú systémom na volanie funkcií s vykonávaním ľubovoľného kódu.",
 	"Tools are a function calling system with arbitrary code execution": "Nástroje sú systémom na volanie funkcií s vykonávaním ľubovoľného kódu.",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Nástroje majú systém volania funkcií, ktorý umožňuje ľubovoľné spúšťanie kódu.",
 	"Tools have a function calling system that allows arbitrary code execution": "Nástroje majú systém volania funkcií, ktorý umožňuje ľubovoľné spúšťanie kódu.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Nástroje majú systém volania funkcií, ktorý umožňuje spúšťanie ľubovoľného kódu.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Nástroje majú systém volania funkcií, ktorý umožňuje spúšťanie ľubovoľného kódu.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Môžete personalizovať svoje interakcie s LLM pridaním spomienok prostredníctvom tlačidla 'Spravovať' nižšie, čo ich urobí pre vás užitočnejšími a lepšie prispôsobenými.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Môžete personalizovať svoje interakcie s LLM pridaním spomienok prostredníctvom tlačidla 'Spravovať' nižšie, čo ich urobí pre vás užitočnejšími a lepšie prispôsobenými.",
 	"You cannot upload an empty file.": "Nemôžete nahrať prázdny súbor.",
 	"You cannot upload an empty file.": "Nemôžete nahrať prázdny súbor.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Nemáte žiadne archivované konverzácie.",
 	"You have no archived conversations.": "Nemáte žiadne archivované konverzácie.",
 	"You have shared this chat": "Zdieľali ste tento chat.",
 	"You have shared this chat": "Zdieľali ste tento chat.",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "Невероватно",
 	"Amazing": "Невероватно",
 	"an assistant": "помоћник",
 	"an assistant": "помоћник",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "и",
 	"and": "и",
 	"and {{COUNT}} more": "и још {{COUNT}}",
 	"and {{COUNT}} more": "и још {{COUNT}}",
 	"and create a new shared link.": "и направи нову дељену везу.",
 	"and create a new shared link.": "и направи нову дељену везу.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Клонирај",
 	"Clone": "Клонирај",
 	"Clone Chat": "Клонирај ћаскање",
 	"Clone Chat": "Клонирај ћаскање",
+	"Clone of {{TITLE}}": "",
 	"Close": "Затвори",
 	"Close": "Затвори",
 	"Code execution": "Извршавање кода",
 	"Code execution": "Извршавање кода",
 	"Code formatted successfully": "Код форматиран успешно",
 	"Code formatted successfully": "Код форматиран успешно",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Колекција",
 	"Collection": "Колекција",
 	"Color": "Боја",
 	"Color": "Боја",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Назив групе",
 	"Group Name": "Назив групе",
 	"Group updated successfully": "Група измењена успешно",
 	"Group updated successfully": "Група измењена успешно",
 	"Groups": "Групе",
 	"Groups": "Групе",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Вибрација као одговор",
 	"Haptic Feedback": "Вибрација као одговор",
 	"has no conversations.": "нема разговора.",
 	"has no conversations.": "нема разговора.",
 	"Hello, {{name}}": "Здраво, {{name}}",
 	"Hello, {{name}}": "Здраво, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Миростат",
 	"Mirostat": "Миростат",
 	"Mirostat Eta": "Миростат Ета",
 	"Mirostat Eta": "Миростат Ета",
 	"Mirostat Tau": "Миростат Тау",
 	"Mirostat Tau": "Миростат Тау",
-	"MMMM DD, YYYY": "ММММ ДД, ГГГГ",
-	"MMMM DD, YYYY HH:mm": "ММММ ДД, ГГГГ ЧЧ:мм",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "Модел",
 	"Model": "Модел",
 	"Model '{{modelName}}' has been successfully downloaded.": "Модел „{{modelName}}“ је успешно преузет.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Модел „{{modelName}}“ је успешно преузет.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Модел „{{modelTag}}“ је већ у реду за преузимање.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Модел „{{modelTag}}“ је већ у реду за преузимање.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Позитиван став",
 	"Positive attitude": "Позитиван став",
@@ -971,6 +973,7 @@
 	"Tools": "Алати",
 	"Tools": "Алати",
 	"Tools Access": "Приступ алатима",
 	"Tools Access": "Приступ алатима",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Топ К",
 	"Top K": "Топ К",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Можете учинити разговор са ВЈМ-овима приснијим додавањем сећања користећи „Управљај“ думе испод и тиме их учинити приснијим и кориснијим.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Можете учинити разговор са ВЈМ-овима приснијим додавањем сећања користећи „Управљај“ думе испод и тиме их учинити приснијим и кориснијим.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Немате архивиране разговоре.",
 	"You have no archived conversations.": "Немате архивиране разговоре.",
 	"You have shared this chat": "Поделили сте ово ћаскање",
 	"You have shared this chat": "Поделили сте ово ћаскање",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "en assistent",
 	"an assistant": "en assistent",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "och",
 	"and": "och",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "och skapa en ny delad länk.",
 	"and create a new shared link.": "och skapa en ny delad länk.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Klon",
 	"Clone": "Klon",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Stäng",
 	"Close": "Stäng",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Samling",
 	"Collection": "Samling",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "har inga samtal.",
 	"has no conversations.": "har inga samtal.",
 	"Hello, {{name}}": "Hej, {{name}}",
 	"Hello, {{name}}": "Hej, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modellen '{{modelName}}' har laddats ner framgångsrikt.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Modellen '{{modelName}}' har laddats ner framgångsrikt.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modellen '{{modelTag}}' är redan i kö för nedladdning.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Modellen '{{modelTag}}' är redan i kö för nedladdning.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Positivt inställning",
 	"Positive attitude": "Positivt inställning",
@@ -971,6 +973,7 @@
 	"Tools": "Verktyg",
 	"Tools": "Verktyg",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "Topp K",
 	"Top K": "Topp K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan anpassa dina interaktioner med stora språkmodeller genom att lägga till minnen via knappen 'Hantera' nedan, så att de blir mer användbara och skräddarsydda för dig.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan anpassa dina interaktioner med stora språkmodeller genom att lägga till minnen via knappen 'Hantera' nedan, så att de blir mer användbara och skräddarsydda för dig.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Du har inga arkiverade samtal.",
 	"You have no archived conversations.": "Du har inga arkiverade samtal.",
 	"You have shared this chat": "Du har delat denna chatt",
 	"You have shared this chat": "Du har delat denna chatt",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "ผู้ช่วย",
 	"an assistant": "ผู้ช่วย",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "และ",
 	"and": "และ",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "และสร้างลิงก์ที่แชร์ใหม่",
 	"and create a new shared link.": "และสร้างลิงก์ที่แชร์ใหม่",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "การอนุญาตเขียนคลิปบอร์ดถูกปฏิเสธ โปรดตรวจสอบการตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์ที่จำเป็น",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "การอนุญาตเขียนคลิปบอร์ดถูกปฏิเสธ โปรดตรวจสอบการตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์ที่จำเป็น",
 	"Clone": "โคลน",
 	"Clone": "โคลน",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "ปิด",
 	"Close": "ปิด",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "จัดรูปแบบโค้ดสำเร็จแล้ว",
 	"Code formatted successfully": "จัดรูปแบบโค้ดสำเร็จแล้ว",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "คอลเลคชัน",
 	"Collection": "คอลเลคชัน",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "ไม่มีการสนทนา",
 	"has no conversations.": "ไม่มีการสนทนา",
 	"Hello, {{name}}": "สวัสดี, {{name}}",
 	"Hello, {{name}}": "สวัสดี, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "โมเดล '{{modelName}}' ถูกดาวน์โหลดเรียบร้อยแล้ว",
 	"Model '{{modelName}}' has been successfully downloaded.": "โมเดล '{{modelName}}' ถูกดาวน์โหลดเรียบร้อยแล้ว",
 	"Model '{{modelTag}}' is already in queue for downloading.": "โมเดล '{{modelTag}}' กำลังอยู่ในคิวสำหรับการดาวน์โหลด",
 	"Model '{{modelTag}}' is already in queue for downloading.": "โมเดล '{{modelTag}}' กำลังอยู่ในคิวสำหรับการดาวน์โหลด",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "ทัศนคติด้านบวก",
 	"Positive attitude": "ทัศนคติด้านบวก",
@@ -971,6 +973,7 @@
 	"Tools": "เครื่องมือ",
 	"Tools": "เครื่องมือ",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "เครื่องมือคือระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
 	"Tools are a function calling system with arbitrary code execution": "เครื่องมือคือระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
 	"Tools have a function calling system that allows arbitrary code execution": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
 	"Tools have a function calling system that allows arbitrary code execution.": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
 	"Tools have a function calling system that allows arbitrary code execution.": "เครื่องมือมีระบบการเรียกใช้ฟังก์ชันที่สามารถดำเนินการโค้ดใดๆ ได้",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "คุณสามารถปรับแต่งการโต้ตอบของคุณกับ LLMs โดยเพิ่มความทรงจำผ่านปุ่ม 'จัดการ' ด้านล่าง ทำให้มันมีประโยชน์และเหมาะกับคุณมากขึ้น",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "คุณสามารถปรับแต่งการโต้ตอบของคุณกับ LLMs โดยเพิ่มความทรงจำผ่านปุ่ม 'จัดการ' ด้านล่าง ทำให้มันมีประโยชน์และเหมาะกับคุณมากขึ้น",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "คุณไม่มีการสนทนาที่เก็บถาวร",
 	"You have no archived conversations.": "คุณไม่มีการสนทนาที่เก็บถาวร",
 	"You have shared this chat": "คุณได้แชร์แชทนี้แล้ว",
 	"You have shared this chat": "คุณได้แชร์แชทนี้แล้ว",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "",
 	"an assistant": "",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "",
 	"and": "",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "",
 	"and create a new shared link.": "",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Clone": "",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "",
 	"Close": "",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "",
 	"Code formatted successfully": "",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "",
 	"Collection": "",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "",
 	"ComfyUI": "",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "",
 	"Haptic Feedback": "",
 	"Haptic Feedback": "",
 	"has no conversations.": "",
 	"has no conversations.": "",
 	"Hello, {{name}}": "",
 	"Hello, {{name}}": "",
@@ -595,9 +599,6 @@
 	"Mirostat": "",
 	"Mirostat": "",
 	"Mirostat Eta": "",
 	"Mirostat Eta": "",
 	"Mirostat Tau": "",
 	"Mirostat Tau": "",
-	"MMMM DD, YYYY": "",
-	"MMMM DD, YYYY HH:mm": "",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "",
 	"Model '{{modelTag}}' is already in queue for downloading.": "",
 	"Model '{{modelTag}}' is already in queue for downloading.": "",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "",
 	"Positive attitude": "",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "",
 	"Tools are a function calling system with arbitrary code execution": "",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Tools have a function calling system that allows arbitrary code execution.": "",
 	"Top K": "",
 	"Top K": "",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "",
 	"You have no archived conversations.": "",
 	"You have shared this chat": "",
 	"You have shared this chat": "",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p'ye bir alternatif ve kalite ile çeşitlilik arasında bir denge sağlamayı amaçlar. p parametresi, en olası tokenin olasılığına göre, bir tokenin dikkate alınması için minimum olasılığı temsil eder. Örneğin, p=0.05 ve en olası tokenin 0.9 olasılığı ile 0.045'ten küçük bir değere sahip logitler filtrelenir. (Varsayılan: 0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p'ye bir alternatif ve kalite ile çeşitlilik arasında bir denge sağlamayı amaçlar. p parametresi, en olası tokenin olasılığına göre, bir tokenin dikkate alınması için minimum olasılığı temsil eder. Örneğin, p=0.05 ve en olası tokenin 0.9 olasılığı ile 0.045'ten küçük bir değere sahip logitler filtrelenir. (Varsayılan: 0.0)",
 	"Amazing": "Harika",
 	"Amazing": "Harika",
 	"an assistant": "bir asistan",
 	"an assistant": "bir asistan",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "ve",
 	"and": "ve",
 	"and {{COUNT}} more": "ve {{COUNT}} daha",
 	"and {{COUNT}} more": "ve {{COUNT}} daha",
 	"and create a new shared link.": "ve yeni bir paylaşılan bağlantı oluşturun.",
 	"and create a new shared link.": "ve yeni bir paylaşılan bağlantı oluşturun.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Panoya yazma izni reddedildi. Tarayıcı ayarlarını kontrol ederek gerekli izinleri sağlayabilirsiniz.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Panoya yazma izni reddedildi. Tarayıcı ayarlarını kontrol ederek gerekli izinleri sağlayabilirsiniz.",
 	"Clone": "Klon",
 	"Clone": "Klon",
 	"Clone Chat": "Sohbeti Klonla",
 	"Clone Chat": "Sohbeti Klonla",
+	"Clone of {{TITLE}}": "",
 	"Close": "Kapat",
 	"Close": "Kapat",
 	"Code execution": "Kod yürütme",
 	"Code execution": "Kod yürütme",
 	"Code formatted successfully": "Kod başarıyla biçimlendirildi",
 	"Code formatted successfully": "Kod başarıyla biçimlendirildi",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Koleksiyon",
 	"Collection": "Koleksiyon",
 	"Color": "Renk",
 	"Color": "Renk",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Grup Adı",
 	"Group Name": "Grup Adı",
 	"Group updated successfully": "Grup başarıyla güncellendi",
 	"Group updated successfully": "Grup başarıyla güncellendi",
 	"Groups": "Gruplar",
 	"Groups": "Gruplar",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Dokunsal Geri Bildirim",
 	"Haptic Feedback": "Dokunsal Geri Bildirim",
 	"has no conversations.": "hiç konuşması yok.",
 	"has no conversations.": "hiç konuşması yok.",
 	"Hello, {{name}}": "Merhaba, {{name}}",
 	"Hello, {{name}}": "Merhaba, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "DD MMMM YYYY",
-	"MMMM DD, YYYY HH:mm": "DD MMMM YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "DD MMMM YYYY hh:mm:ss A",
 	"Model": "Model",
 	"Model": "Model",
 	"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' başarıyla indirildi.",
 	"Model '{{modelName}}' has been successfully downloaded.": "'{{modelName}}' başarıyla indirildi.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' zaten indirme sırasında.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "'{{modelTag}}' zaten indirme sırasında.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Lütfen bir prompt girin",
 	"Please enter a prompt": "Lütfen bir prompt girin",
 	"Please fill in all fields.": "Lütfen tüm alanları doldurun.",
 	"Please fill in all fields.": "Lütfen tüm alanları doldurun.",
 	"Please select a model first.": "Lütfen önce bir model seçin.",
 	"Please select a model first.": "Lütfen önce bir model seçin.",
+	"Please select a model.": "",
 	"Please select a reason": "Lütfen bir neden seçin",
 	"Please select a reason": "Lütfen bir neden seçin",
 	"Port": "Port",
 	"Port": "Port",
 	"Positive attitude": "Olumlu yaklaşım",
 	"Positive attitude": "Olumlu yaklaşım",
@@ -971,6 +973,7 @@
 	"Tools": "Araçlar",
 	"Tools": "Araçlar",
 	"Tools Access": "Araçlara Erişim",
 	"Tools Access": "Araçlara Erişim",
 	"Tools are a function calling system with arbitrary code execution": "Araçlar, keyfi kod yürütme ile bir fonksiyon çağırma sistemine sahiptir",
 	"Tools are a function calling system with arbitrary code execution": "Araçlar, keyfi kod yürütme ile bir fonksiyon çağırma sistemine sahiptir",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir",
 	"Tools have a function calling system that allows arbitrary code execution": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir",
 	"Tools have a function calling system that allows arbitrary code execution.": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Araçlar, keyfi kod yürütme izni veren bir fonksiyon çağırma sistemine sahiptir.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Aşağıdaki 'Yönet' düğmesi aracılığıyla bellekler ekleyerek LLM'lerle etkileşimlerinizi kişiselleştirebilir, onları daha yararlı ve size özel hale getirebilirsiniz.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Aşağıdaki 'Yönet' düğmesi aracılığıyla bellekler ekleyerek LLM'lerle etkileşimlerinizi kişiselleştirebilir, onları daha yararlı ve size özel hale getirebilirsiniz.",
 	"You cannot upload an empty file.": "Boş bir dosya yükleyemezsiniz.",
 	"You cannot upload an empty file.": "Boş bir dosya yükleyemezsiniz.",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "Dosya yüklemek için izniniz yok.",
 	"You do not have permission to upload files.": "Dosya yüklemek için izniniz yok.",
 	"You have no archived conversations.": "Arşivlenmiş sohbetleriniz yok.",
 	"You have no archived conversations.": "Arşivlenmiş sohbetleriniz yok.",
 	"You have shared this chat": "Bu sohbeti paylaştınız",
 	"You have shared this chat": "Bu sohbeti paylaştınız",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Альтернатива параметру top_p, яка має на меті забезпечити баланс якості та різноманітності. Параметр p представляє мінімальну ймовірність для того, щоб токен був врахований, відносно ймовірності найбільш ймовірного токена. Наприклад, при p=0.05 і найбільш імовірному токені з ймовірністю 0.9, логіти зі значенням менше 0.045 будуть відфільтровані. (За замовчуванням: 0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Альтернатива параметру top_p, яка має на меті забезпечити баланс якості та різноманітності. Параметр p представляє мінімальну ймовірність для того, щоб токен був врахований, відносно ймовірності найбільш ймовірного токена. Наприклад, при p=0.05 і найбільш імовірному токені з ймовірністю 0.9, логіти зі значенням менше 0.045 будуть відфільтровані. (За замовчуванням: 0.0)",
 	"Amazing": "Чудово",
 	"Amazing": "Чудово",
 	"an assistant": "асистента",
 	"an assistant": "асистента",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "та",
 	"and": "та",
 	"and {{COUNT}} more": "та ще {{COUNT}}",
 	"and {{COUNT}} more": "та ще {{COUNT}}",
 	"and create a new shared link.": "і створіть нове спільне посилання.",
 	"and create a new shared link.": "і створіть нове спільне посилання.",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Відмовлено в дозволі на запис до буфера обміну. Будь ласка, перевірте налаштування вашого браузера, щоб надати необхідний доступ.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Відмовлено в дозволі на запис до буфера обміну. Будь ласка, перевірте налаштування вашого браузера, щоб надати необхідний доступ.",
 	"Clone": "Клонувати",
 	"Clone": "Клонувати",
 	"Clone Chat": "Клонувати чат",
 	"Clone Chat": "Клонувати чат",
+	"Clone of {{TITLE}}": "",
 	"Close": "Закрити",
 	"Close": "Закрити",
 	"Code execution": "Виконання коду",
 	"Code execution": "Виконання коду",
 	"Code formatted successfully": "Код успішно відформатовано",
 	"Code formatted successfully": "Код успішно відформатовано",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Колекція",
 	"Collection": "Колекція",
 	"Color": "Колір",
 	"Color": "Колір",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "Назва групи",
 	"Group Name": "Назва групи",
 	"Group updated successfully": "Групу успішно оновлено",
 	"Group updated successfully": "Групу успішно оновлено",
 	"Groups": "Групи",
 	"Groups": "Групи",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Тактильний зворотній зв'язок",
 	"Haptic Feedback": "Тактильний зворотній зв'язок",
 	"has no conversations.": "не має розмов.",
 	"has no conversations.": "не має розмов.",
 	"Hello, {{name}}": "Привіт, {{name}}",
 	"Hello, {{name}}": "Привіт, {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "MMMM DD, YYYY hh:mm:ss A",
 	"Model": "Модель",
 	"Model": "Модель",
 	"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успішно завантажено.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Модель '{{modelName}}' успішно завантажено.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' вже знаходиться в черзі на завантаження.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Модель '{{modelTag}}' вже знаходиться в черзі на завантаження.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "Будь ласка, введіть підказку",
 	"Please enter a prompt": "Будь ласка, введіть підказку",
 	"Please fill in all fields.": "Будь ласка, заповніть всі поля.",
 	"Please fill in all fields.": "Будь ласка, заповніть всі поля.",
 	"Please select a model first.": "Будь ласка, спочатку виберіть модель.",
 	"Please select a model first.": "Будь ласка, спочатку виберіть модель.",
+	"Please select a model.": "",
 	"Please select a reason": "Будь ласка, виберіть причину",
 	"Please select a reason": "Будь ласка, виберіть причину",
 	"Port": "Порт",
 	"Port": "Порт",
 	"Positive attitude": "Позитивне ставлення",
 	"Positive attitude": "Позитивне ставлення",
@@ -971,6 +973,7 @@
 	"Tools": "Інструменти",
 	"Tools": "Інструменти",
 	"Tools Access": "Доступ до інструментів",
 	"Tools Access": "Доступ до інструментів",
 	"Tools are a function calling system with arbitrary code execution": "Інструменти - це система виклику функцій з довільним виконанням коду",
 	"Tools are a function calling system with arbitrary code execution": "Інструменти - це система виклику функцій з довільним виконанням коду",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду",
 	"Tools have a function calling system that allows arbitrary code execution": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду",
 	"Tools have a function calling system that allows arbitrary code execution.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Інструменти мають систему виклику функцій, яка дозволяє виконання довільного коду.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Ви можете налаштувати ваші взаємодії з мовними моделями, додавши спогади через кнопку 'Керувати' внизу, що зробить їх більш корисними та персоналізованими для вас.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Ви можете налаштувати ваші взаємодії з мовними моделями, додавши спогади через кнопку 'Керувати' внизу, що зробить їх більш корисними та персоналізованими для вас.",
 	"You cannot upload an empty file.": "Ви не можете завантажити порожній файл.",
 	"You cannot upload an empty file.": "Ви не можете завантажити порожній файл.",
 	"You do not have permission to access this feature.": "У вас немає дозволу на доступ до цієї функції.",
 	"You do not have permission to access this feature.": "У вас немає дозволу на доступ до цієї функції.",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "У вас немає дозволу завантажувати файли.",
 	"You do not have permission to upload files.": "У вас немає дозволу завантажувати файли.",
 	"You have no archived conversations.": "У вас немає архівованих розмов.",
 	"You have no archived conversations.": "У вас немає архівованих розмов.",
 	"You have shared this chat": "Ви поділилися цим чатом",
 	"You have shared this chat": "Ви поділилися цим чатом",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "معاون",
 	"an assistant": "معاون",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "اور",
 	"and": "اور",
 	"and {{COUNT}} more": "اور {{COUNT}} مزید",
 	"and {{COUNT}} more": "اور {{COUNT}} مزید",
 	"and create a new shared link.": "اور ایک نیا مشترکہ لنک بنائیں",
 	"and create a new shared link.": "اور ایک نیا مشترکہ لنک بنائیں",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "کلپ بورڈ لکھنے کی اجازت نہیں دی گئی براہ کرم ضروری رسائی کی اجازت دینے کے لیے اپنے براؤزر کی سیٹنگز چیک کریں",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "کلپ بورڈ لکھنے کی اجازت نہیں دی گئی براہ کرم ضروری رسائی کی اجازت دینے کے لیے اپنے براؤزر کی سیٹنگز چیک کریں",
 	"Clone": "نقل کریں",
 	"Clone": "نقل کریں",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "بند کریں",
 	"Close": "بند کریں",
 	"Code execution": "کوڈ کا نفاذ",
 	"Code execution": "کوڈ کا نفاذ",
 	"Code formatted successfully": "کوڈ کامیابی سے فارمیٹ ہو گیا",
 	"Code formatted successfully": "کوڈ کامیابی سے فارمیٹ ہو گیا",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "کلیکشن",
 	"Collection": "کلیکشن",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "کومفی یو آئی",
 	"ComfyUI": "کومفی یو آئی",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "پ:مم a",
 	"Haptic Feedback": "ہاپٹک فیڈ بیک",
 	"Haptic Feedback": "ہاپٹک فیڈ بیک",
 	"has no conversations.": "کوئی گفتگو نہیں ہے",
 	"has no conversations.": "کوئی گفتگو نہیں ہے",
 	"Hello, {{name}}": "ہیلو، {{name}}",
 	"Hello, {{name}}": "ہیلو، {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "میروسٹیٹ",
 	"Mirostat": "میروسٹیٹ",
 	"Mirostat Eta": "میروسٹیٹ ایٹا",
 	"Mirostat Eta": "میروسٹیٹ ایٹا",
 	"Mirostat Tau": "میروسٹیٹ ٹاؤ",
 	"Mirostat Tau": "میروسٹیٹ ٹاؤ",
-	"MMMM DD, YYYY": "MMMM DD، YYYY",
-	"MMMM DD, YYYY HH:mm": "ایم ایم ایم ایم ڈی ڈی، وائی وائی وائی وائی ایچ ایچ:ایم ایم",
-	"MMMM DD, YYYY hh:mm:ss A": "ایم ایم ایم ایم ڈی ڈی، وائی وائی وائی وائی ایچ ایچ:ایم ایم:ایس ایس اے ایم/پی ایم",
 	"Model": "ماڈل",
 	"Model": "ماڈل",
 	"Model '{{modelName}}' has been successfully downloaded.": "ماڈل '{{modelName}}' کامیابی سے ڈاؤن لوڈ ہو گیا ہے",
 	"Model '{{modelName}}' has been successfully downloaded.": "ماڈل '{{modelName}}' کامیابی سے ڈاؤن لوڈ ہو گیا ہے",
 	"Model '{{modelTag}}' is already in queue for downloading.": "ماڈل '{{modelTag}}' پہلے ہی ڈاؤن لوڈ کے لیے قطار میں ہے",
 	"Model '{{modelTag}}' is already in queue for downloading.": "ماڈل '{{modelTag}}' پہلے ہی ڈاؤن لوڈ کے لیے قطار میں ہے",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "براہ کرم ایک پرامپٹ درج کریں",
 	"Please enter a prompt": "براہ کرم ایک پرامپٹ درج کریں",
 	"Please fill in all fields.": "براہ کرم تمام فیلڈز مکمل کریں",
 	"Please fill in all fields.": "براہ کرم تمام فیلڈز مکمل کریں",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "براہ کرم ایک وجہ منتخب کریں",
 	"Please select a reason": "براہ کرم ایک وجہ منتخب کریں",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "مثبت رویہ",
 	"Positive attitude": "مثبت رویہ",
@@ -971,6 +973,7 @@
 	"Tools": "اوزار",
 	"Tools": "اوزار",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "ٹولز ایک فنکشن کالنگ سسٹم ہیں جس میں مرضی کے مطابق کوڈ چلایا جاتا ہے",
 	"Tools are a function calling system with arbitrary code execution": "ٹولز ایک فنکشن کالنگ سسٹم ہیں جس میں مرضی کے مطابق کوڈ چلایا جاتا ہے",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کے نفاذ کی اجازت دیتا ہے",
 	"Tools have a function calling system that allows arbitrary code execution": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کے نفاذ کی اجازت دیتا ہے",
 	"Tools have a function calling system that allows arbitrary code execution.": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کی عمل درآمد کی اجازت دیتا ہے",
 	"Tools have a function calling system that allows arbitrary code execution.": "ٹولز کے پاس ایک فنکشن کالنگ سسٹم ہے جو اختیاری کوڈ کی عمل درآمد کی اجازت دیتا ہے",
 	"Top K": "اوپر کے K",
 	"Top K": "اوپر کے K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "آپ نیچے موجود 'Manage' بٹن کے ذریعے LLMs کے ساتھ اپنی بات چیت کو یادداشتیں شامل کرکے ذاتی بنا سکتے ہیں، جو انہیں آپ کے لیے زیادہ مددگار اور آپ کے متعلق بنائے گی",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "آپ نیچے موجود 'Manage' بٹن کے ذریعے LLMs کے ساتھ اپنی بات چیت کو یادداشتیں شامل کرکے ذاتی بنا سکتے ہیں، جو انہیں آپ کے لیے زیادہ مددگار اور آپ کے متعلق بنائے گی",
 	"You cannot upload an empty file.": "آپ خالی فائل اپلوڈ نہیں کر سکتے",
 	"You cannot upload an empty file.": "آپ خالی فائل اپلوڈ نہیں کر سکتے",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "آپ کے پاس کوئی محفوظ شدہ مکالمات نہیں ہیں",
 	"You have no archived conversations.": "آپ کے پاس کوئی محفوظ شدہ مکالمات نہیں ہیں",
 	"You have shared this chat": "آپ نے یہ چیٹ شیئر کی ہے",
 	"You have shared this chat": "آپ نے یہ چیٹ شیئر کی ہے",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"Amazing": "",
 	"Amazing": "",
 	"an assistant": "trợ lý",
 	"an assistant": "trợ lý",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "và",
 	"and": "và",
 	"and {{COUNT}} more": "",
 	"and {{COUNT}} more": "",
 	"and create a new shared link.": "và tạo một link chia sẻ mới",
 	"and create a new shared link.": "và tạo một link chia sẻ mới",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Quyền ghi vào clipboard bị từ chối. Vui lòng kiểm tra cài đặt trên trình duyệt của bạn để được cấp quyền truy cập cần thiết.",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "Quyền ghi vào clipboard bị từ chối. Vui lòng kiểm tra cài đặt trên trình duyệt của bạn để được cấp quyền truy cập cần thiết.",
 	"Clone": "Nhân bản",
 	"Clone": "Nhân bản",
 	"Clone Chat": "",
 	"Clone Chat": "",
+	"Clone of {{TITLE}}": "",
 	"Close": "Đóng",
 	"Close": "Đóng",
 	"Code execution": "",
 	"Code execution": "",
 	"Code formatted successfully": "Mã được định dạng thành công",
 	"Code formatted successfully": "Mã được định dạng thành công",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "Tổng hợp mọi tài liệu",
 	"Collection": "Tổng hợp mọi tài liệu",
 	"Color": "",
 	"Color": "",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "",
 	"Group Name": "",
 	"Group updated successfully": "",
 	"Group updated successfully": "",
 	"Groups": "",
 	"Groups": "",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "Phản hồi xúc giác",
 	"Haptic Feedback": "Phản hồi xúc giác",
 	"has no conversations.": "không có hội thoại",
 	"has no conversations.": "không có hội thoại",
 	"Hello, {{name}}": "Xin chào {{name}}",
 	"Hello, {{name}}": "Xin chào {{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "MMMM DD, YYYY",
-	"MMMM DD, YYYY HH:mm": "MMMM DD, YYYY HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "",
 	"Model": "",
 	"Model": "",
 	"Model '{{modelName}}' has been successfully downloaded.": "Mô hình '{{modelName}}' đã được tải xuống thành công.",
 	"Model '{{modelName}}' has been successfully downloaded.": "Mô hình '{{modelName}}' đã được tải xuống thành công.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Mô hình '{{modelTag}}' đã có trong hàng đợi để tải xuống.",
 	"Model '{{modelTag}}' is already in queue for downloading.": "Mô hình '{{modelTag}}' đã có trong hàng đợi để tải xuống.",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "",
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please fill in all fields.": "",
 	"Please select a model first.": "",
 	"Please select a model first.": "",
+	"Please select a model.": "",
 	"Please select a reason": "",
 	"Please select a reason": "",
 	"Port": "",
 	"Port": "",
 	"Positive attitude": "Thái độ tích cực",
 	"Positive attitude": "Thái độ tích cực",
@@ -971,6 +973,7 @@
 	"Tools": "",
 	"Tools": "",
 	"Tools Access": "",
 	"Tools Access": "",
 	"Tools are a function calling system with arbitrary code execution": "Tools là một hệ thống gọi function với việc thực thi mã tùy ý",
 	"Tools are a function calling system with arbitrary code execution": "Tools là một hệ thống gọi function với việc thực thi mã tùy ý",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý",
 	"Tools have a function calling system that allows arbitrary code execution": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý",
 	"Tools have a function calling system that allows arbitrary code execution.": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý.",
 	"Tools have a function calling system that allows arbitrary code execution.": "Các Tools có hệ thống gọi function cho phép thực thi mã tùy ý.",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Bạn có thể cá nhân hóa các tương tác của mình với LLM bằng cách thêm bộ nhớ thông qua nút 'Quản lý' bên dưới, làm cho chúng hữu ích hơn và phù hợp với bạn hơn.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Bạn có thể cá nhân hóa các tương tác của mình với LLM bằng cách thêm bộ nhớ thông qua nút 'Quản lý' bên dưới, làm cho chúng hữu ích hơn và phù hợp với bạn hơn.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",
 	"You do not have permission to access this feature.": "",
 	"You do not have permission to access this feature.": "",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "",
 	"You do not have permission to upload files.": "",
 	"You have no archived conversations.": "Bạn chưa lưu trữ một nội dung chat nào",
 	"You have no archived conversations.": "Bạn chưa lưu trữ một nội dung chat nào",
 	"You have shared this chat": "Bạn vừa chia sẻ chat này",
 	"You have shared this chat": "Bạn vừa chia sẻ chat này",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p的替代方法,目标是在质量和多样性之间取得平衡。参数p表示一个token相对于最有可能的token所需的最低概率。比如,当p=0.05且最有可能的token概率为0.9时,概率低于0.045的logits会被排除。(默认值:0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "top_p的替代方法,目标是在质量和多样性之间取得平衡。参数p表示一个token相对于最有可能的token所需的最低概率。比如,当p=0.05且最有可能的token概率为0.9时,概率低于0.045的logits会被排除。(默认值:0.0)",
 	"Amazing": "很棒",
 	"Amazing": "很棒",
 	"an assistant": "AI模型",
 	"an assistant": "AI模型",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "和",
 	"and": "和",
 	"and {{COUNT}} more": "还有 {{COUNT}} 个",
 	"and {{COUNT}} more": "还有 {{COUNT}} 个",
 	"and create a new shared link.": "并创建一个新的分享链接。",
 	"and create a new shared link.": "并创建一个新的分享链接。",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "写入剪贴板时被拒绝。请检查浏览器设置,授予必要权限。",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "写入剪贴板时被拒绝。请检查浏览器设置,授予必要权限。",
 	"Clone": "复制",
 	"Clone": "复制",
 	"Clone Chat": "克隆聊天",
 	"Clone Chat": "克隆聊天",
+	"Clone of {{TITLE}}": "",
 	"Close": "关闭",
 	"Close": "关闭",
 	"Code execution": "代码执行",
 	"Code execution": "代码执行",
 	"Code formatted successfully": "代码格式化成功",
 	"Code formatted successfully": "代码格式化成功",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "文件集",
 	"Collection": "文件集",
 	"Color": "颜色",
 	"Color": "颜色",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "权限组名称",
 	"Group Name": "权限组名称",
 	"Group updated successfully": "权限组更新成功",
 	"Group updated successfully": "权限组更新成功",
 	"Groups": "权限组",
 	"Groups": "权限组",
-	"h:mm a": "HH:mm",
 	"Haptic Feedback": "震动反馈",
 	"Haptic Feedback": "震动反馈",
 	"has no conversations.": "没有对话。",
 	"has no conversations.": "没有对话。",
 	"Hello, {{name}}": "您好,{{name}}",
 	"Hello, {{name}}": "您好,{{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "YYYY年 MM月 DD日",
-	"MMMM DD, YYYY HH:mm": "YYYY年 MM月 DD日 HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "YYYY年 MM月 DD日 hh:mm:ss A",
 	"Model": "模型",
 	"Model": "模型",
 	"Model '{{modelName}}' has been successfully downloaded.": "模型'{{modelName}}'已成功下载。",
 	"Model '{{modelName}}' has been successfully downloaded.": "模型'{{modelName}}'已成功下载。",
 	"Model '{{modelTag}}' is already in queue for downloading.": "模型'{{modelTag}}'已在下载队列中。",
 	"Model '{{modelTag}}' is already in queue for downloading.": "模型'{{modelTag}}'已在下载队列中。",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "请输出一个 prompt",
 	"Please enter a prompt": "请输出一个 prompt",
 	"Please fill in all fields.": "请填写所有字段。",
 	"Please fill in all fields.": "请填写所有字段。",
 	"Please select a model first.": "请先选择一个模型。",
 	"Please select a model first.": "请先选择一个模型。",
+	"Please select a model.": "",
 	"Please select a reason": "请选择原因",
 	"Please select a reason": "请选择原因",
 	"Port": "端口",
 	"Port": "端口",
 	"Positive attitude": "积极的态度",
 	"Positive attitude": "积极的态度",
@@ -971,6 +973,7 @@
 	"Tools": "工具",
 	"Tools": "工具",
 	"Tools Access": "访问工具",
 	"Tools Access": "访问工具",
 	"Tools are a function calling system with arbitrary code execution": "工具是一个具有任意代码执行能力的函数调用系统",
 	"Tools are a function calling system with arbitrary code execution": "工具是一个具有任意代码执行能力的函数调用系统",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "注意:工具有权执行任意代码",
 	"Tools have a function calling system that allows arbitrary code execution": "注意:工具有权执行任意代码",
 	"Tools have a function calling system that allows arbitrary code execution.": "注意:工具有权执行任意代码。",
 	"Tools have a function calling system that allows arbitrary code execution.": "注意:工具有权执行任意代码。",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "通过点击下方的“管理”按钮,你可以添加记忆,以个性化大语言模型的互动,使其更有用,更符合你的需求。",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "通过点击下方的“管理”按钮,你可以添加记忆,以个性化大语言模型的互动,使其更有用,更符合你的需求。",
 	"You cannot upload an empty file.": "请勿上传空文件。",
 	"You cannot upload an empty file.": "请勿上传空文件。",
 	"You do not have permission to access this feature.": "你没有访问此功能的权限。",
 	"You do not have permission to access this feature.": "你没有访问此功能的权限。",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "你没有上传文件的权限。",
 	"You do not have permission to upload files.": "你没有上传文件的权限。",
 	"You have no archived conversations.": "没有已归档的对话。",
 	"You have no archived conversations.": "没有已归档的对话。",
 	"You have shared this chat": "此对话已经分享过",
 	"You have shared this chat": "此对话已经分享过",

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

@@ -65,6 +65,8 @@
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "作為 top_p 的替代方案,旨在確保質量和多樣性的平衡。相對於最可能的 token 機率而言,參數 p 代表一個 token 被考慮在内的最低機率。例如,當 p=0.05 且最可能的 token 機率為 0.9 時,數值低於 0.045 的對數機率會被過濾掉。(預設值:0.0)",
 	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "作為 top_p 的替代方案,旨在確保質量和多樣性的平衡。相對於最可能的 token 機率而言,參數 p 代表一個 token 被考慮在内的最低機率。例如,當 p=0.05 且最可能的 token 機率為 0.9 時,數值低於 0.045 的對數機率會被過濾掉。(預設值:0.0)",
 	"Amazing": "很棒",
 	"Amazing": "很棒",
 	"an assistant": "一位助手",
 	"an assistant": "一位助手",
+	"Analyzed": "",
+	"Analyzing...": "",
 	"and": "和",
 	"and": "和",
 	"and {{COUNT}} more": "和另外 {{COUNT}} 個",
 	"and {{COUNT}} more": "和另外 {{COUNT}} 個",
 	"and create a new shared link.": "並建立新的共用連結。",
 	"and create a new shared link.": "並建立新的共用連結。",
@@ -169,9 +171,12 @@
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "剪貼簿寫入權限遭拒。請檢查您的瀏覽器設定,授予必要的存取權限。",
 	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "剪貼簿寫入權限遭拒。請檢查您的瀏覽器設定,授予必要的存取權限。",
 	"Clone": "複製",
 	"Clone": "複製",
 	"Clone Chat": "複製對話",
 	"Clone Chat": "複製對話",
+	"Clone of {{TITLE}}": "",
 	"Close": "關閉",
 	"Close": "關閉",
 	"Code execution": "程式碼執行",
 	"Code execution": "程式碼執行",
 	"Code formatted successfully": "程式碼格式化成功",
 	"Code formatted successfully": "程式碼格式化成功",
+	"Code Intepreter": "",
+	"Code interpreter": "",
 	"Collection": "收藏",
 	"Collection": "收藏",
 	"Color": "顏色",
 	"Color": "顏色",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI": "ComfyUI",
@@ -478,7 +483,6 @@
 	"Group Name": "群組名稱",
 	"Group Name": "群組名稱",
 	"Group updated successfully": "群組更新成功",
 	"Group updated successfully": "群組更新成功",
 	"Groups": "群組",
 	"Groups": "群組",
-	"h:mm a": "h:mm a",
 	"Haptic Feedback": "觸覺回饋",
 	"Haptic Feedback": "觸覺回饋",
 	"has no conversations.": "沒有對話。",
 	"has no conversations.": "沒有對話。",
 	"Hello, {{name}}": "您好,{{name}}",
 	"Hello, {{name}}": "您好,{{name}}",
@@ -595,9 +599,6 @@
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Eta": "Mirostat Eta",
 	"Mirostat Tau": "Mirostat Tau",
 	"Mirostat Tau": "Mirostat Tau",
-	"MMMM DD, YYYY": "YYYY 年 MMMM DD 日",
-	"MMMM DD, YYYY HH:mm": "YYYY 年 MMMM DD 日 HH:mm",
-	"MMMM DD, YYYY hh:mm:ss A": "YYYY 年 MMMM DD 日 hh:mm:ss A",
 	"Model": "模型",
 	"Model": "模型",
 	"Model '{{modelName}}' has been successfully downloaded.": "模型「{{modelName}}」已成功下載。",
 	"Model '{{modelName}}' has been successfully downloaded.": "模型「{{modelName}}」已成功下載。",
 	"Model '{{modelTag}}' is already in queue for downloading.": "模型「{{modelTag}}」已在下載佇列中。",
 	"Model '{{modelTag}}' is already in queue for downloading.": "模型「{{modelTag}}」已在下載佇列中。",
@@ -718,6 +719,7 @@
 	"Please enter a prompt": "請輸入提示詞",
 	"Please enter a prompt": "請輸入提示詞",
 	"Please fill in all fields.": "請填寫所有欄位。",
 	"Please fill in all fields.": "請填寫所有欄位。",
 	"Please select a model first.": "請先選擇型號。",
 	"Please select a model first.": "請先選擇型號。",
+	"Please select a model.": "",
 	"Please select a reason": "請選擇原因",
 	"Please select a reason": "請選擇原因",
 	"Port": "連接埠",
 	"Port": "連接埠",
 	"Positive attitude": "積極的態度",
 	"Positive attitude": "積極的態度",
@@ -971,6 +973,7 @@
 	"Tools": "工具",
 	"Tools": "工具",
 	"Tools Access": "工具存取",
 	"Tools Access": "工具存取",
 	"Tools are a function calling system with arbitrary code execution": "工具是一個具有任意程式碼執行功能的函式呼叫系統",
 	"Tools are a function calling system with arbitrary code execution": "工具是一個具有任意程式碼執行功能的函式呼叫系統",
+	"Tools Function Calling Prompt": "",
 	"Tools have a function calling system that allows arbitrary code execution": "工具具有允許執行任意程式碼的函式呼叫系統",
 	"Tools have a function calling system that allows arbitrary code execution": "工具具有允許執行任意程式碼的函式呼叫系統",
 	"Tools have a function calling system that allows arbitrary code execution.": "工具具有允許執行任意程式碼的函式呼叫系統。",
 	"Tools have a function calling system that allows arbitrary code execution.": "工具具有允許執行任意程式碼的函式呼叫系統。",
 	"Top K": "Top K",
 	"Top K": "Top K",
@@ -1070,6 +1073,7 @@
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "您可以透過下方的「管理」按鈕新增記憶,將您與大型語言模型的互動個人化,讓它們更有幫助並更符合您的需求。",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "您可以透過下方的「管理」按鈕新增記憶,將您與大型語言模型的互動個人化,讓它們更有幫助並更符合您的需求。",
 	"You cannot upload an empty file.": "您無法上傳空檔案",
 	"You cannot upload an empty file.": "您無法上傳空檔案",
 	"You do not have permission to access this feature.": "您沒有權限訪問此功能",
 	"You do not have permission to access this feature.": "您沒有權限訪問此功能",
+	"You do not have permission to upload files": "",
 	"You do not have permission to upload files.": "您沒有權限上傳檔案",
 	"You do not have permission to upload files.": "您沒有權限上傳檔案",
 	"You have no archived conversations.": "您沒有已封存的對話。",
 	"You have no archived conversations.": "您沒有已封存的對話。",
 	"You have shared this chat": "您已分享此對話",
 	"You have shared this chat": "您已分享此對話",

+ 2 - 2
src/routes/s/[id]/+page.svelte

@@ -16,10 +16,10 @@
 	import { getUserById } from '$lib/apis/users';
 	import { getUserById } from '$lib/apis/users';
 	import { getModels } from '$lib/apis';
 	import { getModels } from '$lib/apis';
 	import { toast } from 'svelte-sonner';
 	import { toast } from 'svelte-sonner';
-    import localizedFormat from 'dayjs/plugin/localizedFormat';
+	import localizedFormat from 'dayjs/plugin/localizedFormat';
 
 
 	const i18n = getContext('i18n');
 	const i18n = getContext('i18n');
-    dayjs.extend(localizedFormat);
+	dayjs.extend(localizedFormat);
 
 
 	let loaded = false;
 	let loaded = false;