Browse Source

add toasts keys i18n

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

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

@@ -32,7 +32,7 @@
 			saveSettings({ notificationEnabled: notificationEnabled });
 		} else {
 			toast.error(
-				'Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.'
+				$i18n.t('Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.')
 			);
 		}
 	};

+ 2 - 2
src/lib/components/chat/Settings/Interface.svelte

@@ -75,7 +75,7 @@
 
 			if (position) {
 				await updateUserInfo(localStorage.token, { location: position });
-				toast.success('User location successfully retrieved.');
+				toast.success($i18n.t('User location successfully retrieved.'));
 			} else {
 				userLocation = false;
 			}
@@ -111,7 +111,7 @@
 			saveSettings({ responseAutoCopy: responseAutoCopy });
 		} else {
 			toast.error(
-				'Clipboard write permission denied. Please check your browser settings to grant the necessary access.'
+				$i18n.t('Clipboard write permission denied. Please check your browser settings to grant the necessary access.')
 			);
 		}
 	};

+ 2 - 2
src/lib/components/chat/Settings/Valves.svelte

@@ -73,7 +73,7 @@
 				);
 
 				if (res) {
-					toast.success('Valves updated');
+					toast.success($i18n.t('Valves updated'));
 					valves = res;
 				}
 			} else if (tab === 'functions') {
@@ -87,7 +87,7 @@
 				});
 
 				if (res) {
-					toast.success('Valves updated');
+					toast.success($i18n.t('Valves updated'));
 					valves = res;
 				}
 			}

+ 1 - 1
src/lib/components/common/CodeEditor.svelte

@@ -37,7 +37,7 @@
 					changes: [{ from: 0, to: codeEditor.state.doc.length, insert: formattedCode }]
 				});
 
-				toast.success('Code formatted successfully');
+				toast.success($i18n.t('Code formatted successfully'));
 				return true;
 			}
 			return false;

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "انقر هنا لاختيار المستندات",
 	"click here.": "أضغط هنا",
 	"Click on the user role button to change a user's role.": "أضغط على أسم الصلاحيات لتغيرها للمستخدم",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "استنساخ",
 	"Close": "أغلق",
+	"Code formatted successfully": "",
 	"Collection": "مجموعة",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI الرابط الافتراضي",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "إعادة تعيين تخزين المتجهات",
 	"Response AutoCopy to Clipboard": "النسخ التلقائي للاستجابة إلى الحافظة",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "منصب",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -605,11 +608,13 @@
 	"use_mlock (Ollama)": "use_mlock (أولاما)",
 	"use_mmap (Ollama)": "use_mmap (أولاما)",
 	"user": "مستخدم",
+	"User location successfully retrieved.": "",
 	"User Permissions": "صلاحيات المستخدم",
 	"Users": "المستخدمين",
 	"Utilize": "يستخدم",
 	"Valid time units:": "وحدات زمنية صالحة:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "المتغير",
 	"variable to have them replaced with clipboard content.": "متغير لاستبدالها بمحتوى الحافظة.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Натиснете тук, за да изберете документи.",
 	"click here.": "натиснете тук.",
 	"Click on the user role button to change a user's role.": "Натиснете върху бутона за промяна на ролята на потребителя.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Клонинг",
 	"Close": "Затвори",
+	"Code formatted successfully": "",
 	"Collection": "Колекция",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI Base URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Ресет Vector Storage",
 	"Response AutoCopy to Clipboard": "Аувтоматично копиране на отговор в клипборда",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Роля",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "потребител",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Права на потребителя",
 	"Users": "Потребители",
 	"Utilize": "Използване",
 	"Valid time units:": "Валидни единици за време:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "променлива",
 	"variable to have them replaced with clipboard content.": "променливи да се заменят съдържанието от клипборд.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "ডকুমেন্টগুলো নির্বাচন করার জন্য এখানে ক্লিক করুন",
 	"click here.": "এখানে ক্লিক করুন",
 	"Click on the user role button to change a user's role.": "ইউজারের পদবি পরিবর্তন করার জন্য ইউজারের পদবি বাটনে ক্লিক করুন",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "ক্লোন",
 	"Close": "বন্ধ",
+	"Code formatted successfully": "",
 	"Collection": "সংগ্রহ",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI Base URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "ভেক্টর স্টোরেজ রিসেট করুন",
 	"Response AutoCopy to Clipboard": "রেসপন্সগুলো স্বয়ংক্রিভাবে ক্লিপবোর্ডে কপি হবে",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "পদবি",
 	"Rosé Pine": "রোজ পাইন",
 	"Rosé Pine Dawn": "ভোরের রোজ পাইন",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (ওলামা)",
 	"use_mmap (Ollama)": "use_mmap (ওলামা)",
 	"user": "ব্যবহারকারী",
+	"User location successfully retrieved.": "",
 	"User Permissions": "ইউজার পারমিশনসমূহ",
 	"Users": "ব্যাবহারকারীগণ",
 	"Utilize": "ইউটিলাইজ",
 	"Valid time units:": "সময়ের গ্রহণযোগ্য এককসমূহ:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "ভেরিয়েবল",
 	"variable to have them replaced with clipboard content.": "ক্লিপবোর্ডের কন্টেন্ট দিয়ে যেই ভেরিয়েবল রিপ্লেস করা যাবে।",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Clica aquí per seleccionar documents.",
 	"click here.": "clica aquí.",
 	"Click on the user role button to change a user's role.": "Clica sobre el botó de rol d'usuari per canviar el rol d'un usuari.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Clonar",
 	"Close": "Tancar",
+	"Code formatted successfully": "",
 	"Collection": "Col·lecció",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "URL base de ComfyUI",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "Restableix el directori de pujades",
 	"Reset Vector Storage": "Restableix l'emmagatzematge de vectors",
 	"Response AutoCopy to Clipboard": "Copiar la resposta automàticament al porta-retalls",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rol",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Albada Rosé Pine",
@@ -602,11 +605,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "usuari",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Permisos d'usuari",
 	"Users": "Usuaris",
 	"Utilize": "Utilitzar",
 	"Valid time units:": "Unitats de temps vàlides:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Pag-klik dinhi aron mapili ang mga dokumento.",
 	"click here.": "I-klik dinhi.",
 	"Click on the user role button to change a user's role.": "I-klik ang User Role button aron usbon ang role sa user.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Close": "Suod nga",
+	"Code formatted successfully": "",
 	"Collection": "Koleksyon",
 	"ComfyUI": "",
 	"ComfyUI Base URL": "",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "I-reset ang pagtipig sa vector",
 	"Response AutoCopy to Clipboard": "Awtomatikong kopya sa tubag sa clipboard",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Papel",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Aube Pine Rosé",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "",
 	"use_mmap (Ollama)": "",
 	"user": "tiggamit",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Mga permiso sa tiggamit",
 	"Users": "Mga tiggamit",
 	"Utilize": "Sa paggamit",
 	"Valid time units:": "Balido nga mga yunit sa oras:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable aron pulihan kini sa mga sulud sa clipboard.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Klicke hier um Dokumente auszuwählen",
 	"click here.": "hier klicken.",
 	"Click on the user role button to change a user's role.": "Klicke auf die Benutzerrollenschaltfläche, um die Rolle eines Benutzers zu ändern.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Klonen",
 	"Close": "Schließe",
+	"Code formatted successfully": "",
 	"Collection": "Kollektion",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI Base URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "Uploadverzeichnis löschen",
 	"Reset Vector Storage": "Vektorspeicher zurücksetzen",
 	"Response AutoCopy to Clipboard": "Antwort automatisch in die Zwischenablage kopieren",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rolle",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "Benutzer",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Benutzerberechtigungen",
 	"Users": "Benutzer",
 	"Utilize": "Nutze die",
 	"Valid time units:": "Gültige Zeiteinheiten:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "Variable",
 	"variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Click to select documents",
 	"click here.": "click here. Such click.",
 	"Click on the user role button to change a user's role.": "Click user role button to change role.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Close": "Close",
+	"Code formatted successfully": "",
 	"Collection": "Collection",
 	"ComfyUI": "",
 	"ComfyUI Base URL": "",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Reset Vector Storage",
 	"Response AutoCopy to Clipboard": "Copy Bark Auto Bark",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Role",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -603,11 +606,13 @@
 	"use_mlock (Ollama)": "",
 	"use_mmap (Ollama)": "",
 	"user": "user much user",
+	"User location successfully retrieved.": "",
 	"User Permissions": "User Permissions much permissions",
 	"Users": "Users much users",
 	"Utilize": "Utilize very use",
 	"Valid time units:": "Valid time units: much time",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variable very variable",
 	"variable to have them replaced with clipboard content.": "variable to have them replaced with clipboard content. Very replace.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "",
 	"click here.": "",
 	"Click on the user role button to change a user's role.": "",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Close": "",
+	"Code formatted successfully": "",
 	"Collection": "",
 	"ComfyUI": "",
 	"ComfyUI Base URL": "",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "",
 	"Response AutoCopy to Clipboard": "",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "",
 	"Rosé Pine": "",
 	"Rosé Pine Dawn": "",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "",
 	"use_mmap (Ollama)": "",
 	"user": "",
+	"User location successfully retrieved.": "",
 	"User Permissions": "",
 	"Users": "",
 	"Utilize": "",
 	"Valid time units:": "",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "",
 	"variable to have them replaced with clipboard content.": "",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "",
 	"click here.": "",
 	"Click on the user role button to change a user's role.": "",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Close": "",
+	"Code formatted successfully": "",
 	"Collection": "",
 	"ComfyUI": "",
 	"ComfyUI Base URL": "",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "",
 	"Response AutoCopy to Clipboard": "",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "",
 	"Rosé Pine": "",
 	"Rosé Pine Dawn": "",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "",
 	"use_mmap (Ollama)": "",
 	"user": "",
+	"User location successfully retrieved.": "",
 	"User Permissions": "",
 	"Users": "",
 	"Utilize": "",
 	"Valid time units:": "",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "",
 	"variable to have them replaced with clipboard content.": "",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Presiona aquí para seleccionar documentos",
 	"click here.": "Presiona aquí.",
 	"Click on the user role button to change a user's role.": "Presiona en el botón de roles del usuario para cambiar su rol.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Clon",
 	"Close": "Cerrar",
+	"Code formatted successfully": "",
 	"Collection": "Colección",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI Base URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Restablecer almacenamiento vectorial",
 	"Response AutoCopy to Clipboard": "Copiar respuesta automáticamente al portapapeles",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rol",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -602,11 +605,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "usuario",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Permisos de usuario",
 	"Users": "Usuarios",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades válidas de tiempo:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable para reemplazarlos con el contenido del portapapeles.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "برای انتخاب اسناد اینجا را کلیک کنید.",
 	"click here.": "اینجا کلیک کنید.",
 	"Click on the user role button to change a user's role.": "برای تغییر نقش کاربر، روی دکمه نقش کاربر کلیک کنید.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "کلون",
 	"Close": "بسته",
+	"Code formatted successfully": "",
 	"Collection": "مجموعه",
 	"ComfyUI": "کومیوآی",
 	"ComfyUI Base URL": "URL پایه کومیوآی",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "بازنشانی ذخیره سازی برداری",
 	"Response AutoCopy to Clipboard": "کپی خودکار پاسخ به کلیپ بورد",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "نقش",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (اولاما)",
 	"use_mmap (Ollama)": "use_mmap (اولاما)",
 	"user": "کاربر",
+	"User location successfully retrieved.": "",
 	"User Permissions": "مجوزهای کاربر",
 	"Users": "کاربران",
 	"Utilize": "استفاده کنید",
 	"Valid time units:": "واحدهای زمانی معتبر:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "متغیر",
 	"variable to have them replaced with clipboard content.": "متغیر برای جایگزینی آنها با محتوای کلیپ بورد.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Klikkaa tästä valitaksesi asiakirjoja.",
 	"click here.": "klikkaa tästä.",
 	"Click on the user role button to change a user's role.": "Klikkaa käyttäjän roolipainiketta vaihtaaksesi käyttäjän roolia.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Klooni",
 	"Close": "Sulje",
+	"Code formatted successfully": "",
 	"Collection": "Kokoelma",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI-perus-URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Tyhjennä vektorivarasto",
 	"Response AutoCopy to Clipboard": "Vastauksen automaattikopiointi leikepöydälle",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rooli",
 	"Rosé Pine": "Rosee-mänty",
 	"Rosé Pine Dawn": "Aamuinen Rosee-mänty",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "käyttäjä",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Käyttäjäoikeudet",
 	"Users": "Käyttäjät",
 	"Utilize": "Käytä",
 	"Valid time units:": "Kelvolliset aikayksiköt:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "muuttuja",
 	"variable to have them replaced with clipboard content.": "muuttuja korvataan leikepöydän sisällöllä.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Cliquez ici pour sélectionner des documents.",
 	"click here.": "cliquez ici.",
 	"Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour changer le rôle d'un utilisateur.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Cloner",
 	"Close": "Fermer",
+	"Code formatted successfully": "",
 	"Collection": "Collection",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI Base URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Réinitialiser le stockage vectoriel",
 	"Response AutoCopy to Clipboard": "Copie automatique de la réponse vers le presse-papiers",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rôle",
 	"Rosé Pine": "Pin Rosé",
 	"Rosé Pine Dawn": "Aube Pin Rosé",
@@ -602,11 +605,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "utilisateur",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Permissions de l'utilisateur",
 	"Users": "Utilisateurs",
 	"Utilize": "Utiliser",
 	"Valid time units:": "Unités de temps valides :",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Cliquez ici pour sélectionner des documents.",
 	"click here.": "cliquez ici.",
 	"Click on the user role button to change a user's role.": "Cliquez sur le bouton de rôle d'utilisateur pour changer le rôle d'un utilisateur.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Clone",
 	"Close": "Fermer",
+	"Code formatted successfully": "",
 	"Collection": "Collection",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "URL de base ComfyUI",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Réinitialiser le Stockage de Vecteur",
 	"Response AutoCopy to Clipboard": "Copie Automatique de la Réponse dans le Presse-papiers",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rôle",
 	"Rosé Pine": "Pin Rosé",
 	"Rosé Pine Dawn": "Aube Pin Rosé",
@@ -602,11 +605,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "utilisateur",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Permissions d'utilisateur",
 	"Users": "Utilisateurs",
 	"Utilize": "Utiliser",
 	"Valid time units:": "Unités de temps valides :",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variable",
 	"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "לחץ כאן לבחירת מסמכים.",
 	"click here.": "לחץ כאן.",
 	"Click on the user role button to change a user's role.": "לחץ על כפתור תפקיד המשתמש כדי לשנות את תפקיד המשתמש.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "שיבוט",
 	"Close": "סגור",
+	"Code formatted successfully": "",
 	"Collection": "אוסף",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "כתובת URL בסיסית של ComfyUI",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "איפוס אחסון וקטורים",
 	"Response AutoCopy to Clipboard": "העתקה אוטומטית של תגובה ללוח",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "תפקיד",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -602,11 +605,13 @@
 	"use_mlock (Ollama)": "use_mlock (אולמה)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "משתמש",
+	"User location successfully retrieved.": "",
 	"User Permissions": "הרשאות משתמש",
 	"Users": "משתמשים",
 	"Utilize": "שימוש",
 	"Valid time units:": "יחידות זמן תקינות:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "משתנה",
 	"variable to have them replaced with clipboard content.": "משתנה להחליפו ב- clipboard תוכן.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "दस्तावेज़ चुनने के लिए यहां क्लिक करें।",
 	"click here.": "यहाँ क्लिक करें।",
 	"Click on the user role button to change a user's role.": "उपयोगकर्ता की भूमिका बदलने के लिए उपयोगकर्ता भूमिका बटन पर क्लिक करें।",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "क्लोन",
 	"Close": "बंद करना",
+	"Code formatted successfully": "",
 	"Collection": "संग्रह",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI बेस यूआरएल",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "वेक्टर संग्रहण रीसेट करें",
 	"Response AutoCopy to Clipboard": "क्लिपबोर्ड पर प्रतिक्रिया ऑटोकॉपी",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "भूमिका",
 	"Rosé Pine": "रोसे पिन",
 	"Rosé Pine Dawn": "रोसे पिन डेन",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (ओलामा)",
 	"use_mmap (Ollama)": "use_mmap (ओलामा)",
 	"user": "उपयोगकर्ता",
+	"User location successfully retrieved.": "",
 	"User Permissions": "उपयोगकर्ता अनुमतियाँ",
 	"Users": "उपयोगकर्ताओं",
 	"Utilize": "उपयोग करें",
 	"Valid time units:": "मान्य समय इकाइयाँ:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "वेरिएबल",
 	"variable to have them replaced with clipboard content.": "उन्हें क्लिपबोर्ड सामग्री से बदलने के लिए वेरिएबल।",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Kliknite ovdje da odaberete dokumente.",
 	"click here.": "kliknite ovdje.",
 	"Click on the user role button to change a user's role.": "Kliknite na gumb uloge korisnika za promjenu uloge korisnika.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Kloniraj",
 	"Close": "Zatvori",
+	"Code formatted successfully": "",
 	"Collection": "Kolekcija",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI osnovni URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "Poništi upload direktorij",
 	"Reset Vector Storage": "Resetiraj pohranu vektora",
 	"Response AutoCopy to Clipboard": "Automatsko kopiranje odgovora u međuspremnik",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Uloga",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -602,11 +605,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "korisnik",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Korisnička dopuštenja",
 	"Users": "Korisnici",
 	"Utilize": "Iskoristi",
 	"Valid time units:": "Važeće vremenske jedinice:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "varijabla",
 	"variable to have them replaced with clipboard content.": "varijabla za zamjenu sadržajem međuspremnika.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Clicca qui per selezionare i documenti.",
 	"click here.": "clicca qui.",
 	"Click on the user role button to change a user's role.": "Clicca sul pulsante del ruolo utente per modificare il ruolo di un utente.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Clone",
 	"Close": "Chiudi",
+	"Code formatted successfully": "",
 	"Collection": "Collezione",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "URL base ComfyUI",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Reimposta archivio vettoriale",
 	"Response AutoCopy to Clipboard": "Copia automatica della risposta negli appunti",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Ruolo",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -602,11 +605,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "utente",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Autorizzazioni utente",
 	"Users": "Utenti",
 	"Utilize": "Utilizza",
 	"Valid time units:": "Unità di tempo valide:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variabile",
 	"variable to have them replaced with clipboard content.": "variabile per farli sostituire con il contenuto degli appunti.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "ドキュメントを選択するにはここをクリックしてください。",
 	"click here.": "ここをクリックしてください。",
 	"Click on the user role button to change a user's role.": "ユーザーの役割を変更するには、ユーザー役割ボタンをクリックしてください。",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "クローン",
 	"Close": "閉じる",
+	"Code formatted successfully": "",
 	"Collection": "コレクション",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUIベースURL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "ベクトルストレージをリセット",
 	"Response AutoCopy to Clipboard": "クリップボードへの応答の自動コピー",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "役割",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -600,11 +603,13 @@
 	"use_mlock (Ollama)": "use_mlock(オラマ)",
 	"use_mmap (Ollama)": "use_mmap(オラマ)",
 	"user": "ユーザー",
+	"User location successfully retrieved.": "",
 	"User Permissions": "ユーザー権限",
 	"Users": "ユーザー",
 	"Utilize": "活用",
 	"Valid time units:": "有効な時間単位:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "変数",
 	"variable to have them replaced with clipboard content.": "クリップボードの内容に置き換える変数。",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "დოკუმენტების ასარჩევად, დააკლიკე აქ",
 	"click here.": "დააკლიკე აქ",
 	"Click on the user role button to change a user's role.": "დააკლიკეთ მომხმარებლის როლის ღილაკს რომ შეცვალოთ მომხმარების როლი",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "კლონი",
 	"Close": "დახურვა",
+	"Code formatted successfully": "",
 	"Collection": "ნაკრები",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI საბაზისო URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "ვექტორული მეხსიერების გადატვირთვა",
 	"Response AutoCopy to Clipboard": "პასუხის ავტომატური კოპირება ბუფერში",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "როლი",
 	"Rosé Pine": "ვარდისფერი ფიჭვის ხე",
 	"Rosé Pine Dawn": "ვარდისფერი ფიჭვის გარიჟრაჟი",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (ოლამა)",
 	"use_mmap (Ollama)": "use_mmap (ოლამა)",
 	"user": "მომხმარებელი",
+	"User location successfully retrieved.": "",
 	"User Permissions": "მომხმარებლის უფლებები",
 	"Users": "მომხმარებლები",
 	"Utilize": "გამოყენება",
 	"Valid time units:": "მოქმედი დროის ერთეულები",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "ცვლადი",
 	"variable to have them replaced with clipboard content.": "ცვლადი, რომ შეცვალოს ისინი ბუფერში შიგთავსით.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "문서를 선택하려면 여기를 클릭하세요.",
 	"click here.": "여기를 클릭하세요.",
 	"Click on the user role button to change a user's role.": "사용자 역할 버튼을 클릭하여 사용자의 역할을 변경하세요.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "복제",
 	"Close": "닫기",
+	"Code formatted successfully": "",
 	"Collection": "컬렉션",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI 기본 URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "업로드 디렉토리 초기화",
 	"Reset Vector Storage": "벡터 스토리지 초기화",
 	"Response AutoCopy to Clipboard": "응답을 클립보드에 자동 복사",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "역할",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (올라마)",
 	"use_mmap (Ollama)": "use_mmap (올라마)",
 	"user": "사용자",
+	"User location successfully retrieved.": "",
 	"User Permissions": "사용자 권한",
 	"Users": "사용자",
 	"Utilize": "활용",
 	"Valid time units:": "유효 시간 단위:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "변수",
 	"variable to have them replaced with clipboard content.": "변수를 사용하여 클립보드 내용으로 바꾸세요.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Spauskite čia norėdami pasirinkti dokumentus.",
 	"click here.": "paspauskite čia.",
 	"Click on the user role button to change a user's role.": "Paspauskite ant naudotojo rolės mygtuko tam, kad pakeisti naudotojo rolę.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Close": "Uždaryti",
+	"Code formatted successfully": "",
 	"Collection": "Kolekcija",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI bazės nuoroda",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Reinicializuoti vektorių atmintį",
 	"Response AutoCopy to Clipboard": "Automatiškai nukopijuoti atsakymą",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rolė",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -603,11 +606,13 @@
 	"use_mlock (Ollama)": "",
 	"use_mmap (Ollama)": "",
 	"user": "naudotojas",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Naudotojo leidimai",
 	"Users": "Naudotojai",
 	"Utilize": "Naudoti",
 	"Valid time units:": "Teisingūs laiko vienetai :",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "kintamasis",
 	"variable to have them replaced with clipboard content.": "kintamoji pakeičiama kopijuoklės turiniu.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Klikk her for å velge dokumenter.",
 	"click here.": "klikk her.",
 	"Click on the user role button to change a user's role.": "Klikk på brukerrolle-knappen for å endre en brukers rolle.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Klon",
 	"Close": "Lukk",
+	"Code formatted successfully": "",
 	"Collection": "Samling",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI Grunn-URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Tilbakestill vektorlagring",
 	"Response AutoCopy to Clipboard": "Respons auto-kopi til utklippstavle",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rolle",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "bruker",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Brukertillatelser",
 	"Users": "Brukere",
 	"Utilize": "Utnytt",
 	"Valid time units:": "Gyldige tidsenheter:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variabel",
 	"variable to have them replaced with clipboard content.": "variabel for å få dem erstattet med utklippstavleinnhold.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Klik hier om documenten te selecteren",
 	"click here.": "klik hier.",
 	"Click on the user role button to change a user's role.": "Klik op de gebruikersrol knop om de rol van een gebruiker te wijzigen.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Kloon",
 	"Close": "Sluiten",
+	"Code formatted successfully": "",
 	"Collection": "Verzameling",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI Base URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Reset Vector Opslag",
 	"Response AutoCopy to Clipboard": "Antwoord Automatisch Kopiëren naar Klembord",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rol",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "user",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Gebruikers Rechten",
 	"Users": "Gebruikers",
 	"Utilize": "Utilize",
 	"Valid time units:": "Geldige tijdseenheden:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variabele",
 	"variable to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "ਡਾਕੂਮੈਂਟ ਚੁਣਨ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"click here.": "ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"Click on the user role button to change a user's role.": "ਉਪਭੋਗਤਾ ਦੀ ਭੂਮਿਕਾ ਬਦਲਣ ਲਈ ਉਪਭੋਗਤਾ ਭੂਮਿਕਾ ਬਟਨ 'ਤੇ ਕਲਿੱਕ ਕਰੋ।",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "ਕਲੋਨ",
 	"Close": "ਬੰਦ ਕਰੋ",
+	"Code formatted successfully": "",
 	"Collection": "ਸੰਗ੍ਰਹਿ",
 	"ComfyUI": "ਕੰਫੀਯੂਆਈ",
 	"ComfyUI Base URL": "ਕੰਫੀਯੂਆਈ ਬੇਸ URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "ਵੈਕਟਰ ਸਟੋਰੇਜ ਨੂੰ ਰੀਸੈਟ ਕਰੋ",
 	"Response AutoCopy to Clipboard": "ਜਵਾਬ ਆਟੋ ਕਾਪੀ ਕਲਿੱਪਬੋਰਡ 'ਤੇ",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "ਭੂਮਿਕਾ",
 	"Rosé Pine": "ਰੋਜ਼ ਪਾਈਨ",
 	"Rosé Pine Dawn": "ਰੋਜ਼ ਪਾਈਨ ਡਾਨ",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (ਓਲਾਮਾ)",
 	"use_mmap (Ollama)": "use_mmap (ਓਲਾਮਾ)",
 	"user": "ਉਪਭੋਗਤਾ",
+	"User location successfully retrieved.": "",
 	"User Permissions": "ਉਪਭੋਗਤਾ ਅਧਿਕਾਰ",
 	"Users": "ਉਪਭੋਗਤਾ",
 	"Utilize": "ਵਰਤੋਂ",
 	"Valid time units:": "ਵੈਧ ਸਮਾਂ ਇਕਾਈਆਂ:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "ਵੈਰੀਏਬਲ",
 	"variable to have them replaced with clipboard content.": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਨਾਲ ਬਦਲਣ ਲਈ ਵੈਰੀਏਬਲ।",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Kliknij tutaj, aby wybrać dokumenty.",
 	"click here.": "kliknij tutaj.",
 	"Click on the user role button to change a user's role.": "Kliknij przycisk roli użytkownika, aby zmienić rolę użytkownika.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Klon",
 	"Close": "Zamknij",
+	"Code formatted successfully": "",
 	"Collection": "Kolekcja",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "Bazowy URL ComfyUI",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Resetuj przechowywanie wektorów",
 	"Response AutoCopy to Clipboard": "Automatyczne kopiowanie odpowiedzi do schowka",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rola",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -603,11 +606,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "użytkownik",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Uprawnienia użytkownika",
 	"Users": "Użytkownicy",
 	"Utilize": "Wykorzystaj",
 	"Valid time units:": "Poprawne jednostki czasu:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "zmienna",
 	"variable to have them replaced with clipboard content.": "zmienna która zostanie zastąpiona zawartością schowka.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Clique aqui para selecionar documentos.",
 	"click here.": "clique aqui.",
 	"Click on the user role button to change a user's role.": "Clique no botão de função do usuário para alterar a função de um usuário.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Clone",
 	"Close": "Fechar",
+	"Code formatted successfully": "",
 	"Collection": "Coleção",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "URL Base do ComfyUI",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Redefinir Armazenamento de Vetor",
 	"Response AutoCopy to Clipboard": "Cópia Automática da Resposta para a Área de Transferência",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Função",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -602,11 +605,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "usuário",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Permissões do Usuário",
 	"Users": "Usuários",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades de tempo válidas:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variável",
 	"variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Clique aqui para selecionar documentos.",
 	"click here.": "clique aqui.",
 	"Click on the user role button to change a user's role.": "Clique no botão de função do utilizador para alterar a função de um utilizador.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Clonar",
 	"Close": "Fechar",
+	"Code formatted successfully": "",
 	"Collection": "Coleção",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "URL Base do ComfyUI",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "Limpar Pasta de Carregamento",
 	"Reset Vector Storage": "Redefinir Armazenamento de Vetor",
 	"Response AutoCopy to Clipboard": "Cópia Automática da Resposta para a Área de Transferência",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Função",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -602,11 +605,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "utilizador",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Permissões do Utilizador",
 	"Users": "Utilizadores",
 	"Utilize": "Utilizar",
 	"Valid time units:": "Unidades de tempo válidas:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variável",
 	"variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Нажмите здесь чтобы выберите документы.",
 	"click here.": "нажмите здесь.",
 	"Click on the user role button to change a user's role.": "Нажмите кнопку роли пользователя чтобы изменить роль пользователя.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Клон",
 	"Close": "Закрывать",
+	"Code formatted successfully": "",
 	"Collection": "Коллекция",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "Базовый адрес URL ComfyUI",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Сбросить векторное хранилище",
 	"Response AutoCopy to Clipboard": "Автоматическое копирование ответа в буфер обмена",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Роль",
 	"Rosé Pine": "Розовое сосновое дерево",
 	"Rosé Pine Dawn": "Розовое сосновое дерево рассвет",
@@ -603,11 +606,13 @@
 	"use_mlock (Ollama)": "use_mlock (Оллама)",
 	"use_mmap (Ollama)": "use_mmap (Оллама)",
 	"user": "пользователь",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Права пользователя",
 	"Users": "Пользователи",
 	"Utilize": "Использовать",
 	"Valid time units:": "Допустимые единицы времени:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "переменная",
 	"variable to have them replaced with clipboard content.": "переменная, чтобы их заменить содержимым буфера обмена.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Кликните овде да изаберете документе.",
 	"click here.": "кликните овде.",
 	"Click on the user role button to change a user's role.": "Кликните на дугме за улогу корисника да промените улогу корисника.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Клон",
 	"Close": "Затвори",
+	"Code formatted successfully": "",
 	"Collection": "Колекција",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "Основна адреса за ComfyUI",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Ресетуј складиште вектора",
 	"Response AutoCopy to Clipboard": "Самостално копирање одговора у оставу",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Улога",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -602,11 +605,13 @@
 	"use_mlock (Ollama)": "усе _млоцк (Оллама)",
 	"use_mmap (Ollama)": "усе _ммап (Оллама)",
 	"user": "корисник",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Овлашћења корисника",
 	"Users": "Корисници",
 	"Utilize": "Искористи",
 	"Valid time units:": "Важеће временске јединице:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "променљива",
 	"variable to have them replaced with clipboard content.": "променљива за замену са садржајем оставе.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Klicka här för att välja dokument.",
 	"click here.": "klicka här.",
 	"Click on the user role button to change a user's role.": "Klicka på knappen för användarroll för att ändra en användares roll.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Klon",
 	"Close": "Stäng",
+	"Code formatted successfully": "",
 	"Collection": "Samling",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI Base URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "Återställ uppladdningskatalog",
 	"Reset Vector Storage": "Återställ vektorlager",
 	"Response AutoCopy to Clipboard": "Svara AutoCopy till urklipp",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Roll",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "användare",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Användarbehörigheter",
 	"Users": "Användare",
 	"Utilize": "Använd",
 	"Valid time units:": "Giltiga tidsenheter:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "variabel",
 	"variable to have them replaced with clipboard content.": "variabel för att få dem ersatta med urklippsinnehåll.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "",
 	"click here.": "",
 	"Click on the user role button to change a user's role.": "",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "",
 	"Close": "",
+	"Code formatted successfully": "",
 	"Collection": "",
 	"ComfyUI": "",
 	"ComfyUI Base URL": "",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "",
 	"Response AutoCopy to Clipboard": "",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "",
 	"Rosé Pine": "",
 	"Rosé Pine Dawn": "",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "",
 	"use_mmap (Ollama)": "",
 	"user": "",
+	"User location successfully retrieved.": "",
 	"User Permissions": "",
 	"Users": "",
 	"Utilize": "",
 	"Valid time units:": "",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "",
 	"variable to have them replaced with clipboard content.": "",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Belgeleri seçmek için buraya tıklayın.",
 	"click here.": "buraya tıklayın.",
 	"Click on the user role button to change a user's role.": "Bir kullanıcının rolünü değiştirmek için kullanıcı rolü düğmesine tıklayın.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Klon",
 	"Close": "Kapat",
+	"Code formatted successfully": "",
 	"Collection": "Koleksiyon",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI Temel URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "",
 	"Reset Vector Storage": "Vektör Depolamayı Sıfırla",
 	"Response AutoCopy to Clipboard": "Yanıtı Panoya Otomatik Kopyala",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Rol",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -601,11 +604,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "kullanıcı",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Kullanıcı İzinleri",
 	"Users": "Kullanıcılar",
 	"Utilize": "Kullan",
 	"Valid time units:": "Geçerli zaman birimleri:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "değişken",
 	"variable to have them replaced with clipboard content.": "panodaki içerikle değiştirilmesi için değişken.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Натисніть тут, щоб обрати документи.",
 	"click here.": "клацніть тут.",
 	"Click on the user role button to change a user's role.": "Натисніть кнопку ролі користувача, щоб змінити роль користувача.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Клонувати",
 	"Close": "Закрити",
+	"Code formatted successfully": "",
 	"Collection": "Колекція",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "URL-адреса ComfyUI",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "Скинути каталог завантажень",
 	"Reset Vector Storage": "Скинути векторне сховище",
 	"Response AutoCopy to Clipboard": "Автокопіювання відповіді в буфер обміну",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Роль",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -603,11 +606,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "користувач",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Права користувача",
 	"Users": "Користувачі",
 	"Utilize": "Використовувати",
 	"Valid time units:": "Дійсні одиниці часу:",
 	"Valves": "Клапани",
+	"Valves updated": "",
 	"Valves updated successfully": "Клапани успішно оновлено",
 	"variable": "змінна",
 	"variable to have them replaced with clipboard content.": "змінна, щоб замінити їх вмістом буфера обміну.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "Bấm vào đây để chọn tài liệu.",
 	"click here.": "bấm vào đây.",
 	"Click on the user role button to change a user's role.": "Bấm vào nút trong cột VAI TRÒ để thay đổi quyền của người sử dụng.",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "Nhân bản",
 	"Close": "Đóng",
+	"Code formatted successfully": "",
 	"Collection": "Tổng hợp mọi tài liệu",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI Base URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "Xóa toàn bộ thư mục Upload",
 	"Reset Vector Storage": "Cài đặt lại Vector Storage",
 	"Response AutoCopy to Clipboard": "Tự động Sao chép Phản hồi vào clipboard",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "Vai trò",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -600,11 +603,13 @@
 	"use_mlock (Ollama)": "use_mlock (Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "Người sử dụng",
+	"User location successfully retrieved.": "",
 	"User Permissions": "Phân quyền sử dụng",
 	"Users": "Người sử dụng",
 	"Utilize": "Sử dụng",
 	"Valid time units:": "Đơn vị thời gian hợp lệ:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "biến",
 	"variable to have them replaced with clipboard content.": "biến để có chúng được thay thế bằng nội dung clipboard.",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "单击选择文档",
 	"click here.": "点击这里。",
 	"Click on the user role button to change a user's role.": "点击角色前方的组别按钮以更改用户所属权限组。",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "复制",
 	"Close": "关闭",
+	"Code formatted successfully": "",
 	"Collection": "集合",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI 基础地址",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "重置上传目录",
 	"Reset Vector Storage": "重置向量存储",
 	"Response AutoCopy to Clipboard": "自动复制回复到剪贴板",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "权限组",
 	"Rosé Pine": "Rosé Pine",
 	"Rosé Pine Dawn": "Rosé Pine Dawn",
@@ -600,11 +603,13 @@
 	"use_mlock (Ollama)": "use_mlock(Ollama)",
 	"use_mmap (Ollama)": "use_mmap (Ollama)",
 	"user": "用户",
+	"User location successfully retrieved.": "",
 	"User Permissions": "用户权限",
 	"Users": "用户",
 	"Utilize": "利用",
 	"Valid time units:": "有效时间单位:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "变量",
 	"variable to have them replaced with clipboard content.": "变量将被剪贴板内容替换。",

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

@@ -107,8 +107,10 @@
 	"Click here to select documents.": "點選這裡選擇文件。",
 	"click here.": "點選這裡。",
 	"Click on the user role button to change a user's role.": "點選使用者角色按鈕以更改使用者的角色。",
+	"Clipboard write permission denied. Please check your browser settings to grant the necessary access.": "",
 	"Clone": "複製",
 	"Close": "關閉",
+	"Code formatted successfully": "",
 	"Collection": "收藏",
 	"ComfyUI": "ComfyUI",
 	"ComfyUI Base URL": "ComfyUI 基本 URL",
@@ -444,6 +446,7 @@
 	"Reset Upload Directory": "重設上傳目錄",
 	"Reset Vector Storage": "重設向量儲存空間",
 	"Response AutoCopy to Clipboard": "自動複製回答到剪貼簿",
+	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Role": "角色",
 	"Rosé Pine": "玫瑰松",
 	"Rosé Pine Dawn": "黎明玫瑰松",
@@ -600,11 +603,13 @@
 	"use_mlock (Ollama)": "use_mlock(Ollama)",
 	"use_mmap (Ollama)": "use_mmap(Ollama)",
 	"user": "使用者",
+	"User location successfully retrieved.": "",
 	"User Permissions": "使用者權限",
 	"Users": "使用者",
 	"Utilize": "使用",
 	"Valid time units:": "有效時間單位:",
 	"Valves": "",
+	"Valves updated": "",
 	"Valves updated successfully": "",
 	"variable": "變數",
 	"variable to have them replaced with clipboard content.": "變數將替換為剪貼簿內容",