Browse Source

chore: format

Timothy Jaeryang Baek 1 month ago
parent
commit
b01c9184c2
52 changed files with 112 additions and 5 deletions
  1. 1 4
      src/app.html
  2. 12 0
      src/lib/components/chat/Chat.svelte
  3. 1 1
      src/lib/components/chat/Placeholder.svelte
  4. 2 0
      src/lib/i18n/locales/ar-BH/translation.json
  5. 2 0
      src/lib/i18n/locales/bg-BG/translation.json
  6. 2 0
      src/lib/i18n/locales/bn-BD/translation.json
  7. 2 0
      src/lib/i18n/locales/ca-ES/translation.json
  8. 2 0
      src/lib/i18n/locales/ceb-PH/translation.json
  9. 2 0
      src/lib/i18n/locales/cs-CZ/translation.json
  10. 2 0
      src/lib/i18n/locales/da-DK/translation.json
  11. 2 0
      src/lib/i18n/locales/de-DE/translation.json
  12. 2 0
      src/lib/i18n/locales/dg-DG/translation.json
  13. 2 0
      src/lib/i18n/locales/el-GR/translation.json
  14. 2 0
      src/lib/i18n/locales/en-GB/translation.json
  15. 2 0
      src/lib/i18n/locales/en-US/translation.json
  16. 2 0
      src/lib/i18n/locales/es-ES/translation.json
  17. 2 0
      src/lib/i18n/locales/eu-ES/translation.json
  18. 2 0
      src/lib/i18n/locales/fa-IR/translation.json
  19. 2 0
      src/lib/i18n/locales/fi-FI/translation.json
  20. 2 0
      src/lib/i18n/locales/fr-CA/translation.json
  21. 2 0
      src/lib/i18n/locales/fr-FR/translation.json
  22. 2 0
      src/lib/i18n/locales/he-IL/translation.json
  23. 2 0
      src/lib/i18n/locales/hi-IN/translation.json
  24. 2 0
      src/lib/i18n/locales/hr-HR/translation.json
  25. 2 0
      src/lib/i18n/locales/hu-HU/translation.json
  26. 2 0
      src/lib/i18n/locales/id-ID/translation.json
  27. 2 0
      src/lib/i18n/locales/ie-GA/translation.json
  28. 2 0
      src/lib/i18n/locales/it-IT/translation.json
  29. 2 0
      src/lib/i18n/locales/ja-JP/translation.json
  30. 2 0
      src/lib/i18n/locales/ka-GE/translation.json
  31. 2 0
      src/lib/i18n/locales/ko-KR/translation.json
  32. 2 0
      src/lib/i18n/locales/lt-LT/translation.json
  33. 2 0
      src/lib/i18n/locales/ms-MY/translation.json
  34. 2 0
      src/lib/i18n/locales/nb-NO/translation.json
  35. 2 0
      src/lib/i18n/locales/nl-NL/translation.json
  36. 2 0
      src/lib/i18n/locales/pa-IN/translation.json
  37. 2 0
      src/lib/i18n/locales/pl-PL/translation.json
  38. 2 0
      src/lib/i18n/locales/pt-BR/translation.json
  39. 2 0
      src/lib/i18n/locales/pt-PT/translation.json
  40. 2 0
      src/lib/i18n/locales/ro-RO/translation.json
  41. 2 0
      src/lib/i18n/locales/ru-RU/translation.json
  42. 2 0
      src/lib/i18n/locales/sk-SK/translation.json
  43. 2 0
      src/lib/i18n/locales/sr-RS/translation.json
  44. 2 0
      src/lib/i18n/locales/sv-SE/translation.json
  45. 2 0
      src/lib/i18n/locales/th-TH/translation.json
  46. 2 0
      src/lib/i18n/locales/tk-TW/translation.json
  47. 2 0
      src/lib/i18n/locales/tr-TR/translation.json
  48. 2 0
      src/lib/i18n/locales/uk-UA/translation.json
  49. 2 0
      src/lib/i18n/locales/ur-PK/translation.json
  50. 2 0
      src/lib/i18n/locales/vi-VN/translation.json
  51. 2 0
      src/lib/i18n/locales/zh-CN/translation.json
  52. 2 0
      src/lib/i18n/locales/zh-TW/translation.json

+ 1 - 4
src/app.html

@@ -2,7 +2,7 @@
 <html lang="en">
 <html lang="en">
 	<head>
 	<head>
 		<meta charset="utf-8" />
 		<meta charset="utf-8" />
-		<link rel="icon" type="image/png" href="/static/favicon.png"  />
+		<link rel="icon" type="image/png" href="/static/favicon.png" />
 		<link rel="icon" type="image/png" href="/static/favicon-96x96.png" sizes="96x96" />
 		<link rel="icon" type="image/png" href="/static/favicon-96x96.png" sizes="96x96" />
 		<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
 		<link rel="icon" type="image/svg+xml" href="/static/favicon.svg" />
 		<link rel="shortcut icon" href="/static/favicon.ico" />
 		<link rel="shortcut icon" href="/static/favicon.ico" />
@@ -77,7 +77,6 @@
 					}
 					}
 				});
 				});
 
 
-
 				function setSplashImage() {
 				function setSplashImage() {
 					const logo = document.getElementById('logo');
 					const logo = document.getElementById('logo');
 					const isDarkMode = document.documentElement.classList.contains('dark');
 					const isDarkMode = document.documentElement.classList.contains('dark');
@@ -99,8 +98,6 @@
 
 
 				// Runs after classes are assigned
 				// Runs after classes are assigned
 				window.onload = setSplashImage;
 				window.onload = setSplashImage;
-
-
 			})();
 			})();
 		</script>
 		</script>
 
 

+ 12 - 0
src/lib/components/chat/Chat.svelte

@@ -1940,6 +1940,18 @@
 				{#if $banners.length > 0 && !history.currentId && !$chatId && selectedModels.length <= 1}
 				{#if $banners.length > 0 && !history.currentId && !$chatId && selectedModels.length <= 1}
 					<div class="absolute top-12 left-0 right-0 w-full z-30">
 					<div class="absolute top-12 left-0 right-0 w-full z-30">
 						<div class=" flex flex-col gap-1 w-full">
 						<div class=" flex flex-col gap-1 w-full">
+							{#if ($config?.license_metadata?.type ?? null) === 'trial'}
+								<Banner
+									banner={{
+										type: 'info',
+										title: 'Trial License',
+										content: $i18n.t(
+											'You are currently using a trial license. Please contact support to upgrade your license.'
+										)
+									}}
+								/>
+							{/if}
+
 							{#if ($config?.license_metadata?.seats ?? null) !== null && $config?.user_count > $config?.license_metadata?.seats}
 							{#if ($config?.license_metadata?.seats ?? null) !== null && $config?.user_count > $config?.license_metadata?.seats}
 								<Banner
 								<Banner
 									banner={{
 									banner={{

+ 1 - 1
src/lib/components/chat/Placeholder.svelte

@@ -126,7 +126,7 @@
 											($i18n.language === 'dg-DG'
 											($i18n.language === 'dg-DG'
 												? `/doge.png`
 												? `/doge.png`
 												: `${WEBUI_BASE_URL}/static/favicon.png`)}
 												: `${WEBUI_BASE_URL}/static/favicon.png`)}
-										class=" size-9 @sm:size-10 rounded-full border-[1px] border-gray-200 dark:border-none"
+										class=" size-9 @sm:size-10 rounded-full border-[1px] border-gray-100 dark:border-none"
 										alt="logo"
 										alt="logo"
 										draggable="false"
 										draggable="false"
 									/>
 									/>

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "أمس",
 	"Yesterday": "أمس",
 	"You": "انت",
 	"You": "انت",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "Пример: поща",
 	"Example: mail": "Пример: поща",
 	"Example: ou=users,dc=foo,dc=example": "Пример: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Пример: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Пример: sAMAccountName или uid или userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Пример: sAMAccountName или uid или userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Изключи",
 	"Exclude": "Изключи",
 	"Execute code for analysis": "Изпълнете код за анализ",
 	"Execute code for analysis": "Изпълнете код за анализ",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Напишете съдържанието на вашия шаблон за модел тук",
 	"Write your model template content here": "Напишете съдържанието на вашия шаблон за модел тук",
 	"Yesterday": "вчера",
 	"Yesterday": "вчера",
 	"You": "Вие",
 	"You": "Вие",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Можете да чатите с максимум {{maxCount}} файл(а) наведнъж.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Можете да чатите с максимум {{maxCount}} файл(а) наведнъж.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Можете да персонализирате взаимодействията си с LLM-и, като добавите спомени чрез бутона 'Управление' по-долу, правейки ги по-полезни и съобразени с вас.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Можете да персонализирате взаимодействията си с LLM-и, като добавите спомени чрез бутона 'Управление' по-долу, правейки ги по-полезни и съобразени с вас.",
 	"You cannot upload an empty file.": "Не можете да качите празен файл.",
 	"You cannot upload an empty file.": "Не можете да качите празен файл.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "আগামী",
 	"Yesterday": "আগামী",
 	"You": "আপনি",
 	"You": "আপনি",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "Exemple: mail",
 	"Example: mail": "Exemple: mail",
 	"Example: ou=users,dc=foo,dc=example": "Exemple: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Exemple: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Exemple: sAMAccountName o uid o userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Exemple: sAMAccountName o uid o userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Excloure",
 	"Exclude": "Excloure",
 	"Execute code for analysis": "Executa el codi per analitzar-lo",
 	"Execute code for analysis": "Executa el codi per analitzar-lo",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Introdueix el contingut de la plantilla del teu model aquí",
 	"Write your model template content here": "Introdueix el contingut de la plantilla del teu model aquí",
 	"Yesterday": "Ahir",
 	"Yesterday": "Ahir",
 	"You": "Tu",
 	"You": "Tu",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Només pots xatejar amb un màxim de {{maxCount}} fitxers alhora.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Només pots xatejar amb un màxim de {{maxCount}} fitxers alhora.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Pots personalitzar les teves interaccions amb els models de llenguatge afegint memòries mitjançant el botó 'Gestiona' que hi ha a continuació, fent-les més útils i adaptades a tu.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Pots personalitzar les teves interaccions amb els models de llenguatge afegint memòries mitjançant el botó 'Gestiona' que hi ha a continuació, fent-les més útils i adaptades a tu.",
 	"You cannot upload an empty file.": "No es pot pujar un ariux buit.",
 	"You cannot upload an empty file.": "No es pot pujar un ariux buit.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "",
 	"Yesterday": "",
 	"You": "",
 	"You": "",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Vyloučit",
 	"Exclude": "Vyloučit",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Včera",
 	"Yesterday": "Včera",
 	"You": "Vy",
 	"You": "Vy",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Můžete komunikovat pouze s maximálně {{maxCount}} soubor(y) najednou.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Můžete komunikovat pouze s maximálně {{maxCount}} soubor(y) najednou.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Můžete personalizovat své interakce s LLM pomocí přidávání vzpomínek prostřednictvím tlačítka 'Spravovat' níže, což je učiní pro vás užitečnějšími a lépe přizpůsobenými.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Můžete personalizovat své interakce s LLM pomocí přidávání vzpomínek prostřednictvím tlačítka 'Spravovat' níže, což je učiní pro vás užitečnějšími a lépe přizpůsobenými.",
 	"You cannot upload an empty file.": "Nemůžete nahrát prázdný soubor.",
 	"You cannot upload an empty file.": "Nemůžete nahrát prázdný soubor.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "I går",
 	"Yesterday": "I går",
 	"You": "Du",
 	"You": "Du",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan kun chatte med maksimalt {{maxCount}} fil(er) ad gangen.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan kun chatte med maksimalt {{maxCount}} fil(er) ad gangen.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan personliggøre dine interaktioner med LLM'er ved at tilføje minder via knappen 'Administrer' nedenfor, hvilket gør dem mere nyttige og skræddersyet til dig.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan personliggøre dine interaktioner med LLM'er ved at tilføje minder via knappen 'Administrer' nedenfor, hvilket gør dem mere nyttige og skræddersyet til dig.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "Beispiel: mail",
 	"Example: mail": "Beispiel: mail",
 	"Example: ou=users,dc=foo,dc=example": "Beispiel: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Beispiel: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Beispiel: sAMAccountName or uid or userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Beispiel: sAMAccountName or uid or userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Ausschließen",
 	"Exclude": "Ausschließen",
 	"Execute code for analysis": "Code für Analyse ausführen",
 	"Execute code for analysis": "Code für Analyse ausführen",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Schreiben Sie hier Ihren Modellvorlageninhalt",
 	"Write your model template content here": "Schreiben Sie hier Ihren Modellvorlageninhalt",
 	"Yesterday": "Gestern",
 	"Yesterday": "Gestern",
 	"You": "Sie",
 	"You": "Sie",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Sie können nur mit maximal {{maxCount}} Datei(en) gleichzeitig chatten.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Sie können nur mit maximal {{maxCount}} Datei(en) gleichzeitig chatten.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Personalisieren Sie Interaktionen mit LLMs, indem Sie über die Schaltfläche \"Verwalten\" Erinnerungen hinzufügen.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Personalisieren Sie Interaktionen mit LLMs, indem Sie über die Schaltfläche \"Verwalten\" Erinnerungen hinzufügen.",
 	"You cannot upload an empty file.": "Sie können keine leere Datei hochladen.",
 	"You cannot upload an empty file.": "Sie können keine leere Datei hochladen.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "",
 	"Yesterday": "",
 	"You": "",
 	"You": "",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "Παράδειγμα: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Παράδειγμα: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Παράδειγμα: sAMAccountName ή uid ή userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Παράδειγμα: sAMAccountName ή uid ή userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Εξαίρεση",
 	"Exclude": "Εξαίρεση",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Γράψτε το περιεχόμενο του προτύπου μοντέλου σας εδώ",
 	"Write your model template content here": "Γράψτε το περιεχόμενο του προτύπου μοντέλου σας εδώ",
 	"Yesterday": "Εχθές",
 	"Yesterday": "Εχθές",
 	"You": "Εσείς",
 	"You": "Εσείς",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Μπορείτε να συνομιλήσετε μόνο με μέγιστο αριθμό {{maxCount}} αρχείου(-ων) ταυτόχρονα.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Μπορείτε να συνομιλήσετε μόνο με μέγιστο αριθμό {{maxCount}} αρχείου(-ων) ταυτόχρονα.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Μπορείτε να προσωποποιήσετε τις αλληλεπιδράσεις σας με τα LLMs προσθέτοντας αναμνήσεις μέσω του κουμπιού 'Διαχείριση' παρακάτω, κάνοντάς τα πιο χρήσιμα και προσαρμοσμένα σε εσάς.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Μπορείτε να προσωποποιήσετε τις αλληλεπιδράσεις σας με τα LLMs προσθέτοντας αναμνήσεις μέσω του κουμπιού 'Διαχείριση' παρακάτω, κάνοντάς τα πιο χρήσιμα και προσαρμοσμένα σε εσάς.",
 	"You cannot upload an empty file.": "Δεν μπορείτε να ανεβάσετε ένα κενό αρχείο.",
 	"You cannot upload an empty file.": "Δεν μπορείτε να ανεβάσετε ένα κενό αρχείο.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "",
 	"Yesterday": "",
 	"You": "",
 	"You": "",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "",
 	"Yesterday": "",
 	"You": "",
 	"You": "",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "Ejemplo: correo",
 	"Example: mail": "Ejemplo: correo",
 	"Example: ou=users,dc=foo,dc=example": "Ejemplo: ou=usuarios,dc=foo,dc=ejemplo",
 	"Example: ou=users,dc=foo,dc=example": "Ejemplo: ou=usuarios,dc=foo,dc=ejemplo",
 	"Example: sAMAccountName or uid or userPrincipalName": "Ejemplo: sAMAccountName o uid o userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Ejemplo: sAMAccountName o uid o userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Excluir",
 	"Exclude": "Excluir",
 	"Execute code for analysis": "Ejecutar código para análisis",
 	"Execute code for analysis": "Ejecutar código para análisis",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Escribe el contenido de tu plantilla de modelo aquí",
 	"Write your model template content here": "Escribe el contenido de tu plantilla de modelo aquí",
 	"Yesterday": "Ayer",
 	"Yesterday": "Ayer",
 	"You": "Usted",
 	"You": "Usted",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Solo puede chatear con un máximo de {{maxCount}} archivo(s) a la vez.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Solo puede chatear con un máximo de {{maxCount}} archivo(s) a la vez.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puede personalizar sus interacciones con LLMs añadiendo memorias a través del botón 'Gestionar' debajo, haciendo que sean más útiles y personalizados para usted.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puede personalizar sus interacciones con LLMs añadiendo memorias a través del botón 'Gestionar' debajo, haciendo que sean más útiles y personalizados para usted.",
 	"You cannot upload an empty file.": "No puede subir un archivo vacío.",
 	"You cannot upload an empty file.": "No puede subir un archivo vacío.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "Adibidea: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Adibidea: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Adibidea: sAMAccountName edo uid edo userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Adibidea: sAMAccountName edo uid edo userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Baztertu",
 	"Exclude": "Baztertu",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Idatzi hemen zure modelo txantiloi edukia",
 	"Write your model template content here": "Idatzi hemen zure modelo txantiloi edukia",
 	"Yesterday": "Atzo",
 	"Yesterday": "Atzo",
 	"You": "Zu",
 	"You": "Zu",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Gehienez {{maxCount}} fitxategirekin txateatu dezakezu aldi berean.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Gehienez {{maxCount}} fitxategirekin txateatu dezakezu aldi berean.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "LLMekin dituzun interakzioak pertsonalizatu ditzakezu memoriak gehituz beheko 'Kudeatu' botoiaren bidez, lagungarriagoak eta zuretzat egokituagoak eginez.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "LLMekin dituzun interakzioak pertsonalizatu ditzakezu memoriak gehituz beheko 'Kudeatu' botoiaren bidez, lagungarriagoak eta zuretzat egokituagoak eginez.",
 	"You cannot upload an empty file.": "Ezin duzu fitxategi huts bat kargatu.",
 	"You cannot upload an empty file.": "Ezin duzu fitxategi huts bat kargatu.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "دیروز",
 	"Yesterday": "دیروز",
 	"You": "شما",
 	"You": "شما",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "شما در هر زمان نهایتا می\u200cتوانید با {{maxCount}} پرونده گفتگو کنید.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "شما در هر زمان نهایتا می\u200cتوانید با {{maxCount}} پرونده گفتگو کنید.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "Esimerkki: posti",
 	"Example: mail": "Esimerkki: posti",
 	"Example: ou=users,dc=foo,dc=example": "Esimerkki: ou=käyttäjät,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Esimerkki: ou=käyttäjät,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Esimerkki: sAMAccountName tai uid tai userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Esimerkki: sAMAccountName tai uid tai userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Jätä pois",
 	"Exclude": "Jätä pois",
 	"Execute code for analysis": "Suorita koodi analysointia varten",
 	"Execute code for analysis": "Suorita koodi analysointia varten",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Kirjoita mallisi mallinnesisältö tähän",
 	"Write your model template content here": "Kirjoita mallisi mallinnesisältö tähän",
 	"Yesterday": "Eilen",
 	"Yesterday": "Eilen",
 	"You": "Sinä",
 	"You": "Sinä",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Voit keskustella enintään {{maxCount}} tiedoston kanssa kerralla.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Voit keskustella enintään {{maxCount}} tiedoston kanssa kerralla.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Voit personoida vuorovaikutustasi LLM-ohjelmien kanssa lisäämällä muistoja 'Hallitse'-painikkeen kautta, jolloin ne ovat hyödyllisempiä ja räätälöityjä sinua varten.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Voit personoida vuorovaikutustasi LLM-ohjelmien kanssa lisäämällä muistoja 'Hallitse'-painikkeen kautta, jolloin ne ovat hyödyllisempiä ja räätälöityjä sinua varten.",
 	"You cannot upload an empty file.": "Et voi ladata tyhjää tiedostoa.",
 	"You cannot upload an empty file.": "Et voi ladata tyhjää tiedostoa.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Hier",
 	"Yesterday": "Hier",
 	"You": "Vous",
 	"You": "Vous",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des souvenirs via le bouton 'Gérer' ci-dessous, ce qui les rendra plus utiles et adaptés à vos besoins.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des souvenirs via le bouton 'Gérer' ci-dessous, ce qui les rendra plus utiles et adaptés à vos besoins.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "Exemple: mail",
 	"Example: mail": "Exemple: mail",
 	"Example: ou=users,dc=foo,dc=example": "Exemple: ou=utilisateurs,dc=foo,dc=exemple",
 	"Example: ou=users,dc=foo,dc=example": "Exemple: ou=utilisateurs,dc=foo,dc=exemple",
 	"Example: sAMAccountName or uid or userPrincipalName": "Exemple: sAMAccountName ou uid ou userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Exemple: sAMAccountName ou uid ou userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Exclure",
 	"Exclude": "Exclure",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Écrivez ici le contenu de votre modèle",
 	"Write your model template content here": "Écrivez ici le contenu de votre modèle",
 	"Yesterday": "Hier",
 	"Yesterday": "Hier",
 	"You": "Vous",
 	"You": "Vous",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Vous ne pouvez discuter qu'avec un maximum de {{maxCount}} fichier(s) à la fois.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Vous ne pouvez discuter qu'avec un maximum de {{maxCount}} fichier(s) à la fois.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des mémoires à l'aide du bouton « Gérer » ci-dessous, ce qui les rendra plus utiles et mieux adaptées à vos besoins.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des mémoires à l'aide du bouton « Gérer » ci-dessous, ce qui les rendra plus utiles et mieux adaptées à vos besoins.",
 	"You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.",
 	"You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "אתמול",
 	"Yesterday": "אתמול",
 	"You": "אתה",
 	"You": "אתה",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "कल",
 	"Yesterday": "कल",
 	"You": "आप",
 	"You": "आप",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Jučer",
 	"Yesterday": "Jučer",
 	"You": "Vi",
 	"You": "Vi",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Možete personalizirati svoje interakcije s LLM-ima dodavanjem uspomena putem gumba 'Upravljanje' u nastavku, čineći ih korisnijima i prilagođenijima vama.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Možete personalizirati svoje interakcije s LLM-ima dodavanjem uspomena putem gumba 'Upravljanje' u nastavku, čineći ih korisnijima i prilagođenijima vama.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Kizárás",
 	"Exclude": "Kizárás",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Tegnap",
 	"Yesterday": "Tegnap",
 	"You": "Ön",
 	"You": "Ön",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Egyszerre maximum {{maxCount}} fájllal tud csevegni.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Egyszerre maximum {{maxCount}} fájllal tud csevegni.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Az LLM-ekkel való interakcióit személyre szabhatja emlékek hozzáadásával a lenti 'Kezelés' gomb segítségével, így azok még hasznosabbak és személyre szabottabbak lesznek.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Az LLM-ekkel való interakcióit személyre szabhatja emlékek hozzáadásával a lenti 'Kezelés' gomb segítségével, így azok még hasznosabbak és személyre szabottabbak lesznek.",
 	"You cannot upload an empty file.": "Nem tölthet fel üres fájlt.",
 	"You cannot upload an empty file.": "Nem tölthet fel üres fájlt.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Kemarin",
 	"Yesterday": "Kemarin",
 	"You": "Anda",
 	"You": "Anda",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda dapat mempersonalisasi interaksi Anda dengan LLM dengan menambahkan kenangan melalui tombol 'Kelola' di bawah ini, sehingga lebih bermanfaat dan disesuaikan untuk Anda.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda dapat mempersonalisasi interaksi Anda dengan LLM dengan menambahkan kenangan melalui tombol 'Kelola' di bawah ini, sehingga lebih bermanfaat dan disesuaikan untuk Anda.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "Sampla: ríomhphost",
 	"Example: mail": "Sampla: ríomhphost",
 	"Example: ou=users,dc=foo,dc=example": "Sampla: ou=úsáideoirí,dc=foo,dc=sampla",
 	"Example: ou=users,dc=foo,dc=example": "Sampla: ou=úsáideoirí,dc=foo,dc=sampla",
 	"Example: sAMAccountName or uid or userPrincipalName": "Sampla: sAMAaccountName nó uid nó userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Sampla: sAMAaccountName nó uid nó userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Eisigh",
 	"Exclude": "Eisigh",
 	"Execute code for analysis": "Íosluchtaigh cód le haghaidh anailíse",
 	"Execute code for analysis": "Íosluchtaigh cód le haghaidh anailíse",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Scríobh do mhúnla ábhar teimpléad anseo",
 	"Write your model template content here": "Scríobh do mhúnla ábhar teimpléad anseo",
 	"Yesterday": "Inné",
 	"Yesterday": "Inné",
 	"You": "Tú",
 	"You": "Tú",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ní féidir leat comhrá a dhéanamh ach le comhad {{maxCount}} ar a mhéad ag an am.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ní féidir leat comhrá a dhéanamh ach le comhad {{maxCount}} ar a mhéad ag an am.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Is féidir leat do chuid idirghníomhaíochtaí le LLManna a phearsantú ach cuimhní cinn a chur leis tríd an gcnaipe 'Bainistigh' thíos, rud a fhágann go mbeidh siad níos cabhrach agus níos oiriúnaí duit.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Is féidir leat do chuid idirghníomhaíochtaí le LLManna a phearsantú ach cuimhní cinn a chur leis tríd an gcnaipe 'Bainistigh' thíos, rud a fhágann go mbeidh siad níos cabhrach agus níos oiriúnaí duit.",
 	"You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.",
 	"You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Ieri",
 	"Yesterday": "Ieri",
 	"You": "Tu",
 	"You": "Tu",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "昨日",
 	"Yesterday": "昨日",
 	"You": "あなた",
 	"You": "あなた",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "გამორიცხვა",
 	"Exclude": "გამორიცხვა",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "გუშინ",
 	"Yesterday": "გუშინ",
 	"You": "თქვენ",
 	"You": "თქვენ",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "미포함",
 	"Exclude": "미포함",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "여기에 모델 템플릿 내용을 입력하세요",
 	"Write your model template content here": "여기에 모델 템플릿 내용을 입력하세요",
 	"Yesterday": "어제",
 	"Yesterday": "어제",
 	"You": "당신",
 	"You": "당신",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "동시에 최대 {{maxCount}} 파일과만 대화할 수 있습니다 ",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "동시에 최대 {{maxCount}} 파일과만 대화할 수 있습니다 ",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "아래 '관리' 버튼으로 메모리를 추가하여 LLM들과의 상호작용을 개인화할 수 있습니다. 이를 통해 더 유용하고 맞춤화된 경험을 제공합니다.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "아래 '관리' 버튼으로 메모리를 추가하여 LLM들과의 상호작용을 개인화할 수 있습니다. 이를 통해 더 유용하고 맞춤화된 경험을 제공합니다.",
 	"You cannot upload an empty file.": "빈 파일을 업로드 할 수 없습니다",
 	"You cannot upload an empty file.": "빈 파일을 업로드 할 수 없습니다",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Vakar",
 	"Yesterday": "Vakar",
 	"You": "Jūs",
 	"You": "Jūs",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Galite pagerinti modelių darbą suteikdami jiems atminties funkcionalumą.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Galite pagerinti modelių darbą suteikdami jiems atminties funkcionalumą.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Semalam",
 	"Yesterday": "Semalam",
 	"You": "Anda",
 	"You": "Anda",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda boleh memperibadikan interaksi anda dengan LLM dengan menambahkan memori melalui butang 'Urus' di bawah, menjadikannya lebih membantu dan disesuaikan dengan anda.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda boleh memperibadikan interaksi anda dengan LLM dengan menambahkan memori melalui butang 'Urus' di bawah, menjadikannya lebih membantu dan disesuaikan dengan anda.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "Eksempel: mail",
 	"Example: mail": "Eksempel: mail",
 	"Example: ou=users,dc=foo,dc=example": "Eksempel: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Eksempel: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Eksempel: sAMAccountName eller uid eller userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Eksempel: sAMAccountName eller uid eller userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Utelukk",
 	"Exclude": "Utelukk",
 	"Execute code for analysis": "Kjør kode for analyse",
 	"Execute code for analysis": "Kjør kode for analyse",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Skriv inn modellens malinnhold her",
 	"Write your model template content here": "Skriv inn modellens malinnhold her",
 	"Yesterday": "I går",
 	"Yesterday": "I går",
 	"You": "Du",
 	"You": "Du",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan bare chatte med maksimalt {{maxCount}} fil(er) om gangen.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan bare chatte med maksimalt {{maxCount}} fil(er) om gangen.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan tilpasse interaksjonene dine med språkmodeller ved å legge til minner gjennom Administrer-knappen nedenfor, slik at de blir mer til nyttige og tilpasset deg.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan tilpasse interaksjonene dine med språkmodeller ved å legge til minner gjennom Administrer-knappen nedenfor, slik at de blir mer til nyttige og tilpasset deg.",
 	"You cannot upload an empty file.": "Du kan ikke laste opp en tom fil.",
 	"You cannot upload an empty file.": "Du kan ikke laste opp en tom fil.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "Voorbeeld: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Voorbeeld: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Voorbeeld: sAMAccountName or uid or userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Voorbeeld: sAMAccountName or uid or userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Sluit uit",
 	"Exclude": "Sluit uit",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Schrijf je modelsjablooninhoud hier",
 	"Write your model template content here": "Schrijf je modelsjablooninhoud hier",
 	"Yesterday": "Gisteren",
 	"Yesterday": "Gisteren",
 	"You": "Jij",
 	"You": "Jij",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Je kunt slechts met maximaal {{maxCount}} bestand(en) tegelijk chatten",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Je kunt slechts met maximaal {{maxCount}} bestand(en) tegelijk chatten",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Je kunt je interacties met LLM's personaliseren door herinneringen toe te voegen via de 'Beheer'-knop hieronder, waardoor ze nuttiger en voor jou op maat gemaakt worden.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Je kunt je interacties met LLM's personaliseren door herinneringen toe te voegen via de 'Beheer'-knop hieronder, waardoor ze nuttiger en voor jou op maat gemaakt worden.",
 	"You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.",
 	"You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "ਕੱਲ੍ਹ",
 	"Yesterday": "ਕੱਲ੍ਹ",
 	"You": "ਤੁਸੀਂ",
 	"You": "ਤੁਸੀਂ",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "Przykład: mail",
 	"Example: mail": "Przykład: mail",
 	"Example: ou=users,dc=foo,dc=example": "Przykład: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Przykład: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Przykład: sAMAccountName lub uid lub userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Przykład: sAMAccountName lub uid lub userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Wykluczyć",
 	"Exclude": "Wykluczyć",
 	"Execute code for analysis": "Wykonaj kod do analizy",
 	"Execute code for analysis": "Wykonaj kod do analizy",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Napisz tutaj zawartość szablonu modelu",
 	"Write your model template content here": "Napisz tutaj zawartość szablonu modelu",
 	"Yesterday": "Wczoraj",
 	"Yesterday": "Wczoraj",
 	"You": "Ty",
 	"You": "Ty",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Możesz rozmawiać jednocześnie maksymalnie z {{maxCount}} plikiem(i).",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Możesz rozmawiać jednocześnie maksymalnie z {{maxCount}} plikiem(i).",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Możesz spersonalizować swoje interakcje z LLM, dodając wspomnienia za pomocą przycisku 'Zarządzaj' poniżej, dzięki czemu będą one bardziej pomocne i dostosowane do Ciebie.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Możesz spersonalizować swoje interakcje z LLM, dodając wspomnienia za pomocą przycisku 'Zarządzaj' poniżej, dzięki czemu będą one bardziej pomocne i dostosowane do Ciebie.",
 	"You cannot upload an empty file.": "Nie możesz przesłać pustego pliku.",
 	"You cannot upload an empty file.": "Nie możesz przesłać pustego pliku.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "Exemplo: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Exemplo: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Exemplo: sAMAccountName ou uid ou userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Exemplo: sAMAccountName ou uid ou userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Excluir",
 	"Exclude": "Excluir",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Escreva o conteúdo do template do modelo aqui.",
 	"Write your model template content here": "Escreva o conteúdo do template do modelo aqui.",
 	"Yesterday": "Ontem",
 	"Yesterday": "Ontem",
 	"You": "Você",
 	"You": "Você",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Você só pode conversar com no máximo {{maxCount}} arquivo(s) de cada vez.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Você só pode conversar com no máximo {{maxCount}} arquivo(s) de cada vez.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar suas interações com LLMs adicionando memórias através do botão 'Gerenciar' abaixo, tornando-as mais úteis e adaptadas a você.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar suas interações com LLMs adicionando memórias através do botão 'Gerenciar' abaixo, tornando-as mais úteis e adaptadas a você.",
 	"You cannot upload an empty file.": "Você não pode carregar um arquivo vazio.",
 	"You cannot upload an empty file.": "Você não pode carregar um arquivo vazio.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Ontem",
 	"Yesterday": "Ontem",
 	"You": "Você",
 	"You": "Você",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar as suas interações com LLMs adicionando memórias através do botão ‘Gerir’ abaixo, tornando-as mais úteis e personalizadas para você.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar as suas interações com LLMs adicionando memórias através do botão ‘Gerir’ abaixo, tornando-as mais úteis e personalizadas para você.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Exclude",
 	"Exclude": "Exclude",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Ieri",
 	"Yesterday": "Ieri",
 	"You": "Tu",
 	"You": "Tu",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Puteți discuta cu un număr maxim de {{maxCount}} fișier(e) simultan.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Puteți discuta cu un număr maxim de {{maxCount}} fișier(e) simultan.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puteți personaliza interacțiunile dvs. cu LLM-urile adăugând amintiri prin butonul 'Gestionează' de mai jos, făcându-le mai utile și adaptate la dvs.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puteți personaliza interacțiunile dvs. cu LLM-urile adăugând amintiri prin butonul 'Gestionează' de mai jos, făcându-le mai utile și adaptate la dvs.",
 	"You cannot upload an empty file.": "Nu poți încărca un fișier gol.",
 	"You cannot upload an empty file.": "Nu poți încărca un fișier gol.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Исключать",
 	"Exclude": "Исключать",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Напишите здесь содержимое шаблона вашей модели.",
 	"Write your model template content here": "Напишите здесь содержимое шаблона вашей модели.",
 	"Yesterday": "Вчера",
 	"Yesterday": "Вчера",
 	"You": "Вы",
 	"You": "Вы",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Одновременно вы можете общаться только с максимальным количеством файлов {{maxCount}}.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Одновременно вы можете общаться только с максимальным количеством файлов {{maxCount}}.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Вы можете персонализировать свое взаимодействие с LLMs, добавив воспоминания с помощью кнопки \"Управлять\" ниже, что сделает их более полезными и адаптированными для вас.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Вы можете персонализировать свое взаимодействие с LLMs, добавив воспоминания с помощью кнопки \"Управлять\" ниже, что сделает их более полезными и адаптированными для вас.",
 	"You cannot upload an empty file.": "Вы не можете загрузить пустой файл.",
 	"You cannot upload an empty file.": "Вы не можете загрузить пустой файл.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Vylúčiť",
 	"Exclude": "Vylúčiť",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Včera",
 	"Yesterday": "Včera",
 	"You": "Vy",
 	"You": "Vy",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Môžete komunikovať len s maximálne {{maxCount}} súbor(ami) naraz.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Môžete komunikovať len s maximálne {{maxCount}} súbor(ami) naraz.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Môžete personalizovať svoje interakcie s LLM pridaním spomienok prostredníctvom tlačidla 'Spravovať' nižšie, čo ich urobí pre vás užitočnejšími a lepšie prispôsobenými.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Môžete personalizovať svoje interakcie s LLM pridaním spomienok prostredníctvom tlačidla 'Spravovať' nižšie, čo ich urobí pre vás užitočnejšími a lepšie prispôsobenými.",
 	"You cannot upload an empty file.": "Nemôžete nahrať prázdny súbor.",
 	"You cannot upload an empty file.": "Nemôžete nahrať prázdny súbor.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Јуче",
 	"Yesterday": "Јуче",
 	"You": "Ти",
 	"You": "Ти",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Можете учинити разговор са ВЈМ-овима приснијим додавањем сећања користећи „Управљај“ думе испод и тиме их учинити приснијим и кориснијим.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Можете учинити разговор са ВЈМ-овима приснијим додавањем сећања користећи „Управљај“ думе испод и тиме их учинити приснијим и кориснијим.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Skriv din models innehåll här",
 	"Write your model template content here": "Skriv din models innehåll här",
 	"Yesterday": "Igår",
 	"Yesterday": "Igår",
 	"You": "Dig",
 	"You": "Dig",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan endast chatta med maximalt {{maxCount}} fil(er) på samma gång",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan endast chatta med maximalt {{maxCount}} fil(er) på samma gång",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan anpassa dina interaktioner med stora språkmodeller genom att lägga till minnen via knappen 'Hantera' nedan, så att de blir mer användbara och skräddarsydda för dig.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan anpassa dina interaktioner med stora språkmodeller genom att lägga till minnen via knappen 'Hantera' nedan, så att de blir mer användbara och skräddarsydda för dig.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "เมื่อวาน",
 	"Yesterday": "เมื่อวาน",
 	"You": "คุณ",
 	"You": "คุณ",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "คุณสามารถปรับแต่งการโต้ตอบของคุณกับ LLMs โดยเพิ่มความทรงจำผ่านปุ่ม 'จัดการ' ด้านล่าง ทำให้มันมีประโยชน์และเหมาะกับคุณมากขึ้น",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "คุณสามารถปรับแต่งการโต้ตอบของคุณกับ LLMs โดยเพิ่มความทรงจำผ่านปุ่ม 'จัดการ' ด้านล่าง ทำให้มันมีประโยชน์และเหมาะกับคุณมากขึ้น",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "",
 	"Yesterday": "",
 	"You": "",
 	"You": "",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "Örnek: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Örnek: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Örnek: sAMAccountName or uid or userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Örnek: sAMAccountName or uid or userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Hariç tut",
 	"Exclude": "Hariç tut",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Model şablon içeriğinizi buraya yazın",
 	"Write your model template content here": "Model şablon içeriğinizi buraya yazın",
 	"Yesterday": "Dün",
 	"Yesterday": "Dün",
 	"You": "Sen",
 	"You": "Sen",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Aynı anda en fazla {{maxCount}} dosya ile sohbet edebilirsiniz.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Aynı anda en fazla {{maxCount}} dosya ile sohbet edebilirsiniz.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Aşağıdaki 'Yönet' düğmesi aracılığıyla bellekler ekleyerek LLM'lerle etkileşimlerinizi kişiselleştirebilir, onları daha yararlı ve size özel hale getirebilirsiniz.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Aşağıdaki 'Yönet' düğmesi aracılığıyla bellekler ekleyerek LLM'lerle etkileşimlerinizi kişiselleştirebilir, onları daha yararlı ve size özel hale getirebilirsiniz.",
 	"You cannot upload an empty file.": "Boş bir dosya yükleyemezsiniz.",
 	"You cannot upload an empty file.": "Boş bir dosya yükleyemezsiniz.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "Приклад: пошта",
 	"Example: mail": "Приклад: пошта",
 	"Example: ou=users,dc=foo,dc=example": "Приклад: ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "Приклад: ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "Приклад: sAMAccountName або uid або userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "Приклад: sAMAccountName або uid або userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "Виключити",
 	"Exclude": "Виключити",
 	"Execute code for analysis": "Виконати код для аналізу",
 	"Execute code for analysis": "Виконати код для аналізу",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "Напишіть вміст шаблону моделі тут",
 	"Write your model template content here": "Напишіть вміст шаблону моделі тут",
 	"Yesterday": "Вчора",
 	"Yesterday": "Вчора",
 	"You": "Ви",
 	"You": "Ви",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ви можете спілкуватися лише з максимальною кількістю {{maxCount}} файлів одночасно.",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ви можете спілкуватися лише з максимальною кількістю {{maxCount}} файлів одночасно.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Ви можете налаштувати ваші взаємодії з мовними моделями, додавши спогади через кнопку 'Керувати' внизу, що зробить їх більш корисними та персоналізованими для вас.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Ви можете налаштувати ваші взаємодії з мовними моделями, додавши спогади через кнопку 'Керувати' внизу, що зробить їх більш корисними та персоналізованими для вас.",
 	"You cannot upload an empty file.": "Ви не можете завантажити порожній файл.",
 	"You cannot upload an empty file.": "Ви не можете завантажити порожній файл.",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "خارج کریں",
 	"Exclude": "خارج کریں",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "کل",
 	"Yesterday": "کل",
 	"You": "آپ",
 	"You": "آپ",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "آپ ایک وقت میں زیادہ سے زیادہ {{maxCount}} فائل(وں) کے ساتھ صرف چیٹ کر سکتے ہیں",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "آپ ایک وقت میں زیادہ سے زیادہ {{maxCount}} فائل(وں) کے ساتھ صرف چیٹ کر سکتے ہیں",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "آپ نیچے موجود 'Manage' بٹن کے ذریعے LLMs کے ساتھ اپنی بات چیت کو یادداشتیں شامل کرکے ذاتی بنا سکتے ہیں، جو انہیں آپ کے لیے زیادہ مددگار اور آپ کے متعلق بنائے گی",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "آپ نیچے موجود 'Manage' بٹن کے ذریعے LLMs کے ساتھ اپنی بات چیت کو یادداشتیں شامل کرکے ذاتی بنا سکتے ہیں، جو انہیں آپ کے لیے زیادہ مددگار اور آپ کے متعلق بنائے گی",
 	"You cannot upload an empty file.": "آپ خالی فائل اپلوڈ نہیں کر سکتے",
 	"You cannot upload an empty file.": "آپ خالی فائل اپلوڈ نہیں کر سکتے",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "",
 	"Example: mail": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: ou=users,dc=foo,dc=example": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Example: sAMAccountName or uid or userPrincipalName": "",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "",
 	"Exclude": "",
 	"Execute code for analysis": "",
 	"Execute code for analysis": "",
 	"Expand": "",
 	"Expand": "",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "",
 	"Write your model template content here": "",
 	"Yesterday": "Hôm qua",
 	"Yesterday": "Hôm qua",
 	"You": "Bạn",
 	"You": "Bạn",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Bạn có thể cá nhân hóa các tương tác của mình với LLM bằng cách thêm bộ nhớ thông qua nút 'Quản lý' bên dưới, làm cho chúng hữu ích hơn và phù hợp với bạn hơn.",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Bạn có thể cá nhân hóa các tương tác của mình với LLM bằng cách thêm bộ nhớ thông qua nút 'Quản lý' bên dưới, làm cho chúng hữu ích hơn và phù hợp với bạn hơn.",
 	"You cannot upload an empty file.": "",
 	"You cannot upload an empty file.": "",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "例如:mail",
 	"Example: mail": "例如:mail",
 	"Example: ou=users,dc=foo,dc=example": "例如:ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "例如:ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "例如:sAMAccountName 或 uid 或 userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "例如:sAMAccountName 或 uid 或 userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "排除",
 	"Exclude": "排除",
 	"Execute code for analysis": "执行代码进行分析",
 	"Execute code for analysis": "执行代码进行分析",
 	"Expand": "展开",
 	"Expand": "展开",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "在此写入模型模板内容",
 	"Write your model template content here": "在此写入模型模板内容",
 	"Yesterday": "昨天",
 	"Yesterday": "昨天",
 	"You": "你",
 	"You": "你",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "每次对话最多仅能附上 {{maxCount}} 个文件。",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "每次对话最多仅能附上 {{maxCount}} 个文件。",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "通过点击下方的“管理”按钮,你可以添加记忆,以个性化大语言模型的互动,使其更有用,更符合你的需求。",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "通过点击下方的“管理”按钮,你可以添加记忆,以个性化大语言模型的互动,使其更有用,更符合你的需求。",
 	"You cannot upload an empty file.": "请勿上传空文件。",
 	"You cannot upload an empty file.": "请勿上传空文件。",

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

@@ -450,6 +450,7 @@
 	"Example: mail": "範例:mail",
 	"Example: mail": "範例:mail",
 	"Example: ou=users,dc=foo,dc=example": "範例:ou=users,dc=foo,dc=example",
 	"Example: ou=users,dc=foo,dc=example": "範例:ou=users,dc=foo,dc=example",
 	"Example: sAMAccountName or uid or userPrincipalName": "範例:sAMAccountName 或 uid 或 userPrincipalName",
 	"Example: sAMAccountName or uid or userPrincipalName": "範例:sAMAccountName 或 uid 或 userPrincipalName",
+	"Exceeded the number of seats in your license. Please contact support to increase the number of seats.": "",
 	"Exclude": "排除",
 	"Exclude": "排除",
 	"Execute code for analysis": "執行程式碼以進行分析",
 	"Execute code for analysis": "執行程式碼以進行分析",
 	"Expand": "展開",
 	"Expand": "展開",
@@ -1157,6 +1158,7 @@
 	"Write your model template content here": "在此撰寫您的模型範本内容",
 	"Write your model template content here": "在此撰寫您的模型範本内容",
 	"Yesterday": "昨天",
 	"Yesterday": "昨天",
 	"You": "您",
 	"You": "您",
+	"You are currently using a trial license. Please contact support to upgrade your license.": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "您一次最多只能與 {{maxCount}} 個檔案進行對話。",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "您一次最多只能與 {{maxCount}} 個檔案進行對話。",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "您可以透過下方的「管理」按鈕新增記憶,將您與大型語言模型的互動個人化,讓它們更有幫助並更符合您的需求。",
 	"You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "您可以透過下方的「管理」按鈕新增記憶,將您與大型語言模型的互動個人化,讓它們更有幫助並更符合您的需求。",
 	"You cannot upload an empty file.": "您無法上傳空檔案",
 	"You cannot upload an empty file.": "您無法上傳空檔案",