浏览代码

chore: format

Timothy Jaeryang Baek 4 月之前
父节点
当前提交
c3e8cd03b2
共有 51 个文件被更改,包括 57 次插入60 次删除
  1. 0 4
      src/lib/apis/index.ts
  2. 8 7
      src/lib/apis/openai/index.ts
  3. 1 1
      src/lib/i18n/locales/ar-BH/translation.json
  4. 1 1
      src/lib/i18n/locales/bg-BG/translation.json
  5. 1 1
      src/lib/i18n/locales/bn-BD/translation.json
  6. 1 1
      src/lib/i18n/locales/ca-ES/translation.json
  7. 1 1
      src/lib/i18n/locales/ceb-PH/translation.json
  8. 1 1
      src/lib/i18n/locales/cs-CZ/translation.json
  9. 1 1
      src/lib/i18n/locales/da-DK/translation.json
  10. 1 1
      src/lib/i18n/locales/de-DE/translation.json
  11. 1 1
      src/lib/i18n/locales/dg-DG/translation.json
  12. 1 1
      src/lib/i18n/locales/el-GR/translation.json
  13. 1 1
      src/lib/i18n/locales/en-GB/translation.json
  14. 1 1
      src/lib/i18n/locales/en-US/translation.json
  15. 1 1
      src/lib/i18n/locales/es-ES/translation.json
  16. 1 1
      src/lib/i18n/locales/eu-ES/translation.json
  17. 1 1
      src/lib/i18n/locales/fa-IR/translation.json
  18. 1 1
      src/lib/i18n/locales/fi-FI/translation.json
  19. 1 1
      src/lib/i18n/locales/fr-CA/translation.json
  20. 1 1
      src/lib/i18n/locales/fr-FR/translation.json
  21. 1 1
      src/lib/i18n/locales/he-IL/translation.json
  22. 1 1
      src/lib/i18n/locales/hi-IN/translation.json
  23. 1 1
      src/lib/i18n/locales/hr-HR/translation.json
  24. 1 1
      src/lib/i18n/locales/hu-HU/translation.json
  25. 1 1
      src/lib/i18n/locales/id-ID/translation.json
  26. 1 1
      src/lib/i18n/locales/ie-GA/translation.json
  27. 1 1
      src/lib/i18n/locales/it-IT/translation.json
  28. 1 1
      src/lib/i18n/locales/ja-JP/translation.json
  29. 1 1
      src/lib/i18n/locales/ka-GE/translation.json
  30. 1 1
      src/lib/i18n/locales/ko-KR/translation.json
  31. 1 1
      src/lib/i18n/locales/lt-LT/translation.json
  32. 1 1
      src/lib/i18n/locales/ms-MY/translation.json
  33. 1 1
      src/lib/i18n/locales/nb-NO/translation.json
  34. 1 1
      src/lib/i18n/locales/nl-NL/translation.json
  35. 1 1
      src/lib/i18n/locales/pa-IN/translation.json
  36. 1 1
      src/lib/i18n/locales/pl-PL/translation.json
  37. 1 1
      src/lib/i18n/locales/pt-BR/translation.json
  38. 1 1
      src/lib/i18n/locales/pt-PT/translation.json
  39. 1 1
      src/lib/i18n/locales/ro-RO/translation.json
  40. 1 1
      src/lib/i18n/locales/ru-RU/translation.json
  41. 1 1
      src/lib/i18n/locales/sk-SK/translation.json
  42. 1 1
      src/lib/i18n/locales/sr-RS/translation.json
  43. 1 1
      src/lib/i18n/locales/sv-SE/translation.json
  44. 1 1
      src/lib/i18n/locales/th-TH/translation.json
  45. 1 1
      src/lib/i18n/locales/tk-TW/translation.json
  46. 1 1
      src/lib/i18n/locales/tr-TR/translation.json
  47. 1 1
      src/lib/i18n/locales/uk-UA/translation.json
  48. 1 1
      src/lib/i18n/locales/ur-PK/translation.json
  49. 1 1
      src/lib/i18n/locales/vi-VN/translation.json
  50. 1 1
      src/lib/i18n/locales/zh-CN/translation.json
  51. 1 1
      src/lib/i18n/locales/zh-TW/translation.json

+ 0 - 4
src/lib/apis/index.ts

@@ -107,8 +107,6 @@ export const chatAction = async (token: string, action_id: string, body: ChatAct
 	return res;
 	return res;
 };
 };
 
 
-
-
 export const stopTask = async (token: string, id: string) => {
 export const stopTask = async (token: string, id: string) => {
 	let error = null;
 	let error = null;
 
 
@@ -141,8 +139,6 @@ export const stopTask = async (token: string, id: string) => {
 	return res;
 	return res;
 };
 };
 
 
-
-
 export const getTaskConfig = async (token: string = '') => {
 export const getTaskConfig = async (token: string = '') => {
 	let error = null;
 	let error = null;
 
 

+ 8 - 7
src/lib/apis/openai/index.ts

@@ -287,14 +287,15 @@ export const generateOpenAIChatCompletion = async (
 			'Content-Type': 'application/json'
 			'Content-Type': 'application/json'
 		},
 		},
 		body: JSON.stringify(body)
 		body: JSON.stringify(body)
-	}).then(async (res) => {
-		if (!res.ok) throw await res.json();
-		return res.json();
 	})
 	})
-	.catch((err) => {
-		error = `OpenAI: ${err?.detail ?? 'Network Problem'}`;
-		return null; 
-	});
+		.then(async (res) => {
+			if (!res.ok) throw await res.json();
+			return res.json();
+		})
+		.catch((err) => {
+			error = `OpenAI: ${err?.detail ?? 'Network Problem'}`;
+			return null;
+		});
 
 
 	if (error) {
 	if (error) {
 		throw error;
 		throw error;

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

@@ -942,7 +942,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "نوع",
 	"Type": "نوع",
 	"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
 	"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}خطاء أوه! حدثت مشكلة في الاتصال بـ ",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "Вид",
 	"Type": "Вид",
 	"Type Hugging Face Resolve (Download) URL": "Въведете Hugging Face Resolve (Download) URL",
 	"Type Hugging Face Resolve (Download) URL": "Въведете Hugging Face Resolve (Download) URL",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "О, не! Възникна проблем при свързването с {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "টাইপ",
 	"Type": "টাইপ",
 	"Type Hugging Face Resolve (Download) URL": "Hugging Face থেকে ডাউনলোড করার ইউআরএল টাইপ করুন",
 	"Type Hugging Face Resolve (Download) URL": "Hugging Face থেকে ডাউনলোড করার ইউআরএল টাইপ করুন",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "ওহ-হো! {{provider}} এর সাথে কানেকশনে সমস্যা হয়েছে।",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "Veu TTS",
 	"TTS Voice": "Veu TTS",
 	"Type": "Tipus",
 	"Type": "Tipus",
 	"Type Hugging Face Resolve (Download) URL": "Escriu l'URL de Resolució (Descàrrega) de Hugging Face",
 	"Type Hugging Face Resolve (Download) URL": "Escriu l'URL de Resolució (Descàrrega) de Hugging Face",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Oh! Hi ha hagut un problema connectant a {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "Desarxivar tot",
 	"Unarchive All": "Desarxivar tot",
 	"Unarchive All Archived Chats": "Desarxivar tots els xats arxivats",
 	"Unarchive All Archived Chats": "Desarxivar tots els xats arxivats",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "",
 	"Type": "",
 	"Type Hugging Face Resolve (Download) URL": "Pagsulod sa resolusyon (pag-download) URL Hugging Face",
 	"Type Hugging Face Resolve (Download) URL": "Pagsulod sa resolusyon (pag-download) URL Hugging Face",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh!  {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -940,7 +940,7 @@
 	"TTS Voice": "TTS hlas",
 	"TTS Voice": "TTS hlas",
 	"Type": "Napište",
 	"Type": "Napište",
 	"Type Hugging Face Resolve (Download) URL": "Zadejte URL pro úspěšné stažení z Hugging Face.",
 	"Type Hugging Face Resolve (Download) URL": "Zadejte URL pro úspěšné stažení z Hugging Face.",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Jejda! Došlo k problému s připojením k poskytovateli {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "Odarchivovat všechny",
 	"Unarchive All": "Odarchivovat všechny",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "TTS-stemme",
 	"TTS Voice": "TTS-stemme",
 	"Type": "Type",
 	"Type": "Type",
 	"Type Hugging Face Resolve (Download) URL": "Indtast Hugging Face Resolve (Download) URL",
 	"Type Hugging Face Resolve (Download) URL": "Indtast Hugging Face Resolve (Download) URL",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Der opstod et problem med at oprette forbindelse til {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "TTS-Stimme",
 	"TTS Voice": "TTS-Stimme",
 	"Type": "Art",
 	"Type": "Art",
 	"Type Hugging Face Resolve (Download) URL": "Geben Sie die Hugging Face Resolve-URL ein",
 	"Type Hugging Face Resolve (Download) URL": "Geben Sie die Hugging Face Resolve-URL ein",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Es gab ein Problem bei der Verbindung mit {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Oberfläche",
 	"UI": "Oberfläche",
 	"Unarchive All": "Alle wiederherstellen",
 	"Unarchive All": "Alle wiederherstellen",
 	"Unarchive All Archived Chats": "Alle archivierten Unterhaltungen wiederherstellen",
 	"Unarchive All Archived Chats": "Alle archivierten Unterhaltungen wiederherstellen",

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

@@ -940,7 +940,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "",
 	"Type": "",
 	"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL much download",
 	"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL much download",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! There was an issue connecting to {{provider}}. Much uh-oh!",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "Φωνή TTS",
 	"TTS Voice": "Φωνή TTS",
 	"Type": "Τύπος",
 	"Type": "Τύπος",
 	"Type Hugging Face Resolve (Download) URL": "Τύπος URL Ανάλυσης Hugging Face Resolve (Λήψη)",
 	"Type Hugging Face Resolve (Download) URL": "Τύπος URL Ανάλυσης Hugging Face Resolve (Λήψη)",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Ωχ! Υπήρξε πρόβλημα στη σύνδεση με το {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Διεπαφή Χρήστη (UI)",
 	"UI": "Διεπαφή Χρήστη (UI)",
 	"Unarchive All": "Απο-αρχειοθέτηση Όλων",
 	"Unarchive All": "Απο-αρχειοθέτηση Όλων",
 	"Unarchive All Archived Chats": "Απο-αρχειοθέτηση Όλων των Αρχειοθετημένων Συνομιλιών",
 	"Unarchive All Archived Chats": "Απο-αρχειοθέτηση Όλων των Αρχειοθετημένων Συνομιλιών",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "",
 	"Type": "",
 	"Type Hugging Face Resolve (Download) URL": "",
 	"Type Hugging Face Resolve (Download) URL": "",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "",
 	"Type": "",
 	"Type Hugging Face Resolve (Download) URL": "",
 	"Type Hugging Face Resolve (Download) URL": "",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "Voz del TTS",
 	"TTS Voice": "Voz del TTS",
 	"Type": "Tipo",
 	"Type": "Tipo",
 	"Type Hugging Face Resolve (Download) URL": "Escriba la URL (Descarga) de Hugging Face Resolve",
 	"Type Hugging Face Resolve (Download) URL": "Escriba la URL (Descarga) de Hugging Face Resolve",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "¡Uh oh! Hubo un problema al conectarse a {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "TTS ahotsa",
 	"TTS Voice": "TTS ahotsa",
 	"Type": "Mota",
 	"Type": "Mota",
 	"Type Hugging Face Resolve (Download) URL": "Idatzi Hugging Face Resolve (Deskarga) URLa",
 	"Type Hugging Face Resolve (Download) URL": "Idatzi Hugging Face Resolve (Deskarga) URLa",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Ui! Arazoa egon da {{provider}}-era konektatzean.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Erabiltzaile interfazea",
 	"UI": "Erabiltzaile interfazea",
 	"Unarchive All": "Desartxibatu guztiak",
 	"Unarchive All": "Desartxibatu guztiak",
 	"Unarchive All Archived Chats": "Desartxibatu artxibatutako txat guztiak",
 	"Unarchive All Archived Chats": "Desartxibatu artxibatutako txat guztiak",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "نوع",
 	"Type": "نوع",
 	"Type Hugging Face Resolve (Download) URL": "مقدار URL دانلود (Resolve) Hugging Face را وارد کنید",
 	"Type Hugging Face Resolve (Download) URL": "مقدار URL دانلود (Resolve) Hugging Face را وارد کنید",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "اوه اوه! مشکلی در اتصال به {{provider}} وجود داشت.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "Puhesynteesiääni",
 	"TTS Voice": "Puhesynteesiääni",
 	"Type": "Tyyppi",
 	"Type": "Tyyppi",
 	"Type Hugging Face Resolve (Download) URL": "Kirjoita Hugging Face -resolve-latausosoite",
 	"Type Hugging Face Resolve (Download) URL": "Kirjoita Hugging Face -resolve-latausosoite",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Voi ei! Yhteysongelma {{provider}}:n kanssa.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Käyttöliittymä",
 	"UI": "Käyttöliittymä",
 	"Unarchive All": "Pura kaikkien arkistointi",
 	"Unarchive All": "Pura kaikkien arkistointi",
 	"Unarchive All Archived Chats": "Pura kaikkien arkistoitujen keskustelujen arkistointi",
 	"Unarchive All Archived Chats": "Pura kaikkien arkistoitujen keskustelujen arkistointi",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "Voix TTS",
 	"TTS Voice": "Voix TTS",
 	"Type": "Type",
 	"Type": "Type",
 	"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Téléchargement Hugging Face Resolve",
 	"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Téléchargement Hugging Face Resolve",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Oh non ! Un problème est survenu lors de la connexion à {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Interface utilisateur",
 	"UI": "Interface utilisateur",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "Voix de Text-to-Speech",
 	"TTS Voice": "Voix de Text-to-Speech",
 	"Type": "Type",
 	"Type": "Type",
 	"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Téléchargement Hugging Face Resolve",
 	"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Téléchargement Hugging Face Resolve",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Oh non ! Un problème est survenu lors de la connexion à {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "Désarchiver tout",
 	"Unarchive All": "Désarchiver tout",
 	"Unarchive All Archived Chats": "Désarchiver toutes les conversations archivées",
 	"Unarchive All Archived Chats": "Désarchiver toutes les conversations archivées",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "סוג",
 	"Type": "סוג",
 	"Type Hugging Face Resolve (Download) URL": "הקלד כתובת URL של פתרון פנים מחבק (הורד)",
 	"Type Hugging Face Resolve (Download) URL": "הקלד כתובת URL של פתרון פנים מחבק (הורד)",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "או-הו! אירעה בעיה בהתחברות ל- {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "प्रकार",
 	"Type": "प्रकार",
 	"Type Hugging Face Resolve (Download) URL": "हगिंग फेस रिज़ॉल्व (डाउनलोड) यूआरएल टाइप करें",
 	"Type Hugging Face Resolve (Download) URL": "हगिंग फेस रिज़ॉल्व (डाउनलोड) यूआरएल टाइप करें",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "उह ओह! {{provider}} से कनेक्ट करने में एक समस्या थी।",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "TTS glas",
 	"TTS Voice": "TTS glas",
 	"Type": "Tip",
 	"Type": "Tip",
 	"Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL",
 	"Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Pojavio se problem s povezivanjem na {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "TTS hang",
 	"TTS Voice": "TTS hang",
 	"Type": "Típus",
 	"Type": "Típus",
 	"Type Hugging Face Resolve (Download) URL": "Adja meg a Hugging Face Resolve (Letöltési) URL-t",
 	"Type Hugging Face Resolve (Download) URL": "Adja meg a Hugging Face Resolve (Letöltési) URL-t",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Hoppá! Probléma merült fel a {{provider}} kapcsolódás során.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Felhasználói felület",
 	"UI": "Felhasználói felület",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "Suara TTS",
 	"TTS Voice": "Suara TTS",
 	"Type": "Ketik",
 	"Type": "Ketik",
 	"Type Hugging Face Resolve (Download) URL": "Ketik Hugging Face Resolve (Unduh) URL",
 	"Type Hugging Face Resolve (Download) URL": "Ketik Hugging Face Resolve (Unduh) URL",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Ada masalah saat menyambung ke {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "Guth TTS",
 	"TTS Voice": "Guth TTS",
 	"Type": "Cineál",
 	"Type": "Cineál",
 	"Type Hugging Face Resolve (Download) URL": "Cineál Hugging Face Resolve (Íoslódáil) URL",
 	"Type Hugging Face Resolve (Download) URL": "Cineál Hugging Face Resolve (Íoslódáil) URL",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Bhí ceist ann ag nascadh le {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "Díchartlannaigh Uile",
 	"Unarchive All": "Díchartlannaigh Uile",
 	"Unarchive All Archived Chats": "Díchartlannaigh Gach Comhrá Cartlainne",
 	"Unarchive All Archived Chats": "Díchartlannaigh Gach Comhrá Cartlainne",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "Digitare",
 	"Type": "Digitare",
 	"Type Hugging Face Resolve (Download) URL": "Digita l'URL di Hugging Face Resolve (Download)",
 	"Type Hugging Face Resolve (Download) URL": "Digita l'URL di Hugging Face Resolve (Download)",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Si è verificato un problema durante la connessione a {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -937,7 +937,7 @@
 	"TTS Voice": "TTSボイス",
 	"TTS Voice": "TTSボイス",
 	"Type": "種類",
 	"Type": "種類",
 	"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ダウンロード) URL を入力してください",
 	"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ダウンロード) URL を入力してください",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "おっと! {{provider}} への接続に問題が発生しました。",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "ტიპი",
 	"Type": "ტიპი",
 	"Type Hugging Face Resolve (Download) URL": "სცადე გადმოწერო Hugging Face Resolve URL",
 	"Type Hugging Face Resolve (Download) URL": "სცადე გადმოწერო Hugging Face Resolve URL",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}-თან დაკავშირების პრობლემა წარმოიშვა.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "TTS 음성",
 	"TTS Voice": "TTS 음성",
 	"Type": "입력",
 	"Type": "입력",
 	"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (다운로드) URL 입력",
 	"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (다운로드) URL 입력",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "앗! {{provider}}에 연결하는 데 문제가 있었습니다.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -940,7 +940,7 @@
 	"TTS Voice": "TTS balsas",
 	"TTS Voice": "TTS balsas",
 	"Type": "Tipas",
 	"Type": "Tipas",
 	"Type Hugging Face Resolve (Download) URL": "Įveskite Hugging Face Resolve nuorodą",
 	"Type Hugging Face Resolve (Download) URL": "Įveskite Hugging Face Resolve nuorodą",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "O ne! Prisijungiant prie {{provider}} kilo problema.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "sąsaja",
 	"UI": "sąsaja",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "Suara TTS",
 	"TTS Voice": "Suara TTS",
 	"Type": "jenis",
 	"Type": "jenis",
 	"Type Hugging Face Resolve (Download) URL": "Taip URL 'Hugging Face Resolve (Download)'",
 	"Type Hugging Face Resolve (Download) URL": "Taip URL 'Hugging Face Resolve (Download)'",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Maaf! Terdapat masalah menyambung ke {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "TTS-stemme",
 	"TTS Voice": "TTS-stemme",
 	"Type": "Type",
 	"Type": "Type",
 	"Type Hugging Face Resolve (Download) URL": "Angi nedlastings-Resolve-URL for Hugging Face",
 	"Type Hugging Face Resolve (Download) URL": "Angi nedlastings-Resolve-URL for Hugging Face",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Oi! Det oppsto et problem med tilkobling til {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "Opphev arkiveringen av alle",
 	"Unarchive All": "Opphev arkiveringen av alle",
 	"Unarchive All Archived Chats": "Opphev arkiveringen av alle arkiverte chatter",
 	"Unarchive All Archived Chats": "Opphev arkiveringen av alle arkiverte chatter",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "TTS Stem",
 	"TTS Voice": "TTS Stem",
 	"Type": "Type",
 	"Type": "Type",
 	"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL",
 	"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Er was een probleem met verbinden met {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "Onarchiveer alles",
 	"Unarchive All": "Onarchiveer alles",
 	"Unarchive All Archived Chats": "Onarchiveer alle gearchiveerde chats",
 	"Unarchive All Archived Chats": "Onarchiveer alle gearchiveerde chats",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "ਕਿਸਮ",
 	"Type": "ਕਿਸਮ",
 	"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ਡਾਊਨਲੋਡ) URL ਟਾਈਪ ਕਰੋ",
 	"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ਡਾਊਨਲੋਡ) URL ਟਾਈਪ ਕਰੋ",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "ਓਹੋ! {{provider}} ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਸਮੱਸਿਆ ਆਈ।",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -940,7 +940,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "Typ",
 	"Type": "Typ",
 	"Type Hugging Face Resolve (Download) URL": "Wprowadź adres URL do pobrania z Hugging Face",
 	"Type Hugging Face Resolve (Download) URL": "Wprowadź adres URL do pobrania z Hugging Face",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "O nie! Wystąpił problem z połączeniem z {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "Voz TTS",
 	"TTS Voice": "Voz TTS",
 	"Type": "Tipo",
 	"Type": "Tipo",
 	"Type Hugging Face Resolve (Download) URL": "Digite o URL de download do Hugging Face",
 	"Type Hugging Face Resolve (Download) URL": "Digite o URL de download do Hugging Face",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Ops! Houve um problema ao conectar-se ao {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Interface",
 	"UI": "Interface",
 	"Unarchive All": "Desarquivar tudo",
 	"Unarchive All": "Desarquivar tudo",
 	"Unarchive All Archived Chats": "Desarquivar Todos os Chats Arquivados",
 	"Unarchive All Archived Chats": "Desarquivar Todos os Chats Arquivados",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "Voz TTS",
 	"TTS Voice": "Voz TTS",
 	"Type": "Tipo",
 	"Type": "Tipo",
 	"Type Hugging Face Resolve (Download) URL": "Escreva o URL do Hugging Face Resolve (Descarregar)",
 	"Type Hugging Face Resolve (Download) URL": "Escreva o URL do Hugging Face Resolve (Descarregar)",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Houve um problema ao conectar a {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "Voce TTS",
 	"TTS Voice": "Voce TTS",
 	"Type": "Tip",
 	"Type": "Tip",
 	"Type Hugging Face Resolve (Download) URL": "Introduceți URL-ul de Rezolvare (Descărcare) Hugging Face",
 	"Type Hugging Face Resolve (Download) URL": "Introduceți URL-ul de Rezolvare (Descărcare) Hugging Face",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! A apărut o problemă la conectarea la {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Interfață Utilizator",
 	"UI": "Interfață Utilizator",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -940,7 +940,7 @@
 	"TTS Voice": "Голос TTS",
 	"TTS Voice": "Голос TTS",
 	"Type": "Тип",
 	"Type": "Тип",
 	"Type Hugging Face Resolve (Download) URL": "Введите URL-адрес Hugging Face Resolve (загрузки)",
 	"Type Hugging Face Resolve (Download) URL": "Введите URL-адрес Hugging Face Resolve (загрузки)",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Упс! Возникла проблема подключения к {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Пользовательский интерфейс",
 	"UI": "Пользовательский интерфейс",
 	"Unarchive All": "Разархивировать ВСЁ",
 	"Unarchive All": "Разархивировать ВСЁ",
 	"Unarchive All Archived Chats": "Разархивировать ВСЕ Заархивированные Чаты",
 	"Unarchive All Archived Chats": "Разархивировать ВСЕ Заархивированные Чаты",

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

@@ -940,7 +940,7 @@
 	"TTS Voice": "TTS hlas",
 	"TTS Voice": "TTS hlas",
 	"Type": "Napíšte",
 	"Type": "Napíšte",
 	"Type Hugging Face Resolve (Download) URL": "Zadajte URL na úspešné stiahnutie z Hugging Face.",
 	"Type Hugging Face Resolve (Download) URL": "Zadajte URL na úspešné stiahnutie z Hugging Face.",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Vyskytol sa problém s pripojením k poskytovateľovi {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "UI",
 	"UI": "UI",
 	"Unarchive All": "Odzálohovať všetky",
 	"Unarchive All": "Odzálohovať všetky",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -939,7 +939,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "Тип",
 	"Type": "Тип",
 	"Type Hugging Face Resolve (Download) URL": "Унесите Hugging Face Resolve (Download) адресу",
 	"Type Hugging Face Resolve (Download) URL": "Унесите Hugging Face Resolve (Download) адресу",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Упс! Дошло је до проблема при повезивању са {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "Text-till-tal-röst",
 	"TTS Voice": "Text-till-tal-röst",
 	"Type": "Typ",
 	"Type": "Typ",
 	"Type Hugging Face Resolve (Download) URL": "Skriv Hugging Face Resolve (nedladdning) URL",
 	"Type Hugging Face Resolve (Download) URL": "Skriv Hugging Face Resolve (nedladdning) URL",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Oj då! Det uppstod ett problem med anslutningen till {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "เสียงแปลงข้อความเป็นเสียง",
 	"TTS Voice": "เสียงแปลงข้อความเป็นเสียง",
 	"Type": "ประเภท",
 	"Type": "ประเภท",
 	"Type Hugging Face Resolve (Download) URL": "พิมพ์ URL ของ Hugging Face Resolve (Download)",
 	"Type Hugging Face Resolve (Download) URL": "พิมพ์ URL ของ Hugging Face Resolve (Download)",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "อุ๊ย! มีปัญหาในการเชื่อมต่อกับ {{provider}}",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "ส่วนติดต่อผู้ใช้",
 	"UI": "ส่วนติดต่อผู้ใช้",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "",
 	"Type": "",
 	"Type Hugging Face Resolve (Download) URL": "",
 	"Type Hugging Face Resolve (Download) URL": "",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "",
 	"UI": "",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "TTS Sesi",
 	"TTS Voice": "TTS Sesi",
 	"Type": "Tür",
 	"Type": "Tür",
 	"Type Hugging Face Resolve (Download) URL": "HuggingFace Çözümleme (İndirme) URL'sini Yazın",
 	"Type Hugging Face Resolve (Download) URL": "HuggingFace Çözümleme (İndirme) URL'sini Yazın",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Ah! {{provider}}'a bağlanırken bir sorun oluştu.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Arayüz",
 	"UI": "Arayüz",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -940,7 +940,7 @@
 	"TTS Voice": "Голос TTS",
 	"TTS Voice": "Голос TTS",
 	"Type": "Тип",
 	"Type": "Тип",
 	"Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)",
 	"Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Ой! Виникла проблема при підключенні до {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Користувацький інтерфейс",
 	"UI": "Користувацький інтерфейс",
 	"Unarchive All": "Розархівувати все",
 	"Unarchive All": "Розархівувати все",
 	"Unarchive All Archived Chats": "Розархівувати всі архівовані чати",
 	"Unarchive All Archived Chats": "Розархівувати всі архівовані чати",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "ٹی ٹی ایس آواز",
 	"TTS Voice": "ٹی ٹی ایس آواز",
 	"Type": "ٹائپ کریں",
 	"Type": "ٹائپ کریں",
 	"Type Hugging Face Resolve (Download) URL": "قسم ہگنگ فیس ری زولو (ڈاؤن لوڈ) یو آر ایل",
 	"Type Hugging Face Resolve (Download) URL": "قسم ہگنگ فیس ری زولو (ڈاؤن لوڈ) یو آر ایل",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "اوہ-اوہ! {{provider}} سے جڑنے میں مسئلہ پیش آیا",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "صارف انٹرفیس",
 	"UI": "صارف انٹرفیس",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -937,7 +937,7 @@
 	"TTS Voice": "",
 	"TTS Voice": "",
 	"Type": "Kiểu",
 	"Type": "Kiểu",
 	"Type Hugging Face Resolve (Download) URL": "Nhập URL Hugging Face Resolve (Tải xuống)",
 	"Type Hugging Face Resolve (Download) URL": "Nhập URL Hugging Face Resolve (Tải xuống)",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "Ồ! Đã xảy ra sự cố khi kết nối với {{provider}}.",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "Giao diện",
 	"UI": "Giao diện",
 	"Unarchive All": "",
 	"Unarchive All": "",
 	"Unarchive All Archived Chats": "",
 	"Unarchive All Archived Chats": "",

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

@@ -937,7 +937,7 @@
 	"TTS Voice": "文本转语音音色",
 	"TTS Voice": "文本转语音音色",
 	"Type": "类型",
 	"Type": "类型",
 	"Type Hugging Face Resolve (Download) URL": "输入 Hugging Face 解析(下载)URL",
 	"Type Hugging Face Resolve (Download) URL": "输入 Hugging Face 解析(下载)URL",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "糟糕!连接到 {{provider}} 时出现问题。",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "界面",
 	"UI": "界面",
 	"Unarchive All": "取消所有存档",
 	"Unarchive All": "取消所有存档",
 	"Unarchive All Archived Chats": "取消所有已存档的对话",
 	"Unarchive All Archived Chats": "取消所有已存档的对话",

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

@@ -938,7 +938,7 @@
 	"TTS Voice": "文字轉語音 (TTS) 聲音",
 	"TTS Voice": "文字轉語音 (TTS) 聲音",
 	"Type": "類型",
 	"Type": "類型",
 	"Type Hugging Face Resolve (Download) URL": "輸入 Hugging Face 的解析(下載)URL",
 	"Type Hugging Face Resolve (Download) URL": "輸入 Hugging Face 的解析(下載)URL",
-	"Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!連線到 {{provider}} 時出現問題。",
+	"Uh-oh! There was an issue with the response.": "",
 	"UI": "使用者介面",
 	"UI": "使用者介面",
 	"Unarchive All": "解除封存全部",
 	"Unarchive All": "解除封存全部",
 	"Unarchive All Archived Chats": "解除封存全部已封存對話",
 	"Unarchive All Archived Chats": "解除封存全部已封存對話",