瀏覽代碼

chore: format

Timothy J. Baek 1 年之前
父節點
當前提交
7f1acf9c2d
共有 32 個文件被更改,包括 432 次插入10 次删除
  1. 1 1
      src/lib/apis/ollama/index.ts
  2. 1 1
      src/lib/apis/openai/index.ts
  3. 0 1
      src/lib/components/chat/ModelSelector/Selector.svelte
  4. 10 5
      src/lib/components/chat/ShareChatModal.svelte
  5. 1 1
      src/lib/components/layout/Sidebar.svelte
  6. 3 1
      src/lib/components/layout/Sidebar/ArchivedChatsModal.svelte
  7. 16 0
      src/lib/i18n/locales/ar-BH/translation.json
  8. 16 0
      src/lib/i18n/locales/bg-BG/translation.json
  9. 16 0
      src/lib/i18n/locales/bn-BD/translation.json
  10. 16 0
      src/lib/i18n/locales/ca-ES/translation.json
  11. 16 0
      src/lib/i18n/locales/dg-DG/translation.json
  12. 16 0
      src/lib/i18n/locales/en-GB/translation.json
  13. 16 0
      src/lib/i18n/locales/en-US/translation.json
  14. 16 0
      src/lib/i18n/locales/es-ES/translation.json
  15. 16 0
      src/lib/i18n/locales/fa-IR/translation.json
  16. 16 0
      src/lib/i18n/locales/fr-CA/translation.json
  17. 16 0
      src/lib/i18n/locales/fr-FR/translation.json
  18. 16 0
      src/lib/i18n/locales/it-IT/translation.json
  19. 16 0
      src/lib/i18n/locales/ja-JP/translation.json
  20. 16 0
      src/lib/i18n/locales/ka-GE/translation.json
  21. 16 0
      src/lib/i18n/locales/ko-KR/translation.json
  22. 16 0
      src/lib/i18n/locales/nl-NL/translation.json
  23. 16 0
      src/lib/i18n/locales/pl-PL/translation.json
  24. 16 0
      src/lib/i18n/locales/pt-BR/translation.json
  25. 16 0
      src/lib/i18n/locales/pt-PT/translation.json
  26. 16 0
      src/lib/i18n/locales/ru-RU/translation.json
  27. 16 0
      src/lib/i18n/locales/sv-SE/translation.json
  28. 16 0
      src/lib/i18n/locales/tr-TR/translation.json
  29. 16 0
      src/lib/i18n/locales/uk-UA/translation.json
  30. 16 0
      src/lib/i18n/locales/vi-VN/translation.json
  31. 16 0
      src/lib/i18n/locales/zh-CN/translation.json
  32. 16 0
      src/lib/i18n/locales/zh-TW/translation.json

+ 1 - 1
src/lib/apis/ollama/index.ts

@@ -162,7 +162,7 @@ export const generateTitle = async (
 			stream: false,
 			options: {
 				// Restrict the number of tokens generated to 50
-				num_predict: 50,
+				num_predict: 50
 			}
 		})
 	})

+ 1 - 1
src/lib/apis/openai/index.ts

@@ -297,7 +297,7 @@ export const generateTitle = async (
 			],
 			stream: false,
 			// Restricting the max tokens to 50 to avoid long titles
-			max_tokens: 50,
+			max_tokens: 50
 		})
 	})
 		.then(async (res) => {

+ 0 - 1
src/lib/components/chat/ModelSelector/Selector.svelte

@@ -318,7 +318,6 @@
 						}}
 					>
 						{$i18n.t(`Pull "{{searchValue}}" from Ollama.com`, { searchValue: searchValue })}
-
 					</button>
 				{/if}
 

+ 10 - 5
src/lib/components/chat/ShareChatModal.svelte

@@ -97,9 +97,10 @@
 				<div class=" text-sm dark:text-gray-300 mb-1">
 					{#if chat.share_id}
 						<a href="/s/{chat.share_id}" target="_blank"
-							>{$i18n.t("You have shared this chat")} <span class=" underline">{$i18n.t("before")}</span>.</a
+							>{$i18n.t('You have shared this chat')}
+							<span class=" underline">{$i18n.t('before')}</span>.</a
 						>
-						{$i18n.t("Click here to")} 
+						{$i18n.t('Click here to')}
 						<button
 							class="underline"
 							on:click={async () => {
@@ -108,10 +109,14 @@
 								if (res) {
 									chat = await getChatById(localStorage.token, chatId);
 								}
-							}}>{$i18n.t("delete this link")} </button
-						> {$i18n.t("and create a new shared link.")} 
+							}}
+							>{$i18n.t('delete this link')}
+						</button>
+						{$i18n.t('and create a new shared link.')}
 					{:else}
-					{$i18n.t("Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.")}
+						{$i18n.t(
+							"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat."
+						)}
 					{/if}
 				</div>
 

+ 1 - 1
src/lib/components/layout/Sidebar.svelte

@@ -419,7 +419,7 @@
 							await chats.set(await getChatList(localStorage.token));
 						}}
 					>
-					{$i18n.t('all')}
+						{$i18n.t('all')}
 					</button>
 					{#each $tags as tag}
 						<button

+ 3 - 1
src/lib/components/layout/Sidebar/ArchivedChatsModal.svelte

@@ -161,7 +161,9 @@
 						{/each} -->
 					</div>
 				{:else}
-					<div class="text-left text-sm w-full mb-8">{$i18n.t('You have no archived conversations.')}</div>
+					<div class="text-left text-sm w-full mb-8">
+						{$i18n.t('You have no archived conversations.')}
+					</div>
 				{/if}
 			</div>
 		</div>

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "هل تملك حساب ؟",
 	"an assistant": "مساعد",
 	"and": "و",
+	"and create a new shared link.": "",
 	"API Base URL": "API الرابط الرئيسي",
 	"API Key": "API مفتاح",
 	"API Key created.": "API تم أنشاء المفتاح",
@@ -54,6 +55,7 @@
 	"available!": "متاح",
 	"Back": "خلف",
 	"Bad Response": "استجابة خطاء",
+	"before": "",
 	"Being lazy": "كون كسول",
 	"Builder Mode": "بناء الموديل",
 	"Cancel": "اللغاء",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Chunk المتغيرات",
 	"Chunk Size": "Chunk حجم",
 	"Click here for help.": "أضغط هنا للمساعدة",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "انقر هنا للتحقق من ملفات الموديلات الأخرى.",
 	"Click here to select": "أضغط هنا للاختيار",
 	"Click here to select a csv file.": "أضغط هنا للاختيار ملف csv",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "قم بإنشاء عبارة موجزة مكونة من 3-5 كلمات كرأس للاستعلام التالي، مع الالتزام الصارم بالحد الأقصى لعدد الكلمات الذي يتراوح بين 3-5 كلمات وتجنب استخدام الكلمة 'عنوان':",
 	"Create a modelfile": "إنشاء ملف نموذجي",
 	"Create Account": "إنشاء حساب",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "أنشئت في",
 	"Created At": "أنشئت من",
 	"Current Model": "الموديل المختار",
@@ -105,6 +110,7 @@
 	"Custom": "مخصص",
 	"Customize Ollama models for a specific purpose": "تخصيص الموديل Ollama لغرض محدد",
 	"Dark": "مظلم",
+	"Dashboard": "",
 	"Database": "قاعدة البيانات",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "الإفتراضي",
@@ -120,6 +126,7 @@
 	"Delete chat": "حذف المحادثه",
 	"Delete Chat": "حذف المحادثه.",
 	"Delete Chats": "حذ المحادثات",
+	"delete this link": "",
 	"Delete User": "حذف المستخدم",
 	"Deleted {{deleteModelTag}}": "حذف {{deleteModelTag}}",
 	"Deleted {{tagName}}": "حذف {{tagName}}",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "أدخل تسلسل التوقف",
 	"Enter Top K": "Enter Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "الرابط (e.g. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "أدخل البريد الاكتروني",
 	"Enter Your Full Name": "أدخل الاسم كامل",
 	"Enter Your Password": "ادخل كلمة المرور",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "إدارة موديلات Ollama",
 	"Max Tokens": "Max Tokens",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "الحد الأدنى من النقاط",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "قم بتسمية ملف النموذج الخاص بك",
 	"New Chat": "دردشة جديدة",
 	"New Password": "كلمة المرور الجديدة",
+	"No results found": "",
 	"Not factually correct": "ليس صحيحا من حيث الواقع",
 	"Not sure what to add?": "لست متأكدا ما يجب إضافته؟",
 	"Not sure what to write? Switch to": "لست متأكدا ماذا أكتب؟ التبديل إلى",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "مطلوب عنوان URL/مفتاح OpenAI.",
 	"or": "أو",
 	"Other": "آخر",
+	"Overview": "",
 	"Parameters": "Parameters",
 	"Password": "الباسورد",
 	"PDF document (.pdf)": "PDF ملف (.pdf)",
@@ -300,6 +311,7 @@
 	"Prompt Content": "محتوى عاجل",
 	"Prompt suggestions": "اقتراحات سريعة",
 	"Prompts": "حث",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "سحب الموديل من Ollama.com",
 	"Pull Progress": "سحب التقدم",
 	"Query Params": "Query Params",
@@ -312,6 +324,8 @@
 	"Regenerate": "تجديد",
 	"Release Notes": "ملاحظات الإصدار",
 	"Remove": "إزالة",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "كرر آخر N",
 	"Repeat Penalty": "كرر المخالفة",
 	"Request Mode": "وضع الطلب",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "اكتب اقتراحًا سريعًا (على سبيل المثال، من أنت؟)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "اكتب ملخصًا في 50 كلمة يلخص [الموضوع أو الكلمة الرئيسية].",
 	"You": "أنت",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "مساعدك المفيد هنا",
 	"You're now logged in.": "لقد قمت الآن بتسجيل الدخول.",
 	"Youtube": "Youtube"

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Вече имате акаунт? ",
 	"an assistant": "асистент",
 	"and": "и",
+	"and create a new shared link.": "",
 	"API Base URL": "API Базов URL",
 	"API Key": "API Ключ",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "наличен!",
 	"Back": "Назад",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Режим на Създаване",
 	"Cancel": "Отказ",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Size",
 	"Click here for help.": "Натиснете тук за помощ.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Натиснете тук за проверка на други моделфайлове.",
 	"Click here to select": "Натиснете тук, за да изберете",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Създайте кратка фраза от 3-5 думи като заглавие за следващото запитване, като стриктно спазвате ограничението от 3-5 думи и избягвате използването на думата 'заглавие':",
 	"Create a modelfile": "Създаване на модфайл",
 	"Create Account": "Създаване на Акаунт",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Създадено на",
 	"Created At": "",
 	"Current Model": "Текущ модел",
@@ -105,6 +110,7 @@
 	"Custom": "Персонализиран",
 	"Customize Ollama models for a specific purpose": "Персонализиране на Ollama моделите за конкретна цел",
 	"Dark": "Тъмен",
+	"Dashboard": "",
 	"Database": "База данни",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "По подразбиране",
@@ -120,6 +126,7 @@
 	"Delete chat": "Изтриване на чат",
 	"Delete Chat": "",
 	"Delete Chats": "Изтриване на Чатове",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Изтрито {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Въведете стоп последователност",
 	"Enter Top K": "Въведете Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Въведете URL (напр. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Въведете имейл",
 	"Enter Your Full Name": "Въведете вашето пълно име",
 	"Enter Your Password": "Въведете вашата парола",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Управление на Ollama Моделите",
 	"Max Tokens": "Max Tokens",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимум 3 модели могат да бъдат сваляни едновременно. Моля, опитайте отново по-късно.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Име на модфайла",
 	"New Chat": "Нов чат",
 	"New Password": "Нова парола",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Не сте сигурни, какво да добавите?",
 	"Not sure what to write? Switch to": "Не сте сигурни, какво да напишете? Превключете към",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "или",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Параметри",
 	"Password": "Парола",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Съдържание на промпта",
 	"Prompt suggestions": "Промпт предложения",
 	"Prompts": "Промптове",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Издърпайте модел от Ollama.com",
 	"Pull Progress": "Прогрес на издърпването",
 	"Query Params": "Query Параметри",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Бележки по изданието",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Repeat Last N",
 	"Repeat Penalty": "Repeat Penalty",
 	"Request Mode": "Request Mode",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Напиши предложение за промпт (напр. Кой сте вие?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напиши описание в 50 знака, което описва [тема или ключова дума].",
 	"You": "Вие",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Вие сте полезен асистент.",
 	"You're now logged in.": "Сега, вие влязохте в системата.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "আগে থেকেই একাউন্ট আছে?",
 	"an assistant": "একটা এসিস্ট্যান্ট",
 	"and": "এবং",
+	"and create a new shared link.": "",
 	"API Base URL": "এপিআই বেজ ইউআরএল",
 	"API Key": "এপিআই কোড",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "উপলব্ধ!",
 	"Back": "পেছনে",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "বিল্ডার মোড",
 	"Cancel": "বাতিল",
@@ -71,6 +73,7 @@
 	"Chunk Params": "চাঙ্ক প্যারামিটার্স",
 	"Chunk Size": "চাঙ্ক সাইজ",
 	"Click here for help.": "সাহায্যের জন্য এখানে ক্লিক করুন",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "অন্যান্য মডেলফাইল চেক করার জন্য এখানে ক্লিক করুন",
 	"Click here to select": "নির্বাচন করার জন্য এখানে ক্লিক করুন",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "'title' শব্দটি ব্যবহার না করে নিম্মোক্ত অনুসন্ধানের জন্য সংক্ষেপে সর্বোচ্চ ৩-৫ শব্দের একটি হেডার তৈরি করুন",
 	"Create a modelfile": "একটি মডেলফাইল তৈরি করুন",
 	"Create Account": "একাউন্ট তৈরি করুন",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "নির্মানকাল",
 	"Created At": "",
 	"Current Model": "বর্তমান মডেল",
@@ -105,6 +110,7 @@
 	"Custom": "কাস্টম",
 	"Customize Ollama models for a specific purpose": "নির্দিষ্ট উদ্দেশ্যে Ollama মডেল পরিবর্তন করুন",
 	"Dark": "ডার্ক",
+	"Dashboard": "",
 	"Database": "ডেটাবেজ",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "ডিফল্ট",
@@ -120,6 +126,7 @@
 	"Delete chat": "চ্যাট মুছে ফেলুন",
 	"Delete Chat": "",
 	"Delete Chats": "চ্যাটগুলো মুছে ফেলুন",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} মুছে ফেলা হয়েছে",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "স্টপ সিকোয়েন্স লিখুন",
 	"Enter Top K": "Top K লিখুন",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "ইউআরএল দিন (যেমন http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "আপনার ইমেইল লিখুন",
 	"Enter Your Full Name": "আপনার পূর্ণ নাম লিখুন",
 	"Enter Your Password": "আপনার পাসওয়ার্ড লিখুন",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Ollama মডেলসূহ ব্যবস্থাপনা করুন",
 	"Max Tokens": "সর্বোচ্চ টোকন",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "একসঙ্গে সর্বোচ্চ তিনটি মডেল ডাউনলোড করা যায়। দয়া করে পরে আবার চেষ্টা করুন।",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "আপনার মডেলফাইলের নাম দিন",
 	"New Chat": "নতুন চ্যাট",
 	"New Password": "নতুন পাসওয়ার্ড",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "কী যুক্ত করতে হবে নিশ্চিত না?",
 	"Not sure what to write? Switch to": "কী লিখতে হবে নিশ্চিত না? পরিবর্তন করুন:",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "অথবা",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "প্যারামিটারসমূহ",
 	"Password": "পাসওয়ার্ড",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "প্রম্পট কন্টেন্ট",
 	"Prompt suggestions": "প্রম্পট সাজেশনসমূহ",
 	"Prompts": "প্রম্পটসমূহ",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Ollama.com থেকে একটি টেনে আনুন আনুন",
 	"Pull Progress": "Pull চলমান",
 	"Query Params": "Query প্যারামিটারসমূহ",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "রিলিজ নোটসমূহ",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "রিপিট Last N",
 	"Repeat Penalty": "রিপিট প্যানাল্টি",
 	"Request Mode": "রিকোয়েস্ট মোড",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "একটি প্রম্পট সাজেশন লিখুন (যেমন Who are you?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "৫০ শব্দের মধ্যে [topic or keyword] এর একটি সারসংক্ষেপ লিখুন।",
 	"You": "আপনি",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "আপনি একজন উপকারী এসিস্ট্যান্ট",
 	"You're now logged in.": "আপনি এখন লগইন করা অবস্থায় আছেন",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Ja tens un compte?",
 	"an assistant": "un assistent",
 	"and": "i",
+	"and create a new shared link.": "",
 	"API Base URL": "URL Base de l'API",
 	"API Key": "Clau de l'API",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "disponible!",
 	"Back": "Enrere",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Mode Constructor",
 	"Cancel": "Cancel·la",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Paràmetres de Blocs",
 	"Chunk Size": "Mida del Bloc",
 	"Click here for help.": "Fes clic aquí per ajuda.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Fes clic aquí per comprovar altres fitxers de model.",
 	"Click here to select": "Fes clic aquí per seleccionar",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crea una frase concisa de 3-5 paraules com a capçalera per a la següent consulta, seguint estrictament el límit de 3-5 paraules i evitant l'ús de la paraula 'títol':",
 	"Create a modelfile": "Crea un fitxer de model",
 	"Create Account": "Crea un Compte",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Creat el",
 	"Created At": "",
 	"Current Model": "Model Actual",
@@ -105,6 +110,7 @@
 	"Custom": "Personalitzat",
 	"Customize Ollama models for a specific purpose": "Personalitza els models Ollama per a un propòsit específic",
 	"Dark": "Fosc",
+	"Dashboard": "",
 	"Database": "Base de Dades",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Per defecte",
@@ -120,6 +126,7 @@
 	"Delete chat": "Esborra xat",
 	"Delete Chat": "",
 	"Delete Chats": "Esborra Xats",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Esborrat {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Introdueix la seqüència de parada",
 	"Enter Top K": "Introdueix Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Introdueix l'URL (p. ex. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Introdueix el Teu Correu Electrònic",
 	"Enter Your Full Name": "Introdueix el Teu Nom Complet",
 	"Enter Your Password": "Introdueix la Teva Contrasenya",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Gestiona Models Ollama",
 	"Max Tokens": "Màxim de Tokens",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es poden descarregar un màxim de 3 models simultàniament. Si us plau, prova-ho més tard.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Eta de Mirostat",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Nomena el teu fitxer de model",
 	"New Chat": "Xat Nou",
 	"New Password": "Nova Contrasenya",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "No estàs segur del que afegir?",
 	"Not sure what to write? Switch to": "No estàs segur del que escriure? Canvia a",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "o",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Paràmetres",
 	"Password": "Contrasenya",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Contingut del Prompt",
 	"Prompt suggestions": "Suggeriments de Prompt",
 	"Prompts": "Prompts",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Treu un model d'Ollama.com",
 	"Pull Progress": "Progrés de Tracció",
 	"Query Params": "Paràmetres de Consulta",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Notes de la Versió",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Repeteix Últim N",
 	"Repeat Penalty": "Penalització de Repetició",
 	"Request Mode": "Mode de Sol·licitud",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Escriu una suggerència de prompt (p. ex. Qui ets tu?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escriu un resum en 50 paraules que resumeixi [tema o paraula clau].",
 	"You": "Tu",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Ets un assistent útil.",
 	"You're now logged in.": "Ara estàs connectat.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Such account exists?",
 	"an assistant": "such assistant",
 	"and": "and",
+	"and create a new shared link.": "",
 	"API Base URL": "API Base URL",
 	"API Key": "API Key",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "available! So excite!",
 	"Back": "Back",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Builder Mode",
 	"Cancel": "Cancel",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Size",
 	"Click here for help.": "Click for help. Much assist.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Click to check other modelfiles.",
 	"Click here to select": "Click to select",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Create short phrase, 3-5 word, as header for query, much strict, avoid 'title':",
 	"Create a modelfile": "Create modelfile",
 	"Create Account": "Create Account",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Created at",
 	"Created At": "",
 	"Current Model": "Current Model",
@@ -105,6 +110,7 @@
 	"Custom": "Custom",
 	"Customize Ollama models for a specific purpose": "Customize Ollama models for purpose",
 	"Dark": "Dark",
+	"Dashboard": "",
 	"Database": "Database",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Default",
@@ -120,6 +126,7 @@
 	"Delete chat": "Delete chat",
 	"Delete Chat": "",
 	"Delete Chats": "Delete Chats",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Deleted {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Enter stop bark",
 	"Enter Top K": "Enter Top Wow",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Enter URL (e.g. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Enter Your Dogemail",
 	"Enter Your Full Name": "Enter Your Full Wow",
 	"Enter Your Password": "Enter Your Barkword",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Manage Ollama Wowdels",
 	"Max Tokens": "Max Tokens",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum of 3 models can be downloaded simultaneously. Please try again later.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Name your modelfile",
 	"New Chat": "New Bark",
 	"New Password": "New Barkword",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Not sure what to add?",
 	"Not sure what to write? Switch to": "Not sure what to write? Switch to",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "or",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Parametos",
 	"Password": "Barkword",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Prompt Content",
 	"Prompt suggestions": "Prompt wowgestions",
 	"Prompts": "Promptos",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Pull a wowdel from Ollama.com",
 	"Pull Progress": "Pull Progress",
 	"Query Params": "Query Bark",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Release Borks",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Repeat Last N",
 	"Repeat Penalty": "Repeat Penalty",
 	"Request Mode": "Request Bark",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Write a prompt suggestion (e.g. Who are you?) much suggest",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Write a summary in 50 words that summarizes [topic or keyword]. Much summarize.",
 	"You": "You very you",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "You're a helpful assistant. Much helpful.",
 	"You're now logged in.": "You're now logged in. Much logged.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "",
 	"an assistant": "",
 	"and": "",
+	"and create a new shared link.": "",
 	"API Base URL": "",
 	"API Key": "",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "",
 	"Back": "",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "",
 	"Cancel": "",
@@ -71,6 +73,7 @@
 	"Chunk Params": "",
 	"Chunk Size": "",
 	"Click here for help.": "",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "",
 	"Click here to select": "",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "",
 	"Create a modelfile": "",
 	"Create Account": "",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "",
 	"Created At": "",
 	"Current Model": "",
@@ -105,6 +110,7 @@
 	"Custom": "",
 	"Customize Ollama models for a specific purpose": "",
 	"Dark": "",
+	"Dashboard": "",
 	"Database": "",
 	"DD/MM/YYYY HH:mm": "",
 	"Default": "",
@@ -120,6 +126,7 @@
 	"Delete chat": "",
 	"Delete Chat": "",
 	"Delete Chats": "",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "",
 	"Enter Top K": "",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "",
 	"Enter Your Full Name": "",
 	"Enter Your Password": "",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "",
 	"Max Tokens": "",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "",
 	"Mirostat Eta": "",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "",
 	"New Chat": "",
 	"New Password": "",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "",
 	"Not sure what to write? Switch to": "",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "",
 	"Password": "",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "",
 	"Prompt suggestions": "",
 	"Prompts": "",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull Progress": "",
 	"Query Params": "",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "",
 	"Repeat Penalty": "",
 	"Request Mode": "",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"You": "",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "",
 	"You're now logged in.": "",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "",
 	"an assistant": "",
 	"and": "",
+	"and create a new shared link.": "",
 	"API Base URL": "",
 	"API Key": "",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "",
 	"Back": "",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "",
 	"Cancel": "",
@@ -71,6 +73,7 @@
 	"Chunk Params": "",
 	"Chunk Size": "",
 	"Click here for help.": "",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "",
 	"Click here to select": "",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "",
 	"Create a modelfile": "",
 	"Create Account": "",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "",
 	"Created At": "",
 	"Current Model": "",
@@ -105,6 +110,7 @@
 	"Custom": "",
 	"Customize Ollama models for a specific purpose": "",
 	"Dark": "",
+	"Dashboard": "",
 	"Database": "",
 	"DD/MM/YYYY HH:mm": "",
 	"Default": "",
@@ -120,6 +126,7 @@
 	"Delete chat": "",
 	"Delete Chat": "",
 	"Delete Chats": "",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "",
 	"Enter Top K": "",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "",
 	"Enter Your Full Name": "",
 	"Enter Your Password": "",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "",
 	"Max Tokens": "",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "",
 	"Mirostat Eta": "",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "",
 	"New Chat": "",
 	"New Password": "",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "",
 	"Not sure what to write? Switch to": "",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "",
 	"Password": "",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "",
 	"Prompt suggestions": "",
 	"Prompts": "",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "",
 	"Pull Progress": "",
 	"Query Params": "",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "",
 	"Repeat Penalty": "",
 	"Request Mode": "",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"You": "",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "",
 	"You're now logged in.": "",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "¿Ya tienes una cuenta?",
 	"an assistant": "un asistente",
 	"and": "y",
+	"and create a new shared link.": "",
 	"API Base URL": "Dirección URL de la API",
 	"API Key": "Clave de la API ",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "¡disponible!",
 	"Back": "Volver",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Modo de Constructor",
 	"Cancel": "Cancelar",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Parámetros de fragmentos",
 	"Chunk Size": "Tamaño de fragmentos",
 	"Click here for help.": "Presiona aquí para obtener ayuda.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Presiona aquí para consultar otros modelfiles.",
 	"Click here to select": "Presiona aquí para seleccionar",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Cree una frase concisa de 3 a 5 palabras como encabezado para la siguiente consulta, respetando estrictamente el límite de 3 a 5 palabras y evitando el uso de la palabra 'título':",
 	"Create a modelfile": "Crea un modelfile",
 	"Create Account": "Crear una cuenta",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Creado en",
 	"Created At": "",
 	"Current Model": "Modelo Actual",
@@ -105,6 +110,7 @@
 	"Custom": "Personalizado",
 	"Customize Ollama models for a specific purpose": "Personaliza los modelos de Ollama para un propósito específico",
 	"Dark": "Oscuro",
+	"Dashboard": "",
 	"Database": "Base de datos",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Por defecto",
@@ -120,6 +126,7 @@
 	"Delete chat": "Borrar chat",
 	"Delete Chat": "",
 	"Delete Chats": "Borrar Chats",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Se borró {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Ingrese la secuencia de parada",
 	"Enter Top K": "Ingrese el Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Ingrese la URL (p.ej., http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Ingrese su correo electrónico",
 	"Enter Your Full Name": "Ingrese su nombre completo",
 	"Enter Your Password": "Ingrese su contraseña",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Administrar Modelos Ollama",
 	"Max Tokens": "Máximo de Tokens",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Se pueden descargar un máximo de 3 modelos simultáneamente. Por favor, inténtelo de nuevo más tarde.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Nombra tu modelfile",
 	"New Chat": "Nuevo Chat",
 	"New Password": "Nueva Contraseña",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "¿No sabes qué añadir?",
 	"Not sure what to write? Switch to": "¿No sabes qué escribir? Cambia a",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "o",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Parámetros",
 	"Password": "Contraseña",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Contenido del Prompt",
 	"Prompt suggestions": "Sugerencias de Prompts",
 	"Prompts": "Prompts",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Obtener un modelo de Ollama.com",
 	"Pull Progress": "Progreso de extracción",
 	"Query Params": "Parámetros de consulta",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Notas de la versión",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Repetir las últimas N",
 	"Repeat Penalty": "Penalidad de repetición",
 	"Request Mode": "Modo de petición",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Escribe una sugerencia para un prompt (por ejemplo, ¿quién eres?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escribe un resumen en 50 palabras que resuma [tema o palabra clave].",
 	"You": "Usted",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Eres un asistente útil.",
 	"You're now logged in.": "Has iniciado sesión.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "از قبل حساب کاربری دارید؟",
 	"an assistant": "یک دستیار",
 	"and": "و",
+	"and create a new shared link.": "",
 	"API Base URL": "API Base URL",
 	"API Key": "API Key",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "در دسترس!",
 	"Back": "بازگشت",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "حالت سازنده",
 	"Cancel": "لغو",
@@ -71,6 +73,7 @@
 	"Chunk Params": "پارامترهای تکه",
 	"Chunk Size": "اندازه تکه",
 	"Click here for help.": "برای کمک اینجا را کلیک کنید.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "برای بررسی سایر فایل\u200cهای مدل اینجا را کلیک کنید.",
 	"Click here to select": "برای انتخاب اینجا کلیک کنید",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "یک عبارت مختصر و ۳ تا ۵ کلمه ای را به عنوان سرفصل برای پرس و جو زیر ایجاد کنید، به شدت محدودیت ۳-۵ کلمه را رعایت کنید و از استفاده از کلمه 'عنوان' خودداری کنید:",
 	"Create a modelfile": "ایجاد یک فایل مدل",
 	"Create Account": "ساخت حساب کاربری",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "ایجاد شده در",
 	"Created At": "",
 	"Current Model": "مدل فعلی",
@@ -105,6 +110,7 @@
 	"Custom": "دلخواه",
 	"Customize Ollama models for a specific purpose": "مدل های اولاما را برای یک هدف خاص سفارشی کنید",
 	"Dark": "تیره",
+	"Dashboard": "",
 	"Database": "پایگاه داده",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "پیشفرض",
@@ -120,6 +126,7 @@
 	"Delete chat": "حذف گپ",
 	"Delete Chat": "",
 	"Delete Chats": "حذف گپ\u200cها",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} پاک شد",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "توالی توقف را وارد کنید",
 	"Enter Top K": "مقدار Top K را وارد کنید",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "مقدار URL را وارد کنید (مثال http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "ایمیل خود را وارد کنید",
 	"Enter Your Full Name": "نام کامل خود را وارد کنید",
 	"Enter Your Password": "رمز عبور خود را وارد کنید",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "مدیریت مدل\u200cهای اولاما",
 	"Max Tokens": "حداکثر توکن",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "حداکثر 3 مدل را می توان به طور همزمان دانلود کرد. لطفاً بعداً دوباره امتحان کنید.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "فایل مدل را نام\u200cگذاری کنید",
 	"New Chat": "گپ جدید",
 	"New Password": "رمز عبور جدید",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "مطمئن نیستید چه چیزی را اضافه کنید؟",
 	"Not sure what to write? Switch to": "مطمئن نیستید چه بنویسید؟ تغییر به",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "روشن",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "پارامترها",
 	"Password": "رمز عبور",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "محتویات پرامپت",
 	"Prompt suggestions": "پیشنهادات پرامپت",
 	"Prompts": "پرامپت\u200cها",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "دریافت یک مدل از Ollama.com",
 	"Pull Progress": "پیشرفت دریافت",
 	"Query Params": "پارامترهای پرس و جو",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "یادداشت\u200cهای انتشار",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Repeat Last N",
 	"Repeat Penalty": "Repeat Penalty",
 	"Request Mode": "حالت درخواست",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "یک پیشنهاد پرامپت بنویسید (مثلاً شما کی هستید؟)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "خلاصه ای در 50 کلمه بنویسید که [موضوع یا کلمه کلیدی] را خلاصه کند.",
 	"You": "شما",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "تو یک دستیار سودمند هستی.",
 	"You're now logged in.": "شما اکنون وارد شده\u200cاید.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Vous avez déjà un compte ?",
 	"an assistant": "un assistant",
 	"and": "et",
+	"and create a new shared link.": "",
 	"API Base URL": "URL de base de l'API",
 	"API Key": "Clé API",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "disponible !",
 	"Back": "Retour",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Mode Constructeur",
 	"Cancel": "Annuler",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Paramètres de bloc",
 	"Chunk Size": "Taille de bloc",
 	"Click here for help.": "Cliquez ici pour de l'aide.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Cliquez ici pour vérifier d'autres fichiers de modèle.",
 	"Click here to select": "Cliquez ici pour sélectionner",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Créez une phrase concise de 3 à 5 mots comme en-tête pour la requête suivante, en respectant strictement la limite de 3 à 5 mots et en évitant l'utilisation du mot 'titre' :",
 	"Create a modelfile": "Créer un fichier de modèle",
 	"Create Account": "Créer un compte",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Créé le",
 	"Created At": "",
 	"Current Model": "Modèle actuel",
@@ -105,6 +110,7 @@
 	"Custom": "Personnalisé",
 	"Customize Ollama models for a specific purpose": "Personnaliser les modèles Ollama pour un objectif spécifique",
 	"Dark": "Sombre",
+	"Dashboard": "",
 	"Database": "Base de données",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Par défaut",
@@ -120,6 +126,7 @@
 	"Delete chat": "Supprimer la discussion",
 	"Delete Chat": "",
 	"Delete Chats": "Supprimer les discussions",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} supprimé",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Entrez la séquence de fin",
 	"Enter Top K": "Entrez Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (p. ex. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Entrez votre adresse email",
 	"Enter Your Full Name": "Entrez votre nom complet",
 	"Enter Your Password": "Entrez votre mot de passe",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Gérer les modèles Ollama",
 	"Max Tokens": "Tokens maximaux",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé simultanément. Veuillez réessayer plus tard.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Nommez votre fichier de modèle",
 	"New Chat": "Nouvelle discussion",
 	"New Password": "Nouveau mot de passe",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Pas sûr de quoi ajouter ?",
 	"Not sure what to write? Switch to": "Pas sûr de quoi écrire ? Changez pour",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "ou",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Paramètres",
 	"Password": "Mot de passe",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Contenu du prompt",
 	"Prompt suggestions": "Suggestions de prompt",
 	"Prompts": "Prompts",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Tirer un modèle de Ollama.com",
 	"Pull Progress": "Progression du téléchargement",
 	"Query Params": "Paramètres de requête",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Notes de version",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Répéter les N derniers",
 	"Repeat Penalty": "Pénalité de répétition",
 	"Request Mode": "Mode de requête",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Rédigez une suggestion de prompt (p. ex. Qui êtes-vous ?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Rédigez un résumé en 50 mots qui résume [sujet ou mot-clé].",
 	"You": "You",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Vous êtes un assistant utile",
 	"You're now logged in.": "Vous êtes maintenant connecté.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Vous avez déjà un compte ?",
 	"an assistant": "un assistant",
 	"and": "et",
+	"and create a new shared link.": "",
 	"API Base URL": "URL de base de l'API",
 	"API Key": "Clé API",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "disponible !",
 	"Back": "Retour",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Mode Constructeur",
 	"Cancel": "Annuler",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Paramètres de bloc",
 	"Chunk Size": "Taille de bloc",
 	"Click here for help.": "Cliquez ici pour de l'aide.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Cliquez ici pour vérifier d'autres fichiers de modèle.",
 	"Click here to select": "Cliquez ici pour sélectionner",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Créez une phrase concise de 3-5 mots comme en-tête pour la requête suivante, en respectant strictement la limite de 3-5 mots et en évitant l'utilisation du mot 'titre' :",
 	"Create a modelfile": "Créer un fichier de modèle",
 	"Create Account": "Créer un compte",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Créé le",
 	"Created At": "",
 	"Current Model": "Modèle actuel",
@@ -105,6 +110,7 @@
 	"Custom": "Personnalisé",
 	"Customize Ollama models for a specific purpose": "Personnaliser les modèles Ollama pour un objectif spécifique",
 	"Dark": "Sombre",
+	"Dashboard": "",
 	"Database": "Base de données",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Par défaut",
@@ -120,6 +126,7 @@
 	"Delete chat": "Supprimer le chat",
 	"Delete Chat": "",
 	"Delete Chats": "Supprimer les chats",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} supprimé",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Entrez la séquence de fin",
 	"Enter Top K": "Entrez Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Entrez l'URL (p. ex. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Entrez votre email",
 	"Enter Your Full Name": "Entrez votre nom complet",
 	"Enter Your Password": "Entrez votre mot de passe",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Gérer les modèles Ollama",
 	"Max Tokens": "Tokens maximaux",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé simultanément. Veuillez réessayer plus tard.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Nommez votre fichier de modèle",
 	"New Chat": "Nouveau chat",
 	"New Password": "Nouveau mot de passe",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Vous ne savez pas quoi ajouter ?",
 	"Not sure what to write? Switch to": "Vous ne savez pas quoi écrire ? Basculer vers",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "ou",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Paramètres",
 	"Password": "Mot de passe",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Contenu du prompt",
 	"Prompt suggestions": "Suggestions de prompt",
 	"Prompts": "Prompts",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Tirer un modèle de Ollama.com",
 	"Pull Progress": "Progression du tirage",
 	"Query Params": "Paramètres de requête",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Notes de version",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Répéter les derniers N",
 	"Repeat Penalty": "Pénalité de répétition",
 	"Request Mode": "Mode de demande",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Écrivez un prompt (e.x. Qui est-tu ?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Ecrivez un résumé en 50 mots [sujet ou mot-clé]",
 	"You": "You",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Vous êtes un assistant utile",
 	"You're now logged in.": "Vous êtes maintenant connecté.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Hai già un account?",
 	"an assistant": "un assistente",
 	"and": "e",
+	"and create a new shared link.": "",
 	"API Base URL": "URL base API",
 	"API Key": "Chiave API",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "disponibile!",
 	"Back": "Indietro",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Modalità costruttore",
 	"Cancel": "Annulla",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Parametri chunk",
 	"Chunk Size": "Dimensione chunk",
 	"Click here for help.": "Clicca qui per aiuto.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Clicca qui per controllare altri file modello.",
 	"Click here to select": "Clicca qui per selezionare",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crea una frase concisa di 3-5 parole come intestazione per la seguente query, aderendo rigorosamente al limite di 3-5 parole ed evitando l'uso della parola 'titolo':",
 	"Create a modelfile": "Crea un file modello",
 	"Create Account": "Crea account",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Creato il",
 	"Created At": "",
 	"Current Model": "Modello corrente",
@@ -105,6 +110,7 @@
 	"Custom": "Personalizzato",
 	"Customize Ollama models for a specific purpose": "Personalizza i modelli Ollama per uno scopo specifico",
 	"Dark": "Scuro",
+	"Dashboard": "",
 	"Database": "Database",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Predefinito",
@@ -120,6 +126,7 @@
 	"Delete chat": "Elimina chat",
 	"Delete Chat": "",
 	"Delete Chats": "Elimina chat",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Eliminato {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Inserisci la sequenza di arresto",
 	"Enter Top K": "Inserisci Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Inserisci URL (ad esempio http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Inserisci la tua email",
 	"Enter Your Full Name": "Inserisci il tuo nome completo",
 	"Enter Your Password": "Inserisci la tua password",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Gestisci modelli Ollama",
 	"Max Tokens": "Max token",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "È possibile scaricare un massimo di 3 modelli contemporaneamente. Riprova più tardi.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Assegna un nome al tuo file modello",
 	"New Chat": "Nuova chat",
 	"New Password": "Nuova password",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Non sei sicuro di cosa aggiungere?",
 	"Not sure what to write? Switch to": "Non sei sicuro di cosa scrivere? Passa a",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "o",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Parametri",
 	"Password": "Password",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Contenuto del prompt",
 	"Prompt suggestions": "Suggerimenti prompt",
 	"Prompts": "Prompt",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Estrai un modello da Ollama.com",
 	"Pull Progress": "Avanzamento estrazione",
 	"Query Params": "Parametri query",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Note di rilascio",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Ripeti ultimi N",
 	"Repeat Penalty": "Penalità di ripetizione",
 	"Request Mode": "Modalità richiesta",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Scrivi un suggerimento per il prompt (ad esempio Chi sei?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Scrivi un riassunto in 50 parole che riassume [argomento o parola chiave].",
 	"You": "Tu",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Sei un assistente utile.",
 	"You're now logged in.": "Ora hai effettuato l'accesso.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "すでにアカウントをお持ちですか?",
 	"an assistant": "アシスタント",
 	"and": "および",
+	"and create a new shared link.": "",
 	"API Base URL": "API ベース URL",
 	"API Key": "API キー",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "利用可能!",
 	"Back": "戻る",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "ビルダーモード",
 	"Cancel": "キャンセル",
@@ -71,6 +73,7 @@
 	"Chunk Params": "チャンクパラメーター",
 	"Chunk Size": "チャンクサイズ",
 	"Click here for help.": "ヘルプについてはここをクリックしてください。",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "他のモデルファイルを確認するにはここをクリックしてください。",
 	"Click here to select": "選択するにはここをクリックしてください",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "次のクエリの見出しとして、3〜5語の簡潔なフレーズを作成してください。3〜5語の制限を厳守し、「タイトル」という単語の使用を避けてください。",
 	"Create a modelfile": "モデルファイルを作成",
 	"Create Account": "アカウントを作成",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "作成日時",
 	"Created At": "",
 	"Current Model": "現在のモデル",
@@ -105,6 +110,7 @@
 	"Custom": "カスタム",
 	"Customize Ollama models for a specific purpose": "特定の目的に合わせて Ollama モデルをカスタマイズ",
 	"Dark": "ダーク",
+	"Dashboard": "",
 	"Database": "データベース",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "デフォルト",
@@ -120,6 +126,7 @@
 	"Delete chat": "チャットを削除",
 	"Delete Chat": "",
 	"Delete Chats": "チャットを削除",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} を削除しました",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "ストップシーケンスを入力してください",
 	"Enter Top K": "トップ K を入力してください",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "URL を入力してください (例: http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "メールアドレスを入力してください",
 	"Enter Your Full Name": "フルネームを入力してください",
 	"Enter Your Password": "パスワードを入力してください",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Ollama モデルを管理",
 	"Max Tokens": "最大トークン数",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "同時にダウンロードできるモデルは最大 3 つです。後でもう一度お試しください。",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "ミロスタット",
 	"Mirostat Eta": "ミロスタット Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "モデルファイルに名前を付ける",
 	"New Chat": "新しいチャット",
 	"New Password": "新しいパスワード",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "何を追加すればよいかわからない?",
 	"Not sure what to write? Switch to": "何を書けばよいかわからない? 次に切り替える",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "または",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "パラメーター",
 	"Password": "パスワード",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "プロンプトの内容",
 	"Prompt suggestions": "プロンプトの提案",
 	"Prompts": "プロンプト",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Ollama.com からモデルをプル",
 	"Pull Progress": "プルの進行状況",
 	"Query Params": "クエリパラメーター",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "リリースノート",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "最後の N を繰り返す",
 	"Repeat Penalty": "繰り返しペナルティ",
 	"Request Mode": "リクエストモード",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "プロンプトの提案を書いてください (例: あなたは誰ですか?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[トピックまたはキーワード] を要約する 50 語の概要を書いてください。",
 	"You": "あなた",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "あなたは役に立つアシスタントです。",
 	"You're now logged in.": "ログインしました。",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "უკვე გაქვს ანგარიში?",
 	"an assistant": "ასისტენტი",
 	"and": "და",
+	"and create a new shared link.": "",
 	"API Base URL": "API საბაზისო URL",
 	"API Key": "API გასაღები",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "ხელმისაწვდომია!",
 	"Back": "უკან",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "მოდელის შექმნა",
 	"Cancel": "გაუქმება",
@@ -71,6 +73,7 @@
 	"Chunk Params": "გადახურვის პარამეტრები",
 	"Chunk Size": "გადახურვის ზომა",
 	"Click here for help.": "დახმარებისთვის, დააკლიკე აქ",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "სხვა მოდელური ფაილების სანახავად, დააკლიკე აქ",
 	"Click here to select": "ასარჩევად, დააკლიკე აქ",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "შექმენით მოკლე, 3-5 სიტყვიანი ფრაზა, როგორც სათაური თქვენი შემდეგი შეკითხვისთვის, მკაცრად დაიცავით 3-5 სიტყვის ლიმიტი და მოერიდეთ გამოიყენოთ სიტყვა „სათაური“.",
 	"Create a modelfile": "მოდელური ფაილის შექმნა",
 	"Create Account": "ანგარიშის შექმნა",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "შექმნილია",
 	"Created At": "",
 	"Current Model": "მიმდინარე მოდელი",
@@ -105,6 +110,7 @@
 	"Custom": "საკუთარი",
 	"Customize Ollama models for a specific purpose": "Ollama მოდელების დამუშავება სპეციფიური დანიშნულებისთვის",
 	"Dark": "მუქი",
+	"Dashboard": "",
 	"Database": "მონაცემთა ბაზა",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "დეფოლტი",
@@ -120,6 +126,7 @@
 	"Delete chat": "შეტყობინების წაშლა",
 	"Delete Chat": "",
 	"Delete Chats": "შეტყობინებების წაშლა",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} წაშლილია",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "შეიყვანეთ ტოპ თანმიმდევრობა",
 	"Enter Top K": "შეიყვანეთ Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "შეიყვანეთ მისამართი (მაგალითად http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "შეიყვანეთ თქვენი ელ-ფოსტა",
 	"Enter Your Full Name": "შეიყვანეთ თქვენი სრული სახელი",
 	"Enter Your Password": "შეიყვანეთ თქვენი პაროლი",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Ollama მოდელების მართვა",
 	"Max Tokens": "მაქსიმალური ტოკენები",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "მაქსიმუმ 3 მოდელის ჩამოტვირთვა შესაძლებელია ერთდროულად. Გთხოვთ სცადოთ მოგვიანებით.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "მიროსტატი",
 	"Mirostat Eta": "მიროსტატი ეტა",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "თქვენი მოდელური ფაილის სახელი",
 	"New Chat": "ახალი მიმოწერა",
 	"New Password": "ახალი პაროლი",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "არ იცი რა დაამატო?",
 	"Not sure what to write? Switch to": "არ იცი რა დაწერო? გადართვა:",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "ან",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "პარამეტრები",
 	"Password": "პაროლი",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "მოთხოვნის შინაარსი",
 	"Prompt suggestions": "მოთხოვნის რჩევები",
 	"Prompts": "მოთხოვნები",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Ollama.com იდან მოდელის გადაწერა ",
 	"Pull Progress": "პროგრესის გადაწერა",
 	"Query Params": "პარამეტრების ძიება",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Გამოშვების შენიშვნები",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "გაიმეორეთ ბოლო N",
 	"Repeat Penalty": "გაიმეორეთ პენალტი",
 	"Request Mode": "მოთხოვნის რეჟიმი",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "დაწერეთ მოკლე წინადადება (მაგ. ვინ ხარ?",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "დაწერეთ რეზიუმე 50 სიტყვით, რომელიც აჯამებს [თემას ან საკვანძო სიტყვას].",
 	"You": "თქვენ",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "თქვენ სასარგებლო ასისტენტი ხართ.",
 	"You're now logged in.": "თქვენ შესული ხართ.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "이미 계정이 있으신가요?",
 	"an assistant": "어시스턴트",
 	"and": "그리고",
+	"and create a new shared link.": "",
 	"API Base URL": "API 기본 URL",
 	"API Key": "API키",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "사용 가능!",
 	"Back": "뒤로가기",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "빌더 모드",
 	"Cancel": "취소",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Size",
 	"Click here for help.": "도움말을 보려면 여기를 클릭하세요.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "다른 모델파일을 확인하려면 여기를 클릭하세요.",
 	"Click here to select": "선택하려면 여기를 클릭하세요.",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "다음 질문에 대한 제목으로 간결한 3-5 단어 문구를 만드되 3-5 단어 제한을 엄격히 준수하고 'title' 단어 사용을 피하세요:",
 	"Create a modelfile": "모델파일 만들기",
 	"Create Account": "계정 만들기",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "생성일",
 	"Created At": "",
 	"Current Model": "현재 모델",
@@ -105,6 +110,7 @@
 	"Custom": "사용자 정의",
 	"Customize Ollama models for a specific purpose": "특정 목적으로 Ollama 모델 사용자 정의",
 	"Dark": "어두운",
+	"Dashboard": "",
 	"Database": "데이터베이스",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "기본값",
@@ -120,6 +126,7 @@
 	"Delete chat": "채팅 삭제",
 	"Delete Chat": "",
 	"Delete Chats": "채팅들 삭제",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} 삭제됨",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "중지 시퀀스 입력",
 	"Enter Top K": "Top K 입력",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "URL 입력(예: http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "이메일 입력",
 	"Enter Your Full Name": "전체 이름 입력",
 	"Enter Your Password": "비밀번호 입력",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Ollama 모델 관리",
 	"Max Tokens": "최대 토큰 수",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "최대 3개의 모델을 동시에 다운로드할 수 있습니다. 나중에 다시 시도하세요.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "모델파일 이름 지정",
 	"New Chat": "새 채팅",
 	"New Password": "새 비밀번호",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "추가할 것이 궁금하세요?",
 	"Not sure what to write? Switch to": "무엇을 쓸지 모르겠나요? 전환하세요.",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "또는",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "매개변수",
 	"Password": "비밀번호",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "프롬프트 내용",
 	"Prompt suggestions": "프롬프트 제안",
 	"Prompts": "프롬프트",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Ollama.com에서 모델 가져오기",
 	"Pull Progress": "가져오기 진행 상황",
 	"Query Params": "쿼리 매개변수",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "릴리스 노트",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "마지막 N 반복",
 	"Repeat Penalty": "반복 패널티",
 	"Request Mode": "요청 모드",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "프롬프트 제안 작성 (예: 당신은 누구인가요?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[주제 또는 키워드]에 대한 50단어 요약문 작성.",
 	"You": "당신",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "당신은 유용한 어시스턴트입니다.",
 	"You're now logged in.": "로그인되었습니다.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Heb je al een account?",
 	"an assistant": "een assistent",
 	"and": "en",
+	"and create a new shared link.": "",
 	"API Base URL": "API Base URL",
 	"API Key": "API Key",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "beschikbaar!",
 	"Back": "Terug",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Bouwer Modus",
 	"Cancel": "Annuleren",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Grootte",
 	"Click here for help.": "Klik hier voor help.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Klik hier om andere modelfiles te controleren.",
 	"Click here to select": "Klik hier om te selecteren",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Maak een beknopte, 3-5 woorden tellende zin als kop voor de volgende query, strikt aanhoudend aan de 3-5 woorden limiet en het vermijden van het gebruik van het woord 'titel':",
 	"Create a modelfile": "Maak een modelfile",
 	"Create Account": "Maak Account",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Gemaakt op",
 	"Created At": "",
 	"Current Model": "Huidig Model",
@@ -105,6 +110,7 @@
 	"Custom": "Aangepast",
 	"Customize Ollama models for a specific purpose": "Pas Ollama modellen aan voor een specifiek doel",
 	"Dark": "Donker",
+	"Dashboard": "",
 	"Database": "Database",
 	"DD/MM/YYYY HH:mm": "YYYY/MM/DD HH:mm",
 	"Default": "Standaard",
@@ -120,6 +126,7 @@
 	"Delete chat": "Verwijder chat",
 	"Delete Chat": "",
 	"Delete Chats": "Verwijder Chats",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} is verwijderd",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Zet stop sequentie",
 	"Enter Top K": "Voeg Top K toe",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Zet URL (Bijv. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Voer je Email in",
 	"Enter Your Full Name": "Voer je Volledige Naam in",
 	"Enter Your Password": "Voer je Wachtwoord in",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Beheer Ollama Modellen",
 	"Max Tokens": "Max Tokens",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximaal 3 modellen kunnen tegelijkertijd worden gedownload. Probeer het later opnieuw.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Benoem je modelfile",
 	"New Chat": "Nieuwe Chat",
 	"New Password": "Nieuw Wachtwoord",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Niet zeker wat toe te voegen?",
 	"Not sure what to write? Switch to": "Niet zeker wat te schrijven? Schakel over naar",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "of",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Parameters",
 	"Password": "Wachtwoord",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Prompt Inhoud",
 	"Prompt suggestions": "Prompt suggesties",
 	"Prompts": "Prompts",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Haal een model van Ollama.com",
 	"Pull Progress": "Haal Voortgang op",
 	"Query Params": "Query Params",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Release Notes",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Herhaal Laatste N",
 	"Repeat Penalty": "Herhaal Straf",
 	"Request Mode": "Request Modus",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Schrijf een prompt suggestie (bijv. Wie ben je?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Schrijf een samenvatting in 50 woorden die [onderwerp of trefwoord] samenvat.",
 	"You": "Jij",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Jij bent een behulpzame assistent.",
 	"You're now logged in.": "Je bent nu ingelogd.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Masz już konto?",
 	"an assistant": "asystent",
 	"and": "i",
+	"and create a new shared link.": "",
 	"API Base URL": "Podstawowy adres URL interfejsu API",
 	"API Key": "Klucz API",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "dostępny!",
 	"Back": "Wstecz",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Tryb budowniczego",
 	"Cancel": "Anuluj",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Parametry bloku",
 	"Chunk Size": "Rozmiar bloku",
 	"Click here for help.": "Kliknij tutaj, aby uzyskać pomoc.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Kliknij tutaj, aby sprawdzić inne pliki modelowe.",
 	"Click here to select": "Kliknij tutaj, aby wybrać",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Utwórz zwięzłą frazę składającą się z 3-5 słów jako nagłówek dla następującego zapytania, ściśle przestrzegając limitu od 3 do 5 słów i unikając użycia słowa 'tytuł':",
 	"Create a modelfile": "Utwórz plik modelu",
 	"Create Account": "Utwórz konto",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Utworzono o",
 	"Created At": "",
 	"Current Model": "Bieżący model",
@@ -105,6 +110,7 @@
 	"Custom": "Niestandardowy",
 	"Customize Ollama models for a specific purpose": "Dostosuj modele Ollama do określonego celu",
 	"Dark": "Ciemny",
+	"Dashboard": "",
 	"Database": "Baza danych",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Domyślny",
@@ -120,6 +126,7 @@
 	"Delete chat": "Usuń czat",
 	"Delete Chat": "",
 	"Delete Chats": "Usuń czaty",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Usunięto {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Wprowadź sekwencję zatrzymania",
 	"Enter Top K": "Wprowadź Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Wprowadź adres URL (np. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Wprowadź swój adres email",
 	"Enter Your Full Name": "Wprowadź swoje imię i nazwisko",
 	"Enter Your Password": "Wprowadź swoje hasło",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Zarządzaj modelami Ollama",
 	"Max Tokens": "Maksymalna liczba tokenów",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksymalnie 3 modele można pobierać jednocześnie. Spróbuj ponownie później.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Nadaj nazwę swojemu plikowi modelu",
 	"New Chat": "Nowy czat",
 	"New Password": "Nowe hasło",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Nie wiesz, co dodać?",
 	"Not sure what to write? Switch to": "Nie wiesz, co napisać? Przełącz się na",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "lub",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Parametry",
 	"Password": "Hasło",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Zawartość prompta",
 	"Prompt suggestions": "Sugestie prompta",
 	"Prompts": "Prompty",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Pobierz model z Ollama.com",
 	"Pull Progress": "Postęp pobierania",
 	"Query Params": "Parametry zapytania",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Notatki wydania",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Powtórz ostatnie N",
 	"Repeat Penalty": "Kara za powtórzenie",
 	"Request Mode": "Tryb żądania",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Napisz sugestię do polecenia (np. Kim jesteś?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Napisz podsumowanie w 50 słowach, które podsumowuje [temat lub słowo kluczowe].",
 	"You": "Ty",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Jesteś pomocnym asystentem.",
 	"You're now logged in.": "Jesteś teraz zalogowany.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Já tem uma conta?",
 	"an assistant": "um assistente",
 	"and": "e",
+	"and create a new shared link.": "",
 	"API Base URL": "URL Base da API",
 	"API Key": "Chave da API",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "disponível!",
 	"Back": "Voltar",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Modo de Construtor",
 	"Cancel": "Cancelar",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Parâmetros de Fragmento",
 	"Chunk Size": "Tamanho do Fragmento",
 	"Click here for help.": "Clique aqui para obter ajuda.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Clique aqui para verificar outros arquivos de modelo.",
 	"Click here to select": "Clique aqui para selecionar",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crie uma frase concisa de 3 a 5 palavras como cabeçalho para a seguinte consulta, aderindo estritamente ao limite de 3 a 5 palavras e evitando o uso da palavra 'título':",
 	"Create a modelfile": "Criar um arquivo de modelo",
 	"Create Account": "Criar Conta",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Criado em",
 	"Created At": "",
 	"Current Model": "Modelo Atual",
@@ -105,6 +110,7 @@
 	"Custom": "Personalizado",
 	"Customize Ollama models for a specific purpose": "Personalize os modelos Ollama para um propósito específico",
 	"Dark": "Escuro",
+	"Dashboard": "",
 	"Database": "Banco de dados",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Padrão",
@@ -120,6 +126,7 @@
 	"Delete chat": "Excluir bate-papo",
 	"Delete Chat": "",
 	"Delete Chats": "Excluir Bate-papos",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} excluído",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Digite a sequência de parada",
 	"Enter Top K": "Digite o Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Digite seu E-mail",
 	"Enter Your Full Name": "Digite seu Nome Completo",
 	"Enter Your Password": "Digite sua Senha",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Gerenciar Modelos Ollama",
 	"Max Tokens": "Máximo de Tokens",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Máximo de 3 modelos podem ser baixados simultaneamente. Tente novamente mais tarde.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Nomeie seu arquivo de modelo",
 	"New Chat": "Novo Bate-papo",
 	"New Password": "Nova Senha",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Não tem certeza do que adicionar?",
 	"Not sure what to write? Switch to": "Não tem certeza do que escrever? Mude para",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "ou",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Parâmetros",
 	"Password": "Senha",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Conteúdo do Prompt",
 	"Prompt suggestions": "Sugestões de Prompt",
 	"Prompts": "Prompts",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Extrair um modelo do Ollama.com",
 	"Pull Progress": "Progresso da Extração",
 	"Query Params": "Parâmetros de Consulta",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Notas de Lançamento",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Repetir Últimos N",
 	"Repeat Penalty": "Penalidade de Repetição",
 	"Request Mode": "Modo de Solicitação",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem é você?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
 	"You": "Você",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Você é um assistente útil.",
 	"You're now logged in.": "Você está conectado agora.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Já tem uma conta?",
 	"an assistant": "um assistente",
 	"and": "e",
+	"and create a new shared link.": "",
 	"API Base URL": "URL Base da API",
 	"API Key": "Chave da API",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "disponível!",
 	"Back": "Voltar",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Modo de Construtor",
 	"Cancel": "Cancelar",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Parâmetros de Fragmento",
 	"Chunk Size": "Tamanho do Fragmento",
 	"Click here for help.": "Clique aqui para obter ajuda.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Clique aqui para verificar outros arquivos de modelo.",
 	"Click here to select": "Clique aqui para selecionar",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Crie uma frase concisa de 3 a 5 palavras como cabeçalho para a seguinte consulta, aderindo estritamente ao limite de 3 a 5 palavras e evitando o uso da palavra 'título':",
 	"Create a modelfile": "Criar um arquivo de modelo",
 	"Create Account": "Criar Conta",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Criado em",
 	"Created At": "",
 	"Current Model": "Modelo Atual",
@@ -105,6 +110,7 @@
 	"Custom": "Personalizado",
 	"Customize Ollama models for a specific purpose": "Personalize os modelos Ollama para um propósito específico",
 	"Dark": "Escuro",
+	"Dashboard": "",
 	"Database": "Banco de dados",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Padrão",
@@ -120,6 +126,7 @@
 	"Delete chat": "Excluir bate-papo",
 	"Delete Chat": "",
 	"Delete Chats": "Excluir Bate-papos",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} excluído",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Digite a sequência de parada",
 	"Enter Top K": "Digite o Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Digite a URL (por exemplo, http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Digite seu E-mail",
 	"Enter Your Full Name": "Digite seu Nome Completo",
 	"Enter Your Password": "Digite sua Senha",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Gerenciar Modelos Ollama",
 	"Max Tokens": "Máximo de Tokens",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Máximo de 3 modelos podem ser baixados simultaneamente. Tente novamente mais tarde.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Nomeie seu arquivo de modelo",
 	"New Chat": "Novo Bate-papo",
 	"New Password": "Nova Senha",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Não tem certeza do que adicionar?",
 	"Not sure what to write? Switch to": "Não tem certeza do que escrever? Mude para",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "ou",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Parâmetros",
 	"Password": "Senha",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Conteúdo do Prompt",
 	"Prompt suggestions": "Sugestões de Prompt",
 	"Prompts": "Prompts",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Extrair um modelo do Ollama.com",
 	"Pull Progress": "Progresso da Extração",
 	"Query Params": "Parâmetros de Consulta",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Notas de Lançamento",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Repetir Últimos N",
 	"Repeat Penalty": "Penalidade de Repetição",
 	"Request Mode": "Modo de Solicitação",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem é você?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
 	"You": "Você",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Você é um assistente útil.",
 	"You're now logged in.": "Você está conectado agora.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "у вас уже есть аккаунт?",
 	"an assistant": "ассистент",
 	"and": "и",
+	"and create a new shared link.": "",
 	"API Base URL": "Базовый адрес API",
 	"API Key": "Ключ API",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "доступный!",
 	"Back": "Назад",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Режим конструктор",
 	"Cancel": "Аннулировать",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Параметры фрагментов",
 	"Chunk Size": "Размер фрагмента",
 	"Click here for help.": "Нажмите здесь для помощь.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Нажмите тут чтобы проверить другие файлы моделей.",
 	"Click here to select": "Нажмите тут чтобы выберите",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "",
 	"Create a modelfile": "Создать модельный файл",
 	"Create Account": "Создать аккаунт",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Создано в",
 	"Created At": "",
 	"Current Model": "Текущая модель",
@@ -105,6 +110,7 @@
 	"Custom": "Пользовательский",
 	"Customize Ollama models for a specific purpose": "Настроить модели Ollama для конкретной цели",
 	"Dark": "Тёмный",
+	"Dashboard": "",
 	"Database": "База данных",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "По умолчанию",
@@ -120,6 +126,7 @@
 	"Delete chat": "Удалить чат",
 	"Delete Chat": "",
 	"Delete Chats": "Удалить чаты",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Удалено {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Введите последовательность остановки",
 	"Enter Top K": "Введите Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Введите URL-адрес (например, http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Введите вашу электронную почту",
 	"Enter Your Full Name": "Введите ваше полное имя",
 	"Enter Your Password": "Введите ваш пароль",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Управление моделями Ollama",
 	"Max Tokens": "Максимальное количество токенов",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимальное количество моделей для загрузки одновременно - 3. Пожалуйста, попробуйте позже.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Назовите свой файл модели",
 	"New Chat": "Новый чат",
 	"New Password": "Новый пароль",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Не уверены, что добавить?",
 	"Not sure what to write? Switch to": "Не уверены, что написать? Переключитесь на",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "или",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Параметры",
 	"Password": "Пароль",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Содержание промпта",
 	"Prompt suggestions": "Предложения промптов",
 	"Prompts": "Промпты",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Загрузить модель с Ollama.com",
 	"Pull Progress": "Прогресс загрузки",
 	"Query Params": "Параметры запроса",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Примечания к выпуску",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Повторить последние N",
 	"Repeat Penalty": "Штраф за повтор",
 	"Request Mode": "Режим запроса",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишите предложение промпта (например, Кто вы?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишите резюме в 50 словах, которое кратко описывает [тему или ключевое слово].",
 	"You": "Вы",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Вы полезный ассистент.",
 	"You're now logged in.": "Вы вошли в систему.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Har du redan ett konto?",
 	"an assistant": "en assistent",
 	"and": "och",
+	"and create a new shared link.": "",
 	"API Base URL": "API-bas-URL",
 	"API Key": "API-nyckel",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "tillgänglig!",
 	"Back": "Tillbaka",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Byggarläge",
 	"Cancel": "Avbryt",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Chunk-parametrar",
 	"Chunk Size": "Chunk-storlek",
 	"Click here for help.": "Klicka här för hjälp.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Klicka här för att kontrollera andra modelfiler.",
 	"Click here to select": "Klicka här för att välja",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Skapa en kort, 3-5 ords fras som rubrik för följande fråga, strikt följa 3-5 ordsgränsen och undvika användning av ordet 'titel':",
 	"Create a modelfile": "Skapa en modelfil",
 	"Create Account": "Skapa konto",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Skapad",
 	"Created At": "",
 	"Current Model": "Aktuell modell",
@@ -105,6 +110,7 @@
 	"Custom": "Anpassad",
 	"Customize Ollama models for a specific purpose": "Anpassa Ollama-modeller för ett specifikt ändamål",
 	"Dark": "Mörk",
+	"Dashboard": "",
 	"Database": "Databas",
 	"DD/MM/YYYY HH:mm": "DD/MM/ÅÅÅÅ TT:mm",
 	"Default": "Standard",
@@ -120,6 +126,7 @@
 	"Delete chat": "Radera chatt",
 	"Delete Chat": "",
 	"Delete Chats": "Radera chattar",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Raderad {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Ange stoppsekvens",
 	"Enter Top K": "Ange Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Ange URL (t.ex. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Ange din e-post",
 	"Enter Your Full Name": "Ange ditt fullständiga namn",
 	"Enter Your Password": "Ange ditt lösenord",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Hantera Ollama-modeller",
 	"Max Tokens": "Max antal tokens",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Högst 3 modeller kan laddas ner samtidigt. Vänligen försök igen senare.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Namnge din modelfil",
 	"New Chat": "Ny chatt",
 	"New Password": "Nytt lösenord",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Inte säker på vad du ska lägga till?",
 	"Not sure what to write? Switch to": "Inte säker på vad du ska skriva? Växla till",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "eller",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Parametrar",
 	"Password": "Lösenord",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Promptinnehåll",
 	"Prompt suggestions": "Förslag",
 	"Prompts": "Prompts",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Dra en modell från Ollama.com",
 	"Pull Progress": "Dra framsteg",
 	"Query Params": "Frågeparametrar",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Versionsinformation",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Upprepa senaste N",
 	"Repeat Penalty": "Upprepa straff",
 	"Request Mode": "Begär läge",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Skriv ett förslag (t.ex. Vem är du?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Skriv en sammanfattning på 50 ord som sammanfattar [ämne eller nyckelord].",
 	"You": "Du",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Du är en hjälpsam assistent.",
 	"You're now logged in.": "Du är nu inloggad.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Zaten bir hesabınız mı var?",
 	"an assistant": "bir asistan",
 	"and": "ve",
+	"and create a new shared link.": "",
 	"API Base URL": "API Temel URL",
 	"API Key": "API Anahtarı",
 	"API Key created.": "API Anahtarı oluşturuldu.",
@@ -54,6 +55,7 @@
 	"available!": "mevcut!",
 	"Back": "Geri",
 	"Bad Response": "Kötü Yanıt",
+	"before": "",
 	"Being lazy": "Tembelleşiyor",
 	"Builder Mode": "Oluşturucu Modu",
 	"Cancel": "İptal",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Chunk Parametreleri",
 	"Chunk Size": "Chunk Boyutu",
 	"Click here for help.": "Yardım için buraya tıklayın.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Diğer model dosyalarını kontrol etmek için buraya tıklayın.",
 	"Click here to select": "Seçmek için buraya tıklayın",
 	"Click here to select a csv file.": "Bir CSV dosyası seçmek için buraya tıklayın.",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Aşağıdaki sorgu için başlık olarak 3-5 kelimelik kısa ve öz bir ifade oluşturun, 3-5 kelime sınırına kesinlikle uyun ve 'başlık' kelimesini kullanmaktan kaçının:",
 	"Create a modelfile": "Bir model dosyası oluştur",
 	"Create Account": "Hesap Oluştur",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Oluşturulma tarihi",
 	"Created At": "Şu Tarihte Oluşturuldu:",
 	"Current Model": "Mevcut Model",
@@ -105,6 +110,7 @@
 	"Custom": "Özel",
 	"Customize Ollama models for a specific purpose": "Ollama modellerini belirli bir amaç için özelleştirin",
 	"Dark": "Koyu",
+	"Dashboard": "",
 	"Database": "Veritabanı",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Varsayılan",
@@ -120,6 +126,7 @@
 	"Delete chat": "Sohbeti sil",
 	"Delete Chat": "Sohbeti Sil",
 	"Delete Chats": "Sohbetleri Sil",
+	"delete this link": "",
 	"Delete User": "Kullanıcıyı Sil",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} silindi",
 	"Deleted {{tagName}}": "{{tagName}} silindi",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Durdurma dizisini girin",
 	"Enter Top K": "Top K'yı girin",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "URL'yi Girin (örn. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "E-postanızı Girin",
 	"Enter Your Full Name": "Tam Adınızı Girin",
 	"Enter Your Password": "Parolanızı Girin",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Ollama Modellerini Yönet",
 	"Max Tokens": "Maksimum Token",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Aynı anda en fazla 3 model indirilebilir. Lütfen daha sonra tekrar deneyin.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "Minimum Skor",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Model dosyanıza ad verin",
 	"New Chat": "Yeni Sohbet",
 	"New Password": "Yeni Parola",
+	"No results found": "",
 	"Not factually correct": "Gerçeklere göre doğru değil",
 	"Not sure what to add?": "Ne ekleyeceğinizden emin değil misiniz?",
 	"Not sure what to write? Switch to": "Ne yazacağınızdan emin değil misiniz? Şuraya geçin",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "OpenAI URL/Anahtar gereklidir.",
 	"or": "veya",
 	"Other": "Diğer",
+	"Overview": "",
 	"Parameters": "Parametreler",
 	"Password": "Parola",
 	"PDF document (.pdf)": "PDF belgesi (.pdf)",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Prompt İçeriği",
 	"Prompt suggestions": "Prompt önerileri",
 	"Prompts": "Promptlar",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Ollama.com'dan bir model çekin",
 	"Pull Progress": "Çekme İlerlemesi",
 	"Query Params": "Sorgu Parametreleri",
@@ -312,6 +324,8 @@
 	"Regenerate": "Tekrar Oluştur",
 	"Release Notes": "Sürüm Notları",
 	"Remove": "Kaldır",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Son N'yi Tekrar Et",
 	"Repeat Penalty": "Tekrar Cezası",
 	"Request Mode": "İstek Modu",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Bir prompt önerisi yazın (örn. Sen kimsin?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[Konuyu veya anahtar kelimeyi] özetleyen 50 kelimelik bir özet yazın.",
 	"You": "Siz",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Sen yardımcı bir asistansın.",
 	"You're now logged in.": "Şimdi oturum açtınız.",
 	"Youtube": "Youtube"

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Вже є обліковий запис?",
 	"an assistant": "асистента",
 	"and": "та",
+	"and create a new shared link.": "",
 	"API Base URL": "Базова адреса URL API",
 	"API Key": "Ключ API",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "доступно!",
 	"Back": "Назад",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "Режим конструктора",
 	"Cancel": "Скасувати",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Параметри фрагментів",
 	"Chunk Size": "Розмір фрагменту",
 	"Click here for help.": "Клацніть тут, щоб отримати допомогу.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Клацніть тут, щоб перевірити інші файли моделей.",
 	"Click here to select": "Натисніть тут, щоб вибрати",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':",
 	"Create a modelfile": "Створити файл моделі",
 	"Create Account": "Створити обліковий запис",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Створено",
 	"Created At": "",
 	"Current Model": "Поточна модель",
@@ -105,6 +110,7 @@
 	"Custom": "Налаштувати",
 	"Customize Ollama models for a specific purpose": "Налаштувати моделі Ollama для конкретної мети",
 	"Dark": "Темна",
+	"Dashboard": "",
 	"Database": "База даних",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "За замовчуванням",
@@ -120,6 +126,7 @@
 	"Delete chat": "Видалити чат",
 	"Delete Chat": "",
 	"Delete Chats": "Видалити чати",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Видалено {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Введіть символ зупинки",
 	"Enter Top K": "Введіть Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Введіть URL-адресу (напр. http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Введіть вашу електронну пошту",
 	"Enter Your Full Name": "Введіть ваше ім'я",
 	"Enter Your Password": "Введіть ваш пароль",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Керування моделями Ollama",
 	"Max Tokens": "Максимальна кількість токенів",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимум 3 моделі можна завантажити одночасно. Будь ласка, спробуйте пізніше.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Назвіть свій файл моделі",
 	"New Chat": "Новий чат",
 	"New Password": "Новий пароль",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "Не впевнений, що додати?",
 	"Not sure what to write? Switch to": "Не впевнений, що писати? Переключитися на",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "або",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "Параметри",
 	"Password": "Пароль",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Зміст промту",
 	"Prompt suggestions": "Швидкі промти",
 	"Prompts": "Промти",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Завантажити модель з Ollama.com",
 	"Pull Progress": "Прогрес завантаження",
 	"Query Params": "Параметри запиту",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Нотатки до випуску",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Повторити останні N",
 	"Repeat Penalty": "Штраф за повторення",
 	"Request Mode": "Режим запиту",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишіть промт (напр. Хто ти?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишіть стислий зміст у 50 слів, який узагальнює [тема або ключове слово].",
 	"You": "Ви",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Ви корисний асистент.",
 	"You're now logged in.": "Ви увійшли в систему.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "Bạn đã có tài khoản?",
 	"an assistant": "trợ lý",
 	"and": "và",
+	"and create a new shared link.": "",
 	"API Base URL": "Đường dẫn tới API (API Base URL)",
 	"API Key": "API Key",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "có sẵn!",
 	"Back": "Quay lại",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "Lười biếng",
 	"Builder Mode": "Chế độ Builder",
 	"Cancel": "Hủy bỏ",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Cài đặt số lượng ký tự cho khối ký tự (chunk)",
 	"Chunk Size": "Kích thước khối (size)",
 	"Click here for help.": "Bấm vào đây để được trợ giúp.",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "Bấm vào đây để kiểm tra các tệp mô tả mô hình (modelfiles) khác.",
 	"Click here to select": "Bấm vào đây để chọn",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "Tạo một cụm từ súc tích, 3-5 từ làm tiêu đề cho truy vấn sau, tuân thủ nghiêm ngặt giới hạn 3-5 từ và tránh sử dụng từ 'tiêu đề':",
 	"Create a modelfile": "Tạo tệp mô tả cho mô hình",
 	"Create Account": "Tạo Tài khoản",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "Được tạo vào lúc",
 	"Created At": "",
 	"Current Model": "Mô hình hiện tại",
@@ -105,6 +110,7 @@
 	"Custom": "Tùy chỉnh",
 	"Customize Ollama models for a specific purpose": "Tùy chỉnh các mô hình dựa trên Ollama cho một mục đích cụ thể",
 	"Dark": "Tối",
+	"Dashboard": "",
 	"Database": "Cơ sở dữ liệu",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "Mặc định",
@@ -120,6 +126,7 @@
 	"Delete chat": "Xóa nội dung chat",
 	"Delete Chat": "",
 	"Delete Chats": "Xóa nội dung chat",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Đã xóa {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "Nhập stop sequence",
 	"Enter Top K": "Nhập Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "Nhập URL (vd: http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "Nhập Email của bạn",
 	"Enter Your Full Name": "Nhập Họ và Tên của bạn",
 	"Enter Your Password": "Nhập Mật khẩu của bạn",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "Quản lý mô hình với Ollama",
 	"Max Tokens": "Max Tokens",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Tối đa 3 mô hình có thể được tải xuống cùng lúc. Vui lòng thử lại sau.",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "Đặt tên cho tệp mô hình của bạn",
 	"New Chat": "Tạo cuộc trò chuyện mới",
 	"New Password": "Mật khẩu mới",
+	"No results found": "",
 	"Not factually correct": "Không chính xác so với thực tế",
 	"Not sure what to add?": "Không chắc phải thêm gì?",
 	"Not sure what to write? Switch to": "Không chắc phải viết gì? Chuyển sang",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "hoặc",
 	"Other": "Khác",
+	"Overview": "",
 	"Parameters": "Tham số",
 	"Password": "Mật khẩu",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "Nội dung prompt",
 	"Prompt suggestions": "Gợi ý prompt",
 	"Prompts": "Prompt",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "Tải mô hình từ Ollama.com",
 	"Pull Progress": "Tiến trình Tải xuống",
 	"Query Params": "Tham số Truy vấn",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "Mô tả những cập nhật mới",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "Repeat Last N",
 	"Repeat Penalty": "Repeat Penalty",
 	"Request Mode": "Request Mode",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "Hãy viết một prompt (vd: Bạn là ai?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Viết một tóm tắt trong vòng 50 từ cho [chủ đề hoặc từ khóa].",
 	"You": "Bạn",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "Bạn là một trợ lý hữu ích.",
 	"You're now logged in.": "Bạn đã đăng nhập.",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "已经有账户了吗?",
 	"an assistant": "助手",
 	"and": "和",
+	"and create a new shared link.": "",
 	"API Base URL": "API 基础 URL",
 	"API Key": "API 密钥",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "可用!",
 	"Back": "返回",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "构建模式",
 	"Cancel": "取消",
@@ -71,6 +73,7 @@
 	"Chunk Params": "块参数(Chunk Params)",
 	"Chunk Size": "块大小(Chunk Size)",
 	"Click here for help.": "点击这里获取帮助。",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "点击这里检查其他模型文件。",
 	"Click here to select": "点击这里选择",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "为以下查询创建一个简洁的、3-5个词的短语作为标题,严格遵守3-5个词的限制并避免使用“标题”一词:",
 	"Create a modelfile": "创建模型文件",
 	"Create Account": "创建账户",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "创建于",
 	"Created At": "",
 	"Current Model": "当前模型",
@@ -105,6 +110,7 @@
 	"Custom": "自定义",
 	"Customize Ollama models for a specific purpose": "定制特定用途的Ollama模型",
 	"Dark": "暗色",
+	"Dashboard": "",
 	"Database": "数据库",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "默认",
@@ -120,6 +126,7 @@
 	"Delete chat": "删除聊天",
 	"Delete Chat": "",
 	"Delete Chats": "删除聊天记录",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "已删除{{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "输入停止序列",
 	"Enter Top K": "输入 Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "输入 URL (例如 http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "输入您的电子邮件",
 	"Enter Your Full Name": "输入您的全名",
 	"Enter Your Password": "输入您的密码",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "管理Ollama模型",
 	"Max Tokens": "最大令牌数",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "最多可以同时下载3个模型,请稍后重试。",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "命名你的模型文件",
 	"New Chat": "新聊天",
 	"New Password": "新密码",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "不确定要添加什么?",
 	"Not sure what to write? Switch to": "不确定写什么?切换到",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "或",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "参数",
 	"Password": "密码",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "提示词内容",
 	"Prompt suggestions": "提示词建议",
 	"Prompts": "提示词",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "从 Ollama.com 拉取一个模型",
 	"Pull Progress": "拉取进度",
 	"Query Params": "查询参数",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "发布说明",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "重复最后 N 次",
 	"Repeat Penalty": "重复惩罚",
 	"Request Mode": "请求模式",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "写一个提示建议(例如:你是谁?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "用50个字写一个总结[主题或关键词]。",
 	"You": "你",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "你是一个有帮助的助手。",
 	"You're now logged in.": "已登录。",
 	"Youtube": ""

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

@@ -35,6 +35,7 @@
 	"Already have an account?": "已經有帳號了嗎?",
 	"an assistant": "助手",
 	"and": "和",
+	"and create a new shared link.": "",
 	"API Base URL": "API 基本 URL",
 	"API Key": "API 金鑰",
 	"API Key created.": "",
@@ -54,6 +55,7 @@
 	"available!": "可以使用!",
 	"Back": "返回",
 	"Bad Response": "",
+	"before": "",
 	"Being lazy": "",
 	"Builder Mode": "建構模式",
 	"Cancel": "取消",
@@ -71,6 +73,7 @@
 	"Chunk Params": "Chunk 參數",
 	"Chunk Size": "Chunk 大小",
 	"Click here for help.": "點擊這裡尋找幫助。",
+	"Click here to": "",
 	"Click here to check other modelfiles.": "點擊這裡檢查其他 Modelfiles。",
 	"Click here to select": "點擊這裡選擇",
 	"Click here to select a csv file.": "",
@@ -98,6 +101,8 @@
 	"Create a concise, 3-5 word phrase as a header for the following query, strictly adhering to the 3-5 word limit and avoiding the use of the word 'title':": "為以下的查詢建立一個簡潔、3-5 個詞的短語作為標題,嚴格遵守 3-5 個詞的限制,避免使用「標題」這個詞:",
 	"Create a modelfile": "建立 Modelfile",
 	"Create Account": "建立帳號",
+	"Create new key": "",
+	"Create new secret key": "",
 	"Created at": "建立於",
 	"Created At": "",
 	"Current Model": "目前模型",
@@ -105,6 +110,7 @@
 	"Custom": "自訂",
 	"Customize Ollama models for a specific purpose": "定制特定用途的 Ollama 模型",
 	"Dark": "暗色",
+	"Dashboard": "",
 	"Database": "資料庫",
 	"DD/MM/YYYY HH:mm": "DD/MM/YYYY HH:mm",
 	"Default": "預設",
@@ -120,6 +126,7 @@
 	"Delete chat": "刪除聊天紀錄",
 	"Delete Chat": "",
 	"Delete Chats": "刪除聊天紀錄",
+	"delete this link": "",
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "已刪除 {{deleteModelTag}}",
 	"Deleted {{tagName}}": "",
@@ -167,6 +174,7 @@
 	"Enter stop sequence": "輸入停止序列",
 	"Enter Top K": "輸入 Top K",
 	"Enter URL (e.g. http://127.0.0.1:7860/)": "輸入 URL(例如 http://127.0.0.1:7860/)",
+	"Enter URL (e.g. http://localhost:11434)": "",
 	"Enter Your Email": "輸入你的電子郵件",
 	"Enter Your Full Name": "輸入你的全名",
 	"Enter Your Password": "輸入你的密碼",
@@ -228,6 +236,7 @@
 	"Manage Ollama Models": "管理 Ollama 模型",
 	"Max Tokens": "最大 Token 數",
 	"Maximum of 3 models can be downloaded simultaneously. Please try again later.": "最多可以同時下載 3 個模型。請稍後再試。",
+	"Messages you send after creating your link won't be shared. Users with the URL will beable to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
 	"Mirostat Eta": "Mirostat Eta",
@@ -258,6 +267,7 @@
 	"Name your modelfile": "命名你的 Modelfile",
 	"New Chat": "新增聊天",
 	"New Password": "新密碼",
+	"No results found": "",
 	"Not factually correct": "",
 	"Not sure what to add?": "不確定要新增什麼嗎?",
 	"Not sure what to write? Switch to": "不確定要寫什麼?切換到",
@@ -286,6 +296,7 @@
 	"OpenAI URL/Key required.": "",
 	"or": "或",
 	"Other": "",
+	"Overview": "",
 	"Parameters": "參數",
 	"Password": "密碼",
 	"PDF document (.pdf)": "",
@@ -300,6 +311,7 @@
 	"Prompt Content": "提示詞內容",
 	"Prompt suggestions": "提示詞建議",
 	"Prompts": "提示詞",
+	"Pull \"{{searchValue}}\" from Ollama.com": "",
 	"Pull a model from Ollama.com": "從 Ollama.com 下載模型",
 	"Pull Progress": "下載進度",
 	"Query Params": "查詢參數",
@@ -312,6 +324,8 @@
 	"Regenerate": "",
 	"Release Notes": "發布說明",
 	"Remove": "",
+	"Remove Model": "",
+	"Rename": "",
 	"Repeat Last N": "重複最後 N 次",
 	"Repeat Penalty": "重複懲罰",
 	"Request Mode": "請求模式",
@@ -441,6 +455,8 @@
 	"Write a prompt suggestion (e.g. Who are you?)": "寫一個提示詞建議(例如:你是誰?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "寫一個50字的摘要來概括[主題或關鍵詞]。",
 	"You": "你",
+	"You have no archived conversations.": "",
+	"You have shared this chat": "",
 	"You're a helpful assistant.": "你是一位善於協助他人的助手。",
 	"You're now logged in.": "已登入。",
 	"Youtube": ""