Bladeren bron

chore: format

Timothy J. Baek 6 maanden geleden
bovenliggende
commit
040449be01
48 gewijzigde bestanden met toevoegingen van 3159 en 438 verwijderingen
  1. 5 5
      src/lib/apis/auths/index.ts
  2. 120 113
      src/lib/components/admin/Settings/Connections.svelte
  3. 66 7
      src/lib/i18n/locales/ar-BH/translation.json
  4. 66 7
      src/lib/i18n/locales/bg-BG/translation.json
  5. 66 7
      src/lib/i18n/locales/bn-BD/translation.json
  6. 65 6
      src/lib/i18n/locales/ca-ES/translation.json
  7. 66 7
      src/lib/i18n/locales/ceb-PH/translation.json
  8. 66 7
      src/lib/i18n/locales/cs-CZ/translation.json
  9. 66 7
      src/lib/i18n/locales/da-DK/translation.json
  10. 66 7
      src/lib/i18n/locales/de-DE/translation.json
  11. 66 7
      src/lib/i18n/locales/dg-DG/translation.json
  12. 66 7
      src/lib/i18n/locales/en-GB/translation.json
  13. 66 7
      src/lib/i18n/locales/en-US/translation.json
  14. 66 7
      src/lib/i18n/locales/es-ES/translation.json
  15. 66 7
      src/lib/i18n/locales/fa-IR/translation.json
  16. 66 7
      src/lib/i18n/locales/fi-FI/translation.json
  17. 66 7
      src/lib/i18n/locales/fr-CA/translation.json
  18. 66 7
      src/lib/i18n/locales/fr-FR/translation.json
  19. 66 7
      src/lib/i18n/locales/he-IL/translation.json
  20. 66 7
      src/lib/i18n/locales/hi-IN/translation.json
  21. 66 7
      src/lib/i18n/locales/hr-HR/translation.json
  22. 66 7
      src/lib/i18n/locales/hu-HU/translation.json
  23. 66 7
      src/lib/i18n/locales/id-ID/translation.json
  24. 66 7
      src/lib/i18n/locales/ie-GA/translation.json
  25. 66 7
      src/lib/i18n/locales/it-IT/translation.json
  26. 66 7
      src/lib/i18n/locales/ja-JP/translation.json
  27. 66 7
      src/lib/i18n/locales/ka-GE/translation.json
  28. 66 7
      src/lib/i18n/locales/ko-KR/translation.json
  29. 66 7
      src/lib/i18n/locales/lt-LT/translation.json
  30. 66 7
      src/lib/i18n/locales/ms-MY/translation.json
  31. 66 7
      src/lib/i18n/locales/nb-NO/translation.json
  32. 66 7
      src/lib/i18n/locales/nl-NL/translation.json
  33. 66 7
      src/lib/i18n/locales/pa-IN/translation.json
  34. 66 7
      src/lib/i18n/locales/pl-PL/translation.json
  35. 65 6
      src/lib/i18n/locales/pt-BR/translation.json
  36. 66 7
      src/lib/i18n/locales/pt-PT/translation.json
  37. 66 7
      src/lib/i18n/locales/ro-RO/translation.json
  38. 66 7
      src/lib/i18n/locales/ru-RU/translation.json
  39. 66 7
      src/lib/i18n/locales/sr-RS/translation.json
  40. 66 7
      src/lib/i18n/locales/sv-SE/translation.json
  41. 66 7
      src/lib/i18n/locales/th-TH/translation.json
  42. 66 7
      src/lib/i18n/locales/tk-TW/translation.json
  43. 66 7
      src/lib/i18n/locales/tr-TR/translation.json
  44. 66 7
      src/lib/i18n/locales/uk-UA/translation.json
  45. 66 7
      src/lib/i18n/locales/ur-PK/translation.json
  46. 66 7
      src/lib/i18n/locales/vi-VN/translation.json
  47. 66 7
      src/lib/i18n/locales/zh-CN/translation.json
  48. 66 7
      src/lib/i18n/locales/zh-TW/translation.json

+ 5 - 5
src/lib/apis/auths/index.ts

@@ -150,7 +150,7 @@ export const getLdapConfig = async (token: string = '') => {
 		headers: {
 			'Content-Type': 'application/json',
 			...(token && { authorization: `Bearer ${token}` })
-		},
+		}
 	})
 		.then(async (res) => {
 			if (!res.ok) throw await res.json();
@@ -167,7 +167,7 @@ export const getLdapConfig = async (token: string = '') => {
 	}
 
 	return res;
-}
+};
 
 export const updateLdapConfig = async (token: string = '', enable_ldap: boolean) => {
 	let error = null;
@@ -197,7 +197,7 @@ export const updateLdapConfig = async (token: string = '', enable_ldap: boolean)
 	}
 
 	return res;
-}
+};
 
 export const getLdapServer = async (token: string = '') => {
 	let error = null;
@@ -207,7 +207,7 @@ export const getLdapServer = async (token: string = '') => {
 		headers: {
 			'Content-Type': 'application/json',
 			...(token && { authorization: `Bearer ${token}` })
-		},
+		}
 	})
 		.then(async (res) => {
 			if (!res.ok) throw await res.json();
@@ -224,7 +224,7 @@ export const getLdapServer = async (token: string = '') => {
 	}
 
 	return res;
-}
+};
 
 export const updateLdapServer = async (token: string = '', body: object) => {
 	let error = null;

+ 120 - 113
src/lib/components/admin/Settings/Connections.svelte

@@ -24,7 +24,7 @@
 		getLdapConfig,
 		updateLdapConfig,
 		getLdapServer,
-		updateLdapServer,
+		updateLdapServer
 	} from '$lib/apis/auths';
 	import { toast } from 'svelte-sonner';
 	import Switch from '$lib/components/common/Switch.svelte';
@@ -51,7 +51,6 @@
 	let ENABLE_OPENAI_API = null;
 	let ENABLE_OLLAMA_API = null;
 
-	
 	// LDAP
 	let ENABLE_LDAP = false;
 	let LDAP_SERVER = {
@@ -488,168 +487,176 @@
 
 					{#if ENABLE_LDAP}
 						<div class="flex flex-col gap-1">
-								<div class="flex w-full gap-2">
-									<div class="w-full">
-										<div class=" self-center text-xs font-medium min-w-fit mb-1">
-											{$i18n.t('Label')}
-										</div>
-										<input
+							<div class="flex w-full gap-2">
+								<div class="w-full">
+									<div class=" self-center text-xs font-medium min-w-fit mb-1">
+										{$i18n.t('Label')}
+									</div>
+									<input
 										class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 										required
 										placeholder={$i18n.t('Enter server label')}
 										bind:value={LDAP_SERVER.label}
-										/>
-									</div>
-									<div class="w-full"></div>
+									/>
 								</div>
-								<div class="flex w-full gap-2">
-									<div class="w-full">
-										<div class=" self-center text-xs font-medium min-w-fit mb-1">
-											{$i18n.t('Host')}
-										</div>
-										<input
+								<div class="w-full"></div>
+							</div>
+							<div class="flex w-full gap-2">
+								<div class="w-full">
+									<div class=" self-center text-xs font-medium min-w-fit mb-1">
+										{$i18n.t('Host')}
+									</div>
+									<input
 										class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 										required
 										placeholder={$i18n.t('Enter server host')}
 										bind:value={LDAP_SERVER.host}
-										/>
+									/>
+								</div>
+								<div class="w-full">
+									<div class=" self-center text-xs font-medium min-w-fit mb-1">
+										{$i18n.t('Port')}
 									</div>
-									<div class="w-full">
-										<div class=" self-center text-xs font-medium min-w-fit mb-1">
-											{$i18n.t('Port')}
-										</div>
-										<Tooltip placement="top-start" content={$i18n.t("Default to 389 or 636 if TLS is enabled")} className="w-full">
-											<input
+									<Tooltip
+										placement="top-start"
+										content={$i18n.t('Default to 389 or 636 if TLS is enabled')}
+										className="w-full"
+									>
+										<input
 											class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 											type="number"
 											placeholder={$i18n.t('Enter server port')}
 											bind:value={LDAP_SERVER.port}
-											/>
-										</Tooltip>
-									</div>
+										/>
+									</Tooltip>
 								</div>
-								<div class="flex w-full gap-2">
-									<div class="w-full">
-										<div class=" self-center text-xs font-medium min-w-fit mb-1">
-											{$i18n.t('Application DN')}
-										</div>
-										<Tooltip content={$i18n.t('The Application Account DN you bind with for search')} placement="top-start">
-											<input
+							</div>
+							<div class="flex w-full gap-2">
+								<div class="w-full">
+									<div class=" self-center text-xs font-medium min-w-fit mb-1">
+										{$i18n.t('Application DN')}
+									</div>
+									<Tooltip
+										content={$i18n.t('The Application Account DN you bind with for search')}
+										placement="top-start"
+									>
+										<input
 											class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 											required
 											placeholder={$i18n.t('Enter Application DN')}
 											bind:value={LDAP_SERVER.app_dn}
-											/>
-										</Tooltip>
+										/>
+									</Tooltip>
+								</div>
+								<div class="w-full">
+									<div class=" self-center text-xs font-medium min-w-fit mb-1">
+										{$i18n.t('Application DN Password')}
 									</div>
-									<div class="w-full">
-										<div class=" self-center text-xs font-medium min-w-fit mb-1">
-											{$i18n.t('Application DN Password')}
-										</div>
-										<SensitiveInput
+									<SensitiveInput
 										placeholder={$i18n.t('Enter Application DN Password')}
 										bind:value={LDAP_SERVER.app_dn_password}
-										/>
-									</div>
+									/>
 								</div>
-								<div class="flex w-full gap-2">
-									<div class="w-full">
-										<div class=" self-center text-xs font-medium min-w-fit mb-1">
-											{$i18n.t('Attribute for Username')}
-										</div>
-										<Tooltip content={$i18n.t('The LDAP attribute that maps to the username that users use to sign in.')} placement="top-start">
-											<input
+							</div>
+							<div class="flex w-full gap-2">
+								<div class="w-full">
+									<div class=" self-center text-xs font-medium min-w-fit mb-1">
+										{$i18n.t('Attribute for Username')}
+									</div>
+									<Tooltip
+										content={$i18n.t(
+											'The LDAP attribute that maps to the username that users use to sign in.'
+										)}
+										placement="top-start"
+									>
+										<input
 											class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 											required
 											placeholder={$i18n.t('Example: sAMAccountName or uid or userPrincipalName')}
 											bind:value={LDAP_SERVER.attribute_for_username}
-											/>
-										</Tooltip>
-									</div>
+										/>
+									</Tooltip>
 								</div>
-								<div class="flex w-full gap-2">
-									<div class="w-full">
-										<div class=" self-center text-xs font-medium min-w-fit mb-1">
-											{$i18n.t('Search Base')}
-										</div>
-										<Tooltip content={$i18n.t('The base to search for users')} placement="top-start">
-											<input
+							</div>
+							<div class="flex w-full gap-2">
+								<div class="w-full">
+									<div class=" self-center text-xs font-medium min-w-fit mb-1">
+										{$i18n.t('Search Base')}
+									</div>
+									<Tooltip content={$i18n.t('The base to search for users')} placement="top-start">
+										<input
 											class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 											required
 											placeholder={$i18n.t('Example: ou=users,dc=foo,dc=example')}
 											bind:value={LDAP_SERVER.search_base}
-											/>
-										</Tooltip>
-									</div>
+										/>
+									</Tooltip>
 								</div>
-								<div class="flex w-full gap-2">
-									<div class="w-full">
-										<div class=" self-center text-xs font-medium min-w-fit mb-1">
-											{$i18n.t('Search Filters')}
-										</div>
-										<input
+							</div>
+							<div class="flex w-full gap-2">
+								<div class="w-full">
+									<div class=" self-center text-xs font-medium min-w-fit mb-1">
+										{$i18n.t('Search Filters')}
+									</div>
+									<input
 										class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 										placeholder={$i18n.t('Example: (&(objectClass=inetOrgPerson)(uid=%s))')}
 										bind:value={LDAP_SERVER.search_filters}
-										/>
-									</div>
-								</div>
-								<div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
-									<a
-										class=" text-gray-300 font-medium underline"
-										href="https://ldap.com/ldap-filters/"
-										target="_blank"
-									>
-										{$i18n.t('Click here for filter guides.')}
-									</a>
+									/>
 								</div>
-								<div>
-									<div class="flex justify-between items-center text-sm">
-										<div class="  font-medium">{$i18n.t('TLS')}</div>
-
-										<div class="mt-1">
-											<Switch
-												bind:state={LDAP_SERVER.use_tls}
-											/>
-										</div>
+							</div>
+							<div class="mt-2 text-xs text-gray-400 dark:text-gray-500">
+								<a
+									class=" text-gray-300 font-medium underline"
+									href="https://ldap.com/ldap-filters/"
+									target="_blank"
+								>
+									{$i18n.t('Click here for filter guides.')}
+								</a>
+							</div>
+							<div>
+								<div class="flex justify-between items-center text-sm">
+									<div class="  font-medium">{$i18n.t('TLS')}</div>
+
+									<div class="mt-1">
+										<Switch bind:state={LDAP_SERVER.use_tls} />
 									</div>
-									{#if LDAP_SERVER.use_tls}
-										<div class="flex w-full gap-2">
-											<div class="w-full">
-												<div class=" self-center text-xs font-medium min-w-fit mb-1 mt-1">
-													{$i18n.t('Certificate Path')}
-												</div>
-												<input
+								</div>
+								{#if LDAP_SERVER.use_tls}
+									<div class="flex w-full gap-2">
+										<div class="w-full">
+											<div class=" self-center text-xs font-medium min-w-fit mb-1 mt-1">
+												{$i18n.t('Certificate Path')}
+											</div>
+											<input
 												class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 												required
 												placeholder={$i18n.t('Enter certificate path')}
 												bind:value={LDAP_SERVER.certificate_path}
-												/>
-											</div>
+											/>
 										</div>
-										<div class="flex w-full gap-2">
-											<div class="w-full">
-												<div class=" self-center text-xs font-medium min-w-fit mb-1">
-													{$i18n.t('Ciphers')}
-												</div>
-												<Tooltip content={$i18n.t('Default to ALL')} placement="top-start">
-													<input
+									</div>
+									<div class="flex w-full gap-2">
+										<div class="w-full">
+											<div class=" self-center text-xs font-medium min-w-fit mb-1">
+												{$i18n.t('Ciphers')}
+											</div>
+											<Tooltip content={$i18n.t('Default to ALL')} placement="top-start">
+												<input
 													class="w-full rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-none"
 													placeholder={$i18n.t('Example: ALL')}
 													bind:value={LDAP_SERVER.ciphers}
-													/>
-												</Tooltip>
-											</div>
-											<div class="w-full"></div>
+												/>
+											</Tooltip>
 										</div>
-									{/if}
-								</div>
+										<div class="w-full"></div>
+									</div>
+								{/if}
+							</div>
 						</div>
 					{/if}
-
 				</div>
 			</div>
-
 		{:else}
 			<div class="flex h-full justify-center">
 				<div class="my-auto">

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "الأحرف الأبجدية الرقمية والواصلات",
 	"Already have an account?": "هل تملك حساب ؟",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "مساعد",
 	"and": "و",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API مفتاح",
 	"API Key created.": "API تم أنشاء المفتاح",
 	"API keys": "مفاتيح واجهة برمجة التطبيقات",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "أبريل",
 	"Archive": "الأرشيف",
 	"Archive All Chats": "أرشفة جميع الدردشات",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "أرفق ملف",
 	"Attention to detail": "انتبه للتفاصيل",
+	"Attribute for Username": "",
 	"Audio": "صوتي",
 	"August": "أغسطس",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "النسخ التلقائي للاستجابة إلى الحافظة",
 	"Auto-playback response": "استجابة التشغيل التلقائي",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "اللغاء",
 	"Capabilities": "قدرات",
+	"Certificate Path": "",
 	"Change Password": "تغير الباسورد",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chunk تداخل",
 	"Chunk Params": "Chunk المتغيرات",
 	"Chunk Size": "Chunk حجم",
+	"Ciphers": "",
 	"Citation": "اقتباس",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "أضغط هنا للمساعدة",
 	"Click here to": "أضغط هنا الانتقال",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "طول السياق",
 	"Continue Response": "متابعة الرد",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "تم نسخ عنوان URL للدردشة المشتركة إلى الحافظة",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "أنسخ الرابط",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "تم النسخ إلى الحافظة بنجاح",
+	"Create a knowledge base": "",
 	"Create a model": "إنشاء نموذج",
 	"Create Account": "إنشاء حساب",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "أنشئت في",
 	"Created At": "أنشئت من",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "الموديل المختار",
 	"Current Password": "كلمة السر الحالية",
@@ -189,6 +202,8 @@
 	"Default Model": "النموذج الافتراضي",
 	"Default model updated": "الإفتراضي تحديث الموديل",
 	"Default Prompt Suggestions": "الإفتراضي Prompt الاقتراحات",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "الإفتراضي صلاحيات المستخدم",
 	"Delete": "حذف",
 	"Delete a model": "حذف الموديل",
@@ -204,8 +219,8 @@
 	"Delete User": "حذف المستخدم",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} حذف",
 	"Deleted {{name}}": "حذف {{name}}",
-	"Description": "وصف",
 	"Describe your knowledge base and objectives": "",
+	"Description": "وصف",
 	"Didn't fully follow instructions": "لم أتبع التعليمات بشكل كامل",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "تضمين محرك النموذج",
 	"Embedding model set to \"{{embedding_model}}\"": "تم تعيين نموذج التضمين على \"{{embedding_model}}\"",
 	"Enable Community Sharing": "تمكين مشاركة المجتمع",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "تفعيل عمليات التسجيل الجديدة",
 	"Enable Web Search": "تمكين بحث الويب",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
 	"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "أدخل مفتاح واجهة برمجة تطبيقات البحث الشجاع",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "أدخل الChunk Overlap",
 	"Enter Chunk Size": "أدخل Chunk الحجم",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "أدخل عنوان URL لاستعلام Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "أدخل مفتاح واجهة برمجة تطبيقات Serper",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "أدخل مفتاح واجهة برمجة تطبيقات Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "أدخل تسلسل التوقف",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "ادخل كلمة المرور",
 	"Enter Your Role": "أدخل الصلاحيات",
+	"Enter Your Username": "",
 	"Error": "خطأ",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "تجريبي",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "أخفاء",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
 	"Hybrid Search": "البحث الهجين",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "معلومات",
 	"Input commands": "إدخال الأوامر",
 	"Install from Github URL": "التثبيت من عنوان URL لجيثب",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "اللغة",
 	"Last Active": "آخر نشاط",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "المزيد",
 	"Move to Top": "",
 	"Name": "الأسم",
-	"Name your model": "قم بتسمية النموذج الخاص بك",
 	"Name your knowledge base": "",
+	"Name your model": "قم بتسمية النموذج الخاص بك",
 	"New Chat": "دردشة جديدة",
 	"New folder": "",
 	"New Password": "كلمة المرور الجديدة",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "موقف ايجابي",
 	"Previous 30 days": "أخر 30 يوم",
 	"Previous 7 days": "أخر 7 أيام",
@@ -589,6 +625,7 @@
 	"Read Aloud": "أقراء لي",
 	"Record voice": "سجل صوت",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI إعادة توجيهك إلى مجتمع ",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "النسخ التلقائي للاستجابة إلى الحافظة",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "البحث",
 	"Search a model": "البحث عن موديل",
+	"Search Base": "",
 	"Search Chats": "البحث في الدردشات",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "نماذج البحث",
+	"Search options": "",
 	"Search Prompts": "أبحث حث",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "عدد نتائج البحث",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_zero": "تم البحث في {{count}} sites_zero",
@@ -687,8 +725,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "ضبط الخطوات",
 	"Set Task Model": "تعيين نموذج المهمة",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "ضبط الصوت",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "الاعدادات",
 	"Settings saved successfully!": "تم حفظ الاعدادات بنجاح",
 	"Share": "كشاركة",
@@ -704,6 +749,7 @@
 	"Showcased creativity": "أظهر الإبداع",
 	"Sign in": "تسجيل الدخول",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "تسجيل الخروج",
 	"Sign up": "تسجيل",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -729,6 +775,7 @@
 	"System Prompt": "محادثة النظام",
 	"Tags": "الوسوم",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "أخبرنا المزيد:",
@@ -739,17 +786,24 @@
 	"Text-to-Speech Engine": "محرك تحويل النص إلى كلام",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "شكرا لملاحظاتك!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "يجب أن تكون النتيجة قيمة تتراوح بين 0.0 (0%) و1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "الثيم",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "وهذا يضمن حفظ محادثاتك القيمة بشكل آمن في قاعدة بياناتك الخلفية. شكرًا لك!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -765,6 +819,7 @@
 	"Title Auto-Generation": "توليد تلقائي للعنوان",
 	"Title cannot be an empty string.": "العنوان مطلوب",
 	"Title Generation Prompt": "موجه إنشاء العنوان",
+	"TLS": "",
 	"To access the available model names for downloading,": "للوصول إلى أسماء الموديلات المتاحة للتنزيل،",
 	"To access the GGUF models available for downloading,": "للوصول إلى الموديلات GGUF المتاحة للتنزيل،",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -832,6 +887,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "صلاحيات المستخدم",
+	"Username": "",
 	"Users": "المستخدمين",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "يستخدم",
@@ -856,17 +912,20 @@
 	"Webhook URL": "Webhook الرابط",
 	"WebUI Settings": "WebUI اعدادات",
 	"WebUI will make requests to": "سوف يقوم WebUI بتقديم طلبات ل",
-	"What’s New in": "ما هو الجديد",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "ما هو الجديد",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "مساحة العمل",
 	"Write a prompt suggestion (e.g. Who are you?)": "اكتب اقتراحًا سريعًا (على سبيل المثال، من أنت؟)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "اكتب ملخصًا في 50 كلمة يلخص [الموضوع أو الكلمة الرئيسية]",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "أمس",
 	"You": "انت",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -881,4 +940,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube تحميل اعدادات"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "алфанумерични знаци и тире",
 	"Already have an account?": "Вече имате акаунт? ",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "асистент",
 	"and": "и",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API Ключ",
 	"API Key created.": "API Ключ създаден.",
 	"API keys": "API Ключове",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Април",
 	"Archive": "Архивирани Чатове",
 	"Archive All Chats": "Архив Всички чатове",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Прикачване на файл",
 	"Attention to detail": "Внимание към детайлите",
+	"Attribute for Username": "",
 	"Audio": "Аудио",
 	"August": "Август",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Аувтоматично копиране на отговор в клипборда",
 	"Auto-playback response": "Аувтоматично възпроизвеждане на Отговора",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "Отказ",
 	"Capabilities": "Възможности",
+	"Certificate Path": "",
 	"Change Password": "Промяна на Парола",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chunk Overlap",
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Size",
+	"Ciphers": "",
 	"Citation": "Цитат",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Натиснете тук за помощ.",
 	"Click here to": "Натиснете тук за",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "Дължина на Контекста",
 	"Continue Response": "Продължи отговора",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "Копирана е връзката за чат!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Копиране на връзка",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Копирането в клипборда беше успешно!",
+	"Create a knowledge base": "",
 	"Create a model": "Създаване на модел",
 	"Create Account": "Създаване на Акаунт",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Създадено на",
 	"Created At": "Създадено на",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "Текущ модел",
 	"Current Password": "Текуща Парола",
@@ -189,6 +202,8 @@
 	"Default Model": "Модел по подразбиране",
 	"Default model updated": "Моделът по подразбиране е обновен",
 	"Default Prompt Suggestions": "Промпт Предложения по подразбиране",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Роля на потребителя по подразбиране",
 	"Delete": "Изтриване",
 	"Delete a model": "Изтриване на модел",
@@ -204,8 +219,8 @@
 	"Delete User": "Изтриване на потребител",
 	"Deleted {{deleteModelTag}}": "Изтрито {{deleteModelTag}}",
 	"Deleted {{name}}": "Изтрито {{име}}",
-	"Description": "Описание",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Описание",
 	"Didn't fully follow instructions": "Не следва инструкциите",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Модел за вграждане",
 	"Embedding model set to \"{{embedding_model}}\"": "Модел за вграждане е настроен на \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Разрешаване на споделяне в общност",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Вклюване на Нови Потребители",
 	"Enable Web Search": "Разрешаване на търсене в уеб",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
 	"Enter a detail about yourself for your LLMs to recall": "Въведете подробности за себе си, за да се herinnerат вашите LLMs",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Въведете Brave Search API ключ",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Въведете Chunk Overlap",
 	"Enter Chunk Size": "Въведете Chunk Size",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Въведете URL адреса на заявката на Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Въведете Serper API ключ",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Въведете Serpstack API ключ",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Въведете стоп последователност",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Въведете вашата парола",
 	"Enter Your Role": "Въведете вашата роля",
+	"Enter Your Username": "",
 	"Error": "Грешка",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Експериментално",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Скрий",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "Как мога да ви помогна днес?",
 	"Hybrid Search": "Hybrid Search",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Включете флага `--api`, когато стартирате stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Информация",
 	"Input commands": "Въведете команди",
 	"Install from Github URL": "Инсталиране от URL адреса на Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Език",
 	"Last Active": "Последни активни",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Повече",
 	"Move to Top": "",
 	"Name": "Име",
-	"Name your model": "Дайте име на вашия модел",
 	"Name your knowledge base": "",
+	"Name your model": "Дайте име на вашия модел",
 	"New Chat": "Нов чат",
 	"New folder": "",
 	"New Password": "Нова парола",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Позитивна ативност",
 	"Previous 30 days": "Предыдущите 30 дни",
 	"Previous 7 days": "Предыдущите 7 дни",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Прочети на Голос",
 	"Record voice": "Записване на глас",
 	"Redirecting you to OpenWebUI Community": "Пренасочване към OpenWebUI общността",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "Отказано, когато не трябва да бъде",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Аувтоматично копиране на отговор в клипборда",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Търси",
 	"Search a model": "Търси модел",
+	"Search Base": "",
 	"Search Chats": "Търсене на чатове",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "Търсене на модели",
+	"Search options": "",
 	"Search Prompts": "Търси Промптове",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "Брой резултати от търсенето",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Търси се в {{count}} sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Задай Стъпки",
 	"Set Task Model": "Задаване на модел на задача",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Задай Глас",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Настройки",
 	"Settings saved successfully!": "Настройките са запазени успешно!",
 	"Share": "Подели",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Показана креативност",
 	"Sign in": "Вписване",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Изход",
 	"Sign up": "Регистрация",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "Системен Промпт",
 	"Tags": "Тагове",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "Повече информация:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Text-to-Speech Engine",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Благодарим ви за вашия отзив!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "The score should be a value between 0.0 (0%) and 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Тема",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Това гарантира, че ценните ви разговори се запазват сигурно във вашата бекенд база данни. Благодарим ви!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Автоматично Генериране на Заглавие",
 	"Title cannot be an empty string.": "Заглавието не може да бъде празно.",
 	"Title Generation Prompt": "Промпт за Генериране на Заглавие",
+	"TLS": "",
 	"To access the available model names for downloading,": "За да получите достъп до наличните имена на модели за изтегляне,",
 	"To access the GGUF models available for downloading,": "За да получите достъп до GGUF моделите, налични за изтегляне,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "Права на потребителя",
+	"Username": "",
 	"Users": "Потребители",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Използване",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Уебхук URL",
 	"WebUI Settings": "WebUI Настройки",
 	"WebUI will make requests to": "WebUI ще направи заявки към",
-	"What’s New in": "Какво е новото в",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Какво е новото в",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Работно пространство",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напиши предложение за промпт (напр. Кой сте вие?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напиши описание в 50 знака, което описва [тема или ключова дума].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "вчера",
 	"You": "вие",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Loader Settings"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন",
 	"Already have an account?": "আগে থেকেই একাউন্ট আছে?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "একটা এসিস্ট্যান্ট",
 	"and": "এবং",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "এপিআই কোড",
 	"API Key created.": "একটি এপিআই কোড তৈরি করা হয়েছে.",
 	"API keys": "এপিআই কোডস",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "আপ্রিল",
 	"Archive": "আর্কাইভ",
 	"Archive All Chats": "আর্কাইভ করুন সকল চ্যাট",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "ফাইল যুক্ত করুন",
 	"Attention to detail": "বিস্তারিত বিশেষতা",
+	"Attribute for Username": "",
 	"Audio": "অডিও",
 	"August": "আগস্ট",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "রেসপন্সগুলো স্বয়ংক্রিভাবে ক্লিপবোর্ডে কপি হবে",
 	"Auto-playback response": "রেসপন্স অটো-প্লেব্যাক",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "বাতিল",
 	"Capabilities": "সক্ষমতা",
+	"Certificate Path": "",
 	"Change Password": "পাসওয়ার্ড পরিবর্তন করুন",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "চাঙ্ক ওভারল্যাপ",
 	"Chunk Params": "চাঙ্ক প্যারামিটার্স",
 	"Chunk Size": "চাঙ্ক সাইজ",
+	"Ciphers": "",
 	"Citation": "উদ্ধৃতি",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "সাহায্যের জন্য এখানে ক্লিক করুন",
 	"Click here to": "এখানে ক্লিক করুন",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "কনটেক্সটের দৈর্ঘ্য",
 	"Continue Response": "যাচাই করুন",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "শেয়ারকৃত কথা-ব্যবহারের URL ক্লিপবোর্ডে কপি করা হয়েছে!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "লিংক কপি করুন",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "ক্লিপবোর্ডে কপি করা সফল হয়েছে",
+	"Create a knowledge base": "",
 	"Create a model": "একটি মডেল তৈরি করুন",
 	"Create Account": "একাউন্ট তৈরি করুন",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "নির্মানকাল",
 	"Created At": "নির্মানকাল",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "বর্তমান মডেল",
 	"Current Password": "বর্তমান পাসওয়ার্ড",
@@ -189,6 +202,8 @@
 	"Default Model": "ডিফল্ট মডেল",
 	"Default model updated": "ডিফল্ট মডেল আপডেট হয়েছে",
 	"Default Prompt Suggestions": "ডিফল্ট প্রম্পট সাজেশন",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "ইউজারের ডিফল্ট পদবি",
 	"Delete": "মুছে ফেলুন",
 	"Delete a model": "একটি মডেল মুছে ফেলুন",
@@ -204,8 +219,8 @@
 	"Delete User": "ইউজার মুছে ফেলুন",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} মুছে ফেলা হয়েছে",
 	"Deleted {{name}}": "{{name}} মোছা হয়েছে",
-	"Description": "বিবরণ",
 	"Describe your knowledge base and objectives": "",
+	"Description": "বিবরণ",
 	"Didn't fully follow instructions": "ইনস্ট্রাকশন সম্পূর্ণ অনুসরণ করা হয়নি",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "ইমেজ ইমেবডিং মডেল ইঞ্জিন",
 	"Embedding model set to \"{{embedding_model}}\"": "ইমেজ ইমেবডিং মডেল সেট করা হয়েছে - \"{{embedding_model}}\"",
 	"Enable Community Sharing": "সম্প্রদায় শেয়ারকরণ সক্ষম করুন",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "নতুন সাইনআপ চালু করুন",
 	"Enable Web Search": "ওয়েব অনুসন্ধান সক্ষম করুন",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
 	"Enter a detail about yourself for your LLMs to recall": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "সাহসী অনুসন্ধান API কী লিখুন",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "চাঙ্ক ওভারল্যাপ লিখুন",
 	"Enter Chunk Size": "চাংক সাইজ লিখুন",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Searxng ক্যোয়ারী URL লিখুন",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Serper API কী লিখুন",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Serpstack API কী লিখুন",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "স্টপ সিকোয়েন্স লিখুন",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "আপনার পাসওয়ার্ড লিখুন",
 	"Enter Your Role": "আপনার রোল লিখুন",
+	"Enter Your Username": "",
 	"Error": "ত্রুটি",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "পরিক্ষামূলক",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "লুকান",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?",
 	"Hybrid Search": "হাইব্রিড অনুসন্ধান",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui চালু করার সময় `--api` ফ্ল্যাগ সংযুক্ত করুন",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "তথ্য",
 	"Input commands": "ইনপুট কমান্ডস",
 	"Install from Github URL": "Github URL থেকে ইনস্টল করুন",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "ভাষা",
 	"Last Active": "সর্বশেষ সক্রিয়",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "আরো",
 	"Move to Top": "",
 	"Name": "নাম",
-	"Name your model": "আপনার মডেলের নাম দিন",
 	"Name your knowledge base": "",
+	"Name your model": "আপনার মডেলের নাম দিন",
 	"New Chat": "নতুন চ্যাট",
 	"New folder": "",
 	"New Password": "নতুন পাসওয়ার্ড",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "পজিটিভ আক্রমণ",
 	"Previous 30 days": "পূর্ব ৩০ দিন",
 	"Previous 7 days": "পূর্ব ৭ দিন",
@@ -589,6 +625,7 @@
 	"Read Aloud": "পড়াশোনা করুন",
 	"Record voice": "ভয়েস রেকর্ড করুন",
 	"Redirecting you to OpenWebUI Community": "আপনাকে OpenWebUI কমিউনিটিতে পাঠানো হচ্ছে",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "যদি উপযুক্ত নয়, তবে রেজিগেনেট করা হচ্ছে",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "রেসপন্সগুলো স্বয়ংক্রিভাবে ক্লিপবোর্ডে কপি হবে",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "অনুসন্ধান",
 	"Search a model": "মডেল অনুসন্ধান করুন",
+	"Search Base": "",
 	"Search Chats": "চ্যাট অনুসন্ধান করুন",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "অনুসন্ধান মডেল",
+	"Search options": "",
 	"Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "অনুসন্ধানের ফলাফল গণনা",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "{{কাউন্ট}} অনুসন্ধান করা হয়েছে sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "পরবর্তী ধাপসমূহ",
 	"Set Task Model": "টাস্ক মডেল সেট করুন",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "কন্ঠস্বর নির্ধারণ করুন",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "সেটিংসমূহ",
 	"Settings saved successfully!": "সেটিংগুলো সফলভাবে সংরক্ষিত হয়েছে",
 	"Share": "শেয়ার করুন",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "সৃজনশীলতা প্রদর্শন",
 	"Sign in": "সাইন ইন",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "সাইন আউট",
 	"Sign up": "সাইন আপ",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "সিস্টেম প্রম্পট",
 	"Tags": "ট্যাগসমূহ",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "আরও বলুন:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "টেক্সট-টু-স্পিচ ইঞ্জিন",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "আপনার মতামত ধন্যবাদ!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "স্কোর একটি 0.0 (0%) এবং 1.0 (100%) এর মধ্যে একটি মান হওয়া উচিত।",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "থিম",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "এটা নিশ্চিত করে যে, আপনার গুরুত্বপূর্ণ আলোচনা নিরাপদে আপনার ব্যাকএন্ড ডেটাবেজে সংরক্ষিত আছে। ধন্যবাদ!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "স্বয়ংক্রিয় শিরোনামগঠন",
 	"Title cannot be an empty string.": "শিরোনাম অবশ্যই একটি পাশাপাশি শব্দ হতে হবে।",
 	"Title Generation Prompt": "শিরোনামগঠন প্রম্পট",
+	"TLS": "",
 	"To access the available model names for downloading,": "ডাউনলোডের জন্য এভেইলএবল মডেলের নামগুলো এক্সেস করতে,",
 	"To access the GGUF models available for downloading,": "ডাউলোডের জন্য এভেইলএবল GGUF মডেলগুলো এক্সেস করতে,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "ইউজার পারমিশনসমূহ",
+	"Username": "",
 	"Users": "ব্যাবহারকারীগণ",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "ইউটিলাইজ",
@@ -852,17 +908,20 @@
 	"Webhook URL": "ওয়েবহুক URL",
 	"WebUI Settings": "WebUI সেটিংসমূহ",
 	"WebUI will make requests to": "WebUI যেখানে রিকোয়েস্ট পাঠাবে",
-	"What’s New in": "এতে নতুন কী",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "এতে নতুন কী",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "ওয়ার্কস্পেস",
 	"Write a prompt suggestion (e.g. Who are you?)": "একটি প্রম্পট সাজেশন লিখুন (যেমন Who are you?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "৫০ শব্দের মধ্যে [topic or keyword] এর একটি সারসংক্ষেপ লিখুন।",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "আগামী",
 	"You": "আপনি",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "YouTube লোডার সেটিংস"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Permetre la interrupció de la veu en una trucada",
 	"alphanumeric characters and hyphens": "caràcters alfanumèrics i guions",
 	"Already have an account?": "Ja tens un compte?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "un assistent",
 	"and": "i",
 	"and {{COUNT}} more": "i {{COUNT}} més",
@@ -59,6 +60,8 @@
 	"API Key": "clau API",
 	"API Key created.": "clau API creada.",
 	"API keys": "Claus de l'API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Abril",
 	"Archive": "Arxiu",
 	"Archive All Chats": "Arxiva tots els xats",
@@ -71,8 +74,12 @@
 	"Assistant": "Assistent",
 	"Attach file": "Adjuntar arxiu",
 	"Attention to detail": "Atenció al detall",
+	"Attribute for Username": "",
 	"Audio": "Àudio",
 	"August": "Agost",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Copiar la resposta automàticament al porta-retalls",
 	"Auto-playback response": "Reproduir la resposta automàticament",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "Cadena d'autenticació de l'API d'AUTOMATIC1111",
@@ -98,6 +105,7 @@
 	"Camera": "Càmera",
 	"Cancel": "Cancel·lar",
 	"Capabilities": "Capacitats",
+	"Certificate Path": "",
 	"Change Password": "Canviar la contrasenya",
 	"Character": "Personatge",
 	"Chart new frontiers": "Traça noves fronteres",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Solapament de blocs",
 	"Chunk Params": "Paràmetres dels blocs",
 	"Chunk Size": "Mida del bloc",
+	"Ciphers": "",
 	"Citation": "Cita",
 	"Clear memory": "Esborrar la memòria",
 	"click here": "prem aquí",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Clica aquí per obtenir ajuda.",
 	"Click here to": "Clic aquí per",
 	"Click here to download user import template file.": "Fes clic aquí per descarregar l'arxiu de plantilla d'importació d'usuaris",
@@ -153,8 +163,11 @@
 	"Context Length": "Mida del context",
 	"Continue Response": "Continuar la resposta",
 	"Continue with {{provider}}": "Continuar amb {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Controlar com es divideix el text del missatge per a les sol·licituds TTS. 'Puntuació' divideix en frases, 'paràgrafs' divideix en paràgrafs i 'cap' manté el missatge com una cadena única.",
 	"Controls": "Controls",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Copiat",
 	"Copied shared chat URL to clipboard!": "S'ha copiat l'URL compartida al porta-retalls!",
 	"Copied to clipboard": "Copiat al porta-retalls",
@@ -164,6 +177,7 @@
 	"Copy Link": "Copiar l'enllaç",
 	"Copy to clipboard": "Copiar al porta-retalls",
 	"Copying to clipboard was successful!": "La còpia al porta-retalls s'ha realitzat correctament",
+	"Create a knowledge base": "Crear una base de coneixement",
 	"Create a model": "Crear un model",
 	"Create Account": "Crear un compte",
 	"Create Admin Account": "Crear un compte d'Administrador",
@@ -173,7 +187,6 @@
 	"Created at": "Creat el",
 	"Created At": "Creat el",
 	"Created by": "Creat per",
-	"Create a knowledge base": "Crear una base de coneixement",
 	"CSV Import": "Importar CSV",
 	"Current Model": "Model actual",
 	"Current Password": "Contrasenya actual",
@@ -189,6 +202,8 @@
 	"Default Model": "Model per defecte",
 	"Default model updated": "Model per defecte actualitzat",
 	"Default Prompt Suggestions": "Suggeriments d'indicació per defecte",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Rol d'usuari per defecte",
 	"Delete": "Eliminar",
 	"Delete a model": "Eliminar un model",
@@ -204,8 +219,8 @@
 	"Delete User": "Eliminar usuari",
 	"Deleted {{deleteModelTag}}": "S'ha eliminat {{deleteModelTag}}",
 	"Deleted {{name}}": "S'ha eliminat {{name}}",
-	"Description": "Descripció",
 	"Describe your knowledge base and objectives": "Descriu la teva base de coneixement i objectius",
+	"Description": "Descripció",
 	"Didn't fully follow instructions": "No s'han seguit les instruccions completament",
 	"Disabled": "Deshabilitat",
 	"Discover a function": "Descobrir una funció",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Motor de model d'incrustació",
 	"Embedding model set to \"{{embedding_model}}\"": "Model d'incrustació configurat a \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Activar l'ús compartit amb la comunitat",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Permetre la qualificació de missatges",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Permetre nous registres",
 	"Enable Web Search": "Activar la cerca web",
 	"Enable Web Search Query Generation": "Activa la generació de consultes de cerca web",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
 	"Enter a detail about yourself for your LLMs to recall": "Introdueix un detall sobre tu què els teus models de llenguatge puguin recordar",
 	"Enter api auth string (e.g. username:password)": "Entra la cadena d'autenticació api (p. ex. nom d'usuari:contrasenya)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "Introdueix el punt de connexió de Bing Search V7",
 	"Enter Bing Search V7 Subscription Key": "Introdueix la clau de subscripció de Bing Search V7",
 	"Enter Brave Search API Key": "Introdueix la clau API de Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Entra l'escala CFG (p.ex. 7.0)",
 	"Enter Chunk Overlap": "Introdueix la mida de solapament de blocs",
 	"Enter Chunk Size": "Introdueix la mida del bloc",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Introdueix la clau API SearchApi",
 	"Enter SearchApi Engine": "Introdueix el motor SearchApi",
 	"Enter Searxng Query URL": "Introdueix l'URL de consulta de Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Introdueix la clau API Serper",
 	"Enter Serply API Key": "Introdueix la clau API Serply",
 	"Enter Serpstack API Key": "Introdueix la clau API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Introdueix la seqüència de parada",
 	"Enter system prompt": "Introdueix la indicació de sistema",
 	"Enter Tavily API Key": "Introdueix la clau API de Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "Introdueix el teu missatge",
 	"Enter Your Password": "Introdueix la teva contrasenya",
 	"Enter Your Role": "Introdueix el teu rol",
+	"Enter Your Username": "",
 	"Error": "Error",
 	"ERROR": "ERROR",
 	"Evaluations": "Avaluacions",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "Excloure",
 	"Experimental": "Experimental",
 	"Explore the cosmos": "Explorar el cosmos",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "Ajuda'ns a crear la millor taula de classificació de la comunitat compartint el teu historial de comentaris!",
 	"Hide": "Amaga",
 	"Hide Model": "Amagar el model",
+	"Host": "",
 	"How can I help you today?": "Com et puc ajudar avui?",
 	"Hybrid Search": "Cerca híbrida",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Afirmo que he llegit i entenc les implicacions de la meva acció. Soc conscient dels riscos associats a l'execució de codi arbitrari i he verificat la fiabilitat de la font.",
@@ -396,6 +427,7 @@
 	"Include": "Incloure",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Inclou `--api-auth` quan executis stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Inclou `--api` quan executis stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Informació",
 	"Input commands": "Entra comandes",
 	"Install from Github URL": "Instal·lar des de l'URL de Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Coneixement eliminat correctament.",
 	"Knowledge reset successfully.": "Coneixement restablert correctament.",
 	"Knowledge updated successfully": "Coneixement actualitzat correctament.",
+	"Label": "",
 	"Landing Page Mode": "Mode de la pàgina d'entrada",
 	"Language": "Idioma",
 	"Last Active": "Activitat recent",
 	"Last Modified": "Modificació",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "Tauler de classificació",
 	"Leave empty for unlimited": "Deixar-ho buit per il·limitat",
 	"Leave empty to include all models or select specific models": "Deixa-ho en blanc per incloure tots els models o selecciona models específics",
@@ -488,8 +523,8 @@
 	"More": "Més",
 	"Move to Top": "Moure a dalt de tot",
 	"Name": "Nom",
-	"Name your model": "Posa un nom al teu model",
 	"Name your knowledge base": "Anomena la teva base de coneixement",
+	"Name your model": "Posa un nom al teu model",
 	"New Chat": "Nou xat",
 	"New folder": "Nova carpeta",
 	"New Password": "Nova contrasenya",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "Si us plau, entra una indicació",
 	"Please fill in all fields.": "Emplena tots els camps, si us plau.",
 	"Please select a reason": "Si us plau, selecciona una raó",
+	"Port": "",
 	"Positive attitude": "Actitud positiva",
 	"Previous 30 days": "30 dies anteriors",
 	"Previous 7 days": "7 dies anteriors",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Llegir en veu alta",
 	"Record voice": "Enregistrar la veu",
 	"Redirecting you to OpenWebUI Community": "Redirigint-te a la comunitat OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Fes referència a tu mateix com a \"Usuari\" (p. ex., \"L'usuari està aprenent espanyol\")",
 	"References from": "Referències de",
 	"Refused when it shouldn't have": "Refusat quan no hauria d'haver estat",
@@ -606,7 +643,6 @@
 	"Reset": "Restableix",
 	"Reset Upload Directory": "Restableix el directori de pujades",
 	"Reset Vector Storage/Knowledge": "Restableix el Repositori de vectors/Coneixement",
-	"Auto-Copy Response to Clipboard": "Copiar la resposta automàticament al porta-retalls",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de resposta no es poden activar perquè els permisos del lloc web han estat rebutjats. Comprova les preferències del navegador per donar l'accés necessari.",
 	"Response splitting": "Divisió de la resposta",
 	"Result": "Resultat",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Desplaçar a la part inferior quan es canviï de branca",
 	"Search": "Cercar",
 	"Search a model": "Cercar un model",
+	"Search Base": "",
 	"Search Chats": "Cercar xats",
 	"Search Collection": "Cercar col·leccions",
+	"Search Filters": "",
 	"search for tags": "cercar etiquetes",
 	"Search Functions": "Cercar funcions",
 	"Search Knowledge": "Cercar coneixement",
 	"Search Models": "Cercar models",
+	"Search options": "Opcions de cerca",
 	"Search Prompts": "Cercar indicacions",
 	"Search Query Generation Prompt": "Indicació de cerca de generació de consultes",
 	"Search Result Count": "Recompte de resultats de cerca",
 	"Search Tools": "Cercar eines",
-	"Search options": "Opcions de cerca",
 	"SearchApi API Key": "Clau API de SearchApi",
 	"SearchApi Engine": "Motor de SearchApi",
 	"Searched {{count}} sites_one": "S'ha cercat {{count}} una pàgina",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "Establir el programador",
 	"Set Steps": "Establir el nombre de passos",
 	"Set Task Model": "Establir el model de tasca",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Establir la veu",
 	"Set whisper model": "Establir el model whisper",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Preferències",
 	"Settings saved successfully!": "Les preferències s'han desat correctament",
 	"Share": "Compartir",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "Creativitat mostrada",
 	"Sign in": "Iniciar sessió",
 	"Sign in to {{WEBUI_NAME}}": "Iniciar sessió a {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Tancar sessió",
 	"Sign up": "Registrar-se",
 	"Sign up to {{WEBUI_NAME}}": "Registrar-se a {{WEBUI_NAME}}",
@@ -726,6 +772,7 @@
 	"System Prompt": "Indicació del Sistema",
 	"Tags": "Etiquetes",
 	"Tags Generation Prompt": "Indicació per a la generació d'etiquetes",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Prem per interrompre",
 	"Tavily API Key": "Clau API de Tavily",
 	"Tell us more:": "Dona'ns més informació:",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "Motor de text a veu",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Gràcies pel teu comentari!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Els desenvolupadors d'aquest complement són voluntaris apassionats de la comunitat. Si trobeu útil aquest complement, considereu contribuir al seu desenvolupament.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "La classificació d'avaluació es basa en el sistema de qualificació Elo i s'actualitza en temps real.",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "La classificació està actualment en versió beta i és possible que s'ajustin els càlculs de la puntuació a mesura que es perfeccioni l'algorisme.",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La mida màxima del fitxer en MB. Si la mida del fitxer supera aquest límit, el fitxer no es carregarà.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "El nombre màxim de fitxers que es poden utilitzar alhora al xat. Si el nombre de fitxers supera aquest límit, els fitxers no es penjaran.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "El valor de puntuació hauria de ser entre 0.0 (0%) i 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "Pensant...",
 	"This action cannot be undone. Do you wish to continue?": "Aquesta acció no es pot desfer. Vols continuar?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Això assegura que les teves converses valuoses queden desades de manera segura a la teva base de dades. Gràcies!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Aquesta és una funció experimental, és possible que no funcioni com s'espera i està subjecta a canvis en qualsevol moment.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Aquesta opció eliminarà tots els fitxers existents de la col·lecció i els substituirà per fitxers recentment penjats.",
 	"This response was generated by \"{{model}}\"": "Aquesta resposta l'ha generat el model \"{{model}}\"",
 	"This will delete": "Això eliminarà",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "Generació automàtica de títol",
 	"Title cannot be an empty string.": "El títol no pot ser una cadena buida.",
 	"Title Generation Prompt": "Indicació de generació de títol",
+	"TLS": "",
 	"To access the available model names for downloading,": "Per accedir als noms dels models disponibles per descarregar,",
 	"To access the GGUF models available for downloading,": "Per accedir als models GGUF disponibles per descarregar,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Per accedir a la WebUI, poseu-vos en contacte amb l'administrador. Els administradors poden gestionar els estats dels usuaris des del tauler d'administració.",
@@ -829,6 +884,7 @@
 	"User": "Usuari",
 	"User location successfully retrieved.": "Ubicació de l'usuari obtinguda correctament",
 	"User Permissions": "Permisos d'usuari",
+	"Username": "",
 	"Users": "Usuaris",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "S'utilitza el model d'Arena predeterminat amb tots els models. Clica el botó més per afegir models personalitzats.",
 	"Utilize": "Utilitzar",
@@ -853,17 +909,20 @@
 	"Webhook URL": "URL del webhook",
 	"WebUI Settings": "Preferències de WebUI",
 	"WebUI will make requests to": "WebUI farà peticions a",
-	"What’s New in": "Què hi ha de nou a",
 	"What are you trying to achieve?": "Què intentes aconseguir?",
 	"What are you working on?": "En què estàs treballant?",
+	"What’s New in": "Què hi ha de nou a",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "allà on estiguis",
 	"Whisper (Local)": "Whisper (local)",
 	"Widescreen Mode": "Mode de pantalla ampla",
 	"Won": "Ha guanyat",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Espai de treball",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escriu una suggerència d'indicació (p. ex. Qui ets?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escriu un resum en 50 paraules que resumeixi [tema o paraula clau].",
 	"Write something...": "Escriu quelcom...",
+	"Write your model template content here": "",
 	"Yesterday": "Ahir",
 	"You": "Tu",
 	"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.",

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "alphanumeric nga mga karakter ug hyphen",
 	"Already have an account?": "Naa na kay account ?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "usa ka katabang",
 	"and": "Ug",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "yawe sa API",
 	"API Key created.": "",
 	"API keys": "",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "",
 	"Archive": "",
 	"Archive All Chats": "",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Ilakip ang usa ka file",
 	"Attention to detail": "Pagtagad sa mga detalye",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Awtomatikong kopya sa tubag sa clipboard",
 	"Auto-playback response": "Autoplay nga tubag",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "Pagkanselar",
 	"Capabilities": "",
+	"Certificate Path": "",
 	"Change Password": "Usba ang password",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Block overlap",
 	"Chunk Params": "Mga Setting sa Block",
 	"Chunk Size": "Gidak-on sa block",
+	"Ciphers": "",
 	"Citation": "Mga kinutlo",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "I-klik dinhi alang sa tabang.",
 	"Click here to": "",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "Ang gitas-on sa konteksto",
 	"Continue Response": "",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Ang pagkopya sa clipboard malampuson!",
+	"Create a knowledge base": "",
 	"Create a model": "",
 	"Create Account": "Paghimo og account",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Gihimo ang",
 	"Created At": "",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "Kasamtangang modelo",
 	"Current Password": "Kasamtangang Password",
@@ -189,6 +202,8 @@
 	"Default Model": "",
 	"Default model updated": "Gi-update nga default template",
 	"Default Prompt Suggestions": "Default nga prompt nga mga sugyot",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Default nga Papel sa Gumagamit",
 	"Delete": "",
 	"Delete a model": "Pagtangtang sa usa ka template",
@@ -204,8 +219,8 @@
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} gipapas",
 	"Deleted {{name}}": "",
-	"Description": "Deskripsyon",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Deskripsyon",
 	"Didn't fully follow instructions": "",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Enable Community Sharing": "",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "I-enable ang bag-ong mga rehistro",
 	"Enable Web Search": "",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Pagsulod sa block overlap",
 	"Enter Chunk Size": "Isulod ang block size",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "",
+	"Enter Seed": "",
 	"Enter Serper API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Pagsulod sa katapusan nga han-ay",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Ibutang ang imong password",
 	"Enter Your Role": "",
+	"Enter Your Username": "",
 	"Error": "",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Eksperimento",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Tagoa",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "Unsaon nako pagtabang kanimo karon?",
 	"Hybrid Search": "",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Iapil ang `--api` nga bandila kung nagdagan nga stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "",
 	"Input commands": "Pagsulod sa input commands",
 	"Install from Github URL": "",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Pinulongan",
 	"Last Active": "",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "",
 	"Move to Top": "",
 	"Name": "Ngalan",
-	"Name your model": "",
 	"Name your knowledge base": "",
+	"Name your model": "",
 	"New Chat": "Bag-ong diskusyon",
 	"New folder": "",
 	"New Password": "Bag-ong Password",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "",
 	"Previous 30 days": "",
 	"Previous 7 days": "",
@@ -589,6 +625,7 @@
 	"Read Aloud": "",
 	"Record voice": "Irekord ang tingog",
 	"Redirecting you to OpenWebUI Community": "Gi-redirect ka sa komunidad sa OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Awtomatikong kopya sa tubag sa clipboard",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Pagpanukiduki",
 	"Search a model": "",
+	"Search Base": "",
 	"Search Chats": "",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "",
+	"Search options": "",
 	"Search Prompts": "Pangitaa ang mga prompt",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Ipasabot ang mga lakang",
 	"Set Task Model": "",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Ibutang ang tingog",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Mga setting",
 	"Settings saved successfully!": "Malampuson nga na-save ang mga setting!",
 	"Share": "",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "",
 	"Sign in": "Para maka log in",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Pag-sign out",
 	"Sign up": "Pagrehistro",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "Madasig nga Sistema",
 	"Tags": "Mga tag",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Text-to-speech nga makina",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Kini nagsiguro nga ang imong bililhon nga mga panag-istoryahanay luwas nga natipig sa imong backend database. ",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Awtomatikong paghimo sa titulo",
 	"Title cannot be an empty string.": "",
 	"Title Generation Prompt": "Madasig nga henerasyon sa titulo",
+	"TLS": "",
 	"To access the available model names for downloading,": "Aron ma-access ang mga ngalan sa modelo nga ma-download,",
 	"To access the GGUF models available for downloading,": "Aron ma-access ang mga modelo sa GGUF nga magamit alang sa pag-download,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "Mga permiso sa tiggamit",
+	"Username": "",
 	"Users": "Mga tiggamit",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Sa paggamit",
@@ -852,17 +908,20 @@
 	"Webhook URL": "",
 	"WebUI Settings": "Mga Setting sa WebUI",
 	"WebUI will make requests to": "Ang WebUI maghimo mga hangyo sa",
-	"What’s New in": "Unsay bag-o sa",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Unsay bag-o sa",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "Pagsulat og gisugyot nga prompt (eg. Kinsa ka?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Pagsulat og 50 ka pulong nga summary nga nagsumaryo [topic o keyword].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "",
 	"You": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "",
 	"Youtube Loader Settings": ""
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Povolit přerušení hlasu při hovoru",
 	"alphanumeric characters and hyphens": "alfanumerické znaky a pomlčky",
 	"Already have an account?": "Už máte účet?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "asistent",
 	"and": "a",
 	"and {{COUNT}} more": "a {{COUNT}} dalších",
@@ -59,6 +60,8 @@
 	"API Key": "Klíč API",
 	"API Key created.": "API klíč byl vytvořen.",
 	"API keys": "API klíče",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Duben",
 	"Archive": "Archivovat",
 	"Archive All Chats": "Archivovat všechny chaty",
@@ -71,8 +74,12 @@
 	"Assistant": "Ano, jak vám mohu pomoci?",
 	"Attach file": "Připojit soubor",
 	"Attention to detail": "Pozornost k detailům",
+	"Attribute for Username": "",
 	"Audio": "Zvuk",
 	"August": "Srpen",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Automatické kopírování odpovědi do schránky",
 	"Auto-playback response": "Automatická odpověď při přehrávání",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "Zrušit.",
 	"Capabilities": "Schopnosti",
+	"Certificate Path": "",
 	"Change Password": "Změna hesla",
 	"Character": "Znak",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Překrytí bloků",
 	"Chunk Params": "Parametry chunků",
 	"Chunk Size": "Velikost bloku",
+	"Ciphers": "",
 	"Citation": "Odkaz",
 	"Clear memory": "Vymazat paměť",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Klikněte zde pro nápovědu.",
 	"Click here to": "Klikněte sem pro",
 	"Click here to download user import template file.": "Klikněte zde pro stažení šablony souboru pro import uživatelů.",
@@ -153,8 +163,11 @@
 	"Context Length": "Délka kontextu",
 	"Continue Response": "Pokračovat v odpovědi",
 	"Continue with {{provider}}": "Pokračovat s {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Řízení, jak se text zprávy rozděluje pro požadavky TTS. 'Punctuation' rozděluje text na věty, 'paragraphs' rozděluje text na odstavce a 'none' udržuje zprávu jako jeden celý řetězec.",
 	"Controls": "Ovládací prvky",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Zkopírováno",
 	"Copied shared chat URL to clipboard!": "URL sdíleného chatu zkopírován do schránky!",
 	"Copied to clipboard": "Zkopírováno do schránky",
@@ -164,6 +177,7 @@
 	"Copy Link": "Kopírovat odkaz",
 	"Copy to clipboard": "Kopírovat do schránky",
 	"Copying to clipboard was successful!": "Kopírování do schránky bylo úspěšné!",
+	"Create a knowledge base": "",
 	"Create a model": "Vytvořte model",
 	"Create Account": "Vytvořit účet",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Vytvořeno dne",
 	"Created At": "Vytvořeno dne",
 	"Created by": "Vytvořeno uživatelem",
-	"Create a knowledge base": "",
 	"CSV Import": "CSV import",
 	"Current Model": "Aktuální model",
 	"Current Password": "Aktuální heslo",
@@ -189,6 +202,8 @@
 	"Default Model": "Výchozí model",
 	"Default model updated": "Výchozí model aktualizován.",
 	"Default Prompt Suggestions": "Výchozí návrhy promptů",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Výchozí uživatelská role",
 	"Delete": "Smazat",
 	"Delete a model": "Odstranit model.",
@@ -204,8 +219,8 @@
 	"Delete User": "Smazat uživatele",
 	"Deleted {{deleteModelTag}}": "Smazáno {{deleteModelTag}}",
 	"Deleted {{name}}": "Smazáno {{name}}",
-	"Description": "Popis",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Popis",
 	"Didn't fully follow instructions": "Nenásledovali jste přesně všechny instrukce.",
 	"Disabled": "Zakázáno",
 	"Discover a function": "Objevit funkci",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Model zabudovaný motor",
 	"Embedding model set to \"{{embedding_model}}\"": "Model vkládání nastaven na \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Povolit sdílení komunity",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Povolit hodnocení zpráv",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Povolit nové registrace",
 	"Enable Web Search": "Povolit webové vyhledávání",
 	"Enable Web Search Query Generation": "Povolit generování dotazů pro webové vyhledávání",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Zadejte zprávu {{role}} sem",
 	"Enter a detail about yourself for your LLMs to recall": "Zadejte podrobnost o sobě, kterou si vaše LLM mají pamatovat.",
 	"Enter api auth string (e.g. username:password)": "Zadejte autentizační řetězec API (např. uživatelské_jméno:heslo)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Zadejte API klíč pro Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Zadejte měřítko CFG (např. 7.0)",
 	"Enter Chunk Overlap": "Zadejte překryv části",
 	"Enter Chunk Size": "Zadejte velikost bloku",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Zadejte API klíč pro SearchApi",
 	"Enter SearchApi Engine": "Zadejte vyhledávací stroj SearchApi",
 	"Enter Searxng Query URL": "Zadejte URL dotazu Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Zadejte Serper API klíč",
 	"Enter Serply API Key": "Zadejte API klíč pro Serply",
 	"Enter Serpstack API Key": "Zadejte klíč API pro Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Zadejte ukončovací sekvenci",
 	"Enter system prompt": "Vložte systémovou výzvu",
 	"Enter Tavily API Key": "Zadejte API klíč Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "Zadejte svou zprávu",
 	"Enter Your Password": "Zadejte své heslo",
 	"Enter Your Role": "Zadejte svou roli",
+	"Enter Your Username": "",
 	"Error": "Chyba",
 	"ERROR": "Chyba",
 	"Evaluations": "Hodnocení",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "Vyloučit",
 	"Experimental": "Experimentální",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "Pomozte nám vytvořit nejlepší komunitní žebříček sdílením historie vaší zpětné vazby!",
 	"Hide": "Schovej",
 	"Hide Model": "Skrýt model",
+	"Host": "",
 	"How can I help you today?": "Jak vám mohu dnes pomoci?",
 	"Hybrid Search": "Hybridní vyhledávání",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Beru na vědomí, že jsem si přečetl a chápu důsledky svých činů. Jsem si vědom rizik spojených s vykonáváním libovolného kódu a ověřil jsem důvěryhodnost zdroje.",
@@ -396,6 +427,7 @@
 	"Include": "Zahrnout",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Zahrňte přepínač `--api-auth` při spuštění stable-diffusion-webui.",
 	"Include `--api` flag when running stable-diffusion-webui": "Při spuštění stable-diffusion-webui zahrňte příznak `--api`.",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Info",
 	"Input commands": "Vstupní příkazy",
 	"Install from Github URL": "Instalace z URL adresy Githubu",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Znalosti byly úspěšně odstraněny.",
 	"Knowledge reset successfully.": "Úspěšné obnovení znalostí.",
 	"Knowledge updated successfully": "Znalosti úspěšně aktualizovány",
+	"Label": "",
 	"Landing Page Mode": "Režim vstupní stránky",
 	"Language": "Jazyk",
 	"Last Active": "Naposledy aktivní",
 	"Last Modified": "Poslední změna",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "Žebříček",
 	"Leave empty for unlimited": "Nechte prázdné pro neomezeně",
 	"Leave empty to include all models or select specific models": "Nechte prázdné pro zahrnutí všech modelů nebo vyberte konkrétní modely.",
@@ -488,8 +523,8 @@
 	"More": "Více",
 	"Move to Top": "Přesunout nahoru",
 	"Name": "Jméno",
-	"Name your model": "Pojmenujte svůj model",
 	"Name your knowledge base": "",
+	"Name your model": "Pojmenujte svůj model",
 	"New Chat": "Nový chat",
 	"New folder": "Nová složka",
 	"New Password": "Nové heslo",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "Prosím, zadejte zadání.",
 	"Please fill in all fields.": "Prosím, vyplňte všechna pole.",
 	"Please select a reason": "Prosím vyberte důvod",
+	"Port": "",
 	"Positive attitude": "Pozitivní přístup",
 	"Previous 30 days": "Předchozích 30 dnů",
 	"Previous 7 days": "Předchozích 7 dní",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Číst nahlas",
 	"Record voice": "Nahrát hlas",
 	"Redirecting you to OpenWebUI Community": "Přesměrování na komunitu OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Odkazujte na sebe jako na \"uživatele\" (např. \"Uživatel se učí španělsky\").",
 	"References from": "Reference z",
 	"Refused when it shouldn't have": "Odmítnuto, když nemělo být.",
@@ -606,7 +643,6 @@
 	"Reset": "režim Reset",
 	"Reset Upload Directory": "Resetovat adresář nahrávání",
 	"Reset Vector Storage/Knowledge": "Resetování úložiště vektorů/znalostí",
-	"Auto-Copy Response to Clipboard": "Automatické kopírování odpovědi do schránky",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Oznámení o odpovědích nelze aktivovat, protože oprávnění webu byla zamítnuta. Navštivte nastavení svého prohlížeče a udělte potřebný přístup.",
 	"Response splitting": "Rozdělení odpovědi",
 	"Result": "Výsledek",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Přejít na konec při přepínání mezi větvemi.",
 	"Search": "Vyhledávání",
 	"Search a model": "Vyhledat model",
+	"Search Base": "",
 	"Search Chats": "Vyhledávání v chatu",
 	"Search Collection": "Hledat kolekci",
+	"Search Filters": "",
 	"search for tags": "hledání značek",
 	"Search Functions": "Vyhledávací funkce",
 	"Search Knowledge": "Vyhledávání znalostí",
 	"Search Models": "Vyhledávací modely",
+	"Search options": "",
 	"Search Prompts": "Vyhledávací dotazy",
 	"Search Query Generation Prompt": "Generování dotazu na vyhledávání",
 	"Search Result Count": "Počet výsledků hledání",
 	"Search Tools": "Nástroje pro vyhledávání",
-	"Search options": "",
 	"SearchApi API Key": "Klíč API pro SearchApi",
 	"SearchApi Engine": "Vyhledávací engine API",
 	"Searched {{count}} sites_one": "Prohledáno {{count}} stránek_one",
@@ -685,8 +723,15 @@
 	"Set Scheduler": "Nastavení plánovače",
 	"Set Steps": "Nastavení kroků",
 	"Set Task Model": "Nastavit model úkolu",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Nastavit hlas",
 	"Set whisper model": "Nastavit model whisper",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Nastavení",
 	"Settings saved successfully!": "Nastavení byla úspěšně uložena!",
 	"Share": "Sdílet",
@@ -702,6 +747,7 @@
 	"Showcased creativity": "Předvedená kreativita",
 	"Sign in": "Přihlásit se",
 	"Sign in to {{WEBUI_NAME}}": "Přihlásit se do {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Odhlásit se",
 	"Sign up": "Zaregistrovat se",
 	"Sign up to {{WEBUI_NAME}}": "Zaregistrujte se na {{WEBUI_NAME}}",
@@ -727,6 +773,7 @@
 	"System Prompt": "Systémová výzva",
 	"Tags": "Štítky",
 	"Tags Generation Prompt": "Výzva pro generování značek",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Klepněte pro přerušení",
 	"Tavily API Key": "Klíč API pro Tavily",
 	"Tell us more:": "Řekněte nám více.",
@@ -737,17 +784,24 @@
 	"Text-to-Speech Engine": "Stroj pro převod textu na řeč",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Děkuji za vaši zpětnou vazbu!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Vývojáři stojící za tímto pluginem jsou zapálení dobrovolníci z komunity. Pokud považujete tento plugin za užitečný, zvažte příspěvek k jeho vývoji.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Hodnotící žebříček je založen na systému hodnocení Elo a je aktualizován v reálném čase.",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Žebříček je v současné době v beta verzi a můžeme upravit výpočty hodnocení, jak budeme zdokonalovat algoritmus.",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Maximální velikost souboru v MB. Pokud velikost souboru překročí tento limit, soubor nebude nahrán.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Maximální počet souborů, které mohou být použity najednou v chatu. Pokud počet souborů překročí tento limit, soubory nebudou nahrány.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Skóre by mělo být hodnotou mezi 0,0 (0%) a 1,0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Téma",
 	"Thinking...": "Přemýšlím...",
 	"This action cannot be undone. Do you wish to continue?": "Tuto akci nelze vrátit zpět. Přejete si pokračovat?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "To zajišťuje, že vaše cenné konverzace jsou bezpečně uloženy ve vaší backendové databázi. Děkujeme!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Jedná se o experimentální funkci, nemusí fungovat podle očekávání a může být kdykoliv změněna.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Tato volba odstraní všechny existující soubory ve sbírce a nahradí je nově nahranými soubory.",
 	"This response was generated by \"{{model}}\"": "Tato odpověď byla vygenerována pomocí \"{{model}}\"",
 	"This will delete": "Tím se odstraní",
@@ -763,6 +817,7 @@
 	"Title Auto-Generation": "Automatické generování názvu",
 	"Title cannot be an empty string.": "Název nemůže být prázdným řetězcem.",
 	"Title Generation Prompt": "Generování názvu výzvy",
+	"TLS": "",
 	"To access the available model names for downloading,": "Pro získání dostupných názvů modelů ke stažení,",
 	"To access the GGUF models available for downloading,": "Pro přístup k modelům GGUF dostupným pro stažení,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Pro přístup k WebUI se prosím obraťte na administrátora. Administrátoři mohou spravovat stavy uživatelů z Admin Panelu.",
@@ -830,6 +885,7 @@
 	"User": "Uživatel",
 	"User location successfully retrieved.": "Umístění uživatele bylo úspěšně získáno.",
 	"User Permissions": "Uživatelská oprávnění",
+	"Username": "",
 	"Users": "Uživatelé",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Použití výchozího modelu arény se všemi modely. Kliknutím na tlačítko plus přidejte vlastní modely.",
 	"Utilize": "Využít",
@@ -854,17 +910,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "Nastavení WebUI",
 	"WebUI will make requests to": "WebUI bude odesílat požadavky na",
-	"What’s New in": "Co je nového v",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Co je nového v",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Lokálně)",
 	"Widescreen Mode": "Režim širokoúhlého zobrazení",
 	"Won": "Vyhrál",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Pracovní prostor",
 	"Write a prompt suggestion (e.g. Who are you?)": "Navrhněte dotaz (např. Kdo jsi?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Napište shrnutí na 50 slov, které shrnuje [téma nebo klíčové slovo].",
 	"Write something...": "Napiš něco...",
+	"Write your model template content here": "",
 	"Yesterday": "Včera",
 	"You": "Vy",
 	"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.",
@@ -879,4 +938,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Váš celý příspěvek půjde přímo vývojáři pluginu; Open WebUI si nebere žádné procento. Vybraná platforma pro financování však může mít vlastní poplatky.",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "Nastavení Stahovače YouTube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Tillad afbrydelser i stemme i opkald",
 	"alphanumeric characters and hyphens": "alphanumeriske bogstaver og bindestreger",
 	"Already have an account?": "Har du allerede en profil?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "en assistent",
 	"and": "og",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API nøgle",
 	"API Key created.": "API nøgle lavet",
 	"API keys": "API nøgler",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "april",
 	"Archive": "Arkiv",
 	"Archive All Chats": "Arkiver alle chats",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Vedhæft fil",
 	"Attention to detail": "Detajleorientering",
+	"Attribute for Username": "",
 	"Audio": "Lyd",
 	"August": "august",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Automatisk kopiering af svar til udklipsholder",
 	"Auto-playback response": "Automatisk afspil svar",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "Afbryd",
 	"Capabilities": "Funktioner",
+	"Certificate Path": "",
 	"Change Password": "Skift password",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chunk overlap",
 	"Chunk Params": "Chunk parametre",
 	"Chunk Size": "Chunk størrelse",
+	"Ciphers": "",
 	"Citation": "Citat",
 	"Clear memory": "Slet hukommelse",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Klik her for hjælp",
 	"Click here to": "Klik her for at",
 	"Click here to download user import template file.": "Klik her for at downloade bruger import template fil.",
@@ -153,8 +163,11 @@
 	"Context Length": "Kontekst længde",
 	"Continue Response": "Fortsæt svar",
 	"Continue with {{provider}}": "Fortsæt med {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Kontroller hvordan beskedens tekst bliver splittet til TTS requests. 'Punctuation' (tegnsætning) splitter i sætninger, 'paragraphs' splitter i paragraffer, og 'none' beholder beskeden som en samlet streng.",
 	"Controls": "Indstillinger",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Kopieret",
 	"Copied shared chat URL to clipboard!": "Link til deling kopieret til udklipsholder",
 	"Copied to clipboard": "Kopieret til udklipsholder",
@@ -164,6 +177,7 @@
 	"Copy Link": "Kopier link",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Kopieret til udklipsholder!",
+	"Create a knowledge base": "",
 	"Create a model": "Lav en model",
 	"Create Account": "Opret profil",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Oprettet",
 	"Created At": "Oprettet",
 	"Created by": "Oprettet af",
-	"Create a knowledge base": "",
 	"CSV Import": "Importer CSV",
 	"Current Model": "Nuværende model",
 	"Current Password": "Nuværende password",
@@ -189,6 +202,8 @@
 	"Default Model": "Standard model",
 	"Default model updated": "Standard model opdateret",
 	"Default Prompt Suggestions": "Standardforslag til prompt",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Brugers rolle som standard",
 	"Delete": "Slet",
 	"Delete a model": "Slet en model",
@@ -204,8 +219,8 @@
 	"Delete User": "Slet bruger",
 	"Deleted {{deleteModelTag}}": "Slettede {{deleteModelTag}}",
 	"Deleted {{name}}": "Slettede {{name}}",
-	"Description": "Beskrivelse",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Beskrivelse",
 	"Didn't fully follow instructions": "Fulgte ikke instruktioner",
 	"Disabled": "Inaktiv",
 	"Discover a function": "Find en funktion",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Embedding Model engine",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model sat til \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Aktiver deling til Community",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Aktiver rating af besked",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktiver nye signups",
 	"Enable Web Search": "Aktiver websøgning",
 	"Enable Web Search Query Generation": "Aktiver query generation med websøgning",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Indtast {{role}} besked her",
 	"Enter a detail about yourself for your LLMs to recall": "Indtast en detalje om dig selv, som dine LLMs kan huske",
 	"Enter api auth string (e.g. username:password)": "Indtast api-godkendelsesstreng (f.eks. brugernavn:adgangskode)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Indtast Brave Search API-nøgle",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Indtast CFG-skala (f.eks. 7.0)",
 	"Enter Chunk Overlap": "Indtast overlapning af tekststykker",
 	"Enter Chunk Size": "Indtast størrelse af tekststykker",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Indtast SearchApi API-nøgle",
 	"Enter SearchApi Engine": "Indtast SearchApi-engine",
 	"Enter Searxng Query URL": "Indtast Searxng-forespørgsels-URL",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Indtast Serper API-nøgle",
 	"Enter Serply API Key": "Indtast Serply API-nøgle",
 	"Enter Serpstack API Key": "Indtast Serpstack API-nøgle",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Indtast stopsekvens",
 	"Enter system prompt": "Indtast systemprompt",
 	"Enter Tavily API Key": "Indtast Tavily API-nøgle",
@@ -297,9 +322,14 @@
 	"Enter your message": "Indtast din besked",
 	"Enter Your Password": "Indtast din adgangskode",
 	"Enter Your Role": "Indtast din rolle",
+	"Enter Your Username": "",
 	"Error": "Fejl",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Eksperimentel",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Skjul",
 	"Hide Model": "Skjul model",
+	"Host": "",
 	"How can I help you today?": "Hvordan kan jeg hjælpe dig i dag?",
 	"Hybrid Search": "Hybrid søgning",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Jeg anerkender, at jeg har læst og forstået konsekvenserne af min handling. Jeg er opmærksom på de risici, der er forbundet med at udføre vilkårlig kode, og jeg har verificeret kildens troværdighed.",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Inkluder `--api-auth` flag, når du kører stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Inkluder `--api` flag, når du kører stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Info",
 	"Input commands": "Inputkommandoer",
 	"Install from Github URL": "Installer fra Github URL",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Viden slettet.",
 	"Knowledge reset successfully.": "Viden nulstillet.",
 	"Knowledge updated successfully": "Viden opdateret.",
+	"Label": "",
 	"Landing Page Mode": "Landing Page-tilstand",
 	"Language": "Sprog",
 	"Last Active": "Sidst aktiv",
 	"Last Modified": "Sidst ændret",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "Lad stå tomt for ubegrænset",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Mere",
 	"Move to Top": "Flyt til toppen",
 	"Name": "Navn",
-	"Name your model": "Navngiv din model",
 	"Name your knowledge base": "",
+	"Name your model": "Navngiv din model",
 	"New Chat": "Ny chat",
 	"New folder": "",
 	"New Password": "Ny adgangskode",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "Udfyld alle felter.",
 	"Please select a reason": "Vælg en årsag",
+	"Port": "",
 	"Positive attitude": "Positiv holdning",
 	"Previous 30 days": "Seneste 30 dage",
 	"Previous 7 days": "Seneste 7 dage",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Læs højt",
 	"Record voice": "Optag stemme",
 	"Redirecting you to OpenWebUI Community": "Omdirigerer dig til OpenWebUI Community",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referer til dig selv som \"Bruger\" (f.eks. \"Bruger lærer spansk\")",
 	"References from": "",
 	"Refused when it shouldn't have": "Afvist, når den ikke burde have været det",
@@ -606,7 +643,6 @@
 	"Reset": "Nulstil",
 	"Reset Upload Directory": "Nulstil uploadmappe",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Automatisk kopiering af svar til udklipsholder",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Svarnotifikationer kan ikke aktiveres, da webstedets tilladelser er blevet nægtet. Besøg dine browserindstillinger for at give den nødvendige adgang.",
 	"Response splitting": "Svaropdeling",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Rul til bunden, når du skifter mellem grene",
 	"Search": "Søg",
 	"Search a model": "Søg efter en model",
+	"Search Base": "",
 	"Search Chats": "Søg i chats",
 	"Search Collection": "Søg i samling",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Søg i funktioner",
 	"Search Knowledge": "Søg i viden",
 	"Search Models": "Søg i modeller",
+	"Search options": "",
 	"Search Prompts": "Søg i prompts",
 	"Search Query Generation Prompt": "Prompt til generering af søgeforespørgsel",
 	"Search Result Count": "Antal søgeresultater",
 	"Search Tools": "Søg i værktøjer",
-	"Search options": "",
 	"SearchApi API Key": "SearchApi API-nøgle",
 	"SearchApi Engine": "SearchApi-engine",
 	"Searched {{count}} sites_one": "Søgte {{count}} websted",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "Indstil scheduler",
 	"Set Steps": "Indstil trin",
 	"Set Task Model": "Indstil opgavemodel",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Indstil stemme",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Indstillinger",
 	"Settings saved successfully!": "Indstillinger gemt!",
 	"Share": "Del",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Udstillet kreativitet",
 	"Sign in": "Log ind",
 	"Sign in to {{WEBUI_NAME}}": "Log ind på {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Log ud",
 	"Sign up": "Tilmeld dig",
 	"Sign up to {{WEBUI_NAME}}": "Tilmeld dig {{WEBUI_NAME}}",
@@ -725,6 +771,7 @@
 	"System Prompt": "Systemprompt",
 	"Tags": "Tags",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Tryk for at afbryde",
 	"Tavily API Key": "Tavily API-nøgle",
 	"Tell us more:": "Fortæl os mere:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Tekst-til-tale-engine",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Tak for din feedback!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Udviklerne bag dette plugin er passionerede frivillige fra fællesskabet. Hvis du finder dette plugin nyttigt, kan du overveje at bidrage til dets udvikling.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Den maksimale filstørrelse i MB. Hvis filstørrelsen overstiger denne grænse, uploades filen ikke.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Det maksimale antal filer, der kan bruges på én gang i chatten. Hvis antallet af filer overstiger denne grænse, uploades filerne ikke.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Scoren skal være en værdi mellem 0,0 (0%) og 1,0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "Tænker...",
 	"This action cannot be undone. Do you wish to continue?": "Denne handling kan ikke fortrydes. Vil du fortsætte?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dette sikrer, at dine værdifulde samtaler gemmes sikkert i din backend-database. Tak!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dette er en eksperimentel funktion, den fungerer muligvis ikke som forventet og kan ændres når som helst.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Denne indstilling sletter alle eksisterende filer i samlingen og erstatter dem med nyligt uploadede filer.",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Dette vil slette",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Automatisk titelgenerering",
 	"Title cannot be an empty string.": "Titel kan ikke være en tom streng.",
 	"Title Generation Prompt": "Prompt til titelgenerering",
+	"TLS": "",
 	"To access the available model names for downloading,": "For at få adgang til de tilgængelige modelnavne til download,",
 	"To access the GGUF models available for downloading,": "For at få adgang til de GGUF-modeller, der er tilgængelige til download,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "For at få adgang til WebUI skal du kontakte administratoren. Administratorer kan administrere brugerstatus fra administrationspanelet.",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "Brugerplacering hentet.",
 	"User Permissions": "Brugertilladelser",
+	"Username": "",
 	"Users": "Brugere",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Anvend",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Webhook-URL",
 	"WebUI Settings": "WebUI-indstillinger",
 	"WebUI will make requests to": "WebUI vil sende forespørgsler til",
-	"What’s New in": "Nyheder i",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Nyheder i",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (lokal)",
 	"Widescreen Mode": "Widescreen-tilstand",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Arbejdsområde",
 	"Write a prompt suggestion (e.g. Who are you?)": "Skriv et promptforslag (f.eks. Hvem er du?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Skriv en opsummering på 50 ord, der opsummerer [emne eller søgeord].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "I går",
 	"You": "Du",
 	"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.",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Hele dit bidrag går direkte til plugin-udvikleren; Open WebUI tager ikke nogen procentdel. Den valgte finansieringsplatform kan dog have sine egne gebyrer.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Loader-indstillinger"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Unterbrechung durch Stimme im Anruf zulassen",
 	"alphanumeric characters and hyphens": "alphanumerische Zeichen und Bindestriche",
 	"Already have an account?": "Haben Sie bereits einen Account?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "ein Assistent",
 	"and": "und",
 	"and {{COUNT}} more": "und {{COUNT}} mehr",
@@ -59,6 +60,8 @@
 	"API Key": "API-Schlüssel",
 	"API Key created.": "API-Schlüssel erstellt.",
 	"API keys": "API-Schlüssel",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "April",
 	"Archive": "Archivieren",
 	"Archive All Chats": "Alle Unterhaltungen archivieren",
@@ -71,8 +74,12 @@
 	"Assistant": "Assistent",
 	"Attach file": "Datei anhängen",
 	"Attention to detail": "Aufmerksamkeit für Details",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "August",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Antwort automatisch in die Zwischenablage kopieren",
 	"Auto-playback response": "Antwort automatisch abspielen",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111-API-Authentifizierungszeichenfolge",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "Abbrechen",
 	"Capabilities": "Fähigkeiten",
+	"Certificate Path": "",
 	"Change Password": "Passwort ändern",
 	"Character": "Zeichen",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Blocküberlappung",
 	"Chunk Params": "Blockparameter",
 	"Chunk Size": "Blockgröße",
+	"Ciphers": "",
 	"Citation": "Zitate",
 	"Clear memory": "Alle Erinnerungen entfernen",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Klicken Sie hier für Hilfe.",
 	"Click here to": "Klicken Sie hier, um",
 	"Click here to download user import template file.": "Klicken Sie hier, um die Vorlage für den Benutzerimport herunterzuladen.",
@@ -153,8 +163,11 @@
 	"Context Length": "Kontextlänge",
 	"Continue Response": "Antwort fortsetzen",
 	"Continue with {{provider}}": "Mit {{provider}} fortfahren",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Kontrollieren Sie, wie Nachrichtentext für TTS-Anfragen aufgeteilt wird. 'Punctuation' teilt in Sätze auf, 'paragraphs' teilt in Absätze auf und 'none' behält die Nachricht als einzelnen String.",
 	"Controls": "Steuerung",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Kopiert",
 	"Copied shared chat URL to clipboard!": "Freigabelink in die Zwischenablage kopiert!",
 	"Copied to clipboard": "In die Zwischenablage kopiert",
@@ -164,6 +177,7 @@
 	"Copy Link": "Link kopieren",
 	"Copy to clipboard": "In die Zwischenablage kopieren",
 	"Copying to clipboard was successful!": "Das Kopieren in die Zwischenablage war erfolgreich!",
+	"Create a knowledge base": "",
 	"Create a model": "Ein Modell erstellen",
 	"Create Account": "Konto erstellen",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Erstellt am",
 	"Created At": "Erstellt am",
 	"Created by": "Erstellt von",
-	"Create a knowledge base": "",
 	"CSV Import": "CSV-Import",
 	"Current Model": "Aktuelles Modell",
 	"Current Password": "Aktuelles Passwort",
@@ -189,6 +202,8 @@
 	"Default Model": "Standardmodell",
 	"Default model updated": "Standardmodell aktualisiert",
 	"Default Prompt Suggestions": "Prompt-Vorschläge",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Standardbenutzerrolle",
 	"Delete": "Löschen",
 	"Delete a model": "Ein Modell löschen",
@@ -204,8 +219,8 @@
 	"Delete User": "Benutzer löschen",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} gelöscht",
 	"Deleted {{name}}": "{{name}} gelöscht",
-	"Description": "Beschreibung",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Beschreibung",
 	"Didn't fully follow instructions": "Nicht genau den Answeisungen gefolgt",
 	"Disabled": "Deaktiviert",
 	"Discover a function": "Entdecken Sie weitere Funktionen",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Embedding-Modell-Engine",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding-Modell auf \"{{embedding_model}}\" gesetzt",
 	"Enable Community Sharing": "Community-Freigabe aktivieren",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Nachrichtenbewertung aktivieren",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Registrierung erlauben",
 	"Enable Web Search": "Websuche aktivieren",
 	"Enable Web Search Query Generation": "Websuchanfragen-Generierung aktivieren",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
 	"Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen",
 	"Enter api auth string (e.g. username:password)": "Geben Sie die API-Authentifizierungszeichenfolge ein (z. B. Benutzername:Passwort)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Geben Sie den Brave Search API-Schlüssel ein",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Geben Sie die CFG-Skala ein (z. B. 7.0)",
 	"Enter Chunk Overlap": "Geben Sie die Blocküberlappung ein",
 	"Enter Chunk Size": "Geben Sie die Blockgröße ein",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Geben Sie den SearchApi-API-Schlüssel ein",
 	"Enter SearchApi Engine": "Geben Sie die SearchApi-Engine ein",
 	"Enter Searxng Query URL": "Geben Sie die Searxng-Abfrage-URL ein",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Geben Sie den Serper-API-Schlüssel ein",
 	"Enter Serply API Key": "Geben Sie den",
 	"Enter Serpstack API Key": "Geben Sie den Serpstack-API-Schlüssel ein",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Stop-Sequenz eingeben",
 	"Enter system prompt": "Systemprompt eingeben",
 	"Enter Tavily API Key": "Geben Sie den Tavily-API-Schlüssel ein",
@@ -297,9 +322,14 @@
 	"Enter your message": "Geben Sie Ihre Nachricht ein",
 	"Enter Your Password": "Geben Sie Ihr Passwort ein",
 	"Enter Your Role": "Geben Sie Ihre Rolle ein",
+	"Enter Your Username": "",
 	"Error": "Fehler",
 	"ERROR": "FEHLER",
 	"Evaluations": "Evaluationen",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "Ausschließen",
 	"Experimental": "Experimentell",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "Helfen Sie uns, die beste Community-Bestenliste zu erstellen, indem Sie Ihren Feedback-Verlauf teilen!",
 	"Hide": "Verbergen",
 	"Hide Model": "Modell ausblenden",
+	"Host": "",
 	"How can I help you today?": "Wie kann ich Ihnen heute helfen?",
 	"Hybrid Search": "Hybride Suche",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Ich bestätige, dass ich gelesen habe und die Auswirkungen meiner Aktion verstehe. Mir sind die Risiken bewusst, die mit der Ausführung beliebigen Codes verbunden sind, und ich habe die Vertrauenswürdigkeit der Quelle überprüft.",
@@ -396,6 +427,7 @@
 	"Include": "Einschließen",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Fügen Sie beim Ausführen von stable-diffusion-webui die Option `--api-auth` hinzu",
 	"Include `--api` flag when running stable-diffusion-webui": "Fügen Sie beim Ausführen von stable-diffusion-webui die Option `--api` hinzu",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Info",
 	"Input commands": "Eingabebefehle",
 	"Install from Github URL": "Installiere von der Github-URL",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Wissen erfolgreich gelöscht.",
 	"Knowledge reset successfully.": "Wissen erfolgreich zurückgesetzt.",
 	"Knowledge updated successfully": "Wissen erfolgreich aktualisiert",
+	"Label": "",
 	"Landing Page Mode": "Startseitenmodus",
 	"Language": "Sprache",
 	"Last Active": "Zuletzt aktiv",
 	"Last Modified": "Zuletzt bearbeitet",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "Bestenliste",
 	"Leave empty for unlimited": "Leer lassen für unbegrenzt",
 	"Leave empty to include all models or select specific models": "Leer lassen, um alle Modelle einzuschließen oder spezifische Modelle auszuwählen",
@@ -488,8 +523,8 @@
 	"More": "Mehr",
 	"Move to Top": "Nach oben verschieben",
 	"Name": "Name",
-	"Name your model": "Benennen Sie Ihr Modell",
 	"Name your knowledge base": "",
+	"Name your model": "Benennen Sie Ihr Modell",
 	"New Chat": "Neue Unterhaltung",
 	"New folder": "Neuer Ordner",
 	"New Password": "Neues Passwort",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "Bitte geben Sie einen Prompt ein",
 	"Please fill in all fields.": "Bitte füllen Sie alle Felder aus.",
 	"Please select a reason": "Bitte wählen Sie einen Grund aus",
+	"Port": "",
 	"Positive attitude": "Positive Einstellung",
 	"Previous 30 days": "Vorherige 30 Tage",
 	"Previous 7 days": "Vorherige 7 Tage",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Vorlesen",
 	"Record voice": "Stimme aufnehmen",
 	"Redirecting you to OpenWebUI Community": "Sie werden zur OpenWebUI-Community weitergeleitet",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Beziehen Sie sich auf sich selbst als \"Benutzer\" (z. B. \"Benutzer lernt Spanisch\")",
 	"References from": "Referenzen aus",
 	"Refused when it shouldn't have": "Abgelehnt, obwohl es nicht hätte abgelehnt werden sollen",
@@ -606,7 +643,6 @@
 	"Reset": "Zurücksetzen",
 	"Reset Upload Directory": "Upload-Verzeichnis zurücksetzen",
 	"Reset Vector Storage/Knowledge": "Vektorspeicher/Wissen zurücksetzen",
-	"Auto-Copy Response to Clipboard": "Antwort automatisch in die Zwischenablage kopieren",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Benachrichtigungen können nicht aktiviert werden, da die Website-Berechtigungen abgelehnt wurden. Bitte besuchen Sie Ihre Browser-Einstellungen, um den erforderlichen Zugriff zu gewähren.",
 	"Response splitting": "Antwortaufteilung",
 	"Result": "Ergebnis",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Beim Wechsel zwischen Branches nach unten scrollen",
 	"Search": "Suchen",
 	"Search a model": "Modell suchen",
+	"Search Base": "",
 	"Search Chats": "Unterhaltungen durchsuchen...",
 	"Search Collection": "Sammlung durchsuchen",
+	"Search Filters": "",
 	"search for tags": "nach Tags suchen",
 	"Search Functions": "Funktionen durchsuchen...",
 	"Search Knowledge": "Wissen durchsuchen",
 	"Search Models": "Modelle durchsuchen...",
+	"Search options": "",
 	"Search Prompts": "Prompts durchsuchen...",
 	"Search Query Generation Prompt": "Suchanfragengenerierungsvorlage",
 	"Search Result Count": "Anzahl der Suchergebnisse",
 	"Search Tools": "Werkzeuge durchsuchen...",
-	"Search options": "",
 	"SearchApi API Key": "SearchApi-API-Schlüssel",
 	"SearchApi Engine": "SearchApi-Engine",
 	"Searched {{count}} sites_one": "{{count}} Seite durchsucht",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "Scheduler festlegen",
 	"Set Steps": "Schrittgröße festlegen",
 	"Set Task Model": "Aufgabenmodell festlegen",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Stimme festlegen",
 	"Set whisper model": "Whisper-Modell festlegen",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Einstellungen",
 	"Settings saved successfully!": "Einstellungen erfolgreich gespeichert!",
 	"Share": "Teilen",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Kreativität gezeigt",
 	"Sign in": "Anmelden",
 	"Sign in to {{WEBUI_NAME}}": "Bei {{WEBUI_NAME}} anmelden",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Abmelden",
 	"Sign up": "Registrieren",
 	"Sign up to {{WEBUI_NAME}}": "Bei {{WEBUI_NAME}} registrieren",
@@ -725,6 +771,7 @@
 	"System Prompt": "System-Prompt",
 	"Tags": "Tags",
 	"Tags Generation Prompt": "Prompt für Tag-Generierung",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Zum Unterbrechen tippen",
 	"Tavily API Key": "Tavily-API-Schlüssel",
 	"Tell us more:": "Erzähl uns mehr",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Text-zu-Sprache-Engine",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Danke für Ihr Feedback!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Die Entwickler hinter diesem Plugin sind leidenschaftliche Freiwillige aus der Community. Wenn Sie dieses Plugin hilfreich finden, erwägen Sie bitte, zu seiner Entwicklung beizutragen.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Die Bewertungs-Bestenliste basiert auf dem Elo-Bewertungssystem und wird in Echtzeit aktualisiert.",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Die Bestenliste befindet sich derzeit in der Beta-Phase, und es ist möglich, dass wir die Bewertungsberechnungen anpassen, während wir den Algorithmus verfeinern.",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Die maximale Dateigröße in MB. Wenn die Dateigröße dieses Limit überschreitet, wird die Datei nicht hochgeladen.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Die maximale Anzahl von Dateien, die gleichzeitig in der Unterhaltung verwendet werden können. Wenn die Anzahl der Dateien dieses Limit überschreitet, werden die Dateien nicht hochgeladen.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Die Punktzahl sollte ein Wert zwischen 0,0 (0 %) und 1,0 (100 %) sein.",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Design",
 	"Thinking...": "Denke nach...",
 	"This action cannot be undone. Do you wish to continue?": "Diese Aktion kann nicht rückgängig gemacht werden. Möchten Sie fortfahren?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dies stellt sicher, dass Ihre wertvollen Unterhaltungen sicher in Ihrer Backend-Datenbank gespeichert werden. Vielen Dank!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dies ist eine experimentelle Funktion, sie funktioniert möglicherweise nicht wie erwartet und kann jederzeit geändert werden.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Diese Option löscht alle vorhandenen Dateien in der Sammlung und ersetzt sie durch neu hochgeladene Dateien.",
 	"This response was generated by \"{{model}}\"": "Diese Antwort wurde von \"{{model}}\" generiert",
 	"This will delete": "Dies löscht",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Unterhaltungstitel automatisch generieren",
 	"Title cannot be an empty string.": "Titel darf nicht leer sein.",
 	"Title Generation Prompt": "Prompt für Titelgenerierung",
+	"TLS": "",
 	"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zuzugreifen,",
 	"To access the GGUF models available for downloading,": "Um auf die verfügbaren GGUF-Modelle zuzugreifen,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Um auf das WebUI zugreifen zu können, wenden Sie sich bitte an einen Administrator. Administratoren können den Benutzerstatus über das Admin-Panel verwalten.",
@@ -828,6 +883,7 @@
 	"User": "Benutzer",
 	"User location successfully retrieved.": "Benutzerstandort erfolgreich ermittelt.",
 	"User Permissions": "Benutzerberechtigungen",
+	"Username": "",
 	"Users": "Benutzer",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Verwendung des Standard-Arena-Modells mit allen Modellen. Klicken Sie auf die Plus-Schaltfläche, um benutzerdefinierte Modelle hinzuzufügen.",
 	"Utilize": "Verwende",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "WebUI-Einstellungen",
 	"WebUI will make requests to": "WebUI sendet Anfragen an:",
-	"What’s New in": "Neuigkeiten von",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Neuigkeiten von",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (lokal)",
 	"Widescreen Mode": "Breitbildmodus",
 	"Won": "Gewonnen",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Arbeitsbereich",
 	"Write a prompt suggestion (e.g. Who are you?)": "Schreiben Sie einen Promptvorschlag (z. B. Wer sind Sie?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Schreibe eine kurze Zusammenfassung in 50 Wörtern, die [Thema oder Schlüsselwort] zusammenfasst.",
 	"Write something...": "Schreiben Sie etwas...",
+	"Write your model template content here": "",
 	"Yesterday": "Gestern",
 	"You": "Sie",
 	"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.",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Ihr gesamter Beitrag geht direkt an den Plugin-Entwickler; Open WebUI behält keinen Prozentsatz ein. Die gewählte Finanzierungsplattform kann jedoch eigene Gebühren haben.",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "YouTube-Ladeeinstellungen"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "so alpha, many hyphen",
 	"Already have an account?": "Such account exists?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "such assistant",
 	"and": "and",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API Key",
 	"API Key created.": "",
 	"API keys": "",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "",
 	"Archive": "",
 	"Archive All Chats": "",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Attach file",
 	"Attention to detail": "",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Copy Bark Auto Bark",
 	"Auto-playback response": "Auto-playback response",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "Cancel",
 	"Capabilities": "",
+	"Certificate Path": "",
 	"Change Password": "Change Password",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chunk Overlap",
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Size",
+	"Ciphers": "",
 	"Citation": "",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Click for help. Much assist.",
 	"Click here to": "",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "Context Length",
 	"Continue Response": "",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Copying to clipboard was success! Very success!",
+	"Create a knowledge base": "",
 	"Create a model": "",
 	"Create Account": "Create Account",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Created at",
 	"Created At": "",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "Current Model",
 	"Current Password": "Current Password",
@@ -189,6 +202,8 @@
 	"Default Model": "",
 	"Default model updated": "Default model much updated",
 	"Default Prompt Suggestions": "Default Prompt Suggestions",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Default User Role",
 	"Delete": "",
 	"Delete a model": "Delete a model",
@@ -204,8 +219,8 @@
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "Deleted {{deleteModelTag}}",
 	"Deleted {{name}}": "",
-	"Description": "Description",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Description",
 	"Didn't fully follow instructions": "",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Enable Community Sharing": "",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Enable New Bark Ups",
 	"Enable Web Search": "",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Enter {{role}} bork here",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Enter Overlap of Chunks",
 	"Enter Chunk Size": "Enter Size of Chunk",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "",
+	"Enter Seed": "",
 	"Enter Serper API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Enter stop bark",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Enter Your Barkword",
 	"Enter Your Role": "",
+	"Enter Your Username": "",
 	"Error": "",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Much Experiment",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Hide",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "How can I halp u today?",
 	"Hybrid Search": "",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Include `--api` flag when running stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "",
 	"Input commands": "Input commands",
 	"Install from Github URL": "",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Doge Speak",
 	"Last Active": "",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "",
 	"Move to Top": "",
 	"Name": "Name",
-	"Name your model": "",
 	"Name your knowledge base": "",
+	"Name your model": "",
 	"New Chat": "New Bark",
 	"New folder": "",
 	"New Password": "New Barkword",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "",
 	"Previous 30 days": "",
 	"Previous 7 days": "",
@@ -589,6 +625,7 @@
 	"Read Aloud": "",
 	"Record voice": "Record Bark",
 	"Redirecting you to OpenWebUI Community": "Redirecting you to OpenWebUI Community",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Copy Bark Auto Bark",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Search very search",
 	"Search a model": "",
+	"Search Base": "",
 	"Search Chats": "",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "",
+	"Search options": "",
 	"Search Prompts": "Search Prompts much wow",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "",
@@ -685,8 +723,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Set Steps so many steps",
 	"Set Task Model": "",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Set Voice so speak",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Settings much settings",
 	"Settings saved successfully!": "Settings saved successfully! Very success!",
 	"Share": "",
@@ -702,6 +747,7 @@
 	"Showcased creativity": "",
 	"Sign in": "Sign in very sign",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Sign Out much logout",
 	"Sign up": "Sign up much join",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -727,6 +773,7 @@
 	"System Prompt": "System Prompt much prompt",
 	"Tags": "Tags very tags",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "",
@@ -737,17 +784,24 @@
 	"Text-to-Speech Engine": "Text-to-Speech Engine much speak",
 	"Tfs Z": "Tfs Z much Z",
 	"Thanks for your feedback!": "",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Theme much theme",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "This ensures that your valuable conversations are securely saved to your backend database. Thank you! Much secure!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -763,6 +817,7 @@
 	"Title Auto-Generation": "Title Auto-Generation much auto-gen",
 	"Title cannot be an empty string.": "",
 	"Title Generation Prompt": "Title Generation Prompt very prompt",
+	"TLS": "",
 	"To access the available model names for downloading,": "To access the available model names for downloading, much access",
 	"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading, much access",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -830,6 +885,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "User Permissions much permissions",
+	"Username": "",
 	"Users": "Users much users",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Utilize very use",
@@ -854,17 +910,20 @@
 	"Webhook URL": "",
 	"WebUI Settings": "WebUI Settings much settings",
 	"WebUI will make requests to": "WebUI will make requests to much request",
-	"What’s New in": "What’s New in much new",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "What’s New in much new",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "Write a prompt suggestion (e.g. Who are you?) much suggest",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Write a summary in 50 words that summarizes [topic or keyword]. Much summarize.",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "",
 	"You": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -879,4 +938,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "",
 	"Youtube Loader Settings": ""
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "",
 	"Already have an account?": "",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "",
 	"and": "",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "",
 	"API Key created.": "",
 	"API keys": "",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "",
 	"Archive": "",
 	"Archive All Chats": "",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "",
 	"Attention to detail": "",
+	"Attribute for Username": "",
 	"Audio": "",
 	"August": "",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "",
 	"Auto-playback response": "",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "",
 	"Capabilities": "",
+	"Certificate Path": "",
 	"Change Password": "",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "",
 	"Chunk Params": "",
 	"Chunk Size": "",
+	"Ciphers": "",
 	"Citation": "",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "",
 	"Click here to": "",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "",
 	"Continue Response": "",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "",
+	"Create a knowledge base": "",
 	"Create a model": "",
 	"Create Account": "",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "",
 	"Created At": "",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "",
 	"Current Password": "",
@@ -189,6 +202,8 @@
 	"Default Model": "",
 	"Default model updated": "",
 	"Default Prompt Suggestions": "",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "",
 	"Delete": "",
 	"Delete a model": "",
@@ -204,8 +219,8 @@
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{name}}": "",
-	"Description": "",
 	"Describe your knowledge base and objectives": "",
+	"Description": "",
 	"Didn't fully follow instructions": "",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Enable Community Sharing": "",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "",
 	"Enable Web Search": "",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "",
 	"Enter Chunk Size": "",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "",
+	"Enter Seed": "",
 	"Enter Serper API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "",
 	"Enter Your Role": "",
+	"Enter Your Username": "",
 	"Error": "",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "",
 	"Hybrid Search": "",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "",
 	"Input commands": "",
 	"Install from Github URL": "",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "",
 	"Last Active": "",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "",
 	"Move to Top": "",
 	"Name": "",
-	"Name your model": "",
 	"Name your knowledge base": "",
+	"Name your model": "",
 	"New Chat": "",
 	"New folder": "",
 	"New Password": "",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "",
 	"Previous 30 days": "",
 	"Previous 7 days": "",
@@ -589,6 +625,7 @@
 	"Read Aloud": "",
 	"Record voice": "",
 	"Redirecting you to OpenWebUI Community": "",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "",
 	"Search a model": "",
+	"Search Base": "",
 	"Search Chats": "",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "",
+	"Search options": "",
 	"Search Prompts": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "",
 	"Set Task Model": "",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "",
 	"Settings saved successfully!": "",
 	"Share": "",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "",
 	"Sign in": "",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "",
 	"Sign up": "",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "",
 	"Tags": "",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "",
 	"Tfs Z": "",
 	"Thanks for your feedback!": "",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "",
 	"Title cannot be an empty string.": "",
 	"Title Generation Prompt": "",
+	"TLS": "",
 	"To access the available model names for downloading,": "",
 	"To access the GGUF models available for downloading,": "",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "",
+	"Username": "",
 	"Users": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "",
@@ -852,17 +908,20 @@
 	"Webhook URL": "",
 	"WebUI Settings": "",
 	"WebUI will make requests to": "",
-	"What’s New in": "",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "",
 	"You": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "",
 	"Youtube Loader Settings": ""
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "",
 	"Already have an account?": "",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "",
 	"and": "",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "",
 	"API Key created.": "",
 	"API keys": "",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "",
 	"Archive": "",
 	"Archive All Chats": "",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "",
 	"Attention to detail": "",
+	"Attribute for Username": "",
 	"Audio": "",
 	"August": "",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "",
 	"Auto-playback response": "",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "",
 	"Capabilities": "",
+	"Certificate Path": "",
 	"Change Password": "",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "",
 	"Chunk Params": "",
 	"Chunk Size": "",
+	"Ciphers": "",
 	"Citation": "",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "",
 	"Click here to": "",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "",
 	"Continue Response": "",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "",
+	"Create a knowledge base": "",
 	"Create a model": "",
 	"Create Account": "",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "",
 	"Created At": "",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "",
 	"Current Password": "",
@@ -189,6 +202,8 @@
 	"Default Model": "",
 	"Default model updated": "",
 	"Default Prompt Suggestions": "",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "",
 	"Delete": "",
 	"Delete a model": "",
@@ -204,8 +219,8 @@
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{name}}": "",
-	"Description": "",
 	"Describe your knowledge base and objectives": "",
+	"Description": "",
 	"Didn't fully follow instructions": "",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Enable Community Sharing": "",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "",
 	"Enable Web Search": "",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "",
 	"Enter Chunk Size": "",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "",
+	"Enter Seed": "",
 	"Enter Serper API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "",
 	"Enter Your Role": "",
+	"Enter Your Username": "",
 	"Error": "",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "",
 	"Hybrid Search": "",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "",
 	"Input commands": "",
 	"Install from Github URL": "",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "",
 	"Last Active": "",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "",
 	"Move to Top": "",
 	"Name": "",
-	"Name your model": "",
 	"Name your knowledge base": "",
+	"Name your model": "",
 	"New Chat": "",
 	"New folder": "",
 	"New Password": "",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "",
 	"Previous 30 days": "",
 	"Previous 7 days": "",
@@ -589,6 +625,7 @@
 	"Read Aloud": "",
 	"Record voice": "",
 	"Redirecting you to OpenWebUI Community": "",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "",
 	"Search a model": "",
+	"Search Base": "",
 	"Search Chats": "",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "",
+	"Search options": "",
 	"Search Prompts": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "",
 	"Set Task Model": "",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "",
 	"Settings saved successfully!": "",
 	"Share": "",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "",
 	"Sign in": "",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "",
 	"Sign up": "",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "",
 	"Tags": "",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "",
 	"Tfs Z": "",
 	"Thanks for your feedback!": "",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "",
 	"Title cannot be an empty string.": "",
 	"Title Generation Prompt": "",
+	"TLS": "",
 	"To access the available model names for downloading,": "",
 	"To access the GGUF models available for downloading,": "",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "",
+	"Username": "",
 	"Users": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "",
@@ -852,17 +908,20 @@
 	"Webhook URL": "",
 	"WebUI Settings": "",
 	"WebUI will make requests to": "",
-	"What’s New in": "",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "",
 	"You": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "",
 	"Youtube Loader Settings": ""
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Permitir interrupción de voz en llamada",
 	"alphanumeric characters and hyphens": "caracteres alfanuméricos y guiones",
 	"Already have an account?": "¿Ya tienes una cuenta?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "un asistente",
 	"and": "y",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "Clave de la API ",
 	"API Key created.": "Clave de la API creada.",
 	"API keys": "Claves de la API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Abril",
 	"Archive": "Archivar",
 	"Archive All Chats": "Archivar todos los chats",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Adjuntar archivo",
 	"Attention to detail": "Detalle preciso",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "Agosto",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Copiar respuesta automáticamente al portapapeles",
 	"Auto-playback response": "Respuesta de reproducción automática",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "Cadena de autenticación de API",
@@ -98,6 +105,7 @@
 	"Camera": "Cámara",
 	"Cancel": "Cancelar",
 	"Capabilities": "Capacidades",
+	"Certificate Path": "",
 	"Change Password": "Cambia la Contraseña",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Superposición de fragmentos",
 	"Chunk Params": "Parámetros de fragmentos",
 	"Chunk Size": "Tamaño de fragmentos",
+	"Ciphers": "",
 	"Citation": "Cita",
 	"Clear memory": "Liberar memoria",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Presiona aquí para obtener ayuda.",
 	"Click here to": "Presiona aquí para",
 	"Click here to download user import template file.": "Presiona aquí para descargar el archivo de plantilla de importación de usuario.",
@@ -153,8 +163,11 @@
 	"Context Length": "Longitud del contexto",
 	"Continue Response": "Continuar Respuesta",
 	"Continue with {{provider}}": "Continuar con {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "Controles",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Copiado",
 	"Copied shared chat URL to clipboard!": "¡URL de chat compartido copiado al portapapeles!",
 	"Copied to clipboard": "Copiado al portapapeles",
@@ -164,6 +177,7 @@
 	"Copy Link": "Copiar enlace",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "¡La copia al portapapeles se ha realizado correctamente!",
+	"Create a knowledge base": "",
 	"Create a model": "Crear un modelo",
 	"Create Account": "Crear una cuenta",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Creado en",
 	"Created At": "Creado en",
 	"Created by": "Creado por",
-	"Create a knowledge base": "",
 	"CSV Import": "Importa un CSV",
 	"Current Model": "Modelo Actual",
 	"Current Password": "Contraseña Actual",
@@ -189,6 +202,8 @@
 	"Default Model": "Modelo predeterminado",
 	"Default model updated": "El modelo por defecto ha sido actualizado",
 	"Default Prompt Suggestions": "Sugerencias de mensajes por defecto",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Rol por defecto para usuarios",
 	"Delete": "Borrar",
 	"Delete a model": "Borra un modelo",
@@ -204,8 +219,8 @@
 	"Delete User": "Borrar Usuario",
 	"Deleted {{deleteModelTag}}": "Se borró {{deleteModelTag}}",
 	"Deleted {{name}}": "Eliminado {{nombre}}",
-	"Description": "Descripción",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Descripción",
 	"Didn't fully follow instructions": "No siguió las instrucciones",
 	"Disabled": "Desactivado",
 	"Discover a function": "Descubre una función",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Motor de Modelo de Embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding configurado a \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Habilitar el uso compartido de la comunidad",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Habilitar la calificación de los mensajes",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Habilitar Nuevos Registros",
 	"Enable Web Search": "Habilitar la búsqueda web",
 	"Enable Web Search Query Generation": "Habilitar generación de consultas web",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Ingrese el mensaje {{role}} aquí",
 	"Enter a detail about yourself for your LLMs to recall": "Ingrese un detalle sobre usted para que sus LLMs recuerden",
 	"Enter api auth string (e.g. username:password)": "Ingrese la cadena de autorización de api (p.ej., nombre:contraseña)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Ingresa la clave de API de Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Ingresa la escala de CFG (p.ej., 7.0)",
 	"Enter Chunk Overlap": "Ingresar superposición de fragmentos",
 	"Enter Chunk Size": "Ingrese el tamaño del fragmento",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Ingrese la Clave API de SearchApi",
 	"Enter SearchApi Engine": "Ingrese el motor de SearchApi",
 	"Enter Searxng Query URL": "Introduzca la URL de consulta de Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Ingrese la clave API de Serper",
 	"Enter Serply API Key": "Ingrese la clave API de Serply",
 	"Enter Serpstack API Key": "Ingrese la clave API de Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Ingrese la secuencia de parada",
 	"Enter system prompt": "Ingrese el prompt del sistema",
 	"Enter Tavily API Key": "Ingrese la clave API de Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "Ingrese su mensaje",
 	"Enter Your Password": "Ingrese su contraseña",
 	"Enter Your Role": "Ingrese su rol",
+	"Enter Your Username": "",
 	"Error": "Error",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Experimental",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Esconder",
 	"Hide Model": "Esconder Modelo",
+	"Host": "",
 	"How can I help you today?": "¿Cómo puedo ayudarte hoy?",
 	"Hybrid Search": "Búsqueda Híbrida",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Aseguro que he leído y entiendo las implicaciones de mi acción. Estoy consciente de los riesgos asociados con la ejecución de código arbitrario y he verificado la confianza de la fuente.",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir el indicador `--api-auth` al ejecutar stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Incluir el indicador `--api` al ejecutar stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Información",
 	"Input commands": "Ingresar comandos",
 	"Install from Github URL": "Instalar desde la URL de Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Conocimiento eliminado exitosamente.",
 	"Knowledge reset successfully.": "Conocimiento restablecido exitosamente.",
 	"Knowledge updated successfully": "Conocimiento actualizado exitosamente.",
+	"Label": "",
 	"Landing Page Mode": "Modo de Página de Inicio",
 	"Language": "Lenguaje",
 	"Last Active": "Última Actividad",
 	"Last Modified": "Modificado por última vez",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "Deje vacío para ilimitado",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Más",
 	"Move to Top": "Mueve al tope",
 	"Name": "Nombre",
-	"Name your model": "Asigne un nombre a su modelo",
 	"Name your knowledge base": "",
+	"Name your model": "Asigne un nombre a su modelo",
 	"New Chat": "Nuevo Chat",
 	"New folder": "",
 	"New Password": "Nueva Contraseña",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "Por favor llene todos los campos.",
 	"Please select a reason": "Por favor seleccione una razón",
+	"Port": "",
 	"Positive attitude": "Actitud positiva",
 	"Previous 30 days": "Últimos 30 días",
 	"Previous 7 days": "Últimos 7 días",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Leer al oído",
 	"Record voice": "Grabar voz",
 	"Redirecting you to OpenWebUI Community": "Redireccionándote a la comunidad OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referirse a usted mismo como \"Usuario\" (por ejemplo, \"El usuario está aprendiendo Español\")",
 	"References from": "",
 	"Refused when it shouldn't have": "Rechazado cuando no debería",
@@ -606,7 +643,6 @@
 	"Reset": "Reiniciar",
 	"Reset Upload Directory": "Reiniciar Directorio de carga",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Copiar respuesta automáticamente al portapapeles",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Las notificaciones de respuesta no pueden activarse debido a que los permisos del sitio web han sido denegados. Por favor, visite las configuraciones de su navegador para otorgar el acceso necesario.",
 	"Response splitting": "División de respuestas",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Moverse a la parte inferior cuando se cambia entre ramas",
 	"Search": "Buscar",
 	"Search a model": "Buscar un modelo",
+	"Search Base": "",
 	"Search Chats": "Chats de búsqueda",
 	"Search Collection": "Buscar Colección",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Buscar Funciones",
 	"Search Knowledge": "Buscar Conocimiento",
 	"Search Models": "Buscar Modelos",
+	"Search options": "",
 	"Search Prompts": "Buscar Prompts",
 	"Search Query Generation Prompt": "Búsqueda de consulta de generación de prompts",
 	"Search Result Count": "Recuento de resultados de búsqueda",
 	"Search Tools": "Búsqueda de herramientas",
-	"Search options": "",
 	"SearchApi API Key": "Clave API de SearchApi",
 	"SearchApi Engine": "Motor de SearchApi",
 	"Searched {{count}} sites_one": "Buscado {{count}} sites_one",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "Establecer Programador",
 	"Set Steps": "Establecer Pasos",
 	"Set Task Model": "Establecer modelo de tarea",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Establecer la voz",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Configuración",
 	"Settings saved successfully!": "¡Configuración guardada con éxito!",
 	"Share": "Compartir",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "Creatividad mostrada",
 	"Sign in": "Iniciar sesión",
 	"Sign in to {{WEBUI_NAME}}": "Iniciar sesión en {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Cerrar sesión",
 	"Sign up": "Crear una cuenta",
 	"Sign up to {{WEBUI_NAME}}": "Crear una cuenta en {{WEBUI_NAME}}",
@@ -726,6 +772,7 @@
 	"System Prompt": "Prompt del sistema",
 	"Tags": "Etiquetas",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Toca para interrumpir",
 	"Tavily API Key": "Clave API de Tavily",
 	"Tell us more:": "Dinos más:",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "Motor de texto a voz",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "¡Gracias por tu retroalimentación!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Los desarrolladores de este plugin son apasionados voluntarios de la comunidad. Si encuentras este plugin útil, por favor considere contribuir a su desarrollo.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "El tamaño máximo del archivo en MB. Si el tamaño del archivo supera este límite, el archivo no se subirá.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "El número máximo de archivos que se pueden utilizar a la vez en chat. Si este límite es superado, los archivos no se subirán.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "El puntaje debe ser un valor entre 0.0 (0%) y 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "Pensando...",
 	"This action cannot be undone. Do you wish to continue?": "Esta acción no se puede deshacer. ¿Desea continuar?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Esto garantiza que sus valiosas conversaciones se guarden de forma segura en su base de datos en el backend. ¡Gracias!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Esta es una característica experimental que puede no funcionar como se esperaba y está sujeto a cambios en cualquier momento.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": " Esta opción eliminará todos los archivos existentes en la colección y los reemplazará con nuevos archivos subidos.",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Esto eliminará",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "Generación automática de títulos",
 	"Title cannot be an empty string.": "El título no puede ser una cadena vacía.",
 	"Title Generation Prompt": "Prompt de generación de título",
+	"TLS": "",
 	"To access the available model names for downloading,": "Para acceder a los nombres de modelos disponibles para descargar,",
 	"To access the GGUF models available for downloading,": "Para acceder a los modelos GGUF disponibles para descargar,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Para acceder al interfaz de usuario web, por favor contacte al administrador. Los administradores pueden administrar los estados de los usuarios desde el panel de administración.",
@@ -829,6 +884,7 @@
 	"User": "",
 	"User location successfully retrieved.": "Localización del usuario recuperada con éxito.",
 	"User Permissions": "Permisos de usuario",
+	"Username": "",
 	"Users": "Usuarios",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Utilizar",
@@ -853,17 +909,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "Configuración del WebUI",
 	"WebUI will make requests to": "WebUI realizará solicitudes a",
-	"What’s New in": "Novedades en",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Novedades en",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "Modo de pantalla ancha",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Espacio de trabajo",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escribe una sugerencia para un prompt (por ejemplo, ¿quién eres?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escribe un resumen en 50 palabras que resuma [tema o palabra clave].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Ayer",
 	"You": "Usted",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -878,4 +937,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Su contribución completa irá directamente a el desarrollador del plugin; Open WebUI no toma ningun porcentaje. Sin embargo, la plataforma de financiación elegida podría tener sus propias tarifas.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Configuración del cargador de Youtube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "حرف-عدد و خط فاصله",
 	"Already have an account?": "از قبل حساب کاربری دارید؟",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "یک دستیار",
 	"and": "و",
 	"and {{COUNT}} more": "و {{COUNT}} مورد دیگر",
@@ -59,6 +60,8 @@
 	"API Key": "کلید API",
 	"API Key created.": "کلید API ساخته شد.",
 	"API keys": "کلیدهای API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "آوریل",
 	"Archive": "بایگانی",
 	"Archive All Chats": "بایگانی همه گفتگوها",
@@ -71,8 +74,12 @@
 	"Assistant": "دستیار",
 	"Attach file": "پیوست پرونده",
 	"Attention to detail": "دقیق",
+	"Attribute for Username": "",
 	"Audio": "صدا",
 	"August": "آگوست",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "کپی خودکار پاسخ به کلیپ بورد",
 	"Auto-playback response": "پخش خودکار پاسخ",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "دوربین",
 	"Cancel": "لغو",
 	"Capabilities": "قابلیت",
+	"Certificate Path": "",
 	"Change Password": "تغییر رمز عبور",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "همپوشانی تکه",
 	"Chunk Params": "پارامترهای تکه",
 	"Chunk Size": "اندازه تکه",
+	"Ciphers": "",
 	"Citation": "استناد",
 	"Clear memory": "پاک کردن حافظه",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "برای کمک اینجا را کلیک کنید.",
 	"Click here to": "برای کمک اینجا را کلیک کنید.",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "طول زمینه",
 	"Continue Response": "ادامه پاسخ",
 	"Continue with {{provider}}": "با {{provider}} ادامه دهید",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "کنترل\u200cها",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "کپی شد",
 	"Copied shared chat URL to clipboard!": "URL چت به کلیپ بورد کپی شد!",
 	"Copied to clipboard": "به بریده\u200cدان کپی\u200cشد",
@@ -164,6 +177,7 @@
 	"Copy Link": "کپی لینک",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "کپی کردن در کلیپ بورد با موفقیت انجام شد!",
+	"Create a knowledge base": "",
 	"Create a model": "ایجاد یک مدل",
 	"Create Account": "ساخت حساب کاربری",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "ایجاد شده در",
 	"Created At": "ایجاد شده در",
 	"Created by": "ایجاد شده توسط",
-	"Create a knowledge base": "",
 	"CSV Import": "درون\u200cریزی CSV",
 	"Current Model": "مدل فعلی",
 	"Current Password": "رمز عبور فعلی",
@@ -189,6 +202,8 @@
 	"Default Model": "مدل پیشفرض",
 	"Default model updated": "مدل پیشفرض به\u200cروزرسانی شد",
 	"Default Prompt Suggestions": "پیشنهادات پرامپت پیش فرض",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "نقش کاربر پیش فرض",
 	"Delete": "حذف",
 	"Delete a model": "حذف یک مدل",
@@ -204,8 +219,8 @@
 	"Delete User": "حذف کاربر",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} پاک شد",
 	"Deleted {{name}}": "حذف شده {{name}}",
-	"Description": "توضیحات",
 	"Describe your knowledge base and objectives": "",
+	"Description": "توضیحات",
 	"Didn't fully follow instructions": "نمی تواند دستورالعمل را کامل پیگیری کند",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "محرک مدل پیدائش",
 	"Embedding model set to \"{{embedding_model}}\"": "مدل پیدائش را به \"{{embedding_model}}\" تنظیم کنید",
 	"Enable Community Sharing": "فعالسازی اشتراک انجمن",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید",
 	"Enable Web Search": "فعالسازی جستجوی وب",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
 	"Enter a detail about yourself for your LLMs to recall": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "کلید API جستجوی شجاع را وارد کنید",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "مقدار Chunk Overlap را وارد کنید",
 	"Enter Chunk Size": "مقدار Chunk Size را وارد کنید",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "نشانی وب پرسوجوی Searxng را وارد کنید",
+	"Enter Seed": "",
 	"Enter Serper API Key": "کلید API Serper را وارد کنید",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "کلید API Serpstack را وارد کنید",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "توالی توقف را وارد کنید",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "رمز عبور خود را وارد کنید",
 	"Enter Your Role": "نقش خود را وارد کنید",
+	"Enter Your Username": "",
 	"Error": "خطا",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "آزمایشی",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "پنهان\u200cسازی",
 	"Hide Model": "پنهان\u200cسازی مدل",
+	"Host": "",
 	"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟",
 	"Hybrid Search": "جستجوی همزمان",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "شامل",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "فلگ `--api` را هنکام اجرای stable-diffusion-webui استفاده کنید.",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "اطلاعات",
 	"Input commands": "ورودی دستورات",
 	"Install from Github URL": "نصب از ادرس Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "زبان",
 	"Last Active": "آخرین فعال",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "بیشتر",
 	"Move to Top": "",
 	"Name": "نام",
-	"Name your model": "نام مدل خود را",
 	"Name your knowledge base": "",
+	"Name your model": "نام مدل خود را",
 	"New Chat": "گپ جدید",
 	"New folder": "",
 	"New Password": "رمز عبور جدید",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "نظرات مثبت",
 	"Previous 30 days": "30 روز قبل",
 	"Previous 7 days": "7 روز قبل",
@@ -589,6 +625,7 @@
 	"Read Aloud": "خواندن به صورت صوتی",
 	"Record voice": "ضبط صدا",
 	"Redirecting you to OpenWebUI Community": "در حال هدایت به OpenWebUI Community",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "رد شده زمانی که باید نباشد",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "کپی خودکار پاسخ به کلیپ بورد",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "نتیجه",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "جستجو",
 	"Search a model": "جستجوی یک مدل",
+	"Search Base": "",
 	"Search Chats": "جستجو گفتگوها",
 	"Search Collection": "جستجوی مجموعه\u200cها",
+	"Search Filters": "",
 	"search for tags": "جستجو برای برچسب\u200cها",
 	"Search Functions": "جستجوی توابع",
 	"Search Knowledge": "جستجوی دانش",
 	"Search Models": "جستجوی مدل\u200cها",
+	"Search options": "",
 	"Search Prompts": "جستجوی پرامپت\u200cها",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "تعداد نتایج جستجو",
 	"Search Tools": "ابزارهای جستجو",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "جستجو {{count}} sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "تنظیم گام\u200cها",
 	"Set Task Model": "تنظیم مدل تکلیف",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "تنظیم صدا",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "تنظیمات",
 	"Settings saved successfully!": "تنظیمات با موفقیت ذخیره شد!",
 	"Share": "اشتراک\u200cگذاری",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "ایده\u200cآفرینی",
 	"Sign in": "ورود",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "خروج",
 	"Sign up": "ثبت نام",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "پرامپت سیستم",
 	"Tags": "تگ\u200cها",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "بیشتر بگویید:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "موتور تبدیل متن به گفتار",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "با تشکر از بازخورد شما!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "امتیاز باید یک مقدار بین 0.0 (0%) و 1.0 (100%) باشد.",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "پوسته",
 	"Thinking...": "در حال فکر...",
 	"This action cannot be undone. Do you wish to continue?": "این اقدام قابل بازگردانی نیست. برای ادامه اطمینان دارید؟",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "این تضمین می کند که مکالمات ارزشمند شما به طور ایمن در پایگاه داده بکند ذخیره می شود. تشکر!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "تولید خودکار عنوان",
 	"Title cannot be an empty string.": "عنوان نمی تواند یک رشته خالی باشد.",
 	"Title Generation Prompt": "پرامپت تولید عنوان",
+	"TLS": "",
 	"To access the available model names for downloading,": "برای دسترسی به نام مدل های موجود برای دانلود،",
 	"To access the GGUF models available for downloading,": "برای دسترسی به مدل\u200cهای GGUF موجود برای دانلود،",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "کاربر",
 	"User location successfully retrieved.": "موقعیت مکانی کاربر با موفقیت دریافت شد.",
 	"User Permissions": "مجوزهای کاربر",
+	"Username": "",
 	"Users": "کاربران",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "در حال استفاده از مدل آرنا با همهٔ مدل\u200cهای دیگر به طور پیش\u200cفرض. برای افزودن مدل\u200cهای سفارشی، روی دکمه به\u200cعلاوه کلیک کنید.",
 	"Utilize": "استفاده کنید",
@@ -852,17 +908,20 @@
 	"Webhook URL": "نشانی وب\u200cهوک",
 	"WebUI Settings": "تنظیمات WebUI",
 	"WebUI will make requests to": "WebUI درخواست\u200cها را ارسال خواهد کرد به",
-	"What’s New in": "موارد جدید در",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "موارد جدید در",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "حالت صفحهٔ عریض",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "محیط کار",
 	"Write a prompt suggestion (e.g. Who are you?)": "یک پیشنهاد پرامپت بنویسید (مثلاً شما کی هستید؟)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "خلاصه ای در 50 کلمه بنویسید که [موضوع یا کلمه کلیدی] را خلاصه کند.",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "دیروز",
 	"You": "شما",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "شما در هر زمان نهایتا می\u200cتوانید با {{maxCount}} پرونده گفتگو کنید.",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "یوتیوب",
 	"Youtube Loader Settings": "تنظیمات لودر یوتیوب"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "kirjaimia, numeroita ja väliviivoja",
 	"Already have an account?": "Onko sinulla jo tili?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "avustaja",
 	"and": "ja",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API-avain",
 	"API Key created.": "API-avain luotu.",
 	"API keys": "API-avaimet",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "huhtikuu",
 	"Archive": "Arkisto",
 	"Archive All Chats": "Arkistoi kaikki keskustelut",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Liitä tiedosto",
 	"Attention to detail": "Huomio yksityiskohtiin",
+	"Attribute for Username": "",
 	"Audio": "Ääni",
 	"August": "elokuu",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Vastauksen automaattikopiointi leikepöydälle",
 	"Auto-playback response": "Soita vastaus automaattisesti",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "Peruuta",
 	"Capabilities": "Ominaisuuksia",
+	"Certificate Path": "",
 	"Change Password": "Vaihda salasana",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Osien päällekkäisyys",
 	"Chunk Params": "Osien parametrit",
 	"Chunk Size": "Osien koko",
+	"Ciphers": "",
 	"Citation": "Sitaatti",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Klikkaa tästä saadaksesi apua.",
 	"Click here to": "Klikkaa tästä",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "Kontekstin pituus",
 	"Continue Response": "Jatka vastausta",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "Jaettu keskustelulinkki kopioitu leikepöydälle!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Kopioi linkki",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Kopioiminen leikepöydälle onnistui!",
+	"Create a knowledge base": "",
 	"Create a model": "Mallin luominen",
 	"Create Account": "Luo tili",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Luotu",
 	"Created At": "Luotu",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "Nykyinen malli",
 	"Current Password": "Nykyinen salasana",
@@ -189,6 +202,8 @@
 	"Default Model": "Oletusmalli",
 	"Default model updated": "Oletusmalli päivitetty",
 	"Default Prompt Suggestions": "Oletuskehotteiden ehdotukset",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Oletuskäyttäjärooli",
 	"Delete": "Poista",
 	"Delete a model": "Poista malli",
@@ -204,8 +219,8 @@
 	"Delete User": "Poista käyttäjä",
 	"Deleted {{deleteModelTag}}": "Poistettu {{deleteModelTag}}",
 	"Deleted {{name}}": "Poistettu {{nimi}}",
-	"Description": "Kuvaus",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Kuvaus",
 	"Didn't fully follow instructions": "Ei noudattanut ohjeita täysin",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Upotusmallin moottori",
 	"Embedding model set to \"{{embedding_model}}\"": "\"{{embedding_model}}\" valittu upotusmalliksi",
 	"Enable Community Sharing": "Ota yhteisön jakaminen käyttöön",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Salli uudet rekisteröitymiset",
 	"Enable Web Search": "Ota verkkohaku käyttöön",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Kirjoita {{role}} viesti tähän",
 	"Enter a detail about yourself for your LLMs to recall": "Kirjoita tieto itseestäsi LLM:ien muistamiseksi",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Anna Brave Search API -avain",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Syötä osien päällekkäisyys",
 	"Enter Chunk Size": "Syötä osien koko",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Kirjoita Searxng-kyselyn URL-osoite",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Anna Serper API -avain",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Anna Serpstack API -avain",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Syötä lopetussekvenssi",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Syötä salasanasi",
 	"Enter Your Role": "Syötä roolisi",
+	"Enter Your Username": "",
 	"Error": "Virhe",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Kokeellinen",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Piilota",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "Kuinka voin auttaa tänään?",
 	"Hybrid Search": "Hybridihaku",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Sisällytä `--api`-parametri suorittaessasi stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Info",
 	"Input commands": "Syötä komennot",
 	"Install from Github URL": "Asenna Githubin URL-osoitteesta",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Kieli",
 	"Last Active": "Viimeksi aktiivinen",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Lisää",
 	"Move to Top": "",
 	"Name": "Nimi",
-	"Name your model": "Mallin nimeäminen",
 	"Name your knowledge base": "",
+	"Name your model": "Mallin nimeäminen",
 	"New Chat": "Uusi keskustelu",
 	"New folder": "",
 	"New Password": "Uusi salasana",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Positiivinen asenne",
 	"Previous 30 days": "Edelliset 30 päivää",
 	"Previous 7 days": "Edelliset 7 päivää",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Lue ääneen",
 	"Record voice": "Nauhoita ääni",
 	"Redirecting you to OpenWebUI Community": "Ohjataan sinut OpenWebUI-yhteisöön",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "Kieltäytyi, vaikka ei olisi pitänyt",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Vastauksen automaattikopiointi leikepöydälle",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Haku",
 	"Search a model": "Hae mallia",
+	"Search Base": "",
 	"Search Chats": "Etsi chatteja",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "Hae malleja",
+	"Search options": "",
 	"Search Prompts": "Hae kehotteita",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "Hakutulosten määrä",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Haettu {{count}} sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Aseta askelmäärä",
 	"Set Task Model": "Aseta tehtävämalli",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Aseta puheääni",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Asetukset",
 	"Settings saved successfully!": "Asetukset tallennettu onnistuneesti!",
 	"Share": "Jaa",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Näytti luovuutta",
 	"Sign in": "Kirjaudu sisään",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Kirjaudu ulos",
 	"Sign up": "Rekisteröidy",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "Järjestelmäkehote",
 	"Tags": "Tagit",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "Kerro lisää:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Puhemoottori",
 	"Tfs Z": "TFS Z",
 	"Thanks for your feedback!": "Kiitos palautteestasi!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Pisteytyksen tulee olla arvo välillä 0.0 (0%) ja 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Teema",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Tämä varmistaa, että arvokkaat keskustelusi tallennetaan turvallisesti backend-tietokantaasi. Kiitos!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Otsikon automaattinen luonti",
 	"Title cannot be an empty string.": "Otsikko ei voi olla tyhjä.",
 	"Title Generation Prompt": "Otsikon luontikehote",
+	"TLS": "",
 	"To access the available model names for downloading,": "Päästäksesi käsiksi ladattavissa oleviin mallinimiin,",
 	"To access the GGUF models available for downloading,": "Päästäksesi käsiksi ladattavissa oleviin GGUF-malleihin,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "Käyttäjäoikeudet",
+	"Username": "",
 	"Users": "Käyttäjät",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Käytä",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Webhook-URL",
 	"WebUI Settings": "WebUI-asetukset",
 	"WebUI will make requests to": "WebUI tekee pyyntöjä",
-	"What’s New in": "Mitä uutta",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Mitä uutta",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Työtilat",
 	"Write a prompt suggestion (e.g. Who are you?)": "Kirjoita ehdotettu kehote (esim. Kuka olet?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Kirjoita 50 sanan yhteenveto, joka tiivistää [aihe tai avainsana].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Eilen",
 	"You": "Sinä",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Loader-asetukset"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Autoriser l'interruption vocale pendant un appel",
 	"alphanumeric characters and hyphens": "caractères alphanumériques et tirets",
 	"Already have an account?": "Avez-vous déjà un compte ?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "un assistant",
 	"and": "et",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "Clé d'API",
 	"API Key created.": "Clé d'API générée.",
 	"API keys": "Clés d'API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Avril",
 	"Archive": "Archivage",
 	"Archive All Chats": "Archiver toutes les conversations",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Joindre un document",
 	"Attention to detail": "Attention aux détails",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "Août",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Copie automatique de la réponse vers le presse-papiers",
 	"Auto-playback response": "Réponse de lecture automatique",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Chaîne d'authentification de l'API",
@@ -98,6 +105,7 @@
 	"Camera": "Appareil photo",
 	"Cancel": "Annuler",
 	"Capabilities": "Capacités",
+	"Certificate Path": "",
 	"Change Password": "Changer le mot de passe",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chevauchement de blocs",
 	"Chunk Params": "Paramètres d'encombrement",
 	"Chunk Size": "Taille de bloc",
+	"Ciphers": "",
 	"Citation": "Citation",
 	"Clear memory": "Libérer la mémoire",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Cliquez ici pour obtenir de l'aide.",
 	"Click here to": "Cliquez ici pour",
 	"Click here to download user import template file.": "Cliquez ici pour télécharger le fichier modèle d'importation utilisateur.",
@@ -153,8 +163,11 @@
 	"Context Length": "Longueur du contexte",
 	"Continue Response": "Continuer la réponse",
 	"Continue with {{provider}}": "Continuer avec {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Contrôle comment le texte des messages est divisé pour les demandes de TTS. 'Ponctuation' divise en phrases, 'paragraphes' divise en paragraphes et 'aucun' garde le message comme une seule chaîne.",
 	"Controls": "Contrôles",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "URL du chat copiée dans le presse-papiers\u00a0!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Copier le lien",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
+	"Create a knowledge base": "",
 	"Create a model": "Créer un modèle",
 	"Create Account": "Créer un compte",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Créé à",
 	"Created At": "Créé le",
 	"Created by": "Créé par",
-	"Create a knowledge base": "",
 	"CSV Import": "Import CSV",
 	"Current Model": "Modèle actuel amélioré",
 	"Current Password": "Mot de passe actuel",
@@ -189,6 +202,8 @@
 	"Default Model": "Modèle standard",
 	"Default model updated": "Modèle par défaut mis à jour",
 	"Default Prompt Suggestions": "Suggestions de prompts par défaut",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Rôle utilisateur par défaut",
 	"Delete": "Supprimer",
 	"Delete a model": "Supprimer un modèle",
@@ -204,8 +219,8 @@
 	"Delete User": "Supprimer le compte d'utilisateur",
 	"Deleted {{deleteModelTag}}": "Supprimé {{deleteModelTag}}",
 	"Deleted {{name}}": "Supprimé {{name}}",
-	"Description": "Description",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Description",
 	"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
 	"Disabled": "",
 	"Discover a function": "Découvrez une fonction",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Moteur de modèle d'encodage",
 	"Embedding model set to \"{{embedding_model}}\"": "Modèle d'encodage défini sur « {{embedding_model}} »",
 	"Enable Community Sharing": "Activer le partage communautaire",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
 	"Enable Web Search": "Activer la recherche sur le Web",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Entrez le message {{role}} ici",
 	"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
 	"Enter api auth string (e.g. username:password)": "Entrez la chaîne d'authentification de l'API (par ex. nom d'utilisateur:mot de passe)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Entrez la clé API Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Entrez le chevauchement de chunk",
 	"Enter Chunk Size": "Entrez la taille de bloc",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Entrez l'URL de la requête Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Entrez la clé API Serper",
 	"Enter Serply API Key": "Entrez la clé API Serply",
 	"Enter Serpstack API Key": "Entrez la clé API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Entrez la séquence d'arrêt",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "Entrez la clé API Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Entrez votre mot de passe",
 	"Enter Your Role": "Entrez votre rôle",
+	"Enter Your Username": "",
 	"Error": "Erreur",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Expérimental",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Cacher",
 	"Hide Model": "Masquer le modèle",
+	"Host": "",
 	"How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
 	"Hybrid Search": "Recherche hybride",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Inclure le drapeau `--api-auth` lors de l'exécution de stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lorsque vous exécutez stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Info",
 	"Input commands": "Entrez les commandes",
 	"Install from Github URL": "Installer depuis l'URL GitHub",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Langue",
 	"Last Active": "Dernière activité",
 	"Last Modified": "Dernière modification",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Plus de",
 	"Move to Top": "",
 	"Name": "Nom",
-	"Name your model": "Nommez votre modèle",
 	"Name your knowledge base": "",
+	"Name your model": "Nommez votre modèle",
 	"New Chat": "Nouvelle conversation",
 	"New folder": "",
 	"New Password": "Nouveau mot de passe",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Attitude positive",
 	"Previous 30 days": "30 derniers jours",
 	"Previous 7 days": "7 derniers jours",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Lire à haute voix",
 	"Record voice": "Enregistrer la voix",
 	"Redirecting you to OpenWebUI Community": "Redirection vers la communauté OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Désignez-vous comme « Utilisateur » (par ex. « L'utilisateur apprend l'espagnol »)",
 	"References from": "",
 	"Refused when it shouldn't have": "Refusé alors qu'il n'aurait pas dû l'être",
@@ -606,7 +643,6 @@
 	"Reset": "Réinitialiser",
 	"Reset Upload Directory": "Répertoire de téléchargement réinitialisé",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Copie automatique de la réponse vers le presse-papiers",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de réponse ne peuvent pas être activées car les autorisations du site web ont été refusées. Veuillez visiter les paramètres de votre navigateur pour accorder l'accès nécessaire.",
 	"Response splitting": "Fractionnement de la réponse",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Recherche",
 	"Search a model": "Rechercher un modèle",
+	"Search Base": "",
 	"Search Chats": "Rechercher des conversations",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Fonctions de recherche",
 	"Search Knowledge": "",
 	"Search Models": "Rechercher des modèles",
+	"Search options": "",
 	"Search Prompts": "Recherche de prompts",
 	"Search Query Generation Prompt": "Génération d'interrogation de recherche",
 	"Search Result Count": "Nombre de résultats de recherche",
 	"Search Tools": "Outils de recherche",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Recherché {{count}} site(s)_one",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Définir les étapes",
 	"Set Task Model": "Définir le modèle de tâche",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Définir la voix",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Paramètres",
 	"Settings saved successfully!": "Paramètres enregistrés avec succès !",
 	"Share": "Partager",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "Créativité mise en avant",
 	"Sign in": "S'identifier",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Déconnexion",
 	"Sign up": "Inscrivez-vous",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -726,6 +772,7 @@
 	"System Prompt": "Prompt du système",
 	"Tags": "Balises",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Appuyez pour interrompre",
 	"Tavily API Key": "Clé API Tavily",
 	"Tell us more:": "Dites-nous en plus à ce sujet : ",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "Moteur de synthèse vocale",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Merci pour vos commentaires !",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Le score doit être une valeur comprise entre 0,0 (0\u00a0%) et 1,0 (100\u00a0%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Thème",
 	"Thinking...": "En train de réfléchir...",
 	"This action cannot be undone. Do you wish to continue?": "Cette action ne peut pas être annulée. Souhaitez-vous continuer ?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cela garantit que vos conversations précieuses soient sauvegardées en toute sécurité dans votre base de données backend. Merci !",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Il s'agit d'une fonctionnalité expérimentale, elle peut ne pas fonctionner comme prévu et est sujette à modification à tout moment.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Cela supprimera",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "Génération automatique de titres",
 	"Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.",
 	"Title Generation Prompt": "Prompt de génération de titre",
+	"TLS": "",
 	"To access the available model names for downloading,": "Pour accéder aux noms des modèles disponibles en téléchargement,",
 	"To access the GGUF models available for downloading,": "Pour accéder aux modèles GGUF disponibles en téléchargement,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Pour accéder à l'interface Web, veuillez contacter l'administrateur. Les administrateurs peuvent gérer les statuts des utilisateurs depuis le panneau d'administration.",
@@ -829,6 +884,7 @@
 	"User": "",
 	"User location successfully retrieved.": "L'emplacement de l'utilisateur a été récupéré avec succès.",
 	"User Permissions": "Permissions utilisateur",
+	"Username": "",
 	"Users": "Utilisateurs",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Utilisez",
@@ -853,17 +909,20 @@
 	"Webhook URL": "URL du webhook",
 	"WebUI Settings": "Paramètres de WebUI",
 	"WebUI will make requests to": "WebUI effectuera des requêtes vers",
-	"What’s New in": "Quoi de neuf",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Quoi de neuf",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (local)",
 	"Widescreen Mode": "Mode Grand Écran",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Espace de travail",
 	"Write a prompt suggestion (e.g. Who are you?)": "Écrivez une suggestion de prompt (par exemple : Qui êtes-vous ?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Rédigez un résumé de 50 mots qui résume [sujet ou mot-clé].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Hier",
 	"You": "Vous",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -878,4 +937,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "Paramètres de l'outil de téléchargement YouTube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Autoriser l'interruption vocale pendant un appel",
 	"alphanumeric characters and hyphens": "caractères alphanumériques et tirets",
 	"Already have an account?": "Avez-vous déjà un compte ?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "un assistant",
 	"and": "et",
 	"and {{COUNT}} more": "et {{COUNT}} autres",
@@ -59,6 +60,8 @@
 	"API Key": "Clé d'API",
 	"API Key created.": "Clé d'API générée.",
 	"API keys": "Clés d'API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Avril",
 	"Archive": "Archiver",
 	"Archive All Chats": "Archiver toutes les conversations",
@@ -71,8 +74,12 @@
 	"Assistant": "Assistant",
 	"Attach file": "Joindre un document",
 	"Attention to detail": "Attention aux détails",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "Août",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Copie automatique de la réponse vers le presse-papiers",
 	"Auto-playback response": "Lire automatiquement la réponse",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Chaîne d'authentification de l'API",
@@ -98,6 +105,7 @@
 	"Camera": "Appareil photo",
 	"Cancel": "Annuler",
 	"Capabilities": "Capacités",
+	"Certificate Path": "",
 	"Change Password": "Changer le mot de passe",
 	"Character": "Caractère",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chevauchement des chunks",
 	"Chunk Params": "Paramètres des chunks",
 	"Chunk Size": "Taille des chunks",
+	"Ciphers": "",
 	"Citation": "Citation",
 	"Clear memory": "Effacer la mémoire",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Cliquez ici pour obtenir de l'aide.",
 	"Click here to": "Cliquez ici pour",
 	"Click here to download user import template file.": "Cliquez ici pour télécharger le fichier modèle d'importation des utilisateurs.",
@@ -153,8 +163,11 @@
 	"Context Length": "Longueur du contexte",
 	"Continue Response": "Continuer la réponse",
 	"Continue with {{provider}}": "Continuer avec {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Contrôle la façon dont le texte des messages est divisé pour les demandes de Text-to-Speech. « ponctuation » divise en phrases, « paragraphes » divise en paragraphes et « aucun » garde le message en tant que chaîne de texte unique.",
 	"Controls": "Contrôles",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Copié",
 	"Copied shared chat URL to clipboard!": "URL du chat copié dans le presse-papiers !",
 	"Copied to clipboard": "Copié dans le presse-papiers",
@@ -164,6 +177,7 @@
 	"Copy Link": "Copier le lien",
 	"Copy to clipboard": "Copier dans le presse-papiers",
 	"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
+	"Create a knowledge base": "",
 	"Create a model": "Créer un modèle",
 	"Create Account": "Créer un compte",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Créé le",
 	"Created At": "Créé le",
 	"Created by": "Créé par",
-	"Create a knowledge base": "",
 	"CSV Import": "Import CSV",
 	"Current Model": "Modèle actuel",
 	"Current Password": "Mot de passe actuel",
@@ -189,6 +202,8 @@
 	"Default Model": "Modèle standard",
 	"Default model updated": "Modèle par défaut mis à jour",
 	"Default Prompt Suggestions": "Suggestions de prompts par défaut",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Rôle utilisateur par défaut",
 	"Delete": "Supprimer",
 	"Delete a model": "Supprimer un modèle",
@@ -204,8 +219,8 @@
 	"Delete User": "Supprimer le compte d'utilisateur",
 	"Deleted {{deleteModelTag}}": "Supprimé {{deleteModelTag}}",
 	"Deleted {{name}}": "Supprimé {{name}}",
-	"Description": "Description",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Description",
 	"Didn't fully follow instructions": "N'a pas entièrement respecté les instructions",
 	"Disabled": "Désactivé",
 	"Discover a function": "Trouvez une fonction",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Moteur de modèle d'embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modèle d'embedding défini sur « {{embedding_model}} »",
 	"Enable Community Sharing": "Activer le partage communautaire",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Activer l'évaluation des messages",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Activer les nouvelles inscriptions",
 	"Enable Web Search": "Activer la recherche Web",
 	"Enable Web Search Query Generation": "Activer la génération de requêtes de recherche Web",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Entrez le message {{role}} ici",
 	"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
 	"Enter api auth string (e.g. username:password)": "Entrez la chaîne d'authentification de l'API (par ex. nom d'utilisateur:mot de passe)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Entrez la clé API Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Entrez l'échelle CFG (par ex. 7.0)",
 	"Enter Chunk Overlap": "Entrez le chevauchement des chunks",
 	"Enter Chunk Size": "Entrez la taille des chunks",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Entrez la clé API SearchApi",
 	"Enter SearchApi Engine": "Entrez le moteur de recherche SearchApi",
 	"Enter Searxng Query URL": "Entrez l'URL de la requête Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Entrez la clé API Serper",
 	"Enter Serply API Key": "Entrez la clé API Serply",
 	"Enter Serpstack API Key": "Entrez la clé API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Entrez la séquence d'arrêt",
 	"Enter system prompt": "Entrez le prompt système",
 	"Enter Tavily API Key": "Entrez la clé API Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "Entrez votre message",
 	"Enter Your Password": "Entrez votre mot de passe",
 	"Enter Your Role": "Entrez votre rôle",
+	"Enter Your Username": "",
 	"Error": "Erreur",
 	"ERROR": "ERREUR",
 	"Evaluations": "Évaluations",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "Exclure",
 	"Experimental": "Expérimental",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "Aidez-nous à créer le meilleur classement communautaire en partageant votre historique des avis !",
 	"Hide": "Cacher",
 	"Hide Model": "Masquer le modèle",
+	"Host": "",
 	"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
 	"Hybrid Search": "Recherche hybride",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Je reconnais avoir lu et compris les implications de mes actions. Je suis conscient des risques associés à l'exécution d'un code arbitraire et j'ai vérifié la fiabilité de la source.",
@@ -396,6 +427,7 @@
 	"Include": "Inclure",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Inclure le drapeau `--api-auth` lors de l'exécution de stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lorsque vous exécutez stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Info",
 	"Input commands": "Commandes d'entrée",
 	"Install from Github URL": "Installer depuis une URL GitHub",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Connaissance supprimée avec succès.",
 	"Knowledge reset successfully.": "Connaissance réinitialisée avec succès.",
 	"Knowledge updated successfully": "Connaissance mise à jour avec succès",
+	"Label": "",
 	"Landing Page Mode": "Mode de la page d'accueil",
 	"Language": "Langue",
 	"Last Active": "Dernière activité",
 	"Last Modified": "Dernière modification",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "Classement",
 	"Leave empty for unlimited": "Laissez vide pour illimité",
 	"Leave empty to include all models or select specific models": "Laissez vide pour inclure tous les modèles ou sélectionnez des modèles spécifiques",
@@ -488,8 +523,8 @@
 	"More": "Plus",
 	"Move to Top": "Déplacer en haut",
 	"Name": "Nom d'utilisateur",
-	"Name your model": "Nommez votre modèle",
 	"Name your knowledge base": "",
+	"Name your model": "Nommez votre modèle",
 	"New Chat": "Nouvelle conversation",
 	"New folder": "Nouveau dossier",
 	"New Password": "Nouveau mot de passe",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "Veuillez saisir un prompt",
 	"Please fill in all fields.": "Veuillez remplir tous les champs.",
 	"Please select a reason": "Veuillez sélectionner une raison",
+	"Port": "",
 	"Positive attitude": "Attitude positive",
 	"Previous 30 days": "30 derniers jours",
 	"Previous 7 days": "7 derniers jours",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Lire à haute voix",
 	"Record voice": "Enregistrer la voix",
 	"Redirecting you to OpenWebUI Community": "Redirection vers la communauté OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Désignez-vous comme « Utilisateur » (par ex. « L'utilisateur apprend l'espagnol »)",
 	"References from": "Références de",
 	"Refused when it shouldn't have": "Refusé alors qu'il n'aurait pas dû l'être",
@@ -606,7 +643,6 @@
 	"Reset": "Réinitialiser",
 	"Reset Upload Directory": "Réinitialiser le répertoire de téléchargement",
 	"Reset Vector Storage/Knowledge": "Réinitialiser le stockage vectoriel/connaissances",
-	"Auto-Copy Response to Clipboard": "Copie automatique de la réponse vers le presse-papiers",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Les notifications de réponse ne peuvent pas être activées car les autorisations du site web ont été refusées. Veuillez vérifier les paramètres de votre navigateur pour accorder l'accès nécessaire.",
 	"Response splitting": "Fractionnement de la réponse",
 	"Result": "Résultat",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Défiler vers le bas lors du passage d'une branche à l'autre",
 	"Search": "Recherche",
 	"Search a model": "Rechercher un modèle",
+	"Search Base": "",
 	"Search Chats": "Rechercher des conversations",
 	"Search Collection": "Rechercher une collection",
+	"Search Filters": "",
 	"search for tags": "Rechercher des tags",
 	"Search Functions": "Rechercher des fonctions",
 	"Search Knowledge": "Rechercher des connaissances",
 	"Search Models": "Rechercher des modèles",
+	"Search options": "",
 	"Search Prompts": "Rechercher des prompts",
 	"Search Query Generation Prompt": "Rechercher des prompts de génération de requête",
 	"Search Result Count": "Nombre de résultats de recherche",
 	"Search Tools": "Rechercher des outils",
-	"Search options": "",
 	"SearchApi API Key": "Clé API SearchApi",
 	"SearchApi Engine": "Moteur de recherche SearchApi",
 	"Searched {{count}} sites_one": "Recherché {{count}} site(s)_one",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "Définir le planificateur",
 	"Set Steps": "Définir le nombre d'étapes",
 	"Set Task Model": "Définir le modèle de tâche",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Choisir la voix",
 	"Set whisper model": "Choisir le modèle Whisper",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Paramètres",
 	"Settings saved successfully!": "Paramètres enregistrés avec succès !",
 	"Share": "Partager",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "Créativité mise en avant",
 	"Sign in": "Connexion",
 	"Sign in to {{WEBUI_NAME}}": "Connectez-vous à {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Déconnexion",
 	"Sign up": "Inscrivez-vous",
 	"Sign up to {{WEBUI_NAME}}": "Inscrivez-vous à {{WEBUI_NAME}}",
@@ -726,6 +772,7 @@
 	"System Prompt": "Prompt système",
 	"Tags": "Tags",
 	"Tags Generation Prompt": "Prompt de génération de tags",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Appuyez pour interrompre",
 	"Tavily API Key": "Clé API Tavily",
 	"Tell us more:": "Dites-nous en plus à ce sujet : ",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "Moteur de Text-to-Speech",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Merci pour vos commentaires !",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Les développeurs de ce plugin sont des bénévoles passionnés issus de la communauté. Si vous trouvez ce plugin utile, merci de contribuer à son développement.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Le classement d'évaluation est basé sur le système de notation Elo et est mis à jour en temps réel.",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Le classement est actuellement en version bêta et nous pouvons ajuster les calculs de notation à mesure que nous peaufinons l'algorithme.",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "La taille maximale du fichier en Mo. Si la taille du fichier dépasse cette limite, le fichier ne sera pas téléchargé.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Le nombre maximal de fichiers pouvant être utilisés en même temps dans la conversation. Si le nombre de fichiers dépasse cette limite, les fichiers ne seront pas téléchargés.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Le score doit être une valeur comprise entre 0,0 (0\u00a0%) et 1,0 (100\u00a0%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Thème",
 	"Thinking...": "En train de réfléchir...",
 	"This action cannot be undone. Do you wish to continue?": "Cette action ne peut pas être annulée. Souhaitez-vous continuer ?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cela garantit que vos conversations précieuses soient sauvegardées en toute sécurité dans votre base de données backend. Merci !",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Il s'agit d'une fonctionnalité expérimentale, elle peut ne pas fonctionner comme prévu et est sujette à modification à tout moment.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Cette option supprimera tous les fichiers existants dans la collection et les remplacera par les fichiers nouvellement téléchargés.",
 	"This response was generated by \"{{model}}\"": "Cette réponse a été générée par \"{{model}}\"",
 	"This will delete": "Cela supprimera",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "Génération automatique des titres",
 	"Title cannot be an empty string.": "Le titre ne peut pas être une chaîne de caractères vide.",
 	"Title Generation Prompt": "Prompt de génération de titre",
+	"TLS": "",
 	"To access the available model names for downloading,": "Pour accéder aux noms des modèles disponibles,",
 	"To access the GGUF models available for downloading,": "Pour accéder aux modèles GGUF disponibles,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Pour accéder à l'interface Web, veuillez contacter l'administrateur. Les administrateurs peuvent gérer les statuts des utilisateurs depuis le panneau d'administration.",
@@ -829,6 +884,7 @@
 	"User": "Utilisateur",
 	"User location successfully retrieved.": "L'emplacement de l'utilisateur a été récupéré avec succès.",
 	"User Permissions": "Permissions utilisateur",
+	"Username": "",
 	"Users": "Utilisateurs",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Utilisation du modèle d'arène par défaut avec tous les modèles. Cliquez sur le bouton plus pour ajouter des modèles personnalisés.",
 	"Utilize": "Utilisez",
@@ -853,17 +909,20 @@
 	"Webhook URL": "URL du webhook",
 	"WebUI Settings": "Paramètres de WebUI",
 	"WebUI will make requests to": "WebUI effectuera des requêtes vers",
-	"What’s New in": "Quoi de neuf dans",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Quoi de neuf dans",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (local)",
 	"Widescreen Mode": "Mode grand écran",
 	"Won": "Gagné",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Espace de travail",
 	"Write a prompt suggestion (e.g. Who are you?)": "Écrivez une suggestion de prompt (par exemple : Qui êtes-vous ?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Rédigez un résumé de 50 mots qui résume [sujet ou mot-clé].",
 	"Write something...": "Écrivez quelque chose...",
+	"Write your model template content here": "",
 	"Yesterday": "Hier",
 	"You": "Vous",
 	"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.",
@@ -878,4 +937,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "L'intégralité de votre contribution ira directement au développeur du plugin ; Open WebUI ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "Paramètres de l'outil de téléchargement YouTube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "תווים אלפאנומריים ומקפים",
 	"Already have an account?": "כבר יש לך חשבון?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "עוזר",
 	"and": "וגם",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "מפתח API",
 	"API Key created.": "מפתח API נוצר.",
 	"API keys": "מפתחות API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "אפריל",
 	"Archive": "ארכיון",
 	"Archive All Chats": "אחסן בארכיון את כל הצ'אטים",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "צרף קובץ",
 	"Attention to detail": "תשומת לב לפרטים",
+	"Attribute for Username": "",
 	"Audio": "אודיו",
 	"August": "אוגוסט",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "העתקה אוטומטית של תגובה ללוח",
 	"Auto-playback response": "תגובת השמעה אוטומטית",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "בטל",
 	"Capabilities": "יכולות",
+	"Certificate Path": "",
 	"Change Password": "שנה סיסמה",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "חפיפת נתונים",
 	"Chunk Params": "פרמטרי נתונים",
 	"Chunk Size": "גודל נתונים",
+	"Ciphers": "",
 	"Citation": "ציטוט",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "לחץ כאן לעזרה.",
 	"Click here to": "לחץ כאן כדי",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "אורך הקשר",
 	"Continue Response": "המשך תגובה",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "העתקת כתובת URL של צ'אט משותף ללוח!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "העתק קישור",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "ההעתקה ללוח הייתה מוצלחת!",
+	"Create a knowledge base": "",
 	"Create a model": "יצירת מודל",
 	"Create Account": "צור חשבון",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "נוצר ב",
 	"Created At": "נוצר ב",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "המודל הנוכחי",
 	"Current Password": "הסיסמה הנוכחית",
@@ -189,6 +202,8 @@
 	"Default Model": "מודל ברירת מחדל",
 	"Default model updated": "המודל המוגדר כברירת מחדל עודכן",
 	"Default Prompt Suggestions": "הצעות ברירת מחדל לפקודות",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "תפקיד משתמש ברירת מחדל",
 	"Delete": "מחק",
 	"Delete a model": "מחק מודל",
@@ -204,8 +219,8 @@
 	"Delete User": "מחק משתמש",
 	"Deleted {{deleteModelTag}}": "נמחק {{deleteModelTag}}",
 	"Deleted {{name}}": "נמחק {{name}}",
-	"Description": "תיאור",
 	"Describe your knowledge base and objectives": "",
+	"Description": "תיאור",
 	"Didn't fully follow instructions": "לא עקב אחרי ההוראות באופן מלא",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "מנוע מודל הטמעה",
 	"Embedding model set to \"{{embedding_model}}\"": "מודל ההטמעה הוגדר ל-\"{{embedding_model}}\"",
 	"Enable Community Sharing": "הפיכת שיתוף קהילה לזמין",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "אפשר הרשמות חדשות",
 	"Enable Web Search": "הפיכת חיפוש באינטרנט לזמין",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "הזן הודעת {{role}} כאן",
 	"Enter a detail about yourself for your LLMs to recall": "הזן פרטים על עצמך כדי שLLMs יזכור",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "הזן מפתח API של חיפוש אמיץ",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "הזן חפיפת נתונים",
 	"Enter Chunk Size": "הזן גודל נתונים",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "הזן כתובת URL של שאילתת Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "הזן מפתח API של Serper",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "הזן מפתח API של Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "הזן רצף עצירה",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "הזן את הסיסמה שלך",
 	"Enter Your Role": "הזן את התפקיד שלך",
+	"Enter Your Username": "",
 	"Error": "שגיאה",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "ניסיוני",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "הסתר",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "כיצד אוכל לעזור לך היום?",
 	"Hybrid Search": "חיפוש היברידי",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "כלול את הדגל `--api` בעת הרצת stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "מידע",
 	"Input commands": "פקודות קלט",
 	"Install from Github URL": "התקן מכתובת URL של Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "שפה",
 	"Last Active": "פעיל לאחרונה",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "עוד",
 	"Move to Top": "",
 	"Name": "שם",
-	"Name your model": "תן שם לדגם שלך",
 	"Name your knowledge base": "",
+	"Name your model": "תן שם לדגם שלך",
 	"New Chat": "צ'אט חדש",
 	"New folder": "",
 	"New Password": "סיסמה חדשה",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "גישה חיובית",
 	"Previous 30 days": "30 הימים הקודמים",
 	"Previous 7 days": "7 הימים הקודמים",
@@ -589,6 +625,7 @@
 	"Read Aloud": "קרא בקול",
 	"Record voice": "הקלט קול",
 	"Redirecting you to OpenWebUI Community": "מפנה אותך לקהילת OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "נדחה כאשר לא היה צריך",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "העתקה אוטומטית של תגובה ללוח",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "חפש",
 	"Search a model": "חפש מודל",
+	"Search Base": "",
 	"Search Chats": "חיפוש צ'אטים",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "חיפוש מודלים",
+	"Search options": "",
 	"Search Prompts": "חפש פקודות",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "ספירת תוצאות חיפוש",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "חיפש {{count}} sites_one",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "הגדר שלבים",
 	"Set Task Model": "הגדרת מודל משימה",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "הגדר קול",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "הגדרות",
 	"Settings saved successfully!": "ההגדרות נשמרו בהצלחה!",
 	"Share": "שתף",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "הצגת יצירתיות",
 	"Sign in": "הירשם",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "התנתקות",
 	"Sign up": "הרשמה",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -726,6 +772,7 @@
 	"System Prompt": "תגובת מערכת",
 	"Tags": "תגיות",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "תרשמו יותר:",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "מנוע טקסט לדיבור",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "תודה על המשוב שלך!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "ציון צריך להיות ערך בין 0.0 (0%) ל-1.0 (100%)",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "נושא",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "פעולה זו מבטיחה שהשיחות בעלות הערך שלך יישמרו באופן מאובטח במסד הנתונים העורפי שלך. תודה!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "יצירת שם אוטומטית",
 	"Title cannot be an empty string.": "שם לא יכול להיות מחרוזת ריקה.",
 	"Title Generation Prompt": "שאלה ליצירת שם",
+	"TLS": "",
 	"To access the available model names for downloading,": "כדי לגשת לשמות הדגמים הזמינים להורדה,",
 	"To access the GGUF models available for downloading,": "כדי לגשת לדגמי GGUF הזמינים להורדה,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -829,6 +884,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "הרשאות משתמש",
+	"Username": "",
 	"Users": "משתמשים",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "שימוש",
@@ -853,17 +909,20 @@
 	"Webhook URL": "URL Webhook",
 	"WebUI Settings": "הגדרות WebUI",
 	"WebUI will make requests to": "WebUI יבקש לבקש",
-	"What’s New in": "מה חדש ב",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "מה חדש ב",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "סביבה",
 	"Write a prompt suggestion (e.g. Who are you?)": "כתוב הצעה מהירה (למשל, מי אתה?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "כתוב סיכום ב-50 מילים שמסכם [נושא או מילת מפתח].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "אתמול",
 	"You": "אתה",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -878,4 +937,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "הגדרות Youtube Loader"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "अल्फ़ान्यूमेरिक वर्ण और हाइफ़न",
 	"Already have an account?": "क्या आपके पास पहले से एक खाता मौजूद है?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "एक सहायक",
 	"and": "और",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "एपीआई कुंजी",
 	"API Key created.": "एपीआई कुंजी बनाई गई",
 	"API keys": "एपीआई कुंजियाँ",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "अप्रैल",
 	"Archive": "पुरालेख",
 	"Archive All Chats": "सभी चैट संग्रहीत करें",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "फ़ाइल atta",
 	"Attention to detail": "विस्तार पर ध्यान",
+	"Attribute for Username": "",
 	"Audio": "ऑडियो",
 	"August": "अगस्त",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "क्लिपबोर्ड पर प्रतिक्रिया ऑटोकॉपी",
 	"Auto-playback response": "ऑटो-प्लेबैक प्रतिक्रिया",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "रद्द करें",
 	"Capabilities": "क्षमताओं",
+	"Certificate Path": "",
 	"Change Password": "पासवर्ड बदलें",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "चंक ओवरलैप",
 	"Chunk Params": "चंक पैरामीटर्स",
 	"Chunk Size": "चंक आकार",
+	"Ciphers": "",
 	"Citation": "उद्धरण",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "सहायता के लिए यहां क्लिक करें।",
 	"Click here to": "यहां क्लिक करें",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "प्रसंग की लंबाई",
 	"Continue Response": "प्रतिक्रिया जारी रखें",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "साझा चैट URL को क्लिपबोर्ड पर कॉपी किया गया!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "लिंक को कॉपी करें",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "क्लिपबोर्ड पर कॉपी बनाना सफल रहा!",
+	"Create a knowledge base": "",
 	"Create a model": "एक मॉडल बनाएं",
 	"Create Account": "खाता बनाएं",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "किस समय बनाया गया",
 	"Created At": "किस समय बनाया गया",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "वर्तमान मॉडल",
 	"Current Password": "वर्तमान पासवर्ड",
@@ -189,6 +202,8 @@
 	"Default Model": "डिफ़ॉल्ट मॉडल",
 	"Default model updated": "डिफ़ॉल्ट मॉडल अपडेट किया गया",
 	"Default Prompt Suggestions": "डिफ़ॉल्ट प्रॉम्प्ट सुझाव",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "डिफ़ॉल्ट उपयोगकर्ता भूमिका",
 	"Delete": "डिलीट",
 	"Delete a model": "एक मॉडल हटाएँ",
@@ -204,8 +219,8 @@
 	"Delete User": "उपभोक्ता मिटायें",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} हटा दिया गया",
 	"Deleted {{name}}": "{{name}} हटा दिया गया",
-	"Description": "विवरण",
 	"Describe your knowledge base and objectives": "",
+	"Description": "विवरण",
 	"Didn't fully follow instructions": "निर्देशों का पूरी तरह से पालन नहीं किया",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "एंबेडिंग मॉडल इंजन",
 	"Embedding model set to \"{{embedding_model}}\"": "एम्बेडिंग मॉडल को \"{{embedding_model}}\" पर सेट किया गया",
 	"Enable Community Sharing": "समुदाय साझाकरण सक्षम करें",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "नए साइन अप सक्रिय करें",
 	"Enable Web Search": "वेब खोज सक्षम करें",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
 	"Enter a detail about yourself for your LLMs to recall": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Brave सर्च एपीआई कुंजी डालें",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "चंक ओवरलैप दर्ज करें",
 	"Enter Chunk Size": "खंड आकार दर्ज करें",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Searxng क्वेरी URL दर्ज करें",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Serper API कुंजी दर्ज करें",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "सर्पस्टैक एपीआई कुंजी दर्ज करें",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "स्टॉप अनुक्रम दर्ज करें",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "अपना पासवर्ड भरें",
 	"Enter Your Role": "अपनी भूमिका दर्ज करें",
+	"Enter Your Username": "",
 	"Error": "चूक",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "प्रयोगात्मक",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "छुपाएं",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "आज मैं आपकी कैसे मदद कर सकता हूँ?",
 	"Hybrid Search": "हाइब्रिड खोज",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui चलाते समय `--api` ध्वज शामिल करें",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "सूचना-विषयक",
 	"Input commands": "इनपुट क命",
 	"Install from Github URL": "Github URL से इंस्टॉल करें",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "भाषा",
 	"Last Active": "पिछली बार सक्रिय",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "और..",
 	"Move to Top": "",
 	"Name": "नाम",
-	"Name your model": "अपने मॉडल को नाम दें",
 	"Name your knowledge base": "",
+	"Name your model": "अपने मॉडल को नाम दें",
 	"New Chat": "नई चैट",
 	"New folder": "",
 	"New Password": "नया पासवर्ड",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "सकारात्मक रवैया",
 	"Previous 30 days": "पिछले 30 दिन",
 	"Previous 7 days": "पिछले 7 दिन",
@@ -589,6 +625,7 @@
 	"Read Aloud": "जोर से पढ़ें",
 	"Record voice": "आवाज रिकॉर्ड करना",
 	"Redirecting you to OpenWebUI Community": "आपको OpenWebUI समुदाय पर पुनर्निर्देशित किया जा रहा है",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "जब ऐसा नहीं होना चाहिए था तो मना कर दिया",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "क्लिपबोर्ड पर प्रतिक्रिया ऑटोकॉपी",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "खोजें",
 	"Search a model": "एक मॉडल खोजें",
+	"Search Base": "",
 	"Search Chats": "चैट खोजें",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "मॉडल खोजें",
+	"Search options": "",
 	"Search Prompts": "प्रॉम्प्ट खोजें",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "खोज परिणामों की संख्या",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "{{count}} sites_one खोजा गया",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "चरण निर्धारित करें",
 	"Set Task Model": "कार्य मॉडल सेट करें",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "आवाज सेट करें",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "सेटिंग्स",
 	"Settings saved successfully!": "सेटिंग्स सफलतापूर्वक सहेजी गईं!",
 	"Share": "साझा करें",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "रचनात्मकता का प्रदर्शन किया",
 	"Sign in": "साइन इन",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "साइन आउट",
 	"Sign up": "साइन अप",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "सिस्टम प्रॉम्प्ट",
 	"Tags": "टैग",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "हमें और अधिक बताएँ:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "टेक्स्ट-टू-स्पीच इंजन",
 	"Tfs Z": "टफ्स Z",
 	"Thanks for your feedback!": "आपकी प्रतिक्रिया के लिए धन्यवाद!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "स्कोर का मान 0.0 (0%) और 1.0 (100%) के बीच होना चाहिए।",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "थीम",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "यह सुनिश्चित करता है कि आपकी मूल्यवान बातचीत आपके बैकएंड डेटाबेस में सुरक्षित रूप से सहेजी गई है। धन्यवाद!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "शीर्षक ऑटो-जेनरेशन",
 	"Title cannot be an empty string.": "शीर्षक नहीं खाली पाठ हो सकता है.",
 	"Title Generation Prompt": "शीर्षक जनरेशन प्रॉम्प्ट",
+	"TLS": "",
 	"To access the available model names for downloading,": "डाउनलोड करने के लिए उपलब्ध मॉडल नामों तक पहुंचने के लिए,",
 	"To access the GGUF models available for downloading,": "डाउनलोडिंग के लिए उपलब्ध GGUF मॉडल तक पहुँचने के लिए,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "उपयोगकर्ता अनुमतियाँ",
+	"Username": "",
 	"Users": "उपयोगकर्ताओं",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "उपयोग करें",
@@ -852,17 +908,20 @@
 	"Webhook URL": "वेबहुक URL",
 	"WebUI Settings": "WebUI सेटिंग्स",
 	"WebUI will make requests to": "WebUI अनुरोध करेगा",
-	"What’s New in": "इसमें नया क्या है",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "इसमें नया क्या है",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "वर्कस्पेस",
 	"Write a prompt suggestion (e.g. Who are you?)": "एक त्वरित सुझाव लिखें (जैसे कि आप कौन हैं?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "50 शब्दों में एक सारांश लिखें जो [विषय या कीवर्ड] का सारांश प्रस्तुत करता हो।",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "कल",
 	"You": "आप",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "यूट्यूब लोडर सेटिंग्स"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "alfanumerički znakovi i crtice",
 	"Already have an account?": "Već imate račun?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "asistent",
 	"and": "i",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API ključ",
 	"API Key created.": "API ključ je stvoren.",
 	"API keys": "API ključevi",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Travanj",
 	"Archive": "Arhiva",
 	"Archive All Chats": "Arhivirajte sve razgovore",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Priloži datoteku",
 	"Attention to detail": "Pažnja na detalje",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "Kolovoz",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Automatsko kopiranje odgovora u međuspremnik",
 	"Auto-playback response": "Automatska reprodukcija odgovora",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "Otkaži",
 	"Capabilities": "Mogućnosti",
+	"Certificate Path": "",
 	"Change Password": "Promijeni lozinku",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Preklapanje dijelova",
 	"Chunk Params": "Parametri dijelova",
 	"Chunk Size": "Veličina dijela",
+	"Ciphers": "",
 	"Citation": "Citiranje",
 	"Clear memory": "Očisti memoriju",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Kliknite ovdje za pomoć.",
 	"Click here to": "Kliknite ovdje za",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "Dužina konteksta",
 	"Continue Response": "Nastavi odgovor",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "URL dijeljenog razgovora kopiran u međuspremnik!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Kopiraj vezu",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Kopiranje u međuspremnik je uspješno!",
+	"Create a knowledge base": "",
 	"Create a model": "Izradite model",
 	"Create Account": "Stvori račun",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Stvoreno",
 	"Created At": "Stvoreno",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "Trenutni model",
 	"Current Password": "Trenutna lozinka",
@@ -189,6 +202,8 @@
 	"Default Model": "Zadani model",
 	"Default model updated": "Zadani model ažuriran",
 	"Default Prompt Suggestions": "Zadani prijedlozi prompta",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Zadana korisnička uloga",
 	"Delete": "Izbriši",
 	"Delete a model": "Izbriši model",
@@ -204,8 +219,8 @@
 	"Delete User": "Izbriši korisnika",
 	"Deleted {{deleteModelTag}}": "Izbrisan {{deleteModelTag}}",
 	"Deleted {{name}}": "Izbrisano {{name}}",
-	"Description": "Opis",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Opis",
 	"Didn't fully follow instructions": "Nije u potpunosti slijedio upute",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Embedding model pogon",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model postavljen na \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Omogući zajedničko korištenje zajednice",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Omogući nove prijave",
 	"Enable Web Search": "Omogući pretraživanje weba",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
 	"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Unesite Brave Search API ključ",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Unesite preklapanje dijelova",
 	"Enter Chunk Size": "Unesite veličinu dijela",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Unesite URL upita Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Unesite Serper API ključ",
 	"Enter Serply API Key": "Unesite Serply API ključ",
 	"Enter Serpstack API Key": "Unesite Serpstack API ključ",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Unesite sekvencu zaustavljanja",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Unesite svoju lozinku",
 	"Enter Your Role": "Unesite svoju ulogu",
+	"Enter Your Username": "",
 	"Error": "Greška",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Eksperimentalno",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Sakrij",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "Kako vam mogu pomoći danas?",
 	"Hybrid Search": "Hibridna pretraga",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Uključite zastavicu `--api` prilikom pokretanja stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Informacije",
 	"Input commands": "Unos naredbi",
 	"Install from Github URL": "Instaliraj s Github URL-a",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Jezik",
 	"Last Active": "Zadnja aktivnost",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Više",
 	"Move to Top": "",
 	"Name": "Ime",
-	"Name your model": "Dodijelite naziv modelu",
 	"Name your knowledge base": "",
+	"Name your model": "Dodijelite naziv modelu",
 	"New Chat": "Novi razgovor",
 	"New folder": "",
 	"New Password": "Nova lozinka",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Pozitivan stav",
 	"Previous 30 days": "Prethodnih 30 dana",
 	"Previous 7 days": "Prethodnih 7 dana",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Čitaj naglas",
 	"Record voice": "Snimanje glasa",
 	"Redirecting you to OpenWebUI Community": "Preusmjeravanje na OpenWebUI zajednicu",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Nazivajte se \"Korisnik\" (npr. \"Korisnik uči španjolski\")",
 	"References from": "",
 	"Refused when it shouldn't have": "Odbijen kada nije trebao biti",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "Poništi upload direktorij",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Automatsko kopiranje odgovora u međuspremnik",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Pretraga",
 	"Search a model": "Pretraži model",
+	"Search Base": "",
 	"Search Chats": "Pretraži razgovore",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "Pretražite modele",
+	"Search options": "",
 	"Search Prompts": "Pretraga prompta",
 	"Search Query Generation Prompt": "Upit za generiranje upita za pretraživanje",
 	"Search Result Count": "Broj rezultata pretraživanja",
 	"Search Tools": "Alati za pretraživanje",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Pretraženo {{count}} sites_one",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Postavi korake",
 	"Set Task Model": "Postavite model zadatka",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Postavi glas",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Postavke",
 	"Settings saved successfully!": "Postavke su uspješno spremljene!",
 	"Share": "Podijeli",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "Prikazana kreativnost",
 	"Sign in": "Prijava",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Odjava",
 	"Sign up": "Registracija",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -726,6 +772,7 @@
 	"System Prompt": "Sistemski prompt",
 	"Tags": "Oznake",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "Recite nam više:",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "Stroj za pretvorbu teksta u govor",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Hvala na povratnim informacijama!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Ocjena treba biti vrijednost između 0,0 (0%) i 1,0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "Razmišljam",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ovo osigurava da su vaši vrijedni razgovori sigurno spremljeni u bazu podataka. Hvala vam!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ovo je eksperimentalna značajka, možda neće funkcionirati prema očekivanjima i podložna je promjenama u bilo kojem trenutku.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "Automatsko generiranje naslova",
 	"Title cannot be an empty string.": "Naslov ne može biti prazni niz.",
 	"Title Generation Prompt": "Prompt za generiranje naslova",
+	"TLS": "",
 	"To access the available model names for downloading,": "Za pristup dostupnim nazivima modela za preuzimanje,",
 	"To access the GGUF models available for downloading,": "Za pristup GGUF modelima dostupnim za preuzimanje,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Za pristup WebUI-u obratite se administratoru. Administratori mogu upravljati statusima korisnika s Admin panela.",
@@ -829,6 +884,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "Korisnička dopuštenja",
+	"Username": "",
 	"Users": "Korisnici",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Iskoristi",
@@ -853,17 +909,20 @@
 	"Webhook URL": "URL webkuke",
 	"WebUI Settings": "WebUI postavke",
 	"WebUI will make requests to": "WebUI će slati zahtjeve na",
-	"What’s New in": "Što je novo u",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Što je novo u",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (lokalno)",
 	"Widescreen Mode": "Mod širokog zaslona",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Radna ploča",
 	"Write a prompt suggestion (e.g. Who are you?)": "Napišite prijedlog prompta (npr. Tko si ti?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Napišite sažetak u 50 riječi koji sažima [temu ili ključnu riječ].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Jučer",
 	"You": "Vi",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -878,4 +937,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "YouTube postavke učitavanja"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Hang megszakítás engedélyezése hívás közben",
 	"alphanumeric characters and hyphens": "alfanumerikus karakterek és kötőjelek",
 	"Already have an account?": "Már van fiókod?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "egy asszisztens",
 	"and": "és",
 	"and {{COUNT}} more": "és még {{COUNT}} db",
@@ -59,6 +60,8 @@
 	"API Key": "API kulcs",
 	"API Key created.": "API kulcs létrehozva.",
 	"API keys": "API kulcsok",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Április",
 	"Archive": "Archiválás",
 	"Archive All Chats": "Minden beszélgetés archiválása",
@@ -71,8 +74,12 @@
 	"Assistant": "Asszisztens",
 	"Attach file": "Fájl csatolása",
 	"Attention to detail": "Részletekre való odafigyelés",
+	"Attribute for Username": "",
 	"Audio": "Hang",
 	"August": "Augusztus",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Válasz automatikus másolása a vágólapra",
 	"Auto-playback response": "Automatikus válasz lejátszás",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api hitelesítési karakterlánc",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "Mégse",
 	"Capabilities": "Képességek",
+	"Certificate Path": "",
 	"Change Password": "Jelszó módosítása",
 	"Character": "Karakter",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Darab átfedés",
 	"Chunk Params": "Darab paraméterek",
 	"Chunk Size": "Darab méret",
+	"Ciphers": "",
 	"Citation": "Idézet",
 	"Clear memory": "Memória törlése",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Kattints ide segítségért.",
 	"Click here to": "Kattints ide",
 	"Click here to download user import template file.": "Kattints ide a felhasználó importálási sablon letöltéséhez.",
@@ -153,8 +163,11 @@
 	"Context Length": "Kontextus hossz",
 	"Continue Response": "Válasz folytatása",
 	"Continue with {{provider}}": "Folytatás {{provider}} szolgáltatóval",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Szabályozd, hogyan legyen felosztva az üzenet szövege a TTS kérésekhez. A 'Központozás' mondatokra bontja, a 'Bekezdések' bekezdésekre bontja, a 'Nincs' pedig egyetlen szövegként kezeli az üzenetet.",
 	"Controls": "Vezérlők",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Másolva",
 	"Copied shared chat URL to clipboard!": "Megosztott beszélgetés URL másolva a vágólapra!",
 	"Copied to clipboard": "Vágólapra másolva",
@@ -164,6 +177,7 @@
 	"Copy Link": "Link másolása",
 	"Copy to clipboard": "Másolás a vágólapra",
 	"Copying to clipboard was successful!": "Sikeres másolás a vágólapra!",
+	"Create a knowledge base": "",
 	"Create a model": "Modell létrehozása",
 	"Create Account": "Fiók létrehozása",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Létrehozva",
 	"Created At": "Létrehozva",
 	"Created by": "Létrehozta",
-	"Create a knowledge base": "",
 	"CSV Import": "CSV importálás",
 	"Current Model": "Jelenlegi modell",
 	"Current Password": "Jelenlegi jelszó",
@@ -189,6 +202,8 @@
 	"Default Model": "Alapértelmezett modell",
 	"Default model updated": "Alapértelmezett modell frissítve",
 	"Default Prompt Suggestions": "Alapértelmezett prompt javaslatok",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Alapértelmezett felhasználói szerep",
 	"Delete": "Törlés",
 	"Delete a model": "Modell törlése",
@@ -204,8 +219,8 @@
 	"Delete User": "Felhasználó törlése",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} törölve",
 	"Deleted {{name}}": "{{name}} törölve",
-	"Description": "Leírás",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Leírás",
 	"Didn't fully follow instructions": "Nem követte teljesen az utasításokat",
 	"Disabled": "Letiltva",
 	"Discover a function": "Funkció felfedezése",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Beágyazási modell motor",
 	"Embedding model set to \"{{embedding_model}}\"": "Beágyazási modell beállítva: \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Közösségi megosztás engedélyezése",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Üzenet értékelés engedélyezése",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Új regisztrációk engedélyezése",
 	"Enable Web Search": "Webes keresés engedélyezése",
 	"Enable Web Search Query Generation": "Webes keresési lekérdezés generálás engedélyezése",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Írd ide a {{role}} üzenetet",
 	"Enter a detail about yourself for your LLMs to recall": "Adj meg egy részletet magadról, amit az LLM-ek megjegyezhetnek",
 	"Enter api auth string (e.g. username:password)": "Add meg az API hitelesítési karakterláncot (pl. felhasználónév:jelszó)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Add meg a Brave Search API kulcsot",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Add meg a CFG skálát (pl. 7.0)",
 	"Enter Chunk Overlap": "Add meg a darab átfedést",
 	"Enter Chunk Size": "Add meg a darab méretet",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Add meg a SearchApi API kulcsot",
 	"Enter SearchApi Engine": "Add meg a SearchApi motort",
 	"Enter Searxng Query URL": "Add meg a Searxng lekérdezési URL-t",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Add meg a Serper API kulcsot",
 	"Enter Serply API Key": "Add meg a Serply API kulcsot",
 	"Enter Serpstack API Key": "Add meg a Serpstack API kulcsot",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Add meg a leállítási szekvenciát",
 	"Enter system prompt": "Add meg a rendszer promptot",
 	"Enter Tavily API Key": "Add meg a Tavily API kulcsot",
@@ -297,9 +322,14 @@
 	"Enter your message": "Írd be az üzeneted",
 	"Enter Your Password": "Add meg a jelszavad",
 	"Enter Your Role": "Add meg a szereped",
+	"Enter Your Username": "",
 	"Error": "Hiba",
 	"ERROR": "HIBA",
 	"Evaluations": "Értékelések",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "Kizárás",
 	"Experimental": "Kísérleti",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "Segíts nekünk a legjobb közösségi ranglista létrehozásában a visszajelzési előzményeid megosztásával!",
 	"Hide": "Elrejtés",
 	"Hide Model": "Modell elrejtése",
+	"Host": "",
 	"How can I help you today?": "Hogyan segíthetek ma?",
 	"Hybrid Search": "Hibrid keresés",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Elismerem, hogy elolvastam és megértem a cselekedetem következményeit. Tisztában vagyok a tetszőleges kód végrehajtásával járó kockázatokkal, és ellenőriztem a forrás megbízhatóságát.",
@@ -396,6 +427,7 @@
 	"Include": "Tartalmaz",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Add hozzá a `--api-auth` kapcsolót a stable-diffusion-webui futtatásakor",
 	"Include `--api` flag when running stable-diffusion-webui": "Add hozzá a `--api` kapcsolót a stable-diffusion-webui futtatásakor",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Információ",
 	"Input commands": "Beviteli parancsok",
 	"Install from Github URL": "Telepítés Github URL-ről",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Tudásbázis sikeresen törölve.",
 	"Knowledge reset successfully.": "Tudásbázis sikeresen visszaállítva.",
 	"Knowledge updated successfully": "Tudásbázis sikeresen frissítve",
+	"Label": "",
 	"Landing Page Mode": "Kezdőlap mód",
 	"Language": "Nyelv",
 	"Last Active": "Utoljára aktív",
 	"Last Modified": "Utoljára módosítva",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "Ranglista",
 	"Leave empty for unlimited": "Hagyja üresen a korlátlan használathoz",
 	"Leave empty to include all models or select specific models": "Hagyja üresen az összes modell használatához, vagy válasszon ki konkrét modelleket",
@@ -488,8 +523,8 @@
 	"More": "Több",
 	"Move to Top": "Mozgatás felülre",
 	"Name": "Név",
-	"Name your model": "Nevezze el a modelljét",
 	"Name your knowledge base": "",
+	"Name your model": "Nevezze el a modelljét",
 	"New Chat": "Új beszélgetés",
 	"New folder": "Új mappa",
 	"New Password": "Új jelszó",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "Kérjük, adjon meg egy promptot",
 	"Please fill in all fields.": "Kérjük, töltse ki az összes mezőt.",
 	"Please select a reason": "Kérjük, válasszon egy okot",
+	"Port": "",
 	"Positive attitude": "Pozitív hozzáállás",
 	"Previous 30 days": "Előző 30 nap",
 	"Previous 7 days": "Előző 7 nap",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Felolvasás",
 	"Record voice": "Hang rögzítése",
 	"Redirecting you to OpenWebUI Community": "Átirányítás az OpenWebUI közösséghez",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Hivatkozzon magára \"Felhasználó\"-ként (pl. \"A Felhasználó spanyolul tanul\")",
 	"References from": "Hivatkozások innen",
 	"Refused when it shouldn't have": "Elutasítva, amikor nem kellett volna",
@@ -606,7 +643,6 @@
 	"Reset": "Visszaállítás",
 	"Reset Upload Directory": "Feltöltési könyvtár visszaállítása",
 	"Reset Vector Storage/Knowledge": "Vektor tárhely/tudásbázis visszaállítása",
-	"Auto-Copy Response to Clipboard": "Válasz automatikus másolása a vágólapra",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "A válasz értesítések nem aktiválhatók, mert a weboldal engedélyei meg lettek tagadva. Kérjük, látogasson el a böngésző beállításaihoz a szükséges hozzáférés megadásához.",
 	"Response splitting": "Válasz felosztás",
 	"Result": "Eredmény",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Görgetés az aljára ágak közötti váltáskor",
 	"Search": "Keresés",
 	"Search a model": "Modell keresése",
+	"Search Base": "",
 	"Search Chats": "Beszélgetések keresése",
 	"Search Collection": "Gyűjtemény keresése",
+	"Search Filters": "",
 	"search for tags": "címkék keresése",
 	"Search Functions": "Funkciók keresése",
 	"Search Knowledge": "Tudásbázis keresése",
 	"Search Models": "Modellek keresése",
+	"Search options": "",
 	"Search Prompts": "Promptok keresése",
 	"Search Query Generation Prompt": "Keresési lekérdezés generálási prompt",
 	"Search Result Count": "Keresési találatok száma",
 	"Search Tools": "Eszközök keresése",
-	"Search options": "",
 	"SearchApi API Key": "SearchApi API kulcs",
 	"SearchApi Engine": "SearchApi motor",
 	"Searched {{count}} sites_one": "{{count}} oldal keresve",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "Ütemező beállítása",
 	"Set Steps": "Lépések beállítása",
 	"Set Task Model": "Feladat modell beállítása",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Hang beállítása",
 	"Set whisper model": "Whisper modell beállítása",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Beállítások",
 	"Settings saved successfully!": "Beállítások sikeresen mentve!",
 	"Share": "Megosztás",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Kreativitás bemutatva",
 	"Sign in": "Bejelentkezés",
 	"Sign in to {{WEBUI_NAME}}": "Bejelentkezés ide: {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Kijelentkezés",
 	"Sign up": "Regisztráció",
 	"Sign up to {{WEBUI_NAME}}": "Regisztráció ide: {{WEBUI_NAME}}",
@@ -725,6 +771,7 @@
 	"System Prompt": "Rendszer prompt",
 	"Tags": "Címkék",
 	"Tags Generation Prompt": "Címke generálási prompt",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Koppintson a megszakításhoz",
 	"Tavily API Key": "Tavily API kulcs",
 	"Tell us more:": "Mondjon többet:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Szöveg-beszéd motor",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Köszönjük a visszajelzést!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "A bővítmény fejlesztői lelkes önkéntesek a közösségből. Ha hasznosnak találja ezt a bővítményt, kérjük, fontolja meg a fejlesztéséhez való hozzájárulást.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Az értékelési ranglista az Elo értékelési rendszeren alapul és valós időben frissül.",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "A ranglista jelenleg béta verzióban van, és az algoritmus finomítása során módosíthatjuk az értékelési számításokat.",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "A maximális fájlméret MB-ban. Ha a fájlméret meghaladja ezt a limitet, a fájl nem lesz feltöltve.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "A chatben egyszerre használható fájlok maximális száma. Ha a fájlok száma meghaladja ezt a limitet, a fájlok nem lesznek feltöltve.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontszámnak 0,0 (0%) és 1,0 (100%) közötti értéknek kell lennie.",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Téma",
 	"Thinking...": "Gondolkodik...",
 	"This action cannot be undone. Do you wish to continue?": "Ez a művelet nem vonható vissza. Szeretné folytatni?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ez biztosítja, hogy értékes beszélgetései biztonságosan mentésre kerüljenek a backend adatbázisban. Köszönjük!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ez egy kísérleti funkció, lehet, hogy nem a várt módon működik és bármikor változhat.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Ez az opció törli az összes meglévő fájlt a gyűjteményben és lecseréli őket az újonnan feltöltött fájlokkal.",
 	"This response was generated by \"{{model}}\"": "Ezt a választ a \"{{model}}\" generálta",
 	"This will delete": "Ez törölni fogja",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Cím automatikus generálása",
 	"Title cannot be an empty string.": "A cím nem lehet üres karakterlánc.",
 	"Title Generation Prompt": "Cím generálási prompt",
+	"TLS": "",
 	"To access the available model names for downloading,": "A letölthető modellek nevének eléréséhez,",
 	"To access the GGUF models available for downloading,": "A letölthető GGUF modellek eléréséhez,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "A WebUI eléréséhez kérjük, forduljon az adminisztrátorhoz. Az adminisztrátorok az Admin Panelen keresztül kezelhetik a felhasználói státuszokat.",
@@ -828,6 +883,7 @@
 	"User": "Felhasználó",
 	"User location successfully retrieved.": "Felhasználó helye sikeresen lekérve.",
 	"User Permissions": "Felhasználói jogosultságok",
+	"Username": "",
 	"Users": "Felhasználók",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Az alapértelmezett aréna modell használata az összes modellel. Kattintson a plusz gombra egyéni modellek hozzáadásához.",
 	"Utilize": "Használat",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "WebUI beállítások",
 	"WebUI will make requests to": "A WebUI kéréseket fog küldeni ide:",
-	"What’s New in": "",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (helyi)",
 	"Widescreen Mode": "Szélesvásznú mód",
 	"Won": "Nyert",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Munkaterület",
 	"Write a prompt suggestion (e.g. Who are you?)": "Írjon egy prompt javaslatot (pl. Ki vagy te?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Írjon egy 50 szavas összefoglalót a [téma vagy kulcsszó]-ról.",
 	"Write something...": "Írjon valamit...",
+	"Write your model template content here": "",
 	"Yesterday": "Tegnap",
 	"You": "Ön",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Egyszerre maximum {{maxCount}} fájllal tud csevegni.",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "A teljes hozzájárulása közvetlenül a bővítmény fejlesztőjéhez kerül; az Open WebUI nem vesz le százalékot. Azonban a választott támogatási platformnak lehetnek saját díjai.",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "YouTube betöltő beállítások"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Izinkan Gangguan Suara dalam Panggilan",
 	"alphanumeric characters and hyphens": "karakter alfanumerik dan tanda hubung",
 	"Already have an account?": "Sudah memiliki akun?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "asisten",
 	"and": "dan",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "Kunci API",
 	"API Key created.": "Kunci API dibuat.",
 	"API keys": "Kunci API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "April",
 	"Archive": "Arsipkan",
 	"Archive All Chats": "Arsipkan Semua Obrolan",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Lampirkan file",
 	"Attention to detail": "Perhatian terhadap detail",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "Agustus",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Tanggapan Salin Otomatis ke Papan Klip",
 	"Auto-playback response": "Respons pemutaran otomatis",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "Batal",
 	"Capabilities": "Kemampuan",
+	"Certificate Path": "",
 	"Change Password": "Ubah Kata Sandi",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Tumpang Tindih Potongan",
 	"Chunk Params": "Parameter Potongan",
 	"Chunk Size": "Ukuran Potongan",
+	"Ciphers": "",
 	"Citation": "Kutipan",
 	"Clear memory": "Menghapus memori",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Klik di sini untuk bantuan.",
 	"Click here to": "Klik di sini untuk",
 	"Click here to download user import template file.": "Klik di sini untuk mengunduh file templat impor pengguna.",
@@ -153,8 +163,11 @@
 	"Context Length": "Panjang Konteks",
 	"Continue Response": "Lanjutkan Tanggapan",
 	"Continue with {{provider}}": "Lanjutkan dengan {{penyedia}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "Menyalin URL obrolan bersama ke papan klip!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Salin Tautan",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Penyalinan ke papan klip berhasil!",
+	"Create a knowledge base": "",
 	"Create a model": "Buat model",
 	"Create Account": "Buat Akun",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Dibuat di",
 	"Created At": "Dibuat di",
 	"Created by": "Dibuat oleh",
-	"Create a knowledge base": "",
 	"CSV Import": "Impor CSV",
 	"Current Model": "Model Saat Ini",
 	"Current Password": "Kata Sandi Saat Ini",
@@ -189,6 +202,8 @@
 	"Default Model": "Model Default",
 	"Default model updated": "Model default diperbarui",
 	"Default Prompt Suggestions": "Saran Permintaan Default",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Peran Pengguna Default",
 	"Delete": "Menghapus",
 	"Delete a model": "Menghapus model",
@@ -204,8 +219,8 @@
 	"Delete User": "Menghapus Pengguna",
 	"Deleted {{deleteModelTag}}": "Menghapus {{deleteModelTag}}",
 	"Deleted {{name}}": "Menghapus {{name}}",
-	"Description": "Deskripsi",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Deskripsi",
 	"Didn't fully follow instructions": "Tidak sepenuhnya mengikuti instruksi",
 	"Disabled": "",
 	"Discover a function": "Menemukan sebuah fungsi",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Mesin Model Penyematan",
 	"Embedding model set to \"{{embedding_model}}\"": "Model penyematan diatur ke \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Aktifkan Berbagi Komunitas",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktifkan Pendaftaran Baru",
 	"Enable Web Search": "Aktifkan Pencarian Web",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Masukkan pesan {{role}} di sini",
 	"Enter a detail about yourself for your LLMs to recall": "Masukkan detail tentang diri Anda untuk diingat oleh LLM Anda",
 	"Enter api auth string (e.g. username:password)": "Masukkan string pengesahan API (misalnya nama pengguna: kata sandi)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Masukkan Kunci API Pencarian Berani",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Masukkan Tumpang Tindih Chunk",
 	"Enter Chunk Size": "Masukkan Ukuran Potongan",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Masukkan URL Kueri Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Masukkan Kunci API Serper",
 	"Enter Serply API Key": "Masukkan Kunci API Serply",
 	"Enter Serpstack API Key": "Masukkan Kunci API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Masukkan urutan berhenti",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "Masukkan Kunci API Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Masukkan Kata Sandi Anda",
 	"Enter Your Role": "Masukkan Peran Anda",
+	"Enter Your Username": "",
 	"Error": "Kesalahan",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Percobaan",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Sembunyikan",
 	"Hide Model": "Sembunyikan Model",
+	"Host": "",
 	"How can I help you today?": "Ada yang bisa saya bantu hari ini?",
 	"Hybrid Search": "Pencarian Hibrida",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Sertakan bendera `--api-auth` saat menjalankan stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Sertakan bendera `--api` saat menjalankan stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Info",
 	"Input commands": "Perintah masukan",
 	"Install from Github URL": "Instal dari URL Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Bahasa",
 	"Last Active": "Terakhir Aktif",
 	"Last Modified": "Terakhir Dimodifikasi",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Lainnya",
 	"Move to Top": "",
 	"Name": "Nama",
-	"Name your model": "Beri nama model Anda",
 	"Name your knowledge base": "",
+	"Name your model": "Beri nama model Anda",
 	"New Chat": "Obrolan Baru",
 	"New folder": "",
 	"New Password": "Kata Sandi Baru",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Sikap positif",
 	"Previous 30 days": "30 hari sebelumnya",
 	"Previous 7 days": "7 hari sebelumnya",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Baca dengan Keras",
 	"Record voice": "Rekam suara",
 	"Redirecting you to OpenWebUI Community": "Mengarahkan Anda ke Komunitas OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Merujuk diri Anda sebagai \"Pengguna\" (misalnya, \"Pengguna sedang belajar bahasa Spanyol\")",
 	"References from": "",
 	"Refused when it shouldn't have": "Menolak ketika seharusnya tidak",
@@ -606,7 +643,6 @@
 	"Reset": "Atur Ulang",
 	"Reset Upload Directory": "Setel Ulang Direktori Unggahan",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Tanggapan Salin Otomatis ke Papan Klip",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notifikasi respons tidak dapat diaktifkan karena izin situs web telah ditolak. Silakan kunjungi pengaturan browser Anda untuk memberikan akses yang diperlukan.",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Cari",
 	"Search a model": "Mencari model",
+	"Search Base": "",
 	"Search Chats": "Cari Obrolan",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Fungsi Pencarian",
 	"Search Knowledge": "",
 	"Search Models": "Cari Model",
+	"Search options": "",
 	"Search Prompts": "Perintah Pencarian",
 	"Search Query Generation Prompt": "Permintaan Pembuatan Kueri Pencarian",
 	"Search Result Count": "Jumlah Hasil Pencarian",
 	"Search Tools": "Alat Pencarian",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Mencari {{count}} situs_satu",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Tetapkan Langkah",
 	"Set Task Model": "Tetapkan Model Tugas",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Mengatur Suara",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Pengaturan",
 	"Settings saved successfully!": "Pengaturan berhasil disimpan!",
 	"Share": "Berbagi",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Menampilkan kreativitas",
 	"Sign in": "Masuk",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Keluar",
 	"Sign up": "Daftar",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "Permintaan Sistem",
 	"Tags": "Tag",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Ketuk untuk menyela",
 	"Tavily API Key": "Kunci API Tavily",
 	"Tell us more:": "Beri tahu kami lebih lanjut:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Mesin Teks-ke-Suara",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Terima kasih atas umpan balik Anda!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Nilai yang diberikan haruslah nilai antara 0,0 (0%) dan 1,0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "Berpikir",
 	"This action cannot be undone. Do you wish to continue?": "Tindakan ini tidak dapat dibatalkan. Apakah Anda ingin melanjutkan?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ini akan memastikan bahwa percakapan Anda yang berharga disimpan dengan aman ke basis data backend. Terima kasih!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Ini adalah fitur eksperimental, mungkin tidak berfungsi seperti yang diharapkan dan dapat berubah sewaktu-waktu.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Ini akan menghapus",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Pembuatan Judul Secara Otomatis",
 	"Title cannot be an empty string.": "Judul tidak boleh berupa string kosong.",
 	"Title Generation Prompt": "Perintah Pembuatan Judul",
+	"TLS": "",
 	"To access the available model names for downloading,": "Untuk mengakses nama model yang tersedia untuk diunduh,",
 	"To access the GGUF models available for downloading,": "Untuk mengakses model GGUF yang tersedia untuk diunduh,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Untuk mengakses WebUI, hubungi administrator. Admin dapat mengelola status pengguna dari Panel Admin.",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "Lokasi pengguna berhasil diambil.",
 	"User Permissions": "Izin Pengguna",
+	"Username": "",
 	"Users": "Pengguna",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Memanfaatkan",
@@ -852,17 +908,20 @@
 	"Webhook URL": "URL pengait web",
 	"WebUI Settings": "Pengaturan WebUI",
 	"WebUI will make requests to": "WebUI akan membuat permintaan ke",
-	"What’s New in": "Apa yang Baru di",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Apa yang Baru di",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Bisikan (Lokal)",
 	"Widescreen Mode": "Mode Layar Lebar",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Ruang Kerja",
 	"Write a prompt suggestion (e.g. Who are you?)": "Menulis saran cepat (misalnya Siapa kamu?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Tulis ringkasan dalam 50 kata yang merangkum [topik atau kata kunci].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Kemarin",
 	"You": "Anda",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Pengaturan Pemuat Youtube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Ceadaigh Briseadh Guth i nGlao",
 	"alphanumeric characters and hyphens": "carachtair alfauméireacha agus idirlíochtaí",
 	"Already have an account?": "Tá cuntas agat cheana féin?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "cúntóir",
 	"and": "agus",
 	"and {{COUNT}} more": "agus {{COUNT}} eile",
@@ -59,6 +60,8 @@
 	"API Key": "Eochair API",
 	"API Key created.": "Cruthaíodh Eochair API.",
 	"API keys": "Eochracha API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Aibreán",
 	"Archive": "Cartlann",
 	"Archive All Chats": "Cartlann Gach Comhrá",
@@ -71,8 +74,12 @@
 	"Assistant": "Cúntóir",
 	"Attach file": "Ceangail comhad",
 	"Attention to detail": "Aird ar mhionsonraí",
+	"Attribute for Username": "",
 	"Audio": "Fuaim",
 	"August": "Lúnasa",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Freagra AutoCopy go Gearrthaisce",
 	"Auto-playback response": "Freagra uathsheinm",
 	"Automatic1111": "Uathoibríoch1111",
 	"AUTOMATIC1111 Api Auth String": "UATHOMATIC1111 Api Auth Teaghrán",
@@ -98,6 +105,7 @@
 	"Camera": "Ceamara",
 	"Cancel": "Cealaigh",
 	"Capabilities": "Cumais",
+	"Certificate Path": "",
 	"Change Password": "Athraigh Pasfhocal",
 	"Character": "Carachtar",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Forluí smután",
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Méid an Píosa",
+	"Ciphers": "",
 	"Citation": "Lua",
 	"Clear memory": "Cuimhne ghlan",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Cliceáil anseo le haghaidh cabhair.",
 	"Click here to": "Cliceáil anseo chun",
 	"Click here to download user import template file.": "Cliceáil anseo chun an comhad iompórtála úsáideora a íoslódáil.",
@@ -153,8 +163,11 @@
 	"Context Length": "Fad Comhthéacs",
 	"Continue Response": "Leanúint ar aghaidh",
 	"Continue with {{provider}}": "Lean ar aghaidh le {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Rialú conas a roinntear téacs teachtaireachta d'iarratais TTS. Roinneann 'poncaíocht' ina abairtí, scoilteann 'míreanna' i míreanna, agus coinníonn 'aon' an teachtaireacht mar shreang amháin.",
 	"Controls": "Rialuithe",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Cóipeáladh",
 	"Copied shared chat URL to clipboard!": "Cóipeáladh URL an chomhrá roinnte chuig an ngearrthaisce!",
 	"Copied to clipboard": "Cóipeáilte go gear",
@@ -164,6 +177,7 @@
 	"Copy Link": "Cóipeáil Nasc",
 	"Copy to clipboard": "Cóipeáil chuig an ngearrthaisce",
 	"Copying to clipboard was successful!": "D'éirigh le cóipeáil chuig an ngearrthaisce!",
+	"Create a knowledge base": "",
 	"Create a model": "Cruthaigh samhail",
 	"Create Account": "Cruthaigh Cuntas",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Cruthaithe ag",
 	"Created At": "Cruthaithe Ag",
 	"Created by": "Cruthaithe ag",
-	"Create a knowledge base": "",
 	"CSV Import": "Iompórtáil CSV",
 	"Current Model": "Samhail Reatha",
 	"Current Password": "Pasfhocal Reatha",
@@ -189,6 +202,8 @@
 	"Default Model": "Samhail Réamhshocraithe",
 	"Default model updated": "An tsamhail réamhshocraithe",
 	"Default Prompt Suggestions": "Moltaí Pras Réamhshocraithe",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Ról Úsáideora Réamhshoc",
 	"Delete": "Scrios",
 	"Delete a model": "Scrios samhail",
@@ -204,8 +219,8 @@
 	"Delete User": "Scrios Úsáideoir",
 	"Deleted {{deleteModelTag}}": "Scriosta {{deleteModelTag}}",
 	"Deleted {{name}}": "Scriosta {{name}}",
-	"Description": "Cur síos",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Cur síos",
 	"Didn't fully follow instructions": "Níor lean sé treoracha go hiomlán",
 	"Disabled": "Díchumasaithe",
 	"Discover a function": "Faigh amach feidhm",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Inneall Múnla Ionchorprú",
 	"Embedding model set to \"{{embedding_model}}\"": "Samhail leabaithe atá socraithe go \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Cumasaigh Comhroinnt Pobail",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Cumasaigh Rátáil Teachtai",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Cumasaigh Clárúcháin Nua",
 	"Enable Web Search": "Cumasaigh Cuardach Gréasáin",
 	"Enable Web Search Query Generation": "Cumasaigh Giniúint Ceist Cuardaigh Gréasáin",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
 	"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",
 	"Enter api auth string (e.g. username:password)": "Cuir isteach sreang auth api (m.sh. ainm úsáideora: pasfhocal)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Cuir isteach Eochair API Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Cuir isteach Scála CFG (m.sh. 7.0)",
 	"Enter Chunk Overlap": "Cuir isteach Chunk Forluí",
 	"Enter Chunk Size": "Cuir isteach Méid an Chunc",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Cuir isteach Eochair API SearchAPI",
 	"Enter SearchApi Engine": "Cuir isteach Inneall SearchAPI",
 	"Enter Searxng Query URL": "Cuir isteach URL Ceist Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Cuir isteach Eochair API Serper",
 	"Enter Serply API Key": "Cuir isteach Eochair API Serply",
 	"Enter Serpstack API Key": "Cuir isteach Eochair API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Cuir isteach seicheamh stad",
 	"Enter system prompt": "Cuir isteach an chóras pras",
 	"Enter Tavily API Key": "Cuir isteach eochair API Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "Cuir isteach do theachtaireacht",
 	"Enter Your Password": "Cuir isteach do phasfhocal",
 	"Enter Your Role": "Cuir isteach do Ról",
+	"Enter Your Username": "",
 	"Error": "Earráid",
 	"ERROR": "EARRÁID",
 	"Evaluations": "Meastóireachtaí",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "Eisigh",
 	"Experimental": "Turgnamhach",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "Cabhraigh linn an clár ceannairí pobail is fearr a chruthú trí do stair aiseolais a roinnt!",
 	"Hide": "Folaigh",
 	"Hide Model": "Folaigh Múnla",
+	"Host": "",
 	"How can I help you today?": "Conas is féidir liom cabhrú leat inniu?",
 	"Hybrid Search": "Cuardach Hibrideach",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Admhaím gur léigh mé agus tuigim impleachtaí mo ghníomhaíochta. Táim ar an eolas faoi na rioscaí a bhaineann le cód treallach a fhorghníomhú agus tá iontaofacht na foinse fíoraithe agam.",
@@ -396,6 +427,7 @@
 	"Include": "Cuir san áireamh",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Cuir bratach `--api-auth` san áireamh agus webui stable-diffusion-reatha á rith",
 	"Include `--api` flag when running stable-diffusion-webui": "Cuir bratach `--api` san áireamh agus webui cobhsaí-scaipthe á rith",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Eolas",
 	"Input commands": "Orduithe ionchuir",
 	"Install from Github URL": "Suiteáil ó Github URL",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "D'éirigh leis an eolas a scriosadh.",
 	"Knowledge reset successfully.": "D'éirigh le hathshocrú eolais.",
 	"Knowledge updated successfully": "D'éirigh leis an eolas a nuashonrú",
+	"Label": "",
 	"Landing Page Mode": "Mód Leathanach Tuirlingthe",
 	"Language": "Teanga",
 	"Last Active": "Gníomhach Deiridh",
 	"Last Modified": "Athraithe Deiridh",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "An Clár Ceannairí",
 	"Leave empty for unlimited": "Fág folamh le haghaidh neamhtheoranta",
 	"Leave empty to include all models or select specific models": "Fág folamh chun gach múnla a chur san áireamh nó roghnaigh múnlaí sonracha",
@@ -488,8 +523,8 @@
 	"More": "Tuilleadh",
 	"Move to Top": "Bogadh go dtí an Barr",
 	"Name": "Ainm",
-	"Name your model": "Ainmnigh do mhúnla",
 	"Name your knowledge base": "",
+	"Name your model": "Ainmnigh do mhúnla",
 	"New Chat": "Comhrá Nua",
 	"New folder": "Fillteán nua",
 	"New Password": "Pasfhocal Nua",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "Cuir isteach leid",
 	"Please fill in all fields.": "Líon isteach gach réimse le do thoil.",
 	"Please select a reason": "Roghnaigh cúis le do thoil",
+	"Port": "",
 	"Positive attitude": "Dearcadh dearfach",
 	"Previous 30 days": "30 lá roimhe seo",
 	"Previous 7 days": "7 lá roimhe seo",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Léigh Ard",
 	"Record voice": "Taifead guth",
 	"Redirecting you to OpenWebUI Community": "Tú a atreorú chuig OpenWebUI Community",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Tagairt duit féin mar \"Úsáideoir\" (m.sh., \"Tá an úsáideoir ag foghlaim Spáinnis\")",
 	"References from": "Tagairtí ó",
 	"Refused when it shouldn't have": "Diúltaíodh nuair nár chóir dó",
@@ -606,7 +643,6 @@
 	"Reset": "Athshocraigh",
 	"Reset Upload Directory": "Athshocraigh Eolaire Uas",
 	"Reset Vector Storage/Knowledge": "Athshocraigh Stóráil/Eolas Veicteoir",
-	"Auto-Copy Response to Clipboard": "Freagra AutoCopy go Gearrthaisce",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Ní féidir fógraí freagartha a ghníomhachtú toisc gur diúltaíodh ceadanna an tsuímh Ghréasáin. Tabhair cuairt ar do shocruithe brabhsálaí chun an rochtain riachtanach a dheonú.",
 	"Response splitting": "Scoilt freagartha",
 	"Result": "Toradh",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Scrollaigh go bun agus tú ag athrú idir brainsí",
 	"Search": "Cuardaigh",
 	"Search a model": "Cuardaigh samhail",
+	"Search Base": "",
 	"Search Chats": "Cuardaigh Comhráite",
 	"Search Collection": "Bailiúchán Cuardaigh",
+	"Search Filters": "",
 	"search for tags": "cuardach le haghaidh clibeanna",
 	"Search Functions": "Feidhmeanna Cuardaigh",
 	"Search Knowledge": "Cuardaigh Eolais",
 	"Search Models": "Múnlaí Cuardaigh",
+	"Search options": "",
 	"Search Prompts": "Leideanna Cuardaigh",
 	"Search Query Generation Prompt": "Pras Giniúint Ceist Cuardaigh",
 	"Search Result Count": "Líon Torthaí Cuardaigh",
 	"Search Tools": "Uirlisí Cuardaigh",
-	"Search options": "",
 	"SearchApi API Key": "Eochair API SearchAPI",
 	"SearchApi Engine": "Inneall SearchAPI",
 	"Searched {{count}} sites_one": "Cuardaigh {{count}} sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "Socraigh Sceidealóir",
 	"Set Steps": "Socraigh Céimeanna",
 	"Set Task Model": "Socraigh Samhail Tasc",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Socraigh Guth",
 	"Set whisper model": "Socraigh múnla cogar",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Socruithe",
 	"Settings saved successfully!": "Socruithe sábhálta go rathúil!",
 	"Share": "Comhroinn",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Cruthaitheacht léirithe",
 	"Sign in": "Sínigh isteach",
 	"Sign in to {{WEBUI_NAME}}": "Sínigh isteach ar {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Sínigh Amach",
 	"Sign up": "Cláraigh",
 	"Sign up to {{WEBUI_NAME}}": "Cláraigh le {{WEBUI_NAME}}",
@@ -725,6 +771,7 @@
 	"System Prompt": "Córas Pras",
 	"Tags": "Clibeanna",
 	"Tags Generation Prompt": "Clibeanna Giniúint Pras",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Tapáil chun cur isteach",
 	"Tavily API Key": "Eochair API Tavily",
 	"Tell us more:": "Inis dúinn níos mó:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Inneall téacs-go-labhra",
 	"Tfs Z": "TFS Z",
 	"Thanks for your feedback!": "Go raibh maith agat as do chuid aiseolas!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Is deonacha paiseanta ón bpobal iad na forbróirí taobh thiar den bhreiseán seo. Má aimsíonn an breiseán seo cabhrach leat, smaoinigh ar rannchuidiú lena fhorbairt.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Tá an clár ceannairí meastóireachta bunaithe ar chóras rátála Elo agus déantar é a nuashonrú i bhfíor-am.",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Tá an clár ceannairí i béite faoi láthair, agus d'fhéadfaimis na ríomhanna rátála a choigeartú de réir mar a dhéanfaimid an t-algartam a bheachtú.",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Uasmhéid an chomhaid i MB. Má sháraíonn méid an chomhaid an teorainn seo, ní uaslódófar an comhad.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "An líon uasta na gcomhaid is féidir a úsáid ag an am céanna i gcomhrá. Má sháraíonn líon na gcomhaid an teorainn seo, ní uaslódófar na comhaid.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Ba chóir go mbeadh an scór ina luach idir 0.0 (0%) agus 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Téama",
 	"Thinking...": "Smaointeoireacht...",
 	"This action cannot be undone. Do you wish to continue?": "Ní féidir an gníomh seo a chur ar ais. Ar mhaith leat leanúint ar aghaidh?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cinntíonn sé seo go sábhálfar do chomhráite luachmhara go daingean i do bhunachar sonraí cúltaca Go raibh maith agat!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Is gné turgnamhach í seo, b'fhéidir nach bhfeidhmeoidh sé mar a bhíothas ag súil leis agus tá sé faoi réir athraithe ag am ar bith.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Scriosfaidh an rogha seo gach comhad atá sa bhailiúchán agus cuirfear comhaid nua-uaslódála ina n-ionad.",
 	"This response was generated by \"{{model}}\"": "Gin an freagra seo ag \"{{model}}\"",
 	"This will delete": "Scriosfaidh sé seo",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Teideal Auto-Generation",
 	"Title cannot be an empty string.": "Ní féidir leis an teideal a bheith ina teaghrán folamh.",
 	"Title Generation Prompt": "Pras Giniúint Teideal",
+	"TLS": "",
 	"To access the available model names for downloading,": "Chun teacht ar na hainmneacha múnla atá ar fáil le híoslódáil,",
 	"To access the GGUF models available for downloading,": "Chun rochtain a fháil ar na múnlaí GGUF atá ar fáil le híoslódáil,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Chun rochtain a fháil ar an WebUI, déan teagmháil leis an riarthóir le do thoil. Is féidir le riarthóirí stádas úsáideora a bhainistiú ón bPainéal Riaracháin.",
@@ -828,6 +883,7 @@
 	"User": "Úsáideoir",
 	"User location successfully retrieved.": "Fuarthas suíomh an úsáideora go rathúil.",
 	"User Permissions": "Ceadanna Úsáideora",
+	"Username": "",
 	"Users": "Úsáideoirí",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Ag baint úsáide as an múnla réimse réamhshocraithe le gach múnlaí. Cliceáil ar an gcnaipe móide chun múnlaí saincheaptha a chur leis.",
 	"Utilize": "Úsáid",
@@ -852,17 +908,20 @@
 	"Webhook URL": "URL Webhook",
 	"WebUI Settings": "Socruithe WebUI",
 	"WebUI will make requests to": "Déanfaidh WebUI iarratais chuig",
-	"What’s New in": "Cad atá Nua i",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Cad atá Nua i",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Áitiúil)",
 	"Widescreen Mode": "Mód Leathanscáileán",
 	"Won": "Bhuaigh",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Spás oibre",
 	"Write a prompt suggestion (e.g. Who are you?)": "Scríobh moladh pras (m.sh. Cé hé tú?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Scríobh achoimre i 50 focal a dhéanann achoimre ar [ábhar nó eochairfhocal].",
 	"Write something...": "Scríobh rud...",
+	"Write your model template content here": "",
 	"Yesterday": "Inné",
 	"You": "Tú",
 	"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.",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Rachaidh do ranníocaíocht iomlán go díreach chuig an bhforbróir breiseán; Ní ghlacann Open WebUI aon chéatadán. Mar sin féin, d'fhéadfadh a tháillí féin a bheith ag an ardán maoinithe roghnaithe.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Socruithe Luchtaire Youtube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "caratteri alfanumerici e trattini",
 	"Already have an account?": "Hai già un account?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "un assistente",
 	"and": "e",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "Chiave API",
 	"API Key created.": "Chiave API creata.",
 	"API keys": "Chiavi API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Aprile",
 	"Archive": "Archivio",
 	"Archive All Chats": "Archivia tutte le chat",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Allega file",
 	"Attention to detail": "Attenzione ai dettagli",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "Agosto",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Copia automatica della risposta negli appunti",
 	"Auto-playback response": "Riproduzione automatica della risposta",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "Annulla",
 	"Capabilities": "Funzionalità",
+	"Certificate Path": "",
 	"Change Password": "Cambia password",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Sovrapposizione chunk",
 	"Chunk Params": "Parametri chunk",
 	"Chunk Size": "Dimensione chunk",
+	"Ciphers": "",
 	"Citation": "Citazione",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Clicca qui per aiuto.",
 	"Click here to": "Clicca qui per",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "Lunghezza contesto",
 	"Continue Response": "Continua risposta",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "URL della chat condivisa copiato negli appunti!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Copia link",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Copia negli appunti riuscita!",
+	"Create a knowledge base": "",
 	"Create a model": "Creare un modello",
 	"Create Account": "Crea account",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Creato il",
 	"Created At": "Creato il",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "Modello corrente",
 	"Current Password": "Password corrente",
@@ -189,6 +202,8 @@
 	"Default Model": "Modello di default",
 	"Default model updated": "Modello predefinito aggiornato",
 	"Default Prompt Suggestions": "Suggerimenti prompt predefiniti",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Ruolo utente predefinito",
 	"Delete": "Elimina",
 	"Delete a model": "Elimina un modello",
@@ -204,8 +219,8 @@
 	"Delete User": "Elimina utente",
 	"Deleted {{deleteModelTag}}": "Eliminato {{deleteModelTag}}",
 	"Deleted {{name}}": "Eliminato {{name}}",
-	"Description": "Descrizione",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Descrizione",
 	"Didn't fully follow instructions": "Non ha seguito completamente le istruzioni",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Motore del modello di embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modello di embedding impostato su \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Abilita la condivisione della community",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Abilita nuove iscrizioni",
 	"Enable Web Search": "Abilita ricerca Web",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui",
 	"Enter a detail about yourself for your LLMs to recall": "Inserisci un dettaglio su di te per che i LLM possano ricordare",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Inserisci la chiave API di Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Inserisci la sovrapposizione chunk",
 	"Enter Chunk Size": "Inserisci la dimensione chunk",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Immettere l'URL della query Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Inserisci la chiave API Serper",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Inserisci la chiave API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Inserisci la sequenza di arresto",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Inserisci la tua password",
 	"Enter Your Role": "Inserisci il tuo ruolo",
+	"Enter Your Username": "",
 	"Error": "Errore",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Sperimentale",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Nascondi",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "Come posso aiutarti oggi?",
 	"Hybrid Search": "Ricerca ibrida",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Includi il flag `--api` quando esegui stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Informazioni",
 	"Input commands": "Comandi di input",
 	"Install from Github URL": "Eseguire l'installazione dall'URL di Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Lingua",
 	"Last Active": "Ultima attività",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Altro",
 	"Move to Top": "",
 	"Name": "Nome",
-	"Name your model": "Assegna un nome al tuo modello",
 	"Name your knowledge base": "",
+	"Name your model": "Assegna un nome al tuo modello",
 	"New Chat": "Nuova chat",
 	"New folder": "",
 	"New Password": "Nuova password",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Attitudine positiva",
 	"Previous 30 days": "Ultimi 30 giorni",
 	"Previous 7 days": "Ultimi 7 giorni",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Leggi ad alta voce",
 	"Record voice": "Registra voce",
 	"Redirecting you to OpenWebUI Community": "Reindirizzamento alla comunità OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "Rifiutato quando non avrebbe dovuto",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Copia automatica della risposta negli appunti",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Cerca",
 	"Search a model": "Cerca un modello",
+	"Search Base": "",
 	"Search Chats": "Cerca nelle chat",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "Cerca modelli",
+	"Search options": "",
 	"Search Prompts": "Cerca prompt",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "Conteggio dei risultati della ricerca",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Ricercato {{count}} sites_one",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Imposta passaggi",
 	"Set Task Model": "Imposta modello di attività",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Imposta voce",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Impostazioni",
 	"Settings saved successfully!": "Impostazioni salvate con successo!",
 	"Share": "Condividi",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "Creatività messa in mostra",
 	"Sign in": "Accedi",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Esci",
 	"Sign up": "Registrati",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -726,6 +772,7 @@
 	"System Prompt": "Prompt di sistema",
 	"Tags": "Tag",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "Raccontaci di più:",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "Motore da testo a voce",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Grazie per il tuo feedback!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Il punteggio dovrebbe essere un valore compreso tra 0.0 (0%) e 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ciò garantisce che le tue preziose conversazioni siano salvate in modo sicuro nel tuo database backend. Grazie!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "Generazione automatica del titolo",
 	"Title cannot be an empty string.": "Il titolo non può essere una stringa vuota.",
 	"Title Generation Prompt": "Prompt di generazione del titolo",
+	"TLS": "",
 	"To access the available model names for downloading,": "Per accedere ai nomi dei modelli disponibili per il download,",
 	"To access the GGUF models available for downloading,": "Per accedere ai modelli GGUF disponibili per il download,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -829,6 +884,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "Autorizzazioni utente",
+	"Username": "",
 	"Users": "Utenti",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Utilizza",
@@ -853,17 +909,20 @@
 	"Webhook URL": "URL webhook",
 	"WebUI Settings": "Impostazioni WebUI",
 	"WebUI will make requests to": "WebUI effettuerà richieste a",
-	"What’s New in": "Novità in",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Novità in",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Area di lavoro",
 	"Write a prompt suggestion (e.g. Who are you?)": "Scrivi un suggerimento per il prompt (ad esempio Chi sei?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Scrivi un riassunto in 50 parole che riassume [argomento o parola chiave].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Ieri",
 	"You": "Tu",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -878,4 +937,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Impostazioni del caricatore Youtube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "通話中に音声の割り込みを許可",
 	"alphanumeric characters and hyphens": "英数字とハイフン",
 	"Already have an account?": "すでにアカウントをお持ちですか?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "アシスタント",
 	"and": "および",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API キー",
 	"API Key created.": "API キーが作成されました。",
 	"API keys": "API キー",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "4月",
 	"Archive": "アーカイブ",
 	"Archive All Chats": "すべてのチャットをアーカイブする",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "ファイルを添付する",
 	"Attention to detail": "詳細に注意する",
+	"Attribute for Username": "",
 	"Audio": "オーディオ",
 	"August": "8月",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "クリップボードへの応答の自動コピー",
 	"Auto-playback response": "応答の自動再生",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111のAuthを入力",
@@ -98,6 +105,7 @@
 	"Camera": "カメラ",
 	"Cancel": "キャンセル",
 	"Capabilities": "資格",
+	"Certificate Path": "",
 	"Change Password": "パスワードを変更",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "チャンクオーバーラップ",
 	"Chunk Params": "チャンクパラメーター",
 	"Chunk Size": "チャンクサイズ",
+	"Ciphers": "",
 	"Citation": "引用文",
 	"Clear memory": "メモリをクリア",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "ヘルプについてはここをクリックしてください。",
 	"Click here to": "ここをクリックして",
 	"Click here to download user import template file.": "ユーザーテンプレートをインポートするにはここをクリックしてください。",
@@ -153,8 +163,11 @@
 	"Context Length": "コンテキストの長さ",
 	"Continue Response": "続きの応答",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "コントロール",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "コピー",
 	"Copied shared chat URL to clipboard!": "共有チャットURLをクリップボードにコピーしました!",
 	"Copied to clipboard": "クリップボードにコピーしました。",
@@ -164,6 +177,7 @@
 	"Copy Link": "リンクをコピー",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "クリップボードへのコピーが成功しました!",
+	"Create a knowledge base": "",
 	"Create a model": "モデルを作成する",
 	"Create Account": "アカウントを作成",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "作成日時",
 	"Created At": "作成日時",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "CSVインポート",
 	"Current Model": "現在のモデル",
 	"Current Password": "現在のパスワード",
@@ -189,6 +202,8 @@
 	"Default Model": "デフォルトモデル",
 	"Default model updated": "デフォルトモデルが更新されました",
 	"Default Prompt Suggestions": "デフォルトのプロンプトの提案",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "デフォルトのユーザー役割",
 	"Delete": "削除",
 	"Delete a model": "モデルを削除",
@@ -204,8 +219,8 @@
 	"Delete User": "ユーザーを削除",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} を削除しました",
 	"Deleted {{name}}": "{{name}}を削除しました",
-	"Description": "説明",
 	"Describe your knowledge base and objectives": "",
+	"Description": "説明",
 	"Didn't fully follow instructions": "説明に沿って操作していませんでした",
 	"Disabled": "無効",
 	"Discover a function": "Functionを探す",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "埋め込みモデルエンジン",
 	"Embedding model set to \"{{embedding_model}}\"": "埋め込みモデルを\"{{embedding_model}}\"に設定しました",
 	"Enable Community Sharing": "コミュニティ共有を有効にする",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "メッセージ評価を有効にする",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "新規登録を有効にする",
 	"Enable Web Search": "ウェブ検索を有効にする",
 	"Enable Web Search Query Generation": "ウェブ検索クエリ生成を有効にする",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "{{role}} メッセージをここに入力してください",
 	"Enter a detail about yourself for your LLMs to recall": "LLM が記憶するために、自分についての詳細を入力してください",
 	"Enter api auth string (e.g. username:password)": "API AuthStringを入力(例: Username:Password)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Brave Search APIキーの入力",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "CFGスケースを入力してください (例: 7.0)",
 	"Enter Chunk Overlap": "チャンクオーバーラップを入力してください",
 	"Enter Chunk Size": "チャンクサイズを入力してください",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "SearchApi API Keyを入力してください。",
 	"Enter SearchApi Engine": "SearchApi Engineを入力してください。",
 	"Enter Searxng Query URL": "SearxngクエリURLを入力",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Serper APIキーの入力",
 	"Enter Serply API Key": "Serply API Keyを入力してください。",
 	"Enter Serpstack API Key": "Serpstack APIキーの入力",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "ストップシーケンスを入力してください",
 	"Enter system prompt": "システムプロンプト入力",
 	"Enter Tavily API Key": "Tavily API Keyを入力してください。",
@@ -297,9 +322,14 @@
 	"Enter your message": "メッセージを入力してください",
 	"Enter Your Password": "パスワードを入力してください",
 	"Enter Your Role": "ロールを入力してください",
+	"Enter Your Username": "",
 	"Error": "エラー",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "実験的",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "非表示",
 	"Hide Model": "モデルを隠す",
+	"Host": "",
 	"How can I help you today?": "今日はどのようにお手伝いしましょうか?",
 	"Hybrid Search": "ブリッジ検索",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webuiを実行する際に`--api`フラグを含める",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "情報",
 	"Input commands": "入力コマンド",
 	"Install from Github URL": "Github URLからインストール",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "知識の削除に成功しました",
 	"Knowledge reset successfully.": "知識のリセットに成功しました",
 	"Knowledge updated successfully": "知識のアップデートに成功しました",
+	"Label": "",
 	"Landing Page Mode": "ランディングページモード",
 	"Language": "言語",
 	"Last Active": "最終アクティブ",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "空欄なら無制限",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "もっと見る",
 	"Move to Top": "",
 	"Name": "名前",
-	"Name your model": "モデルに名前を付ける",
 	"Name your knowledge base": "",
+	"Name your model": "モデルに名前を付ける",
 	"New Chat": "新しいチャット",
 	"New folder": "",
 	"New Password": "新しいパスワード",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "前向きな態度",
 	"Previous 30 days": "前の30日間",
 	"Previous 7 days": "前の7日間",
@@ -589,6 +625,7 @@
 	"Read Aloud": "読み上げ",
 	"Record voice": "音声を録音",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI コミュニティにリダイレクトしています",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "拒否すべきでないのに拒否した",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "アップロードディレクトリをリセット",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "クリップボードへの応答の自動コピー",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "応答の分割",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "ブランチの切り替え時にボタンをスクロールする",
 	"Search": "検索",
 	"Search a model": "モデルを検索",
+	"Search Base": "",
 	"Search Chats": "チャットの検索",
 	"Search Collection": "Collectionの検索",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Functionの検索",
 	"Search Knowledge": "知識の検索",
 	"Search Models": "モデル検索",
+	"Search options": "",
 	"Search Prompts": "プロンプトを検索",
 	"Search Query Generation Prompt": "検索クエリ生成プロンプト",
 	"Search Result Count": "検索結果数",
 	"Search Tools": "ツールの検索",
-	"Search options": "",
 	"SearchApi API Key": "SearchApiのAPIKey",
 	"SearchApi Engine": "SearchApiエンジン",
 	"Searched {{count}} sites_other": "{{count}} sites_other検索",
@@ -682,8 +720,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "ステップを設定",
 	"Set Task Model": "タスクモデルの設定",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "音声を設定",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "設定",
 	"Settings saved successfully!": "設定が正常に保存されました!",
 	"Share": "共有",
@@ -699,6 +744,7 @@
 	"Showcased creativity": "創造性を披露",
 	"Sign in": "サインイン",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "サインアウト",
 	"Sign up": "サインアップ",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -724,6 +770,7 @@
 	"System Prompt": "システムプロンプト",
 	"Tags": "タグ",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "もっと話してください:",
@@ -734,17 +781,24 @@
 	"Text-to-Speech Engine": "テキスト音声変換エンジン",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "ご意見ありがとうございます!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "スコアは0.0(0%)から1.0(100%)の間の値にしてください。",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "テーマ",
 	"Thinking...": "思考中...",
 	"This action cannot be undone. Do you wish to continue?": "このアクションは取り消し不可です。続けますか?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "これは、貴重な会話がバックエンドデータベースに安全に保存されることを保証します。ありがとうございます!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "実験的機能であり正常動作しない場合があります。",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -760,6 +814,7 @@
 	"Title Auto-Generation": "タイトル自動生成",
 	"Title cannot be an empty string.": "タイトルは空文字列にできません。",
 	"Title Generation Prompt": "タイトル生成プロンプト",
+	"TLS": "",
 	"To access the available model names for downloading,": "ダウンロード可能なモデル名にアクセスするには、",
 	"To access the GGUF models available for downloading,": "ダウンロード可能な GGUF モデルにアクセスするには、",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -827,6 +882,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "ユーザー権限",
+	"Username": "",
 	"Users": "ユーザー",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "活用",
@@ -851,17 +907,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "WebUI 設定",
 	"WebUI will make requests to": "WebUI は次に対してリクエストを行います",
-	"What’s New in": "新機能",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "新機能",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "ワイドスクリーンモード",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "ワークスペース",
 	"Write a prompt suggestion (e.g. Who are you?)": "プロンプトの提案を書いてください (例: あなたは誰ですか?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[トピックまたはキーワード] を要約する 50 語の概要を書いてください。",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "昨日",
 	"You": "あなた",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -876,4 +935,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "YouTubeローダー設定(日本語はja)"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "ალფანუმერული სიმბოლოები და დეფისები",
 	"Already have an account?": "უკვე გაქვს ანგარიში?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "ასისტენტი",
 	"and": "და",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API გასაღები",
 	"API Key created.": "API გასაღები შექმნილია.",
 	"API keys": "API გასაღები",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "აპრილი",
 	"Archive": "არქივი",
 	"Archive All Chats": "არქივი ყველა ჩატი",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "ფაილის ჩაწერა",
 	"Attention to detail": "დეტალური მიმართვა",
+	"Attribute for Username": "",
 	"Audio": "ხმოვანი",
 	"August": "აგვისტო",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "პასუხის ავტომატური კოპირება ბუფერში",
 	"Auto-playback response": "ავტომატური დაკვრის პასუხი",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "გაუქმება",
 	"Capabilities": "შესაძლებლობები",
+	"Certificate Path": "",
 	"Change Password": "პაროლის შეცვლა",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "გადახურვა ფრაგმენტულია",
 	"Chunk Params": "გადახურვის პარამეტრები",
 	"Chunk Size": "გადახურვის ზომა",
+	"Ciphers": "",
 	"Citation": "ციტატა",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "დახმარებისთვის, დააკლიკე აქ",
 	"Click here to": "დააკლიკე აქ",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "კონტექსტის სიგრძე",
 	"Continue Response": "პასუხის გაგრძელება",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "ყავს ჩათის URL-ი კლიპბორდში!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "კოპირება",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "კლავიატურაზე კოპირება წარმატებით დასრულდა",
+	"Create a knowledge base": "",
 	"Create a model": "შექმენით მოდელი",
 	"Create Account": "ანგარიშის შექმნა",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "შექმნილია",
 	"Created At": "შექმნილია",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "მიმდინარე მოდელი",
 	"Current Password": "მიმდინარე პაროლი",
@@ -189,6 +202,8 @@
 	"Default Model": "ნაგულისხმები მოდელი",
 	"Default model updated": "დეფოლტ მოდელი განახლებულია",
 	"Default Prompt Suggestions": "დეფოლტ პრომპტი პირველი პირველი",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "მომხმარებლის დეფოლტ როლი",
 	"Delete": "წაშლა",
 	"Delete a model": "მოდელის წაშლა",
@@ -204,8 +219,8 @@
 	"Delete User": "მომხმარებლის წაშლა",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} წაშლილია",
 	"Deleted {{name}}": "Deleted {{name}}",
-	"Description": "აღწერა",
 	"Describe your knowledge base and objectives": "",
+	"Description": "აღწერა",
 	"Didn't fully follow instructions": "ვერ ყველა ინფორმაციისთვის ვერ ხელახლა ჩაწერე",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "ჩასმის ძირითადი პროგრამა",
 	"Embedding model set to \"{{embedding_model}}\"": "ჩასმის ძირითადი პროგრამა ჩართულია \"{{embedding_model}}\"",
 	"Enable Community Sharing": "საზოგადოების გაზიარების ჩართვა",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "ახალი რეგისტრაციების ჩართვა",
 	"Enable Web Search": "ვებ ძიების ჩართვა",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ",
 	"Enter a detail about yourself for your LLMs to recall": "შეიყვანე დეტალი ჩემთათვის, რომ ჩვენი LLMs-ს შეიძლოს აღაქვს",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "შეიყვანეთ Brave Search API გასაღები",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "შეიყვანეთ ნაწილის გადახურვა",
 	"Enter Chunk Size": "შეიყვანე ბლოკის ზომა",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "შეიყვანეთ Searxng Query URL",
+	"Enter Seed": "",
 	"Enter Serper API Key": "შეიყვანეთ Serper API Key",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "შეიყვანეთ Serpstack API Key",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "შეიყვანეთ ტოპ თანმიმდევრობა",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "შეიყვანეთ თქვენი პაროლი",
 	"Enter Your Role": "შეიყვანეთ თქვენი როლი",
+	"Enter Your Username": "",
 	"Error": "შეცდომა",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "ექსპერიმენტალური",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "დამალვა",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "როგორ შემიძლია დაგეხმარო დღეს?",
 	"Hybrid Search": "ჰიბრიდური ძებნა",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "ჩართეთ `--api` დროშა stable-diffusion-webui-ის გაშვებისას",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "ინფორმაცია",
 	"Input commands": "შეყვანით ბრძანებებს",
 	"Install from Github URL": "დააინსტალირეთ Github URL- დან",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "ენა",
 	"Last Active": "ბოლო აქტიური",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "ვრცლად",
 	"Move to Top": "",
 	"Name": "სახელი",
-	"Name your model": "დაასახელეთ თქვენი მოდელი",
 	"Name your knowledge base": "",
+	"Name your model": "დაასახელეთ თქვენი მოდელი",
 	"New Chat": "ახალი მიმოწერა",
 	"New folder": "",
 	"New Password": "ახალი პაროლი",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "პოზიტიური ანგარიში",
 	"Previous 30 days": "უკან 30 დღე",
 	"Previous 7 days": "უკან 7 დღე",
@@ -589,6 +625,7 @@
 	"Read Aloud": "ხმის ჩაწერა",
 	"Record voice": "ხმის ჩაწერა",
 	"Redirecting you to OpenWebUI Community": "გადამისამართდებით OpenWebUI საზოგადოებაში",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "უარა, როგორც უნდა იყოს",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "პასუხის ავტომატური კოპირება ბუფერში",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "ძიება",
 	"Search a model": "მოდელის ძიება",
+	"Search Base": "",
 	"Search Chats": "ჩატების ძებნა",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "საძიებო მოდელები",
+	"Search options": "",
 	"Search Prompts": "მოთხოვნების ძიება",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "ძიების შედეგების რაოდენობა",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Searched {{count}} sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "ნაბიჯების დაყენება",
 	"Set Task Model": "დააყენეთ სამუშაო მოდელი",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "ხმის დაყენება",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "ხელსაწყოები",
 	"Settings saved successfully!": "პარამეტრები წარმატებით განახლდა!",
 	"Share": "გაზიარება",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "ჩვენებული ქონება",
 	"Sign in": "ავტორიზაცია",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "გასვლა",
 	"Sign up": "რეგისტრაცია",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "სისტემური მოთხოვნა",
 	"Tags": "ტეგები",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "ჩვენთან დავუკავშირდით",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "ტექსტურ-ხმოვანი ძრავი",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "მადლობა გამოხმაურებისთვის!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "ქულა 0.0 (0%) და 1.0 (100%) ჩაშენებული უნდა იყოს.",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "თემა",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "ეს უზრუნველყოფს, რომ თქვენი ძვირფასი საუბრები უსაფრთხოდ შეინახება თქვენს backend მონაცემთა ბაზაში. Გმადლობთ!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "სათაურის ავტო-გენერაცია",
 	"Title cannot be an empty string.": "სათაური ცარიელი ველი ვერ უნდა იყოს.",
 	"Title Generation Prompt": "სათაურის გენერაციის მოთხოვნა ",
+	"TLS": "",
 	"To access the available model names for downloading,": "ჩამოტვირთვისთვის ხელმისაწვდომი მოდელების სახელებზე წვდომისთვის",
 	"To access the GGUF models available for downloading,": "ჩასატვირთად ხელმისაწვდომი GGUF მოდელებზე წვდომისთვის",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "მომხმარებლის უფლებები",
+	"Username": "",
 	"Users": "მომხმარებლები",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "გამოყენება",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "WebUI პარამეტრები",
 	"WebUI will make requests to": "WebUI გამოგიგზავნით მოთხოვნებს",
-	"What’s New in": "რა არის ახალი",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "რა არის ახალი",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "ვულერი",
 	"Write a prompt suggestion (e.g. Who are you?)": "დაწერეთ მოკლე წინადადება (მაგ. ვინ ხარ?",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "დაწერეთ რეზიუმე 50 სიტყვით, რომელიც აჯამებს [თემას ან საკვანძო სიტყვას].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "აღდგენა",
 	"You": "ჩემი",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Loader Settings"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "음성 기능에서 음성 방해 허용",
 	"alphanumeric characters and hyphens": "영문자, 숫자, 하이픈",
 	"Already have an account?": "이미 계정이 있으신가요?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "어시스턴트",
 	"and": "그리고",
 	"and {{COUNT}} more": "그리고 {{COUNT}} 더",
@@ -59,6 +60,8 @@
 	"API Key": "API 키",
 	"API Key created.": "API 키가 생성되었습니다.",
 	"API keys": "API 키",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "4월",
 	"Archive": "보관",
 	"Archive All Chats": "모든 채팅 보관",
@@ -71,8 +74,12 @@
 	"Assistant": "어시스턴트",
 	"Attach file": "파일 첨부",
 	"Attention to detail": "세부 사항에 대한 주의",
+	"Attribute for Username": "",
 	"Audio": "오디오",
 	"August": "8월",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "응답을 클립보드에 자동 복사",
 	"Auto-playback response": "응답 자동 재생",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "Automatic1111 API 인증 문자",
@@ -98,6 +105,7 @@
 	"Camera": "카메라",
 	"Cancel": "취소",
 	"Capabilities": "기능",
+	"Certificate Path": "",
 	"Change Password": "비밀번호 변경",
 	"Character": "캐릭터",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chunk 오버랩",
 	"Chunk Params": "Chunk 매개변수",
 	"Chunk Size": "Chunk 크기",
+	"Ciphers": "",
 	"Citation": "인용",
 	"Clear memory": "메모리 초기화",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "도움말을 보려면 여기를 클릭하세요.",
 	"Click here to": "여기를 클릭하면",
 	"Click here to download user import template file.": "사용자 삽입 템플렛 파일을 다운받으려면 여기를 클릭하세요",
@@ -153,8 +163,11 @@
 	"Context Length": "내용 길이",
 	"Continue Response": "대화 계속",
 	"Continue with {{provider}}": "{{provider}}로 계속",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "TTS 요청에 메시지가 어떻게 나뉘어지는지 제어하십시오. '문장 부호'는 문장으로 나뉘고, '문단'은 문단으로 나뉘고, '없음'은 메세지를 하나의 문자열로 인식합니다.",
 	"Controls": "제어",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "복사됨",
 	"Copied shared chat URL to clipboard!": "채팅 공유 URL이 클립보드에 복사되었습니다!",
 	"Copied to clipboard": "클립보드에 복사되었습니다",
@@ -164,6 +177,7 @@
 	"Copy Link": "링크 복사",
 	"Copy to clipboard": "클립보드에 복사",
 	"Copying to clipboard was successful!": "성공적으로 클립보드에 복사되었습니다!",
+	"Create a knowledge base": "",
 	"Create a model": "모델 만들기",
 	"Create Account": "계정 만들기",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "생성일",
 	"Created At": "생성일",
 	"Created by": "생성자",
-	"Create a knowledge base": "",
 	"CSV Import": "CSV 가져오기",
 	"Current Model": "현재 모델",
 	"Current Password": "현재 비밀번호",
@@ -189,6 +202,8 @@
 	"Default Model": "기본 모델",
 	"Default model updated": "기본 모델이 업데이트되었습니다.",
 	"Default Prompt Suggestions": "기본 프롬프트 제안",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "기본 사용자 역할",
 	"Delete": "삭제",
 	"Delete a model": "모델 삭제",
@@ -204,8 +219,8 @@
 	"Delete User": "사용자 삭제",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} 삭제됨",
 	"Deleted {{name}}": "{{name}}을(를) 삭제했습니다.",
-	"Description": "설명",
 	"Describe your knowledge base and objectives": "",
+	"Description": "설명",
 	"Didn't fully follow instructions": "완전히 지침을 따르지 않음",
 	"Disabled": "제한됨",
 	"Discover a function": "함수 검색",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "임베딩 모델 엔진",
 	"Embedding model set to \"{{embedding_model}}\"": "임베딩 모델을 \"{{embedding_model}}\"로 설정함",
 	"Enable Community Sharing": "커뮤니티 공유 활성화",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "메시지 평가 활성화",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "새 회원가입 활성화",
 	"Enable Web Search": "웹 검색 활성화",
 	"Enable Web Search Query Generation": "웹 검색 쿼리 생성 활성화",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "여기에 {{role}} 메시지 입력",
 	"Enter a detail about yourself for your LLMs to recall": "자신에 대한 세부사항을 입력하여 LLM들이 기억할 수 있도록 하세요.",
 	"Enter api auth string (e.g. username:password)": "API 인증 문자 입력 (예: 사용자 이름:비밀번호)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Brave Search API Key 입력",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "CFG Scale 입력 (예: 7.0)",
 	"Enter Chunk Overlap": "청크 오버랩 입력",
 	"Enter Chunk Size": "청크 크기 입력",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "SearchApi API 키 입력",
 	"Enter SearchApi Engine": "SearchApi 엔진 입력",
 	"Enter Searxng Query URL": "Searxng 쿼리 URL 입력",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Serper API 키 입력",
 	"Enter Serply API Key": "Serply API 키 입력",
 	"Enter Serpstack API Key": "Serpstack API 키 입력",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "중지 시퀀스 입력",
 	"Enter system prompt": "시스템 프롬포트 입력",
 	"Enter Tavily API Key": "Tavily API 키 입력",
@@ -297,9 +322,14 @@
 	"Enter your message": "메세지 입력",
 	"Enter Your Password": "비밀번호 입력",
 	"Enter Your Role": "역할 입력",
+	"Enter Your Username": "",
 	"Error": "오류",
 	"ERROR": "오류",
 	"Evaluations": "평가",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "미포함",
 	"Experimental": "실험적",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "당신의 피드백 기록을 공유함으로서 최고의 커뮤니티 리더보드를 만드는데 도와주세요!",
 	"Hide": "숨기기",
 	"Hide Model": "모델 숨기기",
+	"Host": "",
 	"How can I help you today?": "오늘 어떻게 도와드릴까요?",
 	"Hybrid Search": "하이브리드 검색",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "포함",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행 시 `--api-auth` 플래그를 포함하세요",
 	"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행 시 `--api` 플래그를 포함하세요",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "정보",
 	"Input commands": "명령어 입력",
 	"Install from Github URL": "Github URL에서 설치",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "성공적으로 지식 기반이 삭제되었습니다",
 	"Knowledge reset successfully.": "성공적으로 지식 기반이 초기화되었습니다",
 	"Knowledge updated successfully": "성공적으로 지식 기반이 업데이트되었습니다",
+	"Label": "",
 	"Landing Page Mode": "랜딩페이지 모드",
 	"Language": "언어",
 	"Last Active": "최근 활동",
 	"Last Modified": "마지막 수정",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "리더보드",
 	"Leave empty for unlimited": "무제한을 위해 빈칸으로 남겨두세요",
 	"Leave empty to include all models or select specific models": "특정 모델을 선택하거나 모든 모델을 포함하고 싶으면 빈칸으로 남겨두세요",
@@ -488,8 +523,8 @@
 	"More": "더보기",
 	"Move to Top": "맨 위로 이동",
 	"Name": "이름",
-	"Name your model": "모델 이름 지정",
 	"Name your knowledge base": "",
+	"Name your model": "모델 이름 지정",
 	"New Chat": "새 채팅",
 	"New folder": "새 폴더",
 	"New Password": "새 비밀번호",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "프롬포트를 입력해주세요",
 	"Please fill in all fields.": "모두 빈칸없이 채워주세요",
 	"Please select a reason": "이유를 선택하주세요",
+	"Port": "",
 	"Positive attitude": "긍정적인 자세",
 	"Previous 30 days": "이전 30일",
 	"Previous 7 days": "이전 7일",
@@ -589,6 +625,7 @@
 	"Read Aloud": "읽어주기",
 	"Record voice": "음성 녹음",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI 커뮤니티로 리디렉션 중",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "스스로를 \"사용자\" 라고 지칭하세요. (예: \"사용자는 영어를 배우고 있습니다\")",
 	"References from": "출처",
 	"Refused when it shouldn't have": "허용되지 않았지만 허용되어야 합니다.",
@@ -606,7 +643,6 @@
 	"Reset": "초기화",
 	"Reset Upload Directory": "업로드 디렉토리 초기화",
 	"Reset Vector Storage/Knowledge": "벡터 저장 공간/지식 기반 초기화",
-	"Auto-Copy Response to Clipboard": "응답을 클립보드에 자동 복사",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "웹사이트 권환과 같이 응답 알림이 활성화될 수 없습니다. 필요한 접근을 사용하기 위해 브라우져 설정을 확인 부탁드립니다.",
 	"Response splitting": "응답 나누기",
 	"Result": "결과",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "브랜치 간 전환시 밑으로 스크롤 하세요",
 	"Search": "검색",
 	"Search a model": "모델 검색",
+	"Search Base": "",
 	"Search Chats": "채팅 검색",
 	"Search Collection": "컬렉션검색",
+	"Search Filters": "",
 	"search for tags": "태그 검색",
 	"Search Functions": "함수 검색",
 	"Search Knowledge": "지식 기반 검색",
 	"Search Models": "모델 검색",
+	"Search options": "",
 	"Search Prompts": "프롬프트 검색",
 	"Search Query Generation Prompt": "쿼리 생성 프롬프트 검색",
 	"Search Result Count": "검색 결과 수",
 	"Search Tools": "검색 도구",
-	"Search options": "",
 	"SearchApi API Key": "SearchApi API 키",
 	"SearchApi Engine": "SearchApi 엔진",
 	"Searched {{count}} sites_one": "sites_one {{count}} 검색됨",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "스케쥴러 설정",
 	"Set Steps": "단계 설정",
 	"Set Task Model": "작업 모델 설정",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "음성 설정",
 	"Set whisper model": "자막 생성기 모델 설정",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "설정",
 	"Settings saved successfully!": "설정이 성공적으로 저장되었습니다!",
 	"Share": "공유",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "창의성 발휘",
 	"Sign in": "로그인",
 	"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}}로 로그인",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "로그아웃",
 	"Sign up": "가입",
 	"Sign up to {{WEBUI_NAME}}": "{{WEBUI_NAME}}로 가입",
@@ -725,6 +771,7 @@
 	"System Prompt": "시스템 프롬프트",
 	"Tags": "태그",
 	"Tags Generation Prompt": "태그 생성 프롬포트트",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "탭하여 중단",
 	"Tavily API Key": "Tavily API 키",
 	"Tell us more:": "더 알려주세요:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "텍스트-음성 변환 엔진",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "피드백 감사합니다!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "이 플러그인 뒤에 있는 개발자는 커뮤니티에서 활동하는 단순한 열정적인 일반인들입니다. 만약 플러그인이 도움 되었다면, 플러그인 개발에 기여를 고려해주세요!",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "평가 리더보드는 Elo 평가 시스템을 기반으로 하고 실시간으로 업데이트됩니다",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "리더보드는 베타테스트중에 있습니다, 평가 기준이 알고리즘 수정과 함께 변할 수 있습니다",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "최대 파일 크기(MB). 만약 파일 크기가 한도를 초과할 시, 파일은 업로드되지 않습니다",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "하나의 채팅에서는 사용가능한 최대 파일 수가 있습니다. 만약 파일 수가 한도를 초과할 시, 파일은 업로드되지 않습니다.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "점수는 0.0(0%)에서 1.0(100%) 사이의 값이어야 합니다.",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "테마",
 	"Thinking...": "생각 중...",
 	"This action cannot be undone. Do you wish to continue?": "이 액션은 되돌릴 수 없습니다. 계속 하시겠습니까?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "이렇게 하면 소중한 대화 내용이 백엔드 데이터베이스에 안전하게 저장됩니다. 감사합니다!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "이것은 실험적 기능으로, 예상대로 작동하지 않을 수 있으며 언제든지 변경될 수 있습니다.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "이 행동은 컬렉션에 존재하는 모든 파일을 삭제하고 새로 업로드된 파일들로 대체됩니다",
 	"This response was generated by \"{{model}}\"": "\"{{model}}\"이 생성한 응답입니다",
 	"This will delete": "이것은 다음을 삭제합니다.",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "제목 자동 생성",
 	"Title cannot be an empty string.": "제목은 빈 문자열일 수 없습니다.",
 	"Title Generation Prompt": "제목 생성 프롬프트",
+	"TLS": "",
 	"To access the available model names for downloading,": "다운로드 가능한 모델명을 확인하려면,",
 	"To access the GGUF models available for downloading,": "다운로드 가능한 GGUF 모델을 확인하려면,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "WebUI에 접속하려면 관리자에게 문의하십시오. 관리자는 관리자 패널에서 사용자 상태를 관리할 수 있습니다.",
@@ -828,6 +883,7 @@
 	"User": "사용자",
 	"User location successfully retrieved.": "성공적으로 사용자의 위치를 불러왔습니다",
 	"User Permissions": "사용자 권한",
+	"Username": "",
 	"Users": "사용자",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "모든 모델은 기본 아레나 모델을 사용중입니다. 플러스 버튼을 눌러 커스텀 모델을 추가하세요",
 	"Utilize": "활용",
@@ -852,17 +908,20 @@
 	"Webhook URL": "웹훅 URL",
 	"WebUI Settings": "WebUI 설정",
 	"WebUI will make requests to": "WebUI 요청 대상:",
-	"What’s New in": "새로운 기능:",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "새로운 기능:",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (로컬)",
 	"Widescreen Mode": "와이드스크린 모드",
 	"Won": "이김",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "워크스페이스",
 	"Write a prompt suggestion (e.g. Who are you?)": "프롬프트 제안 작성 (예: 당신은 누구인가요?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[주제 또는 키워드]에 대한 50단어 요약문 작성.",
 	"Write something...": "아무거나 쓰세요...",
+	"Write your model template content here": "",
 	"Yesterday": "어제",
 	"You": "당신",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "동시에 최대 {{maxCount}} 파일과만 대화할 수 있습니다 ",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "당신의 모든 기여는 곧바로 플러그인 개발자에게 갑니다; Open WebUI는 일절 가져가지 않습니다 하지만, 선택한 후원 플랫폼은 수수료를 가져갈 수 있습니다.",
 	"Youtube": "유튜브",
 	"Youtube Loader Settings": "유튜브 로더 설정"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Leisti pertraukimą skambučio metu",
 	"alphanumeric characters and hyphens": "skaičiai, raidės ir brūkšneliai",
 	"Already have an account?": "Ar jau turite paskyrą?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "assistentas",
 	"and": "ir",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API raktas",
 	"API Key created.": "API raktas sukurtas",
 	"API keys": "API raktai",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Balandis",
 	"Archive": "Archyvai",
 	"Archive All Chats": "Archyvuoti visus pokalbius",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Pridėti failą",
 	"Attention to detail": "Dėmesys detalėms",
+	"Attribute for Username": "",
 	"Audio": "Audio įrašas",
 	"August": "Rugpjūtis",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Automatiškai nukopijuoti atsakymą",
 	"Auto-playback response": "Automatinis atsakymo skaitymas",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "Atšaukti",
 	"Capabilities": "Gebėjimai",
+	"Certificate Path": "",
 	"Change Password": "Keisti slaptažodį",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Blokų persidengimas",
 	"Chunk Params": "Blokų nustatymai",
 	"Chunk Size": "Blokų dydis",
+	"Ciphers": "",
 	"Citation": "Citata",
 	"Clear memory": "Ištrinti atmintį",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Paspauskite čia dėl pagalbos.",
 	"Click here to": "Paspauskite čia, kad:",
 	"Click here to download user import template file.": "Pasauskite čia norėdami sukurti naudotojo įkėlimo šablono rinkmeną",
@@ -153,8 +163,11 @@
 	"Context Length": "Konteksto ilgis",
 	"Continue Response": "Tęsti atsakymą",
 	"Continue with {{provider}}": "Tęstti su {{tiekėju}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "Valdymas",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Nukopijuota",
 	"Copied shared chat URL to clipboard!": "Nukopijavote pokalbio nuorodą",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Kopijuoti nuorodą",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "La copie dans le presse-papiers a réussi !",
+	"Create a knowledge base": "",
 	"Create a model": "Sukurti modelį",
 	"Create Account": "Créer un compte",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Sukurta",
 	"Created At": "Sukurta",
 	"Created by": "Sukurta",
-	"Create a knowledge base": "",
 	"CSV Import": "CSV importavimas",
 	"Current Model": "Dabartinis modelis",
 	"Current Password": "Esamas slaptažodis",
@@ -189,6 +202,8 @@
 	"Default Model": "Numatytasis modelis",
 	"Default model updated": "Numatytasis modelis atnaujintas",
 	"Default Prompt Suggestions": "Numatytieji užklausų pasiūlymai",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Numatytoji naudotojo rolė",
 	"Delete": "ištrinti",
 	"Delete a model": "Ištrinti modėlį",
@@ -204,8 +219,8 @@
 	"Delete User": "Ištrinti naudotoją",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} ištrinta",
 	"Deleted {{name}}": "Ištrinta {{name}}",
-	"Description": "Aprašymas",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Aprašymas",
 	"Didn't fully follow instructions": "Pilnai nesekė instrukcijų",
 	"Disabled": "Išjungta",
 	"Discover a function": "Atrasti funkciją",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Embedding modelio variklis",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding modelis nustatytas kaip\"{{embedding_model}}\"",
 	"Enable Community Sharing": "Leisti dalinimąsi su bendruomene",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktyvuoti naujas registracijas",
 	"Enable Web Search": "Leisti paiešką internete",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Įveskite {{role}} žinutę čia",
 	"Enter a detail about yourself for your LLMs to recall": "Įveskite informaciją apie save jūsų modelio atminčiai",
 	"Enter api auth string (e.g. username:password)": "Įveskite API autentifikacijos kodą (pvz. username:password)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Įveskite Bravo Search API raktą",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Įveskite blokų persidengimą",
 	"Enter Chunk Size": "Įveskite blokų dydį",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Įveskite Searxng Query nuorodą",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Įveskite Serper API raktą",
 	"Enter Serply API Key": "Įveskite Serply API raktą",
 	"Enter Serpstack API Key": "Įveskite Serpstack API raktą",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Įveskite pabaigos sekvenciją",
 	"Enter system prompt": "Įveskite sistemos užklausą",
 	"Enter Tavily API Key": "Įveskite Tavily API raktą",
@@ -297,9 +322,14 @@
 	"Enter your message": "Įveskite žinutę",
 	"Enter Your Password": "Įveskite slaptažodį",
 	"Enter Your Role": "Įveskite savo rolę",
+	"Enter Your Username": "",
 	"Error": "Klaida",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Eksperimentinis",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Paslėpti",
 	"Hide Model": "Paslėpti modelį",
+	"Host": "",
 	"How can I help you today?": "Kuo galėčiau Jums padėti ?",
 	"Hybrid Search": "Hibridinė paieška",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Suprantu veiksmų ir kodo vykdymo rizikas.",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Įtraukti `--api-auth` flag when running stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Pridėti `--api` kai vykdomas stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Informacija",
 	"Input commands": "Įvesties komandos",
 	"Install from Github URL": "Instaliuoti Github nuorodą",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Kalba",
 	"Last Active": "Paskutinį kartą aktyvus",
 	"Last Modified": "Paskutinis pakeitimas",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Daugiau",
 	"Move to Top": "",
 	"Name": "Pavadinimas",
-	"Name your model": "Pavadinkite savo modelį",
 	"Name your knowledge base": "",
+	"Name your model": "Pavadinkite savo modelį",
 	"New Chat": "Naujas pokalbis",
 	"New folder": "",
 	"New Password": "Naujas slaptažodis",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Pozityvus elgesys",
 	"Previous 30 days": "Paskutinės 30 dienų",
 	"Previous 7 days": "Paskutinės 7 dienos",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Skaityti garsiai",
 	"Record voice": "Įrašyti balsą",
 	"Redirecting you to OpenWebUI Community": "Perkeliam Jus į OpenWebUI bendruomenę",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Vadinkite save Naudotoju (pvz. Naudotojas mokosi prancūzų kalbos)",
 	"References from": "",
 	"Refused when it shouldn't have": "Atmesta kai neturėtų būti atmesta",
@@ -606,7 +643,6 @@
 	"Reset": "Atkurti",
 	"Reset Upload Directory": "Atkurti įkėlimų direktoiją",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Automatiškai nukopijuoti atsakymą",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Naršyklė neleidžia siųsti pranešimų",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Slikite link apačios norėdami pakeisti šakas",
 	"Search": "Ieškoti",
 	"Search a model": "Ieškoti modelio",
+	"Search Base": "",
 	"Search Chats": "Ieškoti pokalbiuose",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Ieškoti funkcijų",
 	"Search Knowledge": "",
 	"Search Models": "Ieškoti modelių",
+	"Search options": "",
 	"Search Prompts": "Ieškoti užklausų",
 	"Search Query Generation Prompt": "Paieškos užklausos generavimo formuluotė",
 	"Search Result Count": "Paieškos rezultatų skaičius",
 	"Search Tools": "Paieškos įrankiai",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Ieškota {{count}} sites_one",
@@ -685,8 +723,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Numatyti etapus",
 	"Set Task Model": "Numatyti užduočių modelį",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Numatyti balsą",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Nustatymai",
 	"Settings saved successfully!": "Parametrai sėkmingai išsaugoti!",
 	"Share": "Dalintis",
@@ -702,6 +747,7 @@
 	"Showcased creativity": "Kūrybingų užklausų paroda",
 	"Sign in": "Prisijungti",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Atsijungti",
 	"Sign up": "Sukurti paskyrą",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -727,6 +773,7 @@
 	"System Prompt": "Sistemos užklausa",
 	"Tags": "Žymos",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Paspauskite norėdami pertraukti",
 	"Tavily API Key": "Tavily API raktas",
 	"Tell us more:": "Papasakokite daugiau",
@@ -737,17 +784,24 @@
 	"Text-to-Speech Engine": "Balso sintezės modelis",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Ačiū už atsiliepimus",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Šis modulis kuriamas savanorių. Palaikykite jų darbus finansiškai arba prisidėdami kodu.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Rezultatas turėtų būti tarp 0.0 (0%) ir 1.0 (100%)",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "Mąsto...",
 	"This action cannot be undone. Do you wish to continue?": "Šis veiksmas negali būti atšauktas. Ar norite tęsti?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Tai užtikrina, kad Jūsų pokalbiai saugiai saugojami duomenų bazėje. Ačiū!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Tai eksperimentinė funkcija ir gali veikti nevisada.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Tai ištrins",
@@ -763,6 +817,7 @@
 	"Title Auto-Generation": "Automatinis pavadinimų generavimas",
 	"Title cannot be an empty string.": "Pavadinimas negali būti tuščias",
 	"Title Generation Prompt": "Pavadinimo generavimo užklausa",
+	"TLS": "",
 	"To access the available model names for downloading,": "Tam, kad prieiti prie galimų parsisiųsti modelių",
 	"To access the GGUF models available for downloading,": "Tam, kad prieiti prie galimų parsisiųsti GGUF,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Norėdami prieiti prie programos, susisiekite su administratoriumi, kuris Jus patvirtins.",
@@ -830,6 +885,7 @@
 	"User": "",
 	"User location successfully retrieved.": "Naudotojo vieta sėkmingai gauta",
 	"User Permissions": "Naudotojo leidimai",
+	"Username": "",
 	"Users": "Naudotojai",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Naudoti",
@@ -854,17 +910,20 @@
 	"Webhook URL": "Webhook nuoroda",
 	"WebUI Settings": "WebUI parametrai",
 	"WebUI will make requests to": "WebUI vykdys užklausas",
-	"What’s New in": "Kas naujo",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Kas naujo",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (lokalus)",
 	"Widescreen Mode": "Plataus ekrano rėžimas",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Nuostatos",
 	"Write a prompt suggestion (e.g. Who are you?)": "Parašykite užklausą",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Parašyk santrumpą trumpesnę nei 50 žodžių šiam tekstui: [tekstas]",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Vakar",
 	"You": "Jūs",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -879,4 +938,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Jūsų finansinis prisidėjimas tiesiogiai keliaus modulio kūrėjui.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube krovimo nustatymai"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Benarkan gangguan suara dalam panggilan",
 	"alphanumeric characters and hyphens": "aksara alfanumerik dan tanda sempang",
 	"Already have an account?": "Telah mempunyai akaun?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "seorang pembantu",
 	"and": "dan",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "Kunci API",
 	"API Key created.": "Kunci API dicipta",
 	"API keys": "Kekunci API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "April",
 	"Archive": "Arkib",
 	"Archive All Chats": "Arkibkan Semua Perbualan",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Kepilkan Fail",
 	"Attention to detail": "Perincian",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "Ogos",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Salin Response secara Automatik ke Papan Klip",
 	"Auto-playback response": "Main semula respons secara automatik",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "Batal",
 	"Capabilities": "Keupayaan",
+	"Certificate Path": "",
 	"Change Password": "Tukar Kata Laluan",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Tindihan 'Çhunk'",
 	"Chunk Params": "Parameter 'Çhunk'",
 	"Chunk Size": "Saiz 'Chunk'",
+	"Ciphers": "",
 	"Citation": "Petikan",
 	"Clear memory": "Kosongkan memori",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Klik disini untuk mendapatkan bantuan",
 	"Click here to": "Klik disini untuk",
 	"Click here to download user import template file.": "Klik disini untuk memuat turun fail templat import pengguna",
@@ -153,8 +163,11 @@
 	"Context Length": "Panjang Konteks",
 	"Continue Response": "Teruskan Respons",
 	"Continue with {{provider}}": "Teruskan dengan {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "Kawalan",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Disalin",
 	"Copied shared chat URL to clipboard!": "Menyalin URL sembang kongsi ke papan klip",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Salin Pautan",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Menyalin ke papan klip berjaya!",
+	"Create a knowledge base": "",
 	"Create a model": "Cipta model",
 	"Create Account": "Cipta Akaun",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Dicipta di",
 	"Created At": "Dicipta Pada",
 	"Created by": "Dicipta oleh",
-	"Create a knowledge base": "",
 	"CSV Import": "Import CSV",
 	"Current Model": "Model Semasa",
 	"Current Password": "Kata laluan semasa",
@@ -189,6 +202,8 @@
 	"Default Model": "Model Lalai",
 	"Default model updated": "Model lalai dikemas kini",
 	"Default Prompt Suggestions": "Cadangan Gesaan Lalai",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Peranan Pengguna Lalai",
 	"Delete": "Padam",
 	"Delete a model": "Padam Model",
@@ -204,8 +219,8 @@
 	"Delete User": "Padam Pengguna",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} dipadam",
 	"Deleted {{name}}": "{{name}} dipadam",
-	"Description": "Penerangan",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Penerangan",
 	"Didn't fully follow instructions": "Tidak mengikut arahan sepenuhnya",
 	"Disabled": "Dilumpuhkan",
 	"Discover a function": "Temui fungsi",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Enjin Model Benamkan",
 	"Embedding model set to \"{{embedding_model}}\"": "Model Benamkan ditetapkan kepada \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Benarkan Perkongsian Komuniti",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Benarkan Pendaftaran Baharu",
 	"Enable Web Search": "Benarkan Carian Web",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Masukkan mesej {{role}} di sini",
 	"Enter a detail about yourself for your LLMs to recall": "Masukkan butiran tentang diri anda untuk diingati oleh LLM anda",
 	"Enter api auth string (e.g. username:password)": "Masukkan kekunci auth api ( cth nama pengguna:kata laluan )",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Masukkan Kekunci API carian Brave",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Masukkan Tindihan 'Chunk'",
 	"Enter Chunk Size": "Masukkan Saiz 'Chunk'",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Masukkan URL 'Searxng Query'",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Masukkan Kunci API Serper",
 	"Enter Serply API Key": "Masukkan Kunci API Serply",
 	"Enter Serpstack API Key": "Masukkan Kunci API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Masukkan urutan hentian",
 	"Enter system prompt": "Masukkan gesaan sistem",
 	"Enter Tavily API Key": "Masukkan Kunci API Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "Masukkan mesej anda",
 	"Enter Your Password": "Masukkan Kata Laluan Anda",
 	"Enter Your Role": "Masukkan Peranan Anda",
+	"Enter Your Username": "",
 	"Error": "Ralat",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Percubaan",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Sembunyi",
 	"Hide Model": "Sembunyikan Model",
+	"Host": "",
 	"How can I help you today?": "Bagaimana saya boleh membantu anda hari ini?",
 	"Hybrid Search": "Carian Hibrid",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Saya mengakui bahawa saya telah membaca dan saya memahami implikasi tindakan saya. Saya sedar tentang risiko yang berkaitan dengan melaksanakan kod sewenang-wenangnya dan saya telah mengesahkan kebolehpercayaan sumber tersebut.",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Sertakan bendera `-- api -auth` semasa menjalankan stable-diffusion-webui ",
 	"Include `--api` flag when running stable-diffusion-webui": "Sertakan bendera `-- api ` semasa menjalankan stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Maklumat",
 	"Input commands": "Masukkan Arahan",
 	"Install from Github URL": "Pasang daripada URL Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Bahasa",
 	"Last Active": "Dilihat aktif terakhir pada",
 	"Last Modified": "Kemaskini terakhir pada",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Lagi",
 	"Move to Top": "",
 	"Name": "Nama",
-	"Name your model": "Namakan Model Anda",
 	"Name your knowledge base": "",
+	"Name your model": "Namakan Model Anda",
 	"New Chat": "Perbualan Baru",
 	"New folder": "",
 	"New Password": "Kata Laluan Baru",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Sikap positif",
 	"Previous 30 days": "30 hari sebelumnya",
 	"Previous 7 days": "7 hari sebelumnya",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Baca dengan lantang",
 	"Record voice": "Rakam suara",
 	"Redirecting you to OpenWebUI Community": "Membawa anda ke Komuniti OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Rujuk diri anda sebagai \"User\" (cth, \"Pengguna sedang belajar bahasa Sepanyol\")",
 	"References from": "",
 	"Refused when it shouldn't have": "Menolak dimana ia tidak sepatutnya",
@@ -606,7 +643,6 @@
 	"Reset": "Tetapkan Semula",
 	"Reset Upload Directory": "Tetapkan Semula Direktori Muat Naik",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Salin Response secara Automatik ke Papan Klip",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Pemberitahuan respons tidak boleh diaktifkan kerana kebenaran tapak web tidak diberi. Sila lawati tetapan pelayar web anda untuk memberikan akses yang diperlukan.",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Skrol ke bawah apabila bertukar antara cawangan",
 	"Search": "Carian",
 	"Search a model": "Cari Model",
+	"Search Base": "",
 	"Search Chats": "Cari Perbualan",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Carian Fungsi",
 	"Search Knowledge": "",
 	"Search Models": "Carian Model",
+	"Search options": "",
 	"Search Prompts": "Carian Gesaan",
 	"Search Query Generation Prompt": "Carian Penjanaan Pertanyaan Gesaan",
 	"Search Result Count": "Kiraan Hasil Carian",
 	"Search Tools": "Alat Carian",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Mencari {{count}} sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "tapkan Langkah",
 	"Set Task Model": "Tetapkan Model Tugasan",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Tetapan Suara",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Tetapan",
 	"Settings saved successfully!": "Tetapan berjaya disimpan!",
 	"Share": "Kongsi",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "eativiti yang dipamerkan",
 	"Sign in": "Daftar masuk",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Daftar keluar",
 	"Sign up": "Daftar",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "Gesaan Sistem",
 	"Tags": "Tag",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Sentuh untuk mengganggu",
 	"Tavily API Key": "Kunci API Tavily",
 	"Tell us more:": "Beritahu kami lebih lanjut",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Enjin Teks-ke-Ucapan",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Terima kasih atas maklum balas anda!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Pembangun di sebalik 'plugin' ini adalah sukarelawan yang bersemangat daripada komuniti. Jika anda mendapati 'plugin' ini membantu, sila pertimbangkan untuk menyumbang kepada pembangunannya.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Skor hendaklah berada diantara 0.0 (0%) dan 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "Berfikir...",
 	"This action cannot be undone. Do you wish to continue?": "Tindakan ini tidak boleh diubah semula kepada asal. Adakah anda ingin teruskan",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ini akan memastikan bahawa perbualan berharga anda disimpan dengan selamat ke pangkalan data 'backend' anda. Terima kasih!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "ni adalah ciri percubaan, ia mungkin tidak berfungsi seperti yang diharapkan dan tertakluk kepada perubahan pada bila-bila masa.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Ini akan memadam",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Penjanaan Auto Tajuk",
 	"Title cannot be an empty string.": "Tajuk tidak boleh menjadi rentetan kosong",
 	"Title Generation Prompt": "Gesaan Penjanaan Tajuk",
+	"TLS": "",
 	"To access the available model names for downloading,": "Untuk mengakses nama model yang tersedia untuk dimuat turun,",
 	"To access the GGUF models available for downloading,": "Untuk mengakses model GGUF yang tersedia untuk dimuat turun,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Untuk mengakses WebUI , sila hubungi pentadbir. Pentadbir boleh menguruskan status pengguna daripada Panel Pentadbiran",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "Lokasi pengguna berjaya diambil.",
 	"User Permissions": "Kebenaran Pengguna",
+	"Username": "",
 	"Users": "Pengguna",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Gunakan",
@@ -852,17 +908,20 @@
 	"Webhook URL": "URL 'Webhook'",
 	"WebUI Settings": "Tetapan WebUI",
 	"WebUI will make requests to": "WebUI akan membuat permintaan kepada",
-	"What’s New in": "Apakah yang terbaru dalam",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Apakah yang terbaru dalam",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "Mod Skrin Lebar",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Ruangan Kerja",
 	"Write a prompt suggestion (e.g. Who are you?)": "Tulis cadangan gesaan (cth Siapakah anda?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Tulis ringkasan dalam 50 patah perkataan yang meringkaskan [topik atau kata kunci].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Semalam",
 	"You": "Anda",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Seluruh sumbangan anda akan dihantar terus kepada pembangun 'plugin'; Open WebUI tidak mengambil sebarang peratusan keuntungan daripadanya. Walau bagaimanapun, platform pembiayaan yang dipilih mungkin mempunyai caj tersendiri.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Tetapan Pemuat Youtube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Muliggjør stemmeavbrytelse i samtale",
 	"alphanumeric characters and hyphens": "alfanumeriske tegn og bindestreker",
 	"Already have an account?": "Har du allerede en konto?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "en assistent",
 	"and": "og",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API-nøkkel",
 	"API Key created.": "API-nøkkel opprettet.",
 	"API keys": "API-nøkler",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "april",
 	"Archive": "Arkiv",
 	"Archive All Chats": "Arkiver alle chatter",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Legg ved fil",
 	"Attention to detail": "Sans for detaljer",
+	"Attribute for Username": "",
 	"Audio": "Lyd",
 	"August": "august",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Respons auto-kopi til utklippstavle",
 	"Auto-playback response": "Automatisk avspilling av svar",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Autentiseringsstreng",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "Avbryt",
 	"Capabilities": "Muligheter",
+	"Certificate Path": "",
 	"Change Password": "Endre passord",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chunk Overlap",
 	"Chunk Params": "Chunk-parametere",
 	"Chunk Size": "Chunk-størrelse",
+	"Ciphers": "",
 	"Citation": "Sitering",
 	"Clear memory": "Tøm minnet",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Klikk her for hjelp.",
 	"Click here to": "Klikk her for å",
 	"Click here to download user import template file.": "Klikk her for å hente ned importmal for brukere.",
@@ -153,8 +163,11 @@
 	"Context Length": "Kontekstlengde",
 	"Continue Response": "Fortsett svar",
 	"Continue with {{provider}}": "Fortsett med {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "Kontroller",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "Kopiert delt chat-URL til utklippstavlen!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Kopier lenke",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Kopiering til utklippstavlen var vellykket!",
+	"Create a knowledge base": "",
 	"Create a model": "Lag en modell",
 	"Create Account": "Opprett konto",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Opprettet",
 	"Created At": "Opprettet",
 	"Created by": "Opprettet av",
-	"Create a knowledge base": "",
 	"CSV Import": "CSV-import",
 	"Current Model": "Nåværende modell",
 	"Current Password": "Nåværende passord",
@@ -189,6 +202,8 @@
 	"Default Model": "Standardmodell",
 	"Default model updated": "Standardmodell oppdatert",
 	"Default Prompt Suggestions": "Standard promptforslag",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Standard brukerrolle",
 	"Delete": "Slett",
 	"Delete a model": "Slett en modell",
@@ -204,8 +219,8 @@
 	"Delete User": "Slett bruker",
 	"Deleted {{deleteModelTag}}": "Slettet {{deleteModelTag}}",
 	"Deleted {{name}}": "Slettet {{name}}",
-	"Description": "Beskrivelse",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Beskrivelse",
 	"Didn't fully follow instructions": "Fulgte ikke instruksjonene fullt ut",
 	"Disabled": "Deaktivert",
 	"Discover a function": "Oppdag en funksjon",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Embedding-modellmotor",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding-modell satt til \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Aktiver deling i fellesskap",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktiver nye registreringer",
 	"Enable Web Search": "Aktiver websøk",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Skriv inn {{role}} melding her",
 	"Enter a detail about yourself for your LLMs to recall": "Skriv inn en detalj om deg selv som språkmodellene dine kan huske",
 	"Enter api auth string (e.g. username:password)": "Skriv inn api-autentiseringsstreng (f.eks. brukernavn:passord)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Skriv inn Brave Search API-nøkkel",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Skriv inn Chunk Overlap",
 	"Enter Chunk Size": "Skriv inn Chunk-størrelse",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Skriv inn Searxng forespørsels-URL",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Skriv inn Serper API-nøkkel",
 	"Enter Serply API Key": "Skriv inn Serply API-nøkkel",
 	"Enter Serpstack API Key": "Skriv inn Serpstack API-nøkkel",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Skriv inn stoppsekvens",
 	"Enter system prompt": "Skriv inn systemprompt",
 	"Enter Tavily API Key": "Skriv inn Tavily API-nøkkel",
@@ -297,9 +322,14 @@
 	"Enter your message": "Skriv inn meldingen din",
 	"Enter Your Password": "Skriv inn ditt passord",
 	"Enter Your Role": "Skriv inn din rolle",
+	"Enter Your Username": "",
 	"Error": "Feil",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Eksperimentell",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Skjul",
 	"Hide Model": "Skjul modell",
+	"Host": "",
 	"How can I help you today?": "Hvordan kan jeg hjelpe deg i dag?",
 	"Hybrid Search": "Hybrid-søk",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Jeg bekrefter at jeg har lest og forstår konsekvensene av min handling. Jeg er klar over risikoen forbundet med å kjøre vilkårlig kode, og jeg har verifisert kildens pålitelighet.",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Inkluder `--api-auth`-flagget når du kjører stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Inkluder `--api`-flagget når du kjører stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Info",
 	"Input commands": "Inntast kommandoer",
 	"Install from Github URL": "Installer fra Github-URL",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Språk",
 	"Last Active": "Sist aktiv",
 	"Last Modified": "Sist endret",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Mer",
 	"Move to Top": "",
 	"Name": "Navn",
-	"Name your model": "Gi modellen din et navn",
 	"Name your knowledge base": "",
+	"Name your model": "Gi modellen din et navn",
 	"New Chat": "Ny chat",
 	"New folder": "",
 	"New Password": "Nytt passord",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Positiv holdning",
 	"Previous 30 days": "Forrige 30 dager",
 	"Previous 7 days": "Forrige 7 dager",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Les høyt",
 	"Record voice": "Ta opp stemme",
 	"Redirecting you to OpenWebUI Community": "Omdirigerer deg til OpenWebUI-fellesskapet",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Omtal deg selv som \"Bruker\" (f.eks. \"Bruker lærer spansk\")",
 	"References from": "",
 	"Refused when it shouldn't have": "Avvist når det ikke skulle ha vært det",
@@ -606,7 +643,6 @@
 	"Reset": "Tilbakestill",
 	"Reset Upload Directory": "Tilbakestill opplastingskatalog",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Respons auto-kopi til utklippstavle",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Respons-varsler kan ikke aktiveres da nettstedsrettighetene er nektet. Vennligst se nettleserinnstillingene dine for å gi nødvendig tilgang.",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Søk",
 	"Search a model": "Søk en modell",
+	"Search Base": "",
 	"Search Chats": "Søk chatter",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Søk funksjoner",
 	"Search Knowledge": "",
 	"Search Models": "Søk modeller",
+	"Search options": "",
 	"Search Prompts": "Søk prompter",
 	"Search Query Generation Prompt": "Instruksjon for å lage søkeord",
 	"Search Result Count": "Antall søkeresultater",
 	"Search Tools": "Søkeverktøy",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Søkte på {{count}} side",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Sett steg",
 	"Set Task Model": "Sett oppgavemodell",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Sett stemme",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Innstillinger",
 	"Settings saved successfully!": "Innstillinger lagret!",
 	"Share": "Del",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Vist frem kreativitet",
 	"Sign in": "Logg inn",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Logg ut",
 	"Sign up": "Registrer deg",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "Systemprompt",
 	"Tags": "Tagger",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Berør for å avbryte",
 	"Tavily API Key": "Tavily API-nøkkel",
 	"Tell us more:": "Fortell oss mer:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Tekst-til-tale-motor",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Takk for tilbakemeldingen!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Utviklerne bak denne utvidelsen er lidenskapelige frivillige fra fellesskapet. Hvis du finner denne utvidelsen nyttig, vennligst vurder å bidra til utviklingen.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Poengsummen skal være en verdi mellom 0,0 (0%) og 1,0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "Tenker ...",
 	"This action cannot be undone. Do you wish to continue?": "Denne handlingen kan ikke angres. Ønsker du å fortsette?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dette sikrer at dine verdifulle samtaler er trygt lagret i backend-databasen din. Takk!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dette er en eksperimentell funksjon, det er mulig den ikke fungerer som forventet og kan endres når som helst.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Dette vil slette",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Automatisk tittelgenerering",
 	"Title cannot be an empty string.": "Tittelen kan ikke være en tom streng.",
 	"Title Generation Prompt": "Tittelgenereringsprompt",
+	"TLS": "",
 	"To access the available model names for downloading,": "For å få tilgang til tilgjengelige modelnavn for nedlasting,",
 	"To access the GGUF models available for downloading,": "For å få tilgang til GGUF-modellene som er tilgjengelige for nedlasting,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "For å få tilgang til WebUI, vennligst kontakt administratoren. Administratorer kan administrere brukerstatus fra Admin-panelet.",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "Brukerlokasjon hentet",
 	"User Permissions": "Brukertillatelser",
+	"Username": "",
 	"Users": "Brukere",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Utnytt",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "WebUI innstillinger",
 	"WebUI will make requests to": "WebUI vil gjøre forespørsler til",
-	"What’s New in": "Hva er nytt i",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Hva er nytt i",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Lokal)",
 	"Widescreen Mode": "Bredskjermmodus",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Arbeidsområde",
 	"Write a prompt suggestion (e.g. Who are you?)": "Skriv et promptforslag (f.eks. Hvem er du?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Skriv et sammendrag på 50 ord som oppsummerer [emne eller nøkkelord].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "I går",
 	"You": "Du",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Hele beløpet du gir går uavkortet til utvikleren av tillegget; Open WebUI tar ikke noe av dette. Den valgte finansieringsplattformen kan derimot ha egne gebyrer.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Innstillinger for YouTube-laster"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Stemonderbreking tijdens gesprek toestaan",
 	"alphanumeric characters and hyphens": "alfanumerieke karakters en streepjes",
 	"Already have an account?": "Heb je al een account?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "een assistent",
 	"and": "en",
 	"and {{COUNT}} more": "en {{COUNT}} meer",
@@ -59,6 +60,8 @@
 	"API Key": "API Key",
 	"API Key created.": "API Key gemaakt.",
 	"API keys": "API keys",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "April",
 	"Archive": "Archief",
 	"Archive All Chats": "Archiveer alle chats",
@@ -71,8 +74,12 @@
 	"Assistant": "Assistent",
 	"Attach file": "Voeg een bestand toe",
 	"Attention to detail": "Attention to detail",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "Augustus",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Antwoord Automatisch Kopiëren naar Klembord",
 	"Auto-playback response": "Automatisch afspelen van antwoord",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "Automatic1111 Api Auth String",
@@ -98,6 +105,7 @@
 	"Camera": "Camera",
 	"Cancel": "Annuleren",
 	"Capabilities": "Mogelijkheden",
+	"Certificate Path": "",
 	"Change Password": "Wijzig Wachtwoord",
 	"Character": "Karakter",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chunk Overlap",
 	"Chunk Params": "Chunk Params",
 	"Chunk Size": "Chunk Grootte",
+	"Ciphers": "",
 	"Citation": "Citaat",
 	"Clear memory": "Geheugen wissen",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Klik hier voor hulp.",
 	"Click here to": "Klik hier om",
 	"Click here to download user import template file.": "Klik hier om het sjabloonbestand voor gebruikersimport te downloaden.",
@@ -153,8 +163,11 @@
 	"Context Length": "Context Lengte",
 	"Continue Response": "Doorgaan met Antwoord",
 	"Continue with {{provider}}": "Ga verder met {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Bepaal hoe berichttekst wordt opgesplitst voor TTS-verzoeken. 'Leestekens' splitst op in zinnen, 'alinea's' splitst op in paragrafen en 'geen' houdt het bericht als een enkele string.",
 	"Controls": "Besturingselementen",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Gekopieerd",
 	"Copied shared chat URL to clipboard!": "URL van gedeelde gesprekspagina gekopieerd naar klembord!",
 	"Copied to clipboard": "Gekopieerd naar klembord",
@@ -164,6 +177,7 @@
 	"Copy Link": "Kopieer Link",
 	"Copy to clipboard": "Kopier naar klembord",
 	"Copying to clipboard was successful!": "Kopiëren naar klembord was succesvol!",
+	"Create a knowledge base": "",
 	"Create a model": "Een model maken",
 	"Create Account": "Maak Account",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Gemaakt op",
 	"Created At": "Gemaakt op",
 	"Created by": "Gemaakt door",
-	"Create a knowledge base": "",
 	"CSV Import": "CSV import",
 	"Current Model": "Huidig Model",
 	"Current Password": "Huidig Wachtwoord",
@@ -189,6 +202,8 @@
 	"Default Model": "Standaard model",
 	"Default model updated": "Standaard model bijgewerkt",
 	"Default Prompt Suggestions": "Standaard Prompt Suggesties",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Standaard Gebruikersrol",
 	"Delete": "Verwijderen",
 	"Delete a model": "Verwijder een model",
@@ -204,8 +219,8 @@
 	"Delete User": "Verwijder Gebruiker",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} is verwijderd",
 	"Deleted {{name}}": "{{name}} verwijderd",
-	"Description": "Beschrijving",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Beschrijving",
 	"Didn't fully follow instructions": "Heeft niet alle instructies gevolgt",
 	"Disabled": "Uitgeschakeld",
 	"Discover a function": "Ontdek een functie",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Embedding Model Engine",
 	"Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Delen via de community inschakelen",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Schakel berichtbeoordeling in",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Schakel Nieuwe Registraties in",
 	"Enable Web Search": "Zoeken op het web inschakelen",
 	"Enable Web Search Query Generation": "Schakel zoekopdrachtgeneratie in",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
 	"Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",
 	"Enter api auth string (e.g. username:password)": "Voer api auth string in (bv. gebruikersnaam:wachtwoord)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Voer de Brave Search API-sleutel in",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Voer CFG schaal in (bv. 7.0)",
 	"Enter Chunk Overlap": "Voeg Chunk Overlap toe",
 	"Enter Chunk Size": "Voeg Chunk Size toe",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "voer SearchApi API-sleutel in",
 	"Enter SearchApi Engine": "Voer SearchApi-Engine in",
 	"Enter Searxng Query URL": "Voer de URL van de Searxng-query in",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Voer de Serper API-sleutel in",
 	"Enter Serply API Key": "Voer Serply API-sleutel in",
 	"Enter Serpstack API Key": "Voer de Serpstack API-sleutel in",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Zet stop sequentie",
 	"Enter system prompt": "Voer systeem prompt in",
 	"Enter Tavily API Key": "Voer Tavily API-sleutel in",
@@ -297,9 +322,14 @@
 	"Enter your message": "Voer je bericht in",
 	"Enter Your Password": "Voer je Wachtwoord in",
 	"Enter Your Role": "Voer je Rol in",
+	"Enter Your Username": "",
 	"Error": "Fout",
 	"ERROR": "ERROR",
 	"Evaluations": "Beoordelingen",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "Sluit uit",
 	"Experimental": "Experimenteel",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "Help ons het beste community leaderboard te maken door je feedbackgeschiedenis te delen!",
 	"Hide": "Verberg",
 	"Hide Model": "Verberg model",
+	"Host": "",
 	"How can I help you today?": "Hoe kan ik je vandaag helpen?",
 	"Hybrid Search": "Hybride Zoeken",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Ik bevestig dat ik de implicaties van mijn actie heb gelezen en begrepen. Ik ben me bewust van de risico's die gepaard gaan met het uitvoeren van willekeurige code en ik heb de betrouwbaarheid van de bron gecontroleerd.",
@@ -396,6 +427,7 @@
 	"Include": "Voeg toe",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Voeg '--api-auth` toe bij het uitvoeren van stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Voeg `--api` vlag toe bij het uitvoeren van stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Info",
 	"Input commands": "Voer commando's in",
 	"Install from Github URL": "Installeren vanaf Github-URL",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Kennis succesvol verwijderd",
 	"Knowledge reset successfully.": "Kennis succesvol gereset",
 	"Knowledge updated successfully": "Kennis succesvol bijgewerkt",
+	"Label": "",
 	"Landing Page Mode": "Landingspaginamodus",
 	"Language": "Taal",
 	"Last Active": "Laatst Actief",
 	"Last Modified": "Laatst aangepast",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "Klassement",
 	"Leave empty for unlimited": "Laat leeg voor ongelimiteerd",
 	"Leave empty to include all models or select specific models": "Laat leeg om alle modellen mee te nemen, of selecteer specifieke modellen",
@@ -488,8 +523,8 @@
 	"More": "Meer",
 	"Move to Top": "Verplaats naar boven",
 	"Name": "Naam",
-	"Name your model": "Geef uw model een naam",
 	"Name your knowledge base": "",
+	"Name your model": "Geef uw model een naam",
 	"New Chat": "Nieuwe Chat",
 	"New folder": "Nieuwe map",
 	"New Password": "Nieuw Wachtwoord",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "Voer een prompt in",
 	"Please fill in all fields.": "Voer alle velden in",
 	"Please select a reason": "Voer een reden in",
+	"Port": "",
 	"Positive attitude": "Positieve positie",
 	"Previous 30 days": "Vorige 30 dagen",
 	"Previous 7 days": "Vorige 7 dagen",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Voorlezen",
 	"Record voice": "Neem stem op",
 	"Redirecting you to OpenWebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refereer naar jezelf als \"user\" (bv. \"User is Spaans aan het leren\"",
 	"References from": "Referenties van",
 	"Refused when it shouldn't have": "Geweigerd terwijl het niet had moeten",
@@ -606,7 +643,6 @@
 	"Reset": "Herstellen",
 	"Reset Upload Directory": "Herstel Uploadmap",
 	"Reset Vector Storage/Knowledge": "Herstel Vectoropslag/-kennis",
-	"Auto-Copy Response to Clipboard": "Antwoord Automatisch Kopiëren naar Klembord",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Antwoordmeldingen kunnen niet worden geactiveerd omdat de rechten voor de website zijn geweigerd. Ga naar de instellingen van uw browser om de benodigde toegang te verlenen.",
 	"Response splitting": "Antwoord splitsing",
 	"Result": "Resultaat",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Scroll naar onderen bij het wisselen tussen takken",
 	"Search": "Zoeken",
 	"Search a model": "Zoek een model",
+	"Search Base": "",
 	"Search Chats": "Chats zoeken",
 	"Search Collection": "Zoek naar verzamelingen",
+	"Search Filters": "",
 	"search for tags": "Zoek naar tags",
 	"Search Functions": "Zoek naar functie",
 	"Search Knowledge": "Zoek naar Kennis",
 	"Search Models": "Modellen zoeken",
+	"Search options": "",
 	"Search Prompts": "Zoek Prompts",
 	"Search Query Generation Prompt": "Zoekopdracht promptgeneratie",
 	"Search Result Count": "Aantal zoekresultaten",
 	"Search Tools": "Zoek gereedschappen",
-	"Search options": "",
 	"SearchApi API Key": "SearchApi API-sleutel",
 	"SearchApi Engine": "SearchApi Engine",
 	"Searched {{count}} sites_one": "Gezocht op {{count}} sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "Stel planner in",
 	"Set Steps": "Stel Stappen in",
 	"Set Task Model": "Taakmodel instellen",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Stel Stem in",
 	"Set whisper model": "Stel Whisper model in",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Instellingen",
 	"Settings saved successfully!": "Instellingen succesvol opgeslagen!",
 	"Share": "Deel Chat",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Tooncase creativiteit",
 	"Sign in": "Inloggen",
 	"Sign in to {{WEBUI_NAME}}": "Log in bij {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Uitloggen",
 	"Sign up": "Registreren",
 	"Sign up to {{WEBUI_NAME}}": "Meld je aan bij {{WEBUI_NAME}}",
@@ -725,6 +771,7 @@
 	"System Prompt": "Systeem Prompt",
 	"Tags": "Tags",
 	"Tags Generation Prompt": "Prompt voor taggeneratie",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Tik om te onderbreken",
 	"Tavily API Key": "Tavily API-sleutel",
 	"Tell us more:": "Vertel ons meer:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Tekst-naar-Spraak Engine",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Bedankt voor uw feedback!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "De ontwikkelaars achter deze plugin zijn gepassioneerde vrijwilligers uit de gemeenschap. Als je deze plugin nuttig vindt, overweeg dan om bij te dragen aan de ontwikkeling ervan.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Het beoordelingsklassement is gebaseerd op het Elo-classificatiesysteem en wordt in realtime bijgewerkt.",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Het leaderboard is momenteel in bèta en we kunnen de ratingberekeningen aanpassen naarmate we het algoritme verfijnen.",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "De maximale bestandsgrootte in MB. Als het bestand groter is dan deze limiet, wordt het bestand niet geüpload.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Het maximum aantal bestanden dat in één keer kan worden gebruikt in de chat. Als het aantal bestanden deze limiet overschrijdt, worden de bestanden niet geüpload.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Het score moet een waarde zijn tussen 0.0 (0%) en 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Thema",
 	"Thinking...": "Aan het denken...",
 	"This action cannot be undone. Do you wish to continue?": "Deze actie kan niet ongedaan worden gemaakt. Wilt u doorgaan?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dit zorgt ervoor dat je waardevolle gesprekken veilig worden opgeslagen in je backend database. Dank je wel!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dit is een experimentele functie, het kan functioneren zoals verwacht en kan op elk moment veranderen.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Deze optie verwijdert alle bestaande bestanden in de collectie en vervangt ze door nieuw geüploade bestanden.",
 	"This response was generated by \"{{model}}\"": "Dit antwoord is gegenereerd door  \"{{model}}\"",
 	"This will delete": "Dit zal verwijderen",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Titel Auto-Generatie",
 	"Title cannot be an empty string.": "Titel kan niet leeg zijn.",
 	"Title Generation Prompt": "Titel Generatie Prompt",
+	"TLS": "",
 	"To access the available model names for downloading,": "Om de beschikbare modelnamen voor downloaden te openen,",
 	"To access the GGUF models available for downloading,": "Om toegang te krijgen tot de GGUF modellen die beschikbaar zijn voor downloaden,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Om toegang te krijgen tot de WebUI, neem contact op met de administrator. Beheerders kunnen de gebruikersstatussen beheren vanuit het Beheerderspaneel.",
@@ -828,6 +883,7 @@
 	"User": "User",
 	"User location successfully retrieved.": "Gebruikerslocatie succesvol opgehaald",
 	"User Permissions": "Gebruikers Rechten",
+	"Username": "",
 	"Users": "Gebruikers",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Het standaard arena-model gebruiken met alle modellen. Klik op de plusknop om aangepaste modellen toe te voegen.",
 	"Utilize": "Utilize",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "WebUI Instellingen",
 	"WebUI will make requests to": "WebUI zal verzoeken doen naar",
-	"What’s New in": "Wat is nieuw in",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Wat is nieuw in",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Lokaal)",
 	"Widescreen Mode": "Breedschermmodus",
 	"Won": "Gewonnen",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Werkruimte",
 	"Write a prompt suggestion (e.g. Who are you?)": "Schrijf een prompt suggestie (bijv. Wie ben je?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Schrijf een samenvatting in 50 woorden die [onderwerp of trefwoord] samenvat.",
 	"Write something...": "Schrijf iets...",
+	"Write your model template content here": "",
 	"Yesterday": "gisteren",
 	"You": "Jij",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Je kunt slechts met maximaal {{maxCount}} bestand(en) tegelijk chatten",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Je volledige bijdrage gaat direct naar de ontwikkelaar van de plugin; Open WebUI neemt hier geen deel van. Het gekozen financieringsplatform kan echter wel zijn eigen kosten hebben.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube-laderinstellingen"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "ਅਲਫ਼ਾਨਯੂਮੈਰਿਕ ਅੱਖਰ ਅਤੇ ਹਾਈਫਨ",
 	"Already have an account?": "ਪਹਿਲਾਂ ਹੀ ਖਾਤਾ ਹੈ?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "ਇੱਕ ਸਹਾਇਕ",
 	"and": "ਅਤੇ",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API ਕੁੰਜੀ",
 	"API Key created.": "API ਕੁੰਜੀ ਬਣਾਈ ਗਈ।",
 	"API keys": "API ਕੁੰਜੀਆਂ",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "ਅਪ੍ਰੈਲ",
 	"Archive": "ਆਰਕਾਈਵ",
 	"Archive All Chats": "ਸਾਰੀਆਂ ਚੈਟਾਂ ਨੂੰ ਆਰਕਾਈਵ ਕਰੋ",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "ਫਾਈਲ ਜੋੜੋ",
 	"Attention to detail": "ਵੇਰਵੇ 'ਤੇ ਧਿਆਨ",
+	"Attribute for Username": "",
 	"Audio": "ਆਡੀਓ",
 	"August": "ਅਗਸਤ",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "ਜਵਾਬ ਆਟੋ ਕਾਪੀ ਕਲਿੱਪਬੋਰਡ 'ਤੇ",
 	"Auto-playback response": "ਆਟੋ-ਪਲੇਬੈਕ ਜਵਾਬ",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "ਰੱਦ ਕਰੋ",
 	"Capabilities": "ਸਮਰੱਥਾਵਾਂ",
+	"Certificate Path": "",
 	"Change Password": "ਪਾਸਵਰਡ ਬਦਲੋ",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "ਚੰਕ ਓਵਰਲੈਪ",
 	"Chunk Params": "ਚੰਕ ਪੈਰਾਮੀਟਰ",
 	"Chunk Size": "ਚੰਕ ਆਕਾਰ",
+	"Ciphers": "",
 	"Citation": "ਹਵਾਲਾ",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "ਮਦਦ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ।",
 	"Click here to": "ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "ਸੰਦਰਭ ਲੰਬਾਈ",
 	"Continue Response": "ਜਵਾਬ ਜਾਰੀ ਰੱਖੋ",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "ਸਾਂਝੇ ਕੀਤੇ ਗੱਲਬਾਤ URL ਨੂੰ ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰ ਦਿੱਤਾ!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "ਕਲਿੱਪਬੋਰਡ 'ਤੇ ਕਾਪੀ ਕਰਨਾ ਸਫਲ ਰਿਹਾ!",
+	"Create a knowledge base": "",
 	"Create a model": "ਇੱਕ ਮਾਡਲ ਬਣਾਓ",
 	"Create Account": "ਖਾਤਾ ਬਣਾਓ",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "ਤੇ ਬਣਾਇਆ ਗਿਆ",
 	"Created At": "ਤੇ ਬਣਾਇਆ ਗਿਆ",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "ਮੌਜੂਦਾ ਮਾਡਲ",
 	"Current Password": "ਮੌਜੂਦਾ ਪਾਸਵਰਡ",
@@ -189,6 +202,8 @@
 	"Default Model": "ਡਿਫਾਲਟ ਮਾਡਲ",
 	"Default model updated": "ਮੂਲ ਮਾਡਲ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ",
 	"Default Prompt Suggestions": "ਮੂਲ ਪ੍ਰੰਪਟ ਸੁਝਾਅ",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "ਮੂਲ ਉਪਭੋਗਤਾ ਭੂਮਿਕਾ",
 	"Delete": "ਮਿਟਾਓ",
 	"Delete a model": "ਇੱਕ ਮਾਡਲ ਮਿਟਾਓ",
@@ -204,8 +219,8 @@
 	"Delete User": "ਉਪਭੋਗਤਾ ਮਿਟਾਓ",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} ਮਿਟਾਇਆ ਗਿਆ",
 	"Deleted {{name}}": "ਮਿਟਾ ਦਿੱਤਾ ਗਿਆ {{name}}",
-	"Description": "ਵਰਣਨਾ",
 	"Describe your knowledge base and objectives": "",
+	"Description": "ਵਰਣਨਾ",
 	"Didn't fully follow instructions": "ਹਦਾਇਤਾਂ ਨੂੰ ਪੂਰੀ ਤਰ੍ਹਾਂ ਫਾਲੋ ਨਹੀਂ ਕੀਤਾ",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਇੰਜਣ",
 	"Embedding model set to \"{{embedding_model}}\"": "ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਨੂੰ \"{{embedding_model}}\" 'ਤੇ ਸੈੱਟ ਕੀਤਾ ਗਿਆ",
 	"Enable Community Sharing": "ਕਮਿਊਨਿਟੀ ਸ਼ੇਅਰਿੰਗ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "ਨਵੇਂ ਸਾਈਨ ਅਪ ਯੋਗ ਕਰੋ",
 	"Enable Web Search": "ਵੈੱਬ ਖੋਜ ਨੂੰ ਸਮਰੱਥ ਕਰੋ",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "{{role}} ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
 	"Enter a detail about yourself for your LLMs to recall": "ਤੁਹਾਡੇ LLMs ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "ਚੰਕ ਓਵਰਲੈਪ ਦਰਜ ਕਰੋ",
 	"Enter Chunk Size": "ਚੰਕ ਆਕਾਰ ਦਰਜ ਕਰੋ",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Searxng Query URL ਦਾਖਲ ਕਰੋ",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Serper API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Serpstack API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "ਰੋਕਣ ਦਾ ਕ੍ਰਮ ਦਰਜ ਕਰੋ",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "ਆਪਣਾ ਪਾਸਵਰਡ ਦਰਜ ਕਰੋ",
 	"Enter Your Role": "ਆਪਣੀ ਭੂਮਿਕਾ ਦਰਜ ਕਰੋ",
+	"Enter Your Username": "",
 	"Error": "ਗਲਤੀ",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "ਪਰਮਾਣੂਕ੍ਰਿਤ",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "ਲੁਕਾਓ",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "ਮੈਂ ਅੱਜ ਤੁਹਾਡੀ ਕਿਵੇਂ ਮਦਦ ਕਰ ਸਕਦਾ ਹਾਂ?",
 	"Hybrid Search": "ਹਾਈਬ੍ਰਿਡ ਖੋਜ",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "ਸਟੇਬਲ-ਡਿਫਿਊਸ਼ਨ-ਵੈਬਯੂਆਈ ਚਲਾਉਣ ਸਮੇਂ `--api` ਝੰਡਾ ਸ਼ਾਮਲ ਕਰੋ",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "ਜਾਣਕਾਰੀ",
 	"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
 	"Install from Github URL": "Github URL ਤੋਂ ਇੰਸਟਾਲ ਕਰੋ",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "ਭਾਸ਼ਾ",
 	"Last Active": "ਆਖਰੀ ਸਰਗਰਮ",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "ਹੋਰ",
 	"Move to Top": "",
 	"Name": "ਨਾਮ",
-	"Name your model": "ਆਪਣੇ ਮਾਡਲ ਦਾ ਨਾਮ ਦੱਸੋ",
 	"Name your knowledge base": "",
+	"Name your model": "ਆਪਣੇ ਮਾਡਲ ਦਾ ਨਾਮ ਦੱਸੋ",
 	"New Chat": "ਨਵੀਂ ਗੱਲਬਾਤ",
 	"New folder": "",
 	"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "ਸਕਾਰਾਤਮਕ ਰਵੱਈਆ",
 	"Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ",
 	"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
@@ -589,6 +625,7 @@
 	"Read Aloud": "ਜੋਰ ਨਾਲ ਪੜ੍ਹੋ",
 	"Record voice": "ਆਵਾਜ਼ ਰਿਕਾਰਡ ਕਰੋ",
 	"Redirecting you to OpenWebUI Community": "ਤੁਹਾਨੂੰ ਓਪਨਵੈਬਯੂਆਈ ਕਮਿਊਨਿਟੀ ਵੱਲ ਰੀਡਾਇਰੈਕਟ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "ਜਦੋਂ ਇਹ ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਸੀ ਤਾਂ ਇਨਕਾਰ ਕੀਤਾ",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "ਜਵਾਬ ਆਟੋ ਕਾਪੀ ਕਲਿੱਪਬੋਰਡ 'ਤੇ",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "ਖੋਜ",
 	"Search a model": "ਇੱਕ ਮਾਡਲ ਖੋਜੋ",
+	"Search Base": "",
 	"Search Chats": "ਖੋਜ ਚੈਟਾਂ",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "ਖੋਜ ਮਾਡਲ",
+	"Search options": "",
 	"Search Prompts": "ਪ੍ਰੰਪਟ ਖੋਜੋ",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "ਖੋਜ ਨਤੀਜੇ ਦੀ ਗਿਣਤੀ",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "ਖੋਜਿਆ {{count}} sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "ਕਦਮ ਸੈੱਟ ਕਰੋ",
 	"Set Task Model": "ਟਾਸਕ ਮਾਡਲ ਸੈੱਟ ਕਰੋ",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "ਆਵਾਜ਼ ਸੈੱਟ ਕਰੋ",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "ਸੈਟਿੰਗਾਂ",
 	"Settings saved successfully!": "ਸੈਟਿੰਗਾਂ ਸਫਲਤਾਪੂਰਵਕ ਸੰਭਾਲੀਆਂ ਗਈਆਂ!",
 	"Share": "ਸਾਂਝਾ ਕਰੋ",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "ਸਿਰਜਣਾਤਮਕਤਾ ਦਿਖਾਈ",
 	"Sign in": "ਸਾਈਨ ਇਨ ਕਰੋ",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "ਸਾਈਨ ਆਊਟ ਕਰੋ",
 	"Sign up": "ਰਜਿਸਟਰ ਕਰੋ",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "ਸਿਸਟਮ ਪ੍ਰੰਪਟ",
 	"Tags": "ਟੈਗ",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "ਸਾਨੂੰ ਹੋਰ ਦੱਸੋ:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "ਪਾਠ-ਤੋਂ-ਬੋਲ ਇੰਜਣ",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "ਤੁਹਾਡੇ ਫੀਡਬੈਕ ਲਈ ਧੰਨਵਾਦ!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "ਸਕੋਰ 0.0 (0%) ਅਤੇ 1.0 (100%) ਦੇ ਵਿਚਕਾਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ।",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "ਥੀਮ",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "ਇਹ ਯਕੀਨੀ ਬਣਾਉਂਦਾ ਹੈ ਕਿ ਤੁਹਾਡੀਆਂ ਕੀਮਤੀ ਗੱਲਾਂ ਤੁਹਾਡੇ ਬੈਕਐਂਡ ਡਾਟਾਬੇਸ ਵਿੱਚ ਸੁਰੱਖਿਅਤ ਤੌਰ 'ਤੇ ਸੰਭਾਲੀਆਂ ਗਈਆਂ ਹਨ। ਧੰਨਵਾਦ!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "ਸਿਰਲੇਖ ਆਟੋ-ਜਨਰੇਸ਼ਨ",
 	"Title cannot be an empty string.": "ਸਿਰਲੇਖ ਖਾਲੀ ਸਤਰ ਨਹੀਂ ਹੋ ਸਕਦਾ।",
 	"Title Generation Prompt": "ਸਿਰਲੇਖ ਜਨਰੇਸ਼ਨ ਪ੍ਰੰਪਟ",
+	"TLS": "",
 	"To access the available model names for downloading,": "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਉਪਲਬਧ ਮਾਡਲ ਨਾਮਾਂ ਤੱਕ ਪਹੁੰਚਣ ਲਈ,",
 	"To access the GGUF models available for downloading,": "ਡਾਊਨਲੋਡ ਕਰਨ ਲਈ ਉਪਲਬਧ GGUF ਮਾਡਲਾਂ ਤੱਕ ਪਹੁੰਚਣ ਲਈ,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "ਉਪਭੋਗਤਾ ਅਧਿਕਾਰ",
+	"Username": "",
 	"Users": "ਉਪਭੋਗਤਾ",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "ਵਰਤੋਂ",
@@ -852,17 +908,20 @@
 	"Webhook URL": "ਵੈਬਹੁੱਕ URL",
 	"WebUI Settings": "ਵੈਬਯੂਆਈ ਸੈਟਿੰਗਾਂ",
 	"WebUI will make requests to": "ਵੈਬਯੂਆਈ ਬੇਨਤੀਆਂ ਕਰੇਗਾ",
-	"What’s New in": "ਨਵਾਂ ਕੀ ਹੈ",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "ਨਵਾਂ ਕੀ ਹੈ",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "ਕਾਰਜਸਥਲ",
 	"Write a prompt suggestion (e.g. Who are you?)": "ਇੱਕ ਪ੍ਰੰਪਟ ਸੁਝਾਅ ਲਿਖੋ (ਉਦਾਹਰਣ ਲਈ ਤੁਸੀਂ ਕੌਣ ਹੋ?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "50 ਸ਼ਬਦਾਂ ਵਿੱਚ ਇੱਕ ਸੰਖੇਪ ਲਿਖੋ ਜੋ [ਵਿਸ਼ਾ ਜਾਂ ਕੁੰਜੀ ਸ਼ਬਦ] ਨੂੰ ਸੰਖੇਪ ਕਰਦਾ ਹੈ।",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "ਕੱਲ੍ਹ",
 	"You": "ਤੁਸੀਂ",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "ਯੂਟਿਊਬ",
 	"Youtube Loader Settings": "ਯੂਟਿਊਬ ਲੋਡਰ ਸੈਟਿੰਗਾਂ"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "znaki alfanumeryczne i myślniki",
 	"Already have an account?": "Masz już konto?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "asystent",
 	"and": "i",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "Klucz API",
 	"API Key created.": "Klucz API utworzony.",
 	"API keys": "Klucze API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Kwiecień",
 	"Archive": "Archiwum",
 	"Archive All Chats": "Archiwizuj wszystkie czaty",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Dołącz plik",
 	"Attention to detail": "Dbałość o szczegóły",
+	"Attribute for Username": "",
 	"Audio": "Dźwięk",
 	"August": "Sierpień",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Automatyczne kopiowanie odpowiedzi do schowka",
 	"Auto-playback response": "Odtwarzanie automatyczne odpowiedzi",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "Anuluj",
 	"Capabilities": "Możliwości",
+	"Certificate Path": "",
 	"Change Password": "Zmień hasło",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Zachodzenie bloku",
 	"Chunk Params": "Parametry bloku",
 	"Chunk Size": "Rozmiar bloku",
+	"Ciphers": "",
 	"Citation": "Cytat",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Kliknij tutaj, aby uzyskać pomoc.",
 	"Click here to": "Kliknij tutaj, żeby",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "Długość kontekstu",
 	"Continue Response": "Kontynuuj odpowiedź",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "Skopiowano URL czatu do schowka!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Kopiuj link",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Kopiowanie do schowka zakończone powodzeniem!",
+	"Create a knowledge base": "",
 	"Create a model": "Tworzenie modelu",
 	"Create Account": "Utwórz konto",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Utworzono o",
 	"Created At": "Utworzono o",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "Bieżący model",
 	"Current Password": "Bieżące hasło",
@@ -189,6 +202,8 @@
 	"Default Model": "Model domyślny",
 	"Default model updated": "Domyślny model zaktualizowany",
 	"Default Prompt Suggestions": "Domyślne sugestie promptów",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Domyślna rola użytkownika",
 	"Delete": "Usuń",
 	"Delete a model": "Usuń model",
@@ -204,8 +219,8 @@
 	"Delete User": "Usuń użytkownika",
 	"Deleted {{deleteModelTag}}": "Usunięto {{deleteModelTag}}",
 	"Deleted {{name}}": "Usunięto {{name}}",
-	"Description": "Opis",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Opis",
 	"Didn't fully follow instructions": "Nie postępował zgodnie z instrukcjami",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Silnik modelu osadzania",
 	"Embedding model set to \"{{embedding_model}}\"": "Model osadzania ustawiono na \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Włączanie udostępniania społecznościowego",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Włącz nowe rejestracje",
 	"Enable Web Search": "Włączanie wyszukiwania w Internecie",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Wprowadź wiadomość {{role}} tutaj",
 	"Enter a detail about yourself for your LLMs to recall": "Wprowadź szczegóły o sobie, aby LLMs mogli pamiętać",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Wprowadź klucz API Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Wprowadź zakchodzenie bloku",
 	"Enter Chunk Size": "Wprowadź rozmiar bloku",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Wprowadź adres URL zapytania Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Wprowadź klucz API Serper",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Wprowadź klucz API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Wprowadź sekwencję zatrzymania",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Wprowadź swoje hasło",
 	"Enter Your Role": "Wprowadź swoją rolę",
+	"Enter Your Username": "",
 	"Error": "Błąd",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Eksperymentalne",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Ukryj",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "Jak mogę Ci dzisiaj pomóc?",
 	"Hybrid Search": "Szukanie hybrydowe",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Dołącz flagę `--api` podczas uruchamiania stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Informacji",
 	"Input commands": "Wprowadź komendy",
 	"Install from Github URL": "Instalowanie z adresu URL usługi Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Język",
 	"Last Active": "Ostatnio aktywny",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Więcej",
 	"Move to Top": "",
 	"Name": "Nazwa",
-	"Name your model": "Nazwij swój model",
 	"Name your knowledge base": "",
+	"Name your model": "Nazwij swój model",
 	"New Chat": "Nowy czat",
 	"New folder": "",
 	"New Password": "Nowe hasło",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Pozytywne podejście",
 	"Previous 30 days": "Poprzednie 30 dni",
 	"Previous 7 days": "Poprzednie 7 dni",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Czytaj na głos",
 	"Record voice": "Nagraj głos",
 	"Redirecting you to OpenWebUI Community": "Przekierowujemy Cię do społeczności OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "Odmówił, kiedy nie powinien",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Automatyczne kopiowanie odpowiedzi do schowka",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Szukaj",
 	"Search a model": "Szukaj modelu",
+	"Search Base": "",
 	"Search Chats": "Szukaj w czatach",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "Szukaj modeli",
+	"Search options": "",
 	"Search Prompts": "Szukaj promptów",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "Liczba wyników wyszukiwania",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Wyszukiwano {{count}} sites_one",
@@ -685,8 +723,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Ustaw kroki",
 	"Set Task Model": "Ustawianie modelu zadań",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Ustaw głos",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Ustawienia",
 	"Settings saved successfully!": "Ustawienia zapisane pomyślnie!",
 	"Share": "Udostępnij",
@@ -702,6 +747,7 @@
 	"Showcased creativity": "Pokaz kreatywności",
 	"Sign in": "Zaloguj się",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Wyloguj się",
 	"Sign up": "Zarejestruj się",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -727,6 +773,7 @@
 	"System Prompt": "Prompt systemowy",
 	"Tags": "Tagi",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "Powiedz nam więcej",
@@ -737,17 +784,24 @@
 	"Text-to-Speech Engine": "Silnik tekstu na mowę",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Dzięki za informację zwrotną!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Wynik powinien być wartością pomiędzy 0.0 (0%) a 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Motyw",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "To zapewnia, że Twoje cenne rozmowy są bezpiecznie zapisywane w bazie danych backendowej. Dziękujemy!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -763,6 +817,7 @@
 	"Title Auto-Generation": "Automatyczne generowanie tytułu",
 	"Title cannot be an empty string.": "Tytuł nie może być pusty",
 	"Title Generation Prompt": "Prompt generowania tytułu",
+	"TLS": "",
 	"To access the available model names for downloading,": "Aby uzyskać dostęp do dostępnych nazw modeli do pobrania,",
 	"To access the GGUF models available for downloading,": "Aby uzyskać dostęp do dostępnych modeli GGUF do pobrania,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -830,6 +885,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "Uprawnienia użytkownika",
+	"Username": "",
 	"Users": "Użytkownicy",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Wykorzystaj",
@@ -854,17 +910,20 @@
 	"Webhook URL": "URL webhook",
 	"WebUI Settings": "Ustawienia interfejsu WebUI",
 	"WebUI will make requests to": "Interfejs sieciowy będzie wysyłał żądania do",
-	"What’s New in": "Co nowego w",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Co nowego w",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Obszar roboczy",
 	"Write a prompt suggestion (e.g. Who are you?)": "Napisz sugestię do polecenia (np. Kim jesteś?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Napisz podsumowanie w 50 słowach, które podsumowuje [temat lub słowo kluczowe].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Wczoraj",
 	"You": "Ty",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -879,4 +938,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Ustawienia pobierania z Youtube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Permitir Interrupção de Voz na Chamada",
 	"alphanumeric characters and hyphens": "caracteres alfanuméricos e hífens",
 	"Already have an account?": "Já tem uma conta?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "um assistente",
 	"and": "e",
 	"and {{COUNT}} more": "e {{COUNT}} mais",
@@ -59,6 +60,8 @@
 	"API Key": "Chave API",
 	"API Key created.": "Chave API criada.",
 	"API keys": "Chaves API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Abril",
 	"Archive": "Arquivar",
 	"Archive All Chats": "Arquivar Todos os Chats",
@@ -71,8 +74,12 @@
 	"Assistant": "Assistente",
 	"Attach file": "Anexar arquivo",
 	"Attention to detail": "Atenção aos detalhes",
+	"Attribute for Username": "",
 	"Audio": "Áudio",
 	"August": "Agosto",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Cópia Automática da Resposta para a Área de Transferência",
 	"Auto-playback response": "Resposta de reprodução automática",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "String de Autenticação da API AUTOMATIC1111",
@@ -98,6 +105,7 @@
 	"Camera": "Câmera",
 	"Cancel": "Cancelar",
 	"Capabilities": "Capacidades",
+	"Certificate Path": "",
 	"Change Password": "Mudar Senha",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Sobreposição de Chunk",
 	"Chunk Params": "Parâmetros de Chunk",
 	"Chunk Size": "Tamanho do Chunk",
+	"Ciphers": "",
 	"Citation": "Citação",
 	"Clear memory": "Limpar memória",
 	"click here": "Clique aqui",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Clique aqui para obter ajuda.",
 	"Click here to": "Clique aqui para",
 	"Click here to download user import template file.": "Clique aqui para baixar o arquivo de modelo de importação de usuários.",
@@ -153,8 +163,11 @@
 	"Context Length": "Context Length",
 	"Continue Response": "Continuar Resposta",
 	"Continue with {{provider}}": "Continuar com {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "Controles",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Copiado",
 	"Copied shared chat URL to clipboard!": "URL de chat compartilhado copiado para a área de transferência!",
 	"Copied to clipboard": "Copiado para a área de transferência",
@@ -164,6 +177,7 @@
 	"Copy Link": "Copiar Link",
 	"Copy to clipboard": "Copiar para a área de transferência",
 	"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
+	"Create a knowledge base": "Criar uma base de conhecimento",
 	"Create a model": "Criar um modelo",
 	"Create Account": "Criar Conta",
 	"Create Admin Account": "Criar Conta de Admin",
@@ -173,7 +187,6 @@
 	"Created at": "Criado em",
 	"Created At": "Criado Em",
 	"Created by": "Criado por",
-	"Create a knowledge base": "Criar uma base de conhecimento",
 	"CSV Import": "Importação CSV",
 	"Current Model": "Modelo Atual",
 	"Current Password": "Senha Atual",
@@ -189,6 +202,8 @@
 	"Default Model": "Modelo Padrão",
 	"Default model updated": "Modelo padrão atualizado",
 	"Default Prompt Suggestions": "Sugestões de Prompt Padrão",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Padrão para novos usuários",
 	"Delete": "Deletar",
 	"Delete a model": "Deletar um modelo",
@@ -204,8 +219,8 @@
 	"Delete User": "Deletar Usuário",
 	"Deleted {{deleteModelTag}}": "Deletado {{deleteModelTag}}",
 	"Deleted {{name}}": "Deletado {{name}}",
-	"Description": "Descrição",
 	"Describe your knowledge base and objectives": "Descreva sua base de conhecimento e objetivos",
+	"Description": "Descrição",
 	"Didn't fully follow instructions": "Não seguiu completamente as instruções",
 	"Disabled": "Desativado",
 	"Discover a function": "Descubra uma função",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Motor do Modelo de Embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de embedding definido para \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Ativar Compartilhamento com a Comunidade",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Habilitar Avaliação de Mensagens",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Ativar Novos Cadastros",
 	"Enable Web Search": "Ativar Pesquisa na Web",
 	"Enable Web Search Query Generation": "Habilitar Geração de Consultas na Web",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
 	"Enter a detail about yourself for your LLMs to recall": "Digite um detalhe sobre você para seus LLMs lembrarem",
 	"Enter api auth string (e.g. username:password)": "Digite a string de autenticação da API (por exemplo, username:password)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "Digite o Endpoint do Bing Search V7",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Digite a Chave API do Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Digite a escala de CFG (por exemplo, 7.0)",
 	"Enter Chunk Overlap": "Digite a Sobreposição de Chunk",
 	"Enter Chunk Size": "Digite o Tamanho do Chunk",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Digite a Chave API do SearchApi",
 	"Enter SearchApi Engine": "Digite o Motor do SearchApi",
 	"Enter Searxng Query URL": "Digite a URL de Consulta do Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Digite a Chave API do Serper",
 	"Enter Serply API Key": "Digite a Chave API do Serply",
 	"Enter Serpstack API Key": "Digite a Chave API do Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Digite a sequência de parada",
 	"Enter system prompt": "Digite o prompt do sistema",
 	"Enter Tavily API Key": "Digite a Chave API do Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "Digite sua mensagem",
 	"Enter Your Password": "Digite Sua Senha",
 	"Enter Your Role": "Digite Sua Função",
+	"Enter Your Username": "",
 	"Error": "Erro",
 	"ERROR": "",
 	"Evaluations": "Evoluções",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "Excluir",
 	"Experimental": "Experimental",
 	"Explore the cosmos": "Explorar o cosmos",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "Ajude-nos a criar o melhor ranking da comunidade compartilhando sua historial de comentaários!",
 	"Hide": "Ocultar",
 	"Hide Model": "Ocultar Modelo",
+	"Host": "",
 	"How can I help you today?": "Como posso ajudar você hoje?",
 	"Hybrid Search": "Pesquisa Híbrida",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Eu reconheço que li e entendi as implicações da minha ação. Estou ciente dos riscos associados à execução de código arbitrário e verifiquei a confiabilidade da fonte.",
@@ -396,6 +427,7 @@
 	"Include": "Incluir",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Incluir a flag `--api-auth` ao executar stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Incluir a flag `--api` ao executar stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Informação",
 	"Input commands": "Comandos de entrada",
 	"Install from Github URL": "Instalar da URL do Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Conhecimento excluído com sucesso.",
 	"Knowledge reset successfully.": "Conhecimento resetado com sucesso.",
 	"Knowledge updated successfully": "Conhecimento atualizado com sucesso",
+	"Label": "",
 	"Landing Page Mode": "Modo Landing Page",
 	"Language": "Idioma",
 	"Last Active": "Última Atividade",
 	"Last Modified": "Última Modificação",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "Tabela de classificação",
 	"Leave empty for unlimited": "Deixe vazio para ilimitado",
 	"Leave empty to include all models or select specific models": "Deixe vazio para incluir todos os modelos ou selecione modelos especificos",
@@ -488,8 +523,8 @@
 	"More": "Mais",
 	"Move to Top": "Mover para o topo",
 	"Name": "Nome",
-	"Name your model": "Nome do seu modelo",
 	"Name your knowledge base": "Nome da sua base de conhecimento",
+	"Name your model": "Nome do seu modelo",
 	"New Chat": "Novo Chat",
 	"New folder": "Nova pasta",
 	"New Password": "Nova Senha",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "Por favor, digite um prompt",
 	"Please fill in all fields.": "Por favor, preencha todos os campos.",
 	"Please select a reason": "Por favor, seleccione uma razão",
+	"Port": "",
 	"Positive attitude": "Atitude positiva",
 	"Previous 30 days": "Últimos 30 dias",
 	"Previous 7 days": "Últimos 7 dias",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Ler em Voz Alta",
 	"Record voice": "Gravar voz",
 	"Redirecting you to OpenWebUI Community": "Redirecionando você para a Comunidade OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refira-se como \"Usuário\" (por exemplo, \"Usuário está aprendendo espanhol\")",
 	"References from": "Referências de",
 	"Refused when it shouldn't have": "Recusado quando não deveria",
@@ -606,7 +643,6 @@
 	"Reset": "Redefinir",
 	"Reset Upload Directory": "Redefinir Diretório de Upload",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Cópia Automática da Resposta para a Área de Transferência",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificações de resposta não podem ser ativadas pois as permissões do site foram negadas. Por favor, visite as configurações do seu navegador para conceder o acesso necessário.",
 	"Response splitting": "Divisão da Resposta",
 	"Result": "Resultado",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Rolar para baixo quando se troca entre modelos",
 	"Search": "Pesquisar",
 	"Search a model": "Pesquisar um modelo",
+	"Search Base": "",
 	"Search Chats": "Pesquisar Chats",
 	"Search Collection": "Pesquisar Coleção",
+	"Search Filters": "",
 	"search for tags": "Pesquisar por tags",
 	"Search Functions": "Pesquisar Funções",
 	"Search Knowledge": "Pesquisar conhecimento",
 	"Search Models": "Pesquisar Modelos",
+	"Search options": "Opções de pesquisa",
 	"Search Prompts": "Pesquisar Prompts",
 	"Search Query Generation Prompt": "Prompt de Geração de Consulta de Pesquisa",
 	"Search Result Count": "Contagem de Resultados da Pesquisa",
 	"Search Tools": "Pesquisar Ferramentas",
-	"Search options": "Opções de pesquisa",
 	"SearchApi API Key": "Pesquisar SearchApi key",
 	"SearchApi Engine": "Motor SearchApi",
 	"Searched {{count}} sites_one": "Pesquisou {{count}} sites_one",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "Definir Agenda",
 	"Set Steps": "Definir Etapas",
 	"Set Task Model": "Definir Modelo de Tarefa",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Definir Voz",
 	"Set whisper model": "Definir modelo Whisper",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Configurações",
 	"Settings saved successfully!": "Configurações salvas com sucesso!",
 	"Share": "Compartilhar",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "Criatividade exibida",
 	"Sign in": "Entrar",
 	"Sign in to {{WEBUI_NAME}}": "Faça login em {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Sair",
 	"Sign up": "Inscrever-se",
 	"Sign up to {{WEBUI_NAME}}": "Inscreva-se em {{WEBUI_NAME}}",
@@ -726,6 +772,7 @@
 	"System Prompt": "Prompt do Sistema",
 	"Tags": "Tags",
 	"Tags Generation Prompt": "Prompt para geração de Tags",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Toque para interromper",
 	"Tavily API Key": "Chave da API Tavily",
 	"Tell us more:": "Conte-nos mais:",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "Motor de Texto para Fala",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Obrigado pelo seu feedback!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Os desenvolvedores por trás deste plugin são voluntários apaixonados da comunidade. Se você achar este plugin útil, considere contribuir para o seu desenvolvimento.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "A evolução do ranking de avaliação é baseada no sistema Elo e será atualizada em tempo real.",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "O ranking atual está em beta, e podemos ajustar as contas de avaliação como refinamos o algoritmo.",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Máximo tamanho de arquivo em MB. Se o tamanho do arquivo exceder este limite, o arquivo não será enviado.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "O número máximo de arquivos que podem ser utilizados a cada vez em chat. Se o número de arquivos exceder este limite, os arquivos não serão enviados.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontuação deve ser um valor entre 0.0 (0%) e 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "Pensando...",
 	"This action cannot be undone. Do you wish to continue?": "Esta ação não pode ser desfeita. Você deseja continuar?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Isso garante que suas conversas valiosas sejam salvas com segurança no banco de dados do backend. Obrigado!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Esta é uma funcionalidade experimental, pode não funcionar como esperado e está sujeita a alterações a qualquer momento.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Essa opção deletará todos os arquivos existentes na coleção e todos eles serão substituídos.",
 	"This response was generated by \"{{model}}\"": "Esta resposta foi gerada por \"{{model}}\"",
 	"This will delete": "Isso vai excluir",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "Geração Automática de Título",
 	"Title cannot be an empty string.": "O Título não pode ser uma string vazia.",
 	"Title Generation Prompt": "Prompt de Geração de Título",
+	"TLS": "",
 	"To access the available model names for downloading,": "Para acessar os nomes de modelos disponíveis para download,",
 	"To access the GGUF models available for downloading,": "Para acessar os modelos GGUF disponíveis para download,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Para acessar a WebUI, entre em contato com o administrador. Os administradores podem gerenciar os status dos usuários no Painel de Administração.",
@@ -829,6 +884,7 @@
 	"User": "Usuário",
 	"User location successfully retrieved.": "Localização do usuário recuperada com sucesso.",
 	"User Permissions": "Permissões do Usuário",
+	"Username": "",
 	"Users": "Usuários",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Usando o modelo arena padrão para todos os modelos. Clique no botão mais para adicionar modelos personalizados.",
 	"Utilize": "Utilizar",
@@ -853,17 +909,20 @@
 	"Webhook URL": "URL do Webhook",
 	"WebUI Settings": "Configurações da WebUI",
 	"WebUI will make requests to": "A WebUI fará solicitações para",
-	"What’s New in": "O que há de novo em",
 	"What are you trying to achieve?": "O que está tentando alcançar?",
 	"What are you working on?": "O que está trabalhando?",
+	"What’s New in": "O que há de novo em",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "Modo Tela Cheia",
 	"Won": "Positivo",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Espaço de Trabalho",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem é você?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
 	"Write something...": "Escrevendo algo...",
+	"Write your model template content here": "",
 	"Yesterday": "Ontem",
 	"You": "Você",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "caracteres alfanuméricos e hífens",
 	"Already have an account?": "Já tem uma conta?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "um assistente",
 	"and": "e",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "Chave da API",
 	"API Key created.": "Chave da API criada.",
 	"API keys": "Chaves da API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Abril",
 	"Archive": "Arquivo",
 	"Archive All Chats": "Arquivar todos os chats",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Anexar ficheiro",
 	"Attention to detail": "Detalhado",
+	"Attribute for Username": "",
 	"Audio": "Áudio",
 	"August": "Agosto",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Cópia Automática da Resposta para a Área de Transferência",
 	"Auto-playback response": "Reprodução automática da resposta",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "Camera",
 	"Cancel": "Cancelar",
 	"Capabilities": "Capacidades",
+	"Certificate Path": "",
 	"Change Password": "Alterar Senha",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Sobreposição de Fragmento",
 	"Chunk Params": "Parâmetros de Fragmento",
 	"Chunk Size": "Tamanho do Fragmento",
+	"Ciphers": "",
 	"Citation": "Citação",
 	"Clear memory": "Limpar memória",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Clique aqui para obter ajuda.",
 	"Click here to": "Clique aqui para",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "Comprimento do Contexto",
 	"Continue Response": "Continuar resposta",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "URL de Conversa partilhado copiada com sucesso!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Copiar link",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Cópia para a área de transferência bem-sucedida!",
+	"Create a knowledge base": "",
 	"Create a model": "Criar um modelo",
 	"Create Account": "Criar Conta",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Criado em",
 	"Created At": "Criado em",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "Modelo Atual",
 	"Current Password": "Senha Atual",
@@ -189,6 +202,8 @@
 	"Default Model": "Modelo padrão",
 	"Default model updated": "Modelo padrão atualizado",
 	"Default Prompt Suggestions": "Sugestões de Prompt Padrão",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Função de Utilizador Padrão",
 	"Delete": "Apagar",
 	"Delete a model": "Apagar um modelo",
@@ -204,8 +219,8 @@
 	"Delete User": "Apagar Utilizador",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} apagado",
 	"Deleted {{name}}": "Apagado {{name}}",
-	"Description": "Descrição",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Descrição",
 	"Didn't fully follow instructions": "Não seguiu instruções com precisão",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Motor de Modelo de Embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelo de Embedding definido como \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Active a Partilha da Comunidade",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Ativar Novas Inscrições",
 	"Enable Web Search": "Ativar pesquisa na Web",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Escreva a mensagem de {{role}} aqui",
 	"Enter a detail about yourself for your LLMs to recall": "Escreva um detalhe sobre você para que os seus LLMs possam lembrar-se",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Escreva a chave da API do Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Escreva a Sobreposição de Fragmento",
 	"Enter Chunk Size": "Escreva o Tamanho do Fragmento",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Escreva o URL da Pesquisa Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Escreva a chave da API Serper",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Escreva a chave da API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Escreva a sequência de paragem",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Escreva a sua Senha",
 	"Enter Your Role": "Escreva a sua Função",
+	"Enter Your Username": "",
 	"Error": "Erro",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Experimental",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Ocultar",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "Como posso ajudá-lo hoje?",
 	"Hybrid Search": "Pesquisa Híbrida",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Inclua a flag `--api` ao executar stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Informação",
 	"Input commands": "Comandos de entrada",
 	"Install from Github URL": "Instalar a partir do URL do Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Idioma",
 	"Last Active": "Último Ativo",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Mais",
 	"Move to Top": "",
 	"Name": "Nome",
-	"Name your model": "Atribua um nome ao seu modelo",
 	"Name your knowledge base": "",
+	"Name your model": "Atribua um nome ao seu modelo",
 	"New Chat": "Nova Conversa",
 	"New folder": "",
 	"New Password": "Nova Senha",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Atitude Positiva",
 	"Previous 30 days": "Últimos 30 dias",
 	"Previous 7 days": "Últimos 7 dias",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Ler em Voz Alta",
 	"Record voice": "Gravar voz",
 	"Redirecting you to OpenWebUI Community": "Redirecionando-o para a Comunidade OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refera-se a si próprio como \"User\" (por exemplo, \"User está a aprender Espanhol\")",
 	"References from": "",
 	"Refused when it shouldn't have": "Recusado quando não deveria",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "Limpar Pasta de Carregamento",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Cópia Automática da Resposta para a Área de Transferência",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Pesquisar",
 	"Search a model": "Pesquisar um modelo",
+	"Search Base": "",
 	"Search Chats": "Pesquisar Conversas",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "Modelos de pesquisa",
+	"Search options": "",
 	"Search Prompts": "Pesquisar Prompts",
 	"Search Query Generation Prompt": "Prompt de geração de consulta de pesquisa",
 	"Search Result Count": "Contagem de resultados da pesquisa",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Pesquisado {{count}} sites_one",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Definir Etapas",
 	"Set Task Model": "Definir modelo de tarefa",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Definir Voz",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Configurações",
 	"Settings saved successfully!": "Configurações guardadas com sucesso!",
 	"Share": "Partilhar",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "Criatividade Exibida",
 	"Sign in": "Entrar",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Sair",
 	"Sign up": "Inscrever-se",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -726,6 +772,7 @@
 	"System Prompt": "Prompt do Sistema",
 	"Tags": "Etiquetas",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "Diga-nos mais:",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "Motor de Texto para Fala",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Obrigado pelo seu feedback!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "A pontuação deve ser um valor entre 0.0 (0%) e 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "A pensar...",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Isto garante que suas conversas valiosas sejam guardadas com segurança na sua base de dados de backend. Obrigado!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Isto é um recurso experimental, pode não funcionar conforme o esperado e está sujeito a alterações a qualquer momento.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "Geração Automática de Título",
 	"Title cannot be an empty string.": "Título não pode ser uma string vazia.",
 	"Title Generation Prompt": "Prompt de Geração de Título",
+	"TLS": "",
 	"To access the available model names for downloading,": "Para aceder aos nomes de modelo disponíveis para descarregar,",
 	"To access the GGUF models available for downloading,": "Para aceder aos modelos GGUF disponíveis para descarregar,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Para aceder ao WebUI, entre em contato com o administrador. Os administradores podem gerir o status dos utilizadores no Painel de Administração.",
@@ -829,6 +884,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "Permissões do Utilizador",
+	"Username": "",
 	"Users": "Utilizadores",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Utilizar",
@@ -853,17 +909,20 @@
 	"Webhook URL": "URL do Webhook",
 	"WebUI Settings": "Configurações WebUI",
 	"WebUI will make requests to": "WebUI fará pedidos a",
-	"What’s New in": "O que há de novo em",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "O que há de novo em",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "Modo Widescreen",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Espaço de Trabalho",
 	"Write a prompt suggestion (e.g. Who are you?)": "Escreva uma sugestão de prompt (por exemplo, Quem és tu?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Escreva um resumo em 50 palavras que resuma [tópico ou palavra-chave].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Ontem",
 	"You": "Você",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -878,4 +937,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Configurações do Carregador do Youtube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Permite Întreruperea Vocii în Apel",
 	"alphanumeric characters and hyphens": "caractere alfanumerice și cratime",
 	"Already have an account?": "Deja ai un cont?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "un asistent",
 	"and": "și",
 	"and {{COUNT}} more": "și {{COUNT}} mai multe",
@@ -59,6 +60,8 @@
 	"API Key": "Cheie API",
 	"API Key created.": "Cheie API creată.",
 	"API keys": "Chei API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Aprilie",
 	"Archive": "Arhivează",
 	"Archive All Chats": "Arhivează Toate Conversațiile",
@@ -71,8 +74,12 @@
 	"Assistant": "Asistent",
 	"Attach file": "Atașează fișier",
 	"Attention to detail": "Atenție la detalii",
+	"Attribute for Username": "",
 	"Audio": "Audio",
 	"August": "August",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Copiere Automată a Răspunsului în Clipboard",
 	"Auto-playback response": "Redare automată a răspunsului",
 	"Automatic1111": "Automatic1111 este un proiect popular pentru interfața grafică a utilizatorului a modelelor de difuzie stabilă. Aceasta oferă o interfață web pentru a genera imagini folosind AI și este utilizată pe scară largă pentru a experimenta cu generarea de artă AI.",
 	"AUTOMATIC1111 Api Auth String": "Șir de Autentificare API AUTOMATIC1111",
@@ -98,6 +105,7 @@
 	"Camera": "Cameră",
 	"Cancel": "Anulează",
 	"Capabilities": "Capabilități",
+	"Certificate Path": "",
 	"Change Password": "Schimbă Parola",
 	"Character": "Caracter",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Suprapunere Bloc",
 	"Chunk Params": "Parametri Bloc",
 	"Chunk Size": "Dimensiune Bloc",
+	"Ciphers": "",
 	"Citation": "Citație",
 	"Clear memory": "Șterge memoria",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Apasă aici pentru ajutor.",
 	"Click here to": "Apasă aici pentru",
 	"Click here to download user import template file.": "Apasă aici pentru a descărca fișierul șablon de import utilizator.",
@@ -153,8 +163,11 @@
 	"Context Length": "Lungime Context",
 	"Continue Response": "Continuă Răspunsul",
 	"Continue with {{provider}}": "Continuă cu {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Controlează modul în care textul mesajului este divizat pentru cererile TTS. 'Punctuation' împarte în propoziții, 'paragraphs' împarte în paragrafe, iar 'none' menține mesajul ca un șir unic.",
 	"Controls": "Controale",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Copiat",
 	"Copied shared chat URL to clipboard!": "URL-ul conversației partajate a fost copiat în clipboard!",
 	"Copied to clipboard": "Copiat în clipboard",
@@ -164,6 +177,7 @@
 	"Copy Link": "Copiază Link",
 	"Copy to clipboard": "Copiază în clipboard",
 	"Copying to clipboard was successful!": "Copierea în clipboard a fost realizată cu succes!",
+	"Create a knowledge base": "",
 	"Create a model": "Creează un model",
 	"Create Account": "Creează Cont",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Creat la",
 	"Created At": "Creat La",
 	"Created by": "Creat de",
-	"Create a knowledge base": "",
 	"CSV Import": "Import CSV",
 	"Current Model": "Model Curent",
 	"Current Password": "Parola Curentă",
@@ -189,6 +202,8 @@
 	"Default Model": "Model Implicit",
 	"Default model updated": "Modelul implicit a fost actualizat",
 	"Default Prompt Suggestions": "Sugestii de Prompt Implicite",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Rolul Implicit al Utilizatorului",
 	"Delete": "Șterge",
 	"Delete a model": "Șterge un model",
@@ -204,8 +219,8 @@
 	"Delete User": "Șterge Utilizatorul",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} șters",
 	"Deleted {{name}}": "{{name}} șters",
-	"Description": "Descriere",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Descriere",
 	"Didn't fully follow instructions": "Nu a urmat complet instrucțiunile",
 	"Disabled": "Dezactivat",
 	"Discover a function": "Descoperă o funcție",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Motor de Model de Încapsulare",
 	"Embedding model set to \"{{embedding_model}}\"": "Modelul de încapsulare setat la \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Activează Partajarea Comunitară",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Activează Evaluarea Mesajelor",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Activează Înscrierile Noi",
 	"Enable Web Search": "Activează Căutarea pe Web",
 	"Enable Web Search Query Generation": "Activare Generare Cerere de Căutare Web",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Introduceți mesajul pentru {{role}} aici",
 	"Enter a detail about yourself for your LLMs to recall": "Introduceți un detaliu despre dvs. pe care LLM-urile să-l rețină",
 	"Enter api auth string (e.g. username:password)": "Introduceți șirul de autentificare API (de ex. username:password)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Introduceți Cheia API Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Introduceți Scara CFG (de ex. 7.0)",
 	"Enter Chunk Overlap": "Introduceți Suprapunerea Blocului",
 	"Enter Chunk Size": "Introduceți Dimensiunea Blocului",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Introduceți cheia API SearchApi",
 	"Enter SearchApi Engine": "Introduceți motorul SearchApi",
 	"Enter Searxng Query URL": "Introduceți URL-ul Interogării Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Introduceți Cheia API Serper",
 	"Enter Serply API Key": "Introduceți Cheia API Serply",
 	"Enter Serpstack API Key": "Introduceți Cheia API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Introduceți secvența de oprire",
 	"Enter system prompt": "Introduceți promptul de sistem",
 	"Enter Tavily API Key": "Introduceți Cheia API Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "Introduceți mesajul dvs.",
 	"Enter Your Password": "Introduceți Parola Dvs.",
 	"Enter Your Role": "Introduceți Rolul Dvs.",
+	"Enter Your Username": "",
 	"Error": "Eroare",
 	"ERROR": "EROARE",
 	"Evaluations": "Evaluări",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "Exclude",
 	"Experimental": "Experimental",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "Ajută-ne să creăm cel mai bun clasament al comunității împărtășind istoricul tău de feedback!",
 	"Hide": "Ascunde",
 	"Hide Model": "Ascunde Modelul",
+	"Host": "",
 	"How can I help you today?": "Cum te pot ajuta astăzi?",
 	"Hybrid Search": "Căutare Hibridă",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Recunosc că am citit și înțeleg implicațiile acțiunii mele. Sunt conștient de riscurile asociate cu executarea codului arbitrar și am verificat fiabilitatea sursei.",
@@ -396,6 +427,7 @@
 	"Include": "Include",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Includeți flag-ul `--api-auth` când rulați stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Includeți flag-ul `--api` când rulați stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Informații",
 	"Input commands": "Comenzi de intrare",
 	"Install from Github URL": "Instalează de la URL-ul Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Cunoștințele au fost șterse cu succes.",
 	"Knowledge reset successfully.": "Resetarea cunoștințelor a fost efectuată cu succes.",
 	"Knowledge updated successfully": "Cunoașterea a fost actualizată cu succes",
+	"Label": "",
 	"Landing Page Mode": "Modul Pagină de Aterizare",
 	"Language": "Limbă",
 	"Last Active": "Ultima Activitate",
 	"Last Modified": "Ultima Modificare",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "Tabel de clasament",
 	"Leave empty for unlimited": "Lăsați gol pentru nelimitat",
 	"Leave empty to include all models or select specific models": "Lăsați gol pentru a include toate modelele sau selectați modele specifice",
@@ -488,8 +523,8 @@
 	"More": "Mai multe",
 	"Move to Top": "Mută în partea de sus",
 	"Name": "Nume",
-	"Name your model": "Denumirea modelului",
 	"Name your knowledge base": "",
+	"Name your model": "Denumirea modelului",
 	"New Chat": "Conversație Nouă",
 	"New folder": "Folder nou",
 	"New Password": "Parolă Nouă",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "Te rog să introduci un mesaj",
 	"Please fill in all fields.": "Vă rugăm să completați toate câmpurile.",
 	"Please select a reason": "Vă rugăm să selectați un motiv",
+	"Port": "",
 	"Positive attitude": "Atitudine pozitivă",
 	"Previous 30 days": "Ultimele 30 de zile",
 	"Previous 7 days": "Ultimele 7 zile",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Citește cu Voce Tare",
 	"Record voice": "Înregistrează vocea",
 	"Redirecting you to OpenWebUI Community": "Vă redirecționăm către Comunitatea OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referiți-vă la dvs. ca \"Utilizator\" (de ex., \"Utilizatorul învață spaniolă\")",
 	"References from": "Referințe din",
 	"Refused when it shouldn't have": "Refuzat când nu ar fi trebuit",
@@ -606,7 +643,6 @@
 	"Reset": "Resetează",
 	"Reset Upload Directory": "Resetează Directorul de Încărcare",
 	"Reset Vector Storage/Knowledge": "Resetarea Stocării/Vectoului de Cunoștințe",
-	"Auto-Copy Response to Clipboard": "Copiere Automată a Răspunsului în Clipboard",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Notificările de răspuns nu pot fi activate deoarece permisiunile site-ului au fost refuzate. Vă rugăm să vizitați setările browserului pentru a acorda accesul necesar.",
 	"Response splitting": "Împărțirea răspunsurilor",
 	"Result": "Rezultat",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Derulați până jos când comutați între ramuri.",
 	"Search": "Caută",
 	"Search a model": "Caută un model",
+	"Search Base": "",
 	"Search Chats": "Caută în Conversații",
 	"Search Collection": "Căutare Colecție",
+	"Search Filters": "",
 	"search for tags": "caută etichete",
 	"Search Functions": "Caută Funcții",
 	"Search Knowledge": "Căutare Cunoștințe",
 	"Search Models": "Caută Modele",
+	"Search options": "",
 	"Search Prompts": "Caută Prompturi",
 	"Search Query Generation Prompt": "Prompt de Generare Interogare de Căutare",
 	"Search Result Count": "Număr Rezultate Căutare",
 	"Search Tools": "Caută Instrumente",
-	"Search options": "",
 	"SearchApi API Key": "Cheie API pentru SearchApi",
 	"SearchApi Engine": "Motorul SearchApi",
 	"Searched {{count}} sites_one": "{{count}} site căutat",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "Setare Programatorului de Sarcini",
 	"Set Steps": "Setează Pași",
 	"Set Task Model": "Setează Model de Sarcină",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Setează Voce",
 	"Set whisper model": "Setează modelul whisper",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Setări",
 	"Settings saved successfully!": "Setările au fost salvate cu succes!",
 	"Share": "Partajează",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "Creativitate expusă",
 	"Sign in": "Autentificare",
 	"Sign in to {{WEBUI_NAME}}": "Conectează-te la {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Deconectare",
 	"Sign up": "Înregistrare",
 	"Sign up to {{WEBUI_NAME}}": "Înregistrează-te la {{WEBUI_NAME}}",
@@ -726,6 +772,7 @@
 	"System Prompt": "Prompt de Sistem",
 	"Tags": "Etichete",
 	"Tags Generation Prompt": "Generarea de Etichete Prompt",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Apasă pentru a întrerupe",
 	"Tavily API Key": "Cheie API Tavily",
 	"Tell us more:": "Spune-ne mai multe:",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "Motor de Conversie a Textului în Vorbire",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Mulțumim pentru feedback!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Dezvoltatorii din spatele acestui plugin sunt voluntari pasionați din comunitate. Dacă considerați acest plugin util, vă rugăm să luați în considerare contribuția la dezvoltarea sa.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Clasamentul de evaluare se bazează pe sistemul de rating Elo și este actualizat în timp real.",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Clasamentul este în prezent în versiune beta și este posibil să ajustăm calculul evaluărilor pe măsură ce rafinăm algoritmul.",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Dimensiunea maximă a fișierului în MB. Dacă dimensiunea fișierului depășește această limită, fișierul nu va fi încărcat.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Numărul maxim de fișiere care pot fi utilizate simultan în chat. Dacă numărul de fișiere depășește această limită, fișierele nu vor fi încărcate.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Scorul ar trebui să fie o valoare între 0.0 (0%) și 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Temă",
 	"Thinking...": "Gândește...",
 	"This action cannot be undone. Do you wish to continue?": "Această acțiune nu poate fi anulată. Doriți să continuați?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Acest lucru asigură că conversațiile dvs. valoroase sunt salvate în siguranță în baza de date a backend-ului dvs. Mulțumim!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Aceasta este o funcție experimentală, poate să nu funcționeze așa cum vă așteptați și este supusă schimbării în orice moment.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Această opțiune va șterge toate fișierelor existente din colecție și le va înlocui cu fișierele nou încărcate.",
 	"This response was generated by \"{{model}}\"": "Acest răspuns a fost generat de \"{{model}}\"",
 	"This will delete": "Aceasta va șterge",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "Generare Automată a Titlului",
 	"Title cannot be an empty string.": "Titlul nu poate fi un șir gol.",
 	"Title Generation Prompt": "Prompt de Generare a Titlului",
+	"TLS": "",
 	"To access the available model names for downloading,": "Pentru a accesa numele modelelor disponibile pentru descărcare,",
 	"To access the GGUF models available for downloading,": "Pentru a accesa modelele GGUF disponibile pentru descărcare,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Pentru a accesa WebUI, vă rugăm să contactați administratorul. Administratorii pot gestiona statusurile utilizatorilor din Panoul de Administrare.",
@@ -829,6 +884,7 @@
 	"User": "Utilizator",
 	"User location successfully retrieved.": "Localizarea utilizatorului a fost preluată cu succes.",
 	"User Permissions": "Permisiuni Utilizator",
+	"Username": "",
 	"Users": "Utilizatori",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Folosind modelul implicit de arenă cu toate modelele. Faceți clic pe butonul plus pentru a adăuga modele personalizate.",
 	"Utilize": "Utilizează",
@@ -853,17 +909,20 @@
 	"Webhook URL": "URL Webhook",
 	"WebUI Settings": "Setări WebUI",
 	"WebUI will make requests to": "WebUI va face cereri către",
-	"What’s New in": "Ce e Nou în",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Ce e Nou în",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Local)",
 	"Widescreen Mode": "Mod Ecran Larg",
 	"Won": "Câștigat",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Spațiu de Lucru",
 	"Write a prompt suggestion (e.g. Who are you?)": "Scrieți o sugestie de prompt (de ex. Cine ești?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Scrieți un rezumat în 50 de cuvinte care rezumă [subiect sau cuvânt cheie].",
 	"Write something...": "Scrie ceva...",
+	"Write your model template content here": "",
 	"Yesterday": "Ieri",
 	"You": "Tu",
 	"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.",
@@ -878,4 +937,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Întreaga dvs. contribuție va merge direct la dezvoltatorul plugin-ului; Open WebUI nu ia niciun procent. Cu toate acestea, platforma de finanțare aleasă ar putea avea propriile taxe.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Setări Încărcător Youtube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Разрешить прерывание голоса во время вызова",
 	"alphanumeric characters and hyphens": "буквенно цифровые символы и дефисы",
 	"Already have an account?": "У вас уже есть учетная запись?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "ассистент",
 	"and": "и",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "Ключ API",
 	"API Key created.": "Ключ API создан.",
 	"API keys": "Ключи API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Апрель",
 	"Archive": "Архив",
 	"Archive All Chats": "Архивировать все чаты",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Прикрепить файл",
 	"Attention to detail": "Внимание к деталям",
+	"Attribute for Username": "",
 	"Audio": "Аудио",
 	"August": "Август",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Автоматическое копирование ответа в буфер обмена",
 	"Auto-playback response": "Автоматическое воспроизведение ответа",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "строка авторизации API AUTOMATIC1111",
@@ -98,6 +105,7 @@
 	"Camera": "Камера",
 	"Cancel": "Отменить",
 	"Capabilities": "Возможности",
+	"Certificate Path": "",
 	"Change Password": "Изменить пароль",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Перекрытие фрагментов",
 	"Chunk Params": "Параметры фрагментов",
 	"Chunk Size": "Размер фрагмента",
+	"Ciphers": "",
 	"Citation": "Цитирование",
 	"Clear memory": "Очистить воспоминания",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Нажмите здесь для получения помощи.",
 	"Click here to": "Нажмите здесь, чтобы",
 	"Click here to download user import template file.": "Нажмите здесь, чтобы загрузить файл шаблона импорта пользователя",
@@ -153,8 +163,11 @@
 	"Context Length": "Длина контекста",
 	"Continue Response": "Продолжить ответ",
 	"Continue with {{provider}}": "Продолжить с {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Управляйте разделением текста сообщения для запросов TTS. 'Пунктуация' разделяет на предложения, 'абзацы' - разделяет на абзацы, а 'нет' сохраняет сообщение в виде одной строки.",
 	"Controls": "Управление",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Скопировано",
 	"Copied shared chat URL to clipboard!": "Копирование в буфер обмена выполнено успешно!",
 	"Copied to clipboard": "Скопировано в буфер обмена",
@@ -164,6 +177,7 @@
 	"Copy Link": "Копировать ссылку",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Копирование в буфер обмена прошло успешно!",
+	"Create a knowledge base": "",
 	"Create a model": "Создание модели",
 	"Create Account": "Создать аккаунт",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Создано",
 	"Created At": "Создано",
 	"Created by": "Создано",
-	"Create a knowledge base": "",
 	"CSV Import": "Импорт CSV",
 	"Current Model": "Текущая модель",
 	"Current Password": "Текущий пароль",
@@ -189,6 +202,8 @@
 	"Default Model": "Модель по умолчанию",
 	"Default model updated": "Модель по умолчанию обновлена",
 	"Default Prompt Suggestions": "Предложения промптов по умолчанию",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Роль пользователя по умолчанию",
 	"Delete": "Удалить",
 	"Delete a model": "Удалить модель",
@@ -204,8 +219,8 @@
 	"Delete User": "Удалить пользователя",
 	"Deleted {{deleteModelTag}}": "Удалено {{deleteModelTag}}",
 	"Deleted {{name}}": "Удалено {{name}}",
-	"Description": "Описание",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Описание",
 	"Didn't fully follow instructions": "Не полностью следует инструкциям",
 	"Disabled": "Отключено",
 	"Discover a function": "Найти функцию",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Движок модели встраивания",
 	"Embedding model set to \"{{embedding_model}}\"": "Модель встраивания установлена в \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Включить совместное использование",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Разрешить оценку ответов",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Разрешить новые регистрации",
 	"Enable Web Search": "Включить поиск в Интернете",
 	"Enable Web Search Query Generation": "Включить генерацию веб-поисковых запросов",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Введите сообщение {{role}} здесь",
 	"Enter a detail about yourself for your LLMs to recall": "Введите детали о себе, чтобы LLMs могли запомнить",
 	"Enter api auth string (e.g. username:password)": "Введите строку авторизации api (например, username:password)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Введите ключ API поиска Brave",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Введите CFG Scale (например, 7.0)",
 	"Enter Chunk Overlap": "Введите перекрытие фрагмента",
 	"Enter Chunk Size": "Введите размер фрагмента",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Введите ключ API SearchApi",
 	"Enter SearchApi Engine": "Введите SearchApi движок",
 	"Enter Searxng Query URL": "Введите URL-адрес запроса Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Введите ключ API Serper",
 	"Enter Serply API Key": "Введите ключ API Serply",
 	"Enter Serpstack API Key": "Введите ключ API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Введите последовательность остановки",
 	"Enter system prompt": "Введите системный промпт",
 	"Enter Tavily API Key": "Введите ключ API Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "Введите ваше сообщение",
 	"Enter Your Password": "Введите ваш пароль",
 	"Enter Your Role": "Введите вашу роль",
+	"Enter Your Username": "",
 	"Error": "Ошибка",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Экспериментальное",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Скрыть",
 	"Hide Model": "Скрыть модель",
+	"Host": "",
 	"How can I help you today?": "Чем я могу помочь вам сегодня?",
 	"Hybrid Search": "Гибридная поисковая система",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Я подтверждаю, что прочитал и осознаю последствия своих действий. Я осознаю риски, связанные с выполнением произвольного кода, и я проверил достоверность источника.",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Добавьте флаг '--api-auth' при запуске stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Добавьте флаг `--api` при запуске stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Информация",
 	"Input commands": "Введите команды",
 	"Install from Github URL": "Установка с URL-адреса Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Язык",
 	"Last Active": "Последний активный",
 	"Last Modified": "Последнее изменение",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "Оставьте пустым для неограниченного",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Больше",
 	"Move to Top": "Поднять вверх",
 	"Name": "Имя",
-	"Name your model": "Присвойте модели имя",
 	"Name your knowledge base": "",
+	"Name your model": "Присвойте модели имя",
 	"New Chat": "Новый чат",
 	"New folder": "",
 	"New Password": "Новый пароль",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "Пожалуйста, выберите причину",
+	"Port": "",
 	"Positive attitude": "Позитивный настрой",
 	"Previous 30 days": "Предыдущие 30 дней",
 	"Previous 7 days": "Предыдущие 7 дней",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Прочитать вслух",
 	"Record voice": "Записать голос",
 	"Redirecting you to OpenWebUI Community": "Перенаправляем вас в сообщество OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Называйте себя \"User\" (например, \"User is learning Spanish\").",
 	"References from": "",
 	"Refused when it shouldn't have": "Отказано в доступе, когда это не должно было произойти",
@@ -606,7 +643,6 @@
 	"Reset": "Сбросить",
 	"Reset Upload Directory": "Сбросить каталог загрузок",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Автоматическое копирование ответа в буфер обмена",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Уведомления об ответах не могут быть активированы, поскольку доступ к веб-сайту был заблокирован. Пожалуйста, перейдите к настройкам своего браузера, чтобы предоставить необходимый доступ.",
 	"Response splitting": "Разделение ответов",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Прокручивать вниз при переключении веток",
 	"Search": "Поиск",
 	"Search a model": "Поиск модели",
+	"Search Base": "",
 	"Search Chats": "Поиск в чатах",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Поиск функций",
 	"Search Knowledge": "",
 	"Search Models": "Поиск моделей",
+	"Search options": "",
 	"Search Prompts": "Поиск промптов",
 	"Search Query Generation Prompt": "Промпт для генерации поискового запроса",
 	"Search Result Count": "Количество результатов поиска",
 	"Search Tools": "Поиск инструментов",
-	"Search options": "",
 	"SearchApi API Key": "Ключ SearchApi API",
 	"SearchApi Engine": "Движок SearchApi",
 	"Searched {{count}} sites_one": "Просмотрено {count}} sites_one",
@@ -685,8 +723,15 @@
 	"Set Scheduler": "Установить планировщик",
 	"Set Steps": "Установить шаги",
 	"Set Task Model": "Установить модель задачи",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Установить голос",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Настройки",
 	"Settings saved successfully!": "Настройки успешно сохранены!",
 	"Share": "Поделиться",
@@ -702,6 +747,7 @@
 	"Showcased creativity": "Продемонстрирован творческий подход",
 	"Sign in": "Войти",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Выйти",
 	"Sign up": "Зарегистрироваться",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -727,6 +773,7 @@
 	"System Prompt": "Системный промпт",
 	"Tags": "Теги",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Нажмите, чтобы прервать",
 	"Tavily API Key": "Ключ API Tavily",
 	"Tell us more:": "Пожалуйста, расскажите нам больше:",
@@ -737,17 +784,24 @@
 	"Text-to-Speech Engine": "Система синтеза речи",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Спасибо за вашу обратную связь!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Разработчики этого плагина - увлеченные волонтеры из сообщества. Если вы считаете этот плагин полезным, пожалуйста, подумайте о том, чтобы внести свой вклад в его разработку.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Максимальный размер файла в МБ. Если размер файла превысит это ограничение, файл не будет загружен.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Максимальное количество файлов, которые могут быть использованы одновременно в чате. Если количество файлов превысит это ограничение, файлы не будут загружены.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Оценка должна быть значением между 0,0 (0%) и 1,0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Тема",
 	"Thinking...": "Думаю...",
 	"This action cannot be undone. Do you wish to continue?": "Это действие нельзя отменить. Вы хотите продолжить?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Это обеспечивает сохранение ваших ценных разговоров в безопасной базе данных на вашем сервере. Спасибо!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Это экспериментальная функция, она может работать не так, как ожидалось, и может быть изменена в любое время.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Это приведет к удалению",
@@ -763,6 +817,7 @@
 	"Title Auto-Generation": "Автогенерация заголовка",
 	"Title cannot be an empty string.": "Заголовок не может быть пустой строкой.",
 	"Title Generation Prompt": "Промпт для генерации заголовка",
+	"TLS": "",
 	"To access the available model names for downloading,": "Чтобы получить доступ к доступным для загрузки именам моделей,",
 	"To access the GGUF models available for downloading,": "Чтобы получить доступ к моделям GGUF, доступным для загрузки,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Чтобы получить доступ к WebUI, пожалуйста, обратитесь к администратору. Администраторы могут управлять статусами пользователей из панели администратора.",
@@ -830,6 +885,7 @@
 	"User": "",
 	"User location successfully retrieved.": "Местоположение пользователя успешно получено.",
 	"User Permissions": "Права пользователя",
+	"Username": "",
 	"Users": "Пользователи",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Используйте",
@@ -854,17 +910,20 @@
 	"Webhook URL": "URL-адрес веб-хука",
 	"WebUI Settings": "Настройки WebUI",
 	"WebUI will make requests to": "WebUI будет отправлять запросы на",
-	"What’s New in": "Что нового в",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Что нового в",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Локально)",
 	"Widescreen Mode": "Широкоэкранный режим",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Рабочее пространство",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишите предложение промпта (например, Кто вы?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишите резюме в 50 словах, которое кратко описывает [тему или ключевое слово].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Вчера",
 	"You": "Вы",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Одновременно вы можете общаться только с максимальным количеством файлов {{maxCount}}.",
@@ -879,4 +938,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш взнос будет направлен непосредственно разработчику плагина; Open WebUI не взимает никаких процентов. Однако выбранная платформа финансирования может иметь свои собственные сборы.",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "Настройки загрузчика YouTube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "алфанумерички знакови и цртице",
 	"Already have an account?": "Већ имате налог?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "помоћник",
 	"and": "и",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API кључ",
 	"API Key created.": "API кључ направљен.",
 	"API keys": "API кључеви",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Април",
 	"Archive": "Архива",
 	"Archive All Chats": "Архивирај све ћаскања",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Приложи датотеку",
 	"Attention to detail": "Пажња на детаље",
+	"Attribute for Username": "",
 	"Audio": "Звук",
 	"August": "Август",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Самостално копирање одговора у оставу",
 	"Auto-playback response": "Самостално пуштање одговора",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "Откажи",
 	"Capabilities": "Могућности",
+	"Certificate Path": "",
 	"Change Password": "Промени лозинку",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Преклапање делова",
 	"Chunk Params": "Параметри делова",
 	"Chunk Size": "Величина дела",
+	"Ciphers": "",
 	"Citation": "Цитат",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Кликните овде за помоћ.",
 	"Click here to": "Кликните овде да",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "Дужина контекста",
 	"Continue Response": "Настави одговор",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "Адреса дељеног ћаскања ископирана у оставу!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Копирај везу",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Успешно копирање у оставу!",
+	"Create a knowledge base": "",
 	"Create a model": "Креирање модела",
 	"Create Account": "Направи налог",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Направљено у",
 	"Created At": "Направљено у",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "Тренутни модел",
 	"Current Password": "Тренутна лозинка",
@@ -189,6 +202,8 @@
 	"Default Model": "Подразумевани модел",
 	"Default model updated": "Подразумевани модел ажуриран",
 	"Default Prompt Suggestions": "Подразумевани предлози упита",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Подразумевана улога корисника",
 	"Delete": "Обриши",
 	"Delete a model": "Обриши модел",
@@ -204,8 +219,8 @@
 	"Delete User": "Обриши корисника",
 	"Deleted {{deleteModelTag}}": "Обрисано {{deleteModelTag}}",
 	"Deleted {{name}}": "Избрисано {{наме}}",
-	"Description": "Опис",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Опис",
 	"Didn't fully follow instructions": "Упутства нису праћена у потпуности",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Мотор модела уградње",
 	"Embedding model set to \"{{embedding_model}}\"": "Модел уградње подешен на \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Омогући дељење заједнице",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Омогући нове пријаве",
 	"Enable Web Search": "Омогући Wеб претрагу",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Унесите {{role}} поруку овде",
 	"Enter a detail about yourself for your LLMs to recall": "Унесите детаље за себе да ће LLMs преузимати",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Унесите БРАВЕ Сеарцх АПИ кључ",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Унесите преклапање делова",
 	"Enter Chunk Size": "Унесите величину дела",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Унесите УРЛ адресу Сеарxнг упита",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Унесите Серпер АПИ кључ",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "Унесите Серпстацк АПИ кључ",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Унесите секвенцу заустављања",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Унесите вашу лозинку",
 	"Enter Your Role": "Унесите вашу улогу",
+	"Enter Your Username": "",
 	"Error": "Грешка",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Експериментално",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Сакриј",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "Како могу да вам помогнем данас?",
 	"Hybrid Search": "Хибридна претрага",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Укључи `--api` заставицу при покретању stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Инфо",
 	"Input commands": "Унеси наредбе",
 	"Install from Github URL": "Инсталирај из Гитхуб УРЛ адресе",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Језик",
 	"Last Active": "Последња активност",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Више",
 	"Move to Top": "",
 	"Name": "Име",
-	"Name your model": "Наведи свој модел",
 	"Name your knowledge base": "",
+	"Name your model": "Наведи свој модел",
 	"New Chat": "Ново ћаскање",
 	"New folder": "",
 	"New Password": "Нова лозинка",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Позитиван став",
 	"Previous 30 days": "Претходних 30 дана",
 	"Previous 7 days": "Претходних 7 дана",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Прочитај наглас",
 	"Record voice": "Сними глас",
 	"Redirecting you to OpenWebUI Community": "Преусмеравање на OpenWebUI заједницу",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "Одбијено када није требало",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Самостално копирање одговора у оставу",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Претражи",
 	"Search a model": "Претражи модел",
+	"Search Base": "",
 	"Search Chats": "Претражи ћаскања",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "Модели претраге",
+	"Search options": "",
 	"Search Prompts": "Претражи упите",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "Број резултата претраге",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Претражио {{цоунт}} ситес_оне",
@@ -684,8 +722,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Подеси кораке",
 	"Set Task Model": "Постављање модела задатка",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Подеси глас",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Подешавања",
 	"Settings saved successfully!": "Подешавања успешно сачувана!",
 	"Share": "Подели",
@@ -701,6 +746,7 @@
 	"Showcased creativity": "Приказана креативност",
 	"Sign in": "Пријави се",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Одјави се",
 	"Sign up": "Региструј се",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -726,6 +772,7 @@
 	"System Prompt": "Системски упит",
 	"Tags": "Ознаке",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "Реците нам више:",
@@ -736,17 +783,24 @@
 	"Text-to-Speech Engine": "Мотор за текст у говор",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Хвала на вашем коментару!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Резултат треба да буде вредност између 0.0 (0%) и 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Тема",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Ово осигурава да су ваши вредни разговори безбедно сачувани у вашој бекенд бази података. Хвала вам!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -762,6 +816,7 @@
 	"Title Auto-Generation": "Самостално стварање наслова",
 	"Title cannot be an empty string.": "Наслов не може бити празан низ.",
 	"Title Generation Prompt": "Упит за стварање наслова",
+	"TLS": "",
 	"To access the available model names for downloading,": "Да бисте приступили доступним именима модела за преузимање,",
 	"To access the GGUF models available for downloading,": "Да бисте приступили GGUF моделима доступним за преузимање,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -829,6 +884,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "Овлашћења корисника",
+	"Username": "",
 	"Users": "Корисници",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Искористи",
@@ -853,17 +909,20 @@
 	"Webhook URL": "Адреса веб-куке",
 	"WebUI Settings": "Подешавања веб интерфејса",
 	"WebUI will make requests to": "Веб интерфејс ће слати захтеве на",
-	"What’s New in": "Шта је ново у",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Шта је ново у",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Радни простор",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишите предлог упита (нпр. „ко си ти?“)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишите сажетак у 50 речи који резимира [тему или кључну реч].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Јуче",
 	"You": "Ти",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -878,4 +937,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Јутјуб",
 	"Youtube Loader Settings": "Подешавања Јутјуб учитавача"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "alfanumeriska tecken och bindestreck",
 	"Already have an account?": "Har du redan ett konto?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "en assistent",
 	"and": "och",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API-nyckel",
 	"API Key created.": "API-nyckel skapad.",
 	"API keys": "API-nycklar",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "april",
 	"Archive": "Arkiv",
 	"Archive All Chats": "Arkivera alla chattar",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Bifoga fil",
 	"Attention to detail": "Detaljerad uppmärksamhet",
+	"Attribute for Username": "",
 	"Audio": "Ljud",
 	"August": "augusti",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Svara AutoCopy till urklipp",
 	"Auto-playback response": "Automatisk uppspelning",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "Avbryt",
 	"Capabilities": "Kapaciteter",
+	"Certificate Path": "",
 	"Change Password": "Ändra lösenord",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Överlappning",
 	"Chunk Params": "Chunk-parametrar",
 	"Chunk Size": "Chunk-storlek",
+	"Ciphers": "",
 	"Citation": "Citat",
 	"Clear memory": "Rensa minnet",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Klicka här för hjälp.",
 	"Click here to": "Klicka här för att",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "Kontextlängd",
 	"Continue Response": "Fortsätt svar",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "Kopierad delad chatt-URL till urklipp!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Kopiera länk",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Kopiering till urklipp lyckades!",
+	"Create a knowledge base": "",
 	"Create a model": "Skapa en modell",
 	"Create Account": "Skapa konto",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Skapad",
 	"Created At": "Skapad",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "Aktuell modell",
 	"Current Password": "Nuvarande lösenord",
@@ -189,6 +202,8 @@
 	"Default Model": "Standardmodell",
 	"Default model updated": "Standardmodell uppdaterad",
 	"Default Prompt Suggestions": "Standardinstruktionsförslag",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Standardanvändarroll",
 	"Delete": "Radera",
 	"Delete a model": "Ta bort en modell",
@@ -204,8 +219,8 @@
 	"Delete User": "Radera användare",
 	"Deleted {{deleteModelTag}}": "Raderad {{deleteModelTag}}",
 	"Deleted {{name}}": "Borttagen {{name}}",
-	"Description": "Beskrivning",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Beskrivning",
 	"Didn't fully follow instructions": "Följde inte instruktionerna",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Motor för inbäddningsmodell",
 	"Embedding model set to \"{{embedding_model}}\"": "Inbäddningsmodell inställd på \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Aktivera community-delning",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Aktivera nya registreringar",
 	"Enable Web Search": "Aktivera webbsökning",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Skriv {{role}} meddelande här",
 	"Enter a detail about yourself for your LLMs to recall": "Skriv en detalj om dig själv för att dina LLMs ska komma ihåg",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Ange API-nyckel för Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Ange chunköverlappning",
 	"Enter Chunk Size": "Ange chunkstorlek",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Ange Searxng Query URL",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Ange Serper API-nyckel",
 	"Enter Serply API Key": "Ange Serply API-nyckel",
 	"Enter Serpstack API Key": "Ange Serpstack API-nyckel",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Ange stoppsekvens",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "Ange ditt lösenord",
 	"Enter Your Role": "Ange din roll",
+	"Enter Your Username": "",
 	"Error": "Fel",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Experimentell",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Dölj",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "Hur kan jag hjälpa dig idag?",
 	"Hybrid Search": "Hybrid sökning",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Inkludera flaggan `--api` när du kör stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Information",
 	"Input commands": "Indatakommandon",
 	"Install from Github URL": "Installera från Github-URL",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Språk",
 	"Last Active": "Senast aktiv",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Mer",
 	"Move to Top": "",
 	"Name": "Namn",
-	"Name your model": "Namnge din modell",
 	"Name your knowledge base": "",
+	"Name your model": "Namnge din modell",
 	"New Chat": "Ny chatt",
 	"New folder": "",
 	"New Password": "Nytt lösenord",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Positivt inställning",
 	"Previous 30 days": "Föregående 30 dagar",
 	"Previous 7 days": "Föregående 7 dagar",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Läs igenom",
 	"Record voice": "Spela in röst",
 	"Redirecting you to OpenWebUI Community": "Omdirigerar dig till OpenWebUI Community",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Referera till dig själv som \"Användare\" (t.ex. \"Användaren lär sig spanska\")",
 	"References from": "",
 	"Refused when it shouldn't have": "Avvisades när det inte borde ha gjort det",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "Återställ uppladdningskatalog",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Svara AutoCopy till urklipp",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "Sök",
 	"Search a model": "Sök efter en modell",
+	"Search Base": "",
 	"Search Chats": "Sök i chattar",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "Sök modeller",
+	"Search options": "",
 	"Search Prompts": "Sök instruktioner",
 	"Search Query Generation Prompt": "Instruktion för generering av sökfrågor",
 	"Search Result Count": "Antal sökresultat",
 	"Search Tools": "Sökverktyg",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "Sökte på {{count}} sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Ange steg",
 	"Set Task Model": "Ange uppgiftsmodell",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Ange röst",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Inställningar",
 	"Settings saved successfully!": "Inställningar sparades framgångsrikt!",
 	"Share": "Dela",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Visade kreativitet",
 	"Sign in": "Logga in",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Logga ut",
 	"Sign up": "Registrera dig",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "Systeminstruktion",
 	"Tags": "Taggar",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "Berätta mer:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Text-till-tal-motor",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Tack för din feedback!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Betyget ska vara ett värde mellan 0.0 (0%) och 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Detta säkerställer att dina värdefulla samtal sparas säkert till din backend-databas. Tack!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Detta är en experimentell funktion som kanske inte fungerar som förväntat och som kan komma att ändras när som helst.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Automatisk generering av titel",
 	"Title cannot be an empty string.": "Titeln får inte vara en tom sträng.",
 	"Title Generation Prompt": "Instruktion för titelgenerering",
+	"TLS": "",
 	"To access the available model names for downloading,": "För att komma åt de tillgängliga modellnamnen för nedladdning,",
 	"To access the GGUF models available for downloading,": "För att komma åt de GGUF-modellerna som finns tillgängliga för nedladdning,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "För att få tillgång till WebUI, kontakta administratören. Administratörer kan hantera behörigheter från administrationspanelen.",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "Användarbehörigheter",
+	"Username": "",
 	"Users": "Användare",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Använd",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Webhook-URL",
 	"WebUI Settings": "WebUI-inställningar",
 	"WebUI will make requests to": "WebUI kommer att skicka förfrågningar till",
-	"What’s New in": "Vad är nytt i",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Vad är nytt i",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (lokal)",
 	"Widescreen Mode": "Bredbildsläge",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Arbetsyta",
 	"Write a prompt suggestion (e.g. Who are you?)": "Skriv ett instruktionsförslag (t.ex. Vem är du?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Skriv en sammanfattning på 50 ord som sammanfattar [ämne eller nyckelord].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Igår",
 	"You": "Dig",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Loader-inställningar"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "อนุญาตการแทรกเสียงในสาย",
 	"alphanumeric characters and hyphens": "อักขระตัวเลขและขีดกลาง",
 	"Already have an account?": "มีบัญชีอยู่แล้ว?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "ผู้ช่วย",
 	"and": "และ",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "คีย์ API",
 	"API Key created.": "สร้างคีย์ API แล้ว",
 	"API keys": "คีย์ API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "เมษายน",
 	"Archive": "เก็บถาวร",
 	"Archive All Chats": "เก็บถาวรการสนทนาทั้งหมด",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "แนบไฟล์",
 	"Attention to detail": "ใส่ใจในรายละเอียด",
+	"Attribute for Username": "",
 	"Audio": "เสียง",
 	"August": "สิงหาคม",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "ตอบสนองการคัดลอกอัตโนมัติไปยังคลิปบอร์ด",
 	"Auto-playback response": "ตอบสนองการเล่นอัตโนมัติ",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "สตริงการตรวจสอบ API ของ AUTOMATIC1111",
@@ -98,6 +105,7 @@
 	"Camera": "กล้อง",
 	"Cancel": "ยกเลิก",
 	"Capabilities": "ความสามารถ",
+	"Certificate Path": "",
 	"Change Password": "เปลี่ยนรหัสผ่าน",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "ทับซ้อนส่วนข้อมูล",
 	"Chunk Params": "พารามิเตอร์ส่วนข้อมูล",
 	"Chunk Size": "ขนาดส่วนข้อมูล",
+	"Ciphers": "",
 	"Citation": "การอ้างอิง",
 	"Clear memory": "ล้างความจำ",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "คลิกที่นี่เพื่อขอความช่วยเหลือ",
 	"Click here to": "คลิกที่นี่เพื่อ",
 	"Click here to download user import template file.": "คลิกที่นี่เพื่อดาวน์โหลดไฟล์แม่แบบนำเข้าผู้ใช้",
@@ -153,8 +163,11 @@
 	"Context Length": "ความยาวของบริบท",
 	"Continue Response": "ตอบสนองต่อไป",
 	"Continue with {{provider}}": "ดำเนินการต่อด้วย {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "การควบคุม",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "คัดลอก URL แชทที่แชร์ไปยังคลิปบอร์ดแล้ว!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "คัดลอกลิงก์",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "คัดลอกไปยังคลิปบอร์ดสำเร็จแล้ว!",
+	"Create a knowledge base": "",
 	"Create a model": "สร้างโมเดล",
 	"Create Account": "สร้างบัญชี",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "สร้างเมื่อ",
 	"Created At": "สร้างเมื่อ",
 	"Created by": "สร้างโดย",
-	"Create a knowledge base": "",
 	"CSV Import": "นำเข้า CSV",
 	"Current Model": "โมเดลปัจจุบัน",
 	"Current Password": "รหัสผ่านปัจจุบัน",
@@ -189,6 +202,8 @@
 	"Default Model": "โมเดลค่าเริ่มต้น",
 	"Default model updated": "อัปเดตโมเดลค่าเริ่มต้นแล้ว",
 	"Default Prompt Suggestions": "คำแนะนำพรอมต์ค่าเริ่มต้น",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "บทบาทผู้ใช้ค่าเริ่มต้น",
 	"Delete": "ลบ",
 	"Delete a model": "ลบโมเดล",
@@ -204,8 +219,8 @@
 	"Delete User": "ลบผู้ใช้",
 	"Deleted {{deleteModelTag}}": "ลบ {{deleteModelTag}}",
 	"Deleted {{name}}": "ลบ {{name}}",
-	"Description": "คำอธิบาย",
 	"Describe your knowledge base and objectives": "",
+	"Description": "คำอธิบาย",
 	"Didn't fully follow instructions": "ไม่ได้ปฏิบัติตามคำแนะนำทั้งหมด",
 	"Disabled": "ปิดใช้งาน",
 	"Discover a function": "ค้นหาฟังก์ชัน",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "เครื่องยนต์โมเดลการฝัง",
 	"Embedding model set to \"{{embedding_model}}\"": "ตั้งค่าโมเดลการฝังเป็น \"{{embedding_model}}\"",
 	"Enable Community Sharing": "เปิดใช้งานการแชร์ในชุมชน",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "เปิดใช้งานการสมัครใหม่",
 	"Enable Web Search": "เปิดใช้งานการค้นหาเว็บ",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "ใส่ข้อความ {{role}} ที่นี่",
 	"Enter a detail about yourself for your LLMs to recall": "ใส่รายละเอียดเกี่ยวกับตัวคุณสำหรับ LLMs ของคุณให้จดจำ",
 	"Enter api auth string (e.g. username:password)": "ใส่สตริงการตรวจสอบ API (เช่น username:password)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "ใส่คีย์ API ของ Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "ใส่การทับซ้อนส่วนข้อมูล",
 	"Enter Chunk Size": "ใส่ขนาดส่วนข้อมูล",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "ใส URL การค้นหาของ Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "ใส่คีย์ API ของ Serper",
 	"Enter Serply API Key": "ใส่คีย์ API ของ Serply",
 	"Enter Serpstack API Key": "ใส่คีย์ API ของ Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "ใส่ลำดับหยุด",
 	"Enter system prompt": "ใส่พรอมต์ระบบ",
 	"Enter Tavily API Key": "ใส่คีย์ API ของ Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "ใส่ข้อความของคุณ",
 	"Enter Your Password": "ใส่รหัสผ่านของคุณ",
 	"Enter Your Role": "ใส่บทบาทของคุณ",
+	"Enter Your Username": "",
 	"Error": "ข้อผิดพลาด",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "การทดลอง",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "ซ่อน",
 	"Hide Model": "ซ่อนโมเดล",
+	"Host": "",
 	"How can I help you today?": "วันนี้ฉันจะช่วยอะไรคุณได้บ้าง?",
 	"Hybrid Search": "การค้นหาแบบไฮบริด",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "ฉันรับทราบว่าฉันได้อ่านและเข้าใจผลกระทบของการกระทำของฉัน ฉันทราบถึงความเสี่ยงที่เกี่ยวข้องกับการเรียกใช้โค้ดโดยพลการและฉันได้ตรวจสอบความน่าเชื่อถือของแหล่งที่มาแล้ว",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "รวมแฟลก `--api-auth` เมื่อเรียกใช้ stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "รวมแฟลก `--api` เมื่อเรียกใช้ stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "ข้อมูล",
 	"Input commands": "คำสั่งป้อนข้อมูล",
 	"Install from Github URL": "ติดตั้งจาก URL ของ Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "ภาษา",
 	"Last Active": "ใช้งานล่าสุด",
 	"Last Modified": "แก้ไขล่าสุด",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "เพิ่มเติม",
 	"Move to Top": "",
 	"Name": "ชื่อ",
-	"Name your model": "ตั้งชื่อโมเดลของคุณ",
 	"Name your knowledge base": "",
+	"Name your model": "ตั้งชื่อโมเดลของคุณ",
 	"New Chat": "แชทใหม่",
 	"New folder": "",
 	"New Password": "รหัสผ่านใหม่",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "ทัศนคติด้านบวก",
 	"Previous 30 days": "30 วันที่ผ่านมา",
 	"Previous 7 days": "7 วันที่ผ่านมา",
@@ -589,6 +625,7 @@
 	"Read Aloud": "อ่านออกเสียง",
 	"Record voice": "บันทึกเสียง",
 	"Redirecting you to OpenWebUI Community": "กำลังเปลี่ยนเส้นทางคุณไปยังชุมชน OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "เรียกตัวเองว่า \"ผู้ใช้\" (เช่น \"ผู้ใช้กำลังเรียนภาษาสเปน\")",
 	"References from": "",
 	"Refused when it shouldn't have": "ปฏิเสธเมื่อไม่ควรทำ",
@@ -606,7 +643,6 @@
 	"Reset": "รีเซ็ต",
 	"Reset Upload Directory": "รีเซ็ตไดเร็กทอรีการอัปโหลด",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "ตอบสนองการคัดลอกอัตโนมัติไปยังคลิปบอร์ด",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "ไม่สามารถเปิดการแจ้งเตือนการตอบสนองได้เนื่องจากเว็บไซต์ปฏิเสธ กรุณาเข้าการตั้งค่าเบราว์เซอร์ของคุณเพื่อให้สิทธิ์การเข้าถึงที่จำเป็น",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "ค้นหา",
 	"Search a model": "ค้นหาโมเดล",
+	"Search Base": "",
 	"Search Chats": "ค้นหาแชท",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "ค้นหาฟังก์ชัน",
 	"Search Knowledge": "",
 	"Search Models": "ค้นหาโมเดล",
+	"Search options": "",
 	"Search Prompts": "ค้นหาพรอมต์",
 	"Search Query Generation Prompt": "พรอมต์การสร้างคำค้นหา",
 	"Search Result Count": "จำนวนผลลัพธ์การค้นหา",
 	"Search Tools": "เครื่องมือค้นหา",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "ค้นหา {{count}} เว็บไซต์",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "ตั้งค่าขั้นตอน",
 	"Set Task Model": "ตั้งค่าโมเดลงาน",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "ตั้งค่าเสียง",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "การตั้งค่า",
 	"Settings saved successfully!": "บันทึกการตั้งค่าเรียบร้อยแล้ว!",
 	"Share": "แชร์",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "แสดงความคิดสร้างสรรค์",
 	"Sign in": "ลงชื่อเข้าใช้",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "ลงชื่อออก",
 	"Sign up": "สมัครสมาชิก",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "ระบบพรอมต์",
 	"Tags": "ป้ายชื่อ",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "แตะเพื่อขัดจังหวะ",
 	"Tavily API Key": "คีย์ API ของ Tavily",
 	"Tell us more:": "บอกเรามากขึ้น:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "เครื่องมือแปลงข้อความเป็นเสียง",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "ขอบคุณสำหรับความคิดเห็นของคุณ!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "นักพัฒนาที่อยู่เบื้องหลังปลั๊กอินนี้เป็นอาสาสมัครที่มีชื่นชอบการแบ่งบัน หากคุณพบว่าปลั๊กอินนี้มีประโยชน์ โปรดพิจารณาสนับสนุนการพัฒนาของเขา",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "คะแนนควรอยู่ระหว่าง 0.0 (0%) ถึง 1.0 (100%)",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "ธีม",
 	"Thinking...": "กำลังคิด...",
 	"This action cannot be undone. Do you wish to continue?": "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "สิ่งนี้ทำให้มั่นใจได้ว่าการสนทนาที่มีค่าของคุณจะถูกบันทึกอย่างปลอดภัยในฐานข้อมูลแบ็กเอนด์ของคุณ ขอบคุณ!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "นี่เป็นฟีเจอร์ทดลอง อาจไม่ทำงานตามที่คาดไว้และอาจมีการเปลี่ยนแปลงได้ตลอดเวลา",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "สิ่งนี้จะลบ",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "การสร้างชื่ออัตโนมัติ",
 	"Title cannot be an empty string.": "ชื่อเรื่องไม่สามารถเป็นสตริงว่างได้",
 	"Title Generation Prompt": "พรอมต์การสร้างชื่อเรื่อง",
+	"TLS": "",
 	"To access the available model names for downloading,": "ในการเข้าถึงชื่อโมเดลที่มีให้ดาวน์โหลด",
 	"To access the GGUF models available for downloading,": "ในการเข้าถึงโมเดล GGUF ที่มีให้ดาวน์โหลด",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "ในการเข้าถึง WebUI โปรดติดต่อผู้ดูแลระบบ ผู้ดูแลระบบสามารถจัดการสถานะผู้ใช้จากแผงควบคุมผู้ดูแลระบบ",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "ดึงตำแหน่งที่ตั้งของผู้ใช้เรียบร้อยแล้ว",
 	"User Permissions": "สิทธิ์ของผู้ใช้",
+	"Username": "",
 	"Users": "ผู้ใช้",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "ใช้",
@@ -852,17 +908,20 @@
 	"Webhook URL": "URL ของ Webhook",
 	"WebUI Settings": "การตั้งค่า WebUI",
 	"WebUI will make requests to": "WebUI จะทำการร้องขอไปที่",
-	"What’s New in": "มีอะไรใหม่ใน",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "มีอะไรใหม่ใน",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (โลคอล)",
 	"Widescreen Mode": "โหมดหน้าจอกว้าง",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "พื้นที่ทำงาน",
 	"Write a prompt suggestion (e.g. Who are you?)": "เขียนคำแนะนำพรอมต์ (เช่น คุณคือใคร?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "เขียนสรุปใน 50 คำที่สรุป [หัวข้อหรือคำสำคัญ]",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "เมื่อวาน",
 	"You": "คุณ",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "การสนับสนุนทั้งหมดของคุณจะไปยังนักพัฒนาปลั๊กอินโดยตรง; Open WebUI ไม่รับส่วนแบ่งใด ๆ อย่างไรก็ตาม แพลตฟอร์มการระดมทุนที่เลือกอาจมีค่าธรรมเนียมของตัวเอง",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "การตั้งค่าโหลดเดอร์ Youtube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "",
 	"alphanumeric characters and hyphens": "",
 	"Already have an account?": "",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "",
 	"and": "",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "",
 	"API Key created.": "",
 	"API keys": "",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "",
 	"Archive": "",
 	"Archive All Chats": "",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "",
 	"Attention to detail": "",
+	"Attribute for Username": "",
 	"Audio": "",
 	"August": "",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "",
 	"Auto-playback response": "",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "",
 	"Capabilities": "",
+	"Certificate Path": "",
 	"Change Password": "",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "",
 	"Chunk Params": "",
 	"Chunk Size": "",
+	"Ciphers": "",
 	"Citation": "",
 	"Clear memory": "",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "",
 	"Click here to": "",
 	"Click here to download user import template file.": "",
@@ -153,8 +163,11 @@
 	"Context Length": "",
 	"Continue Response": "",
 	"Continue with {{provider}}": "",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "",
 	"Copied shared chat URL to clipboard!": "",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "",
+	"Create a knowledge base": "",
 	"Create a model": "",
 	"Create Account": "",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "",
 	"Created At": "",
 	"Created by": "",
-	"Create a knowledge base": "",
 	"CSV Import": "",
 	"Current Model": "",
 	"Current Password": "",
@@ -189,6 +202,8 @@
 	"Default Model": "",
 	"Default model updated": "",
 	"Default Prompt Suggestions": "",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "",
 	"Delete": "",
 	"Delete a model": "",
@@ -204,8 +219,8 @@
 	"Delete User": "",
 	"Deleted {{deleteModelTag}}": "",
 	"Deleted {{name}}": "",
-	"Description": "",
 	"Describe your knowledge base and objectives": "",
+	"Description": "",
 	"Didn't fully follow instructions": "",
 	"Disabled": "",
 	"Discover a function": "",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "",
 	"Embedding model set to \"{{embedding_model}}\"": "",
 	"Enable Community Sharing": "",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "",
 	"Enable Web Search": "",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "",
 	"Enter a detail about yourself for your LLMs to recall": "",
 	"Enter api auth string (e.g. username:password)": "",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "",
 	"Enter Chunk Size": "",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "",
+	"Enter Seed": "",
 	"Enter Serper API Key": "",
 	"Enter Serply API Key": "",
 	"Enter Serpstack API Key": "",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "",
 	"Enter system prompt": "",
 	"Enter Tavily API Key": "",
@@ -297,9 +322,14 @@
 	"Enter your message": "",
 	"Enter Your Password": "",
 	"Enter Your Role": "",
+	"Enter Your Username": "",
 	"Error": "",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "",
 	"Hide Model": "",
+	"Host": "",
 	"How can I help you today?": "",
 	"Hybrid Search": "",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "",
 	"Input commands": "",
 	"Install from Github URL": "",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "",
 	"Last Active": "",
 	"Last Modified": "",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "",
 	"Move to Top": "",
 	"Name": "",
-	"Name your model": "",
 	"Name your knowledge base": "",
+	"Name your model": "",
 	"New Chat": "",
 	"New folder": "",
 	"New Password": "",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "",
 	"Previous 30 days": "",
 	"Previous 7 days": "",
@@ -589,6 +625,7 @@
 	"Read Aloud": "",
 	"Record voice": "",
 	"Redirecting you to OpenWebUI Community": "",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "",
 	"References from": "",
 	"Refused when it shouldn't have": "",
@@ -606,7 +643,6 @@
 	"Reset": "",
 	"Reset Upload Directory": "",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "",
 	"Search": "",
 	"Search a model": "",
+	"Search Base": "",
 	"Search Chats": "",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "",
 	"Search Knowledge": "",
 	"Search Models": "",
+	"Search options": "",
 	"Search Prompts": "",
 	"Search Query Generation Prompt": "",
 	"Search Result Count": "",
 	"Search Tools": "",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_one": "",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "",
 	"Set Task Model": "",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "",
 	"Settings saved successfully!": "",
 	"Share": "",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "",
 	"Sign in": "",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "",
 	"Sign up": "",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "",
 	"Tags": "",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "",
 	"Tavily API Key": "",
 	"Tell us more:": "",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "",
 	"Tfs Z": "",
 	"Thanks for your feedback!": "",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "",
 	"Thinking...": "",
 	"This action cannot be undone. Do you wish to continue?": "",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "",
 	"Title cannot be an empty string.": "",
 	"Title Generation Prompt": "",
+	"TLS": "",
 	"To access the available model names for downloading,": "",
 	"To access the GGUF models available for downloading,": "",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "",
 	"User Permissions": "",
+	"Username": "",
 	"Users": "",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "",
@@ -852,17 +908,20 @@
 	"Webhook URL": "",
 	"WebUI Settings": "",
 	"WebUI will make requests to": "",
-	"What’s New in": "",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "",
 	"Write a prompt suggestion (e.g. Who are you?)": "",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "",
 	"You": "",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "",
 	"Youtube": "",
 	"Youtube Loader Settings": ""
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Aramada Ses Kesintisine İzin Ver",
 	"alphanumeric characters and hyphens": "alfanumerik karakterler ve tireler",
 	"Already have an account?": "Zaten bir hesabınız mı var?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "bir asistan",
 	"and": "ve",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API Anahtarı",
 	"API Key created.": "API Anahtarı oluşturuldu.",
 	"API keys": "API anahtarları",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Nisan",
 	"Archive": "Arşiv",
 	"Archive All Chats": "Tüm Sohbetleri Arşivle",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Dosya ekle",
 	"Attention to detail": "Ayrıntılara dikkat",
+	"Attribute for Username": "",
 	"Audio": "Ses",
 	"August": "Ağustos",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Yanıtı Panoya Otomatik Kopyala",
 	"Auto-playback response": "Yanıtı otomatik oynatma",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 API Kimlik Doğrulama Dizesi",
@@ -98,6 +105,7 @@
 	"Camera": "Kamera",
 	"Cancel": "İptal",
 	"Capabilities": "Yetenekler",
+	"Certificate Path": "",
 	"Change Password": "Parola Değiştir",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chunk Çakışması",
 	"Chunk Params": "Chunk Parametreleri",
 	"Chunk Size": "Chunk Boyutu",
+	"Ciphers": "",
 	"Citation": "Alıntı",
 	"Clear memory": "Belleği temizle",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Yardım için buraya tıklayın.",
 	"Click here to": "Şunu yapmak için buraya tıklayın:",
 	"Click here to download user import template file.": "Kullanıcı içe aktarma şablon dosyasını indirmek için buraya tıklayın.",
@@ -153,8 +163,11 @@
 	"Context Length": "Bağlam Uzunluğu",
 	"Continue Response": "Yanıta Devam Et",
 	"Continue with {{provider}}": "{{provider}} ile devam et",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Mesaj metninin TTS istekleri için nasıl bölüneceğini kontrol edin. 'Noktalama' cümlelere, 'paragraflar' paragraflara böler ve 'hiçbiri' mesajı tek bir dize olarak tutar.",
 	"Controls": "Kontroller",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Kopyalandı",
 	"Copied shared chat URL to clipboard!": "Paylaşılan sohbet URL'si panoya kopyalandı!",
 	"Copied to clipboard": "Panoya kopyalandı",
@@ -164,6 +177,7 @@
 	"Copy Link": "Bağlantıyı Kopyala",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Panoya kopyalama başarılı!",
+	"Create a knowledge base": "",
 	"Create a model": "Bir model oluştur",
 	"Create Account": "Hesap Oluştur",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Oluşturulma tarihi",
 	"Created At": "Şu Tarihte Oluşturuldu:",
 	"Created by": "Şunun tarafından oluşturuldu:",
-	"Create a knowledge base": "",
 	"CSV Import": "CSV İçe Aktarma",
 	"Current Model": "Mevcut Model",
 	"Current Password": "Mevcut Parola",
@@ -189,6 +202,8 @@
 	"Default Model": "Varsayılan Model",
 	"Default model updated": "Varsayılan model güncellendi",
 	"Default Prompt Suggestions": "Varsayılan Prompt Önerileri",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Varsayılan Kullanıcı Rolü",
 	"Delete": "Sil",
 	"Delete a model": "Bir modeli sil",
@@ -204,8 +219,8 @@
 	"Delete User": "Kullanıcıyı Sil",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} silindi",
 	"Deleted {{name}}": "{{name}} silindi",
-	"Description": "Açıklama",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Açıklama",
 	"Didn't fully follow instructions": "Talimatları tam olarak takip etmedi",
 	"Disabled": "Devre Dışı",
 	"Discover a function": "Bir fonksiyon keşfedin",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Gömme Modeli Motoru",
 	"Embedding model set to \"{{embedding_model}}\"": "Gömme modeli \"{{embedding_model}}\" olarak ayarlandı",
 	"Enable Community Sharing": "Topluluk Paylaşımını Etkinleştir",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Mesaj Değerlendirmeyi Etkinleştir",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Yeni Kayıtları Etkinleştir",
 	"Enable Web Search": "Web Aramasını Etkinleştir",
 	"Enable Web Search Query Generation": "Web Arama Sorgusu Oluşturmayı Etkinleştir",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Buraya {{role}} mesajını girin",
 	"Enter a detail about yourself for your LLMs to recall": "LLM'lerinizin hatırlaması için kendiniz hakkında bir bilgi girin",
 	"Enter api auth string (e.g. username:password)": "Api auth dizesini girin (örn. kullanıcı adı:parola)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Brave Search API Anahtarını Girin",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "CFG Ölçeğini Girin (örn. 7.0)",
 	"Enter Chunk Overlap": "Chunk Örtüşmesini Girin",
 	"Enter Chunk Size": "Chunk Boyutunu Girin",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Arama-API Anahtarını Girin",
 	"Enter SearchApi Engine": "Arama-API Motorunu Girin",
 	"Enter Searxng Query URL": "Searxng Sorgu URL'sini girin",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Serper API Anahtarını Girin",
 	"Enter Serply API Key": "Serply API Anahtarını Girin",
 	"Enter Serpstack API Key": "Serpstack API Anahtarını Girin",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Durdurma dizisini girin",
 	"Enter system prompt": "Sistem promptunu girin",
 	"Enter Tavily API Key": "Tavily API Anahtarını Girin",
@@ -297,9 +322,14 @@
 	"Enter your message": "Mesajınızı girin",
 	"Enter Your Password": "Parolanızı Girin",
 	"Enter Your Role": "Rolünüzü Girin",
+	"Enter Your Username": "",
 	"Error": "Hata",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Deneysel",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Gizle",
 	"Hide Model": "Modeli Gizle",
+	"Host": "",
 	"How can I help you today?": "Bugün size nasıl yardımcı olabilirim?",
 	"Hybrid Search": "Karma Arama",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Eylemimin sonuçlarını okuduğumu ve anladığımı kabul ediyorum. Rastgele kod çalıştırmayla ilgili risklerin farkındayım ve kaynağın güvenilirliğini doğruladım.",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "stable-diffusion-webui çalıştırılırken `--api-auth` bayrağını dahil edin",
 	"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui çalıştırılırken `--api` bayrağını dahil edin",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Bilgi",
 	"Input commands": "Giriş komutları",
 	"Install from Github URL": "Github URL'sinden yükleyin",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Dil",
 	"Last Active": "Son Aktivite",
 	"Last Modified": "Son Düzenleme",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Daha Fazla",
 	"Move to Top": "En Üste Taşı",
 	"Name": "Ad",
-	"Name your model": "Modelinizi Adlandırın",
 	"Name your knowledge base": "",
+	"Name your model": "Modelinizi Adlandırın",
 	"New Chat": "Yeni Sohbet",
 	"New folder": "",
 	"New Password": "Yeni Parola",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Olumlu yaklaşım",
 	"Previous 30 days": "Önceki 30 gün",
 	"Previous 7 days": "Önceki 7 gün",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Sesli Oku",
 	"Record voice": "Ses kaydı yap",
 	"Redirecting you to OpenWebUI Community": "OpenWebUI Topluluğuna yönlendiriliyorsunuz",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Kendinizden \"User\" olarak bahsedin (örneğin, \"User İspanyolca öğreniyor\")",
 	"References from": "",
 	"Refused when it shouldn't have": "Reddedilmemesi gerekirken reddedildi",
@@ -606,7 +643,6 @@
 	"Reset": "Sıfırla",
 	"Reset Upload Directory": "Yükleme Dizinini Sıfırla",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Yanıtı Panoya Otomatik Kopyala",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Web sitesi izinleri reddedildiğinden yanıt bildirimleri etkinleştirilemiyor. Gerekli erişimi sağlamak için lütfen tarayıcı ayarlarınızı ziyaret edin.",
 	"Response splitting": "Yanıt bölme",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Dallar arasında geçiş yaparken en alta kaydır",
 	"Search": "Ara",
 	"Search a model": "Bir model ara",
+	"Search Base": "",
 	"Search Chats": "Sohbetleri Ara",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Fonksiyonları Ara",
 	"Search Knowledge": "",
 	"Search Models": "Modelleri Ara",
+	"Search options": "",
 	"Search Prompts": "Prompt Ara",
 	"Search Query Generation Prompt": "Arama Sorgusu Üretme Promptu",
 	"Search Result Count": "Arama Sonucu Sayısı",
 	"Search Tools": "Arama Araçları",
-	"Search options": "",
 	"SearchApi API Key": "Arama-API API Anahtarı",
 	"SearchApi Engine": "Arama-API Motoru",
 	"Searched {{count}} sites_one": "Arandı {{count}} sites_one",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "Zamanlayıcıyı Ayarla",
 	"Set Steps": "Adımları Ayarla",
 	"Set Task Model": "Görev Modeli Ayarla",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Ses Ayarla",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Ayarlar",
 	"Settings saved successfully!": "Ayarlar başarıyla kaydedildi!",
 	"Share": "Paylaş",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "Sergilenen yaratıcılık",
 	"Sign in": "Oturum aç",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Çıkış Yap",
 	"Sign up": "Kaydol",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -725,6 +771,7 @@
 	"System Prompt": "Sistem Promptu",
 	"Tags": "Etiketler",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Durdurmak için dokunun",
 	"Tavily API Key": "Tavily API Anahtarı",
 	"Tell us more:": "Bize daha fazlasını anlat:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "Metinden Sese Motoru",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Geri bildiriminiz için teşekkürler!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Bu eklentinin arkasındaki geliştiriciler topluluktan tutkulu gönüllülerdir. Bu eklentinin yararlı olduğunu düşünüyorsanız, gelişimine katkıda bulunmayı düşünün.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "MB cinsinden maksimum dosya boyutu. Dosya boyutu bu sınırı aşarsa, dosya yüklenmeyecektir.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Sohbette aynı anda kullanılabilecek maksimum dosya sayısı. Dosya sayısı bu sınırı aşarsa, dosyalar yüklenmeyecektir.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Puan 0.0 (%0) ile 1.0 (%100) arasında bir değer olmalıdır.",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Tema",
 	"Thinking...": "Düşünüyor...",
 	"This action cannot be undone. Do you wish to continue?": "Bu eylem geri alınamaz. Devam etmek istiyor musunuz?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Bu, önemli konuşmalarınızın güvenli bir şekilde arkayüz veritabanınıza kaydedildiğini garantiler. Teşekkür ederiz!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Bu deneysel bir özelliktir, beklendiği gibi çalışmayabilir ve her an değişiklik yapılabilir.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Bu silinecek",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "Otomatik Başlık Oluşturma",
 	"Title cannot be an empty string.": "Başlık boş bir dize olamaz.",
 	"Title Generation Prompt": "Başlık Oluşturma Promptu",
+	"TLS": "",
 	"To access the available model names for downloading,": "İndirilebilir mevcut model adlarına erişmek için,",
 	"To access the GGUF models available for downloading,": "İndirilebilir mevcut GGUF modellerine erişmek için,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "WebUI'ye erişmek için lütfen yöneticiyle iletişime geçin. Yöneticiler kullanıcı durumlarını Yönetici Panelinden yönetebilir.",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "Kullanıcı konumu başarıyla alındı.",
 	"User Permissions": "Kullanıcı İzinleri",
+	"Username": "",
 	"Users": "Kullanıcılar",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Kullan",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "WebUI Ayarları",
 	"WebUI will make requests to": "WebUI, isteklerde bulunacak:",
-	"What’s New in": "Yenilikler:",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Yenilikler:",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Yerel)",
 	"Widescreen Mode": "Geniş Ekran Modu",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Çalışma Alanı",
 	"Write a prompt suggestion (e.g. Who are you?)": "Bir prompt önerisi yazın (örn. Sen kimsin?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "[Konuyu veya anahtar kelimeyi] özetleyen 50 kelimelik bir özet yazın.",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Dün",
 	"You": "Sen",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Aynı anda en fazla {{maxCount}} dosya ile sohbet edebilirsiniz.",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Tüm katkınız doğrudan eklenti geliştiricisine gidecektir; Open WebUI herhangi bir yüzde almaz. Ancak seçilen finansman platformunun kendi ücretleri olabilir.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Youtube Yükleyici Ayarları"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Дозволити переривання голосу під час виклику",
 	"alphanumeric characters and hyphens": "алфавітно-цифрові символи та дефіси",
 	"Already have an account?": "Вже є обліковий запис?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "асистента",
 	"and": "та",
 	"and {{COUNT}} more": "та ще {{COUNT}}",
@@ -59,6 +60,8 @@
 	"API Key": "Ключ API",
 	"API Key created.": "Ключ API створено.",
 	"API keys": "Ключі API",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Квітень",
 	"Archive": "Архів",
 	"Archive All Chats": "Архівувати всі чати",
@@ -71,8 +74,12 @@
 	"Assistant": "Асистент",
 	"Attach file": "Прикріпити файл",
 	"Attention to detail": "Увага до деталей",
+	"Attribute for Username": "",
 	"Audio": "Аудіо",
 	"August": "Серпень",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Автокопіювання відповіді в буфер обміну",
 	"Auto-playback response": "Автоматичне відтворення відповіді",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Рядок авторизації API",
@@ -98,6 +105,7 @@
 	"Camera": "Камера",
 	"Cancel": "Скасувати",
 	"Capabilities": "Можливості",
+	"Certificate Path": "",
 	"Change Password": "Змінити пароль",
 	"Character": "Персонаж",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Перекриття фрагментів",
 	"Chunk Params": "Параметри фрагментів",
 	"Chunk Size": "Розмір фрагменту",
+	"Ciphers": "",
 	"Citation": "Цитування",
 	"Clear memory": "Очистити пам'ять",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Клацніть тут, щоб отримати допомогу.",
 	"Click here to": "Натисніть тут, щоб",
 	"Click here to download user import template file.": "Натисніть тут, щоб завантажити файл шаблону імпорту користувача.",
@@ -153,8 +163,11 @@
 	"Context Length": "Довжина контексту",
 	"Continue Response": "Продовжити відповідь",
 	"Continue with {{provider}}": "Продовжити з {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Керування розбиттям тексту повідомлення для TTS-запитів. 'Punctuation' розбиває на речення, 'paragraphs' розбиває на абзаци, а 'none' залишає повідомлення як один рядок.",
 	"Controls": "Керування",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Скопійовано",
 	"Copied shared chat URL to clipboard!": "Скопійовано URL-адресу спільного чату в буфер обміну!",
 	"Copied to clipboard": "Скопійовано в буфер обміну",
@@ -164,6 +177,7 @@
 	"Copy Link": "Копіювати посилання",
 	"Copy to clipboard": "Копіювати в буфер обміну",
 	"Copying to clipboard was successful!": "Копіювання в буфер обміну виконано успішно!",
+	"Create a knowledge base": "",
 	"Create a model": "Створити модель",
 	"Create Account": "Створити обліковий запис",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Створено у",
 	"Created At": "Створено у",
 	"Created by": "Створено",
-	"Create a knowledge base": "",
 	"CSV Import": "Імпорт CSV",
 	"Current Model": "Поточна модель",
 	"Current Password": "Поточний пароль",
@@ -189,6 +202,8 @@
 	"Default Model": "Модель за замовчуванням",
 	"Default model updated": "Модель за замовчуванням оновлено",
 	"Default Prompt Suggestions": "Пропозиції промтів замовчуванням",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Роль користувача за замовчуванням",
 	"Delete": "Видалити",
 	"Delete a model": "Видалити модель",
@@ -204,8 +219,8 @@
 	"Delete User": "Видалити користувача",
 	"Deleted {{deleteModelTag}}": "Видалено {{deleteModelTag}}",
 	"Deleted {{name}}": "Видалено {{name}}",
-	"Description": "Опис",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Опис",
 	"Didn't fully follow instructions": "Не повністю дотримувалися інструкцій",
 	"Disabled": "Вимкнено",
 	"Discover a function": "Знайдіть функцію",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Рушій моделі вбудовування ",
 	"Embedding model set to \"{{embedding_model}}\"": "Встановлена модель вбудовування \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Увімкнути спільний доступ",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Увімкнути оцінку повідомлень",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Дозволити нові реєстрації",
 	"Enable Web Search": "Увімкнути веб-пошук",
 	"Enable Web Search Query Generation": "Увімкнути генерацію запитів для веб-пошуку",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Введіть повідомлення {{role}} тут",
 	"Enter a detail about yourself for your LLMs to recall": "Введіть відомості про себе для запам'ятовування вашими LLM.",
 	"Enter api auth string (e.g. username:password)": "Введіть рядок авторизації api (напр, ім'я користувача:пароль)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Введіть ключ API для пошуку Brave",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "Введіть масштаб CFG (напр., 7.0)",
 	"Enter Chunk Overlap": "Введіть перекриття фрагменту",
 	"Enter Chunk Size": "Введіть розмір фрагменту",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "Введіть ключ API для SearchApi",
 	"Enter SearchApi Engine": "Введіть SearchApi рушія",
 	"Enter Searxng Query URL": "Введіть URL-адресу запиту Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Введіть ключ API Serper",
 	"Enter Serply API Key": "Введіть ключ API Serply",
 	"Enter Serpstack API Key": "Введіть ключ API Serpstack",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Введіть символ зупинки",
 	"Enter system prompt": "Введіть системний промт",
 	"Enter Tavily API Key": "Введіть ключ API Tavily",
@@ -297,9 +322,14 @@
 	"Enter your message": "Введіть повідомлення ",
 	"Enter Your Password": "Введіть ваш пароль",
 	"Enter Your Role": "Введіть вашу роль",
+	"Enter Your Username": "",
 	"Error": "Помилка",
 	"ERROR": "ПОМИЛКА",
 	"Evaluations": "Оцінювання",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Експериментальне",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Приховати",
 	"Hide Model": "Приховати модель",
+	"Host": "",
 	"How can I help you today?": "Чим я можу допомогти вам сьогодні?",
 	"Hybrid Search": "Гібридний пошук",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Я підтверджую, що прочитав і розумію наслідки своїх дій. Я усвідомлюю ризики, пов'язані з виконанням довільного коду, і перевірив надійність джерела.",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "Включіть прапорець `--api-auth` під час запуску stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "Включіть прапор `--api` при запуску stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Інфо",
 	"Input commands": "Команди вводу",
 	"Install from Github URL": "Встановіть з URL-адреси Github",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "Знання успішно видалено.",
 	"Knowledge reset successfully.": "Знання успішно скинуто.",
 	"Knowledge updated successfully": "Знання успішно оновлено",
+	"Label": "",
 	"Landing Page Mode": "Режим головної сторінки",
 	"Language": "Мова",
 	"Last Active": "Остання активність",
 	"Last Modified": "Востаннє змінено",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "Таблиця лідерів",
 	"Leave empty for unlimited": "Залиште порожнім для необмеженого розміру",
 	"Leave empty to include all models or select specific models": "Залиште порожнім, щоб включити всі моделі, або виберіть конкретні моделі.",
@@ -488,8 +523,8 @@
 	"More": "Більше",
 	"Move to Top": "Перейти до початку",
 	"Name": "Ім'я",
-	"Name your model": "Назвіть свою модель",
 	"Name your knowledge base": "",
+	"Name your model": "Назвіть свою модель",
 	"New Chat": "Новий чат",
 	"New folder": "Нова папка",
 	"New Password": "Новий пароль",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "Будь ласка, введіть підказку",
 	"Please fill in all fields.": "Будь ласка, заповніть всі поля.",
 	"Please select a reason": "Будь ласка, виберіть причину",
+	"Port": "",
 	"Positive attitude": "Позитивне ставлення",
 	"Previous 30 days": "Попередні 30 днів",
 	"Previous 7 days": "Попередні 7 днів",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Читати вголос",
 	"Record voice": "Записати голос",
 	"Redirecting you to OpenWebUI Community": "Перенаправляємо вас до спільноти OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Називайте себе \"Користувач\" (наприклад, \"Користувач вивчає іспанську мову\")",
 	"References from": "Посилання з",
 	"Refused when it shouldn't have": "Відмовив, коли не мав би",
@@ -606,7 +643,6 @@
 	"Reset": "Скидання",
 	"Reset Upload Directory": "Скинути каталог завантажень",
 	"Reset Vector Storage/Knowledge": "Скинути векторне сховище/Знання",
-	"Auto-Copy Response to Clipboard": "Автокопіювання відповіді в буфер обміну",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Сповіщення про відповіді не можуть бути активовані, оскільки вам було відмовлено в доступі до веб-сайту. Будь ласка, відвідайте налаштування вашого браузера, щоб надати необхідний доступ.",
 	"Response splitting": "Розбиття відповіді",
 	"Result": "Результат",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Перемотувати до кінця при перемиканні між гілками",
 	"Search": "Пошук",
 	"Search a model": "Шукати модель",
+	"Search Base": "",
 	"Search Chats": "Пошук в чатах",
 	"Search Collection": "Шукати колекцію",
+	"Search Filters": "",
 	"search for tags": "шукати теги",
 	"Search Functions": "Пошук функцій",
 	"Search Knowledge": "Шукати знання",
 	"Search Models": "Пошук моделей",
+	"Search options": "",
 	"Search Prompts": "Пошук промтів",
 	"Search Query Generation Prompt": "Підказка для формування пошукового промту",
 	"Search Result Count": "Кількість результатів пошуку",
 	"Search Tools": "Пошуку інструментів",
-	"Search options": "",
 	"SearchApi API Key": "Ключ API для SearchApi",
 	"SearchApi Engine": "Рушій SearchApi",
 	"Searched {{count}} sites_one": "Переглянуто {{count}} сайт",
@@ -685,8 +723,15 @@
 	"Set Scheduler": "Встановити планувальник",
 	"Set Steps": "Встановити кроки",
 	"Set Task Model": "Встановити модель задач",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Встановити голос",
 	"Set whisper model": "Встановити модель whisper",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Налаштування",
 	"Settings saved successfully!": "Налаштування успішно збережено!",
 	"Share": "Поділитися",
@@ -702,6 +747,7 @@
 	"Showcased creativity": "Продемонстрований креатив",
 	"Sign in": "Увійти",
 	"Sign in to {{WEBUI_NAME}}": "Увійти в {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Вийти",
 	"Sign up": "Зареєструватися",
 	"Sign up to {{WEBUI_NAME}}": "Зареєструватися в {{WEBUI_NAME}}",
@@ -727,6 +773,7 @@
 	"System Prompt": "Системний промт",
 	"Tags": "Теги",
 	"Tags Generation Prompt": "Підказка для генерації тегів",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Натисніть, щоб перервати",
 	"Tavily API Key": "Ключ API Tavily",
 	"Tell us more:": "Розкажи нам більше:",
@@ -737,17 +784,24 @@
 	"Text-to-Speech Engine": "Система синтезу мови",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Дякуємо за ваш відгук!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Розробники цього плагіна - пристрасні волонтери зі спільноти. Якщо ви вважаєте цей плагін корисним, будь ласка, зробіть свій внесок у його розвиток.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "Максимальний розмір файлу в МБ. Якщо розмір файлу перевищує цей ліміт, файл не буде завантажено.",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Максимальна кількість файлів, які можна використати одночасно в чаті. Якщо кількість файлів перевищує цей ліміт, файли не будуть завантажені.",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Оцінка повинна бути в діапазоні від 0.0 (0%) до 1.0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Тема",
 	"Thinking...": "Думаю...",
 	"This action cannot be undone. Do you wish to continue?": "Цю дію не можна скасувати. Ви бажаєте продовжити?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Це забезпечує збереження ваших цінних розмов у безпечному бекенд-сховищі. Дякуємо!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Це експериментальна функція, вона може працювати не так, як очікувалося, і може бути змінена в будь-який час.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "Цей варіант видалить усі існуючі файли в колекції та замінить їх новими завантаженими файлами.",
 	"This response was generated by \"{{model}}\"": "Цю відповідь згенеровано за допомогою \"{{model}}\"",
 	"This will delete": "Це призведе до видалення",
@@ -763,6 +817,7 @@
 	"Title Auto-Generation": "Автогенерація заголовків",
 	"Title cannot be an empty string.": "Заголовок не може бути порожнім рядком.",
 	"Title Generation Prompt": "Промт для генерування заголовків",
+	"TLS": "",
 	"To access the available model names for downloading,": "Щоб отримати доступ до назв доступних для завантаження моделей,",
 	"To access the GGUF models available for downloading,": "Щоб отримати доступ до моделей GGUF, які можна завантажити,,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Щоб отримати доступ до веб-інтерфейсу, зверніться до адміністратора. Адміністратори можуть керувати статусами користувачів з Панелі адміністратора.",
@@ -830,6 +885,7 @@
 	"User": "Користувач",
 	"User location successfully retrieved.": "Місцезнаходження користувача успішно знайдено.",
 	"User Permissions": "Права користувача",
+	"Username": "",
 	"Users": "Користувачі",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "Використовуючи модель арени за замовчуванням з усіма моделями. Натисніть кнопку плюс, щоб додати користувацькі моделі.",
 	"Utilize": "Використовувати",
@@ -854,17 +910,20 @@
 	"Webhook URL": "URL веб-запиту",
 	"WebUI Settings": "Налаштування WebUI",
 	"WebUI will make requests to": "WebUI буде робити запити до",
-	"What’s New in": "Що нового в",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Що нового в",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (Локально)",
 	"Widescreen Mode": "Широкоекранний режим",
 	"Won": "Переможець",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Робочий простір",
 	"Write a prompt suggestion (e.g. Who are you?)": "Напишіть промт (напр., Хто ти?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Напишіть стислий зміст у 50 слів, який узагальнює [тема або ключове слово].",
 	"Write something...": "Напишіть щось...",
+	"Write your model template content here": "",
 	"Yesterday": "Вчора",
 	"You": "Ви",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ви можете спілкуватися лише з максимальною кількістю {{maxCount}} файлів одночасно.",
@@ -879,4 +938,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Весь ваш внесок піде безпосередньо розробнику плагіна; Open WebUI не бере жодних відсотків. Однак, обрана платформа фінансування може мати свої власні збори.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Налаштування завантажувача Youtube"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "کال میں آواز کی مداخلت کی اجازت دیں",
 	"alphanumeric characters and hyphens": "حروفی اور عددی کردار اور ہائفنز",
 	"Already have an account?": "کیا پہلے سے اکاؤنٹ موجود ہے؟",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "معاون",
 	"and": "اور",
 	"and {{COUNT}} more": "اور {{COUNT}} مزید",
@@ -59,6 +60,8 @@
 	"API Key": "اے پی آئی کلید",
 	"API Key created.": "اے پی آئی کلید بنائی گئی",
 	"API keys": "API کیز",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "اپریل",
 	"Archive": "آرکائیو",
 	"Archive All Chats": "تمام چیٹس محفوظ کریں",
@@ -71,8 +74,12 @@
 	"Assistant": "اسسٹنٹ",
 	"Attach file": "فائل منسلک کریں",
 	"Attention to detail": "تفصیل پر توجہ",
+	"Attribute for Username": "",
 	"Audio": "آڈیو",
 	"August": "اگست",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "جواب خودکار طور پر کلپ بورڈ پر کاپی ہو گیا",
 	"Auto-playback response": "آٹو پلے بیک جواب",
 	"Automatic1111": "آٹو میٹک1111",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 ایپلی کیشن کا تصدیقی سلسلہ",
@@ -98,6 +105,7 @@
 	"Camera": "کیمرہ",
 	"Cancel": "منسوخ کریں",
 	"Capabilities": "صلاحیتیں",
+	"Certificate Path": "",
 	"Change Password": "پاس ورڈ تبدیل کریں",
 	"Character": "کردار",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "حصے کی اوورلیپ",
 	"Chunk Params": "چنک پیرا میٹرز",
 	"Chunk Size": "چنک سائز",
+	"Ciphers": "",
 	"Citation": "حوالہ",
 	"Clear memory": "میموری صاف کریں",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "مدد کے لیے یہاں کلک کریں",
 	"Click here to": "یہاں کلک کریں تاکہ",
 	"Click here to download user import template file.": "صارف امپورٹ ٹیمپلیٹ فائل ڈاؤن لوڈ کرنے کے لیے یہاں کلک کریں",
@@ -153,8 +163,11 @@
 	"Context Length": "سیاق کی لمبائی",
 	"Continue Response": "ردعمل جاری رکھیں",
 	"Continue with {{provider}}": "{{provider}} کے ساتھ جاری رکھیں",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "TTS درخواستوں کے لیے پیغام کے متن کی تقسیم کو کنٹرول کریں 'Punctuation' جملوں میں تقسیم کرتا ہے، 'paragraphs' پیراگراف میں تقسیم کرتا ہے، اور 'none' پیغام کو ایک ہی سٹرنگ کے طور پر رکھتا ہے",
 	"Controls": "کنٹرولز",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "کاپی کیا گیا",
 	"Copied shared chat URL to clipboard!": "مشترکہ چیٹ یو آر ایل کلپ بورڈ میں نقل کر دیا گیا!",
 	"Copied to clipboard": "کلپ بورڈ پر نقل کر دیا گیا",
@@ -164,6 +177,7 @@
 	"Copy Link": "لنک کاپی کریں",
 	"Copy to clipboard": "کلپ بورڈ پر کاپی کریں",
 	"Copying to clipboard was successful!": "کلپ بورڈ میں کاپی کامیاب ہوئی!",
+	"Create a knowledge base": "",
 	"Create a model": "ماڈل بنائیں",
 	"Create Account": "اکاؤنٹ بنائیں",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "پر بنایا گیا",
 	"Created At": "بنایا گیا:",
 	"Created by": "تخلیق کردہ",
-	"Create a knowledge base": "",
 	"CSV Import": "CSV درآمد کریں",
 	"Current Model": "موجودہ ماڈل",
 	"Current Password": "موجودہ پاس ورڈ",
@@ -189,6 +202,8 @@
 	"Default Model": "ڈیفالٹ ماڈل",
 	"Default model updated": "ڈیفالٹ ماڈل اپ ڈیٹ ہو گیا",
 	"Default Prompt Suggestions": "ڈیفالٹ پرامپٹ تجاویز",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "ڈیفالٹ صارف کا کردار",
 	"Delete": "حذف کریں",
 	"Delete a model": "ایک ماڈل حذف کریں",
@@ -204,8 +219,8 @@
 	"Delete User": "صارف کو حذف کریں",
 	"Deleted {{deleteModelTag}}": "{{deleteModelTag}} حذف کر دیا گیا",
 	"Deleted {{name}}": "حذف کر دیا گیا {{name}}",
-	"Description": "تفصیل",
 	"Describe your knowledge base and objectives": "",
+	"Description": "تفصیل",
 	"Didn't fully follow instructions": "ہدایات کو مکمل طور پر نہیں سمجھا",
 	"Disabled": "غیر فعال",
 	"Discover a function": "ایک فنکشن دریافت کریں",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "ایمبیڈنگ ماڈل انجن",
 	"Embedding model set to \"{{embedding_model}}\"": "ایمبیڈنگ ماڈل \"{{embedding_model}}\" پر سیٹ کیا گیا ہے",
 	"Enable Community Sharing": "کمیونٹی شیئرنگ فعال کریں",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "پیغام کی درجہ بندی فعال کریں",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "نئے سائن اپس کو فعال کریں",
 	"Enable Web Search": "ویب تلاش فعال کریں",
 	"Enable Web Search Query Generation": "ویب تلاش کے سوالات کی تخلیق کو فعال کریں",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "یہاں {{کردار}} پیغام درج کریں",
 	"Enter a detail about yourself for your LLMs to recall": "اپنی ذات کے بارے میں کوئی تفصیل درج کریں تاکہ آپ کے LLMs اسے یاد رکھ سکیں",
 	"Enter api auth string (e.g. username:password)": "اے پی آئی اتھ سٹرنگ درج کریں (مثال کے طور پر: صارف نام:پاس ورڈ)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "بریو سرچ API کلید درج کریں",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "CFG اسکیل درج کریں (مثلاً 7.0)",
 	"Enter Chunk Overlap": "چنک اوورلیپ درج کریں",
 	"Enter Chunk Size": "چنک سائز درج کریں",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "تلاش API کلید داخل کریں",
 	"Enter SearchApi Engine": "تلاش انجن درج کریں",
 	"Enter Searxng Query URL": "سیرنگ استفسار یو آر ایل درج کریں",
+	"Enter Seed": "",
 	"Enter Serper API Key": "سرپر API کلید داخل کریں",
 	"Enter Serply API Key": "سیرپلی API کلید درج کریں",
 	"Enter Serpstack API Key": "سرپ اسٹیک API کلید درج کریں",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "اسٹاپ ترتیب درج کریں",
 	"Enter system prompt": "سسٹم پرامپٹ درج کریں",
 	"Enter Tavily API Key": "Tavily API کلید درج کریں",
@@ -297,9 +322,14 @@
 	"Enter your message": "اپنا پیغام درج کریں",
 	"Enter Your Password": "اپنا پاس ورڈ درج کریں",
 	"Enter Your Role": "اپنا کردار درج کریں",
+	"Enter Your Username": "",
 	"Error": "غلطی",
 	"ERROR": "غلطی",
 	"Evaluations": "تشخیصات",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "خارج کریں",
 	"Experimental": "تجرباتی",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "ہمیں بہترین کمیونٹی لیڈر بورڈ بنانے میں مدد کریں، اپنی رائے کی تاریخ شیئر کر کے!",
 	"Hide": "چھپائیں",
 	"Hide Model": "ماڈل چھپائیں",
+	"Host": "",
 	"How can I help you today?": "میں آج آپ کی کس طرح مدد کر سکتا ہوں؟",
 	"Hybrid Search": "مشترکہ تلاش",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "میں اقرار کرتا ہوں کہ میں نے پڑھ لیا ہے اور میں اپنی کارروائی کے مضمرات سمجھتا ہوں میں اس بات سے واقف ہوں کہ بلاوجہ کوڈ چلانے کے ساتھ منسلک خطرات ہوتے ہیں اور میں نے ماخذ کی اعتمادیت کی تصدیق کی ہے",
@@ -396,6 +427,7 @@
 	"Include": "شامل کریں",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "`--api-auth` پرچم کو چلانے کے وقت شامل کریں stable-diffusion-webui",
 	"Include `--api` flag when running stable-diffusion-webui": "اسٹیبل-ڈیفیوژن-ویب یو آئی چلانے کے دوران `--api` فلیگ شامل کریں",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "معلومات",
 	"Input commands": "کمانڈز داخل کریں",
 	"Install from Github URL": "گِٹ حب یو آر ایل سے انسٹال کریں",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "معلومات کامیابی سے حذف ہو گئیں",
 	"Knowledge reset successfully.": "علم کو کامیابی کے ساتھ دوبارہ ترتیب دیا گیا",
 	"Knowledge updated successfully": "علم کامیابی سے تازہ کر دیا گیا ہے",
+	"Label": "",
 	"Landing Page Mode": "لینڈر صفحہ موڈ",
 	"Language": "زبان",
 	"Last Active": "آخری سرگرمی",
 	"Last Modified": "آخری ترمیم",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "لیڈر بورڈ",
 	"Leave empty for unlimited": "لامحدود کے لیے خالی چھوڑیں",
 	"Leave empty to include all models or select specific models": "تمام ماڈلز کو شامل کرنے کے لئے خالی چھوڑ دیں یا مخصوص ماڈلز منتخب کریں",
@@ -488,8 +523,8 @@
 	"More": "مزید",
 	"Move to Top": "اوپر منتقل کریں",
 	"Name": "نام",
-	"Name your model": "اپنے ماڈل کا نام دیں",
 	"Name your knowledge base": "",
+	"Name your model": "اپنے ماڈل کا نام دیں",
 	"New Chat": "نئی بات چیت",
 	"New folder": "نیا فولڈر",
 	"New Password": "نیا پاس ورڈ",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "براہ کرم ایک پرامپٹ درج کریں",
 	"Please fill in all fields.": "براہ کرم تمام فیلڈز مکمل کریں",
 	"Please select a reason": "براہ کرم ایک وجہ منتخب کریں",
+	"Port": "",
 	"Positive attitude": "مثبت رویہ",
 	"Previous 30 days": "پچھلے 30 دن",
 	"Previous 7 days": "پچھلے 7 دن",
@@ -589,6 +625,7 @@
 	"Read Aloud": "بُلند آواز میں پڑھیں",
 	"Record voice": "صوت ریکارڈ کریں",
 	"Redirecting you to OpenWebUI Community": "آپ کو اوپن ویب یو آئی کمیونٹی کی طرف ری ڈائریکٹ کیا جا رہا ہے",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "خود کو \"صارف\" کے طور پر حوالہ دیں (جیسے، \"صارف ہسپانوی سیکھ رہا ہے\")",
 	"References from": "سے حوالہ جات",
 	"Refused when it shouldn't have": "جب انکار نہیں ہونا چاہیے تھا، انکار کر دیا",
@@ -606,7 +643,6 @@
 	"Reset": "ری سیٹ",
 	"Reset Upload Directory": "اپلوڈ ڈائریکٹری کو ری سیٹ کریں",
 	"Reset Vector Storage/Knowledge": "ویكٹر اسٹوریج/علم کو ری سیٹ کریں",
-	"Auto-Copy Response to Clipboard": "جواب خودکار طور پر کلپ بورڈ پر کاپی ہو گیا",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "جواب کی اطلاعات کو فعال نہیں کیا جا سکتا کیونکہ ویب سائٹ کی اجازتیں مسترد کر دی گئی ہیں براہ کرم اپنے براؤزر کی سیٹنگز پر جائیں تاکہ ضروری رسائی کی اجازت دے سکیں",
 	"Response splitting": "جواب کو تقسیم کرنا",
 	"Result": "نتیجہ",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "شاخیں تبدیل کرتے وقت نیچے تک سکرول کریں",
 	"Search": "تلاش کریں",
 	"Search a model": "ماڈل تلاش کریں",
+	"Search Base": "",
 	"Search Chats": "چیٹس تلاش کریں",
 	"Search Collection": "مجموعہ تلاش کریں",
+	"Search Filters": "",
 	"search for tags": "ٹیگز کے لیے تلاش کریں",
 	"Search Functions": "تلاش کے افعال",
 	"Search Knowledge": "علم تلاش کریں",
 	"Search Models": "ماڈلز تلاش کریں",
+	"Search options": "",
 	"Search Prompts": "تلاش کے اشارے",
 	"Search Query Generation Prompt": "تلاش کے استفسار کی تیاری کی ترغیب   ",
 	"Search Result Count": "تلاش کا نتیجہ شمار ",
 	"Search Tools": "تلاش کے اوزار",
-	"Search options": "",
 	"SearchApi API Key": "سرچ اے پی آئی کی API کلید",
 	"SearchApi Engine": "تلاش انجن API",
 	"Searched {{count}} sites_one": "{{count}} سائٹیں تلاش کی گئی ہیں_ایک",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "شیڈیولر مقرر کریں",
 	"Set Steps": "قدم طے کریں",
 	"Set Task Model": "ٹاسک ماڈل مرتب کریں",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "آواز کے لئے سیٹ کریں",
 	"Set whisper model": "وِسپر ماڈل مرتب کریں",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "ترتیبات",
 	"Settings saved successfully!": "ترتیبات کامیابی کے ساتھ محفوظ ہو گئیں!",
 	"Share": "اشتراک کریں",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "نمائش شدہ تخلیقی صلاحیتیں",
 	"Sign in": "سائن ان کریں",
 	"Sign in to {{WEBUI_NAME}}": "{{WEBUI_NAME}} میں سائن ان کریں",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "سائن آؤٹ کریں",
 	"Sign up": "سائن اپ کریں",
 	"Sign up to {{WEBUI_NAME}}": "{{WEBUI_NAME}} میں سائن اپ کریں",
@@ -725,6 +771,7 @@
 	"System Prompt": "سسٹم پرومپٹ",
 	"Tags": "ٹیگز",
 	"Tags Generation Prompt": "پرمپٹ کے لیے ٹیگز بنائیں",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "رکنے کے لئے ٹچ کریں",
 	"Tavily API Key": "ٹاویلی API کلید",
 	"Tell us more:": "ہمیں مزید بتائیں:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "ٹیکسٹ ٹو اسپیچ انجن",
 	"Tfs Z": "ٹی ایف ایس زیڈ",
 	"Thanks for your feedback!": "آپ کی رائے کا شکریہ!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "اس پلگ ان کے پیچھے موجود ڈویلپرز کمیونٹی کے پرجوش رضاکار ہیں اگر آپ کو یہ پلگ ان مددگار لگتا ہے تو برائے مہربانی اس کی ترقی میں اپنا حصہ ڈالنے پر غور کریں",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "تشخیصی لیڈربورڈ ایلو ریٹنگ سسٹم پر مبنی ہے اور یہ حقیقی وقت میں اپ ڈیٹ ہوتا ہے",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "لیڈر بورڈ اس وقت بیٹا مرحلے میں ہے، اور جیسے جیسے ہم الگورتھم کو بہتر بنائیں گے ہم ریٹنگ کیلکولیشن کو ایڈجسٹ کرسکتے ہیں",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "زیادہ سے زیادہ فائل سائز ایم بی میں اگر فائل سائز اس حد سے تجاوز کر جاتا ہے، تو فائل اپ لوڈ نہیں ہوگی",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "چیٹ میں ایک وقت میں استعمال ہونے والی فائلوں کی زیادہ سے زیادہ تعداد اگر فائلوں کی تعداد اس حد سے تجاوز کر جائے تو فائلیں اپلوڈ نہیں کی جائیں گی",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "سکور کی قیمت کو 0.0 (0%) اور 1.0 (100%) کے درمیان ہونا چاہیے",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "تھیم",
 	"Thinking...": "سوچ رہا ہے...",
 	"This action cannot be undone. Do you wish to continue?": "یہ عمل واپس نہیں کیا جا سکتا کیا آپ جاری رکھنا چاہتے ہیں؟",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "یہ یقینی بناتا ہے کہ آپ کی قیمتی گفتگو محفوظ طریقے سے آپ کے بیک اینڈ ڈیٹا بیس میں محفوظ کی گئی ہیں شکریہ!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "یہ ایک تجرباتی خصوصیت ہے، یہ متوقع طور پر کام نہ کر سکتی ہو اور کسی بھی وقت تبدیل کی جا سکتی ہے",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "اس اختیار سے مجموعہ میں موجود تمام فائلز حذف ہو جائیں گی اور ان کی جگہ نئی اپ لوڈ کردہ فائلز لی جائیں گی",
 	"This response was generated by \"{{model}}\"": "یہ جواب \"{{model}}\" کے ذریعہ تیار کیا گیا",
 	"This will delete": "یہ حذف کر دے گا",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "خودکار عنوان تخلیق",
 	"Title cannot be an empty string.": "عنوان خالی اسٹرنگ نہیں ہو سکتا",
 	"Title Generation Prompt": "سرخی بنانے کی ہدایت",
+	"TLS": "",
 	"To access the available model names for downloading,": "ڈاؤن لوڈ کرنے کے لئے دستیاب ماڈل کے ناموں تک رسائی حاصل کرنے کے لئے،",
 	"To access the GGUF models available for downloading,": "GGUF ماڈلز تک رسائی حاصل کرنے کے لئے جو ڈاؤنلوڈنگ کے لئے دستیاب ہیں،",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "ویب یو آئی تک رسائی حاصل کرنے کے لیے براہ کرم منتظم سے رابطہ کریں ایڈمنز صارف کی حالت کو ایڈمن پینل سے منظم کر سکتے ہیں",
@@ -828,6 +883,7 @@
 	"User": "صارف",
 	"User location successfully retrieved.": "صارف کا مقام کامیابی سے حاصل کیا گیا",
 	"User Permissions": "صارف کی اجازتیں",
+	"Username": "",
 	"Users": "صارفین",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "تمام ماڈلز کے ساتھ ڈیفالٹ ارینا ماڈل استعمال کریں حسب ضرورت ماڈلز شامل کرنے کے لیے پلس بٹن پر کلک کریں",
 	"Utilize": "استعمال کریں",
@@ -852,17 +908,20 @@
 	"Webhook URL": "ویب ہُک یو آر ایل",
 	"WebUI Settings": "ویب UI ترتیبات",
 	"WebUI will make requests to": "ویب یو آئی درخواست کرے گا کہ وہ ",
-	"What’s New in": "میں نیا کیا ہے",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "میں نیا کیا ہے",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "سرگوشی (مقامی)",
 	"Widescreen Mode": "وائڈ اسکرین موڈ",
 	"Won": "جیتا",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "ورک اسپیس",
 	"Write a prompt suggestion (e.g. Who are you?)": "(مثال کے طور پر: آپ کون ہیں؟) ایک تجویز لکھیے",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "موضوع یا کلیدی لفظ کا خلاصہ 50 الفاظ میں لکھیں",
 	"Write something...": "کچھ لکھیں...",
+	"Write your model template content here": "",
 	"Yesterday": "کل",
 	"You": "آپ",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "آپ ایک وقت میں زیادہ سے زیادہ {{maxCount}} فائل(وں) کے ساتھ صرف چیٹ کر سکتے ہیں",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "آپ کی پوری شراکت براہ راست پلگ ان ڈیولپر کو جائے گی؛ اوپن ویب یو آئی کوئی فیصد نہیں لیتی تاہم، منتخب کردہ فنڈنگ پلیٹ فارم کی اپنی فیس ہو سکتی ہیں",
 	"Youtube": "یوٹیوب",
 	"Youtube Loader Settings": "یوٹیوب لوڈر کی ترتیبات"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "Cho phép gián đoạn giọng nói trong cuộc gọi",
 	"alphanumeric characters and hyphens": "ký tự số và gạch nối",
 	"Already have an account?": "Bạn đã có tài khoản?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "trợ lý",
 	"and": "và",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API Key",
 	"API Key created.": "Khóa API đã tạo",
 	"API keys": "API Keys",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "Tháng 4",
 	"Archive": "Lưu trữ",
 	"Archive All Chats": "Lưu tất cả các cuộc Chat",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "Đính kèm file",
 	"Attention to detail": "Có sự chú ý đến chi tiết của vấn đề",
+	"Attribute for Username": "",
 	"Audio": "Âm thanh",
 	"August": "Tháng 8",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "Tự động Sao chép Phản hồi vào clipboard",
 	"Auto-playback response": "Tự động phát lại phản hồi (Auto-playback)",
 	"Automatic1111": "",
 	"AUTOMATIC1111 Api Auth String": "",
@@ -98,6 +105,7 @@
 	"Camera": "",
 	"Cancel": "Hủy bỏ",
 	"Capabilities": "Năng lực",
+	"Certificate Path": "",
 	"Change Password": "Đổi Mật khẩu",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "Chồng lấn (overlap)",
 	"Chunk Params": "Tham số khối (chunk)",
 	"Chunk Size": "Kích thước khối (size)",
+	"Ciphers": "",
 	"Citation": "Trích dẫn",
 	"Clear memory": "Xóa bộ nhớ",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "Bấm vào đây để được trợ giúp.",
 	"Click here to": "Nhấn vào đây để",
 	"Click here to download user import template file.": "Bấm vào đây để tải xuống tệp template của người dùng.",
@@ -153,8 +163,11 @@
 	"Context Length": "Độ dài ngữ cảnh (Context Length)",
 	"Continue Response": "Tiếp tục trả lời",
 	"Continue with {{provider}}": "Tiếp tục với {{provider}}",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "",
 	"Controls": "",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "Đã sao chép",
 	"Copied shared chat URL to clipboard!": "Đã sao chép link chia sẻ trò chuyện vào clipboard!",
 	"Copied to clipboard": "",
@@ -164,6 +177,7 @@
 	"Copy Link": "Sao chép link",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "Sao chép vào clipboard thành công!",
+	"Create a knowledge base": "",
 	"Create a model": "Tạo model",
 	"Create Account": "Tạo Tài khoản",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "Được tạo vào lúc",
 	"Created At": "Tạo lúc",
 	"Created by": "Tạo bởi",
-	"Create a knowledge base": "",
 	"CSV Import": "Nạp CSV",
 	"Current Model": "Mô hình hiện tại",
 	"Current Password": "Mật khẩu hiện tại",
@@ -189,6 +202,8 @@
 	"Default Model": "Model mặc định",
 	"Default model updated": "Mô hình mặc định đã được cập nhật",
 	"Default Prompt Suggestions": "Đề xuất prompt mặc định",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "Vai trò mặc định",
 	"Delete": "Xóa",
 	"Delete a model": "Xóa mô hình",
@@ -204,8 +219,8 @@
 	"Delete User": "Xóa người dùng",
 	"Deleted {{deleteModelTag}}": "Đã xóa {{deleteModelTag}}",
 	"Deleted {{name}}": "Đã xóa {{name}}",
-	"Description": "Mô tả",
 	"Describe your knowledge base and objectives": "",
+	"Description": "Mô tả",
 	"Didn't fully follow instructions": "Không tuân theo chỉ dẫn một cách đầy đủ",
 	"Disabled": "Đã tắt",
 	"Discover a function": "Khám phá function",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "Trình xử lý embedding",
 	"Embedding model set to \"{{embedding_model}}\"": "Mô hình embedding đã được thiết lập thành \"{{embedding_model}}\"",
 	"Enable Community Sharing": "Cho phép Chia sẻ Cộng đồng",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "Cho phép phản hồi, đánh giá",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "Cho phép đăng ký mới",
 	"Enable Web Search": "Cho phép tìm kiếm Web",
 	"Enable Web Search Query Generation": "",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây",
 	"Enter a detail about yourself for your LLMs to recall": "Nhập chi tiết về bản thân của bạn để LLMs có thể nhớ",
 	"Enter api auth string (e.g. username:password)": "Nhập chuỗi xác thực api (ví dụ: username: mật khẩu)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "Nhập API key cho Brave Search",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "",
 	"Enter Chunk Overlap": "Nhập Chunk chồng lấn (overlap)",
 	"Enter Chunk Size": "Nhập Kích thước Chunk",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "",
 	"Enter SearchApi Engine": "",
 	"Enter Searxng Query URL": "Nhập Query URL cho Searxng",
+	"Enter Seed": "",
 	"Enter Serper API Key": "Nhập Serper API Key",
 	"Enter Serply API Key": "Nhập Serply API Key",
 	"Enter Serpstack API Key": "Nhập Serpstack API Key",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "Nhập stop sequence",
 	"Enter system prompt": "Nhập system prompt",
 	"Enter Tavily API Key": "Nhập Tavily API Key",
@@ -297,9 +322,14 @@
 	"Enter your message": "Nhập tin nhắn của bạn",
 	"Enter Your Password": "Nhập Mật khẩu của bạn",
 	"Enter Your Role": "Nhập vai trò của bạn",
+	"Enter Your Username": "",
 	"Error": "Lỗi",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "Thử nghiệm",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "Ẩn",
 	"Hide Model": "Ẩn mô hình",
+	"Host": "",
 	"How can I help you today?": "Tôi có thể giúp gì cho bạn hôm nay?",
 	"Hybrid Search": "Tìm kiếm Hybrid",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Tôi thừa nhận rằng tôi đã đọc và tôi hiểu ý nghĩa của hành động của mình. Tôi nhận thức được những rủi ro liên quan đến việc thực thi mã tùy ý và tôi đã xác minh độ tin cậy của nguồn.",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "",
 	"Include `--api` flag when running stable-diffusion-webui": "Bao gồm flag `--api` khi chạy stable-diffusion-webui",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "Thông tin",
 	"Input commands": "Nhập các câu lệnh",
 	"Install from Github URL": "Cài đặt từ Github URL",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "",
 	"Knowledge reset successfully.": "",
 	"Knowledge updated successfully": "",
+	"Label": "",
 	"Landing Page Mode": "",
 	"Language": "Ngôn ngữ",
 	"Last Active": "Truy cập gần nhất",
 	"Last Modified": "Lần sửa gần nhất",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "Thêm",
 	"Move to Top": "",
 	"Name": "Tên",
-	"Name your model": "Tên model",
 	"Name your knowledge base": "",
+	"Name your model": "Tên model",
 	"New Chat": "Tạo chat mới",
 	"New folder": "",
 	"New Password": "Mật khẩu mới",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "",
 	"Please select a reason": "",
+	"Port": "",
 	"Positive attitude": "Thái độ tích cực",
 	"Previous 30 days": "30 ngày trước",
 	"Previous 7 days": "7 ngày trước",
@@ -589,6 +625,7 @@
 	"Read Aloud": "Đọc ra loa",
 	"Record voice": "Ghi âm",
 	"Redirecting you to OpenWebUI Community": "Đang chuyển hướng bạn đến Cộng đồng OpenWebUI",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Hãy coi bản thân mình như \"Người dùng\" (ví dụ: \"Người dùng đang học Tiếng Tây Ban Nha\")",
 	"References from": "",
 	"Refused when it shouldn't have": "Từ chối trả lời mà nhẽ không nên làm vậy",
@@ -606,7 +643,6 @@
 	"Reset": "Xóa toàn bộ",
 	"Reset Upload Directory": "Xóa toàn bộ thư mục Upload",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "Tự động Sao chép Phản hồi vào clipboard",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "Không thể kích hoạt thông báo vì trang web không cấp quyền. Vui lòng truy cập cài đặt trình duyệt của bạn để cấp quyền cần thiết.",
 	"Response splitting": "",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "Cuộn xuống dưới cùng khi chuyển đổi giữa các nhánh",
 	"Search": "Tìm kiếm",
 	"Search a model": "Tìm model",
+	"Search Base": "",
 	"Search Chats": "Tìm kiếm các cuộc Chat",
 	"Search Collection": "",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "Tìm kiếm Functions",
 	"Search Knowledge": "",
 	"Search Models": "Tìm model",
+	"Search options": "",
 	"Search Prompts": "Tìm prompt",
 	"Search Query Generation Prompt": "Prompt tạo câu truy vấn, tìm kiếm",
 	"Search Result Count": "Số kết quả tìm kiếm",
 	"Search Tools": "Tìm kiếm Tools",
-	"Search options": "",
 	"SearchApi API Key": "",
 	"SearchApi Engine": "",
 	"Searched {{count}} sites_other": "Đã tìm thấy {{count}} trang web",
@@ -682,8 +720,15 @@
 	"Set Scheduler": "",
 	"Set Steps": "Đặt Số Bước",
 	"Set Task Model": "Đặt Mô hình Tác vụ",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "Đặt Giọng nói",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "Cài đặt",
 	"Settings saved successfully!": "Cài đặt đã được lưu thành công!",
 	"Share": "Chia sẻ",
@@ -699,6 +744,7 @@
 	"Showcased creativity": "Thể hiện sự sáng tạo",
 	"Sign in": "Đăng nhập",
 	"Sign in to {{WEBUI_NAME}}": "",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "Đăng xuất",
 	"Sign up": "Đăng ký",
 	"Sign up to {{WEBUI_NAME}}": "",
@@ -724,6 +770,7 @@
 	"System Prompt": "Prompt Hệ thống (System Prompt)",
 	"Tags": "Thẻ",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "Chạm để ngừng",
 	"Tavily API Key": "",
 	"Tell us more:": "Hãy cho chúng tôi hiểu thêm về chất lượng của câu trả lời:",
@@ -734,17 +781,24 @@
 	"Text-to-Speech Engine": "Công cụ Chuyển Văn bản thành Giọng nói",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "Cám ơn bạn đã gửi phản hồi!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "Các nhà phát triển đằng sau plugin này là những tình nguyện viên nhiệt huyết của cộng đồng. Nếu bạn thấy plugin này hữu ích, vui lòng cân nhắc đóng góp cho sự phát triển của nó.",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "Điểm (score) phải có giá trị từ 0,0 (0%) đến 1,0 (100%).",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "Chủ đề",
 	"Thinking...": "Đang suy luận...",
 	"This action cannot be undone. Do you wish to continue?": "Hành động này không thể được hoàn tác. Bạn có muốn tiếp tục không?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Điều này đảm bảo rằng các nội dung chat có giá trị của bạn được lưu an toàn vào cơ sở dữ liệu backend của bạn. Cảm ơn bạn!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "Đây là tính năng thử nghiệm, có thể không hoạt động như mong đợi và có thể thay đổi bất kỳ lúc nào.",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "Chat này sẽ bị xóa",
@@ -760,6 +814,7 @@
 	"Title Auto-Generation": "Tự động Tạo Tiêu đề",
 	"Title cannot be an empty string.": "Tiêu đề không được phép bỏ trống",
 	"Title Generation Prompt": "Prompt tạo tiêu đề",
+	"TLS": "",
 	"To access the available model names for downloading,": "Để truy cập các tên mô hình có sẵn để tải xuống,",
 	"To access the GGUF models available for downloading,": "Để truy cập các mô hình GGUF có sẵn để tải xuống,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Để truy cập vui lòng liên hệ với quản trị viên.",
@@ -827,6 +882,7 @@
 	"User": "",
 	"User location successfully retrieved.": "Đã truy xuất thành công vị trí của người dùng.",
 	"User Permissions": "Phân quyền sử dụng",
+	"Username": "",
 	"Users": "Người sử dụng",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "Sử dụng",
@@ -851,17 +907,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "Cài đặt WebUI",
 	"WebUI will make requests to": "WebUI sẽ thực hiện các yêu cầu đến",
-	"What’s New in": "Thông tin mới về",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "Thông tin mới về",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "",
 	"Widescreen Mode": "Chế độ màn hình rộng",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "Workspace",
 	"Write a prompt suggestion (e.g. Who are you?)": "Hãy viết một prompt (vd: Bạn là ai?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "Viết một tóm tắt trong vòng 50 từ cho [chủ đề hoặc từ khóa].",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "Hôm qua",
 	"You": "Bạn",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "",
@@ -876,4 +935,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Toàn bộ đóng góp của bạn sẽ được chuyển trực tiếp đến nhà phát triển plugin; Open WebUI không lấy bất kỳ tỷ lệ phần trăm nào. Tuy nhiên, nền tảng được chọn tài trợ có thể có phí riêng.",
 	"Youtube": "Youtube",
 	"Youtube Loader Settings": "Cài đặt Youtube Loader"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "允许通话中的打断语音",
 	"alphanumeric characters and hyphens": "字母数字字符和连字符",
 	"Already have an account?": "已经拥有账号了?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "AI模型",
 	"and": "和",
 	"and {{COUNT}} more": "还有 {{COUNT}} 个",
@@ -59,6 +60,8 @@
 	"API Key": "API 密钥",
 	"API Key created.": "API 密钥已创建。",
 	"API keys": "API 密钥",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "四月",
 	"Archive": "归档",
 	"Archive All Chats": "归档所有对话记录",
@@ -71,8 +74,12 @@
 	"Assistant": "AI模型",
 	"Attach file": "添加文件",
 	"Attention to detail": "注重细节",
+	"Attribute for Username": "",
 	"Audio": "语音",
 	"August": "八月",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "自动复制回复到剪贴板",
 	"Auto-playback response": "自动念出回复内容",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api 鉴权字符串",
@@ -98,6 +105,7 @@
 	"Camera": "摄像头",
 	"Cancel": "取消",
 	"Capabilities": "能力",
+	"Certificate Path": "",
 	"Change Password": "更改密码",
 	"Character": "字符",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "块重叠 (Chunk Overlap)",
 	"Chunk Params": "块参数 (Chunk Params)",
 	"Chunk Size": "块大小 (Chunk Size)",
+	"Ciphers": "",
 	"Citation": "引文",
 	"Clear memory": "清除记忆",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "点击这里获取帮助。",
 	"Click here to": "单击",
 	"Click here to download user import template file.": "单击此处下载用户导入所需的模板文件。",
@@ -153,8 +163,11 @@
 	"Context Length": "上下文长度",
 	"Continue Response": "继续生成",
 	"Continue with {{provider}}": "使用 {{provider}} 继续",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "控制消息文本如何拆分以用于 TTS 请求。“Punctuation”拆分为句子,“paragraphs”拆分为段落,“none”将消息保留为单个字符串。",
 	"Controls": "对话高级设置",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "已复制",
 	"Copied shared chat URL to clipboard!": "已复制此对话分享链接至剪贴板!",
 	"Copied to clipboard": "已复制到剪贴板",
@@ -164,6 +177,7 @@
 	"Copy Link": "复制链接",
 	"Copy to clipboard": "复制到剪贴板",
 	"Copying to clipboard was successful!": "成功复制到剪贴板!",
+	"Create a knowledge base": "",
 	"Create a model": "创建一个模型",
 	"Create Account": "创建账号",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "创建于",
 	"Created At": "创建于",
 	"Created by": "作者",
-	"Create a knowledge base": "",
 	"CSV Import": "通过 CSV 文件导入",
 	"Current Model": "当前模型",
 	"Current Password": "当前密码",
@@ -189,6 +202,8 @@
 	"Default Model": "默认模型",
 	"Default model updated": "默认模型已更新",
 	"Default Prompt Suggestions": "默认提示词建议",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "默认用户角色",
 	"Delete": "删除",
 	"Delete a model": "删除一个模型",
@@ -204,8 +219,8 @@
 	"Delete User": "删除用户",
 	"Deleted {{deleteModelTag}}": "已删除 {{deleteModelTag}}",
 	"Deleted {{name}}": "已删除 {{name}}",
-	"Description": "描述",
 	"Describe your knowledge base and objectives": "",
+	"Description": "描述",
 	"Didn't fully follow instructions": "没有完全遵照指示",
 	"Disabled": "禁用",
 	"Discover a function": "发现更多函数",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "语义向量模型引擎",
 	"Embedding model set to \"{{embedding_model}}\"": "语义向量模型设置为 \"{{embedding_model}}\"",
 	"Enable Community Sharing": "启用分享至社区",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "启用回复评价",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "允许新用户注册",
 	"Enable Web Search": "启用联网搜索",
 	"Enable Web Search Query Generation": "启用生成联网搜索关键词",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "在此处输入 {{role}} 的对话内容",
 	"Enter a detail about yourself for your LLMs to recall": "输入一个关于你自己的详细信息,方便你的大语言模型记住这些内容",
 	"Enter api auth string (e.g. username:password)": "输入 api 鉴权路径 (例如:username:password)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "输入 Brave Search API 密钥",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "输入 CFG Scale (例如:7.0)",
 	"Enter Chunk Overlap": "输入块重叠 (Chunk Overlap)",
 	"Enter Chunk Size": "输入块大小 (Chunk Size)",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "输入 SearchApi API 密钥",
 	"Enter SearchApi Engine": "输入 SearchApi 引擎",
 	"Enter Searxng Query URL": "输入 Searxng 查询地址",
+	"Enter Seed": "",
 	"Enter Serper API Key": "输入 Serper API 密钥",
 	"Enter Serply API Key": "输入 Serply API 密钥",
 	"Enter Serpstack API Key": "输入 Serpstack API 密钥",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "输入停止序列 (Stop Sequence)",
 	"Enter system prompt": "输入系统提示词 (Prompt)",
 	"Enter Tavily API Key": "输入 Tavily API 密钥",
@@ -297,9 +322,14 @@
 	"Enter your message": "输入您的消息",
 	"Enter Your Password": "输入您的密码",
 	"Enter Your Role": "输入您的权限组",
+	"Enter Your Username": "",
 	"Error": "错误",
 	"ERROR": "错误",
 	"Evaluations": "竞技场评估",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "排除",
 	"Experimental": "实验性",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "分享您的反馈历史记录,共建最佳模型社区排行榜!",
 	"Hide": "隐藏",
 	"Hide Model": "隐藏",
+	"Host": "",
 	"How can I help you today?": "有什么我能帮您的吗?",
 	"Hybrid Search": "混合搜索",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "我已阅读并理解我的行为所带来的影响,明白执行任意代码所涉及的风险。且我已验证代码来源可信度。",
@@ -396,6 +427,7 @@
 	"Include": "包括",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api-auth` 标志",
 	"Include `--api` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api` 标志",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "信息",
 	"Input commands": "输入命令",
 	"Install from Github URL": "从 Github URL 安装",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "知识成功删除",
 	"Knowledge reset successfully.": "知识成功重置",
 	"Knowledge updated successfully": "知识成功更新",
+	"Label": "",
 	"Landing Page Mode": "默认主页样式",
 	"Language": "语言",
 	"Last Active": "最后在线时间",
 	"Last Modified": "最后修改时间",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "排行榜",
 	"Leave empty for unlimited": "留空表示无限制",
 	"Leave empty to include all models or select specific models": "留空表示包含所有模型或请选择模型",
@@ -488,8 +523,8 @@
 	"More": "更多",
 	"Move to Top": "移动到顶部",
 	"Name": "名称",
-	"Name your model": "为您的模型命名",
 	"Name your knowledge base": "",
+	"Name your model": "为您的模型命名",
 	"New Chat": "新对话",
 	"New folder": "新建分组",
 	"New Password": "新密码",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "请输出一个 prompt",
 	"Please fill in all fields.": "请填写所有字段。",
 	"Please select a reason": "请选择原因",
+	"Port": "",
 	"Positive attitude": "积极的态度",
 	"Previous 30 days": "过去 30 天",
 	"Previous 7 days": "过去 7 天",
@@ -589,6 +625,7 @@
 	"Read Aloud": "朗读",
 	"Record voice": "录音",
 	"Redirecting you to OpenWebUI Community": "正在将您重定向到 OpenWebUI 社区",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "使用\"User\" (用户) 来指代自己(例如:“User 正在学习西班牙语”)",
 	"References from": "来自",
 	"Refused when it shouldn't have": "无理拒绝",
@@ -606,7 +643,6 @@
 	"Reset": "重置",
 	"Reset Upload Directory": "重置上传目录",
 	"Reset Vector Storage/Knowledge": "重置向量存储/知识",
-	"Auto-Copy Response to Clipboard": "自动复制回复到剪贴板",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "无法激活回复时发送通知。请检查浏览器设置,并授予必要的访问权限。",
 	"Response splitting": "拆分回复",
 	"Result": "结果",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "在分支间切换时滚动到底部",
 	"Search": "搜索",
 	"Search a model": "搜索模型",
+	"Search Base": "",
 	"Search Chats": "搜索对话",
 	"Search Collection": "搜索内容",
+	"Search Filters": "",
 	"search for tags": "搜索标签",
 	"Search Functions": "搜索函数",
 	"Search Knowledge": "搜索知识",
 	"Search Models": "搜索模型",
+	"Search options": "",
 	"Search Prompts": "搜索提示词",
 	"Search Query Generation Prompt": "用于联网搜索关键词生成的提示词",
 	"Search Result Count": "搜索结果数量",
 	"Search Tools": "搜索工具",
-	"Search options": "",
 	"SearchApi API Key": "SearchApi API 密钥",
 	"SearchApi Engine": "SearchApi 引擎",
 	"Searched {{count}} sites_other": "搜索到 {{count}} 个结果",
@@ -682,8 +720,15 @@
 	"Set Scheduler": "设置 Scheduler",
 	"Set Steps": "设置步骤",
 	"Set Task Model": "设置任务模型",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "设置音色",
 	"Set whisper model": "设置 whisper 模型",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "设置",
 	"Settings saved successfully!": "设置已保存",
 	"Share": "分享",
@@ -699,6 +744,7 @@
 	"Showcased creativity": "很有创意",
 	"Sign in": "登录",
 	"Sign in to {{WEBUI_NAME}}": "登录 {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "登出",
 	"Sign up": "注册",
 	"Sign up to {{WEBUI_NAME}}": "注册 {{WEBUI_NAME}}",
@@ -724,6 +770,7 @@
 	"System Prompt": "系统提示词 (System Prompt)",
 	"Tags": "标签",
 	"Tags Generation Prompt": "标签生成提示词",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "点击以中断",
 	"Tavily API Key": "Tavily API 密钥",
 	"Tell us more:": "请告诉我们更多细节",
@@ -734,17 +781,24 @@
 	"Text-to-Speech Engine": "文本转语音引擎",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "感谢您的反馈!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "本插件的背后开发者是社区中热情的志愿者。如果此插件有帮助到您,烦请考虑一下为它的开发做出贡献。",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "排行榜基于 Elo 评级系统并实时更新。",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "排行榜目前处于 Beta 测试阶段,我们可能会在完善算法后调整评分计算方法。",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "最大文件大小(MB)。如果文件大小超过此限制,则无法上传该文件。",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "在单次对话中可以使用的最大文件数。如果文件数超过此限制,则文件不会上传。",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "分值应介于 0.0(0%)和 1.0(100%)之间。",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "主题",
 	"Thinking...": "正在思考...",
 	"This action cannot be undone. Do you wish to continue?": "此操作无法撤销。是否确认继续?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "这将确保您的宝贵对话被安全地保存到后台数据库中。感谢!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "这是一个实验功能,可能不会如预期那样工作,而且可能随时发生变化。",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "此选项将会删除文件集中所有文件,并用新上传的文件替换。",
 	"This response was generated by \"{{model}}\"": "此回复由 \"{{model}}\" 生成",
 	"This will delete": "这将删除",
@@ -760,6 +814,7 @@
 	"Title Auto-Generation": "自动生成标题",
 	"Title cannot be an empty string.": "标题不能为空。",
 	"Title Generation Prompt": "用于自动生成标题的提示词",
+	"TLS": "",
 	"To access the available model names for downloading,": "要访问可下载的模型名称,",
 	"To access the GGUF models available for downloading,": "要访问可下载的 GGUF 模型,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "请联系管理员以访问。管理员可以在后台管理面板中管理用户状态。",
@@ -827,6 +882,7 @@
 	"User": "用户",
 	"User location successfully retrieved.": "成功检索到用户位置。",
 	"User Permissions": "用户权限",
+	"Username": "",
 	"Users": "用户",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "竞技场模型默认使用所有模型。单击加号按钮添加自定义模型。",
 	"Utilize": "利用",
@@ -851,17 +907,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "WebUI 设置",
 	"WebUI will make requests to": "WebUI 将请求",
-	"What’s New in": "最近更新内容于",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "最近更新内容于",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper (本地)",
 	"Widescreen Mode": "宽屏模式",
 	"Won": "获胜",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "工作空间",
 	"Write a prompt suggestion (e.g. Who are you?)": "写一个提示词建议(例如:你是谁?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "用 50 个字写一个总结 [主题或关键词]。",
 	"Write something...": "单击以键入内容...",
+	"Write your model template content here": "",
 	"Yesterday": "昨天",
 	"You": "你",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "每次对话最多仅能附上 {{maxCount}} 个文件。",
@@ -876,4 +935,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "您的全部捐款将直接给到插件开发者,Open WebUI 不会收取任何比例。但众筹平台可能会有服务费、抽成。",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "YouTube 爬取设置"
-}
+}

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

@@ -51,6 +51,7 @@
 	"Allow Voice Interruption in Call": "允許在通話中打斷語音",
 	"alphanumeric characters and hyphens": "英文字母、數字和連字號",
 	"Already have an account?": "已經有帳號了嗎?",
+	"Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 	"an assistant": "一位助手",
 	"and": "和",
 	"and {{COUNT}} more": "",
@@ -59,6 +60,8 @@
 	"API Key": "API 金鑰",
 	"API Key created.": "API 金鑰已建立。",
 	"API keys": "API 金鑰",
+	"Application DN": "",
+	"Application DN Password": "",
 	"April": "4 月",
 	"Archive": "封存",
 	"Archive All Chats": "封存所有對話紀錄",
@@ -71,8 +74,12 @@
 	"Assistant": "",
 	"Attach file": "附加檔案",
 	"Attention to detail": "注重細節",
+	"Attribute for Username": "",
 	"Audio": "音訊",
 	"August": "8 月",
+	"Authenticate": "",
+	"Authenticate as Admin": "",
+	"Auto-Copy Response to Clipboard": "自動將回應複製到剪貼簿",
 	"Auto-playback response": "自動播放回應",
 	"Automatic1111": "Automatic1111",
 	"AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 API 驗證字串",
@@ -98,6 +105,7 @@
 	"Camera": "相機",
 	"Cancel": "取消",
 	"Capabilities": "功能",
+	"Certificate Path": "",
 	"Change Password": "修改密碼",
 	"Character": "",
 	"Chart new frontiers": "",
@@ -116,9 +124,11 @@
 	"Chunk Overlap": "區塊重疊",
 	"Chunk Params": "區塊參數",
 	"Chunk Size": "區塊大小",
+	"Ciphers": "",
 	"Citation": "引用",
 	"Clear memory": "清除記憶",
 	"click here": "",
+	"Click here for filter guides.": "",
 	"Click here for help.": "點選這裡取得協助。",
 	"Click here to": "點選這裡",
 	"Click here to download user import template file.": "點選這裡下載使用者匯入範本檔案。",
@@ -153,8 +163,11 @@
 	"Context Length": "上下文長度",
 	"Continue Response": "繼續回應",
 	"Continue with {{provider}}": "使用 {{provider}} 繼續",
+	"Continue with Email": "",
+	"Continue with LDAP": "",
 	"Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "控制文字轉語音(TTS)請求中如何分割訊息文字。「標點符號」分割為句子,「段落」分割為段落,「無」則保持訊息為單一字串。",
 	"Controls": "控制項",
+	"Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
 	"Copied": "已複製",
 	"Copied shared chat URL to clipboard!": "已複製共用對話 URL 到剪貼簿!",
 	"Copied to clipboard": "已複製到剪貼簿",
@@ -164,6 +177,7 @@
 	"Copy Link": "複製連結",
 	"Copy to clipboard": "",
 	"Copying to clipboard was successful!": "成功複製到剪貼簿!",
+	"Create a knowledge base": "",
 	"Create a model": "建立模型",
 	"Create Account": "建立帳號",
 	"Create Admin Account": "",
@@ -173,7 +187,6 @@
 	"Created at": "建立於",
 	"Created At": "建立於",
 	"Created by": "建立者",
-	"Create a knowledge base": "",
 	"CSV Import": "CSV 匯入",
 	"Current Model": "目前模型",
 	"Current Password": "目前密碼",
@@ -189,6 +202,8 @@
 	"Default Model": "預設模型",
 	"Default model updated": "預設模型已更新",
 	"Default Prompt Suggestions": "預設提示詞建議",
+	"Default to 389 or 636 if TLS is enabled": "",
+	"Default to ALL": "",
 	"Default User Role": "預設使用者角色",
 	"Delete": "刪除",
 	"Delete a model": "刪除模型",
@@ -204,8 +219,8 @@
 	"Delete User": "刪除使用者",
 	"Deleted {{deleteModelTag}}": "已刪除 {{deleteModelTag}}",
 	"Deleted {{name}}": "已刪除 {{name}}",
-	"Description": "描述",
 	"Describe your knowledge base and objectives": "",
+	"Description": "描述",
 	"Didn't fully follow instructions": "未完全遵循指示",
 	"Disabled": "已停用",
 	"Discover a function": "發掘函式",
@@ -250,7 +265,10 @@
 	"Embedding Model Engine": "嵌入模型引擎",
 	"Embedding model set to \"{{embedding_model}}\"": "嵌入模型已設定為 \"{{embedding_model}}\"",
 	"Enable Community Sharing": "啟用社群分享",
+	"Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
+	"Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
 	"Enable Message Rating": "啟用訊息評分",
+	"Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
 	"Enable New Sign Ups": "允許新使用者註冊",
 	"Enable Web Search": "啟用網頁搜尋",
 	"Enable Web Search Query Generation": "啟用網頁搜尋查詢生成",
@@ -260,9 +278,12 @@
 	"Enter {{role}} message here": "在此輸入 {{role}} 訊息",
 	"Enter a detail about yourself for your LLMs to recall": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來",
 	"Enter api auth string (e.g. username:password)": "輸入 API 驗證字串(例如:username:password)",
+	"Enter Application DN": "",
+	"Enter Application DN Password": "",
 	"Enter Bing Search V7 Endpoint": "",
 	"Enter Bing Search V7 Subscription Key": "",
 	"Enter Brave Search API Key": "輸入 Brave 搜尋 API 金鑰",
+	"Enter certificate path": "",
 	"Enter CFG Scale (e.g. 7.0)": "輸入 CFG 比例(例如:7.0)",
 	"Enter Chunk Overlap": "輸入區塊重疊",
 	"Enter Chunk Size": "輸入區塊大小",
@@ -282,9 +303,13 @@
 	"Enter SearchApi API Key": "輸入 SearchApi API 金鑰",
 	"Enter SearchApi Engine": "輸入 SearchApi 引擎",
 	"Enter Searxng Query URL": "輸入 SearXNG 查詢 URL",
+	"Enter Seed": "",
 	"Enter Serper API Key": "輸入 Serper API 金鑰",
 	"Enter Serply API Key": "輸入 Serply API 金鑰",
 	"Enter Serpstack API Key": "輸入 Serpstack API 金鑰",
+	"Enter server host": "",
+	"Enter server label": "",
+	"Enter server port": "",
 	"Enter stop sequence": "輸入停止序列",
 	"Enter system prompt": "輸入系統提示詞",
 	"Enter Tavily API Key": "輸入 Tavily API 金鑰",
@@ -297,9 +322,14 @@
 	"Enter your message": "輸入您的訊息",
 	"Enter Your Password": "輸入您的密碼",
 	"Enter Your Role": "輸入您的角色",
+	"Enter Your Username": "",
 	"Error": "錯誤",
 	"ERROR": "",
 	"Evaluations": "",
+	"Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
+	"Example: ALL": "",
+	"Example: ou=users,dc=foo,dc=example": "",
+	"Example: sAMAccountName or uid or userPrincipalName": "",
 	"Exclude": "",
 	"Experimental": "實驗性功能",
 	"Explore the cosmos": "",
@@ -378,6 +408,7 @@
 	"Help us create the best community leaderboard by sharing your feedback history!": "",
 	"Hide": "隱藏",
 	"Hide Model": "隱藏模型",
+	"Host": "",
 	"How can I help you today?": "今天我能為您做些什麼?",
 	"Hybrid Search": "混合搜尋",
 	"I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "我確認已閱讀並理解我的操作所帶來的影響。我了解執行任意程式碼的相關風險,並已驗證來源的可信度。",
@@ -396,6 +427,7 @@
 	"Include": "",
 	"Include `--api-auth` flag when running stable-diffusion-webui": "執行 stable-diffusion-webui 時包含 `--api-auth` 參數",
 	"Include `--api` flag when running stable-diffusion-webui": "執行 stable-diffusion-webui 時包含 `--api` 參數",
+	"Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
 	"Info": "資訊",
 	"Input commands": "輸入命令",
 	"Install from Github URL": "從 GitHub URL 安裝",
@@ -419,10 +451,13 @@
 	"Knowledge deleted successfully.": "知識刪除成功。",
 	"Knowledge reset successfully.": "知識重設成功。",
 	"Knowledge updated successfully": "知識更新成功",
+	"Label": "",
 	"Landing Page Mode": "首頁模式",
 	"Language": "語言",
 	"Last Active": "上次活動時間",
 	"Last Modified": "上次修改時間",
+	"LDAP": "",
+	"LDAP server updated": "",
 	"Leaderboard": "",
 	"Leave empty for unlimited": "留空表示無限制",
 	"Leave empty to include all models or select specific models": "",
@@ -488,8 +523,8 @@
 	"More": "更多",
 	"Move to Top": "移至頂端",
 	"Name": "名稱",
-	"Name your model": "為您的模型命名",
 	"Name your knowledge base": "",
+	"Name your model": "為您的模型命名",
 	"New Chat": "新增對話",
 	"New folder": "",
 	"New Password": "新密碼",
@@ -572,6 +607,7 @@
 	"Please enter a prompt": "",
 	"Please fill in all fields.": "請填寫所有欄位。",
 	"Please select a reason": "請選擇原因",
+	"Port": "",
 	"Positive attitude": "積極的態度",
 	"Previous 30 days": "過去 30 天",
 	"Previous 7 days": "過去 7 天",
@@ -589,6 +625,7 @@
 	"Read Aloud": "朗讀",
 	"Record voice": "錄音",
 	"Redirecting you to OpenWebUI Community": "正在將您重新導向到 OpenWebUI 社群",
+	"Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
 	"Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "以「使用者」稱呼自己(例如:「使用者正在學習西班牙文」)",
 	"References from": "",
 	"Refused when it shouldn't have": "不應拒絕時拒絕了",
@@ -606,7 +643,6 @@
 	"Reset": "重設",
 	"Reset Upload Directory": "重設上傳目錄",
 	"Reset Vector Storage/Knowledge": "",
-	"Auto-Copy Response to Clipboard": "自動將回應複製到剪貼簿",
 	"Response notifications cannot be activated as the website permissions have been denied. Please visit your browser settings to grant the necessary access.": "無法啟用回應通知,因為網站權限已遭拒。請前往瀏覽器設定以授予必要存取權限。",
 	"Response splitting": "回應分割",
 	"Result": "",
@@ -628,17 +664,19 @@
 	"Scroll to bottom when switching between branches": "切換分支時捲動到底端",
 	"Search": "搜尋",
 	"Search a model": "搜尋模型",
+	"Search Base": "",
 	"Search Chats": "搜尋對話",
 	"Search Collection": "搜尋集合",
+	"Search Filters": "",
 	"search for tags": "",
 	"Search Functions": "搜尋函式",
 	"Search Knowledge": "搜尋知識庫",
 	"Search Models": "搜尋模型",
+	"Search options": "",
 	"Search Prompts": "搜尋提示詞",
 	"Search Query Generation Prompt": "搜尋查詢生成提示詞",
 	"Search Result Count": "搜尋結果數量",
 	"Search Tools": "搜尋工具",
-	"Search options": "",
 	"SearchApi API Key": "SearchApi API 金鑰",
 	"SearchApi Engine": "SearchApi 引擎",
 	"Searched {{count}} sites_one": "已搜尋 {{count}} 個網站",
@@ -683,8 +721,15 @@
 	"Set Scheduler": "設定排程器",
 	"Set Steps": "設定步數",
 	"Set Task Model": "設定任務模型",
+	"Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
+	"Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
 	"Set Voice": "設定語音",
 	"Set whisper model": "",
+	"Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
+	"Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
+	"Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
+	"Sets the size of the context window used to generate the next token. (Default: 2048)": "",
+	"Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
 	"Settings": "設定",
 	"Settings saved successfully!": "設定已成功儲存!",
 	"Share": "分享",
@@ -700,6 +745,7 @@
 	"Showcased creativity": "展現創意",
 	"Sign in": "登入",
 	"Sign in to {{WEBUI_NAME}}": "登入 {{WEBUI_NAME}}",
+	"Sign in to {{WEBUI_NAME}} with LDAP": "",
 	"Sign Out": "登出",
 	"Sign up": "註冊",
 	"Sign up to {{WEBUI_NAME}}": "註冊 {{WEBUI_NAME}}",
@@ -725,6 +771,7 @@
 	"System Prompt": "系統提示詞",
 	"Tags": "標籤",
 	"Tags Generation Prompt": "",
+	"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting. (default: 1)": "",
 	"Tap to interrupt": "點選以中斷",
 	"Tavily API Key": "Tavily API 金鑰",
 	"Tell us more:": "告訴我們更多:",
@@ -735,17 +782,24 @@
 	"Text-to-Speech Engine": "文字轉語音引擎",
 	"Tfs Z": "Tfs Z",
 	"Thanks for your feedback!": "感謝您的回饋!",
+	"The Application Account DN you bind with for search": "",
+	"The base to search for users": "",
+	"The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory.  (Default: 512)": "",
 	"The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "這個外掛背後的開發者是來自社群的熱情志願者。如果您覺得這個外掛很有幫助,請考慮為其開發做出貢獻。",
 	"The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "",
+	"The LDAP attribute that maps to the username that users use to sign in.": "",
 	"The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "",
 	"The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "檔案大小上限(MB)。如果檔案大小超過此限制,檔案將不會被上傳。",
 	"The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "對話中一次可使用的最大檔案數量。如果檔案數量超過此限制,檔案將不會被上傳。",
 	"The score should be a value between 0.0 (0%) and 1.0 (100%).": "分數應該是介於 0.0(0%)和 1.0(100%)之間的值。",
+	"The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
 	"Theme": "主題",
 	"Thinking...": "正在思考...",
 	"This action cannot be undone. Do you wish to continue?": "此操作無法復原。您確定要繼續進行嗎?",
 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "這確保您寶貴的對話會安全地儲存到您的後端資料庫。謝謝!",
 	"This is an experimental feature, it may not function as expected and is subject to change at any time.": "這是一個實驗性功能,它可能無法如預期運作,並且可能會隨時變更。",
+	"This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
+	"This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated.  (Default: 128)": "",
 	"This option will delete all existing files in the collection and replace them with newly uploaded files.": "此選項將刪除集合中的所有現有檔案,並用新上傳的檔案取代它們。",
 	"This response was generated by \"{{model}}\"": "",
 	"This will delete": "這將會刪除",
@@ -761,6 +815,7 @@
 	"Title Auto-Generation": "自動產生標題",
 	"Title cannot be an empty string.": "標題不能是空字串。",
 	"Title Generation Prompt": "自動產生標題的提示詞",
+	"TLS": "",
 	"To access the available model names for downloading,": "若要存取可供下載的模型名稱,",
 	"To access the GGUF models available for downloading,": "若要存取可供下載的 GGUF 模型,",
 	"To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "若要存取 WebUI,請聯絡管理員。管理員可以從管理面板管理使用者狀態。",
@@ -828,6 +883,7 @@
 	"User": "",
 	"User location successfully retrieved.": "成功取得使用者位置。",
 	"User Permissions": "使用者權限",
+	"Username": "",
 	"Users": "使用者",
 	"Using the default arena model with all models. Click the plus button to add custom models.": "",
 	"Utilize": "使用",
@@ -852,17 +908,20 @@
 	"Webhook URL": "Webhook URL",
 	"WebUI Settings": "WebUI 設定",
 	"WebUI will make requests to": "WebUI 將會向以下位址發出請求",
-	"What’s New in": "新功能",
 	"What are you trying to achieve?": "",
 	"What are you working on?": "",
+	"What’s New in": "新功能",
+	"When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
 	"wherever you are": "",
 	"Whisper (Local)": "Whisper(本機)",
 	"Widescreen Mode": "寬螢幕模式",
 	"Won": "",
+	"Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 	"Workspace": "工作區",
 	"Write a prompt suggestion (e.g. Who are you?)": "撰寫提示詞建議(例如:你是誰?)",
 	"Write a summary in 50 words that summarizes [topic or keyword].": "用 50 字寫一篇總結 [主題或關鍵字] 的摘要。",
 	"Write something...": "",
+	"Write your model template content here": "",
 	"Yesterday": "昨天",
 	"You": "您",
 	"You can only chat with a maximum of {{maxCount}} file(s) at a time.": "您一次最多只能與 {{maxCount}} 個檔案進行對話。",
@@ -877,4 +936,4 @@
 	"Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "您的所有貢獻將會直接交給外掛開發者;Open WebUI 不會收取任何百分比。然而,所選擇的贊助平臺可能有其自身的費用。",
 	"Youtube": "YouTube",
 	"Youtube Loader Settings": "YouTube 載入器設定"
-}
+}