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

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

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

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

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

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

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

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

@@ -81,7 +81,7 @@
 		});
 		});
 
 
 		if (res) {
 		if (res) {
-			toast.success('Function deleted successfully');
+			toast.success($i18n.t('Function deleted successfully'));
 
 
 			functions.set(await getFunctions(localStorage.token));
 			functions.set(await getFunctions(localStorage.token));
 			models.set(await getModels(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));
 			functions.set(await getFunctions(localStorage.token));
 			models.set(await getModels(localStorage.token));
 			models.set(await getModels(localStorage.token));
 		};
 		};

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

@@ -77,7 +77,7 @@
 		});
 		});
 
 
 		if (res) {
 		if (res) {
-			toast.success('Tool deleted successfully');
+			toast.success($i18n.t('Tool deleted successfully'));
 			tools.set(await getTools(localStorage.token));
 			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));
 			tools.set(await getTools(localStorage.token));
 		};
 		};
 
 

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

@@ -51,7 +51,7 @@
 			}
 			}
 
 
 			if (res) {
 			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": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "قم بتنسيق المتغيرات الخاصة بك باستخدام الأقواس المربعة مثل هذا:",
 	"Format your variables using square brackets like this:": "قم بتنسيق المتغيرات الخاصة بك باستخدام الأقواس المربعة مثل هذا:",
 	"Frequency Penalty": "عقوبة التردد",
 	"Frequency Penalty": "عقوبة التردد",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "عام",
 	"General": "عام",
 	"General Settings": "الاعدادات العامة",
 	"General Settings": "الاعدادات العامة",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "مايو",
 	"May": "مايو",
 	"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
 	"Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.",
 	"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.": "لن تتم مشاركة الرسائل التي ترسلها بعد إنشاء الرابط الخاص بك. سيتمكن المستخدمون الذين لديهم عنوان URL من عرض الدردشة المشتركة",
 	"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": "الحد الأدنى من النقاط",
 	"Minimum Score": "الحد الأدنى من النقاط",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "دردشة جديدة",
 	"New Chat": "دردشة جديدة",
 	"New Password": "كلمة المرور الجديدة",
 	"New Password": "كلمة المرور الجديدة",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "لا توجد نتايج",
 	"No results found": "لا توجد نتايج",
 	"No search query generated": "لم يتم إنشاء استعلام بحث",
 	"No search query generated": "لم يتم إنشاء استعلام بحث",
 	"No source available": "لا يوجد مصدر متاح",
 	"No source available": "لا يوجد مصدر متاح",
+	"No valves to update": "",
 	"None": "اي",
 	"None": "اي",
 	"Not factually correct": "ليس صحيحا من حيث الواقع",
 	"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.": "ملاحظة: إذا قمت بتعيين الحد الأدنى من النقاط، فلن يؤدي البحث إلا إلى إرجاع المستندات التي لها نقاط أكبر من أو تساوي الحد الأدنى من النقاط.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "{{error}} تم رفض الإذن عند الوصول إلى الميكروفون ",
 	"Permission denied when accessing microphone: {{error}}": "{{error}} تم رفض الإذن عند الوصول إلى الميكروفون ",
 	"Personalization": "التخصيص",
 	"Personalization": "التخصيص",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "خطوط الانابيب",
 	"Pipelines": "خطوط الانابيب",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "صمامات خطوط الأنابيب",
 	"Pipelines Valves": "صمامات خطوط الأنابيب",
@@ -565,6 +575,8 @@
 	"Toggle settings": "فتح وأغلاق الاعدادات",
 	"Toggle settings": "فتح وأغلاق الاعدادات",
 	"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
 	"Toggle sidebar": "فتح وأغلاق الشريط الجانبي",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -598,6 +610,7 @@
 	"Utilize": "يستخدم",
 	"Utilize": "يستخدم",
 	"Valid time units:": "وحدات زمنية صالحة:",
 	"Valid time units:": "وحدات زمنية صالحة:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "المتغير",
 	"variable": "المتغير",
 	"variable to have them replaced with clipboard content.": "متغير لاستبدالها بمحتوى الحافظة.",
 	"variable to have them replaced with clipboard content.": "متغير لاستبدالها بمحتوى الحافظة.",
 	"Version": "إصدار",
 	"Version": "إصدار",

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

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

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

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

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

@@ -259,7 +259,9 @@
 	"Form": "Formulari",
 	"Form": "Formulari",
 	"Format your variables using square brackets like this:": "Formata les teves variables utilitzant claudàtors així:",
 	"Format your variables using square brackets like this:": "Formata les teves variables utilitzant claudàtors així:",
 	"Frequency Penalty": "Penalització per freqüència",
 	"Frequency Penalty": "Penalització per freqüència",
+	"Function deleted successfully": "",
 	"Functions": "Funcions",
 	"Functions": "Funcions",
+	"Functions imported successfully": "",
 	"General": "General",
 	"General": "General",
 	"General Settings": "Configuració general",
 	"General Settings": "Configuració general",
 	"Generate Image": "Generar imatge",
 	"Generate Image": "Generar imatge",
@@ -325,6 +327,10 @@
 	"May": "Maig",
 	"May": "Maig",
 	"Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.",
 	"Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.",
 	"Memory": "Memòria",
 	"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.",
 	"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",
 	"Minimum Score": "Puntuació mínima",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nou xat",
 	"New Chat": "Nou xat",
 	"New Password": "Nova contrasenya",
 	"New Password": "Nova contrasenya",
 	"No documents found": "No s'han trobat documents",
 	"No documents found": "No s'han trobat documents",
+	"No file selected": "",
 	"No results found": "No s'han trobat resultats",
 	"No results found": "No s'han trobat resultats",
 	"No search query generated": "No s'ha generat cap consulta",
 	"No search query generated": "No s'ha generat cap consulta",
 	"No source available": "Sense font disponible",
 	"No source available": "Sense font disponible",
+	"No valves to update": "",
 	"None": "Cap",
 	"None": "Cap",
 	"Not factually correct": "No és clarament correcte",
 	"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.",
 	"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": "Permís denegat en accedir al micròfon",
 	"Permission denied when accessing microphone: {{error}}": "Permís denegat en accedir al micròfon: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permís denegat en accedir al micròfon: {{error}}",
 	"Personalization": "Personalització",
 	"Personalization": "Personalització",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Vàlvules de les Pipelines",
 	"Pipelines Valves": "Vàlvules de les Pipelines",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Alterna configuracions",
 	"Toggle settings": "Alterna configuracions",
 	"Toggle sidebar": "Alterna la barra lateral",
 	"Toggle sidebar": "Alterna la barra lateral",
 	"Tokens To Keep On Context Refresh (num_keep)": "Tokens a mantenir en l'actualització del context (num_keep)",
 	"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",
 	"Tools": "Eines",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utilitzar",
 	"Utilize": "Utilitzar",
 	"Valid time units:": "Unitats de temps vàlides:",
 	"Valid time units:": "Unitats de temps vàlides:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",
 	"variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",
 	"Version": "Versió",
 	"Version": "Versió",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "I-format ang imong mga variable gamit ang square brackets sama niini:",
 	"Format your variables using square brackets like this:": "I-format ang imong mga variable gamit ang square brackets sama niini:",
 	"Frequency Penalty": "",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Heneral",
 	"General": "Heneral",
 	"General Settings": "kinatibuk-ang mga setting",
 	"General Settings": "kinatibuk-ang mga setting",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "",
 	"May": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"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.": "",
 	"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",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Bag-ong diskusyon",
 	"New Chat": "Bag-ong diskusyon",
 	"New Password": "Bag-ong Password",
 	"New Password": "Bag-ong Password",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "",
 	"No results found": "",
 	"No search query generated": "",
 	"No search query generated": "",
 	"No source available": "Walay tinubdan nga anaa",
 	"No source available": "Walay tinubdan nga anaa",
+	"No valves to update": "",
 	"None": "",
 	"None": "",
 	"Not factually correct": "",
 	"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.": "",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Gidili ang pagtugot sa dihang nag-access sa mikropono: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Gidili ang pagtugot sa dihang nag-access sa mikropono: {{error}}",
 	"Personalization": "",
 	"Personalization": "",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
 	"Pipelines Valves": "",
@@ -561,6 +571,8 @@
 	"Toggle settings": "I-toggle ang mga setting",
 	"Toggle settings": "I-toggle ang mga setting",
 	"Toggle sidebar": "I-toggle ang sidebar",
 	"Toggle sidebar": "I-toggle ang sidebar",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Ibabaw nga P",
 	"Top P": "Ibabaw nga P",
@@ -594,6 +606,7 @@
 	"Utilize": "Sa paggamit",
 	"Utilize": "Sa paggamit",
 	"Valid time units:": "Balido nga mga yunit sa oras:",
 	"Valid time units:": "Balido nga mga yunit sa oras:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable aron pulihan kini sa mga sulud sa clipboard.",
 	"variable to have them replaced with clipboard content.": "variable aron pulihan kini sa mga sulud sa clipboard.",
 	"Version": "Bersyon",
 	"Version": "Bersyon",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatiere deine Variablen mit eckigen Klammern wie folgt:",
 	"Format your variables using square brackets like this:": "Formatiere deine Variablen mit eckigen Klammern wie folgt:",
 	"Frequency Penalty": "Frequenz-Strafe",
 	"Frequency Penalty": "Frequenz-Strafe",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Allgemein",
 	"General": "Allgemein",
 	"General Settings": "Allgemeine Einstellungen",
 	"General Settings": "Allgemeine Einstellungen",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mai",
 	"May": "Mai",
 	"Memories accessible by LLMs will be shown here.": "Memories, die von LLMs zugänglich sind, werden hier angezeigt.",
 	"Memories accessible by LLMs will be shown here.": "Memories, die von LLMs zugänglich sind, werden hier angezeigt.",
 	"Memory": "Memory",
 	"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.",
 	"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",
 	"Minimum Score": "Mindestscore",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Neuer Chat",
 	"New Chat": "Neuer Chat",
 	"New Password": "Neues Passwort",
 	"New Password": "Neues Passwort",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Keine Ergebnisse gefunden",
 	"No results found": "Keine Ergebnisse gefunden",
 	"No search query generated": "Keine Suchanfrage generiert",
 	"No search query generated": "Keine Suchanfrage generiert",
 	"No source available": "Keine Quelle verfügbar.",
 	"No source available": "Keine Quelle verfügbar.",
+	"No valves to update": "",
 	"None": "Nichts",
 	"None": "Nichts",
 	"Not factually correct": "Nicht sachlich korrekt.",
 	"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.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Zugriff auf das Mikrofon verweigert: {{error}}",
 	"Personalization": "Personalisierung",
 	"Personalization": "Personalisierung",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Rohrleitungen Ventile",
 	"Pipelines Valves": "Rohrleitungen Ventile",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Einstellungen umschalten",
 	"Toggle settings": "Einstellungen umschalten",
 	"Toggle sidebar": "Seitenleiste umschalten",
 	"Toggle sidebar": "Seitenleiste umschalten",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Nutze die",
 	"Utilize": "Nutze die",
 	"Valid time units:": "Gültige Zeiteinheiten:",
 	"Valid time units:": "Gültige Zeiteinheiten:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "Variable",
 	"variable": "Variable",
 	"variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.",
 	"variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.",
 	"Version": "Version",
 	"Version": "Version",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Format variables using square brackets like wow:",
 	"Format your variables using square brackets like this:": "Format variables using square brackets like wow:",
 	"Frequency Penalty": "",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Woweral",
 	"General": "Woweral",
 	"General Settings": "General Doge Settings",
 	"General Settings": "General Doge Settings",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "",
 	"May": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"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.": "",
 	"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",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "New Bark",
 	"New Chat": "New Bark",
 	"New Password": "New Barkword",
 	"New Password": "New Barkword",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "",
 	"No results found": "",
 	"No search query generated": "",
 	"No search query generated": "",
 	"No source available": "No source available",
 	"No source available": "No source available",
+	"No valves to update": "",
 	"None": "",
 	"None": "",
 	"Not factually correct": "",
 	"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.": "",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permission denied when accessing microphone: {{error}}",
 	"Personalization": "Personalization",
 	"Personalization": "Personalization",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
 	"Pipelines Valves": "",
@@ -563,6 +573,8 @@
 	"Toggle settings": "Toggle settings much toggle",
 	"Toggle settings": "Toggle settings much toggle",
 	"Toggle sidebar": "Toggle sidebar much toggle",
 	"Toggle sidebar": "Toggle sidebar much toggle",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K very top",
 	"Top K": "Top K very top",
 	"Top P": "Top P very top",
 	"Top P": "Top P very top",
@@ -596,6 +608,7 @@
 	"Utilize": "Utilize very use",
 	"Utilize": "Utilize very use",
 	"Valid time units:": "Valid time units: much time",
 	"Valid time units:": "Valid time units: much time",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable very variable",
 	"variable": "variable very variable",
 	"variable to have them replaced with clipboard content.": "variable to have them replaced with clipboard content. Very replace.",
 	"variable to have them replaced with clipboard content.": "variable to have them replaced with clipboard content. Very replace.",
 	"Version": "Version much version",
 	"Version": "Version much version",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "",
 	"Format your variables using square brackets like this:": "",
 	"Frequency Penalty": "",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "",
 	"General": "",
 	"General Settings": "",
 	"General Settings": "",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "",
 	"May": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"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.": "",
 	"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 Chat": "",
 	"New Password": "",
 	"New Password": "",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "",
 	"No results found": "",
 	"No search query generated": "",
 	"No search query generated": "",
 	"No source available": "",
 	"No source available": "",
+	"No valves to update": "",
 	"None": "",
 	"None": "",
 	"Not factually correct": "",
 	"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.": "",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Personalization": "",
 	"Personalization": "",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
 	"Pipelines Valves": "",
@@ -561,6 +571,8 @@
 	"Toggle settings": "",
 	"Toggle settings": "",
 	"Toggle sidebar": "",
 	"Toggle sidebar": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "",
 	"Top K": "",
 	"Top P": "",
 	"Top P": "",
@@ -594,6 +606,7 @@
 	"Utilize": "",
 	"Utilize": "",
 	"Valid time units:": "",
 	"Valid time units:": "",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "",
 	"variable": "",
 	"variable to have them replaced with clipboard content.": "",
 	"variable to have them replaced with clipboard content.": "",
 	"Version": "",
 	"Version": "",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "",
 	"Format your variables using square brackets like this:": "",
 	"Frequency Penalty": "",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "",
 	"General": "",
 	"General Settings": "",
 	"General Settings": "",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "",
 	"May": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"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.": "",
 	"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 Chat": "",
 	"New Password": "",
 	"New Password": "",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "",
 	"No results found": "",
 	"No search query generated": "",
 	"No search query generated": "",
 	"No source available": "",
 	"No source available": "",
+	"No valves to update": "",
 	"None": "",
 	"None": "",
 	"Not factually correct": "",
 	"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.": "",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Personalization": "",
 	"Personalization": "",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
 	"Pipelines Valves": "",
@@ -561,6 +571,8 @@
 	"Toggle settings": "",
 	"Toggle settings": "",
 	"Toggle sidebar": "",
 	"Toggle sidebar": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "",
 	"Top K": "",
 	"Top P": "",
 	"Top P": "",
@@ -594,6 +606,7 @@
 	"Utilize": "",
 	"Utilize": "",
 	"Valid time units:": "",
 	"Valid time units:": "",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "",
 	"variable": "",
 	"variable to have them replaced with clipboard content.": "",
 	"variable to have them replaced with clipboard content.": "",
 	"Version": "",
 	"Version": "",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatea tus variables usando corchetes de la siguiente manera:",
 	"Format your variables using square brackets like this:": "Formatea tus variables usando corchetes de la siguiente manera:",
 	"Frequency Penalty": "Penalización de frecuencia",
 	"Frequency Penalty": "Penalización de frecuencia",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "General",
 	"General": "General",
 	"General Settings": "Opciones Generales",
 	"General Settings": "Opciones Generales",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mayo",
 	"May": "Mayo",
 	"Memories accessible by LLMs will be shown here.": "Las memorias accesibles por los LLMs se mostrarán aquí.",
 	"Memories accessible by LLMs will be shown here.": "Las memorias accesibles por los LLMs se mostrarán aquí.",
 	"Memory": "Memoria",
 	"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.",
 	"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",
 	"Minimum Score": "Puntuación mínima",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nuevo Chat",
 	"New Chat": "Nuevo Chat",
 	"New Password": "Nueva Contraseña",
 	"New Password": "Nueva Contraseña",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "No se han encontrado resultados",
 	"No results found": "No se han encontrado resultados",
 	"No search query generated": "No se ha generado ninguna consulta de búsqueda",
 	"No search query generated": "No se ha generado ninguna consulta de búsqueda",
 	"No source available": "No hay fuente disponible",
 	"No source available": "No hay fuente disponible",
+	"No valves to update": "",
 	"None": "Ninguno",
 	"None": "Ninguno",
 	"Not factually correct": "No es correcto en todos los aspectos",
 	"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.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Permiso denegado al acceder al micrófono: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permiso denegado al acceder al micrófono: {{error}}",
 	"Personalization": "Personalización",
 	"Personalization": "Personalización",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Tuberías",
 	"Pipelines": "Tuberías",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Tuberías Válvulas",
 	"Pipelines Valves": "Tuberías Válvulas",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Alternar configuración",
 	"Toggle settings": "Alternar configuración",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utilizar",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades válidas de tiempo:",
 	"Valid time units:": "Unidades válidas de tiempo:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable para reemplazarlos con el contenido del portapapeles.",
 	"variable to have them replaced with clipboard content.": "variable para reemplazarlos con el contenido del portapapeles.",
 	"Version": "Versión",
 	"Version": "Versión",

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

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

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Muotoile muuttujat hakasulkeilla näin:",
 	"Format your variables using square brackets like this:": "Muotoile muuttujat hakasulkeilla näin:",
 	"Frequency Penalty": "Taajuussakko",
 	"Frequency Penalty": "Taajuussakko",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Yleinen",
 	"General": "Yleinen",
 	"General Settings": "Yleisasetukset",
 	"General Settings": "Yleisasetukset",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "toukokuu",
 	"May": "toukokuu",
 	"Memories accessible by LLMs will be shown here.": "Muistitiedostot, joita LLM-ohjelmat käyttävät, näkyvät tässä.",
 	"Memories accessible by LLMs will be shown here.": "Muistitiedostot, joita LLM-ohjelmat käyttävät, näkyvät tässä.",
 	"Memory": "Muisti",
 	"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.",
 	"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",
 	"Minimum Score": "Vähimmäispisteet",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Uusi keskustelu",
 	"New Chat": "Uusi keskustelu",
 	"New Password": "Uusi salasana",
 	"New Password": "Uusi salasana",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Ei tuloksia",
 	"No results found": "Ei tuloksia",
 	"No search query generated": "Hakukyselyä ei luotu",
 	"No search query generated": "Hakukyselyä ei luotu",
 	"No source available": "Ei lähdettä saatavilla",
 	"No source available": "Ei lähdettä saatavilla",
+	"No valves to update": "",
 	"None": "Ei lainkaan",
 	"None": "Ei lainkaan",
 	"Not factually correct": "Ei faktisesti oikein",
 	"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ä.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Mikrofonin käyttöoikeus evätty: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Mikrofonin käyttöoikeus evätty: {{error}}",
 	"Personalization": "Henkilökohtaisuus",
 	"Personalization": "Henkilökohtaisuus",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Putkistot",
 	"Pipelines": "Putkistot",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Putkistot Venttiilit",
 	"Pipelines Valves": "Putkistot Venttiilit",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Kytke asetukset",
 	"Toggle settings": "Kytke asetukset",
 	"Toggle sidebar": "Kytke sivupalkki",
 	"Toggle sidebar": "Kytke sivupalkki",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Käytä",
 	"Utilize": "Käytä",
 	"Valid time units:": "Kelvolliset aikayksiköt:",
 	"Valid time units:": "Kelvolliset aikayksiköt:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "muuttuja",
 	"variable": "muuttuja",
 	"variable to have them replaced with clipboard content.": "muuttuja korvataan leikepöydän sisällöllä.",
 	"variable to have them replaced with clipboard content.": "muuttuja korvataan leikepöydän sisällöllä.",
 	"Version": "Versio",
 	"Version": "Versio",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :",
 	"Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :",
 	"Frequency Penalty": "Pénalité de fréquence",
 	"Frequency Penalty": "Pénalité de fréquence",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Général",
 	"General": "Général",
 	"General Settings": "Paramètres généraux",
 	"General Settings": "Paramètres généraux",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mai",
 	"May": "Mai",
 	"Memories accessible by LLMs will be shown here.": "Les mémoires accessibles par les LLM seront affichées ici.",
 	"Memories accessible by LLMs will be shown here.": "Les mémoires accessibles par les LLM seront affichées ici.",
 	"Memory": "Mémoire",
 	"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é.",
 	"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",
 	"Minimum Score": "Score minimum",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nouvelle discussion",
 	"New Chat": "Nouvelle discussion",
 	"New Password": "Nouveau mot de passe",
 	"New Password": "Nouveau mot de passe",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Aucun résultat trouvé",
 	"No results found": "Aucun résultat trouvé",
 	"No search query generated": "Aucune requête de recherche générée",
 	"No search query generated": "Aucune requête de recherche générée",
 	"No source available": "Aucune source disponible",
 	"No source available": "Aucune source disponible",
+	"No valves to update": "",
 	"None": "Aucune",
 	"None": "Aucune",
 	"Not factually correct": "Non, pas exactement correct",
 	"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.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
 	"Personalization": "Personnalisation",
 	"Personalization": "Personnalisation",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Vannes de pipelines",
 	"Pipelines Valves": "Vannes de pipelines",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Basculer les paramètres",
 	"Toggle settings": "Basculer les paramètres",
 	"Toggle sidebar": "Basculer la barre latérale",
 	"Toggle sidebar": "Basculer la barre latérale",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utiliser",
 	"Utilize": "Utiliser",
 	"Valid time units:": "Unités de temps valides :",
 	"Valid time units:": "Unités de temps valides :",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
 	"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
 	"Version": "Version",
 	"Version": "Version",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :",
 	"Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :",
 	"Frequency Penalty": "Pénalité de fréquence",
 	"Frequency Penalty": "Pénalité de fréquence",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Général",
 	"General": "Général",
 	"General Settings": "Paramètres Généraux",
 	"General Settings": "Paramètres Généraux",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mai",
 	"May": "Mai",
 	"Memories accessible by LLMs will be shown here.": "Les Mémoires des LLMs apparaîtront ici.",
 	"Memories accessible by LLMs will be shown here.": "Les Mémoires des LLMs apparaîtront ici.",
 	"Memory": "Mémoire",
 	"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é.",
 	"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",
 	"Minimum Score": "Score Minimum",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nouveau chat",
 	"New Chat": "Nouveau chat",
 	"New Password": "Nouveau mot de passe",
 	"New Password": "Nouveau mot de passe",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Aucun résultat",
 	"No results found": "Aucun résultat",
 	"No search query generated": "Aucune requête de recherche générée",
 	"No search query generated": "Aucune requête de recherche générée",
 	"No source available": "Aucune source disponible",
 	"No source available": "Aucune source disponible",
+	"No valves to update": "",
 	"None": "Aucun",
 	"None": "Aucun",
 	"Not factually correct": "Faits incorrects",
 	"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.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permission refusée lors de l'accès au microphone : {{error}}",
 	"Personalization": "Personnalisation",
 	"Personalization": "Personnalisation",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Vannes de pipelines",
 	"Pipelines Valves": "Vannes de pipelines",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Basculer les paramètres",
 	"Toggle settings": "Basculer les paramètres",
 	"Toggle sidebar": "Basculer la barre latérale",
 	"Toggle sidebar": "Basculer la barre latérale",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utiliser",
 	"Utilize": "Utiliser",
 	"Valid time units:": "Unités de temps valides :",
 	"Valid time units:": "Unités de temps valides :",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
 	"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
 	"Version": "Version",
 	"Version": "Version",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "עצב את המשתנים שלך באמצעות סוגריים מרובעים כך:",
 	"Format your variables using square brackets like this:": "עצב את המשתנים שלך באמצעות סוגריים מרובעים כך:",
 	"Frequency Penalty": "עונש תדירות",
 	"Frequency Penalty": "עונש תדירות",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "כללי",
 	"General": "כללי",
 	"General Settings": "הגדרות כלליות",
 	"General Settings": "הגדרות כלליות",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "מאי",
 	"May": "מאי",
 	"Memories accessible by LLMs will be shown here.": "מזכירים נגישים על ידי LLMs יוצגו כאן.",
 	"Memories accessible by LLMs will be shown here.": "מזכירים נגישים על ידי LLMs יוצגו כאן.",
 	"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.": "הודעות שתשלח לאחר יצירת הקישור לא ישותפו. משתמשים עם כתובת האתר יוכלו לצפות בצ'אט המשותף.",
 	"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",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "צ'אט חדש",
 	"New Chat": "צ'אט חדש",
 	"New Password": "סיסמה חדשה",
 	"New Password": "סיסמה חדשה",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "לא נמצאו תוצאות",
 	"No results found": "לא נמצאו תוצאות",
 	"No search query generated": "לא נוצרה שאילתת חיפוש",
 	"No search query generated": "לא נוצרה שאילתת חיפוש",
 	"No source available": "אין מקור זמין",
 	"No source available": "אין מקור זמין",
+	"No valves to update": "",
 	"None": "ללא",
 	"None": "ללא",
 	"Not factually correct": "לא נכון מבחינה עובדתית",
 	"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.": "הערה: אם תקבע ציון מינימלי, החיפוש יחזיר רק מסמכים עם ציון שגבוה או שווה לציון המינימלי.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "ההרשאה נדחתה בעת גישה למיקרופון: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "ההרשאה נדחתה בעת גישה למיקרופון: {{error}}",
 	"Personalization": "תאור",
 	"Personalization": "תאור",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "צינורות",
 	"Pipelines": "צינורות",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "צינורות שסתומים",
 	"Pipelines Valves": "צינורות שסתומים",
@@ -562,6 +572,8 @@
 	"Toggle settings": "החלפת מצב של הגדרות",
 	"Toggle settings": "החלפת מצב של הגדרות",
 	"Toggle sidebar": "החלפת מצב של סרגל הצד",
 	"Toggle sidebar": "החלפת מצב של סרגל הצד",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "שימוש",
 	"Utilize": "שימוש",
 	"Valid time units:": "יחידות זמן תקינות:",
 	"Valid time units:": "יחידות זמן תקינות:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "משתנה",
 	"variable": "משתנה",
 	"variable to have them replaced with clipboard content.": "משתנה להחליפו ב- clipboard תוכן.",
 	"variable to have them replaced with clipboard content.": "משתנה להחליפו ב- clipboard תוכן.",
 	"Version": "גרסה",
 	"Version": "גרסה",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "वर्गाकार कोष्ठकों का उपयोग करके अपने चरों को इस प्रकार प्रारूपित करें :",
 	"Format your variables using square brackets like this:": "वर्गाकार कोष्ठकों का उपयोग करके अपने चरों को इस प्रकार प्रारूपित करें :",
 	"Frequency Penalty": "फ्रीक्वेंसी पेनल्टी",
 	"Frequency Penalty": "फ्रीक्वेंसी पेनल्टी",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "सामान्य",
 	"General": "सामान्य",
 	"General Settings": "सामान्य सेटिंग्स",
 	"General Settings": "सामान्य सेटिंग्स",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "मेई",
 	"May": "मेई",
 	"Memories accessible by LLMs will be shown here.": "एलएलएम द्वारा सुलभ यादें यहां दिखाई जाएंगी।",
 	"Memories accessible by LLMs will be shown here.": "एलएलएम द्वारा सुलभ यादें यहां दिखाई जाएंगी।",
 	"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.": "अपना लिंक बनाने के बाद आपके द्वारा भेजे गए संदेश साझा नहीं किए जाएंगे। यूआरएल वाले यूजर्स शेयर की गई चैट देख पाएंगे।",
 	"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 Chat": "नई चैट",
 	"New Password": "नया पासवर्ड",
 	"New Password": "नया पासवर्ड",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "कोई परिणाम नहीं मिला",
 	"No results found": "कोई परिणाम नहीं मिला",
 	"No search query generated": "कोई खोज क्वेरी जनरेट नहीं हुई",
 	"No search query generated": "कोई खोज क्वेरी जनरेट नहीं हुई",
 	"No source available": "कोई स्रोत उपलब्ध नहीं है",
 	"No source available": "कोई स्रोत उपलब्ध नहीं है",
+	"No valves to update": "",
 	"None": "कोई नहीं",
 	"None": "कोई नहीं",
 	"Not factually correct": "तथ्यात्मक रूप से सही नहीं है",
 	"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.": "ध्यान दें: यदि आप न्यूनतम स्कोर निर्धारित करते हैं, तो खोज केवल न्यूनतम स्कोर से अधिक या उसके बराबर स्कोर वाले दस्तावेज़ वापस लाएगी।",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "माइक्रोफ़ोन तक पहुँचने पर अनुमति अस्वीकृत: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "माइक्रोफ़ोन तक पहुँचने पर अनुमति अस्वीकृत: {{error}}",
 	"Personalization": "पेरसनलाइज़मेंट",
 	"Personalization": "पेरसनलाइज़मेंट",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "पाइपलाइनों",
 	"Pipelines": "पाइपलाइनों",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "पाइपलाइन वाल्व",
 	"Pipelines Valves": "पाइपलाइन वाल्व",
@@ -561,6 +571,8 @@
 	"Toggle settings": "सेटिंग्स टॉगल करें",
 	"Toggle settings": "सेटिंग्स टॉगल करें",
 	"Toggle sidebar": "साइडबार टॉगल करें",
 	"Toggle sidebar": "साइडबार टॉगल करें",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "शीर्ष  K",
 	"Top K": "शीर्ष  K",
 	"Top P": "शीर्ष  P",
 	"Top P": "शीर्ष  P",
@@ -594,6 +606,7 @@
 	"Utilize": "उपयोग करें",
 	"Utilize": "उपयोग करें",
 	"Valid time units:": "मान्य समय इकाइयाँ:",
 	"Valid time units:": "मान्य समय इकाइयाँ:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "वेरिएबल",
 	"variable": "वेरिएबल",
 	"variable to have them replaced with clipboard content.": "उन्हें क्लिपबोर्ड सामग्री से बदलने के लिए वेरिएबल।",
 	"variable to have them replaced with clipboard content.": "उन्हें क्लिपबोर्ड सामग्री से बदलने के लिए वेरिएबल।",
 	"Version": "संस्करण",
 	"Version": "संस्करण",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatirajte svoje varijable pomoću uglatih zagrada ovako:",
 	"Format your variables using square brackets like this:": "Formatirajte svoje varijable pomoću uglatih zagrada ovako:",
 	"Frequency Penalty": "Kazna za učestalost",
 	"Frequency Penalty": "Kazna za učestalost",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Općenito",
 	"General": "Općenito",
 	"General Settings": "Opće postavke",
 	"General Settings": "Opće postavke",
 	"Generate Image": "Gneriraj sliku",
 	"Generate Image": "Gneriraj sliku",
@@ -325,6 +327,10 @@
 	"May": "Svibanj",
 	"May": "Svibanj",
 	"Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.",
 	"Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.",
 	"Memory": "Memorija",
 	"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.",
 	"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",
 	"Minimum Score": "Minimalna ocjena",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Novi razgovor",
 	"New Chat": "Novi razgovor",
 	"New Password": "Nova lozinka",
 	"New Password": "Nova lozinka",
 	"No documents found": "Dokumenti nisu pronađeni",
 	"No documents found": "Dokumenti nisu pronađeni",
+	"No file selected": "",
 	"No results found": "Nema rezultata",
 	"No results found": "Nema rezultata",
 	"No search query generated": "Nije generiran upit za pretraživanje",
 	"No search query generated": "Nije generiran upit za pretraživanje",
 	"No source available": "Nema dostupnog izvora",
 	"No source available": "Nema dostupnog izvora",
+	"No valves to update": "",
 	"None": "Ništa",
 	"None": "Ništa",
 	"Not factually correct": "Nije činjenično točno",
 	"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.",
 	"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": "Dopuštenje je odbijeno prilikom pristupa mikrofonu",
 	"Permission denied when accessing microphone: {{error}}": "Pristup mikrofonu odbijen: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Pristup mikrofonu odbijen: {{error}}",
 	"Personalization": "Prilagodba",
 	"Personalization": "Prilagodba",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Cjevovodi",
 	"Pipelines": "Cjevovodi",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Ventili za cjevovode",
 	"Pipelines Valves": "Ventili za cjevovode",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Prebaci postavke",
 	"Toggle settings": "Prebaci postavke",
 	"Toggle sidebar": "Prebaci bočnu traku",
 	"Toggle sidebar": "Prebaci bočnu traku",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "Alati",
 	"Tools": "Alati",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Iskoristi",
 	"Utilize": "Iskoristi",
 	"Valid time units:": "Važeće vremenske jedinice:",
 	"Valid time units:": "Važeće vremenske jedinice:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "varijabla",
 	"variable": "varijabla",
 	"variable to have them replaced with clipboard content.": "varijabla za zamjenu sadržajem međuspremnika.",
 	"variable to have them replaced with clipboard content.": "varijabla za zamjenu sadržajem međuspremnika.",
 	"Version": "Verzija",
 	"Version": "Verzija",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatta le tue variabili usando parentesi quadre come questa:",
 	"Format your variables using square brackets like this:": "Formatta le tue variabili usando parentesi quadre come questa:",
 	"Frequency Penalty": "Penalità di frequenza",
 	"Frequency Penalty": "Penalità di frequenza",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Generale",
 	"General": "Generale",
 	"General Settings": "Impostazioni generali",
 	"General Settings": "Impostazioni generali",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Maggio",
 	"May": "Maggio",
 	"Memories accessible by LLMs will be shown here.": "I memori accessibili ai LLM saranno mostrati qui.",
 	"Memories accessible by LLMs will be shown here.": "I memori accessibili ai LLM saranno mostrati qui.",
 	"Memory": "Memoria",
 	"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.",
 	"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",
 	"Minimum Score": "Punteggio minimo",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nuova chat",
 	"New Chat": "Nuova chat",
 	"New Password": "Nuova password",
 	"New Password": "Nuova password",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Nessun risultato trovato",
 	"No results found": "Nessun risultato trovato",
 	"No search query generated": "Nessuna query di ricerca generata",
 	"No search query generated": "Nessuna query di ricerca generata",
 	"No source available": "Nessuna fonte disponibile",
 	"No source available": "Nessuna fonte disponibile",
+	"No valves to update": "",
 	"None": "Nessuno",
 	"None": "Nessuno",
 	"Not factually correct": "Non corretto dal punto di vista fattuale",
 	"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.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Autorizzazione negata durante l'accesso al microfono: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Autorizzazione negata durante l'accesso al microfono: {{error}}",
 	"Personalization": "Personalizzazione",
 	"Personalization": "Personalizzazione",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Condutture",
 	"Pipelines": "Condutture",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Valvole per tubazioni",
 	"Pipelines Valves": "Valvole per tubazioni",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Attiva/disattiva impostazioni",
 	"Toggle settings": "Attiva/disattiva impostazioni",
 	"Toggle sidebar": "Attiva/disattiva barra laterale",
 	"Toggle sidebar": "Attiva/disattiva barra laterale",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utilizza",
 	"Utilize": "Utilizza",
 	"Valid time units:": "Unità di tempo valide:",
 	"Valid time units:": "Unità di tempo valide:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variabile",
 	"variable": "variabile",
 	"variable to have them replaced with clipboard content.": "variabile per farli sostituire con il contenuto degli appunti.",
 	"variable to have them replaced with clipboard content.": "variabile per farli sostituire con il contenuto degli appunti.",
 	"Version": "Versione",
 	"Version": "Versione",

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

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

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "დააფორმატეთ თქვენი ცვლადები კვადრატული ფრჩხილების გამოყენებით:",
 	"Format your variables using square brackets like this:": "დააფორმატეთ თქვენი ცვლადები კვადრატული ფრჩხილების გამოყენებით:",
 	"Frequency Penalty": "სიხშირის ჯარიმა",
 	"Frequency Penalty": "სიხშირის ჯარიმა",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "ზოგადი",
 	"General": "ზოგადი",
 	"General Settings": "ზოგადი პარამეტრები",
 	"General Settings": "ზოგადი პარამეტრები",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "მაი",
 	"May": "მაი",
 	"Memories accessible by LLMs will be shown here.": "ლლმ-ს აქვს ხელმისაწვდომი მემორიები აქ იქნება.",
 	"Memories accessible by LLMs will be shown here.": "ლლმ-ს აქვს ხელმისაწვდომი მემორიები აქ იქნება.",
 	"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.": "შეტყობინებები, რომელსაც თქვენ აგზავნით თქვენი ბმულის შექმნის შემდეგ, არ იქნება გაზიარებული. URL– ის მქონე მომხმარებლებს შეეძლებათ ნახონ საერთო ჩატი.",
 	"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": "მინიმალური ქულა",
 	"Minimum Score": "მინიმალური ქულა",
 	"Mirostat": "მიროსტატი",
 	"Mirostat": "მიროსტატი",
@@ -353,9 +359,11 @@
 	"New Chat": "ახალი მიმოწერა",
 	"New Chat": "ახალი მიმოწერა",
 	"New Password": "ახალი პაროლი",
 	"New Password": "ახალი პაროლი",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "ჩვენ ვერ პოულობით ნაპოვნი ჩაწერები",
 	"No results found": "ჩვენ ვერ პოულობით ნაპოვნი ჩაწერები",
 	"No search query generated": "ძიების მოთხოვნა არ არის გენერირებული",
 	"No search query generated": "ძიების მოთხოვნა არ არის გენერირებული",
 	"No source available": "წყარო არ არის ხელმისაწვდომი",
 	"No source available": "წყარო არ არის ხელმისაწვდომი",
+	"No valves to update": "",
 	"None": "არცერთი",
 	"None": "არცერთი",
 	"Not factually correct": "არ ვეთანხმები პირდაპირ ვერც ვეთანხმები",
 	"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.": "შენიშვნა: თუ თქვენ დააყენებთ მინიმალურ ქულას, ძებნა დააბრუნებს მხოლოდ დოკუმენტებს მინიმალური ქულის მეტი ან ტოლი ქულით.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "ნებართვა უარყოფილია მიკროფონზე წვდომისას: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "ნებართვა უარყოფილია მიკროფონზე წვდომისას: {{error}}",
 	"Personalization": "პერსონალიზაცია",
 	"Personalization": "პერსონალიზაცია",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "მილსადენები",
 	"Pipelines": "მილსადენები",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "მილსადენების სარქველები",
 	"Pipelines Valves": "მილსადენების სარქველები",
@@ -561,6 +571,8 @@
 	"Toggle settings": "პარამეტრების გადართვა",
 	"Toggle settings": "პარამეტრების გადართვა",
 	"Toggle sidebar": "გვერდითი ზოლის გადართვა",
 	"Toggle sidebar": "გვერდითი ზოლის გადართვა",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "ტოპ K",
 	"Top K": "ტოპ K",
 	"Top P": "ტოპ P",
 	"Top P": "ტოპ P",
@@ -594,6 +606,7 @@
 	"Utilize": "გამოყენება",
 	"Utilize": "გამოყენება",
 	"Valid time units:": "მოქმედი დროის ერთეულები",
 	"Valid time units:": "მოქმედი დროის ერთეულები",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "ცვლადი",
 	"variable": "ცვლადი",
 	"variable to have them replaced with clipboard content.": "ცვლადი, რომ შეცვალოს ისინი ბუფერში შიგთავსით.",
 	"variable to have them replaced with clipboard content.": "ცვლადი, რომ შეცვალოს ისინი ბუფერში შიგთავსით.",
 	"Version": "ვერსია",
 	"Version": "ვერსია",

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

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

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatuokite kintamuosius su kvadratiniais skliausteliais:",
 	"Format your variables using square brackets like this:": "Formatuokite kintamuosius su kvadratiniais skliausteliais:",
 	"Frequency Penalty": "",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Bendri",
 	"General": "Bendri",
 	"General Settings": "Bendri nustatymai",
 	"General Settings": "Bendri nustatymai",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "gegužė",
 	"May": "gegužė",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"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.": "",
 	"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",
 	"Minimum Score": "Minimalus rezultatas",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Naujas pokalbis",
 	"New Chat": "Naujas pokalbis",
 	"New Password": "Naujas slaptažodis",
 	"New Password": "Naujas slaptažodis",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Rezultatų nerasta",
 	"No results found": "Rezultatų nerasta",
 	"No search query generated": "",
 	"No search query generated": "",
 	"No source available": "Šaltinių nerasta",
 	"No source available": "Šaltinių nerasta",
+	"No valves to update": "",
 	"None": "",
 	"None": "",
 	"Not factually correct": "Faktiškai netikslu",
 	"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į",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Leidimas naudoti mikrofoną atmestas: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Leidimas naudoti mikrofoną atmestas: {{error}}",
 	"Personalization": "",
 	"Personalization": "",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
 	"Pipelines Valves": "",
@@ -563,6 +573,8 @@
 	"Toggle settings": "Atverti/užverti parametrus",
 	"Toggle settings": "Atverti/užverti parametrus",
 	"Toggle sidebar": "Atverti/užverti šoninį meniu",
 	"Toggle sidebar": "Atverti/užverti šoninį meniu",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -596,6 +608,7 @@
 	"Utilize": "Naudoti",
 	"Utilize": "Naudoti",
 	"Valid time units:": "Teisingūs laiko vienetai :",
 	"Valid time units:": "Teisingūs laiko vienetai :",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "kintamasis",
 	"variable": "kintamasis",
 	"variable to have them replaced with clipboard content.": "kintamoji pakeičiama kopijuoklės turiniu.",
 	"variable to have them replaced with clipboard content.": "kintamoji pakeičiama kopijuoklės turiniu.",
 	"Version": "Versija",
 	"Version": "Versija",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatér variablene dine med hakeparenteser som dette:",
 	"Format your variables using square brackets like this:": "Formatér variablene dine med hakeparenteser som dette:",
 	"Frequency Penalty": "Frekvensstraff",
 	"Frequency Penalty": "Frekvensstraff",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Generelt",
 	"General": "Generelt",
 	"General Settings": "Generelle innstillinger",
 	"General Settings": "Generelle innstillinger",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mai",
 	"May": "Mai",
 	"Memories accessible by LLMs will be shown here.": "Minner tilgjengelige for LLM-er vil vises her.",
 	"Memories accessible by LLMs will be shown here.": "Minner tilgjengelige for LLM-er vil vises her.",
 	"Memory": "Minne",
 	"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.",
 	"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",
 	"Minimum Score": "Minimum poengsum",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Ny chat",
 	"New Chat": "Ny chat",
 	"New Password": "Nytt passord",
 	"New Password": "Nytt passord",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Ingen resultater funnet",
 	"No results found": "Ingen resultater funnet",
 	"No search query generated": "Ingen søkeforespørsel generert",
 	"No search query generated": "Ingen søkeforespørsel generert",
 	"No source available": "Ingen kilde tilgjengelig",
 	"No source available": "Ingen kilde tilgjengelig",
+	"No valves to update": "",
 	"None": "Ingen",
 	"None": "Ingen",
 	"Not factually correct": "Ikke faktuelt korrekt",
 	"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.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Tillatelse nektet ved tilgang til mikrofon: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Tillatelse nektet ved tilgang til mikrofon: {{error}}",
 	"Personalization": "Personalisering",
 	"Personalization": "Personalisering",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Pipeline-ventiler",
 	"Pipelines Valves": "Pipeline-ventiler",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Veksle innstillinger",
 	"Toggle settings": "Veksle innstillinger",
 	"Toggle sidebar": "Veksle sidefelt",
 	"Toggle sidebar": "Veksle sidefelt",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Utnytt",
 	"Utilize": "Utnytt",
 	"Valid time units:": "Gyldige tidsenheter:",
 	"Valid time units:": "Gyldige tidsenheter:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variabel",
 	"variable": "variabel",
 	"variable to have them replaced with clipboard content.": "variabel for å få dem erstattet med utklippstavleinnhold.",
 	"variable to have them replaced with clipboard content.": "variabel for å få dem erstattet med utklippstavleinnhold.",
 	"Version": "Versjon",
 	"Version": "Versjon",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatteer je variabelen met vierkante haken zoals dit:",
 	"Format your variables using square brackets like this:": "Formatteer je variabelen met vierkante haken zoals dit:",
 	"Frequency Penalty": "Frequentie Straf",
 	"Frequency Penalty": "Frequentie Straf",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Algemeen",
 	"General": "Algemeen",
 	"General Settings": "Algemene Instellingen",
 	"General Settings": "Algemene Instellingen",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mei",
 	"May": "Mei",
 	"Memories accessible by LLMs will be shown here.": "Geheugen toegankelijk voor LLMs wordt hier getoond.",
 	"Memories accessible by LLMs will be shown here.": "Geheugen toegankelijk voor LLMs wordt hier getoond.",
 	"Memory": "Geheugen",
 	"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.",
 	"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",
 	"Minimum Score": "Minimale Score",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nieuwe Chat",
 	"New Chat": "Nieuwe Chat",
 	"New Password": "Nieuw Wachtwoord",
 	"New Password": "Nieuw Wachtwoord",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Geen resultaten gevonden",
 	"No results found": "Geen resultaten gevonden",
 	"No search query generated": "Geen zoekopdracht gegenereerd",
 	"No search query generated": "Geen zoekopdracht gegenereerd",
 	"No source available": "Geen bron beschikbaar",
 	"No source available": "Geen bron beschikbaar",
+	"No valves to update": "",
 	"None": "Geen",
 	"None": "Geen",
 	"Not factually correct": "Feitelijk niet juist",
 	"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.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Toestemming geweigerd bij toegang tot microfoon: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Toestemming geweigerd bij toegang tot microfoon: {{error}}",
 	"Personalization": "Personalisatie",
 	"Personalization": "Personalisatie",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pijpleidingen",
 	"Pipelines": "Pijpleidingen",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Pijpleidingen Kleppen",
 	"Pipelines Valves": "Pijpleidingen Kleppen",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Wissel instellingen",
 	"Toggle settings": "Wissel instellingen",
 	"Toggle sidebar": "Wissel sidebar",
 	"Toggle sidebar": "Wissel sidebar",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Utilize",
 	"Utilize": "Utilize",
 	"Valid time units:": "Geldige tijdseenheden:",
 	"Valid time units:": "Geldige tijdseenheden:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variabele",
 	"variable": "variabele",
 	"variable to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.",
 	"variable to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.",
 	"Version": "Versie",
 	"Version": "Versie",

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

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

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatuj swoje zmienne, używając nawiasów kwadratowych, np.",
 	"Format your variables using square brackets like this:": "Formatuj swoje zmienne, używając nawiasów kwadratowych, np.",
 	"Frequency Penalty": "Kara za częstotliwość",
 	"Frequency Penalty": "Kara za częstotliwość",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Ogólne",
 	"General": "Ogólne",
 	"General Settings": "Ogólne ustawienia",
 	"General Settings": "Ogólne ustawienia",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Maj",
 	"May": "Maj",
 	"Memories accessible by LLMs will be shown here.": "Pamięci używane przez LLM będą tutaj widoczne.",
 	"Memories accessible by LLMs will be shown here.": "Pamięci używane przez LLM będą tutaj widoczne.",
 	"Memory": "Pamięć",
 	"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.",
 	"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",
 	"Minimum Score": "Minimalny wynik",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nowy czat",
 	"New Chat": "Nowy czat",
 	"New Password": "Nowe hasło",
 	"New Password": "Nowe hasło",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Nie znaleziono rezultatów",
 	"No results found": "Nie znaleziono rezultatów",
 	"No search query generated": "Nie wygenerowano zapytania wyszukiwania",
 	"No search query generated": "Nie wygenerowano zapytania wyszukiwania",
 	"No source available": "Źródło nie dostępne",
 	"No source available": "Źródło nie dostępne",
+	"No valves to update": "",
 	"None": "Żaden",
 	"None": "Żaden",
 	"Not factually correct": "Nie zgodne z faktami",
 	"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.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Odmowa dostępu do mikrofonu: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Odmowa dostępu do mikrofonu: {{error}}",
 	"Personalization": "Personalizacja",
 	"Personalization": "Personalizacja",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Rurociągów",
 	"Pipelines": "Rurociągów",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Rurociągi Zawory",
 	"Pipelines Valves": "Rurociągi Zawory",
@@ -563,6 +573,8 @@
 	"Toggle settings": "Przełącz ustawienia",
 	"Toggle settings": "Przełącz ustawienia",
 	"Toggle sidebar": "Przełącz panel boczny",
 	"Toggle sidebar": "Przełącz panel boczny",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Najlepsze K",
 	"Top K": "Najlepsze K",
 	"Top P": "Najlepsze P",
 	"Top P": "Najlepsze P",
@@ -596,6 +608,7 @@
 	"Utilize": "Wykorzystaj",
 	"Utilize": "Wykorzystaj",
 	"Valid time units:": "Poprawne jednostki czasu:",
 	"Valid time units:": "Poprawne jednostki czasu:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "zmienna",
 	"variable": "zmienna",
 	"variable to have them replaced with clipboard content.": "zmienna która zostanie zastąpiona zawartością schowka.",
 	"variable to have them replaced with clipboard content.": "zmienna która zostanie zastąpiona zawartością schowka.",
 	"Version": "Wersja",
 	"Version": "Wersja",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formate suas variáveis usando colchetes como este:",
 	"Format your variables using square brackets like this:": "Formate suas variáveis usando colchetes como este:",
 	"Frequency Penalty": "Penalidade de Frequência",
 	"Frequency Penalty": "Penalidade de Frequência",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Geral",
 	"General": "Geral",
 	"General Settings": "Configurações Gerais",
 	"General Settings": "Configurações Gerais",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Maio",
 	"May": "Maio",
 	"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
 	"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
 	"Memory": "Memória",
 	"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.",
 	"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",
 	"Minimum Score": "Pontuação Mínima",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Novo Bate-papo",
 	"New Chat": "Novo Bate-papo",
 	"New Password": "Nova Senha",
 	"New Password": "Nova Senha",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Nenhum resultado encontrado",
 	"No results found": "Nenhum resultado encontrado",
 	"No search query generated": "Nenhuma consulta de pesquisa gerada",
 	"No search query generated": "Nenhuma consulta de pesquisa gerada",
 	"No source available": "Nenhuma fonte disponível",
 	"No source available": "Nenhuma fonte disponível",
+	"No valves to update": "",
 	"None": "Nenhum",
 	"None": "Nenhum",
 	"Not factually correct": "Não é correto em termos factuais",
 	"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.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Permissão negada ao acessar o microfone: {{error}}",
 	"Personalization": "Personalização",
 	"Personalization": "Personalização",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelines",
 	"Pipelines": "Pipelines",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Válvulas de Dutos",
 	"Pipelines Valves": "Válvulas de Dutos",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Alternar configurações",
 	"Toggle settings": "Alternar configurações",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utilizar",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades de tempo válidas:",
 	"Valid time units:": "Unidades de tempo válidas:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variável",
 	"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.",
 	"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",
 	"Version": "Versão",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formate as suas variáveis usando parenteses rectos como este:",
 	"Format your variables using square brackets like this:": "Formate as suas variáveis usando parenteses rectos como este:",
 	"Frequency Penalty": "Penalidade de Frequência",
 	"Frequency Penalty": "Penalidade de Frequência",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Geral",
 	"General": "Geral",
 	"General Settings": "Configurações Gerais",
 	"General Settings": "Configurações Gerais",
 	"Generate Image": "Gerar imagem",
 	"Generate Image": "Gerar imagem",
@@ -325,6 +327,10 @@
 	"May": "Maio",
 	"May": "Maio",
 	"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
 	"Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.",
 	"Memory": "Memória",
 	"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.",
 	"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",
 	"Minimum Score": "Mínimo de Pontuação",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Nova Conversa",
 	"New Chat": "Nova Conversa",
 	"New Password": "Nova Senha",
 	"New Password": "Nova Senha",
 	"No documents found": "Não foram encontrados documentos",
 	"No documents found": "Não foram encontrados documentos",
+	"No file selected": "",
 	"No results found": "Não foram encontrados resultados",
 	"No results found": "Não foram encontrados resultados",
 	"No search query generated": "Não foi gerada nenhuma consulta de pesquisa",
 	"No search query generated": "Não foi gerada nenhuma consulta de pesquisa",
 	"No source available": "Nenhuma fonte disponível",
 	"No source available": "Nenhuma fonte disponível",
+	"No valves to update": "",
 	"None": "Nenhum",
 	"None": "Nenhum",
 	"Not factually correct": "Não é correto em termos factuais",
 	"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.",
 	"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": "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}}",
 	"Permission denied when accessing microphone: {{error}}": "A permissão foi negada ao aceder o microfone: {{error}}",
 	"Personalization": "Personalização",
 	"Personalization": "Personalização",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Condutas",
 	"Pipelines": "Condutas",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Válvulas de Condutas",
 	"Pipelines Valves": "Válvulas de Condutas",
@@ -562,6 +572,8 @@
 	"Toggle settings": "Alternar configurações",
 	"Toggle settings": "Alternar configurações",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Toggle sidebar": "Alternar barra lateral",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -595,6 +607,7 @@
 	"Utilize": "Utilizar",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades de tempo válidas:",
 	"Valid time units:": "Unidades de tempo válidas:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variável",
 	"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.",
 	"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",
 	"Version": "Versão",

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

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

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

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

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Formatera dina variabler med hakparenteser så här:",
 	"Format your variables using square brackets like this:": "Formatera dina variabler med hakparenteser så här:",
 	"Frequency Penalty": "Straff för frekvens",
 	"Frequency Penalty": "Straff för frekvens",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Allmän",
 	"General": "Allmän",
 	"General Settings": "Allmänna inställningar",
 	"General Settings": "Allmänna inställningar",
 	"Generate Image": "Generera bild",
 	"Generate Image": "Generera bild",
@@ -325,6 +327,10 @@
 	"May": "maj",
 	"May": "maj",
 	"Memories accessible by LLMs will be shown here.": "Minnen som LLM:er kan komma åt visas här.",
 	"Memories accessible by LLMs will be shown here.": "Minnen som LLM:er kan komma åt visas här.",
 	"Memory": "Minnen",
 	"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.",
 	"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",
 	"Minimum Score": "Tröskel",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Ny chatt",
 	"New Chat": "Ny chatt",
 	"New Password": "Nytt lösenord",
 	"New Password": "Nytt lösenord",
 	"No documents found": "Inga dokument hittades",
 	"No documents found": "Inga dokument hittades",
+	"No file selected": "",
 	"No results found": "Inga resultat hittades",
 	"No results found": "Inga resultat hittades",
 	"No search query generated": "Ingen sökfråga genererad",
 	"No search query generated": "Ingen sökfråga genererad",
 	"No source available": "Ingen tillgänglig källa",
 	"No source available": "Ingen tillgänglig källa",
+	"No valves to update": "",
 	"None": "Ingen",
 	"None": "Ingen",
 	"Not factually correct": "Inte faktiskt korrekt",
 	"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.",
 	"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": "Nekad behörighet vid åtkomst till mikrofon",
 	"Permission denied when accessing microphone: {{error}}": "Tillstånd nekades vid åtkomst till mikrofon: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Tillstånd nekades vid åtkomst till mikrofon: {{error}}",
 	"Personalization": "Personalisering",
 	"Personalization": "Personalisering",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Rörledningar",
 	"Pipelines": "Rörledningar",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Ventiler för rörledningar",
 	"Pipelines Valves": "Ventiler för rörledningar",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Växla inställningar",
 	"Toggle settings": "Växla inställningar",
 	"Toggle sidebar": "Växla sidofält",
 	"Toggle sidebar": "Växla sidofält",
 	"Tokens To Keep On Context Refresh (num_keep)": "Tokens att behålla vid kontextuppdatering (num_keep)",
 	"Tokens To Keep On Context Refresh (num_keep)": "Tokens att behålla vid kontextuppdatering (num_keep)",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "Verktyg",
 	"Tools": "Verktyg",
 	"Top K": "Topp K",
 	"Top K": "Topp K",
 	"Top P": "Topp P",
 	"Top P": "Topp P",
@@ -594,6 +606,7 @@
 	"Utilize": "Använd",
 	"Utilize": "Använd",
 	"Valid time units:": "Giltiga tidsenheter:",
 	"Valid time units:": "Giltiga tidsenheter:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "variabel",
 	"variable": "variabel",
 	"variable to have them replaced with clipboard content.": "variabel för att få dem ersatta med urklippsinnehåll.",
 	"variable to have them replaced with clipboard content.": "variabel för att få dem ersatta med urklippsinnehåll.",
 	"Version": "Version",
 	"Version": "Version",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "",
 	"Format your variables using square brackets like this:": "",
 	"Frequency Penalty": "",
 	"Frequency Penalty": "",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "",
 	"General": "",
 	"General Settings": "",
 	"General Settings": "",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "",
 	"May": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"Memories accessible by LLMs will be shown here.": "",
 	"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.": "",
 	"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 Chat": "",
 	"New Password": "",
 	"New Password": "",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "",
 	"No results found": "",
 	"No search query generated": "",
 	"No search query generated": "",
 	"No source available": "",
 	"No source available": "",
+	"No valves to update": "",
 	"None": "",
 	"None": "",
 	"Not factually correct": "",
 	"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.": "",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Permission denied when accessing microphone: {{error}}": "",
 	"Personalization": "",
 	"Personalization": "",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
 	"Pipelines Valves": "",
@@ -561,6 +571,8 @@
 	"Toggle settings": "",
 	"Toggle settings": "",
 	"Toggle sidebar": "",
 	"Toggle sidebar": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "",
 	"Top K": "",
 	"Top P": "",
 	"Top P": "",
@@ -594,6 +606,7 @@
 	"Utilize": "",
 	"Utilize": "",
 	"Valid time units:": "",
 	"Valid time units:": "",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "",
 	"variable": "",
 	"variable to have them replaced with clipboard content.": "",
 	"variable to have them replaced with clipboard content.": "",
 	"Version": "",
 	"Version": "",

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"Form": "",
 	"Format your variables using square brackets like this:": "Değişkenlerinizi şu şekilde kare parantezlerle biçimlendirin:",
 	"Format your variables using square brackets like this:": "Değişkenlerinizi şu şekilde kare parantezlerle biçimlendirin:",
 	"Frequency Penalty": "Frekans Cezası",
 	"Frequency Penalty": "Frekans Cezası",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Genel",
 	"General": "Genel",
 	"General Settings": "Genel Ayarlar",
 	"General Settings": "Genel Ayarlar",
 	"Generate Image": "",
 	"Generate Image": "",
@@ -325,6 +327,10 @@
 	"May": "Mayıs",
 	"May": "Mayıs",
 	"Memories accessible by LLMs will be shown here.": "LLM'ler tarafından erişilebilen bellekler burada gösterilecektir.",
 	"Memories accessible by LLMs will be shown here.": "LLM'ler tarafından erişilebilen bellekler burada gösterilecektir.",
 	"Memory": "Bellek",
 	"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.",
 	"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",
 	"Minimum Score": "Minimum Skor",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Yeni Sohbet",
 	"New Chat": "Yeni Sohbet",
 	"New Password": "Yeni Parola",
 	"New Password": "Yeni Parola",
 	"No documents found": "",
 	"No documents found": "",
+	"No file selected": "",
 	"No results found": "Sonuç bulunamadı",
 	"No results found": "Sonuç bulunamadı",
 	"No search query generated": "Hiç arama sorgusu oluşturulmadı",
 	"No search query generated": "Hiç arama sorgusu oluşturulmadı",
 	"No source available": "Kaynak mevcut değil",
 	"No source available": "Kaynak mevcut değil",
+	"No valves to update": "",
 	"None": "Yok",
 	"None": "Yok",
 	"Not factually correct": "Gerçeklere göre doğru değil",
 	"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.",
 	"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": "",
 	"Permission denied when accessing microphone: {{error}}": "Mikrofona erişim izni reddedildi: {{error}}",
 	"Permission denied when accessing microphone: {{error}}": "Mikrofona erişim izni reddedildi: {{error}}",
 	"Personalization": "Kişiselleştirme",
 	"Personalization": "Kişiselleştirme",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "Pipelinelar",
 	"Pipelines": "Pipelinelar",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "Pipeline Valvleri",
 	"Pipelines Valves": "Pipeline Valvleri",
@@ -561,6 +571,8 @@
 	"Toggle settings": "Ayarları Aç/Kapat",
 	"Toggle settings": "Ayarları Aç/Kapat",
 	"Toggle sidebar": "Kenar Çubuğunu Aç/Kapat",
 	"Toggle sidebar": "Kenar Çubuğunu Aç/Kapat",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -594,6 +606,7 @@
 	"Utilize": "Kullan",
 	"Utilize": "Kullan",
 	"Valid time units:": "Geçerli zaman birimleri:",
 	"Valid time units:": "Geçerli zaman birimleri:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "değişken",
 	"variable": "değişken",
 	"variable to have them replaced with clipboard content.": "panodaki içerikle değiştirilmesi için 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",
 	"Version": "Sürüm",

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

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

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

@@ -259,7 +259,9 @@
 	"Form": "",
 	"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:",
 	"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ố",
 	"Frequency Penalty": "Hình phạt tần số",
+	"Function deleted successfully": "",
 	"Functions": "",
 	"Functions": "",
+	"Functions imported successfully": "",
 	"General": "Cài đặt chung",
 	"General": "Cài đặt chung",
 	"General Settings": "Cấu hình chung",
 	"General Settings": "Cấu hình chung",
 	"Generate Image": "Sinh ảnh",
 	"Generate Image": "Sinh ảnh",
@@ -325,6 +327,10 @@
 	"May": "Tháng 5",
 	"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.",
 	"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": "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ẻ.",
 	"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",
 	"Minimum Score": "Score tối thiểu",
 	"Mirostat": "Mirostat",
 	"Mirostat": "Mirostat",
@@ -353,9 +359,11 @@
 	"New Chat": "Tạo chat mới",
 	"New Chat": "Tạo chat mới",
 	"New Password": "Mật khẩu 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 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 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 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 source available": "Không có nguồn",
+	"No valves to update": "",
 	"None": "Không ai",
 	"None": "Không ai",
 	"Not factually correct": "Không chính xác so với thực tế",
 	"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.",
 	"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": "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}}",
 	"Permission denied when accessing microphone: {{error}}": "Quyền truy cập micrô bị từ chối: {{error}}",
 	"Personalization": "Cá nhân hóa",
 	"Personalization": "Cá nhân hóa",
+	"Pipeline deleted successfully": "",
+	"Pipeline downloaded successfully": "",
 	"Pipelines": "",
 	"Pipelines": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Not Detected": "",
 	"Pipelines Valves": "",
 	"Pipelines Valves": "",
@@ -560,6 +570,8 @@
 	"Toggle settings": "Bật/tắt cài đặt",
 	"Toggle settings": "Bật/tắt cài đặt",
 	"Toggle sidebar": "Bật/tắt thanh bên",
 	"Toggle sidebar": "Bật/tắt thanh bên",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
 	"Tokens To Keep On Context Refresh (num_keep)": "",
+	"Tool deleted successfully": "",
+	"Tool imported successfully": "",
 	"Tools": "",
 	"Tools": "",
 	"Top K": "Top K",
 	"Top K": "Top K",
 	"Top P": "Top P",
 	"Top P": "Top P",
@@ -593,6 +605,7 @@
 	"Utilize": "Sử dụng",
 	"Utilize": "Sử dụng",
 	"Valid time units:": "Đơn vị thời gian hợp lệ:",
 	"Valid time units:": "Đơn vị thời gian hợp lệ:",
 	"Valves": "",
 	"Valves": "",
+	"Valves updated successfully": "",
 	"variable": "biến",
 	"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.",
 	"variable to have them replaced with clipboard content.": "biến để có chúng được thay thế bằng nội dung clipboard.",
 	"Version": "Version",
 	"Version": "Version",

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

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

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

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