Browse Source

Add toasts i18n key

SimonOriginal 10 months ago
parent
commit
9c81d84e16
44 changed files with 496 additions and 15 deletions
  1. 6 6
      src/lib/components/admin/Settings/Pipelines.svelte
  2. 1 1
      src/lib/components/chat/Settings/Personalization/AddMemoryModal.svelte
  3. 1 1
      src/lib/components/chat/Settings/Personalization/EditMemoryModal.svelte
  4. 2 2
      src/lib/components/chat/Settings/Personalization/ManageModal.svelte
  5. 2 2
      src/lib/components/workspace/Functions.svelte
  6. 2 2
      src/lib/components/workspace/Tools.svelte
  7. 1 1
      src/lib/components/workspace/common/ValvesModal.svelte
  8. 13 0
      src/lib/i18n/locales/ar-BH/translation.json
  9. 13 0
      src/lib/i18n/locales/bg-BG/translation.json
  10. 13 0
      src/lib/i18n/locales/bn-BD/translation.json
  11. 13 0
      src/lib/i18n/locales/ca-ES/translation.json
  12. 13 0
      src/lib/i18n/locales/ceb-PH/translation.json
  13. 13 0
      src/lib/i18n/locales/de-DE/translation.json
  14. 13 0
      src/lib/i18n/locales/dg-DG/translation.json
  15. 13 0
      src/lib/i18n/locales/en-GB/translation.json
  16. 13 0
      src/lib/i18n/locales/en-US/translation.json
  17. 13 0
      src/lib/i18n/locales/es-ES/translation.json
  18. 13 0
      src/lib/i18n/locales/fa-IR/translation.json
  19. 13 0
      src/lib/i18n/locales/fi-FI/translation.json
  20. 13 0
      src/lib/i18n/locales/fr-CA/translation.json
  21. 13 0
      src/lib/i18n/locales/fr-FR/translation.json
  22. 13 0
      src/lib/i18n/locales/he-IL/translation.json
  23. 13 0
      src/lib/i18n/locales/hi-IN/translation.json
  24. 13 0
      src/lib/i18n/locales/hr-HR/translation.json
  25. 13 0
      src/lib/i18n/locales/it-IT/translation.json
  26. 13 0
      src/lib/i18n/locales/ja-JP/translation.json
  27. 13 0
      src/lib/i18n/locales/ka-GE/translation.json
  28. 13 0
      src/lib/i18n/locales/ko-KR/translation.json
  29. 13 0
      src/lib/i18n/locales/lt-LT/translation.json
  30. 13 0
      src/lib/i18n/locales/nb-NO/translation.json
  31. 13 0
      src/lib/i18n/locales/nl-NL/translation.json
  32. 13 0
      src/lib/i18n/locales/pa-IN/translation.json
  33. 13 0
      src/lib/i18n/locales/pl-PL/translation.json
  34. 13 0
      src/lib/i18n/locales/pt-BR/translation.json
  35. 13 0
      src/lib/i18n/locales/pt-PT/translation.json
  36. 13 0
      src/lib/i18n/locales/ru-RU/translation.json
  37. 13 0
      src/lib/i18n/locales/sr-RS/translation.json
  38. 13 0
      src/lib/i18n/locales/sv-SE/translation.json
  39. 13 0
      src/lib/i18n/locales/tk-TW/translation.json
  40. 13 0
      src/lib/i18n/locales/tr-TR/translation.json
  41. 13 0
      src/lib/i18n/locales/uk-UA/translation.json
  42. 13 0
      src/lib/i18n/locales/vi-VN/translation.json
  43. 13 0
      src/lib/i18n/locales/zh-CN/translation.json
  44. 13 0
      src/lib/i18n/locales/zh-TW/translation.json

+ 6 - 6
src/lib/components/admin/Settings/Pipelines.svelte

@@ -60,13 +60,13 @@
 			});
 
 			if (res) {
-				toast.success('Valves updated successfully');
+				toast.success($i18n.t('Valves updated successfully'));
 				setPipelines();
 				models.set(await getModels(localStorage.token));
 				saveHandler();
 			}
 		} else {
-			toast.error('No valves to update');
+			toast.error($i18n.t('No valves to update'));
 		}
 	};
 
@@ -122,7 +122,7 @@
 		});
 
 		if (res) {
-			toast.success('Pipeline downloaded successfully');
+			toast.success($i18n.t('Pipeline downloaded successfully'));
 			setPipelines();
 			models.set(await getModels(localStorage.token));
 		}
@@ -147,12 +147,12 @@
 			);
 
 			if (res) {
-				toast.success('Pipeline downloaded successfully');
+				toast.success($i18n.t('Pipeline downloaded successfully'));
 				setPipelines();
 				models.set(await getModels(localStorage.token));
 			}
 		} else {
-			toast.error('No file selected');
+			toast.error($i18n.t('No file selected'));
 		}
 
 		pipelineFiles = null;
@@ -176,7 +176,7 @@
 		});
 
 		if (res) {
-			toast.success('Pipeline deleted successfully');
+			toast.success($i18n.t('Pipeline deleted successfully'));
 			setPipelines();
 			models.set(await getModels(localStorage.token));
 		}

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

@@ -24,7 +24,7 @@
 
 		if (res) {
 			console.log(res);
-			toast.success('Memory added successfully');
+			toast.success($i18n.t('Memory added successfully'));
 			content = '';
 			show = false;
 			dispatch('save');

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

@@ -35,7 +35,7 @@
 
 		if (res) {
 			console.log(res);
-			toast.success('Memory updated successfully');
+			toast.success($i18n.t('Memory updated successfully'));
 			dispatch('save');
 			show = false;
 		}

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

@@ -129,7 +129,7 @@
 																});
 
 																if (res) {
-																	toast.success('Memory deleted successfully');
+																	toast.success($i18n.t('Memory deleted successfully'));
 																	memories = await getMemories(localStorage.token);
 																}
 															}}
@@ -182,7 +182,7 @@
 						});
 
 						if (res) {
-							toast.success('Memory cleared successfully');
+							toast.success($i18n.t('Memory cleared successfully'));
 							memories = [];
 						}
 					}}>{$i18n.t('Clear memory')}</button

+ 2 - 2
src/lib/components/workspace/Functions.svelte

@@ -81,7 +81,7 @@
 		});
 
 		if (res) {
-			toast.success('Function deleted successfully');
+			toast.success($i18n.t('Function deleted successfully'));
 
 			functions.set(await getFunctions(localStorage.token));
 			models.set(await getModels(localStorage.token));
@@ -404,7 +404,7 @@
 				});
 			}
 
-			toast.success('Functions imported successfully');
+			toast.success($i18n.t('Functions imported successfully'));
 			functions.set(await getFunctions(localStorage.token));
 			models.set(await getModels(localStorage.token));
 		};

+ 2 - 2
src/lib/components/workspace/Tools.svelte

@@ -77,7 +77,7 @@
 		});
 
 		if (res) {
-			toast.success('Tool deleted successfully');
+			toast.success($i18n.t('Tool deleted successfully'));
 			tools.set(await getTools(localStorage.token));
 		}
 	};
@@ -388,7 +388,7 @@
 				});
 			}
 
-			toast.success('Tool imported successfully');
+			toast.success($i18n.t('Tool imported successfully'));
 			tools.set(await getTools(localStorage.token));
 		};
 

+ 1 - 1
src/lib/components/workspace/common/ValvesModal.svelte

@@ -51,7 +51,7 @@
 			}
 
 			if (res) {
-				toast.success('Valves updated successfully');
+				toast.success($i18n.t('Valves updated successfully'));
 			}
 		}
 

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "قم بتنسيق المتغيرات الخاصة بك باستخدام الأقواس المربعة مثل هذا:",
 	"Frequency Penalty": "عقوبة التردد",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "عام",
 	"General Settings": "الاعدادات العامة",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "مايو",
 	"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
 	"Memory": "الذاكرة",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "لن تتم مشاركة الرسائل التي ترسلها بعد إنشاء الرابط الخاص بك. سيتمكن المستخدمون الذين لديهم عنوان URL من عرض الدردشة المشتركة",
 	"Minimum Score": "الحد الأدنى من النقاط",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "دردشة جديدة",
 	"New Password": "كلمة المرور الجديدة",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "لا توجد نتايج",
 	"No search query generated": "لم يتم إنشاء استعلام بحث",
 	"No source available": "لا يوجد مصدر متاح",
+	"No valves to update": "",
 	"None": "اي",
 	"Not factually correct": "ليس صحيحا من حيث الواقع",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "{{error}} تم رفض الإذن عند الوصول إلى الميكروفون ",
 	"Personalization": "التخصيص",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "خطوط الانابيب",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "صمامات خطوط الأنابيب",
@@ -565,6 +575,8 @@
 	"Toggle settings": "فتح وأغلاق الاعدادات",
 	"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -598,6 +610,7 @@
 	"Utilize": "يستخدم",
 	"Valid time units:": "وحدات زمنية صالحة:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "المتغير",
 	"variable to have them replaced with clipboard content.": "متغير لاستبدالها بمحتوى الحافظة.",
 	"Version": "إصدار",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Форматирайте вашите променливи, като използвате квадратни скоби, както следва:",
 	"Frequency Penalty": "Наказание за честота",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Основни",
 	"General Settings": "Основни Настройки",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Май",
 	"Memories accessible by LLMs will be shown here.": "Мемории достъпни от LLMs ще бъдат показани тук.",
 	"Memory": "Мемория",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Съобщенията, които изпращате след създаването на връзката, няма да бъдат споделяни. Потребителите с URL адреса ще могат да видят споделения чат.",
 	"Minimum Score": "Минимална оценка",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Нов чат",
 	"New Password": "Нова парола",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Няма намерени резултати",
 	"No search query generated": "Не е генерирана заявка за търсене",
 	"No source available": "Няма наличен източник",
+	"No valves to update": "",
 	"None": "Никой",
 	"Not factually correct": "Не е фактологически правилно",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Забележка: Ако зададете минимален резултат, търсенето ще върне само документи с резултат, по-голям или равен на минималния резултат.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
 	"Personalization": "Персонализация",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Тръбопроводи",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Тръбопроводи Вентили",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Toggle settings",
 	"Toggle sidebar": "Toggle sidebar",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Използване",
 	"Valid time units:": "Валидни единици за време:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "променлива",
 	"variable to have them replaced with clipboard content.": "променливи да се заменят съдържанието от клипборд.",
 	"Version": "Версия",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "আপনার ভেরিয়বলগুলো এভাবে স্কয়ার ব্রাকেটের মাধ্যমে সাজান",
 	"Frequency Penalty": "ফ্রিকোয়েন্সি পেনাল্টি",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "সাধারণ",
 	"General Settings": "সাধারণ সেটিংসমূহ",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "মে",
 	"Memories accessible by LLMs will be shown here.": "LLMs দ্বারা অ্যাক্সেসযোগ্য মেমোরিগুলি এখানে দেখানো হবে।",
 	"Memory": "মেমোরি",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "আপনার লিঙ্ক তৈরি করার পরে আপনার পাঠানো বার্তাগুলি শেয়ার করা হবে না। ইউআরএল ব্যবহারকারীরা শেয়ার করা চ্যাট দেখতে পারবেন।",
 	"Minimum Score": "Minimum Score",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "নতুন চ্যাট",
 	"New Password": "নতুন পাসওয়ার্ড",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "কোন ফলাফল পাওয়া যায়নি",
 	"No search query generated": "কোনও অনুসন্ধান ক্যোয়ারী উত্পন্ন হয়নি",
 	"No source available": "কোন উৎস পাওয়া যায়নি",
+	"No valves to update": "",
 	"None": "কোনোটিই নয়",
 	"Not factually correct": "তথ্যগত দিক থেকে সঠিক নয়",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "দ্রষ্টব্য: আপনি যদি ন্যূনতম স্কোর সেট করেন তবে অনুসন্ধানটি কেবলমাত্র ন্যূনতম স্কোরের চেয়ে বেশি বা সমান স্কোর সহ নথিগুলি ফেরত দেবে।",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "মাইক্রোফোন ব্যবহারের অনুমতি পাওয়া যায়নি: {{error}}",
 	"Personalization": "ডিজিটাল বাংলা",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "পাইপলাইন",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "পাইপলাইন ভালভ",
@@ -561,6 +571,8 @@
 	"Toggle settings": "সেটিংস টোগল",
 	"Toggle sidebar": "সাইডবার টোগল",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "ইউটিলাইজ",
 	"Valid time units:": "সময়ের গ্রহণযোগ্য এককসমূহ:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "ভেরিয়েবল",
 	"variable to have them replaced with clipboard content.": "ক্লিপবোর্ডের কন্টেন্ট দিয়ে যেই ভেরিয়েবল রিপ্লেস করা যাবে।",
 	"Version": "ভার্সন",

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

@@ -259,7 +259,9 @@
 	"Form": "Formulari",
 	"Format your variables using square brackets like this:": "Formata les teves variables utilitzant claudàtors així:",
 	"Frequency Penalty": "Penalització per freqüència",
+	"Function deleted successfully": "",
 	"Functions": "Funcions",
+	"Functions imported successfully": "",
 	"General": "General",
 	"General Settings": "Configuració general",
 	"Generate Image": "Generar imatge",
@@ -325,6 +327,10 @@
 	"May": "Maig",
 	"Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.",
 	"Memory": "Memòria",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Els missatges enviats després de crear el teu enllaç no es compartiran. Els usuaris amb l'URL podran veure el xat compartit.",
 	"Minimum Score": "Puntuació mínima",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nou xat",
 	"New Password": "Nova contrasenya",
 	"No documents found": "No s'han trobat documents",
+	"No file selected": "",
 	"No results found": "No s'han trobat resultats",
 	"No search query generated": "No s'ha generat cap consulta",
 	"No source available": "Sense font disponible",
+	"No valves to update": "",
 	"None": "Cap",
 	"Not factually correct": "No és clarament correcte",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si s'estableix una puntuació mínima, la cerca només retornarà documents amb una puntuació major o igual a la puntuació mínima.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "Permís denegat en accedir al micròfon",
 	"Permission denied when accessing microphone: {{error}}": "Permís denegat en accedir al micròfon: {{error}}",
 	"Personalization": "Personalització",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Vàlvules de les Pipelines",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Alterna configuracions",
 	"Toggle sidebar": "Alterna la barra lateral",
 	"Tokens To Keep On Context Refresh (num_keep)": "Tokens a mantenir en l'actualització del context (num_keep)",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "Eines",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utilitzar",
 	"Valid time units:": "Unitats de temps vàlides:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",
 	"Version": "Versió",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "I-format ang imong mga variable gamit ang square brackets sama niini:",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Heneral",
 	"General Settings": "kinatibuk-ang mga setting",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memory": "",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Bag-ong diskusyon",
 	"New Password": "Bag-ong Password",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "",
 	"No search query generated": "",
 	"No source available": "Walay tinubdan nga anaa",
+	"No valves to update": "",
 	"None": "",
 	"Not factually correct": "",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Gidili ang pagtugot sa dihang nag-access sa mikropono: {{error}}",
 	"Personalization": "",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
@@ -561,6 +571,8 @@
 	"Toggle settings": "I-toggle ang mga setting",
 	"Toggle sidebar": "I-toggle ang sidebar",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Ibabaw nga P",
@@ -594,6 +606,7 @@
 	"Utilize": "Sa paggamit",
 	"Valid time units:": "Balido nga mga yunit sa oras:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable aron pulihan kini sa mga sulud sa clipboard.",
 	"Version": "Bersyon",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatiere deine Variablen mit eckigen Klammern wie folgt:",
 	"Frequency Penalty": "Frequenz-Strafe",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Allgemein",
 	"General Settings": "Allgemeine Einstellungen",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mai",
 	"Memories accessible by LLMs will be shown here.": "Memories, die von LLMs zugänglich sind, werden hier angezeigt.",
 	"Memory": "Memory",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Nachdem Sie Ihren Link erstellt haben, werden Ihre Nachrichten nicht geteilt. Benutzer mit dem Link können den geteilten Chat sehen.",
 	"Minimum Score": "Mindestscore",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Neuer Chat",
 	"New Password": "Neues Passwort",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Keine Ergebnisse gefunden",
 	"No search query generated": "Keine Suchanfrage generiert",
 	"No source available": "Keine Quelle verfügbar.",
+	"No valves to update": "",
 	"None": "Nichts",
 	"Not factually correct": "Nicht sachlich korrekt.",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Hinweis: Wenn du einen Mindestscore festlegst, wird die Suche nur Dokumente zurückgeben, deren Score größer oder gleich dem Mindestscore ist.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}",
 	"Personalization": "Personalisierung",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Rohrleitungen Ventile",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Einstellungen umschalten",
 	"Toggle sidebar": "Seitenleiste umschalten",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Nutze die",
 	"Valid time units:": "Gültige Zeiteinheiten:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "Variable",
 	"variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.",
 	"Version": "Version",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Format variables using square brackets like wow:",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Woweral",
 	"General Settings": "General Doge Settings",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memory": "",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "New Bark",
 	"New Password": "New Barkword",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "",
 	"No search query generated": "",
 	"No source available": "No source available",
+	"No valves to update": "",
 	"None": "",
 	"Not factually correct": "",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
 	"Personalization": "Personalization",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
@@ -563,6 +573,8 @@
 	"Toggle settings": "Toggle settings much toggle",
 	"Toggle sidebar": "Toggle sidebar much toggle",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K very top",
 	"Top P": "Top P very top",
@@ -596,6 +608,7 @@
 	"Utilize": "Utilize very use",
 	"Valid time units:": "Valid time units: much time",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable very variable",
 	"variable to have them replaced with clipboard content.": "variable to have them replaced with clipboard content. Very replace.",
 	"Version": "Version much version",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "",
 	"General Settings": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memory": "",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "",
@@ -353,9 +359,11 @@
 	"New Chat": "",
 	"New Password": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "",
 	"No search query generated": "",
 	"No source available": "",
+	"No valves to update": "",
 	"None": "",
 	"Not factually correct": "",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Personalization": "",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
@@ -561,6 +571,8 @@
 	"Toggle settings": "",
 	"Toggle sidebar": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "",
 	"Top P": "",
@@ -594,6 +606,7 @@
 	"Utilize": "",
 	"Valid time units:": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "",
 	"variable to have them replaced with clipboard content.": "",
 	"Version": "",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "",
 	"General Settings": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memory": "",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "",
@@ -353,9 +359,11 @@
 	"New Chat": "",
 	"New Password": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "",
 	"No search query generated": "",
 	"No source available": "",
+	"No valves to update": "",
 	"None": "",
 	"Not factually correct": "",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Personalization": "",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
@@ -561,6 +571,8 @@
 	"Toggle settings": "",
 	"Toggle sidebar": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "",
 	"Top P": "",
@@ -594,6 +606,7 @@
 	"Utilize": "",
 	"Valid time units:": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "",
 	"variable to have them replaced with clipboard content.": "",
 	"Version": "",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatea tus variables usando corchetes de la siguiente manera:",
 	"Frequency Penalty": "Penalización de frecuencia",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "General",
 	"General Settings": "Opciones Generales",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mayo",
 	"Memories accessible by LLMs will be shown here.": "Las memorias accesibles por los LLMs se mostrarán aquí.",
 	"Memory": "Memoria",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Los mensajes que envíe después de crear su enlace no se compartirán. Los usuarios con el enlace podrán ver el chat compartido.",
 	"Minimum Score": "Puntuación mínima",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nuevo Chat",
 	"New Password": "Nueva Contraseña",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "No se han encontrado resultados",
 	"No search query generated": "No se ha generado ninguna consulta de búsqueda",
 	"No source available": "No hay fuente disponible",
+	"No valves to update": "",
 	"None": "Ninguno",
 	"Not factually correct": "No es correcto en todos los aspectos",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Si estableces una puntuación mínima, la búsqueda sólo devolverá documentos con una puntuación mayor o igual a la puntuación mínima.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Permiso denegado al acceder al micrófono: {{error}}",
 	"Personalization": "Personalización",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Tuberías",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Tuberías Válvulas",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Alternar configuración",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades válidas de tiempo:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable para reemplazarlos con el contenido del portapapeles.",
 	"Version": "Versión",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "متغیرهای خود را با استفاده از براکت مربع به شکل زیر قالب بندی کنید:",
 	"Frequency Penalty": "مجازات فرکانس",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "عمومی",
 	"General Settings": "تنظیمات عمومی",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "ماهی",
 	"Memories accessible by LLMs will be shown here.": "حافظه های دسترسی به LLMs در اینجا نمایش داده می شوند.",
 	"Memory": "حافظه",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "پیام های شما بعد از ایجاد لینک شما به اشتراک نمی گردد. کاربران با لینک URL می توانند چت اشتراک را مشاهده کنند.",
 	"Minimum Score": "نماد کمینه",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "گپ جدید",
 	"New Password": "رمز عبور جدید",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "نتیجه\u200cای یافت نشد",
 	"No search query generated": "پرسوجوی جستجویی ایجاد نشده است",
 	"No source available": "منبعی در دسترس نیست",
+	"No valves to update": "",
 	"None": "هیچ کدام",
 	"Not factually correct": "اشتباهی فکری نیست",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "توجه: اگر حداقل نمره را تعیین کنید، جستجو تنها اسنادی را با نمره بیشتر یا برابر با حداقل نمره باز می گرداند.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "هنگام دسترسی به میکروفون، اجازه داده نشد: {{error}}",
 	"Personalization": "شخصی سازی",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "خط لوله",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "شیرالات خطوط لوله",
@@ -561,6 +571,8 @@
 	"Toggle settings": "نمایش/عدم نمایش تنظیمات",
 	"Toggle sidebar": "نمایش/عدم نمایش نوار کناری",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "استفاده کنید",
 	"Valid time units:": "واحدهای زمانی معتبر:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "متغیر",
 	"variable to have them replaced with clipboard content.": "متغیر برای جایگزینی آنها با محتوای کلیپ بورد.",
 	"Version": "نسخه",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Muotoile muuttujat hakasulkeilla näin:",
 	"Frequency Penalty": "Taajuussakko",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Yleinen",
 	"General Settings": "Yleisasetukset",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "toukokuu",
 	"Memories accessible by LLMs will be shown here.": "Muistitiedostot, joita LLM-ohjelmat käyttävät, näkyvät tässä.",
 	"Memory": "Muisti",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Linkin luomisen jälkeen lähettämiäsi viestejä ei jaeta. Käyttäjät, joilla on URL-osoite, voivat tarkastella jaettua keskustelua.",
 	"Minimum Score": "Vähimmäispisteet",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Uusi keskustelu",
 	"New Password": "Uusi salasana",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Ei tuloksia",
 	"No search query generated": "Hakukyselyä ei luotu",
 	"No source available": "Ei lähdettä saatavilla",
+	"No valves to update": "",
 	"None": "Ei lainkaan",
 	"Not factually correct": "Ei faktisesti oikein",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Huom: Jos asetat vähimmäispisteet, haku palauttaa vain asiakirjat, joiden pisteet ovat suurempia tai yhtä suuria kuin vähimmäispistemäärä.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Mikrofonin käyttöoikeus evätty: {{error}}",
 	"Personalization": "Henkilökohtaisuus",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Putkistot",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Putkistot Venttiilit",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Kytke asetukset",
 	"Toggle sidebar": "Kytke sivupalkki",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Käytä",
 	"Valid time units:": "Kelvolliset aikayksiköt:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "muuttuja",
 	"variable to have them replaced with clipboard content.": "muuttuja korvataan leikepöydän sisällöllä.",
 	"Version": "Versio",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :",
 	"Frequency Penalty": "Pénalité de fréquence",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Général",
 	"General Settings": "Paramètres généraux",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mai",
 	"Memories accessible by LLMs will be shown here.": "Les mémoires accessibles par les LLM seront affichées ici.",
 	"Memory": "Mémoire",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Les messages que vous envoyez après la création de votre lien ne seront pas partagés. Les utilisateurs avec l'URL pourront voir le chat partagé.",
 	"Minimum Score": "Score minimum",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nouvelle discussion",
 	"New Password": "Nouveau mot de passe",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Aucun résultat trouvé",
 	"No search query generated": "Aucune requête de recherche générée",
 	"No source available": "Aucune source disponible",
+	"No valves to update": "",
 	"None": "Aucune",
 	"Not factually correct": "Non, pas exactement correct",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Note: Si vous définissez un score minimum, la recherche ne retournera que les documents avec un score supérieur ou égal au score minimum.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
 	"Personalization": "Personnalisation",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Vannes de pipelines",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Basculer les paramètres",
 	"Toggle sidebar": "Basculer la barre latérale",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utiliser",
 	"Valid time units:": "Unités de temps valides :",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
 	"Version": "Version",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :",
 	"Frequency Penalty": "Pénalité de fréquence",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Général",
 	"General Settings": "Paramètres Généraux",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mai",
 	"Memories accessible by LLMs will be shown here.": "Les Mémoires des LLMs apparaîtront ici.",
 	"Memory": "Mémoire",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Les messages que vous envoyéz après la création du lien ne seront pas partagés. Les utilisateurs disposant de l'URL pourront voir le chat partagé.",
 	"Minimum Score": "Score Minimum",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nouveau chat",
 	"New Password": "Nouveau mot de passe",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Aucun résultat",
 	"No search query generated": "Aucune requête de recherche générée",
 	"No source available": "Aucune source disponible",
+	"No valves to update": "",
 	"None": "Aucun",
 	"Not factually correct": "Faits incorrects",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Note : Si vous définissez un score minimum, la recherche ne renverra que les documents ayant un score supérieur ou égal au score minimum.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
 	"Personalization": "Personnalisation",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Vannes de pipelines",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Basculer les paramètres",
 	"Toggle sidebar": "Basculer la barre latérale",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utiliser",
 	"Valid time units:": "Unités de temps valides :",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
 	"Version": "Version",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "עצב את המשתנים שלך באמצעות סוגריים מרובעים כך:",
 	"Frequency Penalty": "עונש תדירות",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "כללי",
 	"General Settings": "הגדרות כלליות",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "מאי",
 	"Memories accessible by LLMs will be shown here.": "מזכירים נגישים על ידי LLMs יוצגו כאן.",
 	"Memory": "זיכרון",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "הודעות שתשלח לאחר יצירת הקישור לא ישותפו. משתמשים עם כתובת האתר יוכלו לצפות בצ'אט המשותף.",
 	"Minimum Score": "ציון מינימלי",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "צ'אט חדש",
 	"New Password": "סיסמה חדשה",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "לא נמצאו תוצאות",
 	"No search query generated": "לא נוצרה שאילתת חיפוש",
 	"No source available": "אין מקור זמין",
+	"No valves to update": "",
 	"None": "ללא",
 	"Not factually correct": "לא נכון מבחינה עובדתית",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "הערה: אם תקבע ציון מינימלי, החיפוש יחזיר רק מסמכים עם ציון שגבוה או שווה לציון המינימלי.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "ההרשאה נדחתה בעת גישה למיקרופון: {{error}}",
 	"Personalization": "תאור",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "צינורות",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "צינורות שסתומים",
@@ -562,6 +572,8 @@
 	"Toggle settings": "החלפת מצב של הגדרות",
 	"Toggle sidebar": "החלפת מצב של סרגל הצד",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "שימוש",
 	"Valid time units:": "יחידות זמן תקינות:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "משתנה",
 	"variable to have them replaced with clipboard content.": "משתנה להחליפו ב- clipboard תוכן.",
 	"Version": "גרסה",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "वर्गाकार कोष्ठकों का उपयोग करके अपने चरों को इस प्रकार प्रारूपित करें :",
 	"Frequency Penalty": "फ्रीक्वेंसी पेनल्टी",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "सामान्य",
 	"General Settings": "सामान्य सेटिंग्स",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "मेई",
 	"Memories accessible by LLMs will be shown here.": "एलएलएम द्वारा सुलभ यादें यहां दिखाई जाएंगी।",
 	"Memory": "मेमोरी",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "अपना लिंक बनाने के बाद आपके द्वारा भेजे गए संदेश साझा नहीं किए जाएंगे। यूआरएल वाले यूजर्स शेयर की गई चैट देख पाएंगे।",
 	"Minimum Score": "न्यूनतम स्कोर",
 	"Mirostat": "मिरोस्टा",
@@ -353,9 +359,11 @@
 	"New Chat": "नई चैट",
 	"New Password": "नया पासवर्ड",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "कोई परिणाम नहीं मिला",
 	"No search query generated": "कोई खोज क्वेरी जनरेट नहीं हुई",
 	"No source available": "कोई स्रोत उपलब्ध नहीं है",
+	"No valves to update": "",
 	"None": "कोई नहीं",
 	"Not factually correct": "तथ्यात्मक रूप से सही नहीं है",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ध्यान दें: यदि आप न्यूनतम स्कोर निर्धारित करते हैं, तो खोज केवल न्यूनतम स्कोर से अधिक या उसके बराबर स्कोर वाले दस्तावेज़ वापस लाएगी।",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "माइक्रोफ़ोन तक पहुँचने पर अनुमति अस्वीकृत: {{error}}",
 	"Personalization": "पेरसनलाइज़मेंट",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "पाइपलाइनों",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "पाइपलाइन वाल्व",
@@ -561,6 +571,8 @@
 	"Toggle settings": "सेटिंग्स टॉगल करें",
 	"Toggle sidebar": "साइडबार टॉगल करें",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "शीर्ष  K",
 	"Top P": "शीर्ष  P",
@@ -594,6 +606,7 @@
 	"Utilize": "उपयोग करें",
 	"Valid time units:": "मान्य समय इकाइयाँ:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "वेरिएबल",
 	"variable to have them replaced with clipboard content.": "उन्हें क्लिपबोर्ड सामग्री से बदलने के लिए वेरिएबल।",
 	"Version": "संस्करण",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatirajte svoje varijable pomoću uglatih zagrada ovako:",
 	"Frequency Penalty": "Kazna za učestalost",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Općenito",
 	"General Settings": "Opće postavke",
 	"Generate Image": "Gneriraj sliku",
@@ -325,6 +327,10 @@
 	"May": "Svibanj",
 	"Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.",
 	"Memory": "Memorija",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Poruke koje pošaljete nakon stvaranja veze neće se dijeliti. Korisnici s URL-om moći će vidjeti zajednički chat.",
 	"Minimum Score": "Minimalna ocjena",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Novi razgovor",
 	"New Password": "Nova lozinka",
 	"No documents found": "Dokumenti nisu pronađeni",
+	"No file selected": "",
 	"No results found": "Nema rezultata",
 	"No search query generated": "Nije generiran upit za pretraživanje",
 	"No source available": "Nema dostupnog izvora",
+	"No valves to update": "",
 	"None": "Ništa",
 	"Not factually correct": "Nije činjenično točno",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Napomena: Ako postavite minimalnu ocjenu, pretraga će vratiti samo dokumente s ocjenom većom ili jednakom minimalnoj ocjeni.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "Dopuštenje je odbijeno prilikom pristupa mikrofonu",
 	"Permission denied when accessing microphone: {{error}}": "Pristup mikrofonu odbijen: {{error}}",
 	"Personalization": "Prilagodba",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Cjevovodi",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Ventili za cjevovode",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Prebaci postavke",
 	"Toggle sidebar": "Prebaci bočnu traku",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "Alati",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Iskoristi",
 	"Valid time units:": "Važeće vremenske jedinice:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "varijabla",
 	"variable to have them replaced with clipboard content.": "varijabla za zamjenu sadržajem međuspremnika.",
 	"Version": "Verzija",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatta le tue variabili usando parentesi quadre come questa:",
 	"Frequency Penalty": "Penalità di frequenza",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Generale",
 	"General Settings": "Impostazioni generali",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Maggio",
 	"Memories accessible by LLMs will be shown here.": "I memori accessibili ai LLM saranno mostrati qui.",
 	"Memory": "Memoria",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "I messaggi inviati dopo la creazione del link non verranno condivisi. Gli utenti con l'URL saranno in grado di visualizzare la chat condivisa.",
 	"Minimum Score": "Punteggio minimo",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nuova chat",
 	"New Password": "Nuova password",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Nessun risultato trovato",
 	"No search query generated": "Nessuna query di ricerca generata",
 	"No source available": "Nessuna fonte disponibile",
+	"No valves to update": "",
 	"None": "Nessuno",
 	"Not factually correct": "Non corretto dal punto di vista fattuale",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: se imposti un punteggio minimo, la ricerca restituirà solo i documenti con un punteggio maggiore o uguale al punteggio minimo.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Autorizzazione negata durante l'accesso al microfono: {{error}}",
 	"Personalization": "Personalizzazione",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Condutture",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Valvole per tubazioni",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Attiva/disattiva impostazioni",
 	"Toggle sidebar": "Attiva/disattiva barra laterale",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utilizza",
 	"Valid time units:": "Unità di tempo valide:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variabile",
 	"variable to have them replaced with clipboard content.": "variabile per farli sostituire con il contenuto degli appunti.",
 	"Version": "Versione",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "次のように角括弧を使用して変数をフォーマットします。",
 	"Frequency Penalty": "周波数ペナルティ",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "一般",
 	"General Settings": "一般設定",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "5月",
 	"Memories accessible by LLMs will be shown here.": "LLM がアクセスできるメモリはここに表示されます。",
 	"Memory": "メモリ",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "リンクを作成した後、送信したメッセージは共有されません。URL を持つユーザーは共有チャットを閲覧できます。",
 	"Minimum Score": "最低スコア",
 	"Mirostat": "ミロスタット",
@@ -353,9 +359,11 @@
 	"New Chat": "新しいチャット",
 	"New Password": "新しいパスワード",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "結果が見つかりません",
 	"No search query generated": "検索クエリは生成されません",
 	"No source available": "使用可能なソースがありません",
+	"No valves to update": "",
 	"None": "何一つ",
 	"Not factually correct": "実事上正しくない",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "注意:最小スコアを設定した場合、検索は最小スコア以上のスコアを持つドキュメントのみを返します。",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "マイクへのアクセス時に権限が拒否されました: {{error}}",
 	"Personalization": "個人化",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "パイプライン",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "パイプラインバルブ",
@@ -560,6 +570,8 @@
 	"Toggle settings": "設定を切り替え",
 	"Toggle sidebar": "サイドバーを切り替え",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "トップ K",
 	"Top P": "トップ P",
@@ -593,6 +605,7 @@
 	"Utilize": "活用",
 	"Valid time units:": "有効な時間単位:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "変数",
 	"variable to have them replaced with clipboard content.": "クリップボードの内容に置き換える変数。",
 	"Version": "バージョン",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "დააფორმატეთ თქვენი ცვლადები კვადრატული ფრჩხილების გამოყენებით:",
 	"Frequency Penalty": "სიხშირის ჯარიმა",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "ზოგადი",
 	"General Settings": "ზოგადი პარამეტრები",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "მაი",
 	"Memories accessible by LLMs will be shown here.": "ლლმ-ს აქვს ხელმისაწვდომი მემორიები აქ იქნება.",
 	"Memory": "მემორია",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "შეტყობინებები, რომელსაც თქვენ აგზავნით თქვენი ბმულის შექმნის შემდეგ, არ იქნება გაზიარებული. URL– ის მქონე მომხმარებლებს შეეძლებათ ნახონ საერთო ჩატი.",
 	"Minimum Score": "მინიმალური ქულა",
 	"Mirostat": "მიროსტატი",
@@ -353,9 +359,11 @@
 	"New Chat": "ახალი მიმოწერა",
 	"New Password": "ახალი პაროლი",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "ჩვენ ვერ პოულობით ნაპოვნი ჩაწერები",
 	"No search query generated": "ძიების მოთხოვნა არ არის გენერირებული",
 	"No source available": "წყარო არ არის ხელმისაწვდომი",
+	"No valves to update": "",
 	"None": "არცერთი",
 	"Not factually correct": "არ ვეთანხმები პირდაპირ ვერც ვეთანხმები",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "შენიშვნა: თუ თქვენ დააყენებთ მინიმალურ ქულას, ძებნა დააბრუნებს მხოლოდ დოკუმენტებს მინიმალური ქულის მეტი ან ტოლი ქულით.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "ნებართვა უარყოფილია მიკროფონზე წვდომისას: {{error}}",
 	"Personalization": "პერსონალიზაცია",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "მილსადენები",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "მილსადენების სარქველები",
@@ -561,6 +571,8 @@
 	"Toggle settings": "პარამეტრების გადართვა",
 	"Toggle sidebar": "გვერდითი ზოლის გადართვა",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "ტოპ K",
 	"Top P": "ტოპ P",
@@ -594,6 +606,7 @@
 	"Utilize": "გამოყენება",
 	"Valid time units:": "მოქმედი დროის ერთეულები",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "ცვლადი",
 	"variable to have them replaced with clipboard content.": "ცვლადი, რომ შეცვალოს ისინი ბუფერში შიგთავსით.",
 	"Version": "ვერსია",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "다음과 같이 대괄호를 사용하여 변수를 형식화하세요:",
 	"Frequency Penalty": "프리퀀시 페널티",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "일반",
 	"General Settings": "일반 설정",
 	"Generate Image": "이미지 생성",
@@ -325,6 +327,10 @@
 	"May": "5월",
 	"Memories accessible by LLMs will be shown here.": "LLM에서 액세스할 수 있는 메모리는 여기에 표시됩니다.",
 	"Memory": "메모리",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "링크 생성 후에 보낸 메시지는 공유되지 않습니다. URL이 있는 사용자는 공유된 채팅을 볼 수 있습니다.",
 	"Minimum Score": "최소 점수",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "새 채팅",
 	"New Password": "새 비밀번호",
 	"No documents found": "문서 없음",
+	"No file selected": "",
 	"No results found": "결과 없음",
 	"No search query generated": "검색어가 생성되지 않았습니다.",
 	"No source available": "사용 가능한 소스 없음",
+	"No valves to update": "",
 	"None": "없음",
 	"Not factually correct": "사실상 맞지 않음",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "참고: 최소 점수를 설정하면, 검색 결과로 최소 점수 이상의 점수를 가진 문서만 반환합니다.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "마이크 액세스가 거부되었습니다.",
 	"Permission denied when accessing microphone: {{error}}": "마이크 액세스가 거부되었습니다: {{error}}",
 	"Personalization": "개인화",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "파이프라인",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "파이프라인 밸브",
@@ -561,6 +571,8 @@
 	"Toggle settings": "설정 전환",
 	"Toggle sidebar": "사이드바 전환",
 	"Tokens To Keep On Context Refresh (num_keep)": "컨텍스트 새로 고침 시 유지할 토큰 수(num_keep)",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "도구",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "활용",
 	"Valid time units:": "유효 시간 단위:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "변수",
 	"variable to have them replaced with clipboard content.": "변수를 사용하여 클립보드 내용으로 바꾸세요.",
 	"Version": "버전",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatuokite kintamuosius su kvadratiniais skliausteliais:",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Bendri",
 	"General Settings": "Bendri nustatymai",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "gegužė",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memory": "",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
 	"Minimum Score": "Minimalus rezultatas",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Naujas pokalbis",
 	"New Password": "Naujas slaptažodis",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Rezultatų nerasta",
 	"No search query generated": "",
 	"No source available": "Šaltinių nerasta",
+	"No valves to update": "",
 	"None": "",
 	"Not factually correct": "Faktiškai netikslu",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Jei turite minimalų įvertį, paieška gražins tik tą informaciją, kuri viršyje šį įvertį",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Leidimas naudoti mikrofoną atmestas: {{error}}",
 	"Personalization": "",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
@@ -563,6 +573,8 @@
 	"Toggle settings": "Atverti/užverti parametrus",
 	"Toggle sidebar": "Atverti/užverti šoninį meniu",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -596,6 +608,7 @@
 	"Utilize": "Naudoti",
 	"Valid time units:": "Teisingūs laiko vienetai :",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "kintamasis",
 	"variable to have them replaced with clipboard content.": "kintamoji pakeičiama kopijuoklės turiniu.",
 	"Version": "Versija",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatér variablene dine med hakeparenteser som dette:",
 	"Frequency Penalty": "Frekvensstraff",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Generelt",
 	"General Settings": "Generelle innstillinger",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mai",
 	"Memories accessible by LLMs will be shown here.": "Minner tilgjengelige for LLM-er vil vises her.",
 	"Memory": "Minne",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Meldinger du sender etter at du har opprettet lenken din vil ikke bli delt. Brukere med URL-en vil kunne se den delte chatten.",
 	"Minimum Score": "Minimum poengsum",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Ny chat",
 	"New Password": "Nytt passord",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Ingen resultater funnet",
 	"No search query generated": "Ingen søkeforespørsel generert",
 	"No source available": "Ingen kilde tilgjengelig",
+	"No valves to update": "",
 	"None": "Ingen",
 	"Not factually correct": "Ikke faktuelt korrekt",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Merk: Hvis du setter en minimums poengsum, vil søket kun returnere dokumenter med en poengsum som er større enn eller lik minimums poengsummen.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Tillatelse nektet ved tilgang til mikrofon: {{error}}",
 	"Personalization": "Personalisering",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Pipeline-ventiler",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Veksle innstillinger",
 	"Toggle sidebar": "Veksle sidefelt",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Utnytt",
 	"Valid time units:": "Gyldige tidsenheter:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variabel",
 	"variable to have them replaced with clipboard content.": "variabel for å få dem erstattet med utklippstavleinnhold.",
 	"Version": "Versjon",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatteer je variabelen met vierkante haken zoals dit:",
 	"Frequency Penalty": "Frequentie Straf",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Algemeen",
 	"General Settings": "Algemene Instellingen",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mei",
 	"Memories accessible by LLMs will be shown here.": "Geheugen toegankelijk voor LLMs wordt hier getoond.",
 	"Memory": "Geheugen",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Berichten die u verzendt nadat u uw link hebt gemaakt, worden niet gedeeld. Gebruikers met de URL kunnen de gedeelde chat bekijken.",
 	"Minimum Score": "Minimale Score",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nieuwe Chat",
 	"New Password": "Nieuw Wachtwoord",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Geen resultaten gevonden",
 	"No search query generated": "Geen zoekopdracht gegenereerd",
 	"No source available": "Geen bron beschikbaar",
+	"No valves to update": "",
 	"None": "Geen",
 	"Not factually correct": "Feitelijk niet juist",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Opmerking: Als u een minimumscore instelt, levert de zoekopdracht alleen documenten op met een score groter dan of gelijk aan de minimumscore.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Toestemming geweigerd bij toegang tot microfoon: {{error}}",
 	"Personalization": "Personalisatie",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pijpleidingen",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Pijpleidingen Kleppen",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Wissel instellingen",
 	"Toggle sidebar": "Wissel sidebar",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Utilize",
 	"Valid time units:": "Geldige tijdseenheden:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variabele",
 	"variable to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.",
 	"Version": "Versie",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "ਤੁਹਾਡੀਆਂ ਵੈਰੀਏਬਲਾਂ ਨੂੰ ਇਸ ਤਰ੍ਹਾਂ ਵਰਤੋਂ: [ ]",
 	"Frequency Penalty": "ਬਾਰੰਬਾਰਤਾ ਜੁਰਮਾਨਾ",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "ਆਮ",
 	"General Settings": "ਆਮ ਸੈਟਿੰਗਾਂ",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "ਮਈ",
 	"Memories accessible by LLMs will be shown here.": "LLMs ਲਈ ਸਮਰੱਥ ਕਾਰਨ ਇੱਕ ਸੂਚਨਾ ਨੂੰ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ ਹੈ।",
 	"Memory": "ਮੀਮਰ",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ਤੁਹਾਡਾ ਲਿੰਕ ਬਣਾਉਣ ਤੋਂ ਬਾਅਦ ਤੁਹਾਡੇ ਵੱਲੋਂ ਭੇਜੇ ਗਏ ਸੁਨੇਹੇ ਸਾਂਝੇ ਨਹੀਂ ਕੀਤੇ ਜਾਣਗੇ। URL ਵਾਲੇ ਉਪਭੋਗਤਾ ਸਾਂਝੀ ਚੈਟ ਨੂੰ ਵੇਖ ਸਕਣਗੇ।",
 	"Minimum Score": "ਘੱਟੋ-ਘੱਟ ਸਕੋਰ",
 	"Mirostat": "ਮਿਰੋਸਟੈਟ",
@@ -353,9 +359,11 @@
 	"New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ",
 	"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਮਿਲੇ",
 	"No search query generated": "ਕੋਈ ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਨਹੀਂ ਕੀਤੀ ਗਈ",
 	"No source available": "ਕੋਈ ਸਰੋਤ ਉਪਲਬਧ ਨਹੀਂ",
+	"No valves to update": "",
 	"None": "ਕੋਈ ਨਹੀਂ",
 	"Not factually correct": "ਤੱਥਕ ਰੂਪ ਵਿੱਚ ਸਹੀ ਨਹੀਂ",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "ਨੋਟ: ਜੇ ਤੁਸੀਂ ਘੱਟੋ-ਘੱਟ ਸਕੋਰ ਸੈੱਟ ਕਰਦੇ ਹੋ, ਤਾਂ ਖੋਜ ਸਿਰਫ਼ ਉਹੀ ਡਾਕੂਮੈਂਟ ਵਾਪਸ ਕਰੇਗੀ ਜਿਨ੍ਹਾਂ ਦਾ ਸਕੋਰ ਘੱਟੋ-ਘੱਟ ਸਕੋਰ ਦੇ ਬਰਾਬਰ ਜਾਂ ਵੱਧ ਹੋਵੇ।",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "ਮਾਈਕ੍ਰੋਫ਼ੋਨ ਤੱਕ ਪਹੁੰਚਣ ਸਮੇਂ ਆਗਿਆ ਰੱਦ ਕੀਤੀ ਗਈ: {{error}}",
 	"Personalization": "ਪਰਸੋਨਲਿਸ਼ਮ",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "ਪਾਈਪਲਾਈਨਾਂ",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "ਪਾਈਪਲਾਈਨਾਂ ਵਾਲਵ",
@@ -561,6 +571,8 @@
 	"Toggle settings": "ਸੈਟਿੰਗਾਂ ਟੌਗਲ ਕਰੋ",
 	"Toggle sidebar": "ਸਾਈਡਬਾਰ ਟੌਗਲ ਕਰੋ",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "ਸਿਖਰ K",
 	"Top P": "ਸਿਖਰ P",
@@ -594,6 +606,7 @@
 	"Utilize": "ਵਰਤੋਂ",
 	"Valid time units:": "ਵੈਧ ਸਮਾਂ ਇਕਾਈਆਂ:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "ਵੈਰੀਏਬਲ",
 	"variable to have them replaced with clipboard content.": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਨਾਲ ਬਦਲਣ ਲਈ ਵੈਰੀਏਬਲ।",
 	"Version": "ਵਰਜਨ",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatuj swoje zmienne, używając nawiasów kwadratowych, np.",
 	"Frequency Penalty": "Kara za częstotliwość",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Ogólne",
 	"General Settings": "Ogólne ustawienia",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Maj",
 	"Memories accessible by LLMs will be shown here.": "Pamięci używane przez LLM będą tutaj widoczne.",
 	"Memory": "Pamięć",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Wiadomości wysyłane po utworzeniu linku nie będą udostępniane. Użytkownicy z adresem URL będą mogli wyświetlić udostępniony czat.",
 	"Minimum Score": "Minimalny wynik",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nowy czat",
 	"New Password": "Nowe hasło",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Nie znaleziono rezultatów",
 	"No search query generated": "Nie wygenerowano zapytania wyszukiwania",
 	"No source available": "Źródło nie dostępne",
+	"No valves to update": "",
 	"None": "Żaden",
 	"Not factually correct": "Nie zgodne z faktami",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Uwaga: Jeśli ustawisz minimalny wynik, szukanie zwróci jedynie dokumenty z wynikiem większym lub równym minimalnemu.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Odmowa dostępu do mikrofonu: {{error}}",
 	"Personalization": "Personalizacja",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Rurociągów",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Rurociągi Zawory",
@@ -563,6 +573,8 @@
 	"Toggle settings": "Przełącz ustawienia",
 	"Toggle sidebar": "Przełącz panel boczny",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Najlepsze K",
 	"Top P": "Najlepsze P",
@@ -596,6 +608,7 @@
 	"Utilize": "Wykorzystaj",
 	"Valid time units:": "Poprawne jednostki czasu:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "zmienna",
 	"variable to have them replaced with clipboard content.": "zmienna która zostanie zastąpiona zawartością schowka.",
 	"Version": "Wersja",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formate suas variáveis usando colchetes como este:",
 	"Frequency Penalty": "Penalidade de Frequência",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Geral",
 	"General Settings": "Configurações Gerais",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Maio",
 	"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
 	"Memory": "Memória",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mensagens que você enviar após criar seu link não serão compartilhadas. Os usuários com o URL poderão visualizar o bate-papo compartilhado.",
 	"Minimum Score": "Pontuação Mínima",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Novo Bate-papo",
 	"New Password": "Nova Senha",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Nenhum resultado encontrado",
 	"No search query generated": "Nenhuma consulta de pesquisa gerada",
 	"No source available": "Nenhuma fonte disponível",
+	"No valves to update": "",
 	"None": "Nenhum",
 	"Not factually correct": "Não é correto em termos factuais",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Se você definir uma pontuação mínima, a pesquisa só retornará documentos com uma pontuação maior ou igual à pontuação mínima.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}",
 	"Personalization": "Personalização",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Válvulas de Dutos",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Alternar configurações",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades de tempo válidas:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variável",
 	"variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.",
 	"Version": "Versão",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formate as suas variáveis usando parenteses rectos como este:",
 	"Frequency Penalty": "Penalidade de Frequência",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Geral",
 	"General Settings": "Configurações Gerais",
 	"Generate Image": "Gerar imagem",
@@ -325,6 +327,10 @@
 	"May": "Maio",
 	"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
 	"Memory": "Memória",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mensagens que você enviar após criar o seu link não serão partilhadas. Os utilizadores com o URL poderão visualizar a conversa partilhada.",
 	"Minimum Score": "Mínimo de Pontuação",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nova Conversa",
 	"New Password": "Nova Senha",
 	"No documents found": "Não foram encontrados documentos",
+	"No file selected": "",
 	"No results found": "Não foram encontrados resultados",
 	"No search query generated": "Não foi gerada nenhuma consulta de pesquisa",
 	"No source available": "Nenhuma fonte disponível",
+	"No valves to update": "",
 	"None": "Nenhum",
 	"Not factually correct": "Não é correto em termos factuais",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Nota: Se você definir uma pontuação mínima, a pesquisa só retornará documentos com uma pontuação maior ou igual à pontuação mínima.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "A permissão foi negada ao aceder ao microfone",
 	"Permission denied when accessing microphone: {{error}}": "A permissão foi negada ao aceder o microfone: {{error}}",
 	"Personalization": "Personalização",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Condutas",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Válvulas de Condutas",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Alternar configurações",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades de tempo válidas:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variável",
 	"variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.",
 	"Version": "Versão",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Форматируйте ваши переменные, используя квадратные скобки, как здесь:",
 	"Frequency Penalty": "Штраф за частоту",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Общее",
 	"General Settings": "Общие настройки",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Май",
 	"Memories accessible by LLMs will be shown here.": "Мемории, доступные LLMs, будут отображаться здесь.",
 	"Memory": "Мемория",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Сообщения, которые вы отправляете после создания ссылки, не будут распространяться. Пользователи с URL смогут просматривать общий чат.",
 	"Minimum Score": "Минимальный балл",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Новый чат",
 	"New Password": "Новый пароль",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Результатов не найдено",
 	"No search query generated": "Поисковый запрос не сгенерирован",
 	"No source available": "Нет доступных источников",
+	"No valves to update": "",
 	"None": "Никакой",
 	"Not factually correct": "Не фактически правильно",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Обратите внимание: Если вы установите минимальный балл, поиск будет возвращать только документы с баллом больше или равным минимальному баллу.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Отказано в доступе к микрофону: {{error}}",
 	"Personalization": "Персонализация",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Трубопроводов",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Трубопроводы Клапаны",
@@ -563,6 +573,8 @@
 	"Toggle settings": "Переключить настройки",
 	"Toggle sidebar": "Переключить боковую панель",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -596,6 +608,7 @@
 	"Utilize": "Использовать",
 	"Valid time units:": "Допустимые единицы времени:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "переменная",
 	"variable to have them replaced with clipboard content.": "переменная, чтобы их заменить содержимым буфера обмена.",
 	"Version": "Версия",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Форматирајте ваше променљиве користећи угластe заграде овако:",
 	"Frequency Penalty": "Фреквентна казна",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Опште",
 	"General Settings": "Општа подешавања",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Мај",
 	"Memories accessible by LLMs will be shown here.": "Памћења које ће бити појављена од овог LLM-а ће бити приказана овде.",
 	"Memory": "Памћење",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Поруке које пошаљете након стварања ваше везе неће бити подељене. Корисници са URL-ом ће моћи да виде дељено ћаскање.",
 	"Minimum Score": "Најмањи резултат",
 	"Mirostat": "Миростат",
@@ -353,9 +359,11 @@
 	"New Chat": "Ново ћаскање",
 	"New Password": "Нова лозинка",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Нема резултата",
 	"No search query generated": "Није генерисан упит за претрагу",
 	"No source available": "Нема доступног извора",
+	"No valves to update": "",
 	"None": "Нико",
 	"Not factually correct": "Није чињенично тачно",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Напомена: ако подесите најмањи резултат, претрага ће вратити само документе са резултатом већим или једнаким најмањем резултату.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Приступ микрофону је одбијен: {{error}}",
 	"Personalization": "Прилагођавање",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Цевоводи",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Вентили за цевоводе",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Пребаци подешавања",
 	"Toggle sidebar": "Пребаци бочну траку",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Топ К",
 	"Top P": "Топ П",
@@ -595,6 +607,7 @@
 	"Utilize": "Искористи",
 	"Valid time units:": "Важеће временске јединице:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "променљива",
 	"variable to have them replaced with clipboard content.": "променљива за замену са садржајем оставе.",
 	"Version": "Издање",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatera dina variabler med hakparenteser så här:",
 	"Frequency Penalty": "Straff för frekvens",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Allmän",
 	"General Settings": "Allmänna inställningar",
 	"Generate Image": "Generera bild",
@@ -325,6 +327,10 @@
 	"May": "maj",
 	"Memories accessible by LLMs will be shown here.": "Minnen som LLM:er kan komma åt visas här.",
 	"Memory": "Minnen",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Meddelanden du skickar efter att ha skapat din länk kommer inte att delas. Användare med URL:en kommer att kunna se delad chatt.",
 	"Minimum Score": "Tröskel",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Ny chatt",
 	"New Password": "Nytt lösenord",
 	"No documents found": "Inga dokument hittades",
+	"No file selected": "",
 	"No results found": "Inga resultat hittades",
 	"No search query generated": "Ingen sökfråga genererad",
 	"No source available": "Ingen tillgänglig källa",
+	"No valves to update": "",
 	"None": "Ingen",
 	"Not factually correct": "Inte faktiskt korrekt",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Obs: Om du anger en tröskel kommer sökningen endast att returnera dokument med ett betyg som är större än eller lika med tröskeln.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "Nekad behörighet vid åtkomst till mikrofon",
 	"Permission denied when accessing microphone: {{error}}": "Tillstånd nekades vid åtkomst till mikrofon: {{error}}",
 	"Personalization": "Personalisering",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Rörledningar",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Ventiler för rörledningar",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Växla inställningar",
 	"Toggle sidebar": "Växla sidofält",
 	"Tokens To Keep On Context Refresh (num_keep)": "Tokens att behålla vid kontextuppdatering (num_keep)",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "Verktyg",
 	"Top K": "Topp K",
 	"Top P": "Topp P",
@@ -594,6 +606,7 @@
 	"Utilize": "Använd",
 	"Valid time units:": "Giltiga tidsenheter:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variabel",
 	"variable to have them replaced with clipboard content.": "variabel för att få dem ersatta med urklippsinnehåll.",
 	"Version": "Version",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "",
 	"General Settings": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memory": "",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
 	"Minimum Score": "",
 	"Mirostat": "",
@@ -353,9 +359,11 @@
 	"New Chat": "",
 	"New Password": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "",
 	"No search query generated": "",
 	"No source available": "",
+	"No valves to update": "",
 	"None": "",
 	"Not factually correct": "",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Personalization": "",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
@@ -561,6 +571,8 @@
 	"Toggle settings": "",
 	"Toggle sidebar": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "",
 	"Top P": "",
@@ -594,6 +606,7 @@
 	"Utilize": "",
 	"Valid time units:": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "",
 	"variable to have them replaced with clipboard content.": "",
 	"Version": "",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Değişkenlerinizi şu şekilde kare parantezlerle biçimlendirin:",
 	"Frequency Penalty": "Frekans Cezası",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Genel",
 	"General Settings": "Genel Ayarlar",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mayıs",
 	"Memories accessible by LLMs will be shown here.": "LLM'ler tarafından erişilebilen bellekler burada gösterilecektir.",
 	"Memory": "Bellek",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Bağlantınızı oluşturduktan sonra gönderdiğiniz mesajlar paylaşılmayacaktır. URL'ye sahip kullanıcılar paylaşılan sohbeti görüntüleyebilecektir.",
 	"Minimum Score": "Minimum Skor",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Yeni Sohbet",
 	"New Password": "Yeni Parola",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Sonuç bulunamadı",
 	"No search query generated": "Hiç arama sorgusu oluşturulmadı",
 	"No source available": "Kaynak mevcut değil",
+	"No valves to update": "",
 	"None": "Yok",
 	"Not factually correct": "Gerçeklere göre doğru değil",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Not: Minimum bir skor belirlerseniz, arama yalnızca minimum skora eşit veya daha yüksek bir skora sahip belgeleri getirecektir.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "",
 	"Permission denied when accessing microphone: {{error}}": "Mikrofona erişim izni reddedildi: {{error}}",
 	"Personalization": "Kişiselleştirme",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelinelar",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Pipeline Valvleri",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Ayarları Aç/Kapat",
 	"Toggle sidebar": "Kenar Çubuğunu Aç/Kapat",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Kullan",
 	"Valid time units:": "Geçerli zaman birimleri:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "değişken",
 	"variable to have them replaced with clipboard content.": "panodaki içerikle değiştirilmesi için değişken.",
 	"Version": "Sürüm",

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

@@ -259,7 +259,9 @@
 	"Form": "Форма",
 	"Format your variables using square brackets like this:": "Форматуйте свої змінні квадратними дужками так:",
 	"Frequency Penalty": "Штраф за частоту",
+	"Function deleted successfully": "",
 	"Functions": "Функції",
+	"Functions imported successfully": "",
 	"General": "Загальні",
 	"General Settings": "Загальні налаштування",
 	"Generate Image": "Створити зображення",
@@ -325,6 +327,10 @@
 	"May": "Травень",
 	"Memories accessible by LLMs will be shown here.": "Пам'ять, яка доступна LLM, буде показана тут.",
 	"Memory": "Пам'ять",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Повідомлення, які ви надішлете після створення посилання, не будуть доступні для інших. Користувачі, які мають URL, зможуть переглядати спільний чат.",
 	"Minimum Score": "Мінімальний бал",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Новий чат",
 	"New Password": "Новий пароль",
 	"No documents found": "Документів не знайдено",
+	"No file selected": "",
 	"No results found": "Не знайдено жодного результату",
 	"No search query generated": "Пошуковий запит не сформовано",
 	"No source available": "Джерело не доступне",
+	"No valves to update": "",
 	"None": "Нема",
 	"Not factually correct": "Не відповідає дійсності",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Примітка: Якщо ви встановите мінімальну кількість балів, пошук поверне лише документи з кількістю балів, більшою або рівною мінімальній кількості балів.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "Відмовлено у доступі до мікрофона",
 	"Permission denied when accessing microphone: {{error}}": "Доступ до мікрофона заборонено: {{error}}",
 	"Personalization": "Персоналізація",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Конвеєри",
 	"Pipelines Not Detected": "Конвеєрів не знайдено",
 	"Pipelines Valves": "Клапани конвеєрів",
@@ -563,6 +573,8 @@
 	"Toggle settings": "Переключити налаштування",
 	"Toggle sidebar": "Переключити бокову панель",
 	"Tokens To Keep On Context Refresh (num_keep)": "Токени для збереження при оновленні контексту (num_keep)",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "Інструменти",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -596,6 +608,7 @@
 	"Utilize": "Використовувати",
 	"Valid time units:": "Дійсні одиниці часу:",
 	"Valves": "Клапани",
+	"Valves updated successfully": "",
 	"variable": "змінна",
 	"variable to have them replaced with clipboard content.": "змінна, щоб замінити їх вмістом буфера обміну.",
 	"Version": "Версія",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Format your variables using square brackets like this:": "Định dạng các biến của bạn bằng cách sử dụng dấu ngoặc vuông như thế này:",
 	"Frequency Penalty": "Hình phạt tần số",
+	"Function deleted successfully": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Cài đặt chung",
 	"General Settings": "Cấu hình chung",
 	"Generate Image": "Sinh ảnh",
@@ -325,6 +327,10 @@
 	"May": "Tháng 5",
 	"Memories accessible by LLMs will be shown here.": "Memory có thể truy cập bởi LLMs sẽ hiển thị ở đây.",
 	"Memory": "Memory",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Tin nhắn bạn gửi sau khi tạo liên kết sẽ không được chia sẻ. Người dùng có URL sẽ có thể xem cuộc trò chuyện được chia sẻ.",
 	"Minimum Score": "Score tối thiểu",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Tạo chat mới",
 	"New Password": "Mật khẩu mới",
 	"No documents found": "Không tìm thấy tài liệu nào",
+	"No file selected": "",
 	"No results found": "Không tìm thấy kết quả",
 	"No search query generated": "Không có truy vấn tìm kiếm nào được tạo ra",
 	"No source available": "Không có nguồn",
+	"No valves to update": "",
 	"None": "Không ai",
 	"Not factually correct": "Không chính xác so với thực tế",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Lưu ý: Nếu bạn đặt điểm (Score) tối thiểu thì tìm kiếm sẽ chỉ trả về những tài liệu có điểm lớn hơn hoặc bằng điểm tối thiểu.",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "Quyền truy cập micrô bị từ chối",
 	"Permission denied when accessing microphone: {{error}}": "Quyền truy cập micrô bị từ chối: {{error}}",
 	"Personalization": "Cá nhân hóa",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
@@ -560,6 +570,8 @@
 	"Toggle settings": "Bật/tắt cài đặt",
 	"Toggle sidebar": "Bật/tắt thanh bên",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -593,6 +605,7 @@
 	"Utilize": "Sử dụng",
 	"Valid time units:": "Đơn vị thời gian hợp lệ:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "biến",
 	"variable to have them replaced with clipboard content.": "biến để có chúng được thay thế bằng nội dung clipboard.",
 	"Version": "Version",

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

@@ -259,7 +259,9 @@
 	"Form": "手动创建",
 	"Format your variables using square brackets like this:": "使用这样的方括号格式化你的变量:",
 	"Frequency Penalty": "频率惩罚",
+	"Function deleted successfully": "",
 	"Functions": "功能",
+	"Functions imported successfully": "",
 	"General": "通用",
 	"General Settings": "通用设置",
 	"Generate Image": "生成图像",
@@ -325,6 +327,10 @@
 	"May": "五月",
 	"Memories accessible by LLMs will be shown here.": "大语言模型可访问的记忆将在此显示。",
 	"Memory": "记忆",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "创建链接后发送的消息不会被共享。具有 URL 的用户将能够查看共享对话。",
 	"Minimum Score": "最低分",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "新对话",
 	"New Password": "新密码",
 	"No documents found": "未找到文档",
+	"No file selected": "",
 	"No results found": "未找到结果",
 	"No search query generated": "未生成搜索查询",
 	"No source available": "没有可用来源",
+	"No valves to update": "",
 	"None": "无",
 	"Not factually correct": "事实并非如此",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "注意:如果设置了最低分数,搜索只会返回分数大于或等于最低分数的文档。",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "申请麦克风权限被拒绝",
 	"Permission denied when accessing microphone: {{error}}": "申请麦克风权限被拒绝:{{error}}",
 	"Personalization": "个性化",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipeline",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Pipeline 值",
@@ -560,6 +570,8 @@
 	"Toggle settings": "切换设置",
 	"Toggle sidebar": "切换侧边栏",
 	"Tokens To Keep On Context Refresh (num_keep)": "在语境刷新时需保留的 Tokens",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "工具",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -593,6 +605,7 @@
 	"Utilize": "利用",
 	"Valid time units:": "有效时间单位:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "变量",
 	"variable to have them replaced with clipboard content.": "变量将被剪贴板内容替换。",
 	"Version": "版本",

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

@@ -259,7 +259,9 @@
 	"Form": "表單",
 	"Format your variables using square brackets like this:": "像這樣使用方括號來格式化您的變數:",
 	"Frequency Penalty": "頻率懲罰",
+	"Function deleted successfully": "",
 	"Functions": "功能",
+	"Functions imported successfully": "",
 	"General": "常用",
 	"General Settings": "常用設定",
 	"Generate Image": "生成圖片",
@@ -325,6 +327,10 @@
 	"May": "5 月",
 	"Memories accessible by LLMs will be shown here.": "LLM 記憶將會顯示在此處。",
 	"Memory": "記憶",
+	"Memory added successfully": "",
+	"Memory cleared successfully": "",
+	"Memory deleted successfully": "",
+	"Memory updated successfully": "",
 	"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "建立連結後傳送的訊息將不會被共享。具有 URL 的使用者將會能夠檢視共享的聊天。",
 	"Minimum Score": "最低分數",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "新增聊天",
 	"New Password": "新密碼",
 	"No documents found": "找不到文件",
+	"No file selected": "",
 	"No results found": "沒有找到結果",
 	"No search query generated": "沒有生成搜尋查詢",
 	"No source available": "沒有可用的來源",
+	"No valves to update": "",
 	"None": "無",
 	"Not factually correct": "與真實資訊不符",
 	"Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "註:如果設定最低分數,則搜尋將只返回分數大於或等於最低分數的文件。",
@@ -397,6 +405,8 @@
 	"Permission denied when accessing microphone": "存取麥克風時被拒絕權限",
 	"Permission denied when accessing microphone: {{error}}": "存取麥克風時被拒絕權限:{{error}}",
 	"Personalization": "個人化",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "管線",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "管線閥門",
@@ -560,6 +570,8 @@
 	"Toggle settings": "切換設定",
 	"Toggle sidebar": "切換側邊欄",
 	"Tokens To Keep On Context Refresh (num_keep)": "上下文重新整理時保留的 Token 數量(num_keep)",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "工具",
 	"Top K": "Top K",
 	"Top P": "Top P",
@@ -593,6 +605,7 @@
 	"Utilize": "使用",
 	"Valid time units:": "有效時間單位:",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "變數",
 	"variable to have them replaced with clipboard content.": "變數將替換為剪貼簿內容",
 	"Version": "版本",